@media only screen and (max-width: 1023px) {
    html { padding: 0; }
    .container, header { max-width: 100%; }
    .separate-background {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .container:not(.container--header):not(.container--footer) {
        padding: 0 20px;
    }            
    .separate-background:nth-child(2n) {
        padding-top: 60px;
        padding-bottom: 60px;        
    }    

    .hamburger {
        padding-top: 12px;
        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-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: 2px;
        background-color: #fdfdfd;
        border-radius: 0px;
        position: absolute;
        transition-property: transform;
        transition-duration: 0.15s;
        transition-timing-function: ease;
    }
    .mode-white .hamburger-inner,
    .mode-white .hamburger-inner::before,
    .mode-white .hamburger-inner::after {
        background-color: #B8A89E;        
    }
    .hamburger.is-active .hamburger-inner,
    .hamburger.is-active .hamburger-inner::before,
    .hamburger.is-active .hamburger-inner::after {
        background-color: #fff;
    }    
    .hamburger-inner::before,
    .hamburger-inner::after {
        content: "";
        display: block;
    }
    .hamburger-inner::before {
        top: -10px;
    }
    .hamburger-inner::after {
        bottom: -10px;
    }
    .hamburger--squeeze .hamburger-inner {
        transition-duration: 0.075s;
        transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    .hamburger--squeeze .hamburger-inner::before {
        transition: top 0.075s 0.12s ease, opacity 0.075s ease;
    }
    .hamburger--squeeze .hamburger-inner::after {
        transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    .hamburger--squeeze.is-active .hamburger-inner {
        transform: rotate(45deg);
        transition-delay: 0.12s;
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    .hamburger--squeeze.is-active .hamburger-inner::before {
        top: 0;
        opacity: 0;
        transition: top 0.075s ease, opacity 0.075s 0.12s ease;
    }
    .hamburger--squeeze.is-active .hamburger-inner::after {
        bottom: 0;
        transform: rotate(-90deg);
        transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    /* Menu */
    header.is-active {
        position: fixed;
        height: 100vh;
        background-color: #B8A89E;
    }
    header.is-active.mode-white a {
        color: #fff;
    }
    
    header.is-active .menu {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        height: auto;
        width: 100%;
        left: 0;
        background-color: #B8A89E;
        font-size: 2rem;
    }
    header .menu-list {
        position:relative;
    }
    header .language {
        display: block;
        text-align: center;
    }

    #price {
        text-align: left;
    }    
}

@media only screen and (max-width: 719px) {
    h1 {
        font-size: 3rem;
        line-height: 2.5rem;
    }
    h2 {
        font-size: 1.1rem;
    }    
    .form-container {
        max-width: 100%;
    }

    .gallery .gallery__img {
        height: 250px;
        width: 100%;
    }    

    #home .home__overtitle, #home .home__subtitle {
        font-size: .8rem;
        margin-bottom: 0;
    }
    #home .button {
        display: block;
        margin-bottom: 10px;
    }  

    #home img {
        margin-bottom: 0;
    }

    #services .service-content {
        height: 30vh;
    }
}