:root {
    --color-orange: rgb(231, 55, 37);
    --color-grey: rgb(225, 225, 225);
    --color-black: rgb(41, 40, 45);
    --color-white: rgb(254, 254, 254);
    --color-lightgrey: rgb(238, 238, 238);
    --color-darkgrey: rgb(130, 130, 130);
    --color-lightblack: rgb(48, 47, 51);
    --color-textgrey: rgb(185, 185, 185);
    --padding-LR: 4vw;
    --filter-orange: brightness(0) saturate(100%) invert(23%) sepia(49%) saturate(6866%) hue-rotate(355deg) brightness(103%) contrast(81%);
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Ubuntu', sans-serif;
}

body.no-scroll {
    overflow: hidden;
}

.jvflex {
    position: fixed;
    z-index: 9999;
    top: 70px;
    left: 16px;
}

.jvflex>a {
    border-radius: 24px;
    cursor: pointer;
    display: block;
    height: 48px;
    line-height: 48px;
    opacity: .9;
    position: absolute;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 48px;
    background: url("/themes/jvflex/assets/images/theme-preview.png"), #f8f6f5;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    box-shadow: 0px 0px 3px 1px rgb(0 0 0 / 30%);
}

h1 {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 700;
    font-size: 5rem;
    letter-spacing: 1rem;
    text-transform: uppercase;
    color: var(--color-white);
}

h2 {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 600;
    font-size: 3.125rem;
    letter-spacing: 0.625rem;
    text-transform: uppercase;
    color: var(--color-black);
    text-align: center;
    -webkit-text-stroke: 1px;
    margin: 0 0 1.8rem;
}

h3 {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 700;
    font-size: 1.5rem;
    text-align: center;
    letter-spacing: 1px;
}

p,
address,
a,
input,
li {
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 400;
    font-size: 1.1rem;
    letter-spacing: 1px;
    color: var(--color-black);
    text-align: justify;
    line-height: 1.5;
}

input {
    padding: 0.6875rem 0.4rem;
    border: 1px solid #E0E0E0;
    background-color: #F3F4F5;
    box-sizing: border-box;
    border-radius: 0;
}

ul>li {
    list-style-type: none;
}

a {
    text-decoration: none;
}

label {
    font-family: 'Oswald';
    font-style: normal;
    font-size: 1.25rem;
}

label.label-bold {
    font-weight: 600;
    margin-bottom: 0.2rem;
}

section {
    padding: 1.8rem 0;
}

.centered {
    margin: 0 auto;
    display: block;
}

.img-fit {
    object-fit: cover;
    object-position: center;
}

.page-index header#layout-header {
    min-height: 100vh;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
}

header#layout-header {
    min-height: 60vh;
    position: relative;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45));
    display: flex;
    flex-direction: column;
}

header#layout-header.nohead {
    min-height: unset;
}

header#layout-header>#header-top {
    display: flex;
    flex-direction: row;
    background-color: rgba(254, 254, 254, 0.85);
    height: 100px;
    padding: 1.60rem var(--padding-LR);
    box-sizing: border-box;
    column-gap: 4rem;
    align-items: center;
}

header#layout-header.fixed>#header-top {
    position: fixed;
    width: 100%;
    z-index: 100;
    animation: appear 0.5s ease-in-out;
    background-color: rgba(254, 254, 254, 0.95);
    backdrop-filter: blur(2px);
}

header#layout-header.nofixed>#header-top {
    animation: disappear 0.5s ease-in-out;
}

@keyframes appear {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes disappear {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

header#layout-header>#header-top>#header-logo,
header#layout-header>#header-top>#header-logo>img {
    height: 100%;
}

header#layout-header>#header-top>#burger-menu {
    display: none;
    width: 2.25rem;
    height: 1.5rem;
    cursor: pointer;
    position: relative;
    appearance: none;
    border: none;
    background: none;
    box-sizing: border-box;
    padding: 0;
}

header#layout-header>#header-top>#burger-menu span {
    width: 100%;
    height: 4px;
    background-color: var(--color-black);
    display: block;
    position: absolute;
    top: 50%;
    transition: background-color 0.5s ease-in-out;
}

