/* -------------------------------------------------
	
	01 . IMPORT CSS + FONTS
	02 . BASE
	03 . HERO
	04 . FAQ
	05 . NOUS REJOINDRE
	06 . TEMOIGNAGES
	07 . ZONES
	08 . CLEAR
	09 . VIDEO
	10 . CONTACT
	11 . xxxxxx
	12 . xxxxxx
	
------------------------------------------------- */

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

    01 . IMPORT CSS + FONTS

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

@import url("libs/magnific-popup.css");
@import url("libs/kenburns.css");
@import url('ajustment.css');
@import url("interface.css");
@import url("form.css");
@import url("blog.css");
@import url("about.css");
@import url("rates.css");
@import url("zone.css");
@import url("rdv.css");

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

    --font-text: "Outfit", sans-serif;
    --font-title-1: "Cormorant Garamond", serif;
    --font-title-2: "Syne", sans-serif;

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

    --color-primary-1: #eb5a2e; /* rgba(235,90,46,1); */
    --color-primary-2: #fc95b9; /* rgba(252,149,185,1); */
    --color-primary-3: #47c1a0; /* rgba(71,193,160,1); */

    --color-grey-dark: #3d3d3d; /* rgba(61,61,61,1); */
    --color-grey: #707070; /* rgba(112,112,112,1); */
    --color-grey-light: #a3a3a3; /* rgba(163,163,1638,1); */
    --color-grey-xlight: #e0e0e0; /* rgba(224,224,224,1); */

    --line-dark: rgba(20, 20, 20, 0.15);
    --line-light: rgba(255, 255, 255, 0.15);
    --line-form: rgba(20, 20, 20, 0.2);

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

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

    02 . BASE

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

html {
    -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: 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-weight: 600;
}

/* 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 {
    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-light);
}
.hero-inner {
    position: relative;
    display: flex;
    width: calc(100%);
    height: calc(100%);
}
.hero-inner::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/interface/ray-01.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    mix-blend-mode: multiply;
    -webkit-mask-image: linear-gradient(to top, transparent 0%, #fff 15%);
    mask-image: linear-gradient(to top, transparent 0%, #fff 15%);
}
.hero-inner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.15) 100%
    );
}

/* ----- caption ----- */
.hero_caption {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    max-width: calc(var(--site-width) + 30px);
    margin: 0 auto;
    padding: 75px 30px 0 30px;
}
.hero_caption-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 15px;
    width: 100%;
    color: var(--color-light);
    /* transform: skewY(-2.5deg); */
}
.hero_caption h1 {
    font-family: var(--font-title-2);
    font-size: clamp(2.75rem, calc(3.5vw + 1.5rem), 6.25rem);
    line-height: 1;
    text-transform: uppercase;
    font-weight: 700;
}
.hero_caption h2 {
    font-size: clamp(0.75rem, calc(1vw + 1rem), 2.5rem);
    line-height: 1.25;
    font-weight: 300;
    max-width: 1000px;
    margin: 0 auto;
}
.hero_caption h2 strong {
    font-weight: 500;
}

/* ----- cta ----- */
.hero_cta {
    /* min-height: 450px;
    max-height: 550px; */
    /* display: flex;
    flex-direction: column;
    align-self: flex-start; */
    margin: 15px auto 0 auto;
    background-color: rgba(0, 0, 0, 0.65);
    color: var(--color-light);
    font-size: clamp(0.8rem, calc(0.65vw + 0.65rem), 1.45rem);
    line-height: 1.25;
    padding: 10px;
    border-radius: var(--radius-md);
}
.hero_cta strong {
    text-transform: uppercase;
    color: var(--color-primary-1);
}

/* ----- 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: center;
}

/* ----- hero half ----- */
.hero.half {
    height: 65vh;
    min-height: 450px;
    max-height: 550px;
    background-color: var(--color-light);
}
.hero.half .hero_caption {
    background-color: transparent;
    /* padding: 0 30px 50px 30px; */
    /* align-items: flex-end; */
}

