/* -------------------------------------------------
	
	01 . IMPORT
	02 . BASE
	03 . HERO
	04 . CONTACT
	05 . CAROUSEL - Swiper
	06 . POPUP
	07 . CTA
	08 . FAQ
	09 . REJOINDRE
	10 . xxxxxx
	
------------------------------------------------- */

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

    01 . IMPORT

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

@import url("https://fonts.googleapis.com/css2?family=Vend+Sans:wght@300..700&display=swap");

@import url("libs/magnific-popup.css");

@import url("interface.css");
@import url("form.css");
@import url("home.css");
@import url("blog.css");
@import url("shop.css");
@import url("minis.css");
@import url("pro.css");
@import url("about.css");
@import url("ateliers.css");
@import url("map.css");
@import url("log.css");
@import url("rd-ajustment.css");
@import url("client.css");
@import url("auth.css");

@font-face {
    font-family: "font-title";
    src:
        url("../fonts/font-title.woff2") format("woff"),
        url("../fonts/font-title.woff") format("woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "font-title-bold";
    src:
        url("../fonts/font-title-bold.woff2") format("woff"),
        url("../fonts/font-title-bold.woff") format("woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "font-title-black";
    src:
        url("../fonts/font-title-black.woff2") format("woff"),
        url("../fonts/font-title-black.woff") format("woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --site-width: 1530px;

    --font-text: "Vend Sans", sans-serif;
    --font-title: "font-title", serif;
    --font-title-bold: "font-title-bold", serif;
    --font-title-black: "font-title-black", serif;

    --color-light: #fbfaf8; /* rgba(251,250,248,1); */
    --color-dark: #1a1918; /* rgba(26,25,24,1); */

    --color-primary-dark: #a47f3b; /* rgba(164,127,59,1); */
    --color-primary: #c5a059; /* rgba(197,160,89,1); */
    --color-primary-light: #dfcb9f; /* rgba(223,203,159,1); */
    --color-primary-xlight: #ebdebf; /* rgba(235,222,191,1); */
    --color-primary-xxlight: #f7f2e6; /* rgba(247,242,230,1); */

    --color-grey-dark: #3d3b39; /* rgba(61,59,57,1); */
    --color-grey: #6b6865; /* rgba(107,104,101,1); */
    --color-grey-light: #b4b0ac; /* rgba(180,176,172,1); */
    --color-grey-xlight: #dedad6; /* rgba(222,218,214,1); */
    --color-grey-xxlight: #f5f3f1; /* rgba(245,243,241,1); */

    --line-dark: rgba(26, 25, 24, 0.15);
    --line-light: rgba(251, 250, 248, 0.15);
    --line-form: rgba(26, 25, 24, 0.2);

    --radius-sm: 5px;
    --radius-md: 10px;
    --radius-lg: 15px;
    --radius-xl: 20px;
    --radius-xxl: 25px;
    --radius-full: 2em;
}

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

    02 . BASE

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

html,
body {
    overflow-x: clip;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}
body {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: var(--color-light);
    color: var(--color-dark);
    font-family: var(--font-text);
    font-size: 17px;
    line-height: 1.45;
    /* font-weight: 300; */
    /* overflow-x: hidden!important; */
    /* text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; */
}
body.open {
    touch-action: none !important;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 500px;
    background-image: url(../img/interface/pattern-02.png);
    background-repeat: repeat;
    background-size: 43px 50px;
    background-position: center;
    opacity: 0.4;
    mix-blend-mode: luminosity;
    -webkit-mask-image: linear-gradient(to top, transparent 0%, black 80%);
    mask-image: linear-gradient(to top, transparent 0%, black 80%);
}

/* SCROLLBAR */
body::-webkit-scrollbar {
    display: none;
}
html {
    margin: 0 !important;
}

/* LIENS */
a {
    color: var(--color-dark);
    text-decoration: none;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    -webkit-tap-highlight-color: transparent !important;
}
.no-touch a:hover {
    color: var(--color-dark);
    outline: 0;
    text-decoration: none;
}

a[href^="tel"] {
    color: inherit !important;
    text-decoration: inherit !important;
    font-size: inherit !important;
    font-style: inherit !important;
    font-weight: inherit !important;
}

/* TEXTE */
br {
    font-size: 0;
    line-height: 0;
}
strong,
b {
    font-weight: 700;
}

/* IMAGE */
img {
    position: relative;
    max-width: 100%;
    height: auto;
    user-select: none;
    -webkit-user-drag: none;
    -ms-interpolation-mode: bicubic;
    vertical-align: middle;
}

/* LISTES */
ol,
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* PARAGRAPHES */
p {
    margin: 0 0 10px 0;
    padding: 0;
}
p:last-child {
    margin: 0;
}

/* TITRES */
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1;
    margin: 0;
    padding: 0;
    font-weight: normal;
}

/* PADDING */
.no-padding {
    padding: 0;
}

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

	03 . HERO

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

.hero {
    position: relative;
    z-index: 0;
    width: 100%;
    height: calc(40vh);
    min-height: 250px;
    max-height: 350px;
}
.hero-inner {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* padding: 220px 0 0 0; */
}

/* ----- caption ----- */
.hero_caption {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: calc(var(--site-width) + 30px);
    margin: 0 auto;
    padding: 0 30px 0 30px;
}
.hero_caption-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}
.hero_caption h1 {
    font-family: var(--font-title-bold);
    font-size: clamp(2.25rem, -0.2813rem + 6.75vw, 5.625rem);
    line-height: 1.15;
    text-transform: uppercase;
    color: var(--color-primary-xlight);
}
.hero_caption h2 {
    font-size: clamp(1.125rem, 0.8438rem + 0.75vw, 1.5rem);
    line-height: 1.4;
    font-weight: 300;
    color: var(--color-grey-xlight);
}
.hero_caption a {
    align-self: start;
    margin: 10px auto 0 auto;
}

@media only screen and (max-width: 992px) {
    .hero {
        height: calc(40vh);
        min-height: 250px;
        max-height: 250px;
    }
    .hero_caption {
        padding: 0 15px 0 15px;
    }
    .hero_caption h2 {
        line-height: 1.35;
    }
    .hero_caption h2 br {
        display: none;
    }
}

/* ----- image ----- */
.hero_image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
}
.hero_image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.6) 100%
    );
}
.hero_image img {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    height: 115%;
    object-fit: cover;
    object-position: top center;
    filter: saturate(110%);
    will-change: transform;
}

