/* Personnalisation des styles */

@media screen {
    :root {
    }
    :where(*) {
    }
}

:root {
}

.header {
    position: sticky;
    background-color: var(--clr-300);
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 1.5rem 0;
    animation: headerScroll linear forwards;
    animation-timeline: scroll(root);
    animation-range: 0vh 15vh;
    & .wrap {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 4rem;
        animation: headerWrapScroll linear forwards;
        animation-timeline: scroll(root);
        animation-range: 0vh 15vh;
    }
    & .header__logo {
        width: 7.625rem;
        margin-right: auto;
        animation: logoScroll linear forwards;
        animation-timeline: scroll(root);
        animation-range: 0vh 15vh;
    }
    & .bouton {
        animation: navLinkScroll linear forwards;
        animation-timeline: scroll(root);
        animation-range: 0vh 15vh;
    }
}

@keyframes headerScroll {
    100% {
        padding: 0.625rem 0;
    }
}

@keyframes headerWrapScroll {
    100% {
        gap: 2rem;
    }
}

@keyframes logoScroll {
    100% {
        width: 6.25rem;
    }
}

.nav--primary {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 2rem;
    animation: navScroll linear forwards;
    animation-timeline: scroll(root);
    animation-range: 0vh 15vh;
    & a {
        text-decoration: none;
        font-size: 1rem;
        font-weight: 500;
        transition: all 0.6s;
        animation: navLinkScroll linear forwards;
        animation-timeline: scroll(root);
        animation-range: 0vh 15vh;
        &.nav__link--current {
            text-decoration: underline;
        }
    }
    &:has( a:hover) *:not(:hover) {
        opacity: 0.4;
    }
    & .nav-sep {
        width: 1px;
        background-color: currentColor;
        height: 2rem;
    }
}

@keyframes navScroll {
    100% {
        gap: 1.5rem;
    }
}

@keyframes navLinkScroll {
    100% {
        font-size: 0.85rem;
    }
}

.menu-button {
    display: none;
}

.titre {
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.2;
}

.titre.titre--mid {
    font-size: 2.125rem;
}

.titre.titre--smaller {
    font-size: 1.625rem;
}

.titresm {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 0;
}

.titre-p {
    font-weight: bold;
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
    margin-bottom: 0 !important;
}

.sectioncontent p {
    line-height: 1.5;
}