header#layout-header>#header-top>#burger-menu span:nth-child(1) {
    transform: translateY(-10px);
}

header#layout-header>#header-top>#burger-menu span:nth-child(3) {
    transform: translateY(10px);
}

header#layout-header>#header-top>nav {
    display: flex;
    width: 100%;
    z-index: 90;
}

header#layout-header>#header-top>nav>ul {
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

header#layout-header>#header-top>nav>ul>li.nav-item>a.nav-link {
    text-decoration: none;
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    font-size: 1.875rem;
    color: var(--color-black);
}

header#layout-header>#header-top>nav>ul>li.nav-item>a.nav-link:hover,
header#layout-header>#header-top>nav>ul>li.nav-item>a.nav-link.active {
    color: var(--color-orange);
}


header#layout-header>#header-bottom {
    height: calc(100% - 100px);
    display: flex;
    box-sizing: border-box;
    flex-direction: column;
    justify-content: flex-end;
    padding: 4rem var(--padding-LR);
    flex-grow: 1;
}

header#layout-header.fixed>#header-bottom {
    height: 100%;
}

header#layout-header>#header-bottom .img-header {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    margin: -4rem calc(-1*var(--padding-LR));
}

header#layout-header>#header-bottom h1 {
    margin: 0;
}

.btn-header-index {
    margin-top: 2.8125rem;
}

button.button-orange,
input.button-orange,
.btn-orange {
    appearance: none;
    background-color: var(--color-orange);
    transition: opacity 0.25s;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    color: var(--color-white);
    padding: 0;
}

input.button-orange,
.button-orange,
.button-orange>a {
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.1;
}

.button-orange>a {
    display: block;
    padding: 0.875rem 1.5rem;
    color: inherit;
}

.button-orange.button {
    padding: 0.875rem 1.5rem;
}

button.button-orange:hover,
input.button-orange:hover,
.btn-orange:hover {
    opacity: 0.9;
}

header#layout-header>#header-bottom button>a {
    color: inherit;
}

main#layout-content {
    padding: 0 var(--padding-LR);
}

section#services {
    padding: 4.5vw 0;
}

#services>h2 {
    margin-bottom: 3.5rem;
}

#services>ul {
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 50px;
    row-gap: 35px;
    padding: 0 var(--padding-LR);
    margin: 0;
}

#services>ul>li {
    text-align: center;
}

#services>ul>li>img {
    height: 50px;
    width: 100%;
}

#services>ul>li>p {
    text-align: center;
}

#abonnements {
    background-color: var(--color-black);
    margin: 0 calc(-1*var(--padding-LR));
    padding: 1.8rem var(--padding-LR);
}

#abonnements h2 {
    color: var(--color-white);
}

#decouverte {
    margin: 0 calc(-1*var(--padding-LR));
    padding: 0;
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

#decouverte>#decouverte-text {
    padding: 3.125vw var(--padding-LR);
}

#decouverte>#decouverte-text .decouverte-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr) 0.75fr;
    grid-column-gap: 4vw;
    grid-row-gap: 2vw;
    align-items: center;
    justify-items: center;
}

#decouverte>#decouverte-text .decouverte-form>div:nth-child(1) {
    grid-area: 1 / 1 / 2 / 2;
}

#decouverte>#decouverte-text .decouverte-form>div:nth-child(2) {
    grid-area: 1 / 2 / 2 / 3;
}

#decouverte>#decouverte-text .decouverte-form>div:nth-child(3) {
    grid-area: 2 / 1 / 3 / 2;
}

#decouverte>#decouverte-text .decouverte-form>div:nth-child(4) {
    grid-area: 2 / 2 / 3 / 3;
}

#decouverte>#decouverte-text .decouverte-form>div:nth-child(5) {
    grid-area: 3 / 1 / 4 / 3;
}

#decouverte>#decouverte-text .decouverte-block {
    display: flex;
    flex-direction: column;
    width: 100%;
}

#decouverte>#decouverte-text .decouverte-block input {
    width: 100%;
    appearance: none;
}

#decouverte>#decouverte-text .decouverte-block input:focus-visible {
    outline: none;
    border-color: var(--color-orange);
    caret-color: var(--color-orange);
}

