/* ==========================================================
   HEADER CLIMATISATION
   ========================================================== */

.clim-header,
.clim-header *,
.clim-header *::before,
.clim-header *::after {
    box-sizing: border-box;
}

.clim-header {
    --clim-header-blue: #0d4053;
    --clim-header-green: #78b097;
    --clim-header-white: #ffffff;

    position: relative;

    width: 100%;
    margin: 0;
    padding: 0;

    overflow: hidden;

    background-color: var(--clim-header-white);
}

.clim-header__container {
    position: relative;

    display: grid;
    grid-template-columns:
        minmax(0, 50%)
        minmax(0, 50%);

    align-items: stretch;

    gap: 0 !important;
    row-gap: 0 !important;
    column-gap: 0 !important;

    width: 100%;
 /*   max-width: 1920px; */

    aspect-ratio: 1920 / 366;

    margin: 0 auto;
    padding: 0;

    overflow: hidden;
}


/* ==========================================================
   IMAGE DE GAUCHE
   ========================================================== */

.clim-header__image-zone {
    position: relative;

    align-self: stretch;

    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;

    margin: 0 !important;
    padding: 0 !important;

    overflow: hidden;
}

.clim-header__image {
    position: absolute;

    inset: 0;

    display: block;

    width: 100%;
    height: 100%;

    margin: 0 !important;
    padding: 0 !important;

    line-height: 0;
}

.clim-header__image img {
    display: block;

    width: 100%;
    height: 100%;
    max-width: none;

    margin: 0 !important;
    padding: 0 !important;

    vertical-align: top;

    object-fit: cover;
    object-position: center center;
}


/* ==========================================================
   ZONE VERTE
   ========================================================== */

.clim-header__green-zone {
    position: relative;

    align-self: stretch;

    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;

    margin: 0 !important;
    padding: 0 !important;

    overflow: hidden;
}

/*
 * Le SVG original est masqué.
 * La forme verte est recréée en CSS pour éviter
 * les zones transparentes contenues dans le fichier.
 */
.clim-header__green-shape {
    display: none !important;
}

.clim-header__green-zone::before {
    position: absolute;
    z-index: 0;

    inset: 0;

    display: block;

    width: 100%;
    height: 100%;

    background-color: var(--clim-header-green);

    clip-path: polygon(
            0 0,
            100% 0,
            100% 90%,
            0 100%
    );

    content: "";
}


/* ==========================================================
   CONTENU DE LA ZONE VERTE
   ========================================================== */

.clim-header__content {
    position: absolute;
    z-index: 2;

    top: 44%;
    right: clamp(20px, 3.5vw, 85px);
    left: clamp(20px, 3.5vw, 85px);

    display: flex;
    align-items: center;
    justify-content: center;

    gap: clamp(14px, 1.6vw, 30px);

    min-width: 0;

    margin: 0;
    padding: 0;

    transform: translateY(-50%);
}


/* ==========================================================
   SLOGAN
   ========================================================== */

.clim-header__slogan {
    display: flex;
    flex: 0 1 auto;
    flex-direction: column;
    align-items: flex-end;

    min-width: 0;

    margin: 0;
    padding: 0;

    color: var(--clim-header-blue);

    line-height: 1;
    text-align: right;

    white-space: nowrap;
}

.clim-header__slogan-top {
    display: block;

    margin: 0;
    padding: 0;

    font-size: 50px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;

    white-space: nowrap;
}

.clim-header__slogan-bottom {
    display: block;

    margin: 7px 0 0;
    padding: 0;

    font-size: 50px;
    font-weight: 700;
    line-height: 1;

    white-space: nowrap;
}


/* ==========================================================
   SÉPARATEUR BLANC
   ========================================================== */

.clim-header__separator {
    display: block;
    flex: 0 0 2px;

    width: 2px;
    height: 76px;

    margin: 0;
    padding: 0;

    background-color: var(--clim-header-white);
}


/* ==========================================================
   LOGO CLIM LEAL’O
   ========================================================== */

.clim-header__brand {
    display: flex;
    flex: 0 0 auto;
    align-items: center;

    gap: clamp(7px, 0.8vw, 12px);

    min-width: 0;

    margin: 0;
    padding: 0;

    color: var(--clim-header-white);
}

.clim-header__brand-icon {
    display: block;
    flex: 0 0 auto;

    width: 66px;
    height: 66px;

    margin: 0;
    padding: 0;

    line-height: 0;
}

.clim-header__brand-icon img {
    display: block;

    width: 100%;
    height: 100%;
    max-width: none;

    margin: 0;
    padding: 0;

    vertical-align: top;

    object-fit: contain;
}

.clim-header__brand-text {
    display: flex;
    flex-direction: column;

    margin: 0;
    padding: 0;

    color: var(--clim-header-white);

    font-family:
            "Roboto Condensed",
            Arial,
            sans-serif;

    font-size: 30px;
    line-height: 0.9;

    white-space: nowrap;
}

.clim-header__brand-text strong {
    display: block;

    margin: 0;
    padding: 0;

    font-weight: 700;
}

.clim-header__brand-text span {
    display: block;

    margin: 8px 0 0;
    padding: 0;

    font-weight: 500;
}


/* ==========================================================
   PC XXL
   1400PX ET PLUS
   ========================================================== */

@media screen and (min-width: 1400px) {

    .clim-header__container {
        grid-template-columns:
            minmax(0, 50%)
            minmax(0, 50%);

        gap: 0 !important;
    }

    .clim-header__content {
        top: 44%;

        right: clamp(45px, 5vw, 100px);
        left: clamp(45px, 5vw, 100px);

        gap: clamp(18px, 2vw, 35px);
    }

    .clim-header__slogan-top,
    .clim-header__slogan-bottom {
        font-size: 50px;
    }

    .clim-header__separator {
        height: 76px;
    }

    .clim-header__brand-icon {
        width: 66px;
        height: 66px;
    }

    .clim-header__brand-text {
        font-size: 30px;
    }
}


/* ==========================================================
   PC LARGE
   1200PX À 1399PX
   ========================================================== */

@media screen and (min-width: 1200px) and (max-width: 1399.98px) {

    .clim-header__container {
        grid-template-columns:
            minmax(0, 50%)
            minmax(0, 50%);

        gap: 0 !important;
    }

    .clim-header__content {
        top: 44%;

        right: clamp(18px, 2vw, 28px);
        left: clamp(18px, 2vw, 28px);

        gap: clamp(10px, 1.2vw, 17px);
    }

    .clim-header__slogan-top,
    .clim-header__slogan-bottom {
        font-size: 50px;
    }

    .clim-header__slogan-bottom {
        margin-top: 5px;
    }

    .clim-header__separator {
        height: 66px;
    }

    .clim-header__brand {
        gap: 7px;
    }

    .clim-header__brand-icon {
        width: 50px;
        height: 50px;
    }

    .clim-header__brand-text {
        font-size: 23px;
    }

    .clim-header__brand-text span {
        margin-top: 5px;
    }
}


/* ==========================================================
   PETIT PC
   992PX À 1199PX
   ========================================================== */

@media screen and (min-width: 992px) and (max-width: 1199.98px) {

    .clim-header__container {
        grid-template-columns:
            minmax(0, 44%)
            minmax(0, 56%);

        gap: 0 !important;
    }

    .clim-header__content {
        top: 44%;

        right: 14px;
        left: 14px;

        gap: 10px;
    }

    .clim-header__slogan-top,
    .clim-header__slogan-bottom {
        font-size: 50px;
    }

    .clim-header__slogan-bottom {
        margin-top: 5px;
    }

    .clim-header__separator {
        height: 62px;
    }

    .clim-header__brand {
        gap: 6px;
    }

    .clim-header__brand-icon {
        width: 43px;
        height: 43px;
    }

    .clim-header__brand-text {
        font-size: 20px;
    }

    .clim-header__brand-text span {
        margin-top: 4px;
    }
}


/* ==========================================================
   TABLETTE
   768PX À 991PX
   ========================================================== */

@media screen and (min-width: 768px) and (max-width: 991.98px) {

    .clim-header__container {
        grid-template-columns:
            minmax(0, 50%)
            minmax(0, 50%);

        gap: 0 !important;

        aspect-ratio: 1920 / 410;
    }

    .clim-header__content {
        top: 44%;

        right: 10px;
        left: 10px;

        gap: 8px;
    }

    .clim-header__slogan {
        flex: 1 1 auto;
    }

    .clim-header__slogan-top {
        font-size: clamp(23px, 3vw, 30px);
    }

    .clim-header__slogan-bottom {
        margin-top: 4px;

        font-size: clamp(25px, 3.3vw, 33px);
    }

    .clim-header__separator {
        flex: 0 0 1px;

        width: 1px;
        height: 44px;
    }

    .clim-header__brand {
        gap: 5px;
    }

    .clim-header__brand-icon {
        width: clamp(32px, 4.2vw, 40px);
        height: clamp(32px, 4.2vw, 40px);
    }

    .clim-header__brand-text {
        font-size: clamp(15px, 2vw, 19px);
    }

    .clim-header__brand-text span {
        margin-top: 4px;
    }
}


/* ==========================================================
   GRAND MOBILE
   521PX À 767PX
   ========================================================== */

@media screen and (min-width: 521px) and (max-width: 767.98px) {

    .clim-header {
        overflow: visible;
    }

    .clim-header__container {
        display: flex;
        flex-direction: column;

        gap: 0 !important;
        row-gap: 0 !important;
        column-gap: 0 !important;

        width: 100%;
        max-width: 100%;

        aspect-ratio: auto;

        margin: 0;
        padding: 0;

        overflow: visible;
    }


    /* Image supérieure */

    .clim-header__image-zone {
        position: relative;

        flex: 0 0 auto;

        width: 100%;
        height: auto;

        aspect-ratio: 960 / 366;

        margin: 0 0 -1px !important;
        padding: 0 !important;

        overflow: hidden;
    }

    .clim-header__image {
        position: absolute;

        inset: 0;

        width: 100%;
        height: 100%;

        margin: 0 !important;
        padding: 0 !important;
    }

    .clim-header__image img {
        width: 100%;
        height: 100%;

        margin: 0 !important;
        padding: 0 !important;

        object-fit: cover;
        object-position: center center;
    }


    /* Zone verte */

    .clim-header__green-zone {
        position: relative;

        flex: 0 0 auto;

        width: 100%;
        height: auto;
        min-height: clamp(230px, 48vw, 285px);

        margin: -1px 0 0 !important;
        padding: 0 !important;

        overflow: hidden;
    }

    .clim-header__green-zone::before {
        top: -1px;
        bottom: 0;

        height: calc(100% + 1px);

        clip-path: polygon(
                0 0,
                100% 0,
                100% 91%,
                0 100%
        );
    }


    /* Contenu */

    .clim-header__content {
        position: absolute;

        inset: 0;

        display: flex;
        align-items: center;
        justify-content: center;

        gap: clamp(12px, 3vw, 22px);

        margin: 0;

        padding:
                18px
                clamp(20px, 5vw, 40px)
                35px;

        transform: none;
    }

    .clim-header__slogan-top {
        font-size: clamp(25px, 4.5vw, 33px);
    }

    .clim-header__slogan-bottom {
        margin-top: 5px;

        font-size: clamp(28px, 5vw, 36px);
    }

    .clim-header__separator {
        height: clamp(50px, 10vw, 64px);
    }

    .clim-header__brand-icon {
        width: clamp(43px, 9vw, 58px);
        height: clamp(43px, 9vw, 58px);
    }

    .clim-header__brand-text {
        font-size: clamp(19px, 4vw, 27px);
    }
}


