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

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

    01 . IMPORT

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

@import url("libs/magnific-popup.css");
@import url("libs/kenburns.css");
@import url("rd-ajustement.css");
@import url("interface.css");
@import url("form.css");
@import url("grid.css");
@import url("page.css");
@import url("home.css");
@import url("about.css");
@import url("durable.css");

@font-face {
    font-family: "sonvika";
    src: url("../fonts/sonvika.woff") format("woff"),
        url("../fonts/sonvika.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
[class^="icon-logo-"],
[class*=" icon-logo-"] {
    font-family: "sonvika" !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    line-height: 1;
    font-size: 85%;
}
.icon-logo-sonvika:before {
    content: "\e900";
}

@font-face {
    font-family: "font-text";
    src: url("../fonts/KingspanBrownTT-Regular.woff") format("woff"),
        url("../fonts/KingspanBrownTT-Regular.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "font-text-light";
    src: url("../fonts/KingspanBrownTT-Light.woff") format("woff"),
        url("../fonts/KingspanBrownTT-Light.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "font-text-thin";
    src: url("../fonts/KingspanBrownTT-Thin.woff") format("woff"),
        url("../fonts/KingspanBrownTT-Thin.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "font-text-bold";
    src: url("../fonts/KingspanBrownTT-Bold.woff") format("woff"),
        url("../fonts/KingspanBrownTT-Bold.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

    --font-text: "font-text", sans-serif;
    --font-text-light: "font-text-light", sans-serif;
    --font-text-thin: "font-text-thin", sans-serif;
    --font-text-bold: "font-text-bold", sans-serif;

    --color-dark: #000; /* rgba(0,0,0,1); */
    --color-light: #fff; /* rgba(255,255,255,1); */

    --color-primary-1: #004289; /* rgba(0,66,137,1); */
    --color-primary-2: #c19a5e; /* rgba(193,154,94,1); */

    --color-highlight-1: #f7a42d; /* rgba(247,164,45,1); */
    --color-highlight-2: #0fa042; /* rgba(15,160,66,1); */
    --color-highlight-3: #0f8ac7; /* rgba(15,138,199,1); */
    --color-highlight-4: #c19a5e; /* rgba(193,154,94,1); */

    --color-grey: #8c8c8c; /* rgba(168,168,167,1); */
    --color-grey-light: #c6c6c6; /* rgba(198,198,198,1); */
    --color-grey-xlight: #ededed; /* rgba(237,237,237,1); */
    --color-grey-dark: #3c3c3b; /* rgba(60,60,59,1); */

    --line-dark: rgba(0, 0, 0, 0.1);
    --line-light: rgba(255, 255, 255, 0.15);
    --line-form: rgba(0, 0, 0, 0.15);

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

    --product-white: white;
    --product-red: red;
    --product-blue: blue;
    --product-green: green;
    --product-orange: orange;
    --product-grey: grey;
}

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

    02 . BASE

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

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-light);
    font-size: 18px;
    line-height: 1.5;
    overflow-x: hidden !important;
    /* text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; */
}
body.open {
    overflow-y: hidden !important;
    touch-action: none !important;
}
body::after {
    content: "";
    position: fixed;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.06);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, visibility 0.25s;
}
body.overlay::after {
    opacity: 1;
    visibility: visible;
}

/* SCROLLBAR */
body::-webkit-scrollbar {
    width: 10px;
    background: #ddd;
}
body::-webkit-scrollbar-thumb {
    background: #000;
    border-radius: 10px;
}

/* 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-family: var(--font-text);
    font-weight: normal;
}

/* 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 15px 0;
    padding: 0;
}
p:last-child {
    margin: 0;
}

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

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

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

	03 . HERO

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

.hero {
    position: relative;
    z-index: 0;
    overflow: hidden;
    width: 100%;
    height: calc(100vh);
    background-color: var(--color-grey-xlight);
}
.hero-inner {
    position: relative;
    display: flex;
    width: calc(100%);
    height: calc(100%);
}
.hero-inner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25);
}

/* ----- caption ----- */
.hero_caption {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    max-width: calc(var(--site-width) + 30px);
    margin: 0 auto;
    padding: 0 30px 50px 30px;
}
.hero_caption-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 700px;
    color: var(--color-light);
}
.hero_caption h1 {
    font-family: var(--font-text-bold);
    -webkit-font-smoothing: antialiased;
    font-size: 60px;
    line-height: 1.05;
}
.hero_caption h2 {
    font-family: var(--font-text);
    -webkit-font-smoothing: antialiased;
    font-size: 22px;
    line-height: 1.35;
    font-weight: normal;
}
.hero_caption-cta {
    display: flex;
    align-items: center;
    gap: 35px;
}
.hero_caption-cta a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-text);
    -webkit-font-smoothing: antialiased;
    font-size: 19px;
    line-height: 1.3;
    font-weight: normal;
    text-transform: uppercase;
    color: var(--color-light);
    opacity: 0.7;
    transition: opacity 0.25s;
}
.hero_caption-cta a.active,
.no-touch .hero_caption-cta a:hover {
    color: var(--color-light);
    opacity: 1;
}
.hero_caption-cta a::after {
    position: relative;
    font-family: "Ionicons";
    content: "\f30f";
    transition: transform 0.25s;
}