#decouverte>#decouverte-img {
    position: relative;
}

#decouverte>#decouverte-img>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
}

#cours-collectifs {
    margin: 0 calc(-1*var(--padding-LR));
    padding: 1.8rem calc(var(--padding-LR));
    background-color: var(--color-black);
}

#cours-collectifs h2 {
    color: var(--color-white);
}

#cours-collectifs ul {
    display: grid;
    padding: 0;
    grid-auto-rows: 2fr;
    grid-template-columns: repeat(auto-fill, 18.875rem);
    justify-content: center;
    gap: 3vw;
}

#cours-collectifs p {
    color: var(--color-textgrey);
    height: 100%;
}

#cours-collectifs li {
    padding: 2.125rem;
    background: var(--color-lightblack);
    border-radius: 10px;
    filter: drop-shadow(4px 4px 50px rgba(0, 0, 0, 0.25));
    display: flex;
    flex-direction: column;
}

#cours-collectifs li>h3 {
    font-weight: 500;
    font-size: 1.5rem;
    text-align: justify;
    color: var(--color-white);
    padding: 0 0 1.5rem;
    margin: 0;
    display: flex;
    align-items: center;
}

#cours-collectifs li img {
    width: 2rem;
    height: 2rem;
    border: none;
    margin-right: 0.5rem;
}

#cours-collectifs li>p {
    margin: 1rem 0;
    text-align: justify;
    font-style: normal;
    font-weight: 300;
    font-size: 1.125rem;
}

#cours-collectifs li>button {
    appearance: none;
    border: none;
    color: var(--color-white);
    background-color: unset;
    padding: 0;
    margin-top: 1rem;
    transition: background-color 0.25s;
}

#cours-collectifs li>button>a {
    padding: 1.375rem 2.5rem;
    display: block;
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 400;
    font-size: 1.25rem;
    color: var(--color-white);
    line-height: 0;
    border: 1px solid var(--color-white);
    border-radius: 3px;
}

#cours-collectifs li>button:hover>a {
    background-color: var(--color-orange);
}

#actualites {
    background-color: #F9F9F9;
    margin: 0 calc(-1*var(--padding-LR));
    padding: 1.8rem calc(var(--padding-LR));
}

#actualites>#actualites-img {
    display: flex;
    align-items: start;
    gap: 3vw;
}

#actualites>#actualites-img>div {
    width: 100%;
}

#actualites>#actualites-img img {
    margin: 0 auto;
    display: block;
    border-radius: 200px;
    max-width: 100%;
    width: 200px;
    height: 200px;
    object-fit: cover;
}

#actualites>#actualites-img p {
    text-align: center;
}

#actualites>#actualites-img p a {
    color: var(--color-orange);
}

footer#layout-footer {
    background-color: var(--color-black);
    padding: 45px var(--padding-LR) 30px;
}

footer#layout-footer #contact {
    width: 100%;
}

footer#layout-footer address,
footer#layout-footer p,
footer#layout-footer a {
    color: var(--color-white);
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 400;
}

footer#layout-footer>.footer-top {
    column-gap: 4rem;
    row-gap: 1rem;
}

footer#layout-footer>.footer-top * {
    font-size: 1.25rem;
}

footer#layout-footer>.footer-top,
footer#layout-footer>.footer-top #footer-infos,
footer#layout-footer>.footer-top #footer-infos .socials {
    display: flex;
}

footer#layout-footer>.footer-top #footer-infos {
    column-gap: 4rem;
    row-gap: 1.5rem;
}

footer#layout-footer>.footer-top #footer-infos .socials {
    margin-top: 10px;
    gap: 2rem;
    align-items: center;
}

footer#layout-footer>.footer-top #footer-infos .socials a {
    display: flex;
}

footer#layout-footer>.footer-top #footer-infos .socials a:hover img {
    filter: var(--filter-orange);
}

footer#layout-footer>.footer-top #footer-infos {
    margin: 20px 0;
}

footer#layout-footer>.footer-top #footer-identity {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

footer#layout-footer>.footer-top #footer-identity .footer-buttons {
    display: flex;
    width: 100%;
}

