/* -------------------------------------------------
	
	01 . IMPORT
	02 . BASE
	03 . HERO
	04 . MISSIONS
	05 . CTA
	06 . PARTENAIRES
	07 . FAQ
	08 . BLOCKS CTA
	09 . CONTACT
	10 . BOUTIQUE
	11 . FAMILLE
	12 . POPUP
	13 . xxxxxx
	14 . xxxxxx
	15 . xxxxxx
	
------------------------------------------------- */

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

    01 . IMPORT

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

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

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

@import url("interface.css");
@import url("about.css");
@import url("agenda.css");
@import url("adhesion.css");
@import url("pro.css");
@import url("form.css");
@import url("carte.css");
@import url("rd-ajustment.css");

@font-face {
    font-family: "font-title";
    src:
        url("typo/compotes-citro/Compotes-Citro.woff2") format("woff2"),
        url("typo/compotes-citro/Compotes-Citro.woff") format("woff"),
        url("typo/compotes-citro/Compotes-Citro.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "font-title";
    src:
        url("typo/compotes-citro/Compotes-CitroBold.woff2") format("woff2"),
        url("typo/compotes-citro/Compotes-CitroBold.woff") format("woff"),
        url("typo/compotes-citro/Compotes-CitroBold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

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

    --font-text: "Quicksand", sans-serif;
    --font-title: "font-title", sans-serif;

    /* --color-dark: #2F2F2F; */ /* rgba(47,47,47,1); */

    --color-dark: #3d3d3d; /* rgba(61,61,61,1); */
    --color-light: #fffcfc; /* rgba(255,252,252,1); */

    --color-primary-1: #d2762e; /* rgba(210,118,46,1); */
    --color-primary-2: #edc8a9; /* rgba(237,200,169,1); */

    --color-primary-3: #b72065; /* rgba(183,32,101,1); */
    --color-primary-4: #e8dbe1; /* rgba(232,219,225,1); */

    --color-primary-5: #eabf2b; /* rgba(234,191,43,1); */
    --color-primary-6: #f6d98b; /* rgba(246,217,139,1); */

    --color-primary-7: #96cac7; /* rgba(150,202,199,1); */
    --color-primary-8: #cce6e8; /* rgba(204,230,232,1); */

    --color-grey-dark: #6a6a6a; /* rgba(106,106,106,1); */
    --color-grey: #979797; /* rgba(151,151,151,1); */
    --color-grey-light: #bdbdbd; /* rgba(189,189,189,1); */
    --color-grey-xlight: #e2e2e2; /* rgba(226,226,226,1); */
    --color-grey-xxlight: #f8f8f8; /* rgba(248,248,248,1); */

    --line-dark: rgba(0, 0, 0, 0.15);
    --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;
}

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

    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);
    font-size: 18px;
    line-height: 1.4;
    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: 1;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.24);
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.25s,
        visibility 0.25s;
}
body.open::after {
    opacity: 1;
    visibility: visible;
}

/* SCROLLBAR */
/* body::-webkit-scrollbar { width: 10px; background: #DDD; }
body::-webkit-scrollbar-thumb { background: #000; border-radius: 10px; } */
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 15px 0;
    padding: 0;
}
p:last-child {
    margin: 0;
}

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

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

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

	03 . HERO

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

.hero_dual {
    position: relative;
    overflow: inherit;
    margin-top: 110px;
}

.hero_dual .section-inner {
    position: relative;
    z-index: 0;
    overflow: hidden;
    display: flex;
    width: calc(100% - 60px);
    height: calc(100% - 30px);
    border-radius: var(--radius-lg);
    margin: 15px 30px;
}

.hero_dual .container {
    position: relative;
    z-index: 1;
    max-width: calc((var(--site-width) + 30px));
    margin: 0 auto;
    padding: 0;
    display: flex;
    align-items: center;
}
.hero_dual .container .row {
    display: flex;
    align-items: flex-end;
    width: 100%;
}
.hero_dual .container .row {
    display: flex;
    align-items: flex-end;
    width: 100%;
    height: 100%;
}

@media only screen and (max-width: 992px) {
    .hero_dual {
        overflow: hidden;
        margin-top: 70px;
    }
    .hero_dual .section-inner {
        width: calc(100% - 30px);
        margin: 15px;
    }
}