.hero_caption-inner a.back {
    font-family: var(--font-text);
    -webkit-font-smoothing: antialiased;
    font-size: 14px;
    line-height: 1;
    color: var(--color-light);
    opacity: 0.75;
    padding: 5px 0;
    margin: 0 0 20px 0;
}
.no-touch .hero_caption-inner a.back:hover {
    color: var(--color-light);
    opacity: 1;
}
.hero_caption-inner a.back::before {
    position: relative;
    font-family: "Ionicons";
    content: "\f2ca";
    font-size: 90%;
    margin: 0 5px 0 0;
}

@media only screen and (max-width: 992px) {
    .hero_caption {
        padding: 0 15px 35px 15px;
    }
    .hero_caption h1 {
        font-size: 38px;
        line-height: 1.05;
    }
    .hero_caption h2 {
        font-size: 18px;
        line-height: 1.35;
        font-weight: normal;
    }
}

/* ----- image ----- */
.hero_image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
}
.hero_image img {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

/* ----- slideshow ----- */
#slideshow {
    position: absolute !important;
}

/* ----- video yt ----- */
#videoHero {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    background: transparent;
    width: 100%;
    height: 100vh;
    margin: 0;
}
.ytplayer-container {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transform: scale(1.2, 1.2) translate(-15px, -10px);
    transform-origin: center center;
}
.ytplayer-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
}

@media only screen and (max-width: 992px) {
    .ytplayer-container {
        left: 50%;
        transform: scale(1.2, 1.2) translateX(-50%);
    }
}

/* -------------------------------------------
    HERO half
------------------------------------------- */
.hero.half {
    /* height: 70vh;
    max-height: 600px; */
    min-height: 500px;
    height: calc((9 / 21) * 100vw);
    max-height: 575px;
    background-color: var(--color-grey-xlight);
}
.hero.half .hero-inner::after {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.15) 40%,
        rgba(0, 0, 0, 0.3) 100%
    );
}

@media only screen and (max-width: 992px) {
    .hero.half {
        height: 75vh;
        min-height: 400px;
        max-height: 400px;
    }
}

/* -------------------------------------------
    HERO light
------------------------------------------- */
.hero.light {
    height: auto;
    min-height: auto;
    max-height: auto;
    padding: 270px 0 0 0;
    background-color: transparent;
}
.hero.light .hero_caption-inner {
    max-width: 100%;
    border-bottom: var(--line-dark) solid 1px;
    padding: 0 0 25px 0;
}
.hero.light .hero_caption h1 {
    font-family: var(--font-text);
    -webkit-font-smoothing: antialiased;
    font-size: 48px;
    font-weight: normal;
    color: var(--color-primary-2);
}

@media only screen and (max-width: 992px) {
    .hero.light {
        padding: 165px 0 0 0;
    }
    .hero.light .hero_caption-inner {
        padding: 0 0 15px 0;
    }
    .hero.light .hero_caption h1 {
        font-size: 32px;
    }
}

/* -------------------------------------------
    HERO home
------------------------------------------- */
.hero_home .hero-inner::after {
    display: none;
}

/* swiper */
.swiper-home {
    width: 100%;
    height: 100vh;
}
.swiper-home .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
}
.swiper-home .swiper-slide::after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.15) 40%,
        rgba(0, 0, 0, 0.3) 100%
    );
}

