/*
|----------------------------------------------------
| Fichier css pour la page d'accueil
|----------------------------------------------------
*/

* {
    z-index: 2;
}

/*----------------------------------*
 | General of the page (ui)         |
 *----------------------------------*/

.ui-primary-button.white {
    gap: 12px;
}

.ui-primary-button.white div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.ui-primary-button.white img {
    height: 16px;
}

.ui-primary-button.white img:nth-child(1) {
    animation-name: opacityAnim2;
    animation-duration: 4s;
    animation-delay: 0;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
}

.ui-primary-button.white img:nth-child(2) {
    animation-name: opacityAnim2;
    animation-duration: 4s;
    animation-delay: 400ms;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
}

.ui-primary-button.white img:nth-child(3) {
    animation-name: opacityAnim2;
    animation-duration: 4s;
    animation-delay: 800ms;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
}


/*----------------------------------*
 | Video container                  |
 *----------------------------------*/
.ui-video-container {
    padding: 5px;
    width: 95%;
}

.ui-video-container-content {
    border-radius: 0 0 20px 20px;
}

.ui-video-container-close-modal {
    width: 35px;
    margin-top: 14px;
}

/*----------------------------------*
 | Main & Body sections             |
 *----------------------------------*/
body {
    background-color: black;
}


.main-section-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
    position: initial;
    padding: 15px 30px;
}


/*----------------------------------*
 | Main container images            |
 *----------------------------------*/
.main-section-content-middle-middle-slide-image {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    min-height: 100vh;
    filter: contrast(110%) brightness(25%);
}

/*----------------------------------*
 | Main section content middle      |
 *----------------------------------*/
#main-section-content-middle {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
    color: var(--white);
    width: 100%;
}

.main-section-content-middle-middle-slide span {
    color: var(--red);
}

.main-section-content-middle-middle-slide h1 {
    animation: translateXAnim 700ms ease forwards;
}



#main-section-content-middle-player {
    margin-bottom: 135px;
    width: 100%;
    display: flex;
    justify-content: center;
}

#main-section-content-middle-player>img {
    display: none;
}

#main-section-content-middle-top {
    width: 100%;
    margin-bottom: 8px;
}

/*----------------------------------*
 | Main section content bottom      |
 *----------------------------------*/
#main-section-content-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-bottom: 55px;
}

#main-section-content-bottom-form {
    align-self: flex-end;
    margin-bottom: 15px;
    position: absolute;
    top: 30px;
}


/*
 * Swiper
 */
div.swiper {
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1 !important;
    /*! margin-bottom: 41px; */
}

.swiper-wrapper {
    height: 20%;
    width: 100vw;
}

.swiper-slide {
    height: 300px;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-text {
    max-width: 390px;
    margin-top: -40px;
    width: 85%;
    text-align: center;
}

.swiper-backface-hidden .swiper-slide {
    transform: none;
}

.swiper-pagination {
    position: static !important;
    margin-bottom: 30px;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 60px;
    border-radius: 5px;
    background-color: white;
    animation: inActive 500ms ease forwards;
    position: relative;
}

.swiper-pagination-bullet-active::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 2%;
    background-color: var(--red);
    border-radius: 5px;
    animation: progressBar 5s linear forwards;
}


/*----------------------------------*
 | Animation section                |
 *----------------------------------*/


/*----------------------------------*
 | Responsive                       |
 *----------------------------------*/
@media only screen and (max-width: 410px) {

    #item-1,
    #item-6 {
        display: none;
    }
}