/*==========  Non-Mobile First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {

}

/* Small Devices, Tablets */
@media only screen and (max-width : 850px) {
    .a-text-1 {
        font-size: 30px;
    }

}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 550px) {
    .a-text-1 {
        font-size: 26px;
    }

    .c-expander{
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {

}


@media only screen and (min-width : 850px) {
    #logo{
        display: none;
    }
}