.swiper-home .swiper-slide img,
.swiper-home .swiper-slide video {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* pagination */
.swiper-pagination-bullet {
    position: relative;
    bottom: 0px !important;
    width: 40px;
    height: auto;
    text-align: left;
    border-radius: 0;
    opacity: 1;
    margin-right: 0px;
    background-color: transparent;
}
.swiper-pagination-bullet i {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.35);
}
.swiper-pagination-bullet b {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 0%;
    height: 3px;
    background-color: var(--color-light);
}
.swiper-pagination-bullet-active {
    background-color: transparent;
}
.swiper-pagination-bullet-active b {
    animation-name: countingBar;
    animation-duration: 8s;
    animation-timing-function: ease-in;
    animation-iteration-count: 1;
    animation-direction: alternate;
    animation-fill-mode: forwards;
}
@keyframes countingBar {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

/* content */
.hero_home-inner {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    max-width: var(--site-width);
    margin: 0 auto;
    padding: 0 30px;
}
.hero_home-caption {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    width: 100%;
    max-width: 75%;
    color: var(--color-light);
    opacity: 0;
    visibility: hidden;
    transform: translateY(50px);
    transition: transform 0.5s;
    padding: 0 0 75px 0;
}
.swiper-home .swiper-slide-active .hero_home-caption {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hero_home-caption h1,
.hero_home-caption .h1 {
    font-family: var(--font-text-bold);
    font-size: 60px;
    line-height: 1.05;
    font-weight: normal;
    -webkit-font-smoothing: antialiased;
}
.hero_home-caption h2 {
    font-family: var(--font-text);
    font-size: 21px;
    line-height: 1.3;
    font-weight: normal;
    -webkit-font-smoothing: antialiased;
}
.hero_home-caption a {
    margin: 25px 0 0 0;
}

@media only screen and (max-width: 992px) {
    .hero_home-inner {
        padding: 0 15px 50px 15px;
    }
    .hero_home-caption {
        gap: 20px;
        max-width: 100%;
    }
    .hero_home-caption h1,
    .hero_home-caption .h1 {
        font-size: 36px;
        line-height: 1.05;
    }
    .hero_home-caption h2 {
        font-size: 19px;
        line-height: 1.3;
    }
    .hero_home-caption a {
        margin: 10px 0 0 0;
        transform: scale(0.9);
        transform-origin: left top;
    }
}

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

	04 . CONTACT

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

/* -------------------------------------------
    BLOCK
------------------------------------------- */
.contact_block {
    display: flex;
    flex-direction: column;
    gap: 35px;
    max-width: 80%;
}
.contact_block-item {
    font-size: 17px;
    color: var(--color-grey-dark);
}
.contact_block-item:last-child {
    padding: 0;
    margin: 0;
    border-bottom: none;
}
.contact_block-item img {
    height: 50px;
    margin: 0 0 15px 0;
}
.contact_block-item h2 {
    font-size: 19px;
    line-height: 1.2;
    margin: 0 0 3px 0;
    color: var(--color-dark);
}
.contact_block-item.client {
    font-size: 15px;
    line-height: 1.25;
    background-color: rgba(0, 0, 0, 0.015);
    border-radius: var(--radius-sm);
    padding: 20px;
}
.contact_block-item.client h2 {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    line-height: 1.15;
    color: var(--color-primary-2);
    margin: 0 0 10px 0;
}
.contact_block-item.client h2::before {
    font-family: "Ionicons";
    content: "\f3a2";
    font-size: 90%;
}
.contact_block-item.client a {
    font-family: var(--font-text);
    -webkit-font-smoothing: antialiased;
    font-size: 19px !important;
    line-height: 1.25 !important;
    color: var(--color-dark) !important;
    margin: 0 0 10px 0 !important;
}
.contact_block-item.client div {
    margin: 5px 0 0 0;
}

@media only screen and (max-width: 1200px) {
    .contact_block {
        max-width: 90%;
    }
}

@media only screen and (max-width: 992px) {
    .contact_block {
        max-width: 100%;
    }
    .contact_block-item.client h2 {
        font-size: 20px;
    }
}

/* ----- cta ----- */
.contact_cta {
    position: relative;
    border-radius: var(--radius-md);
    box-shadow: 0px 0px 0px 1px var(--color-primary-2);
    background-color: var(--color-primary-2);
    color: var(--color-light);
}
.contact_cta a {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.contact_cta-img {
    position: relative;
    width: 100%;
    height: 150px;
    border-radius: var(--radius-md);
    overflow: hidden;
}
.contact_cta-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.contact_cta span {
    display: block;
    padding: 12px;
    font-family: var(--font-text);
    font-size: 16px;
    line-height: 1.15;
}
.contact_cta span::after {
    position: relative;
    top: 0.025em;
    font-family: "Ionicons";
    content: "\f30f";
    font-size: 90%;
    margin: 0 0 0 10px;
}

/* -------------------------------------------
    FORM
------------------------------------------- */
.contact_form-title {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 26px;
    line-height: 1.15;
    color: var(--color-primary-2);
    margin: 0 0 35px 0;
}

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

/* -------------------------------------------
    LIST
------------------------------------------- */
.contact_list-title {
    position: relative;
    display: flex;
    gap: 8px;
    font-size: 26px;
    line-height: 1.15;
    color: var(--color-primary-2);
    margin: 0 0 35px 0;
}
.contact_list-title::before {
    font-family: "Ionicons";
    content: "\f2d9";
}

.bloc_form.contact {
    max-width: 350px;
}
.contact_list-wrap {
    display: grid;
    box-sizing: border-box;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    grid-gap: 30px;
    margin: 35px 0 0 0;
}
.contact_list-item {
    display: flex;
    flex: 1;
    background-color: rgba(0, 0, 0, 0.015);
    border-radius: var(--radius-sm);
}
.contact_list-img {
    overflow: hidden;
    width: 130px;
    height: auto;
    min-height: 150px;
    justify-self: stretch;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
}
.contact_list-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-sm);
}
.contact_list-caption {
    display: flex;
    flex-direction: column;
    gap: 3px;
    height: auto;
    padding: 15px;
}
.contact_list-caption h4 {
    font-size: 19px;
    line-height: 1.15;
}
.contact_list-caption h5 {
    font-family: var(--font-text-light);
    font-size: 15px;
    line-height: 1.2;
    opacity: .75;
    margin: 0 0 2px 0;
}
.contact_list-caption small {
    font-size: 13px;
    line-height: 1.25;
    color: var(--color-grey-dark);
    opacity: 0.9;
    height: 100%;
    margin: 0 0 5px 0;
}
.contact_list-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    padding: 5px 0 0 0;
    margin: auto 0 0 0;
}
.contact_list-cta a {
    font-family: var(--font-text);
    -webkit-font-smoothing: antialiased;
    font-size: 14px !important;
    line-height: 30px !important;
    color: var(--color-grey-dark) !important;
    border: var(--line-form) solid 1px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    padding: 0 8px;
}
.no-touch .contact_list-cta a:hover {
    background-color: var(--color-primary-2);
    color: var(--color-light) !important;
}