/* CONTENT */
.hero_dual-caption {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 40px;
    height: calc(100vh);
    min-height: 450px;
    max-height: 60vh;
    /* min-height: 525px; */
    padding: 0 0 50px 30px;
}
.hero_dual-caption h1 {
    width: 100%;
    font-size: clamp(1.75rem, 1.4659rem + 0.9091vw, 2.375rem);
    line-height: 1.15;
}
.hero_dual-caption h1 strong {
    font-weight: 700;
}
.hero_dual-caption h2 {
    width: 100%;
    font-size: clamp(1.25rem, 1.108rem + 0.4545vw, 1.5625rem);
    line-height: 1.2;
}
.hero_dual-caption h2 strong {
    font-weight: 600;
}

.hero_dual-caption .hero_sub {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
    height: 30px;
    background-color: var(--color-primary-3);
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}
.hero_dual-caption .hero_sub span {
    font-size: clamp(0.875rem, 0.5625rem + 1vw, 1.125rem);
    line-height: 1;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--color-light);
    padding: 0 0 0 12px;
}
.hero_dual-caption .hero_sub:after {
    content: "";
    position: absolute;
    z-index: -1;
    left: calc(100% - 5px);
    top: 0;
    width: 0;
    border: 15px solid var(--color-primary-3);
    border-right-color: transparent;
}

.hero_cta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

@media only screen and (max-width: 992px) {
    .hero_dual-caption {
        gap: 25px;
        height: calc(100vh - 95px) !important;
        min-height: 450px;
        padding: 175px 25px 25px 25px;
        color: var(--color-light);
    }
    .hero_dual-caption .hero_sub {
        height: 26px;
    }
    .hero_dual-caption .hero_sub span {
        padding: 0 0 0 9px;
    }
    .hero_dual-caption .hero_sub:after {
        content: "";
        position: absolute;
        z-index: -1;
        left: calc(100% - 6px);
        top: 0;
        width: 0;
        border: 13px solid var(--color-primary-3);
        border-right-color: transparent;
    }
}

/* ----- IMAGE ----- */
.hero_dual-img {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100%);
    overflow: hidden;
    clip-path: inset(105% 0% 0% 0%);
    background-color: rgba(232, 219, 225, 0.5);
}
.hero_dual-img img {
    transform: scale(1);
    clip-path: inset(0% 0% 0% 0%);
}

