.welcome-container {
    height: 90vh;
    background: linear-gradient(0deg, #090909bb, #070817b8 80%), url("/static/assets/img/bg.jpg");
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    padding-top: 15vh;
    align-items: center;
}

.welcome-container h1 {
    font-weight: normal;
    font-size: 3.0em;
    width: 700px;
    max-width: 90vw;
    padding: 1rem;
    text-align: center;
    padding: 0;
    margin: 0;
}

.welcome-container h2 {
    font-size: 2.0em;
    padding: 1rem;
    text-align: center;
    font-weight: bold;
}

@media (max-width: 700px) {
    .welcome-container h1 {
        font-size: 2.5em;
    }
}

.about-container {
    justify-content: center;
    margin-top: 4rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.about-container p {
    font-size: 14px;
    line-height: 1.5em;
}

.video-container {
    width: 700px;
    max-width: 95vw;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
    background: black;
    border: 1rem solid white;
    box-shadow: 1px 0.5px 10px #0000005b;
}

.video-container video {
    width: 100%;
    height: auto;
}

@media (max-width: 700px) {
    .video-container {
        height: fit-content;
    }
}

.welcome-container h2 {
    font-weight: normal;
}


.objectif-container {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    justify-content: center;
    padding: 1rem;
    background: linear-gradient(0deg, #090909e1, #070c3fee 80%), url("/static/assets/img/bg.jpg");
    background-size: cover;
    background-position: center;
}

.txt-gradient {
    font-size: 2.0em;
   /* background: -webkit-linear-gradient(#267456, #062974);*/
    color: #062974;
}

.objectif-container ul {
    width: 900px;
    max-width: 100%;
    padding: 1rem;
    list-style-type: square;
}

.objectif-container ul li {
    font-size: 1.3em;
    padding: 0.5rem;
    color: rgb(199, 199, 199);
    line-height: 1.5em;
    font-weight: bold;
}

.about-container p {
    text-align: justify;
}

.circle {
    width: 42px;
    height: 42px;
    max-width: 42px;
    max-height: 42px;
    min-width: 42px;
    min-height: 42px;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3em;
}

.action-content a.btn {
    font-size: 1.2em;
    width: 16rem;
    max-width: 100%;
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
    font-weight: 500;
}

.programme {
    width: 100%;
}

.programme .plan {
    width: 400px;
    max-width: 100%;
}

/** Slider */

.pub-slide {
    display: none;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    justify-content: center;
    align-items: center;
}

.pub-slide img {
    vertical-align: middle;
    width: auto;
}

/* Slideshow container */
.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {

    .prev,
    .next,
    .text {
        font-size: 11px
    }
}

/** En slider*/