/* ----- video ----- */
.hero_video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
}
.hero_video::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.6) 100%
    );
}
.hero_video video {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    width: 100vw;
    height: 115%;
    object-fit: cover;
    pointer-events: none;
    will-change: transform;
}

/* ----- btn scroll ----- */
.btn-scroll {
    position: absolute;
    z-index: 1;
    bottom: 0;
    right: 0;
    margin: 40px 20px;
    padding: 0 20px;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    text-decoration: none;
    color: var(--color-primary-light);
}
.no-touch .btn-scroll:hover {
    color: var(--color-primary-light);
}
.btn-scroll span {
    writing-mode: vertical-rl;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 15px;
}
.line-container {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.no-touch .btn-scroll:hover .line-container {
    height: 40px;
}
.line-animated {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--color-primary-light);
    top: 0;
    left: 0;
    animation: line-slide 3s infinite ease-in-out;
}
@keyframes line-slide {
    0% {
        transform: translateY(-100%);
    }
    30%,
    60% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(100%);
    }
}

@media only screen and (max-width: 992px) {
    .btn-scroll {
        display: none;
    }
}

/* -------------------------------------------
    HERO FULL
------------------------------------------- */
.hero.full {
    height: calc(100vh);
    min-height: inherit;
    max-height: inherit;
}
.hero.full .hero-inner {
    color: var(--color-light);
}
.hero.full .hero_caption {
    padding: 120px 30px 0 30px;
}
.hero.full .hero_caption.has-banner {
    padding: 160px 30px 0 30px;
}
.hero.full .hero_caption h2 {
    /* 26px - 19px */
    font-size: clamp(1.1875rem, 0.9886rem + 0.6364vw, 1.625rem);
    line-height: 1.35;
    /* font-weight: 300; */
    color: var(--color-light);
}

@media only screen and (max-width: 992px) {
    .hero.full .hero_caption {
        padding: 100px 15px 0 15px;
    }
    .hero.full .hero_caption.has-banner {
        padding: 120px 15px 0 15px;
    }
}

/* -------------------------------------------
    HERO SMALL
------------------------------------------- */
.hero.small {
    background-color: transparent;
    height: auto;
    min-height: auto;
    max-height: auto;
}
.hero.small .hero-inner {
    padding: 70px 0 0 0;
}
.hero.small .hero-inner::after {
    display: none;
}
.hero.small .hero_caption {
    position: relative;
    align-items: flex-end;
    padding: 0 30px 50px 30px;
}
.hero.small .hero_caption-inner {
    max-width: 1140px;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
    text-align: left;
    padding: 0 0 20px 0;
    border-bottom: var(--color-grey-light) solid 1px;
}
.hero.small .hero_caption h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    line-height: 1.1;
    letter-spacing: 0.025em;
    color: var(--color-dark);
}

@media only screen and (max-width: 992px) {
    .hero.small .hero-inner {
        padding: 30px 0 15px 0;
    }
    .hero.small .hero_caption {
        padding: 0 15px 30px 15px;
    }
    .hero.small .hero_caption-inner {
        flex-direction: column;
        gap: 15px;
        padding: 0;
        border-bottom: none;
    }
    .hero.small .hero_caption h1 {
        font-size: 30px;
    }
}

/* -------------------------------------------
    HERO BLOG
------------------------------------------- */
.hero.blog {
    height: calc(80vh);
    min-height: 550px;
    max-height: 675px;
}
.hero.blog .hero_image {
    -webkit-mask-image: none;
    mask-image: none;
}
.hero.blog .hero_image img {
    object-position: center;
}
.hero.blog .hero_caption {
    color: var(--color-light);
    align-items: flex-end;
    padding: 0 30px 30px 30px;
}
.hero.blog .hero_caption-inner {
    max-width: 1000px;
    text-align: left;
    gap: 0;
}
.hero.blog .hero_caption h1 {
    /* 60px - 30px */
    font-family: inherit;
    color: var(--color-light);
    font-size: clamp(2.25rem, 1.6818rem + 1.8182vw, 3.5rem);
    text-transform: none;
    line-height: 1.1;
    font-weight: 500;
    max-width: 90%;
}

.hero.blog .blog_item-foot {
    padding: 30px 0 0 0;
    border-top: var(--color-light) solid 1px;
}
.hero.blog .blog_item-foot .date,
.hero.blog .blog_item-foot .tag {
    font-size: 15px;
}
.hero.blog .blog_item-foot .tag::before {
    font-size: 9px;
    margin: 0 7px 0 0;
}

@media only screen and (max-width: 992px) {
    .hero.blog {
        height: calc(80vh);
        min-height: 500px;
        max-height: 625px;
    }
    .hero.blog .hero_caption {
        padding: 0 15px 30px 15px;
    }
    .hero.blog .hero_caption h1 {
        max-width: 100%;
    }
    .hero.blog .blog_item-foot .date,
    .hero.blog .blog_item-foot .tag {
        font-size: 13px;
    }
    .hero.blog .blog_item-foot .tag::before {
        font-size: 7px;
        margin: 0 5px 0 0;
    }
}

/* -------------------------------------------
    HERO DUAL
------------------------------------------- */
.hero_dual {
    position: relative;
    height: 100vh;
    background-color: var(--color-dark);
    /* max-height: 650px; */
    /* background-image: linear-gradient(to right top, #cdb9a9, #c7b09e, #c1a793, #ba9f89, #b4967e, #ae8f76, #a8886d, #a28165, #9c7a5d, #957256, #8f6b4e, #896447); */
}
.hero_dual-wrap {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    overflow: hidden;
}
.hero_dual-bg {
    content: "";
    position: absolute;
    z-index: 4;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    /* background-image: linear-gradient(to right top, #cdb9a9, #c7b09e, #c1a793, #ba9f89, #b4967e, #ae8f76, #a8886d, #a28165, #9c7a5d, #957256, #8f6b4e, #896447); */
    background-color: rgba(18, 17, 16, 0.9);
}

/* ----- content ----- */
.dual_left {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    max-width: calc(var(--site-width) + 30px);
    margin: 0 auto;
    padding: 160px 30px 100px 30px;
    color: var(--color-light);
    will-change: transform, opacity;
}
@media (min-width: 1500px) {
    .dual_left {
        padding: 160px 30px 160px 30px;
    }
}
.dual_left-inner {
    max-width: 80vw;
}
.dual_left h1 {
    font-family: var(--font-title-bold);
    font-size: clamp(2.25rem, -2.625rem + 13vw, 9rem);
    line-height: 1.05;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--color-primary-light);
    font-weight: normal;
}
.dual_left h2 {
    font-size: clamp(1.125rem, 0.8438rem + 0.75vw, 1.5rem);
    line-height: 1.35;
    font-weight: 300;
    max-width: 55vw;
    color: var(--color-grey-xlight);
}
@media (min-width: 1500px) {
    .dual_left-inner {
        max-width: 65vw;
    }
    .dual_left h1 {
        font-size: clamp(2rem, -2.625rem + 13vw, 10.5rem);
    }
    .dual_left h2 {
        max-width: 45vw;
    }
}

.dual_left a {
    flex-shrink: 0;
    margin: 35px 0 0 0;
}

/* ----- image ----- */
.dual_right {
    position: absolute;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100%;
    z-index: 3;
    overflow: hidden;
    will-change: width, transform;
    transform-origin: left center;
}
.dual_right::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        0deg,
        rgba(18, 17, 16, 0.4) 0%,
        rgba(18, 17, 16, 0.6) 100%
    );
}
.dual_right img {
    position: absolute;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    transform: scale(1);
    will-change: transform;
}

@media (max-width: 992px) {
    .hero_dual {
        height: auto;
    }
    .hero_dual-bg {
        display: none;
    }
    .dual_right {
        width: 100vw;
        z-index: 1;
    }
    .dual_right img {
        transform: scale(1);
    }
    .dual_left {
        width: 100vw;
        padding: 160px 15px 80px 15px;
        background: linear-gradient(
            15deg,
            rgba(18, 17, 16, 0.7) 0%,
            rgba(18, 17, 16, 0.3) 50%,
            rgba(18, 17, 16, 0) 100%
        );
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
        justify-content: flex-end;
    }
    .dual_left-inner {
        max-width: inherit;
    }
    .dual_left h1 {
        font-size: clamp(2.375rem, 0.6563rem + 5.5vw, 3.75rem);
    }
    .dual_left h2 {
        font-size: 17px;
        max-width: inherit;
    }
    .dual_left a {
        text-shadow: none;
    }
}

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

	04 . CONTACT

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

/* ----- BLOCK ----- */
.contact_block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 50px;
}
.contact_block img {
    height: 50px;
}
.contact_block-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    font-size: 17px;
    color: var(--color-grey-dark);
}
.contact_block-item h2 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-title-black);
    font-size: 24px;
    line-height: 1.15;
    text-transform: uppercase;
    color: var(--color-dark);
    margin: 0 0 5px 0;
}
.contact_block-item a {
    margin: 10px 0 0 0;
    align-self: start;
}

/* ----- FORM ----- */
.contact_form {
    border-radius: var(--radius-md);
    background-color: var(--color-grey-xxlight);
    box-shadow: inset 0px 0px 0px 1px rgba(222, 218, 214, 0.5);
    padding: 25px;
}
.contact_form-title {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-family: var(--font-title-black);
    font-size: 24px;
    line-height: 1.15;
    margin: 0 0 25px 0;
}

@media only screen and (max-width: 992px) {
    .contact_form-title {
        font-size: 20px;
        margin: 50px 0 25px 0;
    }
}

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

	05 . CAROUSEL - Swiper

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

.carousel {
}

/* ----- HEADER ----- */
.swiper_header {
    position: relative;
    top: -5px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: baseline;
    width: 100%;
    margin: 0 0 35px 0;
}
.swiper_header-title h2 {
    font-family: var(--font-title-black);
    font-size: 50px;
    line-height: 1.2;
    text-transform: uppercase;
}
.swiper_header-cta {
    position: relative;
    top: 2px;
    display: flex;
    align-items: center;
}
.swiper_header-cta a {
    position: relative;
    font-size: 15px;
    line-height: 1;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.swiper_header-cta a::after {
    position: relative;
    font-family: "Ionicons";
    content: "\f30f";
    margin: 0 0 0 6px;
}

@media only screen and (max-width: 992px) {
    .swiper_header {
        align-items: center;
        margin: 0 0 25px 0;
    }
    .swiper_header-title h2 {
        font-size: 30px;
    }
    .swiper_header-cta {
        display: none;
    }
}

/* ----- SWIPER ----- */
.swiper_carousel {
    position: relative;
}
.swiper_carousel .swiper-slide {
    position: relative;
    display: flex;
    height: auto;
}

.swiper_carousel .swiper-slide .product_item {
    width: 100% !important;
    margin: 0;
}
/* .swiper_carousel .swiper-slide .product_item .product_item-img {
    aspect-ratio: 1 / 1;
} */

/* navigation */
.swiper_header-nav {
    display: flex;
    align-items: center;
    margin: 0 30px 0 0;
}
.swiper_header-nav .swiper-button-next,
.swiper_header-nav .swiper-button-prev {
    top: 0;
    top: auto;
    left: auto;
    right: auto;
    position: relative !important;
    height: inherit !important;
    margin: 0;
    padding: 0;
    width: 20px;
    transition: opacity 0.25s;
}
.swiper_header-nav .swiper-button-prev {
    margin: 0 20px 0 0;
}
.swiper_header-nav .swiper-button-prev::after,
.swiper_header-nav .swiper-button-next::after {
    content: "";
    box-sizing: border-box;
    font-family: "Ionicons";
    font-size: 36px;
    color: var(--color-dark);
    opacity: 1;
    width: auto;
    height: inherit !important;
}
.swiper_header-nav .swiper-button-prev::after {
    content: "\f3d2";
}
.swiper_header-nav .swiper-button-next::after {
    content: "\f3d3";
}
.swiper_header-nav .swiper-button-next.swiper-button-disabled,
.swiper_header-nav .swiper-button-prev.swiper-button-disabled {
    opacity: 0.25;
}

@media only screen and (max-width: 992px) {
    .swiper_header-nav .swiper-button-next,
    .swiper_header-nav .swiper-button-prev {
        display: none;
    }
}

/* pagination */
.swiper_carousel .swiper-pagination {
    z-index: 1;
    display: none;
    justify-content: center;
    align-items: flex-end;
}
.swiper_carousel .swiper-pagination.swiper-pagination {
    position: relative;
    margin-top: 25px;
    bottom: 0;
}
.swiper_carousel .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: block;
    border-radius: var(--radius-full);
    background: transparent;
    border: var(--color-dark) solid 1px;
    opacity: 1;
    transition: all 0.3s;
}
.swiper_carousel .swiper-pagination .swiper-pagination-bullet-active {
    width: 20px;
    opacity: 1;
    background: var(--color-dark);
}
.swiper_carousel
    .swiper-pagination.swiper-pagination-bullets
    .swiper-pagination-bullet {
    margin: 0 2px;
}
.swiper_carousel .swiper-pagination.swiper-pagination-hidden {
    opacity: 0 !important;
    height: 0 !important;
    display: none !important;
    margin: 0 !important;
}

@media only screen and (max-width: 992px) {
    .swiper_carousel .swiper-pagination {
        display: flex;
    }
}

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

	06 . POPUP

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

/* ----- animation zoom ----- */
.mfp-zoom-in .mfp-with-anim {
    opacity: 0;
    transition: all 0.2s ease-in-out;
    transform: scale(0.9);
}
.mfp-zoom-in.mfp-bg {
    opacity: 0;
    transition: all 0.2s ease-out;
    background: rgba(26, 25, 24, 1) !important;
}
.mfp-zoom-in.mfp-ready .mfp-with-anim {
    opacity: 1;
    transform: scale(1);
}
.mfp-zoom-in.mfp-ready.mfp-bg {
    opacity: 0.75;
}
.mfp-zoom-in.mfp-removing .mfp-with-anim {
    transform: scale(0.9);
    opacity: 0;
}
.mfp-zoom-in.mfp-removing.mfp-bg {
    opacity: 0;
}