.bouton {
    --clr: var(--clr-300);
    --bgc: var(--clr-text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-radius: 50vh;
    border: 1px solid var(--bgc);
    color: var(--clr);
    font-size: 1rem;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    z-index: 2;
    width: fit-content;
    white-space: nowrap;
    max-width: 100%;
    text-transform: uppercase;
    transition: all 0.5s ease-in-out;
    &::after {
        content: '';
        position: absolute;
        top: -2px;
        right: 0;
        width: 100%;
        height: calc(100% + 4px);
        background-color: var(--bgc);
        z-index: -1;
        border-radius: 50vh;
        transition: all 0.5s ease-in-out;
    }
    &:hover {
        color: var(--bgc);
        &::after {
            translate: 110% 0;
        }
    }
    & .bouton__icon {
        max-width: 2rem;
        max-height: 2rem;
    }
    &.bouton--invert {
        --clr: var(--clr-text);
        --bgc: var(--clr-300);
    }
    &.bouton--alt {
        color: var(--bgc);
        &:hover {
            color: var(--clr);
        }
        &::after {
            translate: -110% 0;
        }
        &:hover {
            &::after {
                translate: 0% 0;
            }
        }
    }
    &.tac {
        margin-left: auto;
        margin-right: auto;
    }
}

.hero {
    padding: 1rem 0;
    background-color: var(--clr-300);
    color: var(--clr-100);
    & .wrap {
        border-radius: var(--radius);
        overflow: clip;
        background-color: var(--clr-text);
        position: relative;
        min-height: 80vh;
    }
    & .heroinner {
        position: absolute;
        top: 50%;
        left: 6rem;
        width: 60%;
        translate: 0 -50%;
        z-index: 2;
    }
    & p {
        width: 85%;
        font-size: 1.25rem;
        margin: 2rem 0;
    }
    & .heromedia, & .heromedia * {
        --transTranslate: 0;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
}

.statshome {
    background-color: var(--clr-300);
    padding: 1rem 0rem 2rem;
    & .wrap {
        background-color: var(--clr-text);
        color: var(--clr-100);
        border-radius: var(--radius);
        padding: 2.5rem 6rem;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }
    & .stat {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        line-height: 0.8;
        &:not(:first-child) {
            border-left: 1px solid var(--clr-100);
        }
    }
    & .statNum {
        font-size: 2.75rem;
        font-weight: 500;
    }
    & .statDet {
        font-size: 1rem;
    }
}

.about {
    & .wrap {
        padding: 0 6rem;
    }
    & .img {
        position: relative;
        & > img {
            border-radius: var(--radius);
        }
        & .logo {
            position: absolute;
            bottom: 10%;
            right: 0;
            background-color: var(--clr-300);
            border-radius: var(--radius);
            padding: 1.5rem;
            width: 10rem;
            translate: 50% 0;
            animation: logoBlockImg linear forwards;
            animation-timeline: view();
            animation-range: entry 0% exit 100%;
        }
    }
}

@keyframes logoBlockImg {
    0% {
        bottom: 10%;
    }
    100% {
        bottom: 75%;
    }
}

.section300 {
    & .wrap {
        border-radius: var(--radius);
        background-color: var(--clr-300);
        padding: 4.5rem 6rem;
        &:has(.avantagecard) {
            padding: 4.5rem 3.5rem;
        }
        &:has(.avantagecard:nth-child(4)) {
            padding: 4.5rem 0.5rem;
        }
        & .avantagecard .titresm {
            margin-bottom: 0;
        }
    }
}

.avantagesinner {
    margin-top: 6rem;
    margin-bottom: 3rem;
    &:has(> .avantagecard:nth-child(4)) {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        .avantagecard {
            padding: 0px 2rem;
        }
    }
}

.avantagecard {
    background-color: transparent;
    padding: 0px 2.5rem;
    display: flex;
    gap: 1rem;
    &:not(:first-child) {
        border-left: 2px solid var(--clr-600);
    }
    & .lst {
        font-size: 2.125rem;
        font-weight: 500;
        &::after {
            content: '.';
        }
    }
    & p:last-child {
        margin-bottom: 0 !important;
    }
}

.cta-home {
    border-radius: var(--radius);
    background-color: var(--clr-text);
    color: var(--clr-300);
    padding: 3rem 2rem;
    & p:last-of-type {
        margin-bottom: 8rem;
    }
}

.section-cta-home .wrap {
    padding: 0px 6rem;
}

.section-cta-home .img {
    position: relative;
    translate: 0 -6rem;
    & img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: var(--radius);
        object-fit: cover;
        object-position: center;
    }
}

.sectiontemoignages-wslider {
    & .temoignages-container > .temoignages__slider {
        display: block;
        gap: 0;
    }
    & .temtxt {
        margin-top: 3rem;
        padding-right: 20%;
    }
    & .temoignages-container {
        margin: 0;
    }
    & .temoignage-element {
        background-color: var(--clr-100);
        border-radius: var(--radius);
        padding: 4rem 3rem;
        & p {
            font-size: 1.125rem;
            font-weight: 500;
            margin-bottom: 2.5rem;
            text-align: center;
            line-height: 1.2;
            &.author {
                margin-bottom: 0;
                text-transform: uppercase;
                font-size: 0.9rem;
            }
        }
    }
    & .temoignage__img {
        width: 4.5rem;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 1.5rem;
    }
    & .boutonscontrols {
        justify-content: center;
        margin-top: 2rem;
        & .bouton {
            aspect-ratio: 1;
        }
        & .bouton svg {
            max-width: 0.5rem;
        }
    }
}

.sectioncta {
    background-color: transparent !important;
    color: var(--clr-text) !important;
    padding: 0;
    & .wrap {
        border-radius: var(--radius);
        padding: 6rem;
    }
    &.sectionreverse .wrap {
        background-color: var(--clr-300);
        color: var(--clr-text);
    }
    &.sectionmid .wrap {
        background-color: var(--clr-300);
        color: var(--clr-text);
    }
    &.sectionlight .wrap {
        background-color: var(--clr-300);
        color: var(--clr-text);
    }
    &.sectionlighter .wrap {
        background-color: var(--clr-300);
        color: var(--clr-text);
    }
    &.sectionaccent .wrap {
        background-color: var(--clr-300);
        color: var(--clr-text);
    }
    & .titre--smaller {
        margin-bottom: 1.5rem;
    }
    &.sectioncontent .wrap > p {
        max-width: 80ch;
    }
    &.sectionctabg .wrap {
        padding: 8rem 6rem 20rem;
        background-image: url(/images/footercta.jpg);
        background-attachment: fixed;
        background-position: center;
        background-size: cover;
        color: var(--clr-100);
    }
}

footer {
    margin-top: 4rem;
    margin-bottom: 2rem;
    & .wrap {
        padding: 4rem 6rem 2rem;
        border-radius: var(--radius);
        background-color: var(--clr-text);
        color: var(--clr-300);
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }
    & .footer-infos {
        display: flex;
        justify-content: start;
        flex-wrap: wrap;
        gap: 2.5rem;
        align-items: center;
        & .footer-sep {
            display: block;
            height: 6rem;
            width: 1px;
            background-color: var(--clr-300);
        }
    }
    & .footer-logo {
        display: block;
        background-color: var(--clr-300);
        border-radius: var(--radius);
        padding: 2rem;
        width: 11rem;
    }
    & .footer-ag {
        display: flex;
        justify-content: start;
        align-items: center;
        gap: 2rem;
        & img {
            width: 9.5rem;
        }
        & h3 {
            text-transform: uppercase;
            font-weight: 400;
            margin-bottom: 1.5rem;
            font-size: 1rem;
        }
        & p {
            margin-bottom: 1.5rem;
            font-size: 1rem;
        }
        & a {
            text-decoration: none;
            display: flex;
            justify-content: start;
            align-items: center;
            & svg {
                width: 2rem;
            }
        }
    }
    & hr {
        width: 100%;
        height: 1px;
        border: 0;
        background-color: var(--clr-300);
        margin: 3.5rem 0px 0.5rem;
    }
    & .footer-boutons {
        display: flex;
        gap: 1.5rem;
        align-items: center;
        justify-content: end;
        flex-wrap: wrap;
    }
    & .copyp {
        font-size: 0.8rem;
        & a {
            text-decoration: none;
        }
    }
}

.nav--social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav__social-link {
    width: 2.5rem;
    border-radius: 50%;
    aspect-ratio: 1;
    border: 3px solid currentColor;
    display: grid;
    place-items: center;
    padding: 0.5rem;
}

.prop_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    padding: 0px 6rem;
}