footer#layout-footer>.footer-top #footer-identity .footer-buttons>div {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer#layout-footer>.footer-top #footer-identity .footer-buttons .button-orange.grey {
    background-color: var(--color-darkgrey);
}

footer#layout-footer>.footer-top #footer-identity>div:first-child {
    width: 100%;
}

footer#layout-footer>.footer-top #footer-identity>div:first-child p:first-child {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 600;
    font-size: 2.5rem;
    text-transform: uppercase;
    color: var(--color-white);
    margin: 0;
}

footer#layout-footer>.footer-top #footer-identity>div:first-child p:last-child {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 500;
    font-size: 1.5625rem;
    color: var(--color-orange);
    margin: 0;
}

footer#layout-footer>.footer-top #footer-infos .colonne {
    width: 100%;
}

footer#layout-footer>.footer-top #footer-infos .colonne p {
    margin: 0;
}

footer#layout-footer>.footer-top #footer-infos .colonne p+p {
    margin-top: 5px;
}

footer#layout-footer>.footer-top iframe {
    min-width: 350px;
    width: 100%;
    height: 100%;
}

footer#layout-footer>.footer-bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

footer#layout-footer>.footer-bottom * {
    font-size: 0.875rem;
    margin: 0;
}


/* Page cours collectifs */
#cours-advantages {
    display: flex;
    align-items: center;
    gap: 12vw;
}

#cours-advantages>#advantages-text {
    width: 75%;
}

#cours-advantages>#advantages-img {
    width: 25%;
}

#cours-advantages>#advantages-text .advantages {
    margin-top: 0;
    font-family: 'Oswald', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 2rem;
}

#cours-advantages>#advantages-text .advantages-list>ul {
    padding: 0;
    margin: 0;
}

#cours-advantages>#advantages-img img {
    width: 100%;
    object-fit: cover;
    object-position: center;
}

#cours-caroussel {
    position: relative;
    margin: 0 calc(-1*var(--padding-LR));
    padding: 5vw 8vw;
    background-color: var(--color-lightgrey);
}

#cours-caroussel button.arrow {
    cursor: pointer;
    position: absolute;
    top: 50%;
    bottom: 0;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50px;
    border: none;
    appearance: none;
    background: var(--color-white);
    box-shadow: 5px 5px 10px rgb(41 46 51 / 20%);
    z-index: 4;
    display: flex;
    justify-content: center;
    align-items: center;
}

#cours-caroussel button.arrow svg {
    width: 12px;
    height: 12px;
}

#cours-caroussel #caroussel-left {
    left: 0;
    margin-left: var(--padding-LR);
}

#cours-caroussel #caroussel-left svg {
    transform: rotate(180deg);
}

#cours-caroussel #caroussel-right {
    right: 0;
    margin-right: var(--padding-LR);
}

#cours-caroussel ul {
    display: grid;
    gap: 5vw;
    margin: 0;
    padding: 0;
    list-style: none;
    overflow-x: scroll;
    overflow-y: hidden;
    scrollbar-width: none;
}

#cours-caroussel ul::-webkit-scrollbar {
    display: none;
}

#cours-caroussel ul>li {
    position: relative;
    height: 35vh;
    display: flex;
    width: 45vh;
    cursor: pointer;
    grid-row-start: 1;
}

#cours-caroussel ul>li:hover {
    opacity: 0.75;
}

#cours-caroussel ul>li input {
    width: 100%;
    height: 100%;
    z-index: 3;
    position: absolute;
    display: flex;
    padding: 0;
    margin: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    cursor: pointer;
}

#cours-caroussel ul>li p {
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    height: 100%;
    position: absolute;
    width: 100%;
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 700;
    font-size: 2rem;
    color: var(--color-white);
    text-transform: uppercase;
}

#cours-caroussel ul>li img {
    object-fit: cover;
    object-position: center center;
    width: 100%;
    z-index: 1;
    height: 100%;
}

#cours-infos {
    display: flex;
    justify-content: space-between;
    column-gap: 15rem;
    row-gap: 3rem;
    padding: 3.8rem 0;
}

#cours-infos>div {
    width: 100%;
}

#cours-infos>#data p.title {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: 3px;
    text-align: center;
    margin-top: 0;
}

#cours-infos>#data p.catchphrase {
    font-style: normal;
    font-weight: 300;
    font-size: 1rem;
    color: var(--color-darkgrey);
}

#cours-infos>#data .stats>div {
    display: flex;
    height: 3.5rem;
    gap: 5vw;
    align-items: center;
    border-bottom: 1px dashed var(--color-darkgrey);
}

#cours-infos>#data .stats p {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 300;
    font-size: 1.2rem;
    letter-spacing: 3px;
    color: var(--color-darkgrey);
    margin: 0;
}

#cours-infos>#data .stats p.level {
    display: flex;
    gap: 0.625rem;
}

#cours-infos>#data .stats p.level>span {
    display: block;
    width: 1.2rem;
    height: 1.2rem;
    background-color: var(--color-darkgrey);
    border-radius: 50px;
}

#cours-infos>#data .stats p.level>span.active {
    background-color: var(--color-orange);
}

#cours-infos>#description {
    display: flex;
    align-items: center;
}

/* Page Activités */

.page-activites section {
    margin: 0 calc(-1*var(--padding-LR));
    display: flex;
}

#activite-suivi,
#activite-cross {
    padding: 3vw var(--padding-LR);
    background-color: var(--color-white);
}

#activite-cardio,
#activite-muscu {
    padding: 3vw 2vw 3vw var(--padding-LR);
    background-color: var(--color-grey);
}

#activite-suivi,
#suivi-text {
    display: flex;
    gap: 4vw;
}

#activite-suivi #suivi-img {
    width: 30%;
    position: relative;
}

#activite-suivi #suivi-img img {
    width: 100%;
    height: 100%;
    position: absolute;
}

#activite-suivi>#suivi-description {
    width: 70%;
}

#activite-suivi>#suivi-description h2,
#activite-cardio>#cardio-text h2,
#activite-muscu>#muscu-description h2 {
    text-align: left;
}

#activite-suivi>#suivi-description #suivi-text>div {
    width: 100%;
}

#activite-suivi #suivi-text-img {
    display: flex;
    flex-direction: column;
}


#activite-suivi #suivi-text-img .img-container {
    height: 100%;
}

.img-container img {
    width: 100%;
    height: 100%;
}

#activite-suivi #suivi-text-img .suivi-hour {
    display: flex;
    align-items: center;
}

#activite-suivi #suivi-text-img .suivi-hour img {
    height: 80%;
    margin-right: 0.8rem;
}

#activite-suivi #suivi-text-img .suivi-hour span {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 400;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

#activite-cardio {
    gap: 3rem;
}

#activite-cardio #cardio-text {
    width: 40%;
}

#activite-cardio #cardio-text p {
    margin-right: 3rem;
}

#activite-cardio #cardio-text ul>li {
    list-style: disc;
}

#activite-cardio #cardio-img {
    width: 60%;
    display: flex;
    position: relative;
}

#activite-cardio #cardio-img img {
    width: 60%;
    height: 60%;
    position: absolute;
}

#activite-cardio #cardio-img img.cardio-img1 {
    bottom: 0;
    left: 0;
    z-index: 2;
}

#activite-cardio #cardio-img img.cardio-img2 {
    top: 0;
    right: 0;
}

#activite-cross {
    gap: 3rem;
}

#activite-cross>#cross-img,
#activite-cross>#cross-img>#cross-img-left {
    width: 66%;
    display: flex;
}

#activite-cross>#cross-text,
#activite-cross>#cross-img>#cross-img-right {
    width: 33%;
}

#activite-cross>#cross-img {
    gap: 4rem;
}

#activite-cross>#cross-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#activite-cross>#cross-text h2 {
    text-align: right;
}

#activite-cross>#cross-img>#cross-img-left {
    position: relative;
}

#activite-cross>#cross-img>#cross-img-left img {
    width: 60%;
    height: 60%;
    position: absolute;
}

#activite-cross>#cross-img>#cross-img-left .cross-img1 {
    top: 0;
    left: 0;
    z-index: 2;
}

#activite-cross>#cross-img>#cross-img-left .cross-img2 {
    bottom: 0;
    right: 0;
}

#activite-muscu {
    gap: 3.5rem;
}

#activite-muscu>#muscu-description {
    width: 70%;
}

#activite-muscu>#muscu-img {
    position: relative;
    width: 30%;
}

#activite-muscu>#muscu-img img {
    position: absolute;
}

#activite-muscu>#muscu-description>#muscu-text {
    display: flex;
    column-gap: 6rem;
    row-gap: 1rem;
}

#activite-muscu>#muscu-description>#muscu-text p,
#activite-muscu>#muscu-description>#muscu-text .img-container {
    width: 100%;
}

/* Page Wellness */
.page-wellness section {
    margin: 0 calc(-1*var(--padding-LR));
}

.page-wellness h2 {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: 3px;
    text-transform: none;
}

#wellness-sauna,
#wellness-hammam,
#wellness-detente {
    display: flex;
    padding: 0;
}

#wellness-sauna,
#wellness-detente {
    background-color: var(--color-white);
}

#wellness-hammam {
    background-color: var(--color-grey);
}

.wellness-img,
.wellness-text {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.wellness-img {
    width: 110%;
    position: relative;
}

.wellness-text {
    padding: 4vw;
    width: 100%;
}

.wellness-img>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
}

#wellness-sauna .btn>.button-orange,
#wellness-hammam .btn>.button-orange {
    text-transform: uppercase;
    display: flex;
    color: var(--color-white);
}

.page-cgv h1,
.page-mentions h1 {
    color: var(--color-black);
    text-align: center;
}

@media screen and (max-width:1180px) {

    header#layout-header>#header-top {
        justify-content: space-between;
    }

    header#layout-header>#header-top>#burger-menu {
        display: block;
    }

    header#layout-header>#header-top>nav {
        display: none;
    }

    header#layout-header>#header-top>nav>ul>li.nav-item>a.nav-link {
        width: 100%;
        display: block;
        text-align: center;
    }

    header#layout-header>#header-top>#burger-menu.active~nav {
        position: absolute;
        display: flex;
        top: 100px;
        flex-direction: column;
        width: 100%;
        background: var(--color-white);
        margin: 0 calc(-1*var(--padding-LR));
        padding: var(--padding-LR);
        box-sizing: border-box;
        height: calc(100vh - 100px);
    }

    header#layout-header>#header-top>#burger-menu.active~nav>ul {
        height: 100%;
        flex-direction: column;
    }
}

@media screen and (max-width:992px) {
    #cours-infos {
        column-gap: 5rem;
    }

    footer#layout-footer>.footer-top {
        flex-direction: column;
    }

    .page-wellness header#layout-header>#header-bottom .img-header {
        object-position: left;
    }
}