/* ----- hero light ----- */
.hero.light {
    height: auto;
    background-color: var(--color-light);
    padding: 250px 0 0 0;
}
.hero.light .hero-inner::before,
.hero.light .hero-inner::after {
    display: none;
}
.hero.light .hero_caption {
    background-color: transparent;
    padding: 0 30px 0 30px;
    align-items: flex-end;
}
.hero.light .hero_caption-inner {
    color: var(--color-dark);
    /* text-align: left; */
}
.hero.light .hero_caption h1 {
    font-size: 72px;
}

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

	04 . FAQ

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

.accordion-wrap {
    margin: 0 0 75px 0;
}
.accordion-wrap:last-child {
    margin: 0;
}
.accordion-wrap h2 {
    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;
}
.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: 20px;
    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-1);
    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-primary-1);
}

.accordion-list li div.answer {
    position: relative;
    display: none;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 10px 56px 0 0;
    color: var(--color-grey-dark);
}
.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;
    }
}

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

	05 . NOUS REJOINDRE

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

/* -------------------------------------------
    INTRO 
------------------------------------------- */
.join_intro {
}
.join_intro-wrap {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.join_intro-title h2 {
    display: inline-flex;
    font-family: var(--font-title-2);
    font-size: 42px;
    line-height: 1.05;
    font-weight: 600;
}
.join_intro-desc {
    flex: 1;
}
.join_intro-desc p {
    font-size: 24px;
    line-height: 1.4;
    color: var(--color-grey-dark);
}
.join_intro-desc p:last-child {
    margin: 0;
}
.join_intro-claim {
    transform: skewY(-2.5deg);
    margin: 15px 0 0 0;
}
.join_intro-claim p.lead {
    display: inline;
    background-color: var(--color-primary-1);
    box-shadow: 10px 0 0 var(--color-primary-1),
        -10px 0 0 var(--color-primary-1);
    box-decoration-break: clone;
    padding: 1px 0 2px 0;
    font-family: var(--font-title-2);
    font-size: 26px;
    line-height: 1.25;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-light);
    border-radius: var(--radius-sm);
}

@media only screen and (max-width: 992px) {
    .join_intro-wrap {
        flex-direction: column;
        gap: 0;
    }

    .join_intro-title {
        margin: 0 0 50px 0;
    }

    .join_intro-title h2 {
        font-size: 40px;
    }

    .join_intro-desc {
        font-size: 22px;
    }

    .join_intro-claim {
        margin: 50px 0 0 0;
        align-self: flex-start;
        font-size: 15px;
        max-width: 100%;
    }
}

/* -------------------------------------------
    GALLERY 
------------------------------------------- */
.join_gallery {
    position: relative;
    background-color: var(--color-light);
}

/* MOVING GALLERY */
.fw-gallery .wrapper-gallery {
    display: inline-flex;
    align-items: flex-end;
    align-items: center;
    margin: 0;
    padding: 0;
    clear: both;
}
.moving-gallery {
    display: flex;
}
.wrapper-gallery li {
    box-sizing: border-box;
    list-style: none;
    overflow: hidden;
    width: 20vw !important;
    margin: 0 5px;
}
.wrapper-gallery li:nth-child(odd) {
    flex: none;
    width: 35vw !important;
}
.wrapper-gallery li img {
    display: flex;
    width: 100%;
    height: 50vh;
    overflow: hidden;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

@media only screen and (max-width: 992px) {
    .wrapper-gallery li {
        width: 45vw !important;
    }
    .wrapper-gallery li:nth-child(odd) {
        width: 75vw !important;
    }
    .wrapper-gallery li img {
        height: 30vh;
    }
}

/* -------------------------------------------
    GRID 
------------------------------------------- */
.grid_join {
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 0;
}
.item_join {
    position: relative;
    overflow: hidden;
    display: flex;
    padding: 45px 0;
    border-bottom: rgba(0, 0, 0, 0.1) solid 1px;
    transition: color 0.25s, background-color 0.25s;
}
.item_join:first-child {
    border-top: rgba(0, 0, 0, 0.1) solid 1px;
}
.no-touch .grid_join:hover > div {
    color: var(--color-dark);
}
.no-touch .grid_join:hover > div:hover {
    color: var(--color-primary-1);
    background-color: rgba(0, 0, 0, 0.02);
}
.item_join a {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.item_join-caption {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 75px;
    align-items: center;
}

.item_join-caption::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    box-sizing: border-box;
    font-family: "Ionicons";
    content: "\f30f";
    font-size: 32px;
    color: var(--color-dark);
    opacity: 1;
    width: auto;
    height: inherit !important;
    transition: color 0.25s;
}
.no-touch .item_join:hover .item_join-caption::after {
    color: var(--color-primary-1);
}
.item_join-caption h3 {
    font-size: 30px;
    line-height: 1.1;
    grid-column: span 2 / span 2;
    margin-left: 15px;
}
.item_join-caption span {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 15px;
    line-height: 1;
    color: var(--color-grey);
    opacity: 0.8;
    border-left: rgba(0, 0, 0, 0.1) solid 1px;
    padding: 15px 0 15px 25px;
}
.item_join-caption span:last-child::before {
    position: relative;
    font-family: "Ionicons";
    content: "\f3a3";
    font-size: 85%;
}

@media only screen and (max-width: 992px) {
    .item_join {
        padding: 25px 0;
    }
    .item_join-caption::after {
        font-size: 24px;
        right: 0;
    }
    .item_join-caption {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 10px;
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
    }
    .item_join-caption h3 {
        font-size: 22px;
        margin-left: 0;
        flex-basis: 100%;
        padding: 0 60px 0 0;
    }
    .item_join-caption span {
        font-size: 14px;
        border-left: none;
        padding: 0 10px 0 0;
    }
}

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

	06 . TEMOIGNAGES

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

.avis {
    background-color: rgba(252, 149, 185, 0.1);
}
.avis .section_title h2 strong {
    color: rgba(252, 149, 185, 1);
}

/* Reviews RDV - Style épuré sans background */
.reviews-rdv {
    background-color: transparent;
    padding: 0;
    margin-top: -120px;
}
.reviews-rdv .swiper_avis-caption {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* SWIPER */
.swiper_avis .swiper-slide {
    display: flex;
    height: auto;
}
.swiper_avis-caption {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    background-color: var(--color-light);
    border-radius: var(--radius-md);
    padding: 30px;
}
.swiper_avis-note {
    --percent: calc(var(--rating) / 5 * 100%);
    display: block;
    font-size: 24px;
    line-height: 1;
}
.swiper_avis-note::before {
    font-family: "Ionicons";
    content: "\f4b3\f4b3\f4b3\f4b3\f4b3";
    letter-spacing: 2px;
    background: linear-gradient(
        90deg,
        var(--color-primary-2) var(--percent),
        var(--color-grey-xlight) var(--percent)
    );
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.swiper_avis-desc {
    font-size: 16px;
    line-height: 1.5;
    height: 100%;
    color: var(--color-grey-dark);
}
.swiper_avis-author {
    font-size: 15px;
    line-height: 1.51;
    font-weight: 500;
}

/* PAGINATION */
.swiper_avis .swiper-pagination {
    z-index: 1;
    display: none;
    justify-content: center;
    align-items: flex-end;
}
.swiper_avis .swiper-pagination.swiper-pagination {
    position: relative;
    margin-top: 25px;
    bottom: 0;
}
.swiper_avis .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: block;
    border-radius: 2em;
    background: rgba(20, 20, 20, 0.24);
    border: none;
    opacity: 0.5;
    transition: all 0.3s;
}
.swiper_avis .swiper-pagination .swiper-pagination-bullet-active {
    width: 24px;
    height: 8px;
    opacity: 1;
    background: rgba(20, 20, 20, 0.48);
}
.swiper_avis
    .swiper-pagination.swiper-pagination-bullets
    .swiper-pagination-bullet {
    margin: 0 2px;
}

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

@media only screen and (max-width: 992px) {
    .avis-title {
        font-size: 26px;
        margin-bottom: 25px;
        text-align: center;
    }
    .swiper_avis-header span {
        font-size: 18px;
        line-height: 1.3;
    }
    .swiper_avis-note {
        font-size: 15px;
        margin: 0 0 0 15px;
    }
}

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

	07 . ZONES

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

.zones_wrap {
    columns: 3;
    gap: 5px;
}
.zones_item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.zones_item:nth-child(n + 1) {
    margin: 0 0 5px 0;
}
.zones_item a {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.zones_item-img {
    position: relative;
    width: 100%;
    height: 100%;
    padding-top: 76.25%;
}
.zones_item-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        0deg,
        rgba(20, 20, 20, 0.3) 0%,
        rgba(20, 20, 20, 0.15) 50%,
        rgba(20, 20, 20, 0) 100%
    );
}
.zones_item-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 0.5s;
}
.no-touch .zones_item:hover .zones_item-img img {
    transform: scale(1.1);
}
.zones_item-caption {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 25px;
    font-size: 24px;
    line-height: 1;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--color-light);
}
.zones_item-caption strong {
    display: block;
    font-family: var(--font-title-2);
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 3px 0;
}

@media only screen and (max-width: 1200px) {
    .zones_wrap {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .zones_item:nth-child(n + 1) {
        margin: 0;
    }
    .zones_item-img {
        padding-top: 110%;
    }
    .zones_item-caption {
        padding: 15px;
        font-size: 16px;
    }
    .zones_item-caption strong {
        font-size: 22px;
        line-height: 0.9;
    }
}

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

	08 . CLEAR

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

.clear {
    /* background-color: rgba(235,90,46,.05); */
    background-color: rgba(235, 90, 46, 0.1);
}

.clear_wrap {
    position: relative;
    display: grid;
    box-sizing: border-box;
    grid-template-columns: repeat(3, minmax(100px, 1fr));
    grid-gap: 0px;
}

.clear_block {
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 30px;
}
.clear_block::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    /* background-color: rgba(255,255,255,.25); */
    background-color: rgba(235, 90, 46, 0.25);
}
.clear_block:last-child::after {
    display: none;
}

.clear_block-img {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    background-color: var(--color-primary-1);
    border-radius: 50%;
    width: 120px;
    height: 120px;
}
.clear_block-img img {
    height: 60px;
    filter: invert(1) brightness(10000%);
}

.clear_block-wrap {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 21px;
    line-height: 1.1;
}
.clear_block-wrap span {
    display: flex;
    flex-direction: column;
    font-family: var(--font-title-2);
    font-size: 28px;
    line-height: 1.05;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-primary-1);
}
@media screen and (max-width: 450px) {
    .clear_wrap {
        grid-template-columns: repeat(1, 1fr) !important;
    }
    .clear_block:nth-child(odd) {
        border-right: rgba(0, 0, 0, 0.25) solid 0px !important;
    }
    .header_wrap-cta a {
        width: 80%;
    }
    .header_wrap-cta.open {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }
}

@media only screen and (max-width: 992px) {
    .clear_wrap {
        grid-template-columns: repeat(2, 1fr);
    }
    .clear_wrap::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-bottom: var(--color-light) solid 1px;
    }
    .clear_block {
        padding: 25px 15px;
        border-bottom: rgba(0, 0, 0, 0.25) solid 1px;
    }
    .clear_block:nth-child(odd) {
        border-right: rgba(0, 0, 0, 0.25) solid 1px;
    }
    .clear_block::after {
        display: none;
    }
    .clear_block-img {
        width: 100px;
        height: 100px;
    }
    .clear_block-img img {
        height: 50px;
    }
    .clear_block-wrap {
        flex: 1;
        gap: 2px;
        font-size: 19px;
    }
    .clear_block-wrap span {
        font-size: 21px;
    }
}

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

	09 . VIDEO

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

.video_block {
    background-color: rgba(71, 193, 160, 0.1);
}
.video_block .section_title h2 strong {
    color: rgba(71, 193, 160, 1);
}

.video_block .section_cta {
    margin: 50px 0 0 0;
}

