:root {
    --red: #E32527;
    --blue: #36B0E0;
    --yellow: #EDFF00;
    --background: #201F2F;
    --text-color: aliceblue;
    --dark-background: #171622;

    --glass-blur: blur(5px);
    --glass-shadow: rgba(0, 0, 0, 0.3);
    --glass-color: rgba(255, 255, 255, 0.1);
}

@font-face {
    font-family: 'Race Sport';
    src: url(../font/Race\ Sport.ttf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--text-color);
    background: var(--background);
}

a {
    color: var(--blue);
    text-decoration: none;
}

ul {
    list-style-type: none;
}

.section-title {
    font-size: 32px;
    font-weight: 400;
    text-align: center;
    color: var(--text-color);
    font-family: 'Race Sport';
}

.section-tagline {
    font-size: 10px;
    margin-top: -10px;
    text-align: center;
    padding-bottom: 50px;
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
}

.small-title {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
}

.small-text {
    font-size: 14px;
    font-weight: 400;
}

.legend-text {
    font-size: 14px;
    font-weight: 400;
    color: #A7A7AD;
    font-style: italic;
    text-align: center;
}

@media screen and (min-width: 500px) {
    .section-title {
        font-size: 42px;
    }

    .section-tagline {
        font-size: 12px;
        margin-top: -15px;
    }
}

@media screen and (min-width: 700px) {
    .section-title {
        font-size: 52px;
    }

    .section-tagline {
        font-size: 14px;
        margin-top: -20px;
    }
}

@media screen and (min-width: 800px) {
    .section-title {
        font-size: 62px;
    }

    .section-tagline {
        font-size: 16px;
        margin-top: -25px;
    }
}

@media screen and (min-width: 900px) {
    .section-title {
        font-size: 72px;
    }

    .section-tagline {
        font-size: 16px;
        margin-top: -25px;
    }
}

@media screen and (min-width: 1000px) {
    .section-title {
        font-size: 82px;
    }

    .section-tagline {
        font-size: 16px;
        margin-top: -30px;
    }
}

.blur {
    filter: blur(3px);
}

.shadow {
    filter: drop-shadow(0px 0px 10px var(--blue));
}

.main--academy .shadow {
    filter: drop-shadow(0px 0px 10px var(--yellow));
}

.footer--academy .shadow {
    filter: drop-shadow(0px 0px 10px var(--yellow));
}

* {
    scroll-behavior: smooth;
    scroll-padding-top: 150px;
}

/**************************************************/
/**********             INDEX            **********/
/**************************************************/
.choice--background {
    background-image: url(../img/welcome.jpg);
    width: 100vw;
    height: 100vh;
    background-size: cover;
    transition: background-image .2s ease-in-out;
    background-position: center;
}

.choice--item {
    text-decoration: none;
    font-family: 'Race sport', sans-serif;
    font-size: 6vw;
    width: 50vw;
    height: 100vh;
    text-align: center;
    position: absolute;
    line-height: 100vh;
    -webkit-text-stroke: .1vw;
    -webkit-text-stroke-color: var(--text-color);
    color: transparent;
    transition: color .5s ease-in-out;
}

.choice--loisir {
    left: 0;
}

.choice--academy {
    left: 50vw;
}

.choice--loisir:hover {
    color: var(--text-color);
    text-shadow: 0 0 5px var(--blue),
        0 0 10px var(--blue),
        0 0 20px var(--blue);
}

.choice--academy:hover {
    color: var(--text-color);
    text-shadow: 0 0 5px var(--yellow),
        0 0 10px var(--yellow),
        0 0 20px var(--yellow);
}

.choice--loisir:hover~.choice--background {
    background-image: url(../img/welcome-loisir.jpg);
}

.choice--academy:hover~.choice--background {
    background-image: url(../img/welcome-academy.jpg);
}

@media screen and (orientation: portrait) {
    .choice--background {
        background-image: url(../img/welcome-mobile.jpg);
    }

    .choice--loisir:hover~.choice--background {
        background-image: url(../img/welcome-mobile-loisir.jpg);
    }

    .choice--academy:hover~.choice--background {
        background-image: url(../img/welcome-mobile-academy.jpg);
    }

    .choice--item {
        font-size: 6vw;
        width: 100vw;
        height: 50vh;
        left: 0;
        font-size: 6vw;
        color: var(--text-color);
        line-height: 50vh;
    }

    .choice--loisir {
        top: 0;
    }

    .choice--academy {
        top: 50vh;
    }
}