/* ----- popup ----- */
.popup {
    position: relative;
    background: var(--color-light);
    color: var(--color-dark);
    padding: 0;
    width: auto;
    max-width: 700px;
    margin: 10px auto;
    border-radius: var(--radius-sm);
}
.popup-inner {
    padding: 25px;
}
.popup-header {
    display: flex;
    align-items: center;
    margin: 0 0 25px 0;
}
.popup-title {
    position: relative;
    font-size: 26px;
    line-height: 1.2;
    font-weight: 600;
    padding: 0 60px 0 0;
}
.popup-close {
    position: absolute;
    z-index: 1;
    top: 10px;
    right: 10px;
    color: var(--color-dark);
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 62px;
    line-height: 1;
    cursor: pointer;
}
.popup-close i {
    position: relative;
}
.popup-content {
    position: relative;
}

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

	07 . CTA

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

.cta_wrap {
    position: relative;
    display: flex;
    align-items: stretch;
    gap: 150px;
    width: 100%;
    min-height: 275px;
    height: auto;
    padding: 0 0 0 30px;
}
.cta_wrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-primary-xxlight);
    z-index: 0;
    /* opacity: .75; */
}
.cta_wrap::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/interface/pattern-01.png);
    background-repeat: repeat;
    background-size: 103px 23px;
    background-position: center;
    opacity: 0.75;
}

.cta_wrap-desc {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--site-width);
    margin: 0 auto;
    padding: 75px 0;
    /* padding: 0 15px; */
}
.cta_wrap-inner {
    width: 100%;
    max-width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 15px;
}
.cta_wrap-desc h2 {
    font-family: var(--font-title-bold);
    font-size: clamp(2.25rem, 1.9091rem + 1.0909vw, 3rem);
    text-transform: uppercase;
}
.cta_wrap-desc h3 {
    font-size: clamp(1.0625rem, 0.9773rem + 0.2727vw, 1.15rem);
    line-height: 1.25;
    font-weight: 300;
}
.cta_wrap a {
    margin: 15px 0 0 0;
    /* color: var(--color-primary)!important; */
}
.cta_wrap-img {
    position: absolute;
    z-index: 1;
    left: 50%;
    display: flex;
    gap: 10px;
    width: 50%;
    height: 100%;
    overflow: hidden;
}
.cta_wrap-img div {
    flex: 1;
    height: 100%;
}
.cta_wrap-img div:last-child {
    flex: 2;
}
.cta_wrap-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media only screen and (max-width: 992px) {
    .cta_wrap {
        flex-direction: column;
        gap: 0;
        min-height: 275px;
        height: auto;
        padding: 0;
    }
    .cta_wrap::before {
        width: 100%;
        height: 90%;
    }
    .cta_wrap-desc {
        width: 100%;
        padding: 60px 15px;
    }
    .cta_wrap-inner {
        max-width: 100%;
    }
    .cta_wrap-desc h2 br,
    .cta_wrap-desc h3 br {
        display: none;
    }
    .cta_wrap a {
        margin: 10px 0 0 0;
    }
    .cta_wrap-img {
        position: relative;
        left: inherit;
        width: 100%;
        height: 200px;
        gap: 5px;
    }
}

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

	08 . FAQ

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

.accordion-wrap {
    margin: 0 0 75px 0;
}
.accordion-wrap:last-child {
    margin: 0;
}
.accordion-wrap h2 {
    font-size: clamp(24px, 4vw, 30px);
    line-height: 1.05;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-primary);
    margin: 0 0 25px 0;
}

.accordion-list {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    list-style: none;
}

.accordion-list li {
    position: relative;
    display: block;
    width: 100%;
    cursor: pointer;
    border-bottom: rgba(138, 146, 149, 0.25) solid 1px;
    padding: 15px 0;
    margin: 0 0 0 0;
}
.accordion-list li:last-child {
    margin: 0;
}
.accordion-list li:first-child {
    border-top: rgba(138, 146, 149, 0.25) solid 1px;
}
.accordion-list li.active {
    display: block;
    padding: 15px 0 25px 0;
}