/* ==========================================================
   MOBILE
   361PX À 520PX
   ========================================================== */

@media screen and (min-width: 361px) and (max-width: 520px) {

    .clim-header {
        overflow: visible;
    }

    .clim-header__container {
        display: flex;
        flex-direction: column;

        gap: 0 !important;
        row-gap: 0 !important;
        column-gap: 0 !important;

        width: 100%;
        max-width: 100%;

        aspect-ratio: auto;

        margin: 0;
        padding: 0;

        overflow: visible;
    }


    /* Image supérieure */

    .clim-header__image-zone {
        position: relative;

        flex: 0 0 auto;

        width: 100%;
        height: auto;

        aspect-ratio: 16 / 7;

        margin: 0 0 -1px !important;
        padding: 0 !important;

        overflow: hidden;
    }

    .clim-header__image {
        position: absolute;

        inset: 0;

        width: 100%;
        height: 100%;

        margin: 0 !important;
        padding: 0 !important;
    }

    .clim-header__image img {
        width: 100%;
        height: 100%;

        margin: 0 !important;
        padding: 0 !important;

        object-fit: cover;
        object-position: 55% center;
    }


    /* Zone verte */

    .clim-header__green-zone {
        position: relative;

        flex: 0 0 auto;

        width: 100%;
        height: 225px;
        min-height: 225px;

        margin: -1px 0 0 !important;
        padding: 0 !important;

        overflow: hidden;
    }

    .clim-header__green-zone::before {
        top: -1px;
        bottom: 0;

        height: calc(100% + 1px);

        clip-path: polygon(
                0 0,
                100% 0,
                100% 93%,
                0 100%
        );
    }


    /* Contenu vertical */

    .clim-header__content {
        position: absolute;

        inset: 0;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        gap: 11px;

        margin: 0;

        padding:
                15px
                18px
                31px;

        transform: none;
    }

    .clim-header__slogan {
        align-items: center;

        width: 100%;

        text-align: center;
    }

    .clim-header__slogan-top {
        font-size: clamp(23px, 6.5vw, 29px);
    }

    .clim-header__slogan-bottom {
        margin-top: 5px;

        font-size: clamp(26px, 7.3vw, 33px);
    }

    .clim-header__separator {
        flex: 0 0 2px;

        width: min(170px, 52vw);
        height: 2px;
    }

    .clim-header__brand {
        justify-content: center;
    }

    .clim-header__brand-icon {
        width: 45px;
        height: 45px;
    }

    .clim-header__brand-text {
        font-size: 22px;
    }

    .clim-header__brand-text span {
        margin-top: 5px;
    }
}


/* ==========================================================
   TRÈS PETIT MOBILE
   JUSQU’À 360PX
   ========================================================== */

@media screen and (max-width: 360px) {

    .clim-header {
        overflow: visible;
    }

    .clim-header__container {
        display: flex;
        flex-direction: column;

        gap: 0 !important;
        row-gap: 0 !important;
        column-gap: 0 !important;

        width: 100%;
        max-width: 100%;

        aspect-ratio: auto;

        margin: 0;
        padding: 0;

        overflow: visible;
    }


    /* Image supérieure */

    .clim-header__image-zone {
        position: relative;

        flex: 0 0 auto;

        width: 100%;
        height: auto;

        aspect-ratio: 16 / 7;

        margin: 0 0 -1px !important;
        padding: 0 !important;

        overflow: hidden;
    }

    .clim-header__image {
        position: absolute;

        inset: 0;

        width: 100%;
        height: 100%;

        margin: 0 !important;
        padding: 0 !important;
    }

    .clim-header__image img {
        width: 100%;
        height: 100%;

        margin: 0 !important;
        padding: 0 !important;

        object-fit: cover;
        object-position: 55% center;
    }


    /* Zone verte */

    .clim-header__green-zone {
        position: relative;

        flex: 0 0 auto;

        width: 100%;
        height: 215px;
        min-height: 215px;

        margin: -1px 0 0 !important;
        padding: 0 !important;

        overflow: hidden;
    }

    .clim-header__green-zone::before {
        top: -1px;
        bottom: 0;

        height: calc(100% + 1px);

        clip-path: polygon(
                0 0,
                100% 0,
                100% 93%,
                0 100%
        );
    }


    /* Contenu vertical */

    .clim-header__content {
        position: absolute;

        inset: 0;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        gap: 10px;

        margin: 0;

        padding:
                14px
                14px
                29px;

        transform: none;
    }

    .clim-header__slogan {
        align-items: center;

        width: 100%;

        text-align: center;
    }

    .clim-header__slogan-top {
        font-size: 21px;
    }

    .clim-header__slogan-bottom {
        margin-top: 4px;

        font-size: 24px;
    }

    .clim-header__separator {
        flex: 0 0 2px;

        width: min(150px, 52vw);
        height: 2px;
    }

    .clim-header__brand {
        justify-content: center;
    }

    .clim-header__brand-icon {
        width: 41px;
        height: 41px;
    }

    .clim-header__brand-text {
        font-size: 20px;
    }

    .clim-header__brand-text span {
        margin-top: 4px;
    }
}


.clim-presentation {
    position: relative;
    width: 100%;
    padding: 80px 0 100px;
    overflow-x: clip;
}

/* Titre */

.clim-presentation__title {
    margin: 0;
    padding: 0;
    line-height: 1.1;
}

/* Petit trait sous le titre */

.clim-presentation__trait {
    display: block;
    width: 265px;
    max-width: 100%;
    margin-top: 25px;
}

.clim-presentation__trait img {
    display: block;
    width: 100%;
    height: auto;
}

/* Ligne principale */

.clim-presentation__row {
    --bs-gutter-x: 64px;

    align-items: flex-start;
    margin-top: 55px;
}

/* Texte */

.clim-presentation__contenu {
    width: 100%;
    max-width: 570px;
}

.clim-presentation__contenu p {
    margin-top: 0;
    margin-bottom: 22px;
    line-height: 1.5;
}

.clim-presentation__contenu p:last-child {
    margin-bottom: 0;
}

.clim-presentation__contenu .pb {
    font-weight: 700;
}

/* Image */

.clim-presentation__image {
    display: block;
    width: 100%;
    max-width: 650px;
    margin-left: auto;
}

.clim-presentation__image img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Écrans intermédiaires */

@media screen and (max-width: 1199.98px) {
    .clim-presentation {
        padding: 70px 0 90px;
    }

    .clim-presentation__row {
        --bs-gutter-x: 45px;

        margin-top: 45px;
    }

    .clim-presentation__contenu p {
        font-size: 20px;
    }
}

/* Tablette et mobile */

@media screen and (max-width: 991.98px) {
    .clim-presentation {
        padding: 55px 0 70px;
    }

    .clim-presentation__trait {
        width: 230px;
        margin-top: 20px;
    }

    .clim-presentation__row {
        --bs-gutter-x: 24px;

        margin-top: 40px;
    }

    .clim-presentation__contenu {
        max-width: none;
    }

    .clim-presentation__contenu p {
        font-size: 19px;
        line-height: 1.55;
    }

    .clim-presentation__image {
        max-width: 700px;
        margin: 45px auto 0;
    }
}

/* Mobile */

@media screen and (max-width: 575.98px) {
    .clim-presentation {
        padding: 40px 0 55px;
    }

    .clim-presentation__title {
        font-size: 38px;
    }

    .clim-presentation__trait {
        width: 190px;
        margin-top: 16px;
    }

    .clim-presentation__row {
        margin-top: 32px;
    }

    .clim-presentation__contenu p {
        margin-bottom: 18px;
        font-size: 17px;
        line-height: 1.55;
    }

    .clim-presentation__image {
        width: calc(100% + 20px);
        max-width: none;
        margin-top: 35px;
        margin-right: -10px;
        margin-left: -10px;
    }
}




/* =========================================================
   SECTION ATOUTS CLIMATISATION
   ========================================================= */

.clim-atouts {
    position: relative;

    width: 100%;
    min-height: clamp(220px, 18.6vw, 357px);

    display: flex;
    align-items: center;

    padding: clamp(65px, 7vw, 105px) 0;

    overflow: hidden;
}


/* =========================================================
   IMAGE DÉGRADÉE EN ARRIÈRE-PLAN
   ========================================================= */

.clim-atouts__background {
    position: absolute;
    z-index: 0;
    inset: 0;

    display: block;

    width: 100%;
    height: 100%;

    margin: 0;

    pointer-events: none;
}

.clim-atouts__background img {
    display: block;

    width: 100%;
/*    height: 100%; */

    object-fit: fill;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.clim-atouts .container {
    position: relative;
    z-index: 1;

    width: 100%;
}


/* =========================================================
   GRILLE PRINCIPALE
   ========================================================= */

.clim-atouts__grid {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    align-items: center;

    column-gap: clamp(30px, 3.5vw, 70px);
}


/* =========================================================
   ÉLÉMENTS DE LA GRILLE
   ========================================================= */

.clim-atouts__item {
    min-width: 0;

    display: grid;
    grid-template-columns: 67px minmax(0, 1fr);

    align-items: center;

    column-gap: clamp(18px, 1.7vw, 28px);
}


/* =========================================================
   PICTOGRAMMES
   ========================================================= */

.clim-atouts__icon {
    display: block;

    width: 67px;
    height: 67px;

    margin: 0;
}

.clim-atouts__icon img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
}


/* =========================================================
   TEXTES
   ========================================================= */

.clim-atouts__text {
    min-width: 0;

    margin: 0;

    color: #0f4254;

    font-size: clamp(20px, 1.65vw, 30px);
    font-weight: 700;
    font-style: italic;
    line-height: 1.12;

    overflow-wrap: normal;
}


/* =========================================================
   ORDINATEURS INTERMÉDIAIRES
   ========================================================= */

@media screen and (max-width: 1199px) {

    .clim-atouts {
        min-height: 250px;

        padding: 75px 0;
    }

    .clim-atouts__grid {
        column-gap: 28px;
    }

    .clim-atouts__item {
        grid-template-columns: 58px minmax(0, 1fr);

        column-gap: 15px;
    }

    .clim-atouts__icon {
        width: 58px;
        height: 58px;
    }

    .clim-atouts__text {
        font-size: clamp(17px, 1.8vw, 23px);
    }
}


/* =========================================================
   TABLETTES
   2 COLONNES
   ========================================================= */

@media screen and (max-width: 991px) {

    .clim-atouts {
        min-height: 430px;

        padding: 90px 0;
    }

    .clim-atouts__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        column-gap: 50px;
        row-gap: 50px;
    }

    .clim-atouts__item {
        width: 100%;
        max-width: 330px;

        grid-template-columns: 67px minmax(0, 1fr);

        justify-self: center;

        column-gap: 22px;
    }

    .clim-atouts__icon {
        width: 67px;
        height: 67px;
    }

    .clim-atouts__text {
        font-size: 23px;
    }
}


/* =========================================================
   MOBILES
   1 COLONNE
   ========================================================= */