/* ANIMATIONS */
.star-svg {
    position: absolute;
    pointer-events: none;
    will-change: transform;
    z-index: 2;
}
.corner-01 {
    position: absolute;
    z-index: 1;
    top: -15px;
    left: -15px;
    width: calc(100%);
    height: calc(100%);
    background-image: url(../img/hero/corner-01.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: top left;
    opacity: 0.15;
}
.corner-02 {
    position: absolute;
    z-index: 1;
    bottom: -15px;
    right: -15px;
    width: calc(100%);
    height: calc(100%);
    background-image: url(../img/hero/corner-02.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: bottom right;
    opacity: 0.15;
}
.corner-03 {
    position: absolute;
    z-index: 1;
    bottom: -15px;
    left: -15px;
    width: calc(100%);
    height: calc(100%);
    background-image: url(../img/hero/corner-03.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: bottom left;
    opacity: 0.25;
}
.corner-04 {
    position: absolute;
    z-index: 1;
    top: -15px;
    right: -15px;
    width: calc(100%);
    height: calc(100%);
    background-image: url(../img/hero/corner-04.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: top right;
    opacity: 0.25;
}
.corner-05 {
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: -15px;
    width: calc(100%);
    height: calc(100%);
    background-image: url(../img/hero/corner-05.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: bottom left;
    opacity: 0.25;
}
.corner-06 {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: calc(100%);
    height: calc(100%);
    background-image: url(../img/hero/corner-06.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: bottom left;
    opacity: 0.75;
}
.deco {
    position: absolute;
    z-index: 1;
    top: -15px;
    right: -15px;
    width: calc(100% + 15px);
    height: calc(100% + 15px);
    background-image: url(../img/hero/deco-01.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: top right;
    opacity: 0.5;
}
.image-mask {
    position: absolute;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 49%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-mask-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 900 900' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'><path fill='black' d='M111.3,900H900V0H38.8C25.5,71.4,15.1,142.4,8.5,212.3C-13,439.1,8.1,627.3,49.9,758.7 C67.4,813.8,88.3,859.8,111.3,900z'/></svg>");
    mask-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 900 900' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'><path fill='black' d='M111.3,900H900V0H38.8C25.5,71.4,15.1,142.4,8.5,212.3C-13,439.1,8.1,627.3,49.9,758.7 C67.4,813.8,88.3,859.8,111.3,900z'/></svg>");
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: right;
    mask-position: right;
}
.image-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    display: block;
}

.image-mask-slideshow img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    opacity: 0;
    visibility: hidden;
}
.image-mask-slideshow img.active {
    visibility: visible;
}

@media only screen and (max-width: 992px) {
    .image-mask {
        width: 100%;
        -webkit-mask-image: inherit;
        mask-image: inherit;
    }
    .image-mask::after {
        content: "";
        position: absolute;
        z-index: 0;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.5) 20%,
            rgba(0, 0, 0, 0.25) 60%,
            rgba(0, 0, 0, 0.1) 100%
        );
    }
}

/* ----- HOME ----- */
.hero_dual.home .hero_dual-caption {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 40px;
    height: calc(100vh);
    min-height: 450px;
    max-height: 75vh;
    padding: 0 0 50px 30px;
    color: white;
}
.hero_dual.home .image-mask {
    width: 100%;
    -webkit-mask-image: inherit;
    mask-image: inherit;
}
.hero_dual.home .hero_dual-img::after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.hero_dual.home .hero_dual-img::before {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    background-image: url(../img/hero/corner-06.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.5;
}

@media only screen and (max-width: 992px) {
    .hero_dual.home .hero_dual-caption {
        max-height: 60vh;
    }
}

/* ----- AGENDA ----- */
.hero_dual.blog .container {
    max-width: calc((var(--site-width) + 30px));
    max-width: 1100px;
    margin: 0 auto;
    padding: 0;
}
.hero_dual.blog .hero_dual-caption {
    gap: 30px;
    color: var(--color-light);
}
.hero_dual.blog .hero_dual-caption h1 {
    font-size: clamp(2.25rem, 1.6818rem + 1.8182vw, 3.5rem);
    line-height: 1.1;
    font-weight: 600;
}
.blog_hero-cat {
    display: flex;
    justify-content: center;
    align-items: center;
    order: -1;
    font-size: 15px;
    line-height: 28px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--color-dark);
    padding: 0 13px 0 13px;
    border-radius: var(--radius-full);
    background-color: var(--color-light);
    margin: 0 0 20px 0;
}
.blog_hero-date {
    position: relative;
    font-size: 22px;
    line-height: 1.05;
    font-weight: 500;
}
.blog_hero-date::before {
    position: relative;
    top: 0;
    font-family: "Ionicons";
    content: "\f2d1";
    margin: 0 8px 0 0;
}
.hero_dual.blog .image-mask {
    width: 100%;
    -webkit-mask-image: inherit;
    mask-image: inherit;
}
.hero_dual.blog .image-mask::after {
    content: "";
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.5) 20%,
        rgba(0, 0, 0, 0.3) 55%,
        rgba(0, 0, 0, 0.06) 100%
    );
}

@media only screen and (max-width: 992px) {
    .blog_hero-date {
        font-size: 19px;
    }
}

/* ----- FAMILLES ----- */
.hero_dual.family .hero_dual-img {
    background-color: rgba(150, 202, 199, 0.25);
}
.hero_dual.family .hero_dual-caption {
    gap: 15px;
}
.hero_dual.family .hero_dual-caption .hero_sub {
    background-color: var(--color-primary-7);
    margin: 0 0 25px 0;
}
.hero_dual.family .hero_dual-caption .hero_sub:after {
    content: "";
    position: absolute;
    z-index: -1;
    left: calc(100% - 5px);
    top: 0;
    width: 0;
    border: 15px solid var(--color-primary-7);
    border-right-color: transparent;
}

@media only screen and (max-width: 992px) {
    .hero_dual.family .hero_dual-caption .hero_sub {
        height: 26px;
    }
    .hero_dual.family .hero_dual-caption .hero_sub span {
        padding: 0 0 0 9px;
    }
    .hero_dual.family .hero_dual-caption .hero_sub:after {
        content: "";
        position: absolute;
        z-index: -1;
        left: calc(100% - 6px);
        top: 0;
        width: 0;
        border: 13px solid var(--color-primary-7);
        border-right-color: transparent;
    }
}

/* ----- PROFESSIONNELS ----- */
.hero_dual.pro .hero_dual-img {
    /* background-color: rgba(246,217,139,.25); */
    background-color: var(--color-light);
}
.hero_dual.pro .hero_dual-caption {
    gap: 15px;
}
.hero_dual.pro .hero_dual-caption .hero_sub {
    background-color: var(--color-primary-5);
    margin: 0 0 25px 0;
}
.hero_dual.pro .hero_dual-caption .hero_sub:after {
    content: "";
    position: absolute;
    z-index: -1;
    left: calc(100% - 5px);
    top: 0;
    width: 0;
    border: 15px solid var(--color-primary-5);
    border-right-color: transparent;
}

@media only screen and (max-width: 992px) {
    .hero_dual.pro .hero_dual-caption .hero_sub:after {
        content: "";
        position: absolute;
        z-index: -1;
        left: calc(100% - 6px);
        top: 0;
        width: 0;
        border: 13px solid var(--color-primary-5);
        border-right-color: transparent;
    }
}

/* ----- MAP ----- */
.hero_dual.map .hero_dual-img {
    background-color: rgba(39, 87, 163, 0.1);
}
/* .hero_dual.family .hero_dual-caption {
    gap: 15px;
} */
.hero_dual.map .hero_dual-caption .hero_sub {
    background-color: #2757a3;
    margin: 0 0 25px 0;
}
.hero_dual.map .hero_dual-caption .hero_sub:after {
    content: "";
    position: absolute;
    z-index: -1;
    left: calc(100% - 5px);
    top: 0;
    width: 0;
    border: 15px solid #2757a3;
    border-right-color: transparent;
}

@media only screen and (max-width: 992px) {
    .hero_dual.famimaply .hero_dual-caption .hero_sub {
        height: 26px;
    }
    .hero_dual.map .hero_dual-caption .hero_sub span {
        padding: 0 0 0 9px;
    }
    .hero_dual.map .hero_dual-caption .hero_sub:after {
        content: "";
        position: absolute;
        z-index: -1;
        left: calc(100% - 6px);
        top: 0;
        width: 0;
        border: 13px solid #2757a3;
        border-right-color: transparent;
    }
}

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

	04 . MISSIONS

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

.mission_wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.mission_item a {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.mission_item {
    position: relative;
    background-color: var(--color-light);
    box-shadow: inset 0px 0px 0px 1px var(--color-grey-xlight);
    border-radius: var(--radius-lg);
    background-color: #fff;
    overflow: hidden;
}
.mission_item-picto {
    position: absolute;
    z-index: 1;
    top: -40px;
    right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--color-primary-1);
    border: var(--color-light) 5px solid;
}
.mission_item-picto img {
    height: 36px;
    filter: invert(1) brightness(1000%);
}
.mission_item:nth-child(2) .mission_item-picto {
    background-color: var(--color-primary-3);
}
.mission_item:nth-child(3) .mission_item-picto {
    background-color: var(--color-primary-5);
}

.mission_item-caption {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 25px 25px 65px 25px;
}
.mission_item-caption::after {
    position: absolute;
    bottom: 0;
    right: 0;
    margin: 25px;
    font-family: "Ionicons";
    content: "\f2c7";
    font-size: 22px;
    line-height: 0.7;
    color: var(--color-primary-1);
}
.mission_item:nth-child(2) .mission_item-caption::after {
    color: var(--color-primary-3);
}
.mission_item:nth-child(3) .mission_item-caption::after {
    color: var(--color-primary-5);
}
.mission_item-caption h4 {
    font-size: 26px;
    line-height: 1.1;
    font-weight: 700;
    padding: 0 90px 0 0;
}
.mission_item-desc {
    /* color: var(--color-grey); */
}
.mission_item-desc strong {
    font-weight: 600;
}

.mission_item-img {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.mission_item-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    transition: transform 0.35s;
}
.no-touch .mission_item:hover .mission_item-img img {
    transform: scale(1.04);
}

@media only screen and (max-width: 1300px) {
    .mission_item-caption h4 {
        padding: 0 70px 0 0;
    }
}

@media only screen and (max-width: 992px) {
    .mission_wrap {
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
    }
}

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

	05 . CTA

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

.cta {
}

.cta_wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border: var(--color-grey-xlight) solid 1px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 0 0 75px 0;
}
.cta_wrap:last-child {
    margin: 0;
}

