/*==========  Non-Mobile First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {}

/* Medium Devices, Desktops */
@media only screen and (min-width : 850px) {
    .a-logo {
        max-width: 250px;
    }

    .header-bg-color{
        background: unset !important;
    }
    .header-main {
        background: linear-gradient(to bottom, #2D6E4B 0%, #388B5E 100%);
    }
    /* 
    .header-top .button{
        background: unset;
        box-shadow: unset;
        border: unset;
        padding: unset;
    }
    .header-top .button span{
        color: #fff !important;
    } */

    .header .menu-item a {
        padding: 10px;
    }
    .header .menu-item.active a,.header .menu-item:hover a{
        background: linear-gradient(to right, #D3A548 0%, #FFD175 100%);
        color: #23563A !important;
    }
    /* #logo img {
        transform: scale(1.5) translateY(10%);
    }

    .stuck #logo img {
        transform: scale(1) translateY(0%);
    } */
}

/* Small Devices, Tablets */
@media only screen and (max-width : 850px) {

    /* .header-bottom{
        background-color: unset !important;
    } */
   
    .a-banner-2 .row{
        border-radius: unset;
    }
    .a-banner-2 p:first-child{
        font-size: 18px;
    }
    .a-banner-2 p:nth-child(2) {
        font-size: 40px;
    }

    .a-banner-2 .a-img {
        margin-top: -30px;
    }
    .a-banner-2 .row{
        padding: 20px !important;
    }
}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 550px) {
    .a-banner p{
        font-size: 17px;
    }
    .a-banner p:nth-child(2){
        font-size:26px;
    }
    .a-banner .a-order {
        order: -1;
    }

    .a-banner .button,
    .a-banner-2 .button {
        margin-bottom: unset;
    }
    .a-banner-2 p:first-child {
        font-size: 18px;
    }
    .a-banner-2 p:nth-child(3) {
        font-size: 18px;
    }
    .a-banner-2 p:nth-child(2) {
        font-size: 29px;
    }
    .a-banner-2 {
        padding: 30px 0 !important;
    }
    .a-copyright {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .a-copyright p {
        text-align: center;
        font-size: 14px;
    }

    .a-copyright p:nth-child(2) {
        display: none;
    }

    .a-order {
        order: -1;
    }
    .a-post{
        grid-template-columns: repeat(2,1fr);
    }
    .a-post .post-title a{
        display: -webkit-box;
        -webkit-line-clamp: 2; 
        -webkit-box-orient: vertical;
        overflow: hidden;
          width: 100% !important;
    }
    .post-item .box-vertical .box-text{
        padding: 10px;
    }
}

/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {}