
/* ----------------------------------------

	01 . WRAPPER
	02 . HEADER
	03 . FOOTER
	04 . BUTTON
	05 . xxxxxx
	06 . xxxxxx
	07 . xxxxxx
	08 . xxxxxx
	09 . xxxxxx
	10 . xxxxxx

---------------------------------------- */





/* ////////////////////////////////////////////////////////////////////////////

	01 . WRAPPER + SECTION

//////////////////////////////////////////////////////////////////////////// */

.wrapper {
    position: relative;
}
.section {
    overflow: hidden;
    position: relative;
    padding: 100px 15px;
}
.section-inner {
    max-width: var(--site-width);
    margin: 0 auto;
    padding: 0 15px;
}
.section.margin_top { padding: 100px 15px 0 15px; }
.section.margin_bottom { padding: 0 15px 100px 15px; }
.section.full { padding: 0; }
.section.full .section-inner { max-width: 100%; padding: 0; }

/* .hero + .section { padding: 50px 15px 100px 15px; } */

@media only screen and (max-width: 991px) {
    .section { padding: 50px 0; }
    .section.margin_top { padding: 50px 0 0 0; }
    .section.margin_bottom { padding: 0 0 50px 0; }
    .hero + .section { padding: 50px 0; }
}


/* ----- section title ----- */
.section_title {
    position: relative;
    margin: 0 0 75px 0;
}
.section_title h2 {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-title);
    font-size: 18px;
    line-height: 1.1;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--color-primary-1);
}
.section_title h2::before {
    position: relative;
    top: -.05em;
    font-family: "Ionicons";
    content: '\f4b6';
    font-size: 125%;
}

@media only screen and (max-width: 991px) {
    .section_title {
        margin: 0 0 50px 0;
    }
    .section_title h2 {
        font-size: 14px;
    }
}

/* ----- section cta ----- */
.section_cta {
    text-align: center;
    margin: 75px 0 0 0;
}

@media only screen and (max-width: 991px) {
    .section_cta {
        margin: 50px 0 0 0;
    }
}

/* ----- loader ----- */
#loader-overlay {
    position: fixed;
    inset: 0;
    background: #2b1f16;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
#logo-wrapper {
    margin-bottom: 5px;
}
#percentage {
    font-size: 18px;
    font-weight: 500;
    color: #896447;
    min-width: 50px;
    text-align: center;
}





/* ////////////////////////////////////////////////////////////////////////////

	02 . HEADER

//////////////////////////////////////////////////////////////////////////// */

.header {
    position: absolute;
    z-index: 999;
    width: 100%;
}

/* ----- scrolled ----- */
.header_scrolled {
    position: fixed;
    z-index: 995;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-primary-xdark);
    transform: translateY(calc(-100% - 20px));
    transition: transform .5s cubic-bezier(.165,.84,.44,1), background-color .25s .6s;
}
.header_scrolled.is-active {
    transform: translateY(0);
}
.header_scrolled.open {
    background-color: transparent;
}

.header_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 30px;
    height: 120px;
    transition: height .25s, box-shadow .25s, background-color .25s;
    backface-visibility: hidden;
}
.header_scrolled .header_wrap {
    height: 80px;
}

@media only screen and (max-width: 991px) {
    .header {
        
    }
    .header_wrap {
        padding: 0 15px;
        height: 80px;
    }
}


/* LOGO */
.header_wrap-logo {
    position: relative;
    top: -1px;
    display: flex;
    flex-shrink: 0;
}
.header_wrap-logo img {
    height: 80px;
    filter: invert(1) brightness(10000%);
}
.header_scrolled .header_wrap-logo img {
    height: 60px;
}

@media only screen and (max-width: 991px) {
    .header_wrap-logo img {
        height: 50px;
    }
    .header_scrolled .header_wrap-logo img {
        height: 50px;
    }
}

/* CTA */
@media only screen and (max-width: 991px) {
    .header_wrap-cta {
        display: none;
    }
}


/* -------------------------------------------
    NAV 
------------------------------------------- */

/* ----- BURGER ----- */
.header_wrap-icon {
    position: relative;
    cursor: pointer;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    width: 207px;
}
.nav-icon-text {
    position: relative;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-light);
}
.nav-icon {
    position: relative;
    cursor: pointer;
    height: 70px;
    width: 32px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.nav-icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 70px;
    width: 70px;
    background-color: transparent;
}
.nav-icon span {
    background-color: transparent;
    content: "";
    display: block;
    height: 2px;
    position: relative;
    transform-origin: 50% 50%;
    transition: none;
    width: 32px;
    border-radius: 2em;
}
.nav-icon span:before,
.nav-icon span:after {
    background-color: var(--color-light);
    content: "";
    display: block;
    height: 2px;
    position: absolute;
    transform-origin: 50% 50%;
    transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out, transform 0.2s linear;
    width: 32px;
    border-radius: 2em;
}
.nav-icon span:before { top: 4px; }
.nav-icon span:after { top: -4px; }

.nav-icon.open span { background-color: transparent; transition: background-color 0.2s ease-out; }
.nav-icon.open span:before,
.nav-icon.open span:after { transition: top 0.2s ease-out, transform 0.2s 0.2s ease-out; }
.nav-icon.open span:before { top: 0; transform: rotate3d(0, 0, 1, -45deg); }
.nav-icon.open span:after { top: 0; transform: rotate3d(0, 0, 1, 45deg); }

@media only screen and (max-width: 991px) {
    .header_wrap-icon {
        width: 0;
    }
    .nav-icon-text {
        display: none;
    }
    .nav-icon {
        width: 70px;
        justify-content: flex-start;
    }
}



/* ----- NAV ----- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 480px;
    max-width: 85vw;
    height: 100dvh;
    background: var(--color-primary-xxlight);
    box-shadow: -3px 0px 12px 0px rgba(0,0,0,.06);
    z-index: 1000;
    -webkit-transform: translateX(-102%);
    transform: translateX(-102%);
    transition: transform .4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.nav.open {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}
.nav-overlay {
    content: "";
    top: 0;
    left: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.75);
    z-index: 999!important;
    visibility: hidden;
    opacity: 0;
    transition: opacity .4s, visibility .4s;
}
.nav-overlay.open {
    visibility: visible;
    opacity: 1;
}

.nav_wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    height: 100%;
}

/* ----- header ----- */
.nav_header {
    display: flex;
    width: 100%;
    padding: 20px 30px;
    border-bottom: var(--color-grey-light) solid 1px;
}
.nav_close {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    height: 30px;
    /* margin: 36px 0 0 30px; */
}
.nav_close i {
    font-size: 60px;
    line-height: 1;
}

/* ----- content ----- */
.nav_content {
    display: flex;
    flex: 1;
    min-height: 0;
    overflow: hidden;
    width: 100%;
    padding: 0 30px;
}

.nav_content-wrap {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 30px 0;
}
.nav_content-wrap::-webkit-scrollbar { display: none; }

/* links */
.nav_links {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.nav_links a {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    color: var(--color-dark);
    font-size: 28px;
    line-height: 1.2;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .025em;
    padding: 5px 0;
    transition: color .3s;
}
.nav_links a.active,
.no-touch .nav_links a:hover {
    color: var(--color-primary-1);
}

.nav_links a span {
    position: relative;
    display: block;
}
.nav_links a span::before {
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap;
    overflow: hidden;
    content: attr(data-hover);
    color: var(--color-primary-1);
    width: 0;
    transition: width .35s ease-out;
}
.no-touch .nav_links a:hover span::before,
.nav_links a.active span::before {
    width: 100%;
}

/* cta */
.nav_cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: var(--color-grey-light) solid 1px;
    padding: 30px 0 0 0;
    margin: auto 0 0 0;
}
.nav_cta div {
    display: flex;
    flex-direction: column;
    font-size: 16px;
    color: var(--color-primary-dark);
}
.nav_cta div:last-child {
    font-size: 14px;
    line-height: 1.4;
}
.nav_cta div a {
    color: var(--color-primary-dark)!important;
}
.no-touch .nav_cta div a:hover {
    color: var(--color-primary-1)!important;
}

/* ----- footer ----- */
.nav_footer {
    display: flex;
    width: 100%;
    margin: auto 0 0 0;
    padding: 20px 30px;
    border-top: var(--color-grey-light) solid 1px;
}
.nav_social {
    display: flex;
    gap: 15px;
    opacity: .75;
}
.nav_social a {
    display: flex;
    justify-content: center;
    align-items: center;
}
.nav_social a img {
    height: 24px;
    filter: invert(1) brightness(0);
}