@media screen and (max-width: 650px) {

    .clim-atouts {
        min-height: 620px;

        padding: 95px 0;
    }

    .clim-atouts__grid {
        grid-template-columns: minmax(0, 1fr);

        row-gap: 32px;
    }

    .clim-atouts__item {
        width: min(100%, 290px);
        max-width: none;

        grid-template-columns: 60px minmax(0, 1fr);

        justify-self: center;

        column-gap: 22px;
    }

    .clim-atouts__icon {
        width: 60px;
        height: 60px;
    }

    .clim-atouts__text {
        font-size: 21px;
        line-height: 1.15;
    }
}


/* =========================================================
   PETITS MOBILES
   ========================================================= */

@media screen and (max-width: 420px) {

    .clim-atouts {
        min-height: 590px;

        padding: 90px 0;
    }

    .clim-atouts__grid {
        row-gap: 28px;
    }

    .clim-atouts__item {
        width: min(100%, 265px);

        grid-template-columns: 55px minmax(0, 1fr);

        column-gap: 18px;
    }

    .clim-atouts__icon {
        width: 55px;
        height: 55px;
    }

    .clim-atouts__text {
        font-size: 19px;
    }
}





/* =========================================================
   SECTION POURQUOI INSTALLER UNE CLIMATISATION
   ========================================================= */

.clim-pourquoi {
    position: relative;

    width: 100%;

    padding:
            clamp(75px, 7vw, 125px)
            0
            clamp(80px, 7vw, 125px);

    background-color: #ffffff;

    overflow: hidden;
}


/* =========================================================
   GRILLE PRINCIPALE
   ========================================================= */

.clim-pourquoi__grid {
    width: 100%;

    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    align-items: center;

    column-gap: clamp(60px, 7vw, 130px);
}


/* =========================================================
   COLONNE IMAGE
   ========================================================= */

.clim-pourquoi__media {
    position: relative;

    width: 100%;
    min-width: 0;

    display: grid;
    place-items: center;

    isolation: isolate;
}


/* =========================================================
   SVG EN ARRIÈRE-PLAN
   ========================================================= */

.clim-pourquoi__background-logo {
    position: absolute;
    z-index: 0;

    top: 50%;
    left: clamp(-220px, -12vw, -120px);

    display: block;

    width: clamp(460px, 39vw, 617px);
    height: auto;

    margin: 0;

    transform: translateY(-50%);

    pointer-events: none;
    user-select: none;
}

.clim-pourquoi__background-logo img {
    display: block;

    width: 100%;
    height: auto;

    object-fit: contain;
}


/* =========================================================
   IMAGE PRINCIPALE
   ========================================================= */

.clim-pourquoi__image {
    position: relative;
    z-index: 1;

    display: block;

    width: min(100%, 590px);

    margin: 0;
}

.clim-pourquoi__image img {
    display: block;

    width: 100%;
    max-width: 100%;
    height: auto;

    object-fit: contain;
}


/* =========================================================
   COLONNE TEXTE
   ========================================================= */

.clim-pourquoi__contenu {
    width: 100%;
    max-width: 650px;
    min-width: 0;

    justify-self: start;
}


/* =========================================================
   TITRE
   ========================================================= */

.clim-pourquoi__title {
    margin: 0;

    color: #123f51;

    font-size: clamp(34px, 3vw, 52px);
    font-weight: 400;
    line-height: 0.95;

    text-transform: uppercase;
}

.clim-pourquoi__title-bold {
    font-weight: 700;
}

.clim-pourquoi__title-light {
    font-weight: 300;
}

.clim-pourquoi__title-line {
    display: block;
}


/* =========================================================
   TRAIT DÉGRADÉ
   ========================================================= */

.clim-pourquoi__trait {
    display: block;

    width: clamp(160px, 14vw, 263px);
    height: auto;

    margin:
            clamp(25px, 2.5vw, 38px)
            0
            clamp(28px, 2.7vw, 42px);
}

.clim-pourquoi__trait img {
    display: block;

    width: 100%;
    height: auto;
}


/* =========================================================
   TEXTES
   ========================================================= */

.clim-pourquoi__texte {
    width: 100%;

    color: #365f70;
}

.clim-pourquoi__texte p {
    margin: 0;

    font-size: clamp(16px, 1.25vw, 21px);
    line-height: 1.35;
}

.clim-pourquoi__texte p + p {
    margin-top: clamp(22px, 2.2vw, 35px);
}

.clim-pourquoi__texte .pb {
    color: #123f51;
    font-weight: 700;
}

.clim-pourquoi__texte a {
    color: inherit;
    text-decoration: none;
}

.clim-pourquoi__texte a:hover,
.clim-pourquoi__texte a:focus-visible {
    text-decoration: underline;
}


/* =========================================================
   GRANDS ÉCRANS
   ========================================================= */

@media screen and (min-width: 1400px) {
    .clim-pourquoi__grid {
        column-gap: clamp(90px, 7vw, 145px);
    }

    .clim-pourquoi__image {
        width: min(100%, 610px);
    }

    .clim-pourquoi__contenu {
        max-width: 680px;
    }
}


/* =========================================================
   ÉCRANS INTERMÉDIAIRES
   ========================================================= */

@media screen and (max-width: 1199px) {
    .clim-pourquoi {
        padding:
                85px
                0
                90px;
    }

    .clim-pourquoi__grid {
        column-gap: 55px;
    }

    .clim-pourquoi__image {
        width: min(100%, 500px);
    }

    .clim-pourquoi__background-logo {
        left: -160px;

        width: 530px;
    }

    .clim-pourquoi__title {
        font-size: clamp(31px, 3.3vw, 44px);
    }

    .clim-pourquoi__texte p {
        font-size: clamp(15px, 1.5vw, 18px);
    }
}


/* =========================================================
   TABLETTES
   ========================================================= */

@media screen and (max-width: 991px) {
    .clim-pourquoi {
        padding:
                75px
                0
                80px;
    }

    .clim-pourquoi__grid {
        grid-template-columns: minmax(0, 1fr);

        row-gap: 65px;
    }

    .clim-pourquoi__media {
        width: 100%;
    }

    .clim-pourquoi__image {
        width: min(100%, 590px);
    }

    .clim-pourquoi__background-logo {
        top: 50%;
        left: 50%;

        width: min(90vw, 617px);

        transform: translate(-72%, -50%);
    }

    .clim-pourquoi__contenu {
        max-width: 720px;

        justify-self: center;
    }

    .clim-pourquoi__title {
        font-size: clamp(35px, 6vw, 49px);
    }

    .clim-pourquoi__texte p {
        font-size: 18px;
        line-height: 1.45;
    }
}


/* =========================================================
   MOBILES
   ========================================================= */

@media screen and (max-width: 767px) {
    .clim-pourquoi {
        padding:
                60px
                0
                65px;
    }

    .clim-pourquoi__grid {
        row-gap: 45px;
    }

    .clim-pourquoi__image {
        width: min(100%, 520px);
    }

    .clim-pourquoi__background-logo {
        width: min(105vw, 540px);

        transform: translate(-68%, -50%);
    }

    .clim-pourquoi__title {
        font-size: clamp(29px, 8.5vw, 42px);
        line-height: 1;
    }

    .clim-pourquoi__title-bold,
    .clim-pourquoi__title-light {
        display: block;
    }

    .clim-pourquoi__trait {
        width: clamp(145px, 38vw, 200px);

        margin:
                24px
                0
                29px;
    }

    .clim-pourquoi__texte p {
        font-size: 16px;
        line-height: 1.5;
    }

    .clim-pourquoi__texte p + p {
        margin-top: 22px;
    }
}


/* =========================================================
   PETITS MOBILES
   ========================================================= */

@media screen and (max-width: 480px) {
    .clim-pourquoi {
        padding:
                50px
                0
                55px;
    }

    .clim-pourquoi__grid {
        row-gap: 38px;
    }

    .clim-pourquoi__background-logo {
        width: 440px;

        transform: translate(-66%, -50%);
    }

    .clim-pourquoi__title {
        font-size: clamp(27px, 9.5vw, 37px);
    }

    .clim-pourquoi__trait {
        width: 145px;

        margin:
                22px
                0
                27px;
    }
}


/* =========================================================
   SECTION POMPE À CHALEUR
   ========================================================= */

.clim-pompe {
    position: relative;

    width: 100%;

    padding:
            clamp(75px, 7vw, 125px)
            0
            clamp(80px, 7vw, 125px);

    background-color: #ffffff;

    overflow: hidden;
}


/* =========================================================
   GRILLE PRINCIPALE
   ========================================================= */

.clim-pompe__grid {
    width: 100%;

    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    align-items: center;

    column-gap: clamp(70px, 8vw, 145px);
}


/* =========================================================
   COLONNE TEXTE
   ========================================================= */

.clim-pompe__contenu {
    width: 100%;
    max-width: 650px;
    min-width: 0;

    justify-self: end;
}


/* =========================================================
   TITRE
   ========================================================= */

.clim-pompe__title {
    margin: 0;

    color: #123f51;

    font-size: clamp(34px, 3vw, 52px);
    font-weight: 400;
    line-height: 1;

    text-transform: uppercase;
}

.clim-pompe__title-bold {
    font-weight: 700;
}

.clim-pompe__title-light {
    font-weight: 300;
}


/* =========================================================
   TRAIT DÉGRADÉ SOUS LE TITRE
   ========================================================= */

.clim-pompe__trait {
    display: block;

    width: clamp(160px, 14vw, 263px);
    height: auto;

    margin:
            clamp(25px, 2.5vw, 38px)
            0
            clamp(32px, 3vw, 50px);
}

.clim-pompe__trait img {
    display: block;

    width: 100%;
    height: auto;
}


/* =========================================================
   CONTENU TEXTE
   ========================================================= */

.clim-pompe__texte {
    width: 100%;

    color: #365f70;
}

.clim-pompe__texte p {
    margin: 0;

    line-height: 1.35;
}

.clim-pompe__texte p + p {
    margin-top: clamp(20px, 2vw, 31px);
}


/* Introduction en grandes capitales */

.clim-pompe__introduction {
    color: #174c61;

    font-size: clamp(20px, 1.65vw, 29px);
    font-weight: 400;
    line-height: 1.4;

    text-transform: uppercase;
}


/* Phrase principale en gras */

.clim-pompe__accroche {
    color: #123f51;

    font-size: clamp(17px, 1.3vw, 22px);
    font-weight: 700;
    line-height: 1.25;

    text-transform: uppercase;
}


/* Paragraphes standards */

.clim-pompe__texte .font22 {
    color: #466c7b;

    font-size: clamp(16px, 1.2vw, 21px);
    font-weight: 400;
    line-height: 1.35;
}

.clim-pompe__texte .pb {
    color: #123f51;
    font-weight: 700;
}


/* =========================================================
   COLONNE IMAGE
   ========================================================= */

.clim-pompe__media {
    position: relative;

    width: 100%;
    min-width: 0;
    min-height: clamp(350px, 35vw, 575px);

    display: grid;
    place-items: center;

    isolation: isolate;
}


/* =========================================================
   SVG DÉCORATIF EN ARRIÈRE-PLAN
   ========================================================= */

.clim-pompe__background {
    position: absolute;
    z-index: 0;

    top: 50%;
    right: clamp(-230px, -13vw, -105px);

    display: block;

    width: clamp(470px, 39vw, 583px);
    height: auto;

    margin: 0;

    transform: translateY(-50%);

    pointer-events: none;
    user-select: none;
}