.prop_header > div {
    max-width: 45rem;
}

.proprietes__slider-container {
    overflow: clip;
    width: 100%;
    padding-left: max(1rem, calc(((100vw - 93.75rem) / 2) + 6rem));
    & > .proprietes__slider {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2rem;
        width: 120%;
        & > .propriete-item:not(:nth-child(-n + 3)) {
            display: none;
        }
    }
}

.propriete__img {
    border-radius: var(--radius);
    overflow: hidden;
    & .propriete__tag {
        border-radius: var(--radius);
        font-weight: 400;
    }
}

.propriete__infos {
    padding: 1.5rem;
}

.propriete__cta {
    display: none;
}

.propriete__prix {
    font-weight: bold;
    margin-bottom: 0;
}

.propriete__adresse {
    font-size: 1rem;
}

.propriete__ville {
    margin-top: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.propriete__details {
    text-transform: none;
    font-size: 0.75rem;
    opacity: 0.625;
}

.propriete-item {
    padding: 0rem;
    border-radius: var(--radius);
    padding: 4px;
    transition: all 0.3s;
    &:hover {
        background-color: var(--clr-300);
    }
}

.sectionproprietes .boutonscontrols {
    justify-content: start;
    gap: 1rem;
    margin-top: 1rem;
    & .bouton {
        aspect-ratio: 1;
        & svg {
            max-width: 0.5rem;
        }
    }
}

.sectioncustom {
    background-color: transparent !important;
    &.sectionreverse .wrap {
        background-color: var(--clr-text);
        padding: 4rem 6rem;
    }
    & .wrap {
        border-radius: var(--radius);
        background-color: var(--clr-300);
        padding: 4rem 6rem;
    }
}

.sideaccordeon .media img {
    border-radius: var(--radius);
}

.sideaccordeon {
    border-radius: var(--radius);
}

.saitem:last-child {
    border-top-right-radius: var(--radius);
    border-bottom-right-radius: var(--radius);
}

/* */
.blurGoingOut {
    --transTranslate: -2rem;
    animation: blurGoingOut linear forwards;
    animation-timeline: view();
    animation-range: entry 0% exit 100%;
    &.noUp {
        --transTranslate: 0rem;
    }
}

@keyframes blurGoingOut {
    0%, 80% {
        filter: blur(0px);
        translate: 0 0;
    }
    100% {
        filter: blur(3px);
        translate: 0 var(--transTranslate);
    }
}

.br, .ficheinfosgrid, .ficheinfosgrid div.full {
    border-radius: var(--radius);
}

.brt {
    border-top-left-radius: var(--radius);
    border-top-right-radius: var(--radius);
}

.brb {
    border-bottom-left-radius: var(--radius);
    border-bottom-right-radius: var(--radius);
}

.ficheinfosgrid {
    border-top: 1px solid rgba(var(--clr-text-rgb), 0.9) !important;
}

.accordeontrigger.brt {
    border-radius: var(--radius);
}

.accordeoncontent {
    padding-top: 1rem;
}

.ficheinfosgrid div:nth-child(odd):not(.full):nth-last-child(2), .ficheinfospiecesheader .empty:nth-last-child(2) {
    border-bottom-left-radius: var(--radius);
}

.ficheinfosgrid div:nth-child(even):not(.full):last-child, .ficheinfospiecesheader .empty:last-child {
    border-bottom-right-radius: var(--radius);
}

.ficheinfospiecesheader {
    margin-bottom: 1rem;
}

.bouton--mobile::after {
    display: none !important;
}

/*1400*/

@media screen and (max-width: 87.5rem) {
    .rscircle {
        width: calc(100% - 10rem);
    }
    .rsinnercircle {
        width: calc(100% - 17rem);
    }
    .rscontent {
        padding: 2.5rem 2.125rem;
        &::before {
            display: none;
        }
        & .titresm {
            margin-bottom: .75rem;
            font-size: 1.25rem;
        }
        & p {
            font-size: .9rem;
            margin-bottom: 0.5rem;
            line-height: 1.3;
        }
    }
}

/*1300*/

@media screen and (max-width: 81.25rem) {
    .nav--primary {
        gap: 1.625rem;
        & a {
            font-size: 0.85rem;
            animation: none;
        }
    }
    header {
        & .wrap {
            gap: 0.5rem;
        }
        & .bouton {
            font-size: 0.85rem;
            animation: none;
        }
        & .header__logo {
            width: 6.5rem;
        }
    }
    .hero {
        & .heroinner {
            left: 3rem;
        }
    }
    .statshome {
        & .wrap {
            padding: 2rem 3rem;
        }
        & .statNum {
            font-size: 2.45rem;
        }
        & .statDet {
            font-size: .9rem;
        }
    }
    .about {
        & .wrap {
            padding: 0 3rem;
        }
        & .halfcols {
            gap: 6rem;
        }
    }
    .section300 {
        & .wrap {
            padding: 2.5rem 3rem;
            &:has(.avantagecard) {
                padding: 2.5rem 1.5rem;
            }
        }
    }
    .avantagecard {
        padding: 0px 1.75rem;
    }
    .section-cta-home .wrap {
        padding: 0px;
        gap: 1.5rem;
    }
    .prop_header {
        padding: 0px 3rem;
    }
    .sectioncta {
        & .wrap {
            padding: 4rem 3rem;
        }
        &.sectionctabg .wrap {
            padding: 6rem 4rem 13rem;
        }
    }
    footer {
        & .wrap {
            padding: 4rem 3rem 2rem;
        }
    }
    .sectioncustom {
        & .wrap {
            padding: 3rem;
        }
        &.sectionreverse .wrap {
            padding: 4rem 3rem;
        }
    }
    .rsinnercircle {
        & .titresm {
            font-size: 1.125rem;
            margin-bottom: .75rem;
        }
        & p {
            font-size: .85rem;
            margin-bottom: 0;
        }
    }
    .rscircle {
        width: calc(100% - 3rem);
    }
    .rsinnercircle {
        width: calc(100% - 9rem);
    }
}

/*1024*/

@media screen and (max-width: 64rem) {
    .menu-button {
        display: grid;
        place-items: center;
        border: 0;
        color: var(--clr-text);
        background-color: var(--clr-100);
        border-radius: 50%;
        width: 2.8125rem;
        padding: 0 0.625rem;
        aspect-ratio: 1;
        cursor: pointer;
        transition: all 0.4s;
        &:hover, &.open {
            background-color: var(--clr-text);
            color: var(--clr-300);
        }
    }
    .header {
        padding: 1rem 0;
        animation: none;
        & .wrap {
            gap: 1rem;
            animation: none;
        }
        & .header__logo {
            width: 6.5rem;
            animation: none;
        }
    }
    .nav--primary {
        position: absolute;
        bottom: 0;
        left: 0;
        background-color: var(--clr-300);
        border-bottom-left-radius: var(--radius);
        border-bottom-right-radius: var(--radius);
        translate: 0 99%;
        width: 100%;
        text-align: right;
        display: none;
        padding: 1.5rem 1rem;
        & a {
            display: block;
            padding: 0.5rem 0;
        }
    }
    .statshome {
        & .stat {
            gap: .5rem;
        }
        & .statNum {
            font-size: 2rem;
        }
        & .wrap {
            padding: 2rem 1.5rem;
        }
        & .statDet {
            font-size: .8rem;
        }
    }
    .about {
        & .halfcols {
            gap: 3rem;
        }
        & .wrap {
            padding: 0 1rem;
        }
        & .img {
            & .logo {
                right: 0.75rem;
                width: 7rem;
                padding: 0.95rem;
            }
        }
    }
    .avantagesinner {
        margin-top: 1rem;
        &:has(> .avantagecard:nth-child(4)) {
            .avantagecard {
                padding: 1.75rem 1.75rem .5rem;
            }
        }
    }
    .avantagecard {
        padding: 1.75rem 1.75rem .5rem;
        &:not(:first-child) {
            border-top: 2px solid var(--clr-600);
            border-left: 0;
        }
    }
    .section300 {
        & .wrap {
            padding: 2.5rem 1.5rem;
            &:has(.avantagecard:nth-child(4)) {
                padding: 2.5rem 1.5rem;
            }
        }
    }
    .titre.titre--mid {
        font-size: 2rem;
    }
    .section-cta-home {
        & .tripcols {
            grid-template-columns: 1fr 1fr;
        }
        & .img {
            width: 100%;
            min-height: 22rem;
            translate: 0 !important;
            grid-column: 2/3;
            grid-row: 1/3;
        }
    }
    .cta-home {
        &:last-child {
            margin-left: auto;
        }
        & p:last-of-type {
            margin-bottom: 2rem;
        }
    }
    .proprietes__slider-container {
        & > .proprietes__slider {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: .75rem;
            width: 120%;
            & > .propriete-item:not(:nth-child(-n + 3)) {
                display: none;
            }
        }
    }
    .sectiontemoignages-wslider {
        & .temtxt {
            width: 100%;
            padding-right: 0;
        }
        & .halfcols {
            grid-template-columns: .4fr .6fr;
        }
    }
    .hero {
        & .heroinner {
            left: 1.5rem;
        }
    }
    .titresm {
        font-size: 1.25rem;
    }
    .titre {
        font-size: 2rem;
    }
    .titre.titre--mid {
        font-size: 1.75rem;
    }
    .checkboxgrid {
        width: 100%;
    }
    .sectioncustom {
        & .wrap {
            padding: 2rem 1.5rem;
        }
    }
    .statshome {
        & .stat {
            padding: 0px 0.25rem;
        }
    }
    .prop_header {
        padding: 0px 1.5rem;
    }
    .rsinnercircle {
        & .titresm {
            font-size: 1.25rem;
            margin-bottom: 1rem;
        }
        & p {
            font-size: 1rem;
            margin-bottom: 0;
        }
    }
    .rscontent {
        &::before {
            display: block;
        }
    }
    .rscircle {
        width: calc(100% - 6.5rem);
    }
}

/*856*/

@media screen and (max-width: 53.5rem) {
    .rscontent {
        &::before {
            display: none;
        }
    }
    .rscontent {
        padding: 0;
    }
    .hero {
        & .heroinner {
            width: 80%;
        }
    }
    footer {
        & .footer-infos {
            gap: 1.5rem;
        }
        & .footer-ag {
            gap: 1.5rem;
            & h3, & p {
                margin-bottom: 1rem;
            }
            & img {
                width: 8.5rem;
            }
        }
    }
    footer {
        & .wrap {
            padding: 4rem 1.5rem 2rem;
        }
    }
    .sectioncustom {
        &.sectionreverse .wrap {
            padding: 4rem 2rem;
        }
    }
    .rsinnercircle {
        width: calc(100% - 4rem);
    }
}

/*750*/

@media screen and (max-width: 46.875rem) {
    .bouton {
        white-space: initial;
    }
    .header {
        padding: 0.5rem 0;
        & .header__logo {
            width: 4.5rem;
        }
        & .bouton {
            animation: none;
            font-size: 0.75rem;
            padding: 0.5rem 1rem;
        }
    }
    .menu-button {
        width: 2.175rem;
        padding: 0px 0.4rem;
    }
    footer .bouton {
        font-size: .625rem;
        max-width: 100%;
        overflow: hidden;
    }
    footer {
        & .footer-infos {
            justify-content: center;
            & .footer-sep {
                display: none;
            }
        }
        & .footer-logo {
        }
        & .footer-ag {
            & img {
                width: 6rem;
            }
            & h3, & p {
                font-size: .75rem;
                margin-bottom: 0.5rem;
            }
            & a {
                font-size: .75rem;
                & svg {
                    width: 1.5rem;
                }
            }
        }
        .footer-boutons {
            justify-content: center;
            gap: 0.75rem;
            flex-direction: column;
            width: 100%;
            align-items: center;
            margin-top: 2rem;
        }
    }
    .sectiontemoignages-wslider {
        & .halfcols {
            grid-template-columns: 1fr;
        }
    }
    .about {
        & .img {
            & .logo {
                position: absolute;
                animation: none;
                bottom: 0;
                left: 50%;
                right: auto;
                translate: -50% 50%;
                width: 8rem;
            }
        }
    }
    .statshome {
        & .wrap {
            grid-template-columns: 1fr;
            padding: 0.5rem 1.5rem;
        }
        & .stat {
            padding: 1.25rem 0.75rem;
            &:not(:first-child) {
                border-left: 0;
                border-top: 1px solid var(--clr-100);
            }
        }
    }
    .titre.titrehero {
        font-size: 1.625rem;
    }
    .hero {
        & p {
            font-size: .9rem;
        }
    }
    .section300 {
        & .wrap {
            &:has(.avantagecard) {
                padding: 2.5rem 1rem;
            }
        }
    }
    .section300 {
        & .wrap {
            &:has(.avantagecard:nth-child(4)) {
                padding: 2.5rem 1rem;
            }
        }
    }
    .section-cta-home {
        & .tripcols {
            display: flex;
            flex-direction: column;
        }
    }
    .cta-home {
        padding: 2rem 1.25rem;
    }
    .avantagesinner {
        &:has(> .avantagecard:nth-child(4)) {
            .avantagecard {
                padding: 1.25rem .75rem .25rem;
            }
        }
    }
    .prop_header {
        padding: 0px 1rem;
    }
    .bouton {
        font-size: .8rem;
    }
    .proprietes__slider-container {
        & > .proprietes__slider {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: .75rem;
            width: 160%;
            & > .propriete-item:not(:nth-child(-n + 2)) {
                display: none;
            }
        }
    }
    .section300 {
        & .wrap {
            padding: 2.5rem 1rem;
        }
    }
    .sectiontemoignages-wslider {
        & .temoignage-element {
            padding: 2rem 1.5rem;
            & p {
                font-size: .9rem;
                font-weight: 500;
                margin-bottom: 1.5rem;
                text-align: center;
                line-height: 1.2;
            }
        }
    }
    .sectioncta {
        & .wrap {
            padding: 4rem 2rem;
        }
    }
    .sectioncta {
        &.sectionctabg .wrap {
            padding: 4rem 2rem 6rem;
        }
    }
    .sectioncustom {
        & .wrap {
            padding: 2rem 1rem;
        }
    }
    header+section:not(.hero) {
        margin-top: 2rem;
    }
    .sectioncustom {
        &.sectionreverse .wrap {
            padding: 2.5rem 1rem;
        }
    }
    .titre {
        font-size: 1.625rem;
    }
    .titresm {
        font-size: 1.125rem;
    }
    .titre.titre--mid {
        font-size: 1.5rem;
    }
    .titre.titre--smaller {
        font-size: 1.325rem;
    }
    .avantagecard {
        padding: 1.75rem .75rem .5rem;
    }
    .bouton {
        & .bouton__icon {
            max-width: 1.5rem;
            max-height: 1.5rem;
        }
    }
    .rsinnercircle {
        width: calc(100% - 2rem);
    }
}

@supports not (animation-timeline: view()) {
    .nav--primary, .nav--primary a, .header, .header__logo, .header .wrap, .header .bouton, .logo, .blurGoingOut {
        animation-timeline: none !important;
        animation-range: normal !important;
    }
    .blurGoingOut {
        animation: none !important;
    }
}
