/*GENERAL
--------------------------------------*/
:root {
    --white: #fff;
    --black: #000;
    --light: #FAF7EC;
    --brown: #FAF7EC;
    --golden: #94775D;
    --grey: #A3A9AD;
}

.color-white {
    color: var(--white);
}

.color-black {
    color: var(--black);
}

.color-light {
    color: var(--light);
}

.color-brown {
    color: var(--brown);
}

.color-golden {
    color: var(--golden);
}

.color-grey {
    color: var(--grey);
}

.bg-white {
    background: var(--white);
}

.bg-black {
    background: var(--black);
}

.bg-light {
    background: var(--light);
}

.bg-brown {
    background: var(--brown);
}

.bg-golden {
    background: var(--golden);
}

.bg-grey {
    background: var(--grey);
}

body {
    background: var(--light);
    font: normal normal 20px 'Space Grotesk', sans-serif;
    color: #fff;
}

body.pace-running:before {
    opacity: 1
}

a,
a:link,
a:visited,
a:hover,
a:active {
    text-decoration: none;
    color: currentColor;
}

a {
    -webkit-transition: background .3s, color .3s;
    -o-transition: background .3s, color .3s;
    transition: background .3s, color .3s;
}

p {
    margin: 0;
}

:focus {
    outline: none;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#main-container {
    -webkit-transition: opacity 1.5s;
    -o-transition: opacity 1.5s;
    transition: opacity 1.5s;
}

.parallax-mirror {
    opacity: 0;
    -webkit-transition: opacity 1s;
    -o-transition: opacity 1s;
    transition: opacity 1s;
}

.pace-done #main-container {
    opacity: 1 !important
}

.pace-done .parallax-mirror {
    opacity: 1
}

.parallax-window {
    min-height: 400px;
    background: transparent;
}

.inner-wrapper {
    width: 100%;
    max-width: 1200px;
    position: relative;
    margin: 0 auto;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    padding: 0 15px;
}

.inner-wrapper.col-wrapper {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    justify-content: center;
}

a.btn,
input.btn {
    height: 68px;
    padding: 0 40px;
    line-height: 68px;
    background: #1780eb;
    text-align: center;
    text-transform: uppercase;
    display: inline-block;
    color: #fff;
    font-size: 21px;
    font-weight: 700;
    border-radius: 10px;
    margin: 0 auto 0 0;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .2);
    box-shadow: 0 0 5px rgba(0, 0, 0, .2);
}

a.btn:hover,
input.btn:hover {
    background: #268ffb;
}

::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: currentColor;
    opacity: 1;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
}

::-moz-placeholder {
    /* Firefox 19+ */
    color: currentColor;
    opacity: 1;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
}

:-ms-input-placeholder {
    /* IE 10+ */
    color: currentColor;
    opacity: 1;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
}

:-moz-placeholder {
    /* Firefox 18- */
    color: currentColor;
    opacity: 1;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
}

:focus::-webkit-input-placeholder {
    opacity: .3
}

:focus::-moz-placeholder {
    opacity: .3
}

:focus:-ms-input-placeholder {
    opacity: .3
}

:focus:-moz-placeholder {
    opacity: .3
}

.title {
    font-family: 'Oswald';
    font-weight: 400;
    font-size: 45px;
}

.title.big {
    font-size: 60px;
}

.title.small {
    font-size: 40px;
}

.subtitle {
    font-family: Space Grotesk;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 20px;
}

p {
    line-height: 1.8;
}
.only-mobile{display: none;}

/*LAYOUT
--------------------------------------*/
#header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 60px;
    z-index: 5;
}

#header.headroom--unpinned {
    transform: translateY(-150px);
}

#logo .moa-logo{width: 150px;}

#logo img {}

.content {
    padding-top: 170px;
}

#header-contact {
    color: var(--black);
    text-decoration: underline;
    position: absolute;
    right: 50px;
    top: 50px;
}