.clim-pompe__background img {
    display: block;

    width: 100%;
    height: auto;

    object-fit: contain;
}


/* =========================================================
   IMAGE PRINCIPALE
   ========================================================= */

.clim-pompe__image {
    position: relative;
    z-index: 1;

    display: block;

    width: min(100%, 590px);

    margin: 0;
}

.clim-pompe__image img {
    display: block;

    width: 100%;
    max-width: 100%;
    height: auto;

    object-fit: contain;
}


/* =========================================================
   TRÈS GRANDS ÉCRANS
   ========================================================= */

@media screen and (min-width: 1400px) {

    .clim-pompe__grid {
        column-gap: clamp(100px, 8vw, 155px);
    }

    .clim-pompe__contenu {
        max-width: 680px;
    }

    .clim-pompe__image {
        width: min(100%, 620px);
    }
}


/* =========================================================
   ÉCRANS INTERMÉDIAIRES
   ========================================================= */

@media screen and (max-width: 1199px) {

    .clim-pompe {
        padding:
                85px
                0
                90px;
    }

    .clim-pompe__grid {
        column-gap: 55px;
    }

    .clim-pompe__contenu {
        max-width: 540px;
    }

    .clim-pompe__media {
        min-height: 430px;
    }

    .clim-pompe__image {
        width: min(100%, 510px);
    }

    .clim-pompe__background {
        right: -180px;

        width: 520px;
    }

    .clim-pompe__title {
        font-size: clamp(31px, 3.4vw, 44px);
    }

    .clim-pompe__introduction {
        font-size: clamp(18px, 1.9vw, 24px);
    }

    .clim-pompe__accroche {
        font-size: clamp(16px, 1.6vw, 19px);
    }

    .clim-pompe__texte .font22 {
        font-size: clamp(15px, 1.5vw, 18px);
    }
}


/* =========================================================
   TABLETTES
   PASSAGE SUR UNE SEULE COLONNE
   ========================================================= */

@media screen and (max-width: 991px) {

    .clim-pompe {
        padding:
                75px
                0
                80px;
    }

    .clim-pompe__grid {
        grid-template-columns: minmax(0, 1fr);

        row-gap: 65px;
    }

    .clim-pompe__contenu {
        max-width: 720px;

        justify-self: center;
    }

    .clim-pompe__media {
        min-height: auto;
    }

    .clim-pompe__image {
        width: min(100%, 620px);
    }

    .clim-pompe__background {
        top: 50%;
        right: 50%;

        width: min(90vw, 583px);

        transform: translate(74%, -50%);
    }

    .clim-pompe__title {
        font-size: clamp(35px, 6vw, 49px);
    }

    .clim-pompe__introduction {
        font-size: 23px;
    }

    .clim-pompe__accroche {
        font-size: 19px;
    }

    .clim-pompe__texte .font22 {
        font-size: 18px;
        line-height: 1.45;
    }
}


/* =========================================================
   MOBILES
   ========================================================= */

@media screen and (max-width: 767px) {

    .clim-pompe {
        padding:
                60px
                0
                65px;
    }

    .clim-pompe__grid {
        row-gap: 45px;
    }

    .clim-pompe__title {
        font-size: clamp(29px, 8.5vw, 42px);
    }

    .clim-pompe__title-bold,
    .clim-pompe__title-light {
        display: block;
    }

    .clim-pompe__trait {
        width: clamp(145px, 38vw, 200px);

        margin:
                24px
                0
                31px;
    }

    .clim-pompe__introduction {
        font-size: 19px;
        line-height: 1.4;
    }

    .clim-pompe__accroche {
        font-size: 16px;
        line-height: 1.35;
    }

    .clim-pompe__texte .font22 {
        font-size: 16px;
        line-height: 1.5;
    }

    .clim-pompe__texte p + p {
        margin-top: 22px;
    }

    .clim-pompe__image {
        width: min(100%, 540px);
    }

    .clim-pompe__background {
        width: min(105vw, 530px);

        transform: translate(70%, -50%);
    }
}


/* =========================================================
   PETITS MOBILES
   ========================================================= */

@media screen and (max-width: 480px) {

    .clim-pompe {
        padding:
                50px
                0
                55px;
    }

    .clim-pompe__grid {
        row-gap: 35px;
    }

    .clim-pompe__title {
        font-size: clamp(27px, 9.5vw, 37px);
    }

    .clim-pompe__trait {
        width: 145px;

        margin:
                22px
                0
                27px;
    }

    .clim-pompe__introduction {
        font-size: 17px;
    }

    .clim-pompe__accroche {
        font-size: 15px;
    }

    .clim-pompe__background {
        right: 50%;

        width: 440px;

        transform: translate(70%, -50%);
    }
}

/* =========================================================
   SECTION NOTRE PHILOSOPHIE DE TRAVAIL
   ========================================================= */

.clim-philosophie {
    position: relative;

    width: 100%;

    padding:
            clamp(75px, 7vw, 125px)
            0
            clamp(80px, 7vw, 125px);

    background-color: #ffffff;

    overflow: hidden;
}


/* =========================================================
   GRILLE PRINCIPALE
   ========================================================= */

.clim-philosophie__grid {
    width: 100%;

    display: grid;
    grid-template-columns:
        minmax(0, 0.95fr)
        minmax(0, 1.05fr);

    align-items: center;

    column-gap: clamp(70px, 8vw, 145px);
}


/* =========================================================
   COLONNE IMAGE
   ========================================================= */

.clim-philosophie__media {
    position: relative;

    width: 100%;
    min-width: 0;

    display: grid;
    place-items: center;
}


/* =========================================================
   IMAGE PRINCIPALE
   L’INCLINAISON ET LE TRAIT SONT DÉJÀ DANS L’IMAGE
   ========================================================= */

.clim-philosophie__image {
    display: block;

    width: min(100%, 590px);

    margin: 0;
}

.clim-philosophie__image img {
    display: block;

    width: 100%;
    max-width: 100%;
    height: auto;

    object-fit: contain;
}


/* =========================================================
   COLONNE TEXTE
   ========================================================= */

.clim-philosophie__contenu {
    width: 100%;
    max-width: 650px;
    min-width: 0;

    justify-self: start;
}


/* =========================================================
   TITRE
   ========================================================= */

.clim-philosophie__title {
    margin: 0;

    color: #123f51;

    font-size: clamp(34px, 3vw, 52px);
    font-weight: 400;
    line-height: 0.95;

    text-transform: uppercase;
}

.clim-philosophie__title-bold {
    font-weight: 700;
}

.clim-philosophie__title-light {
    font-weight: 300;
}

.clim-philosophie__title-line {
    display: block;

    font-weight: 300;
}


/* =========================================================
   TRAIT DÉGRADÉ SOUS LE TITRE
   ========================================================= */

.clim-philosophie__trait {
    display: block;

    width: clamp(160px, 14vw, 263px);
    height: auto;

    margin:
            clamp(25px, 2.5vw, 38px)
            0
            clamp(29px, 2.8vw, 43px);
}

.clim-philosophie__trait img {
    display: block;

    width: 100%;
    height: auto;
}


/* =========================================================
   PARAGRAPHES
   ========================================================= */

.clim-philosophie__texte {
    width: 100%;

    color: #466c7b;
}

.clim-philosophie__texte p {
    margin: 0;

    font-size: clamp(16px, 1.2vw, 21px);
    font-weight: 400;
    line-height: 1.35;
}

.clim-philosophie__texte p + p {
    margin-top: clamp(22px, 2.2vw, 35px);
}

.clim-philosophie__texte a {
    color: inherit;

    text-decoration: none;
}

.clim-philosophie__texte a:hover,
.clim-philosophie__texte a:focus-visible {
    text-decoration: underline;
}


/* =========================================================
   TRÈS GRANDS ÉCRANS
   ========================================================= */

@media screen and (min-width: 1400px) {

    .clim-philosophie__grid {
        column-gap: clamp(100px, 8vw, 155px);
    }

    .clim-philosophie__image {
        width: min(100%, 610px);
    }

    .clim-philosophie__contenu {
        max-width: 680px;
    }
}


/* =========================================================
   ÉCRANS INTERMÉDIAIRES
   ========================================================= */

@media screen and (max-width: 1199px) {

    .clim-philosophie {
        padding:
                85px
                0
                90px;
    }

    .clim-philosophie__grid {
        column-gap: 55px;
    }

    .clim-philosophie__image {
        width: min(100%, 500px);
    }

    .clim-philosophie__contenu {
        max-width: 550px;
    }

    .clim-philosophie__title {
        font-size: clamp(31px, 3.4vw, 44px);
    }

    .clim-philosophie__texte p {
        font-size: clamp(15px, 1.5vw, 18px);
    }
}


/* =========================================================
   TABLETTES
   PASSAGE SUR UNE COLONNE
   ========================================================= */

@media screen and (max-width: 991px) {

    .clim-philosophie {
        padding:
                75px
                0
                80px;
    }

    .clim-philosophie__grid {
        grid-template-columns: minmax(0, 1fr);

        row-gap: 60px;
    }

    /*
     * Sur tablette, le texte passe avant l’image pour que
     * le titre soit immédiatement visible.
     */

    .clim-philosophie__contenu {
        order: 1;

        max-width: 720px;

        justify-self: center;
    }

    .clim-philosophie__media {
        order: 2;
    }

    .clim-philosophie__image {
        width: min(100%, 620px);
    }

    .clim-philosophie__title {
        font-size: clamp(35px, 6vw, 49px);
    }

    .clim-philosophie__texte p {
        font-size: 18px;
        line-height: 1.45;
    }
}


/* =========================================================
   MOBILES
   ========================================================= */

@media screen and (max-width: 767px) {

    .clim-philosophie {
        padding:
                60px
                0
                65px;
    }

    .clim-philosophie__grid {
        row-gap: 45px;
    }

    .clim-philosophie__title {
        font-size: clamp(29px, 8.5vw, 42px);
        line-height: 1;
    }

    .clim-philosophie__title-bold,
    .clim-philosophie__title-light {
        display: block;
    }

    .clim-philosophie__trait {
        width: clamp(145px, 38vw, 200px);

        margin:
                24px
                0
                30px;
    }

    .clim-philosophie__texte p {
        font-size: 16px;
        line-height: 1.5;
    }

    .clim-philosophie__texte p + p {
        margin-top: 22px;
    }

    .clim-philosophie__image {
        width: min(100%, 540px);
    }
}


/* =========================================================
   PETITS MOBILES
   ========================================================= */

@media screen and (max-width: 480px) {

    .clim-philosophie {
        padding:
                50px
                0
                55px;
    }

    .clim-philosophie__grid {
        row-gap: 35px;
    }

    .clim-philosophie__title {
        font-size: clamp(27px, 9.5vw, 37px);
    }

    .clim-philosophie__trait {
        width: 145px;

        margin:
                22px
                0
                27px;
    }

    .clim-philosophie__texte p {
        font-size: 15px;
    }
}

/* =========================================================
   SECTION DES EXPERTS À VOTRE SERVICE
   ========================================================= */

.clim-experts {
    position: relative;

    width: 100%;

    padding:
            clamp(70px, 7vw, 120px)
            0
            clamp(75px, 7vw, 120px);

    background-color: #ffffff;

    overflow: hidden;
}