.cta_item-img {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
}
.cta_item-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100%);
    height: calc(100%);
    object-fit: cover;
    border-radius: var(--radius-lg);
}
.cta_wrap:first-child .cta_item-img {
    order: 2;
}

.cta_item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 40px;
    background-color: #fff;
}

.cta_head {
    display: flex;
    align-items: center;
    gap: 20px;
}
.cta_item-picto {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: var(--radius-lg);
    background-color: var(--color-primary-1);
}
.cta_wrap:first-child .cta_item-picto {
    background-color: var(--color-primary-5);
}
.cta_item-picto img {
    height: 36px;
    filter: invert(1) brightness(1000%);
}
.cta_item h2 {
    position: relative;
    top: 2px;
    font-family: var(--font-title);
    font-size: 48px;
    text-transform: uppercase;
    color: var(--color-primary-1);
}
.cta_wrap:first-child h2 {
    color: var(--color-primary-5);
}

.cta_desc {
    height: 100%;
    background-color: rgba(237, 200, 169, 0.25);
    border-radius: var(--radius-md);
    padding: 20px;
    margin: 10px 0;
}
.cta_wrap:first-child .cta_desc {
    background-color: rgba(246, 217, 139, 0.25);
}

.cta_item ul {
    list-style: none;
    margin: 0;
    padding: 0 0 10px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.cta_item li {
    padding-left: 25px;
}
.cta_item li::before {
    position: relative;
    content: "\f120";
    font-family: "Ionicons";
    display: inline-block;
    margin-left: -25px;
    width: 25px;
    color: var(--color-primary-1);
}
.cta_wrap:first-child li::before {
    color: var(--color-primary-5);
}

.cta_btn {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px 0 0 0;
}

@media only screen and (max-width: 992px) {
    .cta_wrap {
        grid-template-columns: repeat(1, 1fr);
        margin: 0 0 50px 0;
    }
    .cta_item-img {
        height: inherit;
        padding-top: 46.25%;
    }
    .cta_wrap:first-child .cta_item-img {
        order: -1;
    }
    .cta_item {
        gap: 15px;
        padding: 25px;
    }
    .cta_head {
        gap: 15px;
    }
    .cta_item-picto {
        width: 50px;
        height: 50px;
    }
    .cta_item-picto img {
        height: 25px;
    }
    .cta_item h2 {
        font-size: 36px;
    }
    .cta_btn {
        flex-direction: column;
        width: 100%;
    }
    .cta_btn a {
        width: 100%;
    }
}

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

	06 . PARTENAIRES

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

.swiper-partners {
    width: 100%;
    height: 100%;
}
.clients_box {
    border-left: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    transition: none;
}
.clients_box .clients_box-inner {
    width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-light);
}
.clients_box .clients_box-inner img {
    height: 90px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

@media only screen and (max-width: 992px) {
    .clients_box .clients_box-inner {
        width: 140px;
        height: 140px;
    }
    .clients_box .clients_box-inner img {
        height: 70px;
    }
}

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

	07 . FAQ

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

.accordion-wrap {
    position: relative;
}
.accordion-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 0;
}
.accordion-list li {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 20px 25px;
    background-color: rgba(0, 0, 0, 0.02);
    border: rgba(0, 0, 0, 0.05) solid 1px;
    border-radius: var(--radius-md);
    transition:
        background-color 0.25s,
        border 0.25s;
}
.no-touch .accordion-list li:hover,
.accordion-list li.active {
    background-color: rgba(0, 0, 0, 0);
    border: rgba(0, 0, 0, 0.25) solid 1px;
}
.accordion-list li h3 {
    display: flex;
    align-items: center;
    width: 100%;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 600;
}
.accordion-list li h3 span {
    padding: 0 70px 0 0;
    flex: 1;
}
.accordion-list li h3:after {
    content: "\f3d0";
    font-family: "Ionicons";
    margin-left: auto;
    color: var(--color-dark);
    transition:
        transform 0.25s,
        color 0.25s;
    font-size: 18px;
}
.accordion-list li.active h3:after {
    transform: rotateX(180deg);
}
.accordion-list li .answer {
    display: none;
    margin: 25px 0 0 0;
    padding: 0 50px 0 0;
}
.accordion-list li .answer a {
    position: relative;
    z-index: 1;
    text-decoration: none;
    color: var(--color-primary-3) !important;
    background: linear-gradient(
        90deg,
        var(--color-primary-3),
        var(--color-primary-3)
    );
    background-size: 100% 1px;
    background-position-x: 0%;
    background-position-y: calc(100% - 1px);
    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-primary-3) !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-list li {
        padding: 15px;
    }
    .accordion-list li h3 {
        font-size: 18px;
    }
    .accordion-list li h3 span {
        padding: 0 25px 0 0;
        flex: 1;
    }
    .accordion-list li .answer {
        margin: 20px 0 0 0;
        padding: 0 50px 0 0;
    }
}

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

	08 . BLOCKS CTA

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

.cta_block-wrap {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 75px;
    padding: 70px 50px;
    background-color: var(--color-primary-3);
    border-radius: var(--radius-lg);
}
.cta_block-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    background-image: url(../img/hero/hero-cta-01.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    mix-blend-mode: luminosity;
}
.cta_block-desc {
    position: relative;
    flex: 1;
    max-width: 56%;
}
.cta_block-desc h2 {
    font-size: 40px;
    line-height: 1.1;
    font-weight: 600;
    color: var(--color-light);
}
.cta_block-desc h2 i {
    margin: 0 12px 0 0;
}
.cta_block-desc h3 {
    font-size: 24px;
    line-height: 1.25;
    font-weight: 500;
    color: var(--color-light);
    margin: 20px 0 0 0;
}
.cta_block-desc h4 {
    font-size: 20px;
    line-height: 1.25;
    font-weight: 500;
    color: var(--color-light);
    margin: 10px 0 0 0;
}
.cta_block-btn a {
    color: var(--color-primary-3) !important;
}

/* ----- FAMILLES ----- */
.cta_family .cta_block-wrap {
    background-color: var(--color-primary-7);
}
.cta_family .cta_block-wrap::before {
    background-image: url(../img/hero/hero-cta-02.jpg);
}
.cta_family .cta_block-btn a {
    color: var(--color-primary-7) !important;
}

/* ----- PRO ----- */
.cta_pro .cta_block-wrap {
    background-color: var(--color-primary-3);
}
.cta_pro .cta_block-wrap::before {
    background-image: url(../img/home/DSCF2359.jpg);
}
.cta_pro .cta_block-desc {
    max-width: 64%;
}
.cta_pro .cta_block-btn a {
    color: var(--color-primary-3) !important;
}

@media only screen and (max-width: 992px) {
    .cta_block-wrap {
        gap: 25px;
        padding: 25px;
        flex-direction: column;
        text-align: center;
        width: 100%;
    }
    .cta_block-desc {
        max-width: 100% !important;
    }
    .cta_block-desc h2 {
        font-size: 32px;
        margin: 0 0 10px 0;
    }
    .cta_block-desc h2 i {
        display: block;
        font-size: 40px;
        margin: 0 0 5px 0;
    }
    .cta_block-desc h3 {
        font-size: 20px;
    }
    .cta_block-desc h4 {
        font-size: 18px;
    }
    .cta_block-desc h2 br,
    .cta_block-desc h3 br {
        display: none;
    }
}

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

	09 . CONTACT

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

.contact_form {
    margin: 0 0 0 75px;
}
.contact_form-title {
    font-size: 24px;
    line-height: 1.25;
    font-weight: 600;
    margin: 0 0 25px 0;
}

.contact_wrap {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.contact_wrap hr {
    border: none;
    border-bottom: var(--color-grey-xlight) solid 1px;
    margin: 0;
}

.contact_item-wrap {
    display: flex;
    gap: 20px;
}

.contact_item {
    flex: 1;
    font-size: 17px;
}
.contact_item h4 {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    font-size: 20px;
    font-weight: 600;
}
.contact_item h4 small {
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-grey);
}

/* desc */
.contact_item.desc img {
    display: block;
    height: 55px;
}
.contact_item.desc h4 {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 400;
    margin: 15px 0 0 0;
    color: var(--color-grey);
}

/* address */
.contact_item.address {
    background-color: #fff;
    box-shadow: inset 0px 0px 0px 1px var(--color-grey-xlight);
    border-radius: var(--radius-lg);
    padding: 15px;
}
.contact_item.address h4::before {
    position: relative;
    content: "\f3a3";
    font-family: "Ionicons";
    font-size: 80%;
    font-weight: normal;
}
.contact_item.address img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    border-radius: var(--radius-md);
    /* margin: 0 0 10px 0; */
    margin: 15px 0;
    filter: saturate(110%);
}

/* links */
.contact_item.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.contact_item.links a {
    display: flex;
    align-items: center;
    gap: 0;
    font-size: 20px !important;
    line-height: 1.05 !important;
    color: var(--color-dark) !important;
    font-weight: 500 !important;
}
.no-touch .contact_item.links a:hover {
    color: var(--color-primary-3) !important;
}
.contact_item.links a::before {
    position: relative;
    top: 1px;
    display: inline-block;
    content: "\f384";
    font-family: "Ionicons";
    width: 29px;
}
.contact_item.links a:nth-child(2)::before {
    content: "\f11a";
}
.contact_item.links a:nth-child(3)::before {
    content: "\f2d2";
}