#header-contact:hover {
    color: var(--golden);
}

#nav {}

#nav ul {}

#nav li {}

#nav a {}

.slicknav_menu {
    position: absolute;
    right: 0;
    top: 18px;
    padding: 0;
    margin: 0;
    background-color: transparent;
    width: 100%;
    display: none;
    z-index: 10;
}

.slicknav_nav {
    clear: both;
    color: #fff;
    margin: 0;
    background: rgb(124 43 251 / 88%);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    position: absolute;
    width: 100%;
    top: 65px;
    left: 0;
    text-align: center;
    color: #fff;
    padding: 15px 0 0;
}

.slicknav_nav ul {
    margin: 0;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.slicknav_nav li {
    margin-bottom: 30px;
    color: #fff
}

.slicknav_nav li a.active,
.slicknav_nav li a.focus,
.slicknav_nav a:hover {
    color: #00a651;
    background: unset;
}

.slicknav_btn {
    background: unset;
    margin: 10px 5px 6px;
}

.slicknav_menu .slicknav_icon-bar {
    background: #f00;
    -webkit-box-shadow: none;
    box-shadow: none;
}

#footer {
    padding: 60px 0;
    background: var(--black);
}

#footer ul {}

#footer li {}

#footer li a:hover {
    color: var(--golden);
}

#footer-social {
    font-size: 30px;
    color: var(--golden);
}

#footer-social:hover {
    color: var(--white);
}

.footer-col {}

#footer-logo {}

#footer small {}

#bottom{
    background-color: var(--golden);
    text-align: center;
    padding: 15px 20px;
    font-size: 16px;
}
.lauquen{
    max-width: 160px;
    padding-bottom: 3px;
    padding-left: 5px;
}

#main {
    overflow-x: hidden;
    margin-bottom: -80px;
}

#main-top:before {
    display: block;
    content: '';
    width: 100vw;
    height: 75vh;
    position: absolute;
    left: 0;
    bottom: 0;
    background: var(--golden);
}

#main-M {
    width: 50vw;
}

#main-studio-img {
    position: relative;
    height: 535px;
    min-width: 50vw;
}

#main-bottom {
    background: url(../img/pattern.svg) repeat center;
}

#main h2 {}

#main h1 {}

#studio {}

#studio h2 {}

#studio p {}

#about {
    background: var(--light);
    padding: 250px 0;
}

#about h1 {}

#about h2 {}

#about p {
    max-width: 525px;
}

#services {
    background: var(--grey);
}

#services-content {
    transform: translateY(-175px);
}

.services-item {
    position: relative;
    text-align: center;
    margin-bottom: 30px;
}

.services-item:before {
    display: block;
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.50) 25.84%, rgba(0, 0, 0, 0.00) 96.63%);
}

.services-item img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

#services h3 {}

#categories {
    background: var(--grey);
    margin-bottom: -200px;
}

#categories h2 {}

#categories a {}

#categories img {}

#categories span {
    width: 90px;
    background: var(--black) url(../img/arrow.svg) no-repeat center;
}

#systems {
    background: var(--light);
    padding: 400px 0 250px;
}

#systems h2 {}

#systems img {}

#systems h3 {}

#systems h4 {}

#newsletter {
    background: url(../img/newsletter-bg.jpg) no-repeat center / cover;
    padding: 530px 0 150px;
}

#newsletter h3 {}

#newsletter form {}

#newsletter input[type="email"] {
    background: var(--grey);
    border: unset;
    height: 49px;
    line-height: 49px;
    width: 100%;
    color: var(--white);
    padding: 0 20px;
    margin-bottom: 25px;
}

#newsletter input[type="submit"] {
    width: 193px;
    height: 49px;
    line-height: 49px;
    color: var(--white);
    background: var(--golden);
    text-align: center;
    border: unset;
    cursor: pointer;
    transition: background .3s;
}

#newsletter input[type="submit"]:hover {
    background: var(--black);
}