/* =========================================================
   GRILLE PRINCIPALE
   ========================================================= */

.clim-experts__grid {
    width: 100%;

    display: grid;
    grid-template-columns: minmax(0, 1fr);

    justify-items: center;
}


/* =========================================================
   BLOC CONTENU
   ========================================================= */

.clim-experts__contenu {
    width: 100%;
    max-width: 900px;

    display: grid;
    justify-items: center;

    text-align: center;
}


/* =========================================================
   TITRE
   ========================================================= */

.clim-experts__title {
    margin: 0;

    color: #123f51;

    font-size: clamp(34px, 3vw, 52px);
    font-weight: 400;
    line-height: 1;

    text-transform: uppercase;
}

.clim-experts__title-bold {
    font-weight: 700;
}

.clim-experts__title-light {
    font-weight: 300;
}


/* =========================================================
   TRAIT DÉGRADÉ
   ========================================================= */

.clim-experts__trait {
    display: block;

    width: clamp(160px, 14vw, 263px);
    height: auto;

    margin:
            clamp(22px, 2.4vw, 34px)
            auto
            clamp(34px, 3.2vw, 52px);
}

.clim-experts__trait img {
    display: block;

    width: 100%;
    height: auto;
}


/* =========================================================
   TEXTE
   ========================================================= */

.clim-experts__texte {
    width: 100%;
    max-width: 820px;

    color: #466c7b;
}

.clim-experts__texte p {
    margin: 0;

    font-size: clamp(16px, 1.2vw, 21px);
    font-weight: 400;
    line-height: 1.4;
}

.clim-experts__texte p + p {
    margin-top: clamp(20px, 2.1vw, 32px);
}

.clim-experts__texte .pb {
    color: #123f51;
    font-weight: 700;
}


/* =========================================================
   TRÈS GRANDS ÉCRANS
   ========================================================= */

@media screen and (min-width: 1400px) {
    .clim-experts__contenu {
        max-width: 940px;
    }

    .clim-experts__texte {
        max-width: 860px;
    }
}


/* =========================================================
   ÉCRANS INTERMÉDIAIRES
   ========================================================= */

@media screen and (max-width: 1199px) {
    .clim-experts {
        padding:
                85px
                0
                90px;
    }

    .clim-experts__contenu {
        max-width: 820px;
    }

    .clim-experts__texte {
        max-width: 760px;
    }

    .clim-experts__title {
        font-size: clamp(31px, 3.4vw, 44px);
    }

    .clim-experts__texte p {
        font-size: clamp(15px, 1.5vw, 18px);
    }
}


/* =========================================================
   TABLETTES
   ========================================================= */

@media screen and (max-width: 991px) {
    .clim-experts {
        padding:
                75px
                0
                80px;
    }

    .clim-experts__contenu {
        max-width: 720px;
    }

    .clim-experts__texte {
        max-width: 680px;
    }

    .clim-experts__title {
        font-size: clamp(35px, 6vw, 49px);
    }

    .clim-experts__texte p {
        font-size: 18px;
        line-height: 1.45;
    }
}


/* =========================================================
   MOBILES
   ========================================================= */

@media screen and (max-width: 767px) {
    .clim-experts {
        padding:
                60px
                0
                65px;
    }

    .clim-experts__contenu {
        max-width: 100%;
    }

    .clim-experts__title {
        font-size: clamp(29px, 8.5vw, 42px);
        line-height: 1.05;
    }

    .clim-experts__title-bold,
    .clim-experts__title-light {
        display: block;
    }

    .clim-experts__trait {
        width: clamp(145px, 38vw, 200px);

        margin:
                22px
                auto
                28px;
    }

    .clim-experts__texte {
        max-width: 100%;
    }

    .clim-experts__texte p {
        font-size: 16px;
        line-height: 1.5;
    }

    .clim-experts__texte p + p {
        margin-top: 22px;
    }
}


/* =========================================================
   PETITS MOBILES
   ========================================================= */

@media screen and (max-width: 480px) {
    .clim-experts {
        padding:
                50px
                0
                55px;
    }

    .clim-experts__title {
        font-size: clamp(27px, 9.5vw, 37px);
    }

    .clim-experts__trait {
        width: 145px;

        margin:
                20px
                auto
                26px;
    }

    .clim-experts__texte p {
        font-size: 15px;
    }
}









/*@todo dd*/

/* =========================================================
   SECTION ENGAGEMENTS ET RÉSEAUX SOCIAUX
   ========================================================= */

.clim-engagements {
    --clim-engagements-blue: #0d4358;
    --clim-engagements-yellow: #ffd500;

    position: relative;

    width: 100%;

    background-color: #ffffff;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.clim-engagements__container {
    position: relative;

    width: min(calc(100% - 40px), 1200px);

    margin-inline: auto;
}


/* =========================================================
   PARTIE BLANCHE
   ========================================================= */

.clim-engagements__top {
    position: relative;
    z-index: 2;

    width: 100%;

    padding-top: clamp(25px, 3vw, 50px);

    background-color: #ffffff;
}


/* =========================================================
   GRILLE PRINCIPALE
   ========================================================= */

.clim-engagements__grid {
    width: 100%;

    display: grid;
    grid-template-columns:
        minmax(360px, 0.95fr)
        minmax(0, 1.05fr);

    align-items: center;

    column-gap: clamp(55px, 7vw, 120px);
}


/* =========================================================
   COLONNE DU PERSONNAGE
   ========================================================= */

.clim-engagements__visual {
    position: relative;

    width: 100%;
    min-width: 0;

    /*
     * La hauteur maximale correspond à l’image affichée
     * en 407 × 553 px dans la maquette.
     */
    min-height: clamp(470px, 38.4vw, 553px);

    display: grid;
    align-items: end;
    justify-items: center;

    overflow: visible;
}


/* =========================================================
   IMAGE DU PERSONNAGE
   ========================================================= */

.clim-engagements__personnage {
    position: relative;
    z-index: 2;

    display: block;

    /*
     * Ratio original :
     * 814 / 1106 = environ 0,736
     */
    width: clamp(345px, 28.3vw, 407px);
    max-width: 100%;
    aspect-ratio: 814 / 1106;

    margin: 0;

    align-self: end;

    overflow: visible;
}

.clim-engagements__personnage img {
    display: block;

    width: 100%;
    max-width: 100%;
    height: auto;

    aspect-ratio: 814 / 1106;

    object-fit: contain;
    object-position: center bottom;
}


/* =========================================================
   BOUTON DEVIS
   ========================================================= */

.clim-engagements__button {
    position: absolute;
    z-index: 4;

    top: 53%;
    left: 0;

    display: inline-grid;
    grid-template-columns: auto 22px;

    align-items: center;

    column-gap: 10px;

    min-height: 45px;

    padding: 9px 13px 9px 20px;

    color: var(--clim-engagements-blue);
    background-color: var(--clim-engagements-yellow);

    border: 2px solid var(--clim-engagements-yellow);
    border-radius: 999px;

    font-size: clamp(14px, 1vw, 17px);
    font-weight: 700;
    line-height: 1;

    text-decoration: none;

    transition:
            color 180ms ease,
            background-color 180ms ease,
            border-color 180ms ease,
            transform 180ms ease;
}

.clim-engagements__button-arrow {
    display: grid;
    place-items: center;

    width: 22px;
    height: 22px;

    font-size: 20px;
    line-height: 1;
}

.clim-engagements__button:hover,
.clim-engagements__button:focus-visible {
    color: #ffffff;
    background-color: var(--clim-engagements-blue);
    border-color: var(--clim-engagements-blue);

    transform: translateY(-2px);
}

.clim-engagements__button:focus-visible {
    outline: 3px solid rgba(13, 67, 88, 0.25);
    outline-offset: 4px;
}


/* =========================================================
   COLONNE DE LA LISTE
   ========================================================= */

.clim-engagements__liste-zone {
    position: relative;
    z-index: 3;

    width: 100%;
    min-width: 0;

    padding-bottom: clamp(55px, 5vw, 80px);
}


/* =========================================================
   LISTE
   ========================================================= */

.clim-engagements__liste {
    width: 100%;

    display: grid;
    grid-template-columns: minmax(0, 1fr);

    row-gap: clamp(20px, 1.7vw, 29px);

    margin: 0;
    padding: 0;

    list-style: none;
}


/* =========================================================
   ÉLÉMENTS DE LA LISTE
   ========================================================= */

.clim-engagements__item {
    min-width: 0;

    display: grid;
    grid-template-columns: 26px minmax(0, 1fr);

    align-items: center;

    column-gap: clamp(19px, 1.8vw, 27px);

    color: var(--clim-engagements-blue);

    font-size: clamp(17px, 1.35vw, 22px);
    font-weight: 500;
    line-height: 1.25;
}


/* =========================================================
   CHECKS JAUNES
   ========================================================= */

.clim-engagements__check {
    display: block;

    width: 25px;
    height: 20px;

    margin: 0;
}

.clim-engagements__check img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
}


/* =========================================================
   PARTIE JAUNE
   ========================================================= */

.clim-engagements__social {
    position: relative;
    z-index: 1;

    width: 100%;

    /*
     * Petit chevauchement uniquement.
     * L’ancienne valeur faisait remonter beaucoup trop
     * le jaune devant le personnage.
     */
    margin-top: -18px;

    padding:
            clamp(105px, 8vw, 145px)
            0
            clamp(55px, 5vw, 85px);

    background-color: var(--clim-engagements-yellow);
}


/* =========================================================
   PENTE JAUNE
   ========================================================= */

.clim-engagements__social::before {
    content: "";

    position: absolute;
    z-index: -1;

    right: 0;
    bottom: calc(100% - 1px);
    left: 0;

    width: 100%;
    height: clamp(42px, 4.5vw, 70px);

    background-color: var(--clim-engagements-yellow);

    clip-path: polygon(
            0 0,
            100% 62%,
            100% 100%,
            0 100%
    );

    pointer-events: none;
}


/* =========================================================
   CONTENU DES RÉSEAUX SOCIAUX
   ========================================================= */

.clim-engagements__social-content {
    width: 100%;
    max-width: 720px;

    display: grid;
    grid-template-columns: minmax(0, 1fr);

    justify-items: center;

    margin-inline: auto;

    text-align: center;
}


/* =========================================================
   TITRE DES RÉSEAUX SOCIAUX
   ========================================================= */

.clim-engagements__social-title {
    margin: 0;

    color: var(--clim-engagements-blue);

    font-size: clamp(32px, 3vw, 52px);
    font-weight: 400;
    line-height: 1;

    text-transform: uppercase;
}

.clim-engagements__social-title-bold {
    font-weight: 700;
}

.clim-engagements__social-title-light {
    font-weight: 300;
}


/* =========================================================
   TRAIT SOUS LE TITRE
   ========================================================= */

.clim-engagements__trait {
    display: block;

    width: clamp(145px, 13vw, 240px);
    height: auto;

    margin:
            clamp(20px, 2vw, 30px)
            auto
            clamp(27px, 2.7vw, 42px);
}

.clim-engagements__trait img {
    display: block;

    width: 100%;
    height: auto;
}


/* =========================================================
   TEXTE DES RÉSEAUX
   ========================================================= */

.clim-engagements__social-text {
    width: 100%;
    max-width: 530px;

    margin: 0;

    color: var(--clim-engagements-blue);

    font-size: clamp(16px, 1.2vw, 20px);
    font-weight: 400;
    line-height: 1.35;
}


