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

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

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 850px) {
    .header-wrapper.stuck .header-main,
    .header-wrapper .header-main{
        position:fixed;
        top: 0;
        left: 0;
        width: 100% !important;
        height: 70px !important;
        z-index: 999;
        box-shadow: 10px 0 20px -5px #0003;
        transition: 0.5s;
        background-color: #24aae2;
    }
    .header-main .header-inner{
		position: sticky;
        display: flex;
		flex-direction: row;
    }
    .header-main .header-inner #logo img,
    .header-wrapper.stuck .header-main .header-inner #logo img{
		max-height: 70px !important;
    }
    .header-bottom{
        margin-top: 70px;
    }
}

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

}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {

}

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

}
