header.header-section {
    display: block;
}
.mobile-header {
    display: none;
}

/*Medium Layout: 1280*/
@media only screen and (min-width: 992px) and (max-width: 1200px){

}

/*Tablet Layout: 768px*/
@media only screen and (min-width: 768px) and (max-width: 991px) {

}

/*Mobile Layout: 320px*/
@media only screen and (max-width: 767px) {
    header.header-section {
        display: none;
    }
    .mobile-header {
        display: grid;
        grid-template-columns: auto auto;
        grid-gap: 10px;
        padding: 10px 15px;
        background-color: var(--secondary-color);
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 9999;
    }
    .mobile-mergin-top {
        display: block;
        overflow: hidden;
        margin-top: 96px;
    }
    .mobile-header i.fa.fa-bars {
        font-size: 25px;
        line-height: 75px;
        cursor: pointer;
        color: #fff;
        text-align: right;
    }
    .mobile-header .mobile-logo img {
        width: 75px;
        border-radius: 45px;
        float: left;
    }
    .mobile-header .mobile-logo h2 {
        display: inline-block;
        margin-left: 15px;
        color: #fff;
        font-size: 22px;
        margin-bottom: 10px;
        margin-top: 10px;
    }
    .mobile-header .mobile-logo h4 {
        display: inline-block;
        margin-left: 15px;
        color: #fff;
        font-size: 16px;
        margin-bottom: 0;
    }
    .mobile-header .main-navigation-mobile {
        position: fixed;
        left: -100%;
        top: 0;
        width: 100%;
        height: 100vh;
        background: #fff;
        z-index: 999999;
        padding: 15px;
        transition: all 0.5s;
    }
    .mobile-header .main-navigation-mobile ul {
        margin-top: 25px;
    }
    .mobile-header .main-navigation-mobile ul li a {
        display: block;
        padding: 7px 0;
        font-size: 1.2em;
        color: var(--text-color);
    }
    .mobile-header span.close {
        float: right;
        font-size: 35px;
        width: 50px;
        height: 50px;
        line-height: 44px;
        text-align: center;
        border: 1px solid #ddd;
    }
    section.slider-section-carousel .slider-item {
        height: 250px;
    }
    section.slider-section-carousel .slider-item .slider-text {
        padding-top: 30px;
    }
    section.slider-section-carousel .slider-item .slider-text h2 {
        font-size: 30px;
    }
    section.order-step-section .order-step-item {
        text-align: center;
        margin-bottom: 30px;
    }
    .section-title h2 {
        font-size: 20px;
        line-height: 30px;
    }
    section.full-width-button .button-item {
        width: 100%;
    }
    section.offers-section .offer-item {
        margin-bottom: 20px;
    }
    section.photo-gallery .gallery-item {
        width: 50%;
    }
    section.photo-gallery .gallery-item img {
        height: 150px;
    }
    .footer-widget {
        margin-bottom: 25px;
    }
    .mobile-hide {
        display: none;
    }
    .back_to_top i {
        bottom: 90px;
    }
    .my-order-items .accordion-button {
        display: block;
        font-size: 14px;
    }
    .my-order-items table td, .my-order-items table th {
        font-size: 12px;
        line-height: 18px;
    }
}
/*Wide Mobile Layout: 480px*/

@media only screen and (min-width: 480px) and (max-width: 767px) {
    
}

