@media (min-width: 1025px) {
    .header-responesive{
        display: none;
    }
    .main__background img {
        display: none;
    }
    .notifier-fixed-close-btn {
        display: none;
    }
}

@media (min-width: 740px) and (max-width: 1024px) {
    .header-unfixed {
        display: none;
    }
    .header-wrapper-fixed {
        display: none;
    }
    .header-responesive {
        background-color: white;
        position: relative;
    }
    .header-inner {
        height: 70px;
        width: 100%;
        padding: 0 60px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .header-logo-mobile {
        display: block;
        font-size: 30px;
        color: black;
        text-decoration: none;
    }
    .header-logo-mobile img{
        height: 100%;
    }
    .header-right-mobile {
        display: flex;
        align-items: center;
    }
    .nav-icon-btn {
        margin-left: 20px;
        width: 20px;
        height: 25px;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        cursor: pointer;
    }

    .nav-icon-line:nth-child(1),
    .nav-icon-line:nth-child(2),
    .nav-icon-line:nth-child(3) {
        width: 100%;
        height: 1px;
        background-color: black;
        transition: 0.4s;
    }

    .nav-icon-line:nth-child(2).open {
        transform: translateX(45px);
        opacity: 0;
    }
    .nav-icon-line:nth-child(1).open {
        transform: rotate(45deg) translate(3px,6px);
        
    }
    .nav-icon-line:nth-child(3).open {
        transform: rotate(-45deg) translate(4px,-6px);
        
    }
    .header-responesive > nav {
        position: absolute;
        z-index: 9998;
        width: 100%;
        background-color: white;
        transition: 0.4s;
        overflow: hidden;
        height: 0;
    }
    /* .header-responesive > nav.open {
        height: 188px;
    } */
    
    .header-nav {
        padding: 34px 60px;
        list-style: none;
    }
    .header-nav > li {
        padding: 8px 0;
    }
    .header-nav > li > .header-inner-sub {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .header-nav > li > .header-inner-sub > a{
        font-family: Arimo;
        font-size: 12px;
        font-weight: 500;
        text-transform: uppercase;
        color: #23261d;
        letter-spacing: 2px;
        text-decoration: none;
        position: relative;
    }
    .header-nav > li > .header-inner-sub > a::before{
        position: absolute;
        content: "";
        width: 0;
        height: 1px;
        background-color: #23261d;
        bottom: 0;
        transition: all .4s;
    }
    .header-nav > li:hover > .header-inner-sub > a::before {
        width: 100%;
    }

    .header-nav > li > .header-inner-sub > svg {
        cursor: pointer;
        transition: all 0.4s;
    } 
    .header-nav > li > .header-inner-sub > svg.open {
        transform: rotate(90deg);
        
    }
    .header-nav li .nav-sub-mobile {
        width: 100%;
        padding: 10px 0;
        list-style: none;
    }

    .header-nav li .nav-sub-mobile li {
        white-space: normal;
        padding: 10px 0 10px 10px;
    }
    .header-nav li .nav-sub-mobile li a {
        text-decoration: none;
        font-family: "EB Garamond";
        font-size: 16px;
        font-style: italic;
        font-weight: 400;
        letter-spacing: 2px;
        color: #4c4c4c;
        display: block;
        width: 100%;
        position: relative;
    }
    .header-nav li .nav-sub-mobile li:hover {
        background-color: black;
    }
    .header-nav li .nav-sub-mobile li:hover a {
        color: white;
    }
    .header-nav > li > nav {
        overflow: hidden;
        height: 0;
    }

    .main__background video {
        display: none;
    }
    .main__background img {
        width: 100%;
        height: 100%;
    }
    .main__background-title {
        display: none;
    }
    .main__background-text {
        display: none;
    }
    .intro__content {
        margin-top: 50px;
        padding: 1px;
    }
    .container.intro-container {
        max-width: 90%;
    }
    .main__offers > div:nth-child(2) {
        margin-top: 50px;
    }
    .lst-product-offers {
        margin-right: 0;
    }
    .main__more-info__lst {
        margin-left: 0;
        margin-top: 50px;
    }
    .container.feedback-container{
        max-width: 90%;
    }
    .feedback__slider-wrapper {
        padding: 0 70px;
    }
    .footer-content {
        flex-direction: column;
    }
    .container.footer-container {
        max-width: 90%;
    }
    .footer-content__item-mid {
        border: none;
    }
    .notifier-fixed {
        width: 75%;
        right: -75%;
    }
    .empty-cart {
        width: 100%;
    }
    .content__thumbnail {
        height: 555px;
    }
    .container.content__main-product-detail {
        width: 90%;
    }
    .product-thumnail {
        display: none;
    }
    .content__main-l {
        margin-left: 0;
        margin-top: 30px;
    }
    .order-id {
        display: none;
    }
    .order-date {
        display: none;
    }
    .notifier-fixed-close-btn {
        display: none;
    }
}

@media (max-width: 739px) {
    .header-unfixed {
        display: none;
    }
    .header-wrapper-fixed {
        display: none;
    }
    .header-responesive {
        background-color: white;
        position: relative;
    }
    .header-inner {
        height: 70px;
        width: 100%;
        padding: 0 60px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .header-logo-mobile {
        display: block;
        height: 25px;
    }
    .header-logo-mobile img{
        height: 100%;
    }
    .header-right-mobile {
        display: flex;
        align-items: center;
    }
    .nav-icon-btn {
        margin-left: 20px;
        width: 20px;
        height: 25px;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        cursor: pointer;
    }

    .nav-icon-line:nth-child(1),
    .nav-icon-line:nth-child(2),
    .nav-icon-line:nth-child(3) {
        width: 100%;
        height: 1px;
        background-color: black;
        transition: 0.4s;
    }

    .nav-icon-line:nth-child(2).open {
        transform: translateX(45px);
        opacity: 0;
    }
    .nav-icon-line:nth-child(1).open {
        transform: rotate(45deg) translate(3px,6px);
        
    }
    .nav-icon-line:nth-child(3).open {
        transform: rotate(-45deg) translate(4px,-6px);
        
    }
    .header-responesive > nav {
        position: absolute;
        z-index: 9999;
        width: 100%;
        background-color: white;
        transition: 0.4s;
        overflow: hidden;
        height: 0;
    }
    /* .header-responesive > nav.open {
        height: 188px;
    } */
    
    .header-nav {
        padding: 34px 60px;
        list-style: none;
    }
    .header-nav > li {
        padding: 8px 0;
    }
    .header-nav > li > .header-inner-sub {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .header-nav > li > .header-inner-sub > a{
        font-family: Arimo;
        font-size: 12px;
        font-weight: 500;
        text-transform: uppercase;
        color: #23261d;
        letter-spacing: 2px;
        text-decoration: none;
        position: relative;
    }
    .header-nav > li > .header-inner-sub > a::before{
        position: absolute;
        content: "";
        width: 0;
        height: 1px;
        background-color: #23261d;
        bottom: 0;
        transition: all .4s;
    }
    .header-nav > li:hover > .header-inner-sub > a::before {
        width: 100%;
    }

    .header-nav > li > .header-inner-sub > svg {
        cursor: pointer;
        transition: all 0.4s;
    } 
    .header-nav > li > .header-inner-sub > svg.open {
        transform: rotate(90deg);
        
    }
    .header-nav li .nav-sub-mobile {
        width: 100%;
        padding: 10px 0;
        list-style: none;
    }

    .header-nav li .nav-sub-mobile li {
        white-space: normal;
        padding: 10px 0 10px 10px;
    }
    .header-nav li .nav-sub-mobile li a {
        text-decoration: none;
        font-family: "EB Garamond";
        font-size: 16px;
        font-style: italic;
        font-weight: 400;
        letter-spacing: 2px;
        color: #4c4c4c;
        display: block;
        width: 100%;
        position: relative;
    }
    .header-nav li .nav-sub-mobile li:hover {
        background-color: #E55E20;
    }
    .header-nav > li > nav {
        overflow: hidden;
        height: 0;
    }
    .header-unfixed {
        display: none;
    }
    .header-wrapper-fixed {
        display: none;
    }
    .header-responesive {
        background-color: white;
        position: relative;
    }
    .header-inner {
        height: 70px;
        width: 100%;
        padding: 0 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .header-logo-mobile {
        display: block;
        font-size: 24px;
        color: black;
        text-decoration: none;
    }
    .header-logo-mobile img{
        height: 100%;
    }
    .header-right-mobile {
        display: flex;
        align-items: center;
    }
    .nav-icon-btn {
        margin-left: 20px;
        width: 20px;
        height: 25px;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        cursor: pointer;
    }

    .nav-icon-line:nth-child(1),
    .nav-icon-line:nth-child(2),
    .nav-icon-line:nth-child(3) {
        width: 100%;
        height: 1px;
        background-color: black;
        transition: 0.4s;
    }

    .nav-icon-line:nth-child(2).open {
        transform: translateX(45px);
        opacity: 0;
    }
    .nav-icon-line:nth-child(1).open {
        transform: rotate(45deg) translate(3px,6px);
        
    }
    .nav-icon-line:nth-child(3).open {
        transform: rotate(-45deg) translate(4px,-6px);
        
    }
    .header-responesive > nav {
        position: absolute;
        z-index: 9999;
        width: 100%;
        background-color: white;
        transition: 0.4s;
        overflow: hidden;
        height: 0;
    }
    /* .header-responesive > nav.open {
        height: 188px;
    } */

    .header-nav {
        padding: 34px 20px;
        list-style: none;
    }
    .header-nav > li {
        padding: 8px 0;
    }
    .header-nav > li > .header-inner-sub {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .header-nav > li > .header-inner-sub > a{
        font-family: Arimo;
        font-size: 12px;
        font-weight: 500;
        text-transform: uppercase;
        color: #23261d;
        letter-spacing: 2px;
        text-decoration: none;
        position: relative;
    }
    .header-nav > li > .header-inner-sub > a::before{
        position: absolute;
        content: "";
        width: 0;
        height: 1px;
        background-color: #23261d;
        bottom: 0;
        transition: all .4s;
    }
    .header-nav > li:hover > .header-inner-sub > a::before {
        width: 100%;
    }

    .header-nav > li > .header-inner-sub > svg {
        cursor: pointer;
        transition: all 0.4s;
    } 
    .header-nav > li > .header-inner-sub > svg.open {
        transform: rotate(90deg);
        
    }
    .header-nav li .nav-sub-mobile {
        width: 100%;
        padding: 10px 0;
        list-style: none;
    }

    .header-nav li .nav-sub-mobile li {
        white-space: normal;
        padding: 10px 0 10px 10px;
    }
    .header-nav li .nav-sub-mobile li a {
        text-decoration: none;
        font-family: "EB Garamond";
        font-size: 16px;
        font-style: italic;
        font-weight: 400;
        letter-spacing: 2px;
        color: #4c4c4c;
        display: block;
        width: 100%;
        position: relative;
    }
    .header-nav li .nav-sub-mobile li:hover {
        background-color: black;
    }
    .header-nav li .nav-sub-mobile li:hover a {
        color: white;
    }
    .header-nav > li > nav {
        overflow: hidden;
        height: 0;
    }

    .main__background video {
        display: none;
    }
    .main__background img {
        width: 100%;
        height: 100%;
    }
    .main__background-title {
        display: none;
    }
    .main__background-text {
        top: 78%;
        width: 83%;
        left: 62px;
        color: black;
        display: none;
    }
    .intro__content {
        margin-top: 50px;
        padding: 1px;
    }
    .container.intro-container {
        max-width: 90%;
        padding-top: 58px;
        padding-bottom: 40px;
    }
    .main__offers > div:nth-child(2) {
        margin-top: 50px;
    }
    .lst-product-offers {
        margin-right: 0;
    }
    .main__more-info__lst {
        margin-left: 0;
        margin-top: 50px;
    }
    .container.feedback-container{
        max-width: 90%;
    }
    .feedback__slider-wrapper {
        padding: 0 0;
    }
    .footer-content {
        flex-direction: column;
    }
    .container.footer-container {
        max-width: 90%;
    }
    .footer-content__item-mid {
        border: none;
    }
    .main__slider-nav {
        display: none;
    }
    .feedback__slider-prev{
        left: -100px;
    }
    .feedback__slider-next {
        right: 400px;
    }
    .notifier-fixed {
        width: 85%;
        right: -100%
    }
    .notifier-fixed-close-btn {
        position: absolute;
        top: 6px;
        left: 8px;
        font-size: 12px;
        padding: 6px 9px;
        background-color: black;
        border-radius: 50%;
        color: white;
        display: block;
    }
    .content__thumbnail {
        height: 350px;
    }
    .container.content__main-product-detail {
        width: 95%;
    }
    .pd-row_info {
        margin-left: 0;
    }
    .section-nav li {
        margin-right: 50px;
    }
    .product-price {
        display: none;
    }
    .product-thumnail {
        display: none;
    }
    .js-product-subtotal {
        display: none;
    }
    .cart-info-table > tbody > tr > th {
        width: 69%
    }
    .content__main-l {
        margin-left: 0;
        margin-top: 30px;
    }
    .section-nav li {
        margin-right: 25px;
    }
    .section-nav-account {
        width: 97%;
    }
    .order-reciver,
    .order-date,
    .order-money{
        display: none;
    }
    .container.content__main-container {
        width: 95%;
    }
    .cart-info-table > tbody > tr > th {
        width: 60%;
    }
    .confirm-model,
    .cancel-model {
        width: 90%;
    }
    .notifier-fixed__area-product > ul {
        padding: 0 10px 0 10px;
    }
    .empty-cart {
        width: 83%;
    }

    .content__thumbnail-text > h3 {
        font-size: 20px;
    }
}