*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: "roboto";
    src: url('../fonts/roboto/RobotoCondensed-Light.ttf') format("truetype");
}

@font-face {
    font-family: "roboto";
    font-weight: bold;
    src: url('../fonts/roboto/RobotoCondensed-Bold.ttf') format("truetype");
}

@font-face {
    font-family: "playfair";
    src: url('../fonts/playfair-display/PlayfairDisplay-Regular.ttf') format("truetype");
}

@font-face {
    font-family: "musetta";
    src: url('../fonts/musetta/musetta-regular-webfont.ttf') format("truetype");
}

:root {
    --olive: #BBB79D;
    --textolive: #605e4d;
    --gray-light: #F6F5EF;
    --black: #000000;
    --white: #ffffff;
}

body{
    -ms-overflow-style: none;
    scrollbar-width: none;
}

body::-webkit-scrollbar {
    display: none;
}

body.force-remove-body-scrollbar {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    transition: none;
}

.container-1920{
    max-width: 1920px;
    margin: 0 auto;
    width: 100%;
    padding-left: 60px;
    padding-right: 60px;
}

@media (min-width: 1600px){
    .container{
        max-width: 1490px;
    }
}

p{
    margin-bottom: 0;
    font-family: 'roboto';
}

a,
a:visited,
a:hover{
    color: black;
}

h1, h2, h3, h4, h5, h6{
    font-family: 'musetta';
    word-break: break-word;
}

h1{
    font-size: 206px;
    line-height: 206px;
}


h2{
    font-size: 120px;
    line-height: 120px;
}

h3{
    font-size: 96px;
    line-height: 104px;
}

h4 {
    font-size: 32px;
    line-height: 40px;
}
/* DETAIL BLOG TYPING */
.article-container .full-page-text-top h1 {
    font-size: 110px;
    line-height: 110px;
}
.article-container h1 {
    font-size: 90px;
    line-height: 90px;
}
.article-container h2 {
    font-size: 70px;
    line-height: 72px;
}
.article-container h3 {
    font-size: 56px;
    line-height: 56px;
}
.article-container {
    font-size: 18px;
}
@media (max-width: 1600px){
    h2,
    .article-container h2 {
        font-size: 80px;
        line-height: 80px;
    }
}

@media (max-width: 1410px){
    h1{
        font-size: 150px;
        line-height: 150px;
    }
}

@media (max-width: 992px){
    .article-container h1{
        font-size: 78px;
        line-height: 78px;
    }
    h2,
    .article-container h2{
        font-size: 68px;
        line-height: 76px;
    }

    h3,
    .article-container h3{
        font-size: 48px;
        line-height: 48px;
    }
}

@media (max-width: 767px){
    h1 {
        font-size: 95px;
        line-height: 95px;
    }
    .article-container h1{
        font-size: 62px;
        line-height: 62px;
    }

    h2,
    .article-container h2{
        font-size: 48px;
        line-height: 56px;
    }

    .article-container h3{
        font-size: 38px;
        line-height: 38px;
    }
}
@media (max-width: 562px){
    h4{
        font-size: 28px;
    }
}

.overflow-hidden{
    overflow: hidden !important;
}

.padding0{
    padding: 0;
}

input:focus,
button:focus,
textarea:focus{
    outline: none;
}

.button,
.select-custom{
    border-radius: 40px;
    font-size: 16px;
    letter-spacing: 0;
    text-align: center;
    line-height: 24px;
    padding: 20px 35px 20px 65px;
}

select{
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url('../images/select-img.svg') no-repeat calc(100% - 10px) 50%;
    background-size: 15px 15px;
    border-radius: none;
    height: 51px;
}

select::after {
    content: "\25bc";
    font-size: 15px;
    color: #000000;
    position: absolute;
    right: 0;
    top: 0;
}

.button p{
    display: inline-flex;
    align-items: center;
}

.button p::after{
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-left:  35px;
}

a.button{
    text-decoration: none;
}

.button.btn-white{
    color: #000000;
    background: var(--gray-light);
    border: 1px solid transparent;
}

.button.btn-green{
    color: var(--gray-light);
    background-color: var(--olive);
    border: 1px solid transparent;
}
.button.btn-green:disabled{
    color: var(--gray-light);
    background-color: darkgrey;
    border: 1px solid transparent;
}