.accordion-list li h3 {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    font-size: 21px;
    line-height: 1;
    font-weight: 500;
    cursor: pointer;
}
.accordion-list li h3 span {
    padding: 0 20px 0 0;
    flex: 1;
}
.accordion-list li h3:after {
    content: "\f30f";
    font-family: "Ionicons";
    position: relative;
    margin-left: auto;
    color: var(--color-primary);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition:
        transform 0.25s,
        color 0.25s;
    font-size: 22px;
}
.no-touch .accordion-list li:hover h3:after,
.accordion-list li.active h3:after {
    transform: rotate(90deg);
    color: var(--color-dark);
}

.accordion-list li div.answer {
    position: relative;
    display: none;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 10px 56px 0 0;
}
.accordion-list li div.answer p {
    position: relative;
    display: block;
    color: var(--color-grey-dark);
}
.accordion-list li .answer a {
    position: relative;
    z-index: 1;
    text-decoration: none;
    color: var(--color-dark) !important;
    background: linear-gradient(90deg, var(--color-dark), var(--color-dark));
    background-size: 100% 1px;
    background-position-x: 0%;
    background-position-y: calc(100% - 2px);
    background-repeat: no-repeat;
    font-weight: 500 !important;
}
.no-touch .accordion-list li .answer a:hover {
    animation-name: underlineHover;
    animation-duration: 0.6s;
    animation-timing-function: ease-in-out;
    color: var(--color-dark) !important;
}
@keyframes underlineHover {
    0% {
        background-position-x: 100%;
        background-size: 100% 1px;
    }
    50% {
        background-position-x: 100%;
        background-size: 0% 1px;
    }
    51% {
        background-position-x: 0%;
        background-size: 0% 1px;
    }
    100% {
        background-position-x: 0%;
        background-size: 100% 1px;
    }
}

@media only screen and (max-width: 992px) {
    .accordion-wrap {
        margin: 0 0 50px 0;
    }
    .accordion-list li h3 {
        font-size: 17px;
        line-height: 1.2;
    }
    .accordion-list li div.answer {
        margin: 0;
        padding: 10px 0 0 0;
    }
    .accordion-list li div.answer p {
        font-size: 16px;
    }
}

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

	09 . REJOINDRE

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

/* ----- VALUES ----- */
.values.join {
    padding: 60px 15px 60px 15px;
}

@media only screen and (max-width: 992px) {
    .values.join {
        padding: 60px 0 60px 0;
    }
}

/* ----- GRID ----- */
.join_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    grid-auto-flow: dense;
    grid-template-areas: "img1 img2 img3";
    gap: 10px;
}
.join_grid-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
}
.join_grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1.1;
    border-radius: var(--radius-sm);
}

.item-1 {
    grid-area: img1;
}
.item-2 {
    grid-area: img2;
}
.item-3 {
    grid-area: img3;
}

@media only screen and (max-width: 992px) {
    .join_grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        grid-template-areas:
            "img1 img3"
            "img2 img3";
        gap: 5px;
    }
    .item-4,
    .item-5,
    .item-6,
    .item-7 {
        display: none;
    }
}

/* ----- OFFRES ----- */
.jobs {
    background-color: var(--color-dark);
    color: var(--color-primary-xlight);
}
.jobs::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 500px;
    background-image: url(../img/interface/pattern-02.png);
    background-repeat: repeat;
    background-size: 43px 50px;
    background-position: center;
    opacity: 0.4;
    mix-blend-mode: luminosity;
    -webkit-mask-image: linear-gradient(to top, transparent 0%, black 80%);
    mask-image: linear-gradient(to top, transparent 0%, black 80%);
}

.join_title {
    margin: 0 0 40px 0;
}
.join_title h2 {
    font-family: var(--font-title-bold);
    font-size: clamp(2.5rem, 0.9375rem + 5vw, 3.75rem);
    line-height: 1.1;
    text-transform: uppercase;
}