.swiper-video .swiper-slide {
    position: relative;
    cursor: pointer;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.swiper-video .swiper-slide::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 8px);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Ionicons";
    content: "\f215";
    font-size: 48px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.75);
    background-color: rgba(0, 0, 0, 0.15);
    transition: background-color 0.25s, color 0.25s;
}
.swiper-video .swiper-slide:hover::after {
    color: rgba(255, 255, 255, 0.9);
    background-color: rgba(0, 0, 0, 0.05);
}
.swiper-video .swiper-slide video {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

@media only screen and (max-width: 992px) {
    .swiper-video .swiper-slide video {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: var(--radius-lg);
    }
}

.swiper-video-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: 50px;
}

@media only screen and (max-width: 992px) {
    .swiper-video-nav {
        margin-top: 35px;
    }
}

/* SWIPER -- navigation */
.swiper-video-nav .swiper-button-next,
.swiper-video-nav .swiper-button-prev {
    position: relative;
    display: flex;
    top: 0;
    height: 30px;
    width: 30px;
    background-color: transparent;
}
.swiper-video-nav .swiper-button-prev {
    left: auto;
    justify-content: center;
}
.swiper-video-nav .swiper-button-next {
    right: auto;
    justify-content: center;
}
.swiper-video-nav .swiper-button-prev::after,
.swiper-video-nav .swiper-button-next::after {
    content: "";
    box-sizing: border-box;
    font-family: "Ionicons";
    font-size: 40px;
    color: var(--color-primary-3);
    opacity: 1;
    width: auto;
    height: inherit !important;
    display: flex;
    align-items: center;
}
.swiper-video-nav .swiper-button-prev::after {
    content: "\f2ca";
}
.swiper-video-nav .swiper-button-next::after {
    content: "\f30f";
}
.swiper-video-nav .swiper-button-prev.swiper-button-disabled,
.swiper-video-nav .swiper-button-next.swiper-button-disabled {
    opacity: 1;
    /* display: flex; */
}
.swiper-video-nav .swiper-button-prev.swiper-button-disabled::after,
.swiper-video-nav .swiper-button-next.swiper-button-disabled::after {
    opacity: 0.35;
}

/* SWIPER -- pagination */
.swiper-video-nav .swiper-pagination {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.swiper-video-nav .swiper-pagination.swiper-pagination {
    position: relative;
    margin-top: 0;
    bottom: 12px;
}
.swiper-video-nav .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: block;
    border-radius: 50%;
    background: var(--color-grey-light);
    border: none;
    opacity: 0.5;
    transition: all 0.3s;
}
.swiper-video-nav .swiper-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--color-primary-3);
}
.swiper-video-nav
    .swiper-pagination.swiper-pagination-bullets
    .swiper-pagination-bullet {
    margin: 0 2px;
}
.swiper-video-nav .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-video-nav .swiper-pagination {
        display: flex;
    } */
}

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

	10 . CONTACT

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

/* -------------------------------------------
    BLOCK
------------------------------------------- */
.contact_block {
    display: flex;
    flex-direction: column;
    gap: 35px;
}
.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 a.scroll-to {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-text);
    -webkit-font-smoothing: antialiased;
    font-size: 15px;
    line-height: 40px;
    color: var(--color-grey-dark);
    border-radius: var(--radius-full);
    background-color: var(--color-primary-2);
    color: var(--color-light);
    box-shadow: inset 0px 0px 0px 1px var(--color-primary-2);
    padding: 0 16px 1px 16px;
}
.no-touch .contact_block-item a.scroll-to:hover {
    color: var(--color-primary-2);
    background-color: transparent;
    opacity: 1;
}
.contact_block-item a.scroll-to::after {
    font-family: "Ionicons";
    content: "\f2d8";
    font-size: 100%;
    margin: 0 0 0 10px;
    /* transform: scaleX(-1); */
}
.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: 992px) {
    .contact_block-item.client h2 {
        font-size: 20px;
    }
}

/* -------------------------------------------
    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;
    }
}
.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;
    }
}
.hero-whatsapp {
    bottom: 90px !important;
}
.cadre {
    background-color: #eb5a2e;
    color: white;
    width: 90% !important;
    border-radius: 10px;
    padding: 10px;
    position: absolute;
    bottom: 0;
}