/* ////////////////////////////////////////////////////////////////////////////

	03 . FOOTER

//////////////////////////////////////////////////////////////////////////// */

.footer {
    position: relative;
    overflow: hidden;
    /* border-radius: 40px 40px 0 0; */
    background-color: var(--color-primary-xdark);
    color: var(--color-light);
    height: auto;
}

.footer_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: luminosity;
    opacity: .2;
}
.footer_bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(50%);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

/* -------------------------------------------
    TOP
------------------------------------------- */
.footer_top {
    display: flex;
    justify-content: space-between;
    border-top: rgba(255,255,255,.15) solid 1px;
}

.footer_top-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    flex: 1;
    padding: 40px 30px;
    font-size: 15px;
    line-height: 1.5;
}
.footer_top-item::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: calc(100%);
    background-color: rgba(255,255,255,.15);
}
.footer_top-item:last-child::after {
    display: none;
}
.footer_top-item p {
    margin: 0;
}

/* ----- DESC ----- */
.footer_top-item.desc {
    flex: 1;
    gap: 30px;
}
.footer_top-item.desc img {
    height: 85px;
    /* filter: invert(1) brightness(10000%); */
}
.footer_top-item.desc p {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 300;
    max-width: 450px;
    color: var(--color-primary-xxlight);
}

/* ----- CONTACT ----- */
.footer_top-item.contact {
    flex: 1;
    gap: 10px;
    font-size: 19px;
    color: var(--color-primary-xlight);
}
.footer_top-item.contact p:first-child {
    margin: 0 0 10px 0;
}
.footer_top-item.contact p:last-child {
    margin: 10px 0 0 0;
}
.footer_top-item.contact a {
    position: relative;
    font-size: 19px!important;
    line-height: 1;
    font-weight: 400!important;
    color: var(--color-primary-xlight)!important;
}
.no-touch .footer_top-item.contact a:hover {
    color: var(--color-primary-xlight)!important;
}
.footer_top-item.contact a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: -2px;
    left: 0;
    background: currentcolor;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}
.no-touch .footer_top-item.contact a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}
.footer_top-item.contact p.small {
    font-size: 14px;
}

/* ----- SOCIAL ----- */
.footer_top-item.social {
    /* flex: 0 1 auto; */
    max-width: 250px;
    gap: 15px;
    align-items: center;
    justify-content: flex-end;
}
.footer_top-item.social p {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .025em;
    color: var(--color-primary-1);
}
.list_social {
    display: flex;
    gap: 0;
}
.list_social a {
    display: flex;
    padding: 0 12px;
}
.list_social a img {
    height: 28px!important;
    transition: opacity .25s;
}
.no-touch .list_social a:hover img {
    opacity: .75;
}


/* -------------------------------------------
    BOTTOM
------------------------------------------- */
.footer_bottom {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    padding: 25px 30px;
}
.footer_bottom::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 300%;
    height: 1px;
    background-color: rgba(255,255,255,.15);
}
.footer_bottom ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
}
.footer_bottom li {
    margin: 0;
    padding: 0;
    display: flex;
}
.footer_bottom li a {
    position: relative;
    font-size: 12px;
    line-height: 1.05;
    color: var(--color-light);
    white-space: nowrap;
    opacity: .5;
    transition: opacity .25s;
}
.no-touch .footer_bottom li a:hover {
    color: var(--color-light);
    opacity: .75;
}
.footer_bottom-copy {
    display: inline-block;
    white-space: nowrap;
    font-size: 12px;
    line-height: 1.25;
    color: var(--color-light);
    opacity: .5;
}

@media only screen and (max-width: 991px) {
    .footer {
        padding: 0;
        /* border-radius: 30px 30px 0 0; */
    }
    .footer-inner {
        /* padding: 50px 0 0 0; */
    }
    .footer_top {
        flex-direction: column;
        gap: 50px;
    }
    .footer_top-item {
        gap: 20px;
        padding: 0 15px!important;
    }
    .footer_top-item::after {
        top: inherit;
        right: inherit;
        bottom: -25px;
        left: 0;
        width: calc(100%);
        height: 1px;
    }
    .footer_top-item.desc {
        gap: 20px;
        padding: 30px 15px 0 15px!important;
    }
    .footer_top-item.desc img {
        height: 70px;
    }
    .footer_top-item.desc p {
        max-width: inherit;
    }
    .list_social {
        margin: 10px 0 0 0;
    }
    .footer_top-item.certif {
        max-width: inherit;
        align-items: flex-start;
    }
    .footer_bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
        padding: 60px 15px 30px 15px;
    }
    .footer_bottom::before {
        display: none;
    }
    .footer_bottom ul {
        flex-direction: column;
        gap: 12px;
    }
}