@media screen and (max-width:768px) {
    .showmore {
        margin-top: 0.5rem;
    }

    h1 {
        font-size: 3.5rem;
        letter-spacing: 0.35rem;
    }

    h2 {
        font-size: 2.125rem;
        letter-spacing: 0.425rem;
    }

    header#layout-header>#header-top {
        column-gap: unset;
        position: fixed;
        z-index: 100;
        background-color: rgba(254, 254, 254, 0.95);
        backdrop-filter: blur(2px);
        width: 100%;
    }

    header#layout-header>#header-top>#header-logo,
    header#layout-header>#header-top>#header-logo>img {
        max-width: 90%;
    }

    header#layout-header>#header-top>nav>ul,
    #actualites>#actualites-img,
    footer#layout-footer>.footer-top #footer-identity,
    footer#layout-footer>.footer-top #footer-identity .footer-buttons,
    footer#layout-footer>.footer-top #footer-infos,
    footer#layout-footer>.footer-bottom,
    #activite-suivi,
    #activite-suivi #suivi-text,
    #activite-cardio,
    #activite-cross,
    #activite-muscu,
    #activite-muscu #muscu-text,
    #cours-advantages,
    #cours-infos,
    #cours-caroussel ul,
    #wellness-hammam {
        flex-direction: column;
    }

    #wellness-sauna,
    #wellness-detente {
        flex-direction: column-reverse;
    }

    footer#layout-footer address,
    footer#layout-footer p,
    footer#layout-footer a {
        text-align: center;
    }

    footer#layout-footer>.footer-top #footer-identity,
    footer#layout-footer>.footer-top #footer-identity .footer-buttons {
        row-gap: 1rem;
    }

    footer#layout-footer>.footer-top #footer-infos .socials {
        justify-content: center;
    }

    footer#layout-footer>.footer-top iframe {
        min-width: unset;
    }

    #services>ul {
        grid-template-rows: unset;
        grid-template-columns: 1fr;
    }

    #boutique,
    #cours-list {
        max-height: 75vh;
        overflow: hidden;
    }

    #boutique.boutique_visible,
    #cours-list.liste_visible {
        max-height: unset;
        overflow: visible;
    }

    #activite-cardio #cardio-text p {
        margin: 0;
    }

    #decouverte {
        grid-template-columns: unset;
    }

    #cours-advantages>#advantages-text .advantages {
        text-align: center;
    }

    #cours-caroussel {
        padding: 8vw;
    }

    #decouverte>#decouverte-img,
    #decouverte>#decouverte-img>img,
    .wellness-img,
    .wellness-img>img,
    #activite-suivi #suivi-img,
    #activite-suivi #suivi-img img,
    #activite-muscu>#muscu-img,
    #activite-muscu>#muscu-img img {
        position: unset;
    }

    .page-wellness h2 {
        margin: 0;
    }

    .wellness-img {
        width: 100%;
    }

    #activite-suivi #suivi-img,
    #activite-suivi>#suivi-description,
    #activite-cardio #cardio-text,
    #activite-cardio #cardio-img,
    #activite-cross #cross-text,
    #activite-cross #cross-img,
    #activite-muscu #muscu-description,
    #activite-muscu #muscu-img,
    #cours-advantages>#advantages-text,
    #cours-advantages>#advantages-img {
        width: 100%;
    }

    #activite-cardio,
    #activite-muscu {
        padding: 3vw var(--padding-LR);
    }

    #activite-cardio #cardio-img {
        height: 45vh;
    }

    #decouverte>#decouverte-text .decouverte-form {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr) repeat(2, 0.75fr);
        grid-column-gap: 0px;
    }

    #decouverte>#decouverte-text .decouverte-form>div:nth-child(1) {
        grid-area: 1 / 1 / 2 / 2;
    }

    #decouverte>#decouverte-text .decouverte-form>div:nth-child(2) {
        grid-area: 2 / 1 / 3 / 2;
    }

    #decouverte>#decouverte-text .decouverte-form>div:nth-child(3) {
        grid-area: 3 / 1 / 4 / 2;
    }

    #decouverte>#decouverte-text .decouverte-form>div:nth-child(4) {
        grid-area: 4 / 1 / 5 / 2;
    }

    #decouverte>#decouverte-text .decouverte-form>div:nth-child(5) {
        grid-area: 5 / 1 / 6 / 2;
    }

    #decouverte>#decouverte-text .decouverte-form>div:nth-child(6) {
        grid-area: 6 / 1 / 7 / 2;
    }

    #activite-cross>#cross-img>#cross-img-left {
        width: 100%;
        height: 35vh;
    }

    #activite-cross>#cross-img>#cross-img-left .cross-img1 {
        display: none;
    }

    #activite-cross>#cross-img>#cross-img-left .cross-img2 {
        width: 100%;
        height: 100%;
        position: absolute;
        bottom: unset;
        right: unset;
    }

    #activite-cross>#cross-img>#cross-img-right {
        display: none;
    }

    #activite-cross>#cross-img>#cross-img-right .cross-img3 {
        width: 100%;
        height: 25vh;
        object-position: top;
    }

    header#layout-header>#header-top>nav>ul>li.nav-item>a.nav-link {
        font-size: 1.575rem;
    }

    header#layout-header>#header-top {
        height: 80px;
        padding: 1.1rem var(--padding-LR);
    }

    header#layout-header>#header-top>#burger-menu.active~nav {
        height: calc(100vh - 80px);
        top: 80px;
        padding: 6vh var(--padding-LR);
    }

    header#layout-header>#header-bottom {
        height: 100%;
    }
}

@media screen and (max-width:350px) {
    h1 {
        font-size: 2.725rem;
    }

    .button-orange>a,
    .button-orange.button {
        padding: 0.875rem 1.25rem;
    }
}