@media only screen and (max-width: 1023px) {
    header {
        padding-top: 0;
    }
    header .container {
        margin: inherit;
    }

    header.is-active {
        position: fixed;
        height: 100vh;
        background-color: #fff;
    }
    header.is-active .menu {
        position: absolute;
        top: 100px;
        width: 100%;
        height: 100vh;
        left: 0;
        background-color: #fff;
    }  
    header.h-full {
        height: 100%;
    }

.hamburger {
        padding: 15px 15px;
        padding-right : 0;
        display: inline-block;
        cursor: pointer;
        transition-property: opacity, filter;
        transition-duration: 0.15s;
        transition-timing-function: linear;
        font: inherit;
        color: inherit;
        text-transform: none;
        background-color: transparent;
        border: 0;
        margin: 0;
        overflow: visible; 
    }
    .hamburger:hover { opacity: 0.7; }
    .hamburger.is-active:hover { opacity: 0.7; }
    .hamburger.is-active .hamburger-inner,
    .hamburger.is-active .hamburger-inner::before,
    .hamburger.is-active .hamburger-inner::after { background-color: #000; }
    .hamburger-box {
        width: 40px;
        height: 24px;
        display: inline-block;
        position: relative; 
    }
    .hamburger-inner {
        display: block;
        top: 50%;
        margin-top: -2px; 
    }
    .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
        width: 40px;
        height: 4px;
        background-color: #000;
        border-radius: 4px;
        position: absolute;
        transition-property: transform;
        transition-duration: 0.15s;
        transition-timing-function: ease; 
    }
    .hamburger-inner::before, .hamburger-inner::after {
        content: "";
        display: block; 
    }
    .hamburger-inner::before { top: -10px; }
    .hamburger-inner::after { bottom: -10px; }

    .hamburger--spring .hamburger-inner {
        top: 2px;
        transition: background-color 0s 0.13s linear; 
    }
    .hamburger--spring .hamburger-inner::before {
        top: 10px;
        transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); 
    }
    .hamburger--spring .hamburger-inner::after {
        top: 20px;
        transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); 
    }

    .hamburger--spring.is-active .hamburger-inner {
        transition-delay: 0.22s;
        background-color: transparent !important;
    }
    .hamburger--spring.is-active .hamburger-inner::before {
        top: 0;
        transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
        transform: translate3d(0, 10px, 0) rotate(45deg); 
    }
    .hamburger--spring.is-active .hamburger-inner::after {
        top: 0;
        transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
        transform: translate3d(0, 10px, 0) rotate(-45deg); 
    }    
    .hamburger {
         padding: 0 !important;   
    }
    
    .menu-mobile .lang {
        text-align: right;
        padding-top: 40px;
    }
    .menu-mobile .lang a {
        font-size: 2rem;
        padding: 20px;
        display: inline-block;
    }
    .menu .stitch-effect {
        padding-bottom: 0;
    }
    .menu .stitch-effect:before, .menu .stitch-effect:after {
        display: none;
    }
    .menu a {
        font-size: 4vmax;        
    }

    /* Text */
    h1 {
        font-size: 10vw;
    }

    /* Stitch Show */
    #stitchShow {
        margin-top: 70px;
    }

    /* Shop custom */
    .steps .step:not(.active) {
        display: none;
    }    
}

@media only screen and (max-width: 639px) {
    /* Menu */
    .menu-mobile li a {
        font-size: 10vw;
    }

    /* Shop */
    .shop--item {
        max-height: 100%;
        margin-bottom: 30px;
    }
}