.join_list {
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 0;
}
.join_block {
    position: relative;
    overflow: hidden;
    display: flex;
    padding: 45px 0;
    border-bottom: rgba(255, 255, 255, 0.15) solid 1px;
    /* background-color: var(--color-light); */
    transition:
        color 0.25s,
        background-color 0.25s,
        filter 0.25s;
}
.join_block:first-child {
    border-top: rgba(0, 0, 0, 0.1) solid 1px;
}
.no-touch .join_list:hover > div {
    color: var(--color-light);
}
.no-touch .join_list:hover > div:hover {
    /* color: var(--color-primary); */
    background-color: rgba(251, 250, 248, 0.1);
}
.join_block a {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.join_block-caption {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.join_block-caption::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    box-sizing: border-box;
    font-family: "Ionicons";
    content: "\f30f";
    font-size: 36px;
    color: var(--color-primary-light);
    opacity: 1;
    width: auto;
    height: inherit !important;
    transition: color 0.25s;
}
.no-touch .join_block:hover .join_block-caption::after {
    /* color: var(--color-primary); */
}

.join_block-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    padding: 0 0 0 15px;
}
.join_block-header h3 {
    font-size: 28px;
    line-height: 1.1;
    font-weight: 600;
    color: var(--color-light);
}
.join_block-header span {
    display: inline-block;
    font-size: 17px;
    line-height: 1.4;
    color: var(--color-light);
    opacity: 0.75;
    max-width: 80%;
}

.join_block-infos {
    display: flex;
    gap: 3px;
    padding: 0 100px 0 0;
}
.join_block-infos span {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    line-height: 1;
    font-weight: 600;
    color: var(--color-light);
    padding: 7px 10px;
    border-radius: var(--radius-sm);
    box-shadow: inset 0px 0px 0px 1px var(--color-light);
}
.join_block-infos span:last-child {
    font-weight: 400;
    color: var(--color-dark);
    background-color: var(--color-light);
    box-shadow: inset 0px 0px 0px 1px var(--color-light);
}
.join_block-infos span:last-child::before {
    position: relative;
    font-family: "Ionicons";
    content: "\f3a3";
    font-size: 90%;
}

@media only screen and (max-width: 992px) {
    .join_block {
        padding: 25px 0;
    }
    .join_block-caption {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .join_block-caption::after {
        font-size: 24px;
        right: 0;
    }
    .join_block-header {
        gap: 5px;
        padding: 0;
    }
    .join_block-header h3 {
        font-size: 22px;
    }
    .join_block-header span {
        font-size: 15px;
        line-height: 1.35;
        max-width: 90%;
    }
    .join_block-infos {
        order: -1;
        padding: 0;
        transform: scale(0.84);
        transform-origin: top left;
    }
}

/* ----- POPUP ----- */

.pop-join {
}

.pop-join .join_block-infos span {
    font-size: 14px;
    color: var(--color-primary);
    box-shadow: inset 0px 0px 0px 1px var(--color-primary);
}
.pop-join .join_block-infos span:last-child {
    color: var(--color-light);
    background-color: var(--color-primary);
    box-shadow: inset 0px 0px 0px 1px var(--color-primary);
}

.join_block-rates {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-primary);
    margin: 10px 0 0 0;
}

.join_block-img {
    position: relative;
    padding-top: 46.25%;
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin: 25px 0 0 0;
}
.join_block-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 0.6;
    border-radius: var(--radius-sm);
}

.join_block-desc {
    margin: 25px 0 35px 0;
    font-size: 16px;
}

.join_form {
    background-color: var(--color-grey-xxlight);
    box-shadow: inset 0px 0px 0px 1px var(--color-grey-xlight);
    border-radius: var(--radius-sm);
    padding: 20px;
}

.custom-file-upload {
    display: flex;
    align-items: center;
    gap: 15px;
}
.custom-file-upload input[type="file"] {
    display: none;
}
.custom-file-upload .file-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 18px;
    background-color: var(--color-light);
    color: var(--color-dark);
    border: 1px solid var(--line-form);
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}
.no-touch .custom-file-upload .file-label:hover {
    background-color: var(--color-dark);
    color: var(--color-light);
}
.custom-file-upload input[type="file"]:focus + .file-label {
    outline: none;
}
.custom-file-upload .file-name {
    font-size: 13px;
    color: var(--color-grey);
}
