html{
    scroll-behavior: smooth;
}
.parallax{
    background-attachment: fixed;
}
.content{
    background-color: #ffffff;
}
h1{
    font-family: Amiri;
    color: #ffffff;
    font-weight: 400;
    font-style: italic;
    font-size: 100px;
    margin-top: 0;
}
h2{
    font-family: Amiri;
    color: #ffffff;
    font-weight: 400;
    font-style: italic;
    font-size: 52px;
    line-height: 72px;
    margin: 0;
}
h3{
    font-family: Lato;
    color: #ffffff;
    font-weight: 300;
    font-size: 21px;
}
h4{
    font-family: Lato;
    color: #4a4a4a;
    font-weight: 400;
    font-size: 21px;
}
p{
    font-family: Lato;
    color: #ffffff;
    font-weight: 300;
    font-size: 18px;
    margin-bottom: 30px;
}
li{
    font-family: Lato;
    color: #4a4a4a;
    font-weight: 300;
    font-size: 18px;
}
.button{
    margin-top: 75px;
}
.button a{
    border: 1px solid #ffffff;
    padding: 15px 30px;
    text-align: center;
    color: #ffffff;
    font-family: Lato;
    font-weight: 300;
    font-size: 18px;
    text-decoration: none;
}
.button a:hover{
    color: #786655;
    background-color: #ffffff;
    transition: 0.75s;
}
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: #ffffff;
  -webkit-box-shadow: 0 0 0px 1000px #786655 inset;
  transition: background-color 5000s ease-in-out 0s;
}

/* Nav-Bar */

.navbar{
    position: absolute;
    right: 0;
    width: 100%;
    justify-content: right;
}
.navbar button{
    outline: 0;
    border: 0;
}
.navbar-toggler{
    position: absolute;
    top: 15px;
    right: 15px;
}
.navbar-collapse{
    box-shadow: none;
    -webkit-box-shadow: none;
    border-top: none;
}
.animated-icon3 {
    width: 30px;
    height: 20px;
    position: relative;
    margin: 0px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}
.animated-icon3 span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}
.animated-icon3 span {
    background: #ffffff;
}
.animated-icon3 span:nth-child(1) {
    top: 0px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}
.animated-icon3 span:nth-child(2) {
    top: 10px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}
.animated-icon3 span:nth-child(3) {
    top: 20px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}
.animated-icon3.open span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 0px;
    left: 8px;
}
.animated-icon3.open span:nth-child(2) {
    width: 0%;
    opacity: 0;
}
.animated-icon3.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 21px;
    left: 8px;
}
.navbar-dark .navbar-nav .nav-link {
    color: #ffffff;
    font-family: Lato;
    font-size: 16px;
}
.navbar-nav{
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.7);
}
.le-nav{
    float: right;
    top: 50px;
    right: 50px;
    position: absolute;
}
.le-nav a{
    color: #ffffff;
    font-family: Lato;
    font-weight: 300;
    font-size: 18px;
    text-decoration: none;
    margin-left: 50px;
    padding-bottom: 5px;
}
.le-nav a:hover{
    border-bottom: 1px solid #ffffff;
    opacity: 0.7;
}

/* Hero */

.home{
    height: 100vh;
    width: 100%;
    /* background-image: url("img/hero.jpg");
    background-position: left;
    background-repeat: no-repeat;
    background-size: cover; */
    text-align: center;
    background-color: rgba(75,75,75,.4);
}
.center{
    width: 100%;
    height: 100%;
    display: -webkit-flexbox;
    flex-grow:1;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
}
.fullscreen-bg {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: -100;
    min-width: 100%; 
    min-height: 100%;
    justify-content: center;
    align-items: center;
}
.fullscreen-bg video{
    min-width: 100%; 
    min-height: 100%;
}
.home-text{
    padding-bottom: 15px;
}
.home svg{
    position: absolute;
    bottom: 50px;
    left: calc(50% - 10px);
    animation-name: scroll;
    animation-duration: 1.5s;
    animation-direction: reverse;  
    animation-iteration-count: infinite;
    animation-timing-function: ease-in;
}
@keyframes scroll{
    0% {bottom: 50px;}
    50% {bottom: 35px;}
    100% {bottom: 50px;}
}

/* About */