/**************************************************/
/**********            HEADER            **********/
/**************************************************/
@media screen {
    header {
        top: 0;
        left: 0;
        width: 100%;
        z-index: 10;
        display: flex;
        position: fixed;
        padding: 10px 25px;
        align-items: center;
        flex-flow: row nowrap;
        justify-content: space-between;


        background-color: var(--glass-color);
        box-shadow: 0px 10px 10px var(--glass-shadow);
        backdrop-filter: var(--glass-blur);

        font-size: 20px;
    }

    @media screen and (min-width: 600px) {
        header {
            padding: 20px 50px;
        }
    }

    @media screen and (max-width: 330px) {
        header {
            padding: 5px 10px;
        }
    }
}

@media screen {
    .header--logo {
        height: 60px;
    }

    @media screen and (min-width: 600px) {
        .header--logo {
            height: 100px;
        }
    }

    @media screen and (max-width: 330px) {
        .header--logo {
            height: 30px;
        }
    }
}

@media screen {
    .header--nav {
        width: 100%;
        height: 100vh;
        background-color: var(--background);
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        display: none;
    }

    .header--nav li {
        height: 12vh;
        line-height: 12vh;
        background-color: rgba(32, 31, 45, .8);
    }

    .header--academy .header--nav li {
        height: 18vh;
        line-height: 18vh;
    }

    .header--nav a {
        color: var(--text-color);
    }

    @media screen and (min-width: 1000px) {
        .header--nav {
            display: flex;
            width: auto;
            height: auto;
            background: none;
            position: relative;
        }

        .header--nav ul {
            gap: 25px;
            display: flex;
            flex-flow: row nowrap;
        }

        .header--nav li {
            height: auto;
            line-height: 20px;
            background: none;
        }

        .header--nav a {
            transition: text-shadow .2s ease-in-out;
        }

        .header--nav a:hover {
            text-shadow: 0 0 1px var(--blue);
        }
    }
}

