/*==========  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) {
    .header .header-bg-color{
        background: unset !important;
    }
    .header #wide-nav{
        display: none !important;
    }
    .header-main{
        background: #251C10;
    }
    .header-main ul{
        justify-content: space-between;
    }
}

/* Small Devices, Tablets */
@media only screen and (max-width : 850px) {
    .a-order{
        order: -1;
    }
}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 550px) {
    .a-sidebar #wide-nav-2 .menu-item a {
        flex-direction: column;
        font-size: 11px;
        text-align: center;
        padding: 7px 3px;
    }
    .col:has(.a-sidebar) {
        padding: unset !important
    }
   
    #wide-nav{
        display: none;
    }
    .a-flex > .col-inner:first-child {
        display: flex;
        flex-direction: column;
    }
    .post-item .box-normal{
        padding: unset;
    }
    .post-item .box-text{
        display: none;
    }
    .post-item {
        padding: 5px !important;
    }
    #logo{
        width: 100px !important;
    }
    .medium-logo-center .flex-left {
        flex: unset;
        margin: unset;
    }
    .header-main .button span{
        font-size: 12px;
    }
    .a-grid{
        grid-template-columns: repeat(2,1fr);
    }
    .a-777 .box-text {
        padding-bottom: 10%;
    }
    .a-777 .box-text p{
        font-size: 12px;
    }
    h1 {
    font-size: 24px;
}

h2 {
    font-size: 20px;
}

h3,
h3.is-large {
    font-size: 18px;
}

h4 {
    font-size: 16px;
}

h5 {
    font-size: 14px;
}

}

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

}