/* =========================================================
   LIENS DES RÉSEAUX SOCIAUX
   ========================================================= */

.clim-engagements__social-links {
    display: grid;
    grid-template-columns: repeat(3, 28px);

    align-items: center;
    justify-content: center;

    column-gap: 15px;

    margin-top: clamp(25px, 2.5vw, 38px);
}

.clim-engagements__social-link {
    display: grid;
    place-items: center;

    width: 32px;
    height: 32px;

    color: var(--clim-engagements-blue);

    border-radius: 50%;

    text-decoration: none;

    transition:
            color 180ms ease,
            background-color 180ms ease,
            transform 180ms ease;
}

.clim-engagements__social-link svg {
    display: block;

    width: 23px;
    height: 23px;

    fill: currentColor;
}



/* =========================================================
   ÉCRANS INTERMÉDIAIRES
   ========================================================= */

@media screen and (max-width: 1199px) {
    .clim-engagements__container {
        width: min(calc(100% - 40px), 1040px);
    }

    .clim-engagements__grid {
        grid-template-columns:
            minmax(320px, 0.9fr)
            minmax(0, 1.1fr);

        column-gap: 45px;
    }

    .clim-engagements__visual {
        min-height: 500px;
    }

    .clim-engagements__personnage {
        width: min(100%, 368px);
    }

    .clim-engagements__button {
        left: 0;
    }

    .clim-engagements__liste-zone {
        padding-bottom: 65px;
    }

    .clim-engagements__item {
        column-gap: 17px;

        font-size: clamp(16px, 1.55vw, 19px);
    }
}


/* =========================================================
   PETITS ORDINATEURS
   ========================================================= */

@media screen and (max-width: 991px) {
    .clim-engagements__grid {
        grid-template-columns:
            minmax(285px, 0.85fr)
            minmax(0, 1.15fr);

        column-gap: 30px;
    }

    .clim-engagements__visual {
        min-height: 440px;
    }

    .clim-engagements__personnage {
        width: min(100%, 324px);
    }

    .clim-engagements__button {
        top: 55%;

        min-height: 40px;

        padding: 8px 11px 8px 15px;

        font-size: 13px;
    }

    .clim-engagements__liste {
        row-gap: 17px;
    }

    .clim-engagements__item {
        grid-template-columns: 23px minmax(0, 1fr);

        column-gap: 14px;

        font-size: 16px;
    }

    .clim-engagements__check {
        width: 22px;
        height: auto;
    }
}


/* =========================================================
   TABLETTES
   ========================================================= */

@media screen and (max-width: 800px) {
    .clim-engagements__top {
        padding-top: 40px;
    }

    .clim-engagements__grid {
        grid-template-columns: minmax(0, 1fr);

        row-gap: 45px;
    }

    .clim-engagements__visual {
        min-height: auto;

        display: grid;
        justify-items: center;
    }

    .clim-engagements__personnage {
        width: min(100%, 370px);
    }

    .clim-engagements__button {
        top: 55%;
        left: max(0px, calc(50% - 275px));
    }

    .clim-engagements__liste-zone {
        width: min(100%, 620px);

        justify-self: center;

        padding-bottom: 70px;
    }

    .clim-engagements__item {
        grid-template-columns: 25px minmax(0, 1fr);

        column-gap: 20px;

        font-size: 18px;
    }

    .clim-engagements__check {
        width: 25px;
        height: 20px;
    }

    .clim-engagements__social {
        margin-top: 0;

        padding:
                100px
                0
                70px;
    }

    .clim-engagements__social::before {
        height: 50px;
    }
}


/* =========================================================
   MOBILES
   ========================================================= */

@media screen and (max-width: 650px) {
    .clim-engagements__container {
        width: min(calc(100% - 32px), 540px);
    }

    .clim-engagements__grid {
        row-gap: 38px;
    }

    .clim-engagements__visual {
        grid-template-columns: minmax(0, 1fr);

        row-gap: 20px;
    }

    .clim-engagements__personnage {
        width: min(88%, 325px);
    }

    .clim-engagements__button {
        position: relative;

        top: auto;
        left: auto;

        margin-top: -35px;
    }

    .clim-engagements__liste-zone {
        padding-bottom: 65px;
    }

    .clim-engagements__liste {
        row-gap: 17px;
    }

    .clim-engagements__item {
        grid-template-columns: 23px minmax(0, 1fr);

        align-items: start;

        column-gap: 15px;

        font-size: 16px;
        line-height: 1.35;
    }

    .clim-engagements__check {
        width: 22px;
        height: auto;

        margin-top: 2px;
    }

    .clim-engagements__social-title {
        font-size: clamp(29px, 8vw, 40px);
        line-height: 1.05;
    }

    .clim-engagements__social-title-bold,
    .clim-engagements__social-title-light {
        display: block;
    }

    .clim-engagements__trait {
        width: clamp(145px, 40vw, 190px);

        margin:
                22px
                auto
                27px;
    }

    .clim-engagements__social-text {
        max-width: 450px;

        font-size: 16px;
        line-height: 1.45;
    }
}


/* =========================================================
   PETITS MOBILES
   ========================================================= */

@media screen and (max-width: 420px) {
    .clim-engagements__container {
        width: calc(100% - 24px);
    }

    .clim-engagements__top {
        padding-top: 30px;
    }

    .clim-engagements__personnage {
        width: min(92%, 290px);
    }

    .clim-engagements__button {
        min-height: 40px;

        padding: 8px 11px 8px 15px;

        font-size: 13px;
    }

    .clim-engagements__liste-zone {
        padding-bottom: 55px;
    }

    .clim-engagements__item {
        grid-template-columns: 21px minmax(0, 1fr);

        column-gap: 12px;

        font-size: 15px;
    }

    .clim-engagements__check {
        width: 20px;
    }

    .clim-engagements__social {
        padding:
                90px
                0
                52px;
    }

    .clim-engagements__social::before {
        height: 40px;
    }

    .clim-engagements__social-title {
        font-size: clamp(27px, 8.7vw, 35px);
    }

    .clim-engagements__trait {
        width: 145px;

        margin:
                20px
                auto
                25px;
    }

    .clim-engagements__social-text {
        font-size: 15px;
    }
}


/* =========================================================
   RÉDUCTION DES ANIMATIONS
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
    .clim-engagements__button,
    .clim-engagements__social-link {
        transition: none;
    }
}

/* =========================================================
   SECTION BRAISE & CONFORT
   ========================================================= */

.clim-braise {
    --clim-braise-white: #ffffff;
    --clim-braise-dark: #151515;
    --clim-braise-red: #e30613;

    position: relative;
    isolation: isolate;

    width: 100%;
    min-height: clamp(430px, 43vw, 620px);

    display: grid;
    align-items: center;

    background-color: #17100d;

    border-top: 3px solid #ffd500;

    overflow: hidden;
}


/* =========================================================
   IMAGE DE FOND
   ========================================================= */

.clim-braise__background {
    position: absolute;
    z-index: -2;
    inset: 0;

    display: block;

    width: 100%;
    height: 100%;

    margin: 0;

    pointer-events: none;
    user-select: none;
}

.clim-braise__background img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;
}


/* =========================================================
   LÉGER VOILE POUR AMÉLIORER LA LISIBILITÉ
   ========================================================= */

.clim-braise::after {
    content: "";

    position: absolute;
    z-index: -1;
    inset: 0;

    background:
            linear-gradient(
                    90deg,
                    rgba(0, 0, 0, 0.08) 0%,
                    rgba(0, 0, 0, 0.02) 35%,
                    rgba(0, 0, 0, 0.08) 100%
            );

    pointer-events: none;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.clim-braise .container {
    position: relative;

    width: 100%;
}


/* =========================================================
   GRILLE PRINCIPALE
   ========================================================= */

.clim-braise__grid {
    width: 100%;
    min-height: clamp(430px, 43vw, 620px);

    display: grid;
    grid-template-columns:
        minmax(200px, 0.72fr)
        minmax(0, 1.28fr);

    align-items: center;

    padding:
            clamp(38px, 4vw, 65px)
            0;
}


/* =========================================================
   BLOC DE CONTENU
   ========================================================= */

.clim-braise__contenu {
    grid-column: 2;

    width: min(100%, 690px);

    display: grid;
    grid-template-columns: minmax(0, 1fr);

    justify-items: center;

    text-align: center;
}


/* =========================================================
   TITRE
   ========================================================= */

.clim-braise__title {
    max-width: 690px;

    margin: 0;

    color: var(--clim-braise-white);

    font-size: clamp(28px, 2.65vw, 48px);
    font-weight: 400;
    line-height: 0.98;

    text-transform: uppercase;

    text-wrap: balance;
}

.clim-braise__title-bold {
    font-weight: 800;
    font-style: normal;
}

.clim-braise__title-light {
    font-weight: 300;
    font-style: italic;
}

.clim-braise__title-line {
    display: block;
}


/* =========================================================
   TRAIT DÉGRADÉ
   ========================================================= */

.clim-braise__trait {
    display: block;

    width: clamp(145px, 12vw, 230px);
    height: auto;

    margin:
            clamp(20px, 2vw, 30px)
            auto
            clamp(18px, 1.8vw, 27px);
}

.clim-braise__trait img {
    display: block;

    width: 100%;
    height: auto;
}


/* =========================================================
   TEXTE D’INTRODUCTION
   ========================================================= */

.clim-braise__introduction {
    margin: 0 0 clamp(8px, 1vw, 14px);

    color: var(--clim-braise-white);

    font-size: clamp(16px, 1.45vw, 23px);
    font-weight: 400;
    line-height: 1.3;
}


/* =========================================================
   LOGO BRAISE & CONFORT
   Le logo et les pictogrammes sont déjà dans le SVG
   ========================================================= */

.clim-braise__logo {
    display: block;

    width: clamp(270px, 27vw, 405px);
    max-width: 100%;
    height: auto;

    margin: 0;
}

.clim-braise__logo img {
    display: block;

    width: 100%;
    height: auto;

    object-fit: contain;
}


/* =========================================================
   BOUTON
   ========================================================= */

.clim-braise__button {
    display: inline-grid;
    grid-template-columns: auto 20px;

    align-items: center;

    column-gap: 10px;

    min-height: 43px;

    margin-top: clamp(17px, 1.7vw, 27px);

    padding:
            9px
            13px
            9px
            22px;

    color: var(--clim-braise-dark);
    background-color: var(--clim-braise-white);

    border: 2px solid var(--clim-braise-white);
    border-radius: 999px;

    font-size: clamp(13px, 1vw, 16px);
    font-weight: 600;
    line-height: 1;

    text-decoration: none;

    transition:
            color 180ms ease,
            background-color 180ms ease,
            border-color 180ms ease,
            transform 180ms ease;
}

.clim-braise__button-arrow {
    display: grid;
    place-items: center;

    width: 20px;
    height: 20px;

    color: var(--clim-braise-red);

    font-size: 20px;
    font-weight: 500;
    line-height: 1;
}

.clim-braise__button:hover,
.clim-braise__button:focus-visible {
    color: var(--clim-braise-white);
    background-color: var(--clim-braise-red);
    border-color: var(--clim-braise-red);

    transform: translateY(-2px);
}

.clim-braise__button:hover .clim-braise__button-arrow,
.clim-braise__button:focus-visible .clim-braise__button-arrow {
    color: var(--clim-braise-white);
}

.clim-braise__button:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.45);
    outline-offset: 4px;
}


