
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,500;1,300;1,500&display=swap');
@import url('common.css');





/* Navigation */
.nav-left {
    position: sticky;
    top: 0;
    height: 100vh;
    background: var(--primaryColor);
    box-shadow: 0 0 40px rgba(0, 0, 0, .45);
    z-index: 3
}

.nav-left ul,
.nav-left ul li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-left ul li a {
    display: block;
    padding: .5rem 1.5rem;
    color: rgba(255, 255, 255, .7);
    text-decoration: none;
}

.nav-left ul li a:hover {
    background: rgba(255, 255, 255, .3);
    color: rgba(255, 255, 255, 1);
}

.nav-left ul li.current a {
    background: rgba(255, 255, 255, 1);
    color: deeppink;
}

.nav-left__header {
    padding: 1.5rem;
    background: #f1f1f1f1;
}

.nav-left__header-type {
    font-size: .85rem;
    color: grey;
}

.nav-left__header-titre {
    font-size: 1.2rem
}
.container {width: 85%}
@media screen and (max-width: 991px) {
    .btn-nav-left {
        position: fixed;
        top: 1rem;
        right: 1rem;
        padding: .3rem .5rem;
        background: var(--primaryColor);
        color: white;
        z-index: 5
    }

    .nav-left__responsive {
        position: fixed;
        width: 250px;
        transform: translatex(-100%);
        transition: .3s ease-in-out;
        z-index: 5
    }

    .nav-left__responsive.toggled {
        transform: translatex(0) !important;
    }
}

/* Formation accueil */
.formation-accueil {
    position: relative;
    display: flex;
    align-items: center;
    height: 100vh;
    z-index: 0;
}

.formation-accueil::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    z-index: -1;
}

.formation-accueil h1 {
    font-size: 2rem;
    font-weight: bolder;
    color: white;
}

@media screen AND (min-width: 991px) {
    .formation-accueil h1 {
        font-size: 4rem;
    }
}

.formation-accueil__objectif {
    color: white
}

/* Sections formation */
.formation-container section {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 10vh 0;
    overflow-x: hidden;
    position: relative;
    z-index: 2
}

.formation-container section:nth-child(odd) {
    background: #f1f1f1f1;
}
.section-back {
    position: absolute;
    right: 0;
    font-size: 30rem;
    color: var(--primaryColor);
    opacity: .03;
    z-index: -1;
}

.formation-container h2 {
    margin: 0;
    padding: 0;
    font-size: 3rem;
    font-weight: 300;
    color: #8B008B;
}

.formation-container h2 span {
    opacity: .5
}

.formation-container__separator {
    width: 10vw;
    height: 5px;
    margin-bottom: 5rem;
    background: #8B008B;
    opacity: 1
}

.formation-container__programme h2,
.formation-container__programme h3 {
    font-weight: 300;
}

.formation-container__programme h2 {
    margin-bottom: .5rem;
    font-size: 1.5rem;
}

.formation-container__programme h3 {
    margin-left: 1rem;
    margin-bottom: .5rem;
    font-size: 1.25rem;
}

@media screen and (min-width: 992px) {
    .section-back {
        position: absolute;
        right: -20rem;
        font-size: 50rem;
        color: var(--primaryColor);
        opacity: .03;
    }
}
