html {
    font-size: 16px;
    overflow-x: hidden;
}
body {
    position: relative;
    width: 100vw;
    overflow-x: hidden;
    font-family: 'Roboto';
    color: var(--text-color);
    background-color: #fff;
    font-size: 1rem;
    line-height: 1.5;
}
img {
    display: block;
    max-width: 100%;
    height: auto;
}
iframe {
    max-width: 100%;
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
}

a {
    text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Maven Pro';
    font-weight: 700;
}


.body-video {
    position: absolute;
    border-radius: 50%;
    width: 300px;
    height: 300px;
    top: -200px;
    left: -200px;
    z-index: 9999;
    display: none;
}
.body-video video,
.body-video img {
  object-fit: cover;
  object-position: top;
  border-radius: 50%;
  width: 100%;
  height: 100%;
}
body.home .body-video {
    display: block;
}

@media screen and (min-width: 1200px) {
    .body-video {
         width: 400px;
        height: 400px;
        top: -250px;
        left: -250px;
    }
}


/*** Global banner *****/
.global-banner {
    padding-top: 2vh;
}
.global-banner  h1 {
    font-weight: 900;
    font-size: 1.75rem;
}
@media screen and (min-width: 991px) {
    .global-banner {
        padding-top: 5vh;
        padding-bottom: 5vh;
    }
    .global-banner  h1 {
        font-size: 2.5rem;
    }
}


/**** Ondes *****/
@media screen and (min-width: 991px) {
    body.page:not(.home):before,
    body.single:before {
        position: absolute;
        content: "";
        width: 525px;
        height: 525px;
        top: -260px;
        right: 10vw;
        background-image: url('../images/onde-basse.svg');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        pointer-events: none;
    }

    body.page:not(.home):after,
    body.single:after {
        position: absolute;
        content: "";
        width: 300px;
        height: 300px;
        left: -150px;
        top: 15vh;
        background-image: url('../images/onde-gauche.svg');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }
}