/* =========================================================
   TRÈS GRANDS ÉCRANS
   ========================================================= */

@media screen and (min-width: 1400px) {
    .clim-braise {
        min-height: 600px;
    }

    .clim-braise__grid {
        min-height: 600px;

        grid-template-columns:
            minmax(280px, 0.75fr)
            minmax(0, 1.25fr);
    }

    .clim-braise__contenu {
        max-width: 730px;
    }

    .clim-braise__title {
        max-width: 730px;
    }

    .clim-braise__logo {
        width: 405px;
    }
}


/* =========================================================
   ÉCRANS INTERMÉDIAIRES
   ========================================================= */

@media screen and (max-width: 1199px) {
    .clim-braise {
        min-height: 470px;
    }

    .clim-braise__grid {
        min-height: 470px;

        grid-template-columns:
            minmax(180px, 0.65fr)
            minmax(0, 1.35fr);
    }

    .clim-braise__contenu {
        width: min(100%, 620px);
    }

    .clim-braise__title {
        max-width: 620px;

        font-size: clamp(27px, 2.8vw, 39px);
    }

    .clim-braise__logo {
        width: clamp(270px, 29vw, 350px);
    }
}


/* =========================================================
   TABLETTES
   ========================================================= */

@media screen and (max-width: 991px) {
    .clim-braise {
        min-height: 520px;
    }

    .clim-braise__background img {
        object-position: 54% center;
    }

    .clim-braise::after {
        background:
                linear-gradient(
                        90deg,
                        rgba(0, 0, 0, 0.22) 0%,
                        rgba(0, 0, 0, 0.15) 45%,
                        rgba(0, 0, 0, 0.28) 100%
                );
    }

    .clim-braise__grid {
        min-height: 520px;

        grid-template-columns:
            minmax(100px, 0.38fr)
            minmax(0, 1.62fr);

        padding:
                55px
                0;
    }

    .clim-braise__contenu {
        width: min(100%, 570px);
    }

    .clim-braise__title {
        max-width: 570px;

        font-size: clamp(29px, 4vw, 39px);
    }

    .clim-braise__logo {
        width: clamp(285px, 39vw, 360px);
    }
}


/* =========================================================
   MOBILES
   ========================================================= */

@media screen and (max-width: 767px) {
    .clim-braise {
        min-height: 610px;
    }

    .clim-braise__background img {
        object-position: 58% center;
    }

    .clim-braise::after {
        background-color: rgba(0, 0, 0, 0.48);
    }

    .clim-braise__grid {
        min-height: 610px;

        grid-template-columns: minmax(0, 1fr);

        padding:
                65px
                0;
    }

    .clim-braise__contenu {
        grid-column: 1;

        width: min(100%, 560px);

        justify-self: center;
    }

    .clim-braise__title {
        max-width: 540px;

        font-size: clamp(28px, 7vw, 39px);
        line-height: 1.05;
    }

    .clim-braise__title-bold,
    .clim-braise__title-light {
        display: block;
    }

    .clim-braise__title-line {
        display: inline;
    }

    .clim-braise__trait {
        width: clamp(150px, 36vw, 200px);

        margin:
                22px
                auto
                24px;
    }

    .clim-braise__introduction {
        font-size: 17px;
    }

    .clim-braise__logo {
        width: min(100%, 350px);
    }

    .clim-braise__button {
        margin-top: 24px;
    }
}


/* =========================================================
   PETITS MOBILES
   ========================================================= */

@media screen and (max-width: 480px) {
    .clim-braise {
        min-height: 570px;
    }

    .clim-braise__background img {
        object-position: 62% center;
    }

    .clim-braise__grid {
        min-height: 570px;

        padding:
                50px
                0;
    }

    .clim-braise__contenu {
        width: 100%;
    }

    .clim-braise__title {
        max-width: 100%;

        font-size: clamp(25px, 8vw, 34px);
        line-height: 1.08;
    }

    .clim-braise__trait {
        width: 145px;

        margin:
                20px
                auto
                22px;
    }

    .clim-braise__introduction {
        margin-bottom: 12px;

        font-size: 16px;
    }

    .clim-braise__logo {
        width: min(100%, 310px);
    }

    .clim-braise__button {
        min-height: 41px;

        margin-top: 21px;

        padding:
                8px
                12px
                8px
                18px;

        font-size: 13px;
    }
}


/* =========================================================
   TRÈS PETITS MOBILES
   ========================================================= */

@media screen and (max-width: 360px) {
    .clim-braise {
        min-height: 550px;
    }

    .clim-braise__grid {
        min-height: 550px;

        padding:
                42px
                0;
    }

    .clim-braise__title {
        font-size: 24px;
    }

    .clim-braise__logo {
        width: min(100%, 280px);
    }
}


/* =========================================================
   RÉDUCTION DES ANIMATIONS
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
    .clim-braise__button {
        transition: none;
    }
}



/* =========================================================
   SECTION MA PRIME RÉNOV'
   Image à gauche — texte à droite
   ========================================================= */

.prime-renov-section {
    width: 100%;
    padding: clamp(40px, 6vw, 90px) 0;
    overflow: hidden;
}

.prime-renov-section .container {
    width: min(100% - 40px, 1200px);
    margin-inline: auto;
}

.prime-renov {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.4fr);
    align-items: center;
    gap: clamp(40px, 7vw, 100px);
}

/* Image */

.prime-renov__media {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-width: 0;
}

.prime-renov__image {
    display: block;
    width: 100%;
    max-width: 470px;
}

.prime-renov__image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Contenu */

.prime-renov__contenu {
    min-width: 0;
    max-width: 680px;
}

.prime-renov__contenu p {
    margin: 0;
    line-height: 1.55;
}

.prime-renov__contenu p + p {
    margin-top: clamp(16px, 2vw, 26px);
}

.prime-renov__engagement {
    font-weight: 700;
}

/* =========================================================
   TABLETTE
   ========================================================= */