.button.btn-white:hover{
    border: 1px solid var(--gray-light);
    color: var(--gray-light);
    background-color: var(--olive);
}

.button.btn-green:hover:not(:disabled){
    color: var(--black);
    border: 1px solid var(--olive);
    background-color: var(--gray-light);
}

.button.btn-white p::after{
    background-color: var(--olive);
}

.button.btn-green p::after{
    background-color: var(--gray-light);
}

.button.btn-white:hover p::after{
    background-color: var(--gray-light);
}

.button.btn-green:hover:not(:disabled) p::after{
    background-color: var(--olive);
}

.musetta{
    font-family: 'musetta' !important;
}

.musetta-text p{
    font-family: 'musetta' !important;
}

.roboto{
    font-family: 'roboto' !important;
}

.roboto-text p{
    font-family: 'roboto' !important;
}

.playfair{
    font-family: 'playfair' !important;
}

.playfair-text p{
    font-family: 'playfair' !important;
}

.navbar{
    width: 100%;
    padding-top: 50px;
    padding-bottom: 10px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
}
.smart-scroll{
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}
.navbar.scrolled-up{
    padding-top: 20px;
    padding-bottom: 20px;
}
.navbar-transparent{
    background-color: transparent;
}
.navbar-wrap{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #FFFFFF;
    position: relative;
}
.white-logo.black{
    filter: invert();
}
.logo-mobile{
    display: none;
}
.menu{
    cursor: pointer;
}
.desktop-menu{
    position: fixed;
    background-color: var(--gray-light);
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    z-index: 10;
    display: none;
}
.desktop-menu .container-1920{
    padding-left: 0;
    height: 100%;
    max-width: 2600px;
}
.desktop-menu .container-1920 .row{
    height: 100%;
}
.desktop-menu-img{
    height: 100%;
    position: relative;
    overflow: hidden;
    min-height: 700px;
}
.desktop-menu-img img{
    position: absolute;
    top: 50%;
    right: 0;
    border-radius: 0 50% 50% 0;
    transform: translateY(-50%);
    height: 120%;
    display: none;
}
.desktop-menu-img img.active{
    display: block;
}
.desktop-menu-items{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    padding-top: 150px;
    padding-bottom: 60px;
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    height: 100%;
    margin-left: 4.33333%;
    padding-left: 4%;
}
.news-landing-main-cont .desktop-menu-items{
    padding-top: 50px;
}
.desktop-menu-items::-webkit-scrollbar {
    display: none;
}
.desktop-menu-items ul{
    list-style: none;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}