@media only screen and (max-width: 992px) {
    .contact_list {
        margin: 50px 0 0 0;
    }
    .contact_list-title {
        font-size: 22px;
        margin: 0 0 25px 0;
    }
    .bloc_form.contact {
        max-width: 100%;
    }
    .contact_list-wrap {
        grid-gap: 20px;
    }
    .contact_list-item {
        gap: 5px;
    }
    .contact_list-img {
        width: 80px;
        min-height: 80px;
    }
    .contact_list-caption {
        padding: 15px 10px;
    }
    .contact_list-caption h4 {
        font-size: 17px;
    }
    .contact_list-caption small {
        font-size: 11px;
    }
    .contact_list-cta a {
        font-size: 13px !important;
        line-height: 28px !important;
        padding: 0 7px;
    }
}

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

	05 . FAQ

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

.accordion-wrap {
    margin: 0 0 75px 0;
}
.accordion-wrap:last-child {
    margin: 0;
}
.accordion-wrap h2 {
    font-family: var(--font-text);
    -webkit-font-smoothing: antialiased;
    font-size: clamp(24px, 4vw, 30px);
    line-height: 1.05;
    font-weight: normal;
    /* text-transform: uppercase; */
    color: var(--color-primary-2);
    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%;
    -webkit-font-smoothing: antialiased;
    font-size: 20px;
    line-height: 1;
    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-2);
    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;
}
/* .accordion-list li div.answer p:first-child {
    padding-top: 10px;
} */