.footer-form {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 100px 30px;
}
.footer-form h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-primary-xxlight);
    margin: 0 0 10px 0;
}
.footer-form p {
    color: var(--color-primary-xlight);
}
.footer-form form {
    margin: 50px 0 0 0;
}

@media only screen and (max-width: 991px) {
    .footer-form {
        position: relative;
        width: 100%;
        max-width: 800px;
        margin: 0 auto;
        padding: 50px 15px;
    }
}





/* ////////////////////////////////////////////////////////////////////////////

	04 . BUTTON

//////////////////////////////////////////////////////////////////////////// */

a.btn,
button.btn {
    position: relative;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    font-size: 16px;
    line-height: 60px;
    font-weight: 600;
    text-transform: uppercase;
    min-width: auto;
    border-radius: var(--radius-md);
    padding: 0;
    margin: 0;
    background-color: var(--color-dark);
    color: var(--color-light);
    white-space: nowrap;
    text-decoration: none!important;
    outline: 0!important;
    border: none;
}
.no-touch a.btn:hover,
.no-touch button.btn:hover {
    color: var(--color-light);
}
a.btn::before,
button.btn::before,
a.btn::after,
button.btn::after {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Ionicons";
    content: "\f30f";
    font-weight: normal;
    transition: transform .35s, opacity .35s;
    transform-origin: center;
    opacity: 0;
    transform: translateX(-25px);
}
.no-touch a.btn:hover::before,
.no-touch button.btn:hover::before {
    transform: translateX(25px);
    opacity: 1;
}
a.btn::after,
button.btn::after {
    left: inherit;
    right: 0;
    opacity: 1;
    transform: translateX(-25px);
}
.no-touch a.btn:hover::after,
.no-touch button.btn:hover::after {
    transform: translateX(25px);
    opacity: 0;
}
a.btn span,
button.btn span {
    position: relative;
    padding: 0 50px 0 25px;
    transition: transform .35s, padding .35s;
}
.no-touch a.btn:hover span,
.no-touch button.btn:hover span {
    padding: 0 25px 0 50px;
}


button.btn:disabled,
button.btn[disabled] {
    opacity: .5;
    pointer-events: none;
}


/* ----- SIZES ----- */

/* M */
a.btn-m, button.btn-m { font-size: 13px; line-height: 50px; padding: 0; }
a.btn-m span, button.btn-m span { padding: 0 40px 0 20px; }
.no-touch a.btn-m:hover span, .no-touch button.btn-m:hover span { padding: 0 20px 0 40px; }
a.btn-m::before, button.btn-m::before { transform: translateX(-20px); }
.no-touch a.btn-m:hover::before, .no-touch button.btn-m:hover::before { transform: translateX(20px); }
a.btn-m::after, button.btn-m::after { transform: translateX(-20px); }
.no-touch a.btn-m:hover::after, .no-touch button.btn-m:hover::after { transform: translateX(20px); }

/* S */
a.btn-s, button.btn-s { font-size: 12px; line-height: 40px; padding: 0; }
a.btn-s span, button.btn-s span { padding: 0 30px 0 15px; }
.no-touch a.btn-s:hover span, .no-touch button.btn-s:hover span { padding: 0 15px 0 30px; }
a.btn-s::before, button.btn-s::before { transform: translateX(-15px); }
.no-touch a.btn-s:hover::before, .no-touch button.btn-s:hover::before { transform: translateX(15px); }
a.btn-s::after, button.btn-s::after { transform: translateX(-15px); }
.no-touch a.btn-s:hover::after, .no-touch button.btn-s:hover::after { transform: translateX(15px); }


/* ----- ICONS ----- */
/* image */
a.btn.icon-img::before, button.btn.icon-img::before,
a.btn.icon-img::after, button.btn.icon-img::after { content: "\f147"; }
/* cart */
a.btn.icon-cart::before, button.btn.icon-cart::before,
a.btn.icon-cart::after, button.btn.icon-cart::after { content: "\f110"; }