.desktop-menu-items ul li{
    font-family: 'musetta';
    font-size: 73px;
    letter-spacing: 0;
    line-height: 76px;
}
.desktop-menu-items ul{
    padding-left: 0;
}
.desktop-menu-items ul li a{
    text-decoration: none;
    display: block;
}
.desktop-menu-items .go-shop a{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.desktop-menu-items .go-shop button{
    border: 1px solid var(--olive);
}

.desktop-menu-items .go-shop:hover button{
    color: var(--gray-light);
    border: 1px solid var(--olive);
    background-color: var(--olive);
}

.desktop-menu-items .go-shop:hover button p::after{
    background-color: var(--gray-light);
}

.desktop-menu-items ul li:hover a{
    font-family: 'roboto';
    color: var(--olive);
    position: relative;
}

.desktop-menu-items ul li:hover a::before{
    content: '';
    width: 20px;
    height: 20px;
    background-color: var(--olive);
    border-radius: 50%;
    margin-right: 20px;
    display: inline-block;
    position: absolute;
    bottom: 22px;
    left: -50px;
}

.desktop-menu-items ul li a button{
    border: 1px solid var(--olive);
}

.desktop-menu-footer .col-3{
    font-size: 16px;
    color: #000000;
    letter-spacing: 0;
    line-height: 24px;
    width: 30% !important;
}

.desktop-menu-footer .col-3:last-child{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 10% !important;
}

.desktop-menu-footer .col-3 i{
    font-size: 22px;
    margin: 5px 0;
}

.full-page-header{
    width: 100%;
}

.full-page-header .container-1920{
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 160px;
    padding-bottom: 80px;
    color: white;
    position: relative;
    max-width: 2600px;
}

.full-page-header .container-1920:after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 100%;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.full-page-header .container-1920 .container{
    padding-right: 0;
    padding-left: 0;
}

.full-page-text-top,
.full-page-text-bottom{
    position: relative;
    z-index: 2;
}

.full-page-text-top h1{
    font-family: 'musetta';
    font-size: 128px;
    letter-spacing: 0;
    line-height: 128px;
    text-indent: 120px;
}

.full-page-text-bottom{
    width: 100%;
    text-align: end;
    position: relative;
    padding-left: 260px;
    min-height: 100px;
}

.full-page-text-bottom h2{
    font-family: 'roboto';
    font-size: 100px;
    line-height: 120px;
}

.full-page-text-bottom a{
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
}
.newsletter{
    padding: 100px 0;
    background-color: var(--gray-light);
}

.news-wrap{
    display: flex;
    justify-content: space-between;
}
.newsletter .news-title{
    margin-bottom: 20px;
}
.newsletter h4{
    font-family: 'playfair';
    font-size: 32px;
    letter-spacing: 0;
    line-height: 40px;
}
.newsletter i{
    font-size: 50px;
    color: #000000;
    opacity: 0.3;
}
.news-icon{
    display: flex;
    justify-content: center;
    align-items: center;
}
.news-input input,
input.pb-custom-input{
    width: 100%;
    border: none;
    border-bottom: 1px solid #000000;
    background-color: transparent;
    font-size: 56px;
    line-height: 56px;
    letter-spacing: 0;
    padding: 20px 0 15px;
    color: #000000;
    opacity: 0.3;
    font-family: 'musetta';
}
.news-input input::placeholder,
input.pb-custom-input::placeholder{
    font-family: 'musetta';
    color: #000000;
    letter-spacing: 0;
}
.newsletter .news-input{
    position: relative;
    margin-bottom: 15px;
    flex-grow: 1;
    margin-left: 30px;
    margin-right: 30px;
}
.news-btn{
    display: flex;
    align-items: center;
}

.news-wrap button{
    display: flex;
    border: none;
    background-color: transparent;
    padding: 10px 20px 10px;
}

.news-wrap-item{
    display: flex;
    align-items: center;
    width: 100%;
}
.news-wrap-item img{
    width: 50px;
}

.news-privacy{
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.news-privacy label{
    font-family: 'roboto';
    font-size: 12px;
    letter-spacing: 0;
    line-height: 24px;
}

.news-privacy input{
    background: #F6F5EF;
    border: 1px solid #BBB79D;
    padding: 0;
}

.news-privacy .checkbox-round {
    width: 20px;
    min-width: 20px;
    height: 20px;
    background-color: var(--gray-light);
    border-radius: 50%;
    vertical-align: middle;
    border: 1px solid var(--olive);
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
    margin-right: 20px;
}
.news-privacy .checkbox-round:checked {
    background-color: var(--olive);
}
.mobile-button{
    display: none;
}
.white-logo.filter-drops{
    filter: drop-shadow(2px 1px 1px black);
}
@media (max-width: 1600px){
    .images-section h2{
        font-size: 80px;
        line-height: 80px;
    }
}
@media (max-width: 1500px){
    .desktop-menu-items ul li{
        font-size: 70px;
        line-height: 74px;
    }

    .full-page-text-top h1{
        font-size: 100px;
        line-height: 100px;
    }

    .full-page-text-bottom h2 {
        font-size: 85px;
        line-height: 85px;
    }
}
@media (max-width: 1400px){

    .desktop-menu-footer .col-3{
        font-size: 14px;
    }

    .desktop-menu-items .go-shop button{
        padding-left: 35px;
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .images-section .images-little-text p,
    .images-slider-text .images-text-title p{
        font-size: 24px;
        line-height: 32px;
    }

    .images-slider-text p{
        font-size: 16px;
    }

    .images-slider-text .images-text-title {
        margin-top: 25px;
        margin-bottom: 15px;
    }
    .newsletter-landing-form h3{
        font-size: 60px;
        line-height: 70px;
    }
    .newsletter-landing-form h4{
        font-size: 28px;
        line-height: 36px;
    }
}

@media (max-width: 1300px){
    .desktop-menu-items ul li:hover a::before{
        width: 15px;
        height: 15px;
        left: -30px;
        bottom: 15px;
    }
    .desktop-menu-items{
        padding-bottom: 30px;
    }
}

@media (max-width: 1200px){
    .news-input input {
        font-size: 46px;
        line-height: 46px;
    }
    .newsletter-landing-form h3{
        font-size: 55px;
        line-height: 60px;
    }
}

@media (max-width: 992px){
    .white-logo,.black-logo{
        display: none !important;
    }
    .logo-mobile{
        display: block;
    }
    .button{
        padding: 15px 35px 15px 65px;
        min-width: 254px;
    }

    .cart-checkout {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 999;
    }

    .home-first-img a{
        display: none;
    }
    .container-1920{
        padding-left: 30px;
        padding-right: 30px;
    }
    .desktop-menu .container-1920{
        padding-left: 15px;
    }
    .navbar{
        background-color: var(--white);
        padding-top: 15px;
        padding-bottom: 15px;
        height: 86px;
    }
    .logo{
        max-width: 55%;
    }
    .menu-btn{
        width: 45px;
    }
    .menu-btn__burger, .menu-btn__burger::before, .menu-btn__burger::after{
        width: 45px;
        background-color: #7D7B68 !important;
    }

    .menu-btn.open .menu-btn__burger {
        background-color: transparent !important;
    }

    .menu{
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 155px;
        align-items: center;
    }
    .desktop-menu{
        /* background-color: #BBB79D; */
        background-image: url("../images/mobile-menu-back.jpeg"), linear-gradient(rgba(0,0,0,7),rgba(0,0,0,7));
        background-blend-mode: overlay;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .desktop-menu-items ul li {
        font-size: 75px;
        line-height: 84px;
    }

    .desktop-menu-img{
        display: none;
    }

    .desktop-menu-items{
        padding-left: 15px;
        margin-left: 0;
    }
    .news-landing-main-cont .desktop-menu-items {
        padding-top: 75px;
    }

    .newsletter-landing .navbar{
        height: 60px;
    }
    input.pb-custom-input{
        opacity: 1;
        color: #5b5945;
    }
    input.pb-custom-input::placeholder{
        color: #5b5945;
    }
}

@media (max-width: 767px){
    .desktop-menu-footer{
        margin-bottom: 80px;
    }
    .newsletter-landing-form h3 {
        font-size: 50px;
        line-height: 52px;
    }
    .newsletter-landing-form h4 {
        font-size: 22px;
        line-height: 30px;
    }
}

@media (max-width: 560px){
    .container-1920{
        padding-left: 15px;
        padding-right: 15px;
    }
    input,select,textarea{
        border-radius: unset !important;
    }
    input[type="checkbox"]{
        border-radius: 50% !important;
    }
    .news-input input::placeholder{
        font-size: 38px;
        line-height: 40px;
    }
    .footer-black-logo{
        width: 60%;
    }
    .news-privacy {
        align-items: baseline;
    }
    .news-landing-main-cont .news-privacy {
        align-items: center;
    }
    .news-landing-main-cont .desktop-menu-items{
        padding-top: 90px;
    }
    .news-landing-main-cont .desktop-menu-footer{
        margin-bottom: 85px;
    }
    .newsletter-landing-form h3 {
        font-size: 36px;
        line-height: 42px;
    }
    .newsletter-landing-form h4 {
        font-size: 22px;
        line-height: 32px;
    }
    .newsletter-landing-form .desktop-menu-footer {
        margin-bottom: 0;
    }
    input.pb-custom-input {
        font-size: 32px;
        line-height: 32px;
        padding: 0 0 15px;
    }
}

@media (max-width: 450px){
    input.pb-custom-input {
        font-size: 28px;
        line-height: 28px;
    }
}


@media (height: 1366px) and (width: 1024px) {
    .desktop-menu-img{
        display: none;
    }

    .desktop-menu-items{
        width: 100%;
        margin-left: 0;
        padding-left: 0;
        padding-right: 0;
        padding-top: 30%;
        padding-bottom: 40px;
    }

    .desktop-menu .container-1920{
        padding-left: 60px;
    }


    .desktop-menu {
        background-image: url(../images/mobile-menu-back.jpeg), linear-gradient(rgba(0,0,0,7),rgba(0,0,0,7));
        background-blend-mode: overlay;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
}