@media screen and (max-width: 900px) {
    .prime-renov-section {
        padding: 50px 0;
    }

    .prime-renov {
        grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
        gap: 40px;
    }

    .prime-renov__image {
        max-width: 360px;
    }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media screen and (max-width: 700px) {
    .prime-renov-section .container {
        width: min(100% - 30px, 1200px);
    }

    .prime-renov {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .prime-renov__media {
        justify-content: center;
    }

    .prime-renov__image {
        width: min(100%, 420px);
        margin-inline: auto;
    }

    .prime-renov__contenu {
        width: 100%;
        max-width: none;
    }
}

/* =========================================================
   PETITS MOBILES
   ========================================================= */

@media screen and (max-width: 420px) {
    .prime-renov-section {
        padding: 35px 0;
    }

    .prime-renov-section .container {
        width: min(100% - 24px, 1200px);
    }

    .prime-renov {
        gap: 24px;
    }

    .prime-renov__contenu p {
        line-height: 1.5;
    }
}






.clim-realisation-slider {
    width: min(720px, calc(100% - 30px));
    margin: 55px auto 0;
    position: relative;
}

.clim-realisation-slider__viewport {
    width: 100%;
    overflow: hidden;
}

.clim-realisation-slider__track {
    display: flex;
    gap: 4px;
    transition: transform 0.45s ease;
    will-change: transform;
}

.clim-realisation-slider__slide {
    flex: 0 0 calc((100% - 8px) / 3);
    height: 170px;
    min-width: 0;
    overflow: hidden;
}

.clim-realisation-slider__slide picture {
    display: block;
    width: 100%;
    height: 100%;
}

.clim-realisation-slider__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.clim-realisation-slider__controls {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
}

.clim-realisation-slider__btn {
    width: 22px;
    height: 22px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    background: transparent;
    color: #ffffff;
    font-size: 22px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, opacity 0.25s ease;
}

.clim-realisation-slider__btn:hover {
    background: #ffffff;
    color: #47AECC;
}

.clim-realisation-slider__btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.clim-realisation-slider__btn:disabled:hover {
    background: transparent;
    color: #ffffff;
}

@media (max-width: 991px) {
    .clim-realisation-slider {
        width: min(680px, calc(100% - 30px));
        margin-top: 40px;
    }

    .clim-realisation-slider__slide {
        height: 165px;
    }

}

@media (max-width: 767px) {
    .clim-realisation-slider {
        width: calc(100% - 30px);
        margin-top: 35px;
    }

    .clim-realisation-slider__slide {
        flex: 0 0 calc((100% - 4px) / 2);
        height: 180px;
    }

}

@media (max-width: 575px) {
    .clim-realisation-slider__track {
        gap: 0;
    }

    .clim-realisation-slider__slide {
        flex: 0 0 100%;
        height: 230px;
    }

    .clim-realisation-slider__controls {
        justify-content: center;
        margin-top: 15px;
    }

    .clim-realisation-slider__btn {
        width: 28px;
        height: 28px;
        font-size: 26px;
    }

}










/* =========================
   RÉALISATIONS - RESPONSIVE FIX
========================= */

@media (max-width: 575.98px) {
    .backgroundBleu.exemples {
        padding: 52px 0 44px;
        overflow: hidden;
    }

    .exemples .container {
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    .exemples h2 {
        font-size: 28px;
        line-height: 1.15;
    }

    .exemples .trait {
        margin-top: 18px;
    }

    .realisations-slider {
        margin-top: 32px;
    }

    .realisations-slider__viewport {
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 0;
    }

    .realisations-slider__track {
        gap: 18px;
        align-items: flex-start;
    }

    .realisation-card {
        flex: 0 0 calc(100vw - 40px);
        max-width: 360px;
        min-width: 0;
        scroll-snap-align: start;
    }

    .realisation-card__image-wrap {
        width: 100%;
        aspect-ratio: 1 / 1;
        border-radius: 0;
    }

    .realisation-card__img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .realisation-card__title {
        margin: 16px 0 8px;
        padding: 0;
        font-size: 23px;
        line-height: 1.1;
        white-space: normal;
        overflow: visible;
    }

    .realisation-card__tags {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        overflow: visible;
    }

    .realisation-card__tag {
        min-height: 20px;
        padding: 3px 9px;
        font-size: 10px;
        line-height: 1;
    }

    .realisations-slider__bottom {
        margin-top: 34px;
        gap: 16px;
    }

    .realisations-slider__progress {
        min-width: 0;
    }

    .realisations-slider__arrows {
        flex: 0 0 auto;
    }
}

/* =========================
   RÉALISATIONS - TABLETTE FIX
   entre desktop et mobile
========================= */

@media (min-width: 768px) and (max-width: 991.98px) {
    .backgroundBleu.exemples {
        padding: 60px 0 42px;
        overflow: hidden;
    }

    .exemples .container {
        max-width: 100%;
        padding-left: 36px;
        padding-right: 36px;
    }

    .exemples h2 {
        font-size: 40px;
        line-height: 1.1;
    }

    .realisations-slider {
        margin-top: 44px;
    }

    .realisations-slider__viewport {
        width: 100%;
        overflow: hidden;
    }

    .realisations-slider__track {
        display: flex;
        gap: 20px;
        align-items: flex-start;
        width: 100%;
        transform: none;
    }

    .realisation-card {
        flex: 0 0 calc((100% - 40px) / 3);
        min-width: 0;
        max-width: none;
    }

    .realisation-card__image-wrap {
        width: 100%;
        aspect-ratio: 1 / 1.075;
        border-radius: 14px;
        overflow: hidden;
    }

    .realisation-card__img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .realisation-card__title {
        margin: 14px 0 7px;
        font-size: 23px;
        line-height: 1.05;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .realisation-card__tags {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
        min-width: 0;
    }

    .realisation-card__tag {
        height: 19px;
        padding: 0 8px;
        font-size: 10px;
        line-height: 1;
        white-space: nowrap;
    }

    .realisations-slider__bottom {
        margin-top: 58px;
        display: flex;
        align-items: center;
        gap: 28px;
    }

    .realisations-slider__progress {
        flex: 1;
        min-width: 0;
    }

    .realisations-slider__arrows {
        flex: 0 0 auto;
    }
}


@media (min-width: 1199px) and (max-width: 1399px) {

    .soulignerAccueil::after {
        display: none;
    }


}

.header-graphisme__rdv-form {
    position: relative;
    display: inline-flex;
}

.rdv-date-input {
    position: absolute;

    /*
     * C’est ça qui déplace le point d’ouverture du calendrier.
     * Plus la valeur est négative, plus le calendrier essaiera de s’ouvrir haut.
     */
    top: -260px;
    left: 0;

    width: 1px;
    height: 1px;

    opacity: 0;
    border: 0;
    padding: 0;

    pointer-events: none;
}
















/* ==========================================================================
   09. RÉALISATIONS / EXEMPLES
   ========================================================================== */

.exemples{
    margin-top:10rem;
}

.trait {
    width: 118px;
    height: 9px;

    margin: 18px auto 0;

    background: #6EF8AC;
    border-radius: 100px;
}

.realisations-images {
    display: flex;
    gap: 34px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 40px 0 20px;
    scroll-snap-type: x mandatory;
}

.realisations-images__item {
    flex: 0 0 448px;
    height: 448px;
    border-radius: 24px;
    overflow: hidden;
    scroll-snap-align: start;
}

.realisations-images__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .realisations-images {
        gap: 20px;
        padding: 30px 0 15px;
    }

    .realisations-images__item {
        flex: 0 0 82vw;
        height: 82vw;
        max-height: 420px;
    }
}

.backgroundBleu.exemples {
    background: #001F55;
    padding: 70px 0 40px;
    overflow: hidden;
}

.exemples .container {
    max-width: 1284px;
    margin: 0 auto;
    padding: 0 72px;
}

.exemples h2 {
    margin: 0;
    color: #ffffff;
    font-size: 43px;
    line-height: 1.15;
    font-weight: 400;
}

.exemples h2 .gras {
    font-weight: 800;
}

.exemples .trait {
    width: 70px;
    height: 5px;
    margin: 28px auto 0;
    border-radius: 999px;
    background: #6EF8AC;
}

.realisations-slider {
    margin-top: 45px;
}

.realisations-slider__viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.realisations-slider__viewport::-webkit-scrollbar {
    display: none;
}

.realisations-slider__track {
    display: flex;
    gap: 22px;
    align-items: flex-start;
}

.realisation-card {
    flex: 0 0 282px;
    color: #fff;
}

.realisation-card__image-wrap {
    width: 100%;
    aspect-ratio: 1 / 1.075;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
}

.realisation-card__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.realisation-card__title {
    margin: 15px 0 6px;
    color: #fff;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 700;
}

.realisation-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.realisation-card__tag {
    display: inline-flex;
    align-items: center;
    min-height: 20px;
    padding: 2px 8px;
    border: 1px solid #1ee7ad;
    border-radius: 999px;
    color: #6df5c5;
    font-size: 11px;
    line-height: 1;
    font-weight: 600;
}

.realisation-card__tag--yellow {
    border-color: #d6f400;
    color: #d6f400;
}

.realisations-slider__bottom {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 48px;
}

.realisations-slider__progress {
    position: relative;
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.20);
    overflow: hidden;
}

.realisations-slider__progress-bar {
    position: absolute;
    inset: 0 auto 0 0;
    width: 0;
    height: 100%;
    background: white;
    transition: width 0.2s ease;
}

.realisations-slider__arrows {
    display: flex;
    align-items: center;
    gap: 10px;
}

.realisations-slider__arrow {
    width: 31px;
    height: 31px;
    padding: 0;
    border: 1px solid white;
    border-radius: 50%;
    background: transparent;
    color: white;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 0;
    line-height: 1;

    transition: border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.realisations-slider__arrow::before {
    content: '';
    width: 8px;
    height: 8px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
}

.realisations-slider__arrow[data-slider-prev]::before {
    transform: rotate(45deg);
    margin-left: 3px;
}

.realisations-slider__arrow[data-slider-next]::before {
    transform: rotate(-135deg);
    margin-right: 3px;
}

.realisations-slider__arrow--next {
    border-color: white;
    color: white;
}

.realisations-slider__arrow:disabled {
    opacity: 0.35;
    cursor: default;
}

@media (max-width: 991px) {
    .realisation-card {
        flex-basis: 260px;
    }

    .realisation-card__title {
        font-size: 22px;
    }
}

@media (max-width: 575px) {
    .realisations-slider {
        margin-top: 30px;
    }

    .realisation-card {
        flex-basis: 78vw;
    }

    .realisations-slider__bottom {
        margin-top: 30px;
        gap: 18px;
    }
}


/*@todo */
.google-avis-section {
    background-color: #4cafc6;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    padding: 26px 0 30px;
    overflow: hidden;
}

.google-avis-section,
.google-avis-section * {
    box-sizing: border-box;
}

.google-avis-section .container {
    width: 100%;
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.google-avis-section picture img {
    max-width: 100%;
    height: auto;
}

/* TITRE */
.google-avis-section h2 {
    line-height: 1.1;
}

.google-avis-section .text-center picture img {
    display: inline-block;
    max-width: 263px;
    width: 100%;
    height: auto;
}

/* SLIDER */
.google-avis-slider {
    position: relative;
    width: 100%;
    padding-left: 42px;
    padding-right: 42px;
}

.google-avis-slider__viewport {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
}

.google-avis-slider__viewport::-webkit-scrollbar {
    display: none;
}

.google-avis-slider__track {
    display: flex;
    flex-wrap: nowrap;
    gap: 18px;
    align-items: stretch;
    width: 100%;
}

.google-avis-card {
    flex: 0 0 calc((100% - 36px) / 3);
    min-width: 0;
    scroll-snap-align: start;
}

.google-avis-card__inner {
    width: 100%;
    height: 245px;
    background: #ffffff;
    border-radius: 7px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.google-avis-card__inner picture {
    display: block;
    width: 100%;
    height: 100%;
}

.google-avis-card__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
}

/* BOUTONS */
.google-avis-slider__button {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 50%;
    background: #ffffff;
    color: #4cafc6;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    font-size: 34px;
    line-height: 1;
    font-weight: 700;
    cursor: pointer;
    padding: 0 0 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.google-avis-slider__button:hover {
    background: #f4f4f4;
}

.google-avis-slider__button:disabled {
    opacity: 0.45;
    cursor: default;
}

.google-avis-slider__button--prev {
    left: 0;
}

.google-avis-slider__button--next {
    right: 0;
}

/* BARRE DE PROGRESSION */
.google-avis-slider__progress {
    display: none;
    height: 4px;
    margin: 18px auto 0;
    max-width: 220px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 20px;
    overflow: hidden;
}

.google-avis-slider__progress-bar {
    width: 12%;
    height: 100%;
    background: #ffffff;
    border-radius: 20px;
    transition: width 0.2s ease;
}

/* TABLETTE LARGE */
@media (max-width: 1199px) {
    .google-avis-section .container {
        max-width: 900px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .google-avis-slider {
        padding-left: 42px;
        padding-right: 42px;
    }

    .google-avis-slider__track {
        gap: 18px;
    }

    .google-avis-card {
        flex: 0 0 calc((100% - 18px) / 2);
        max-width: none;
    }

    .google-avis-card__inner {
        height: 270px;
    }
}

/* TABLETTE / MOBILE LARGE */
@media (max-width: 900px) {
    .google-avis-section .container {
        max-width: 620px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .google-avis-slider {
        padding-left: 40px;
        padding-right: 40px;
    }

    .google-avis-slider__track {
        gap: 16px;
    }

    .google-avis-card {
        flex: 0 0 100%;
        width: 100%;
        max-width: none;
        min-width: 100%;
    }

    .google-avis-card__inner {
        height: auto;
        aspect-ratio: 366 / 325;
    }
}

/* MOBILE JUSQU’À 560PX */
@media (max-width: 560px) {
    .google-avis-section {
        padding: 22px 0 26px;
        overflow: hidden;
    }

    .google-avis-section .container {
        width: 100%;
        max-width: none;
        padding-left: 12px;
        padding-right: 12px;
    }

    .google-avis-section .text-center {
        margin-top: 28px !important;
        margin-bottom: 26px !important;
    }

    .google-avis-section h2 {
        font-size: 42px;
        line-height: 1.1;
        margin-bottom: 14px;
    }

    .google-avis-section .text-center picture img {
        max-width: 260px;
        width: 75%;
        height: auto;
    }

    .google-avis-slider {
        width: 100%;
        padding-left: 34px;
        padding-right: 34px;
        margin-top: 22px;
    }

    .google-avis-slider__viewport {
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
    }

    .google-avis-slider__track {
        display: flex;
        flex-wrap: nowrap;
        gap: 0;
        align-items: stretch;
    }

    .google-avis-card {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
        min-width: 100%;
    }

    .google-avis-card__inner {
        width: 100%;
        height: auto;
        min-height: 0;
        aspect-ratio: 366 / 325;
        border-radius: 7px;
        overflow: hidden;
        background: #ffffff;
    }

    .google-avis-card__inner picture {
        display: block;
        width: 100%;
        height: 100%;
    }

    .google-avis-card__img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center center;
    }

    .google-avis-slider__button {
        width: 28px;
        height: 28px;
        font-size: 30px;
        z-index: 10;
    }

    .google-avis-slider__button--prev {
        left: 0;
    }

    .google-avis-slider__button--next {
        right: 0;
    }

    .google-avis-slider__progress {
        display: block;
        height: 4px;
        margin: 18px auto 0;
        max-width: 220px;
    }
}

/* PETITS MOBILES */
@media (max-width: 420px) {
    .google-avis-section h2 {
        font-size: 36px;
    }

    .google-avis-slider {
        padding-left: 30px;
        padding-right: 30px;
    }

    .google-avis-slider__button {
        width: 26px;
        height: 26px;
        font-size: 28px;
    }
}

.climatisation .logo-braise {
    display: block;
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
}

.climatisation .logo-braise img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}


.bouton2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-width: 241px;
    height: 48px;
    padding: 0 18px 0 24px;
    background-color: #ffffff;
    color: #0F4254;
    border-radius: 999px;
    text-decoration: none;
    font-size: 18px;
    line-height: 1;
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bouton2:hover {
    color: #0F4254;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.bouton2 span {
    display: inline-block;
}


@media screen and (min-width: 767px) and (max-width: 920px) {
    .renov-header__slogan-bottom  {
        font-size: 30px !important;
    }
    .renov-header__content{
        margin-top:1rem !important;
    }
}