@media screen {
    .header--burger-icon {
        cursor: pointer;
    }

    .header--burger-icon input {
        display: none;
    }

    .header--burger-icon svg {
        height: 45px;
        transition: transform .6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .line {
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke: var(--text-color);
        transition: stroke-dasharray .6s cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset .6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .line-top-bottom {
        stroke-dasharray: 12 63;
    }

    .header--burger-icon input:checked+svg {
        transform: rotate(-45deg);
    }

    .header--burger-icon input:checked+svg .line-top-bottom {
        stroke-dasharray: 20 300;
        stroke-dashoffset: -32.42;
    }

    @media screen and (min-width: 600px) {
        .header--burger-icon svg {
            height: 65px;
            transition: transform .6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .header--burger-icon .line {
            stroke-width: 3;
        }
    }

    @media screen and (min-width: 1000px) {
        .header--burger-icon {
            display: none;
        }
    }

    @media screen and (max-width: 330px) {
        .header--burger-icon svg {
            height: 30px;
        }
    }
}

/**************************************************/
/**********            BANNER            **********/
/**************************************************/
@media screen {
    .banner {
        overflow: hidden;
    }
}

@media screen {
    @media screen and (orientation: portrait) {
        .banner--image {
            height: 100vh;
            margin-left: -30%;
        }

        @media screen and (max-width: 700px) {
            .banner--image {
                margin-left: -40%;
            }
        }

        @media screen and (max-width: 600px) {
            .banner--image {
                margin-left: -45%;
            }
        }

        @media screen and (max-width: 500px) {
            .banner--image {
                margin-left: -55%;
            }
        }

        @media screen and (max-width: 400px) {
            .banner--image {
                margin-left: -65%;
            }
        }
    }

    @media screen and (orientation: landscape) {
        .banner--image {
            width: 100%;
            margin-left: 0;
        }
    }
}

@media screen {
    @media screen and (orientation: landscape) {
        .banner--title {
            left: 0;
            top: 150px;
            width: 100%;
            position: absolute;
            font-size: 8vw !important;
            text-shadow: 0 0 5px var(--dark-background),
                0 0 8px var(--red),
                0 0 10px var(--red),
                0 0 20px var(--red);
        }
    }

    @media screen and (orientation: portrait) {
        .banner--title {
            left: 0;
            top: 90px;
            width: 100%;
            position: absolute;
            font-size: 14vw !important;
            text-shadow: 0 0 5px var(--dark-background),
                0 0 10px var(--red),
                0 0 20px var(--red);
        }
    }
}

@media screen {
    @media screen and (orientation: landscape) {
        .banner--tagline {
            left: 0;
            top: calc(150px + 6.8vw);
            width: 100%;
            position: absolute;
            font-size: 2.6vw !important;
            font-family: "Race sport", sans-serif !important;
            text-shadow: 0 0 5px var(--dark-background),
                0 0 8px var(--blue),
                0 0 10px var(--blue),
                0 0 20px var(--blue);
        }

        .banner--tagline span {
            color: var(--blue);
        }

        .main--academy .banner--tagline {
            width: auto;
            position: absolute;
            margin-left: 61vw;
            top: calc(150px + 7.5vw);
            transform: rotate(-15deg);
            text-shadow: 0 0 5px var(--dark-background),
                0 0 8px var(--yellow),
                0 0 10px var(--yellow),
                0 0 20px var(--yellow);
        }
    }

    @media screen and (orientation: portrait) {
        .banner--tagline {
            left: 0;
            top: calc(90px + 12vw);
            width: 100%;
            position: absolute;
            font-size: 4.6vw !important;
            font-family: "Race sport", sans-serif !important;
            text-shadow: 0 0 5px var(--dark-background),
                0 0 8px var(--blue),
                0 0 10px var(--blue),
                0 0 20px var(--blue);
        }

        .banner--tagline span {
            color: var(--blue);
        }

        .main--academy .banner--tagline {
            width: auto;
            position: absolute;
            margin-left: 58vw;
            top: calc(90px + 12vw);
            transform: rotate(-15deg);
            text-shadow: 0 0 5px var(--dark-background),
                0 0 8px var(--yellow),
                0 0 10px var(--yellow),
                0 0 20px var(--yellow);
        }
    }
}

@media screen {
    @media screen and (orientation: landscape) {
        .banner--cta {
            left: 0;
            top: 45vw;
            width: 100%;
            position: absolute;
            text-align: center;
        }
    }

    @media screen and (orientation: portrait) {
        .banner--cta {
            left: 0;
            bottom: 40vw;
            width: 100%;
            position: absolute;
            text-align: center;
        }
    }
}

@media screen {
    @media screen and (orientation: landscape) {
        .banner--scroll-icon {
            top: 46vw;
            width: 3.13vw;
            height: 1.5vw;
            position: absolute;
            left: calc(50% - 5.13vw/2);

            box-sizing: content-box;
            border: 1vw solid transparent;
        }
    }

    @media screen and (orientation: portrait) {
        .banner--scroll-icon {
            bottom: 35vw;
            width: 6.13vw;
            height: 2.5vw;
            position: absolute;
            left: calc(50% - 8.13vw/2);

            box-sizing: content-box;
            border: 1vw solid transparent;
        }
    }
}

/**************************************************/
/**********         PRESENTATION         **********/
/**************************************************/
@media screen {
    .presentation {
        display: flex;
        position: relative;
        flex-direction: column;
    }

    @media screen and (min-width: 1000px) {
        .presentation {
            flex-flow: row nowrap;
            justify-content: space-between;
            padding: 0 100px;
        }
    }
}

@media screen {
    .presentation--bike {
        width: 80vw;
        align-self: center;
    }

    @media screen and (min-width: 1000px) {
        .presentation--bike {
            width: 40vw;
        }
    }
}

@media screen {
    .presentation--text {
        width: 80vw;
        padding: 20px;
        align-self: center;
        text-align: justify;

        border-radius: 1vw;

        color: var(--text-color);

        backdrop-filter: var(--glass-blur);
        background: var(--glass-color);
        box-shadow: 10px 10px 20px var(--glass-shadow);
    }

    .presentation--text span {
        display: block;
        font-size: 20px;
        font-weight: bolder;
        text-align: center;
        margin-top: 20px;
        color: var(--red) !important;
    }

    @media screen and (min-width: 1000px) {
        .presentation--text {
            width: 40vw;
        }
    }
}

@media screen {
    .presentation--background {
        top: 0;
        left: 0;
        width: 100%;
        z-index: -1;
        height: 100%;
        position: absolute;
    }

    .presentation--background-circle {
        width: 50vw;
        height: 50vw;
        position: absolute;
        border-radius: 50%;
        filter: blur(10vw);
    }

    .presentation--background-red-circle {
        top: -2vw;
        left: 50vw;
        background-color: var(--red);
    }

    .presentation--background-blue-circle {
        background-color: var(--blue);
        top: 34vw;
        left: 14vw;
    }

    .main--academy .presentation--background-red-circle {
        background-color: var(--yellow);
    }

    .main--academy .presentation--background-blue-circle {
        background-color: var(--red);
    }

    @media screen and (min-width: 1000px) {
        .presentation--background-circle {
            width: 25vw;
            height: 25vw;
            filter: blur(5vw);
        }

        .presentation--background-red-circle {
            top: -2vw;
            left: 28vw;
        }

        .presentation--background-blue-circle {
            top: 14vw;
            left: 14vw;
        }
    }
}

/**************************************************/
/**********            NUMBERS           **********/
/**************************************************/
.numbers {
    display: flex;
    align-items: center;
    flex-flow: row nowrap;
    justify-content: space-around;

    height: 40vw;
    background-size: 200%;
    background-position: 80% center;
    background-image: url("../img/tire track.png");
}

.numbers--first-icon {
    margin-top: -15vw;
}

.numbers--second-icon {
    margin-top: -10vw;
}

@media screen {
    .numbers--third-icon {
        margin-top: -2vw;
    }
}

@media screen {
    .numbers--fourth-icon {
        margin-top: 5vw;
    }
}

@media screen {
    .numbers--icon {
        width: 100px;
    }

    .numbers--icon svg {
        width: 50px;
        margin-left: 25px;
    }

    .numbers--icon p {
        text-align: center;
        font-size: 10px;
    }

    @media screen and (min-width: 600px) {
        .numbers--icon {
            width: 125px;
        }

        .numbers--icon svg {
            width: 75px;
            margin-left: 25px;
        }

        .numbers--icon p {
            font-size: 12px;
        }
    }

    @media screen and (min-width: 900px) {
        .numbers--icon {
            width: 200px;
        }

        .numbers--icon svg {
            width: 150px;
            margin-left: 25px;
        }

        .numbers--icon p {
            font-size: 14px;
        }
    }

    @media screen and (min-width: 1200px) {
        .numbers--icon {
            width: 250px;
        }

        .numbers--icon svg {
            width: 200px;
            margin-left: 25px;
        }

        .numbers--icon p {
            font-size: 16px;
        }
    }
}

/**************************************************/
/**********            PRICES            **********/
/**************************************************/
@media screen {
    .prices {
        padding: 50px 0;
        position: relative;
    }
}

@media screen {
    .prices--cards-row {
        gap: 50px;
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    @media screen and (min-width: 600px) {
        .prices--cards-row {
            flex-flow: row wrap;
            align-items: start;
            justify-content: center;
            max-width: 550px;
            margin: auto;
        }
    }

    @media screen and (min-width: 1200px) {
        .prices--cards-row {
            flex-flow: row nowrap;
            max-width: none;
        }
    }
}

@media screen {
    .prices--card {
        width: 260px;
        height: 520;
        padding: 15px;
        display: flex;
        flex-direction: column;
        text-align: center;
        align-items: center;

        border-radius: 10px;

        backdrop-filter: var(--glass-blur);
        background: var(--glass-color);
        box-shadow: 10px 10px 20px var(--glass-shadow);
    }

    .main--academy .prices--card {
        width: 320px;
        margin-bottom: 25px;
    }

    .main--academy .prices--cards-row .prices--card:nth-child(1) {
        margin-top: 30px;
    }

    .prices--card--bike-location {
        margin-top: -5px;
    }

    .prices--card--events-explanation {
        line-height: 13px;
        margin: 15px 0;
    }

    .prices--card--price {
        display: flex;
        flex-flow: row nowrap;

        font-weight: 700;
        font-size: 50px;

        justify-content: center;

        margin: 25px 0;
    }

    .prices--card--price p:nth-child(1),
    .prices--card--price p:nth-child(3) {
        font-weight: 400;
    }

    .prices--card--price p:nth-child(1) {
        margin-top: 5px;
    }

    .prices--card--price p:nth-child(3) {
        margin-top: 35px;
    }

    .prices--card--driving-licence {
        text-transform: uppercase;
        color: var(--blue) !important;
    }

    .prices--card:nth-child(4) .prices--card--driving-licence {
        margin-top: 3px;
    }

    .main--academy .prices--card--driving-licence {
        color: var(--yellow) !important;
    }

    .prices--card--button {
        width: 120px;
        height: 40px;

        background: var(--background);
        border-radius: 20px;
        border: none;

        font-family: 'Inter', sans-serif;
        font-size: 18px;
        font-weight: 200;
        text-align: center;

        color: var(--text-color);
        transition: 0.5s ease;

        margin-top: 20px;

        position: relative;
    }

    .prices--card--button:hover {
        cursor: pointer;
        text-shadow: 0 0 5px var(--text-color),
            0 0 10px var(--text-color),
            0 0 20px var(--text-color);

        box-shadow: 0 0 5px black,
            0 0 20px var(--blue),
            0 0 50px var(--blue),
            0 0 100px var(--blue);
    }

    .main--academy .prices--card--button:hover {
        box-shadow: 0 0 5px black,
            0 0 20px var(--yellow),
            0 0 50px var(--yellow),
            0 0 100px var(--yellow);
    }

    .prices--card--table {
        color: var(--text-color);
        border-collapse: collapse;

        width: 80%;

        margin-top: 20px;
    }

    .prices--card--table td {
        text-align: left;
        border-bottom: 1px solid var(--text-color);
    }

    .prices--card--table td:last-child {
        text-align: right;
    }

    .prices--card--table tr:last-child td {
        border: none;
    }

    .prices--card--table-caption {
        text-align: left !important;
        line-height: 13px;
        margin-top: 15px;
    }

    .prices--card--include {
        margin: 0 auto;

        list-style: none;
        margin-top: 20px;
        text-align: left;
    }

    .prices--card--include li {
        position: relative;
        margin-left: 25px;
    }

    .prices--card--include li::before {
        content: "";
        position: absolute;
        top: 0;
        left: -25px;
        background-image: url(../img/svg/include.svg);
        background-size: 20px;
        background-repeat: no-repeat;
        width: 20px;
        height: 20px;
    }

    .prices--card:nth-child(2) .prices--card--include {
        margin-top: 39px;
    }

    .main--academy .prices--card--include {
        margin-top: 20px !important;
    }

    .prices--card--stuff {
        margin-top: 20px;
    }

    .prices--card--stuff span {
        line-height: 0;
        font-size: 2rem;
        color: var(--blue);
        font-variant-position: sub;
        text-shadow: 1px 1px 1px var(--glass-shadow);
    }

    .prices--card:nth-child(4) .prices--card--stuff {
        margin-top: 32px;
    }

    .main--academy .prices--card:nth-child(1) .prices--card--stuff {
        margin: 44px 0 30px 0;
    }
}

@media screen {
    .prices--background {
        top: 0;
        left: 0;
        width: 100%;
        z-index: -1;
        height: 100%;
        position: absolute;
        opacity: .5;
    }

    .prices--background-circle {
        width: 50vw;
        height: 50vw;
        position: absolute;
        border-radius: 50%;
        filter: blur(10vw);
    }

    .prices--background-red-circle {
        top: -2vw;
        left: 45vw;
        background-color: var(--red);
    }

    .prices--background-blue-circle {
        background-color: var(--blue);
        top: 34vw;
        left: 14vw;
    }

    .main--academy .prices--background-red-circle {
        background-color: var(--yellow);
    }

    .main--academy .prices--background-blue-circle {
        background-color: var(--red);
    }
}

@media screen {
    .test-phone {
        opacity: 0;
        z-index: 2;
        width: 200px;
        bottom: -44px;
        padding: 15px 0;
        text-shadow: none;
        position: absolute;
        text-align: center;
        transform: scale(0);
        border-radius: 10px;
        left: calc(50% - 100px);
        transition: .2s ease-in-out;
        background-color: var(--background);
        box-shadow: 10px 10px 10px var(--glass-shadow);
    }

    .test-phone::after {
        top: -5px;
        width: 10px;
        content: "";
        height: 10px;
        position: absolute;
        left: calc(50% - 5px);
        transform: rotate(45deg);
        background-color: var(--background);
    }

    .test-phone.open {
        opacity: 1;
        bottom: -92px;
        transform: scale(1);
    }
}

@media screen {
    .prices--stuff-explanation {
        margin-top: 25px;
    }

    .prices--stuff-explanation span {
        line-height: 0;
        font-size: 2rem;
        color: var(--blue);
        font-variant-position: sub;
        text-shadow: 1px 1px 1px var(--glass-shadow);
    }
}

.prices--social-media {
    display: flex;
    flex-flow: row nowrap;
    gap: 25px;
    justify-content: center;
    margin-top: 50px;
}

.prices--social-media svg {
    height: 100px;
}

@media screen {
    .gift-cards--car {
        width: 80%;
        max-width: 765px;
        overflow: hidden;
        margin: 50px auto;
        position: relative;
    }
}

@media screen {
    .car--img-row {
        display: flex;
        flex-flow: row nowrap;
        transition: .5s ease-in-out;
    }
}

@media screen {
    .gift-cards--car img {
        width: 100%;
        border-radius: 20px;
    }
}

@media screen {

    .car--arrow {
        top: 50%;
        height: 30px;
        cursor: pointer;
        z-index: 2;
        display: flex;
        position: absolute;
    }

    #car--left-arrow {
        left: 0;
        rotate: 90deg;
        transform: translateX(-50%);
    }

    #car--right-arrow {
        right: 0;
        rotate: -90deg;
        transform: translateX(50%);
    }
}

@media screen {
    .car--index {
        display: flex;
        flex-flow: row nowrap;
        margin: 10px auto;
        gap: 20px;
        justify-content: center;
    }

    .index {
        width: 20px;
        height: 20px;
        border: 1px solid var(--blue);
        border-radius: 10px;
        cursor: pointer;
    }

    .index.active {
        background-color: var(--blue);
    }
}

/**************************************************/
/**********           SCHEDULES          **********/
/**************************************************/
@media screen {
    .schedule {
        background-color: var(--dark-background);
        padding: 50px 0;
    }
}

@media screen {
    .schedule--row-table {
        gap: 50px;
        width: 200px;
        margin: auto;
        display: flex;
        overflow: hidden;
        flex-flow: row nowrap;
    }

    @media screen and (min-width: 400px) {
        .schedule--row-table {
            width: 300px;
        }
    }

    @media screen and (min-width: 700px) {
        .schedule--row-table {
            width: 500px;
        }
    }

    @media screen and (min-width: 1000px) {
        .schedule--row-table {
            width: 800px;
        }
    }
}

@media screen {
    .schedule--table {
        flex-shrink: 0;
        width: 200px;
        margin: auto;
        font-size: 16px;
        color: var(--text-color);
        border-collapse: collapse;
        transition: .5s cubic-bezier(0.175, 0.285, 0.32, 1.275);
    }

    @media screen and (min-width: 400px) {
        .schedule--table {
            width: 300px;
            font-size: 20px;
        }
    }

    @media screen and (min-width: 700px) {
        .schedule--table {
            width: 500px;
            font-size: 28px;
        }
    }

    @media screen and (min-width: 1000px) {
        .schedule--table {
            width: 800px;
            font-size: 32px;
        }
    }

    .schedule--table td {
        padding: 10px 0;
        border-bottom: 1px solid var(--text-color);
    }

    .schedule--table tr:last-child td {
        border: none;
    }

    .schedule--table tr td:nth-child(2) {
        text-align: right;
    }
}

@media screen {
    .schedule ul {
        display: flex;
        flex-flow: row nowrap;
        gap: 25px;
        justify-content: center;
        margin-top: 50px;
    }

    .schedule ul svg {
        height: 100px;
    }
}

@media screen {
    .schedule--switch {
        width: 90px;
        height: 50px;
        border-radius: 25px;
        background-color: var(--glass-color);
        margin: -15px auto 15px auto;
        display: block;
        position: relative;
    }

    .schedule--switch::before {
        content: "Hiver";
        position: absolute;
        top: 15px;
        left: -50px;
        text-align: right;
        font-weight: normal;
    }

    .schedule--switch::after {
        content: "Été";
        position: absolute;
        top: 15px;
        right: -35px;
        text-align: left;
    }

    .switch--button {
        z-index: 1;
        top: 5px;
        width: 40px;
        height: 40px;
        display: block;
        position: absolute;
        border-radius: 22px;
        background-color: var(--blue);
        box-shadow: 3px 3px 3px var(--glass-shadow);
        transition: .2s ease-in-out;
    }

    .schedule--switch.winter .switch--button {
        left: 5px;
    }

    .schedule--switch.winter:before {
        color: var(--blue);
        font-weight: bold;
        left: -52px;
    }

    .schedule--switch.summer:after {
        color: var(--blue);
        font-weight: bold;
        right: -36px;
    }

    .schedule--switch.summer .switch--button {
        left: 45px;
    }
}

/**************************************************/
/**********           PICTURES           **********/
/**************************************************/
/**********          PICTURES          **********/
@media screen {
    .pictures {
        width: 100%;
        padding-top: 50px;
        margin-bottom: 50px;
        overflow-x: scroll;
        background-color: var(--background);
    }
}

/**********          TITLE          **********/
@media screen {
    .pictures .section-title {
        position: sticky;
        top: 0;
        left: 0;
    }
}

/**********          TAGLINE          **********/
@media screen {
    .pictures .section-tagline {
        position: sticky;

        left: 0;
    }
}

/**********          GALLERY          **********/
@media screen {
    .pictures--gallery {
        gap: 20px;
        display: flex;
        flex-direction: column;
    }
}

/**********          GALLERY ROW          **********/
@media screen {
    .pictures--gallery--row {
        display: flex;
        flex-flow: row nowrap;
        gap: 20px;
    }

    .pictures--gallery--row img {
        height: 200px;
    }
}

/**************************************************/
/**********            CONTACT           **********/
/**************************************************/
/**********          CONTACT          **********/
@media screen {
    .contact {
        position: relative;
    }
}

/**********          MAP          **********/
@media screen {
    .contact--map {
        width: 100%;
        height: 100vh;
        opacity: .7;
    }
}

/**********          CONTACT DETAILS          **********/
@media screen {
    .contact--details {
        width: 300px;
        border-radius: 10px;

        position: absolute;
        top: 200px;
        left: 15px;

        backdrop-filter: var(--glass-blur);
        background: rgba(31, 32, 47, .8);
        box-shadow: 10px 10px 20px var(--glass-shadow);
    }

    .contact--details--title {
        border-bottom: 1px solid var(--text-color);
        width: 80%;
        margin: auto;
        padding: 10px;
    }

    .contact--details--text {
        width: 80%;
        margin: 10px auto;
        text-align: center;
    }

    .contact--details--phone,
    .contact--details--mail {
        width: 80%;
        font-size: 20px;
        margin: 10px auto;
        text-align: center;
    }

    .contact--details ul {
        display: flex;
        flex-flow: row nowrap;
        border-top: 1px solid var(--text-color);
        width: 80%;
        margin: auto;
        padding: 10px;
        justify-content: space-between;
    }

    .contact--details svg {
        height: 50px;
    }
}

/**************************************************/
/**********           PARTNERS           **********/
/**************************************************/
@media screen {
    .partners {
        padding: 50px 0;
        background-color: white;
    }
}

@media screen {
    .partners .section-title {
        color: var(--background);
    }
}

@media screen {
    .partners--list {
        display: flex;
        flex-flow: row wrap;
        justify-content: space-around;
    }

    @media screen and (max-width: 900px) {
        .partners--list {
            gap: 50px;
        }
    }

    .partners--list img {
        height: 150px;
        width: 450px;
        object-fit: contain;
    }

    @media screen and (max-width: 600px) {
        .partners--list img {
            height: 100px;
            width: none;
        }
    }
}

/**************************************************/
/**********            FOOTER            **********/
/**************************************************/
@media screen {
    footer {
        display: flex;
        flex-flow: row nowrap;
        padding: 50px 0;
    }

    .footer--ressources a {
        color: var(--text-color);
    }

    @media screen and (max-width: 1000px) {
        footer {
            flex-direction: column;
            gap: 50px;
        }
    }

    .footer--title {
        color: var(--blue) !important;
        text-transform: uppercase;
        text-align: left !important;
        margin-bottom: 10px;
    }

    .footer--academy .footer--title {
        color: var(--yellow) !important;
    }

    @media screen and (max-width: 1000px) {
        .footer--title {
            text-align: center !important;
        }
    }
}

/**********          LEFT          **********/
@media screen {
    .footer--left-side {
        margin-left: 50px;
    }

    @media screen and (max-width: 1000px) {
        .footer--left-side {
            margin: auto;
            text-align: center;
        }
    }
}

/**********          RIGHT          **********/
@media screen {
    .footer--right-side {
        margin-left: auto;
        margin-right: 50px;
        display: flex;
        flex-flow: row nowrap;
        gap: 50px;
    }

    @media screen and (max-width: 1000px) {
        .footer--right-side {
            flex-direction: column;
            margin: auto;
            text-align: center;
        }
    }
}

/**********          CONTACT          **********/
@media screen {
    .footer--contact ul {
        margin-top: 10px;
        display: flex;
        flex-flow: row nowrap;
        justify-content: space-between;
    }

    .footer--contact svg {
        height: 50px;
    }
}

/**********          PLAN          **********/
@media screen {
    .footer--plan a {
        color: var(--text-color);
    }
}

/**************************************************/
/**********            GALLERY           **********/
/**************************************************/
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 50;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    z-index: 51;
}

.lightbox .close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background-color: #fff;
    border-radius: 50%;
    cursor: pointer;
}