/* -----STYLES ----- */
/* ----- outline ----- */
a.btn.btn-outline, button.btn.btn-outline {
    background-color: transparent; color: var(--color-dark); box-shadow: inset 0px 0px 0px 2px var(--color-dark);
}
.no-touch a.btn.btn-outline:hover, .no-touch button.btn.btn-outline:hover {
    color: var(--color-dark);
}

/* ----- white ----- */
a.btn.btn-white, button.btn.btn-white {
    background-color: var(--color-light); color: var(--color-dark);
}
.no-touch a.btn.btn-white:hover, .no-touch button.btn.btn-white:hover {
    color: var(--color-dark);
}
/* white - outline */
a.btn.btn-outline.btn-white, button.btn.btn-outline.btn-white {
    background-color: transparent; color: var(--color-light); box-shadow: inset 0px 0px 0px 2px var(--color-light);
}
.no-touch a.btn.btn-outline.btn-white:hover, .no-touch button.btn.btn-outline.btn-white:hover {
    background-color: transparent; color: var(--color-light);
}

/* ----- grey ----- */
a.btn.btn-grey, button.btn.btn-grey {
    background-color: var(--color-grey); color: var(--color-light);
}
.no-touch a.btn.btn-grey:hover, .no-touch button.btn.btn-grey:hover {
    color: var(--color-light);
}
/* grey - outline */
a.btn.btn-outline.btn-grey, button.btn.btn-outline.btn-grey {
    background-color: transparent; color: var(--color-grey); box-shadow: inset 0px 0px 0px 2px var(--color-grey);
}
.no-touch a.btn.btn-outline.btn-grey:hover, .no-touch button.btn.btn-outline.btn-grey:hover {
    background-color: transparent; color: var(--color-grey);
}

/* ----- primary-1 ----- */
a.btn.btn-primary-1, button.btn.btn-primary-1 { background-color: var(--color-primary-1); }
/* primary-1 - outline */
a.btn.btn-outline.btn-primary-1, button.btn.btn-outline.btn-primary-1 { background-color: transparent; color: var(--color-primary-1); box-shadow: inset 0px 0px 0px 2px var(--color-primary-1); }
.no-touch a.btn.btn-outline.btn-primary-1:hover, .no-touch button.btn.btn-outline.btn-primary-1:hover { color: var(--color-primary-1); }

/* ----- primary-2 ----- */
a.btn.btn-primary-2, button.btn.btn-primary-2 { background-color: var(--color-primary-2); color: var(--color-dark); }
.no-touch a.btn.btn-primary-2:hover, .no-touch button.btn.btn-primary-2:hover { color: var(--color-dark); }
/* primary-2 - outline */
a.btn.btn-outline.btn-primary-2, button.btn.btn-outline.btn-primary-2 { background-color: transparent; color: var(--color-primary-2); box-shadow: inset 0px 0px 0px 2px var(--color-primary-2); }
.no-touch a.btn.btn-outline.btn-primary-2:hover, .no-touch button.btn.btn-outline.btn-primary-2:hover { color: var(--color-primary-2); }

/* ----- primary-3 ----- */
a.btn.btn-primary-3, button.btn.btn-primary-3 { background-color: var(--color-primary-3); }
/* primary-3 - outline */
a.btn.btn-outline.btn-primary-3, button.btn.btn-outline.btn-primary-3 { background-color: transparent; color: var(--color-primary-3); box-shadow: inset 0px 0px 0px 2px var(--color-primary-3); }
.no-touch a.btn.btn-outline.btn-primary-3:hover, .no-touch button.btn.btn-outline.btn-primary-3:hover { color: var(--color-primary-3); }

/* ----- primary-4 ----- */
a.btn.btn-primary-4, button.btn.btn-primary-4 { background-color: var(--color-primary-4); color: var(--color-dark); }
.no-touch a.btn.btn-primary-4:hover, .no-touch button.btn.btn-primary-4:hover { color: var(--color-dark); }
/* primary-4 - outline */
a.btn.btn-outline.btn-primary-4, button.btn.btn-outline.btn-primary-4 { background-color: transparent; color: var(--color-primary-4); box-shadow: inset 0px 0px 0px 2px var(--color-primary-4); }
.no-touch a.btn.btn-outline.btn-primary-4:hover, .no-touch button.btn.btn-outline.btn-primary-4:hover { color: var(--color-primary-4); }