/* cta */
.contact_item.cta {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

@media only screen and (max-width: 992px) {
    .contact_form {
        margin: 75px 0 0 0;
    }
    .contact_wrap {
        gap: 30px;
    }
    .contact_item-wrap {
        flex-direction: column;
        gap: 15px;
    }
    .contact_item.desc h4 br {
        display: none;
    }
}

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

	10 . BOUTIQUE

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

.shop {
    background-color: rgba(204, 230, 232, 0.25);
    border-radius: 60px;
}

.shop_wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.shop_item {
    position: relative;
    background-color: #fff;
    box-shadow: inset 0px 0px 0px 1px var(--color-grey-xlight);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.shop_item.card {
    pointer-events: none;
    background-color: #f0e9ee;
    width: 100%;
    height: 100%;
}
.shop_item.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media only screen and (max-width: 992px) {
    .shop_item.card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.shop_item-price {
    position: absolute;
    z-index: 1;
    top: -40px;
    right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--color-primary-3);
    border: #fff 5px solid;
}
.shop_item-price span {
    position: relative;
    font-size: 22px;
    line-height: 1;
    font-weight: 500;
    color: var(--color-light);
}
.shop_item-price span::after {
    position: relative;
    content: "€";
    margin: 0 0 0 2px;
}

.shop_item-img {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 71.25%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-color: #f9f9f9;
    box-shadow: inset 0px 0px 0px 1px var(--color-grey-xlight);
}
.shop_item-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100%);
    height: calc(100%);
    object-fit: cover;
    border-radius: var(--radius-lg);
    mix-blend-mode: multiply;
    opacity: 0;
    transition: opacity 0.6s;
}
.shop_item-img img.active {
    opacity: 1;
}
.slideshow-controls {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 3px;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-full);
    padding: 3px;
}
.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-grey-light);
    /* box-shadow: inset 0px 0px 0px 1px rgba(0,0,0,.5); */
    cursor: pointer;
    transition: background-color 0.3s;
}
.dot.active {
    background: var(--color-dark);
}
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.6);
    color: var(--color-dark);
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.prev {
    left: 10px;
}
.next {
    right: 10px;
}

.shop_item-caption {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 25px;
}
.shop_item-caption h4 {
    font-size: 21px;
    line-height: 1.2;
    font-weight: 600;
    padding: 0 70px 0 0;
}
.shop_item-desc {
    font-size: 15px;
    color: var(--color-grey-dark);
    margin: 0 0 10px 0;
}

.shop_item-cta {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 10px;
    margin: 10px 0 0 0;
    margin: auto 0 0 0;
}
.shop_item-cta a {
    width: 100%;
}

@media only screen and (max-width: 1300px) {
    .shop_wrap {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media only screen and (max-width: 992px) {
    .shop_wrap {
        grid-template-columns: repeat(1, 1fr);
    }
    .shop_item-price {
        top: -30px;
        right: 15px;
        width: 60px;
        height: 60px;
    }
    .shop_item-price span {
        font-size: 20px;
    }
    .shop_item-img {
        padding-top: 66.25%;
    }
    .shop_item-caption h4 {
        font-size: 22px;
        padding: 0 60px 0 0;
    }
}

/* ----- SWIPER HOME ----- */

/* content */
.swiper-shop .shop_item-caption {
    padding: 20px;
}
.swiper-shop .shop_item-price {
    top: -35px;
    right: 15px;
    width: 60px;
    height: 60px;
}
.swiper-shop .shop_item-price span {
    font-size: 18px;
}
.swiper-shop .shop_item-caption h4 {
    font-size: 21px;
    padding: 0 60px 0 0;
}

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

@media only screen and (max-width: 992px) {
    .swiper-shop-nav .swiper-button-prev::after,
    .swiper-shop-nav .swiper-button-next::after {
        font-size: 30px;
    }
}

/* pagination */
.swiper-shop .swiper-pagination {
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
}
.swiper-shop .swiper-pagination.swiper-pagination {
    position: relative;
    margin-top: 0;
    bottom: 0;
}
.swiper-shop .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: block;
    border-radius: 50%;
    background: transparent;
    border: var(--color-grey-dark) solid 1px;
    opacity: 1;
    transition: all 0.25s;
}
.swiper-shop .swiper-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--color-grey-dark);
}
.swiper-shop
    .swiper-pagination.swiper-pagination-bullets
    .swiper-pagination-bullet {
    margin: 0 2px;
}
.swiper-shop .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-shop .swiper-pagination {
        display: flex;
    }
}

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

	11 . FAMILLE

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