.about{
    height: 100vh;
    min-height: 700px;
    width: 100%;
    background-color: #786655;
    display: inline-flex;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
}
.about h2{
    margin-bottom: 30px;
}
.about-text{
    width: 40%;
    text-align: left;
    padding: 30px;

}
.about-text .about-wrap{
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}
.about-image{
    width: 60%;
    height: 100%;
    background-image: url("img/about.jpg");
    background-position: top right;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Product */

.mask, .duo{
    height: 100vh;
    min-height: 750px;
    width: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: #ffffff;
}
.mask{
    background-image: url("img/bg-mask.png");
    background-position: right;
}
.duo{
    background-image: url("img/bg-duo.png");
    background-position: left;
}
.product-name{
    margin-bottom: 75px;
}
.product-name h2{
    color: #C28954;
}
.mask-text h2, .duo-text h2{
    color: #786655;
    font-style: normal;
    margin-bottom: 30px;
}
.mask-img, .duo-img{
    justify-content: center;
}
.product-img{
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}
.mask-img img, .duo-img img{
    width: 100%;
}
.mask-text, .duo-text{
    text-align: left;
}
.mask-text p, .duo-text p,.product-name p{
    color: #4A4A4A;
}
.duo-text span.number{
    color: #C28954;
    margin-right: 15px;
}


/* Contact */
.contact-img{
    height: 450px;
    background-image: url("img/contact-banner.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}
.contact-info{
    background-color: #786655;
    padding: 40px 0;
}
.contact-info a{
    color: #ffffff;
    text-decoration: underline;
}
.contact-info a:hover{
    opacity: 0.7;
}
.form-control, .form-control:focus{
    background: none;
    outline: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
    height: 42px;
    padding: 6px 0px;
    font-size: 18px;
    line-height: 1.5;
    color: #ffffff;
    font-family: Lato;
    font-weight: 400;
    border-bottom: 1px solid #ffffff;
}
.contact .btn, .contact .btn:focus{
    border: 1px solid #ffffff;
    padding: 15px 30px;
    border-radius: 0;
    font-size: 18px;
    font-family: Lato;
    color: #ffffff;
    margin-top: 15px;
    outline: none;
    box-shadow: none;
}
.contact .btn:hover, .contact .btn:hover:active{
    background-color: #ffffff;
    color: #786655;
    transition: 0.75s;
    outline: none;
    box-shadow: none;
}
.invalid-feedback p{
    color: #FCC18B;
}
.form-control.is-invalid, .was-validated .form-control:invalid,.form-control.is-invalid:focus, .was-validated .form-control:invalid:focus {
    border-color: #FCC18B;
    background: none;
}
.form-control.is-invalid:focus, .was-validated .form-control:invalid:focus, .form-control.is-valid, .was-validated .form-control:valid {
    box-shadow: none;
}
.form-control.is-valid:focus, .was-validated .form-control:valid:focus {
    border-color: none;
    box-shadow: none;
}
.form-control.is-valid, .was-validated .form-control:valid, .form-control.is-valid:focus, .was-validated .form-control:valid:focus {
    border-color: #ffffff;
    background: none;
}
hr{
    border-color: #ffffff;
    margin: 30px 0;
}
.contact h2, .contact p{
    margin-bottom: 0px;
}
.distribute{
    display: -webkit-flexbox;
    flex-grow:1;
    display: flex;
    align-items: center;
}
.distribute a{
    text-decoration: none;
    align-items: center;
    margin-bottom: 5px;
    width: 100%;
}
.distribute img{
    margin-right: 8px;
}
.distribute h3{
    margin-bottom: 18px;
}


/* Footer */

.footer{
    background-color: #363636;
    padding: 30px 50px;
}
.footer button{
    color: #ffffff;
    font-size: 14px;
    font-weight: 300;
    text-decoration: underline;
    background: none;
    border: none;
    outline: none;
}
.footer button:hover{
    opacity: 0.7;
}
.footer p{
    font-size: 16px;
    float: right;
}
.modal h2{
    color: #786655;
}
.modal p, .modal ul{
    margin-bottom: 20px;
}
.modal h4{
    margin-top: 50px;
    margin-bottom: 30px;
}
.modal button{
    color: #4a4a4a;
    text-decoration: none;
    background: none;
    border: none;
    font-size: 16px;
    outline: none;
}
.modal button:hover{
    opacity: 0.7;
}
.modal p{
    color: #4a4a4a;
}

.modal-dialog {
    height: 100%;
    margin: 0;
    padding: 0;
  }
.modal-content {
    height: auto;
    min-height: 100%;
    border-radius: 0;
}
.modal-header{
    padding-left: 30px;
}
.modal-body{
    padding: 30px;
}
@-moz-document url-prefix() {
    .fullscreen-bg__video{
        min-height: 100%;
    }
}

@media screen and (max-width: 1199px){
    h2{
        font-size: 42px;
        line-height: 58px;
    }
    /* .unique, .ddm{
        padding-left: 0px;
    } */
    .distribute h2, .contact-form h2{
        margin-bottom: 15px;
    }
}
@media screen and (max-width: 992px){
    h2{
        font-size: 36px;
        line-height: 48px;
    }
    p, .form-control, .form-control:focus, li{
        font-size: 16px;
    }
    .product-name{
        margin-bottom: 30px;
    }
    .mask-text h2, .duo-text h2{
        margin-bottom: 20px;
    }
    .about-text{
        width: 45%;
    }
    .about-image{
        width: 55%;
    }
    .about, .mask, .duo{
        min-height: 600px;
        max-height: 700px;
    }
    .product-img{
        max-width: 250px;
    }
    .modal button{
        font-size: 16px;
    }
    .contact-img{
        height: 350px;
    }
}
@media screen and (max-width: 767px){
    h1{
        font-size: 60px
    }
    h2{
        font-size: 28px;
        line-height: 36px;
    }
    h3{
        font-size: 18px;
    }
    h4{
        font-size: 18px;
    }
    .button{
        margin-top: 60px;
    }
    .button a, .contact .btn, .contact .btn:focus{
        font-size: 16px;
    }
    .about-text, .about-image{
        width: 100%;
    }
    .about{
        display: block;
        min-height: fit-content;
    }
    .about-text{
        padding: 50px 30px;
    }
    .about-text .about-wrap{
        text-align: center;
        max-width: 600px;
    }
    .about, .mask, .duo{
        height: fit-content;
        max-height: fit-content;
    }
    .mask, .duo{
        padding: 75px 15px 0px 15px;;
        background-image: none;
    }
    .product-name{
        margin-bottom: 20px;
    }
    .mask-img{
        background-image: url("img/bg-mask.png");
        background-position: center;
        background-size: cover;
    }
    .duo-img{
        background-image: url("img/bg-duo.png");
        background-position: center;
        background-size: cover;
    }
    .mask-img img, .duo-img img {
        max-width: 220px;
    }
    .m-about-image{
        width: 100%;
        height: 300px;
        background-image: url("img/m-about.jpg");
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }
    .contact{
        margin-top: 75px;
    }
    .contact-img{
        height: 300px;
    }
    .unique{
        max-width: 180px;
    }
    .footer{
        text-align: center;
        padding: 20px;
    }
    .footer p{
        float: none;
        margin: 6px 0;
    }
    @-moz-document url-prefix() {
        .about{
            margin-bottom: 300px;
            height: 350px;
            max-height: 350px;
            min-height: 350px;
        }
        .mask, .duo{
            height: 100%;
            max-height: 1000px;
            margin-bottom: 100px;
        }
    }
}
@media screen and (max-width: 591px){
    hr{
        margin-left: -15px;
        margin-right: -15px;
    }
    .distribute, .contact-form{
        padding: 0px 15px;
    }
    /* .unique p, .ddm p{
        padding-bottom: 10px;
    } */
    @-moz-document url-prefix() {
        .about-text{
            align-items: center;
            justify-content: center;
            display: flex;
        }
        .about{
            margin-bottom: 450px;
            height: 450px;
            max-height: 450px;
            min-height: 450px;
        }
        .mask, .duo{
            margin-bottom: 300px;
        }
    }
}

/* IE only */

@supports (-ms-ime-align: auto) {
    @media screen and (max-width:767px){
        .about{
            height: 100%;
            min-height: 350px;
            max-height: 350px;
            margin-bottom: 400px;
        }
        .duo, .mask{
            margin-bottom: 150px;
        }
    }
    
    @media screen and (max-width: 591px){
        .about{
            height: 100%;
            min-height: 420px;
            max-height: 420px;
            margin-bottom: 450px;
        }
        .mask{
            margin-bottom: 350px;
        }
        .duo{
            margin-bottom: 300px;
        }
    }
}