/**************************************************/
/**********             RULES            **********/
/**************************************************/
.rules {
    margin-top: 200px;
}

.rule {
    backdrop-filter: var(--glass-blur);
    background: var(--glass-color);
    box-shadow: 10px 10px 20px var(--glass-shadow);
    margin: 25px;
    padding: 15px;
    border-radius: 10px;
    transition: box-shadow 1s cubic-bezier(0.075, 0.82, 0.165, 1);
    position: relative;
}

.rule p {
    display: none;
}

.rule ul {
    display: none;
}

.rule:hover {
    box-shadow: 10px 10px 20px var(--blue);
}

.rule:hover p {
    display: block;
}

.rule:hover ul {
    display: block;
}

.rule:hover .rule_button:after {
    content: "-";
}

.rule_button {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 50px;
    color: var(--text-color);
    cursor: pointer;
    background-color: red;
    line-height: 50px;
}

.rule_button::after {
    content: "+";
}

.rule h1 {
    margin-bottom: 20px;
}

/*********************/
/*     DISCLAMER     */
/*********************/
.disclamer_form {
    backdrop-filter: var(--glass-blur);
    background: var(--glass-color);
    box-shadow: 10px 10px 20px var(--glass-shadow);
    display: flex;
    flex-direction: column;
    margin: 200px auto;
    width: 400px;
    text-align: center;
    border-radius: 15px;
    padding: 15px 0;
    gap: 15px;
}