/* ----- wrap ----- */
.family_wrap {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.family_item {
    position: relative;
    background-color: #fff;
    box-shadow: inset 0px 0px 0px 1px var(--color-grey-xlight);
    border-radius: 25px;
    overflow: hidden;
    display: flex;
}

.family_item-img {
    position: relative;
    display: flex;
    flex-shrink: 0;
    width: 45%;
    height: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
    /* background-color: var(--color-primary-3); */
}
.family_item-img img {
    /* min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto; */
    border-radius: var(--radius-lg);
    transform: scale(1.02);
    object-fit: cover;
}
.family_item-caption {
    width: 55%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px;
}
.family_item-caption h3 {
    font-size: 25px;
    font-weight: 700;
}
.family_item-desc {
    font-size: 17px;
    line-height: 1.3;
}
.family_item-caption ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.family_item-caption li {
    padding-left: 18px;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 500;
}
.family_item-caption li::before {
    position: relative;
    top: 0;
    content: "\f30f";
    font-family: "Ionicons";
    display: inline-block;
    margin-left: -18px;
    width: 18px;
    font-size: 90%;
}
.family_item-caption li p {
    display: inline;
    margin: 0;
}
.family_item-cta {
    margin: auto 0 0 0;
}

@media only screen and (max-width: 992px) {
    .family_wrap {
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
    }
    .family_item {
        flex-direction: column;
    }
    .family_item-img {
        width: 100%;
        height: inherit;
        /* padding-top: 100%; */
    }
    /* .family_item-img img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-position: center top;
    } */
    .family_item-caption {
        width: 100%;
        gap: 20px;
        padding: 25px;
    }
    .family_item-caption h3 {
        font-size: 23px;
    }
}

/* ----- CARDS ----- */
.grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.card {
    aspect-ratio: 2 / 3;
    perspective: 1000px;
    cursor: pointer;
}
.no-touch .card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 25px;
    overflow: hidden;
}

.card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s;
}
.no-touch .card:hover .card-front img {
    transform: scale(1.015);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.4) 0%,
        transparent 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 25px;
    box-sizing: border-box;
}
.card-title {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #fff;
    margin: 0;
    font-size: 26px;
    line-height: 1.05;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    padding: 0 50px 0 0;
}
.card-title span {
    position: relative;
    display: flex;
    flex-direction: column;
    font-size: 20px;
    line-height: 1.1;
    font-weight: 500;
    text-transform: none;
}

.card-back {
    display: flex;
    flex-direction: column;
    gap: 20px;
    transform: rotateY(180deg);
    background: #fff;
    padding: 30px;
    box-shadow: inset 0px 0px 0px 1px var(--color-grey-xlight);
}
.card-back h3 {
    font-size: 21px;
    font-weight: 700;
}
.card-back-desc {
    font-size: 16px;
    line-height: 1.3;
}
.card-back ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.card-back li {
    padding-left: 18px;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 500;
}
.card-back li::before {
    position: relative;
    top: 0;
    content: "\f30f";
    font-family: "Ionicons";
    display: inline-block;
    margin-left: -18px;
    width: 18px;
    font-size: 90%;
}
.card-back-cta {
    margin: auto 0 0 0;
}

/* Touch devices: flip on tap */
.card.is-flipped .card-inner {
    transform: rotateY(180deg);
}

@media only screen and (max-width: 992px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .card-title {
        font-size: 22px;
        padding: 0 40px 0 0;
    }
    .card-title span {
        font-size: 17px;
    }
    .card-back {
        padding: 25px;
    }
}
@media only screen and (max-width: 576px) {
    .grid-container {
        grid-template-columns: repeat(1, 1fr);
    }
}

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

	12 . 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.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: 850px;
    margin: 15px auto;
    border-radius: var(--radius-md);
}
.popup-inner {
    padding: 20px;
}
.popup-header {
    display: flex;
    align-items: center;
    margin: 0 0 40px 0;
}
.popup-title {
    position: relative;
    font-size: 26px;
    line-height: 1.2;
    font-weight: 700;
    padding: 0 75px 0 0;
}
.popup-close {
    position: absolute;
    z-index: 1;
    top: 20px;
    right: 20px;
    color: var(--color-light);
    width: 50px;
    height: 50px;
    background-color: var(--color-dark);
    border-radius: var(--radius-md);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 48px;
    line-height: 1;
    cursor: pointer;
}
.popup-close i {
    position: relative;
}
.popup-content {
    position: relative;
}

sub {
    bottom: 0px !important;
}