@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;
    }
}

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

	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;
}
.mfp-zoom-in.mfp-ready .mfp-with-anim {
    opacity: 1;
    transform: scale(1);
}
.mfp-zoom-in.mfp-ready.mfp-bg {
    opacity: 0.9;
}
.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: 800px;
    margin: 10px auto;
    border-radius: var(--radius-md);
}
.popup-inner {
    padding: 25px;
}
.popup-header {
    display: flex;
    align-items: center;
    margin: 0 0 35px 0;
}
.popup-title {
    position: relative;
    font-family: var(--font-title);
    font-size: 34px;
    line-height: 1.05;
    text-transform: uppercase;
    color: var(--color-dark);
    padding: 0 60px 0 0;
}
.popup-close {
    position: absolute;
    z-index: 1;
    top: 18px;
    right: 20px;
    color: var(--color-dark);
    width: 40px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 72px;
    line-height: 1;
    cursor: pointer;
}
.popup-close i {
    position: relative;
}
.popup-content {
    font-size: 15px;
    line-height: 1.55;
}
.popup-content h2 {
    font-family: var(--font-text-medium);
    font-size: 25px;
    line-height: 1.25;
    margin-bottom: 10px;
    font-weight: normal;
}
.popup-content h3 {
    font-family: var(--font-text-medium);
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 10px;
    font-weight: normal;
}

/* ----- echantillons ----- */
.content-static {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 80%;
    margin: 0 auto;
    padding: 2rem;
}
.text {
    h1,
    h2,
    h3 {
        font-family: var(--font-title-2);
        font-size: clamp(24px, 4vw, 30px);
        line-height: 1.05;
        font-weight: 600;
        color: var(--color-primary-1);
        margin: 0 0 25px 0;
    }
}
[data-hsfc-id="Renderer"]
    .hsfc-Step--layoutTemplate-bottom
    > .hsfc-Step__Banner {
    display: none !important;
}
[data-hsfc-id="Renderer"] .hsfc-FieldLabel {
    display: flex;
    margin: 0 0 3px 0;
    padding: 0;
    font-family: var(--font-text);
    -webkit-font-smoothing: antialiased;
    font-size: 14px;
    line-height: 1.05;
    font-weight: 100;
    color: var(--color-dark);
}

[data-hsfc-id="Renderer"] .hsfc-TextInput {
    position: relative !important;
    box-shadow: inset 0 0 0 1px var(--line-form) !important;
    background-color: var(--color-light) !important;
    width: auto;
    font-size: 16px !important;
    line-height: 55px !important;
    padding: 0 15px !important;
    color: var(--color-dark) !important;
    border-radius: var(--radius-sm) !important;
}
[data-hsfc-id="Renderer"] .hsfc-ProgressBar__Progress {
    display: none !important;
}
[data-hsfc-id="Renderer"] .hsfc-Button {
    background: black !important;
}
[data-hsfc-id="Renderer"] .hsfc-RichText p {
    display: none !important;
}
[data-hsfc-id="Renderer"] .hsfc-FieldLabel {
    font-size: 14px !important;
    padding: 0 !important;
    font-family: var(--font-text) !important;
    -webkit-font-smoothing: antialiased !important;
    line-height: 1.05 !important;
    font-weight: 100 !important;
    color: var(--color-dark) !important;
}
[data-hsfc-id="Renderer"] .hsfc-TextInput {
    position: relative !important;
    box-shadow: inset 0 0 0 1px var(--line-form) !important;
    background-color: var(--color-light) !important;
    font-size: 16px !important;
    line-height: 55px !important;
    padding: 0 15px !important;
    color: var(--color-dark) !important;
    border-radius: var(--radius-sm) !important;
}
[data-hsfc-id="Renderer"] .hsfc-TextareaInput {
    position: relative !important;
    min-height: 175px !important;
    max-height: 300px !important;
    padding: 15px !important;
    box-shadow: inset 0 0 0 1px var(--line-form) !important;
    background-color: var(--color-light) !important;
    font-size: 16px !important;
    line-height: 55px !important;
    color: var(--color-dark) !important;
    border-radius: var(--radius-sm) !important;
}
[data-hsfc-id="Renderer"] .hsfc-FieldLabel__RequiredIndicator {
    color: black !important;
}
[data-hsfc-id="Renderer"] .hsfc-NavigationRow__Buttons:has(> *:only-child) {
    justify-content: flex-start !important;
}
[data-hsfc-id="Renderer"] .hsfc-Row {
    margin-bottom: 7px !important;
    gap: 10px !important;
}