.disclamer_form input {
    width: 300px;
    align-self: center;
}

.disclamer_form input {
    background-color: var(--glass-color);
    border: none;
    padding: 10px;
    color: var(--text-color);
    font-size: 20px;
}

.disclamer_form input:focus {
    box-shadow: 0 0 5px black,
        0 0 20px var(--blue),
        0 0 50px var(--blue),
        0 0 100px var(--blue);
}

.disclamer_form button[type="submit"] {
    border: none;
    background-color: var(--dark-background);
    border-radius: 0;
    padding: 10px 30px;
    font-size: 20px;
    color: var(--text-color);
    margin-top: 15px;
    width: 300px;
    margin: auto;
    transition: box-shadow 1s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.disclamer_form button[type="submit"]:hover {
    cursor: pointer;
    box-shadow: 0 0 5px black,
        0 0 20px var(--blue),
        0 0 50px var(--blue),
        0 0 100px var(--blue);
}

.disclamer_form input[type="checkbox"] {
    width: auto;
}

.disclamer_form tr td:nth-child(2) {
    text-align: left;
}

.disclamer_form table {
    margin: auto;
}

.disclamer_rules {
    width: 75%;
    margin: auto;
    backdrop-filter: var(--glass-blur);
    background: var(--glass-color);
    box-shadow: 10px 10px 20px var(--glass-shadow);
    padding: 15px;
    list-style: disc;
    list-style-position: inside;
    border-radius: 15px;
}

.disclamer_rules li {
    margin-bottom: 5px;
}

#signatureCanvas {
    border: 1px solid black;
}