html {
    overflow-x: hidden;
    font-size: 16px; 
}
body {
    max-width: 100vw;
    overflow-x: hidden;
    font-family: "Ubuntu";
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    background-color: var(--wp--preset--color--color-4);
    color: var(--wp--preset--color--color-2);
} 
@media screen and (min-width: 1400px) {
    body {
        font-size: 1.15rem;
    }
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}
iframe {
    max-width: 100%;
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
}

a {
    text-decoration: none;
}
a:hover {
    color: inherit;
}
.fullwidth {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.classic-h2 {
    font-family: "Arlette";
    font-size: 1.75rem;
    position: relative;
    width: fit-content;
}
@media screen and (min-width: 991px) {
    .classic-h2 {
        font-size: 3rem;
    }
}

.yellow-bg {
    position: relative;
    background-color: var(--wp--preset--color--color-3);
    margin-top: 15vh;
}
.yellow-bg:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 115px;
    top: -114px;
    left: 0;
    background-image: url('../images/ligne-jaune.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
}
.beige-bg {
    position: relative;
    background-color: var(--wp--preset--color--color-6);
    padding-top: 2vh;
    padding-bottom: 5vh;
}
.beige-bg:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 115px;
    top: -114px;
    left: 0;
    background-image: url('../images/ligne-beige.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
}
.beige-bg:after {
    position: absolute;
    content: "";
    width: 200px;
    height: 200px;
    bottom: -100px;
    right: 0;
    background-image: url('../images/grain-poivre.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    mix-blend-mode: multiply;
    opacity: 0.8;
}
.beige-bg > * {
    position: relative;
    z-index: 1;
}
@media screen and (min-width: 991px) {
    .beige-bg {
        padding-top: 10vh;
        padding-bottom: 10vh;
    }
    .beige-bg:after {
        position: absolute;
        content: "";
        width: 540px;
        height: 520px;
        bottom: -200px;
        right: 0;
        background-image: url('../images/grain-poivre.svg');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        mix-blend-mode: multiply;
        opacity: 0.8;
    }
}

.clair-bg {
    position: relative;
    background-color: var(--wp--preset--color--color-4);
    padding-top: 5vh;
    padding-bottom: 5vh;
}
.clair-bg:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 115px;
    top: -114px;
    left: 0;
    background-image: url('../images/ligne-ecru.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
}
.clair-bg > * {
    position: relative;
    z-index: 1;
}
@media screen and (min-width: 991px) {
    .clair-bg {
        padding-top: 10vh;
        padding-bottom: 10vh;
    }
}

.basic-banner {
    background-color: var(--wp--preset--color--color-3);
    padding-top: 15vh;
    padding-bottom: 10vh;
}
.basic-banner h1 {
    font-family: "Arlette";
    font-size: 2rem;
}
@media screen and (min-width: 991px) {
    .basic-banner {
        padding-top: 25vh;
        padding-bottom: 15vh;
    }
    .basic-banner h1 {
        font-size: 3rem;
    }
}


.block-contact {
    position: relative;
    height: auto;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background-attachment: fixed;
    padding-top: 5vh;
    padding-bottom: 5vh;
}
.block-contact .block {
    position: relative;
    background-color: rgba(12,40,75,0.65);
    backdrop-filter: blur(5px);
    padding: 60px 35px 35px 35px;
    border-radius: 40px;
    color: #fff;
    width: 100%;
    margin: 0 auto;
}
.block-contact .block .icon {
    position: absolute;
    width: 85px;
    height: 85px;
    top: -40px;
    left: 0;
    right: 0;
    margin: auto;
}
.block-contact .block h2 {
    text-align: center;
    font-family: "Rock Salt";
    font-size: 1.25rem;
    line-height: 1.6;
    font-weight: 500;
}
.block-contact .block h2 strong {
    font-family: "Arlette";
    display: block;
    font-size: 2rem;
}
@media screen and (min-width: 991px) {
    .block-contact {
        height: 600px;
    }
    .block-contact .block {
        width: 50%;
        margin: 0 auto 0 0;
    }
    .block-contact .block h2 strong {
        font-size: 3rem;
    }
}