#contact {
    padding: 100px 0;
    background: var(--grey)
}

.grecaptcha-badge { 
    visibility: hidden;
}

#contact-logo {
    width: 108px;
    padding: 0;
    margin-bottom: 60px;
}

#contact-info {
    color: var(--black);
    margin-bottom: 60px;
}

#contact-info span {}

#contact-info a:hover {
    color: var(--white);
}

#contact input:not([type="submit"]),
#contact textarea {
    width: 100%;
    background: #8D959A;
    color: var(--white);
    border: unset;
}

#contact input:not([type="submit"]) {
    height: 49px;
    line-height: 49px;
    padding: 0 20px;
}

#contact textarea {
    height: 200px;
    padding: 20px;
}

#contact input[type="submit"] {
    width: 193px;
    height: 49px;
    line-height: 49px;
    text-align: center;
    color: var(--white);
    background: var(--black);
    border: unset;
    cursor: pointer;
    transition: background .3s;
}

#contact input[type="submit"]:hover {
    background: var(--golden);
}

#contact small {}

#contact-social {}

#contact-social a {
    font-size: 28px;
    margin: 10px;
}

#contact-social a:hover {
    color: var(--golden);
}

#contact .parsley-errors-list {
    display: none;
    font-size: 11px;
    color: #fff;
    position: absolute;
    top: 0;
    right: 0;
    pointer-events: none;
    background: #ff5252;
    text-align: center;
    padding: 0 5px;
}

#contact .parsley-errors-list.filled {
    display: block;
}

#contact #contact-loader {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--grey);
}

#contact #contact-loader #loader {
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -25px 0 0 -25px;
    width: 50px;
    height: 50px;
    background: url(../img/loader.svg) no-repeat center;
}

#contact #contact-msg-text {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--grey);
    opacity: 0;
    color: var(--black);
}

#contact #contact-msg-text h2 {
    font-weight: normal;
    font-style: normal;
    font-size: 32px;
    line-height: 1.5;
}

#contact #contact-msg-text p {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
}

/*MQ
--------------------------------------*/
@media screen and (max-width: 991px) {
    body {
        font-size: 16px;
    }

    .title {
        font-size: 35px;
    }

    .title.big {
        font-size: 45px;
    }

    .title.small {
        font-size: 28px;
    }

    .subtitle {
        font-size: 17px;
        letter-spacing: 10px;
    }

    p {
        line-height: 1.4;
    }

    #header-contact {
        position: static;
    }

    #nav {
        display: none;
    }

    .slicknav_menu {
        display: block;
    }

    #header {
        padding-top: 30px;
    }

    #logo img {
        width: 75px;
    }

    #footer {
        text-align: center;
    }

    #main-M {
        width: 100vw;
        margin-bottom: 50px;
    }

    #main-top:before {
        height: 500vh;
    }

    #main-top:after {
        display: block;
        content: '';
        width: 100vw;
        height: 50vh;
        position: absolute;
        left: 0;
        top: 0;
        background: var(--light);
    }


    #main-studio-img {
        margin: 50px 0;
        min-width: 100%;
        height: 330px;
    }

    #studio {
        text-align: center;
    }

    #main-bottom {
        padding: 50px 0 0;
    }

    #about {
        padding: 100px 0;
        text-align: center;
    }

    #about p {
        max-width: unset;
    }

    #services {
        text-align: center;
    }

    #services-content {
        transform: translateY(-70px);
    }

    #categories {
        text-align: center;
    }

    #systems {
        text-align: center;
        padding: 300px 0 100px;
    }

    #newsletter {
        text-align: center;
        padding: 100px 0;
    }

    #contact {
        text-align: center;
    }

    #contact-logo {
        margin: 0 auto 60px;
    }
}
/*MQ
--------------------------------------*/
@media screen and (max-width: 767px) {
    .only-mobile{display: block;}
    .only-desktop{display: none;}
}