.video-controls .pause.replay {
    transform: scale(1.5);
    /* Agrandir le bouton */
    transition: transform 0.3s ease;
    /* Animation fluide */
}

.replay {
    font-size: 130%;
}

.fa-repeat {
    width: 25px !important;
}

* {
    margin: 0;
    padding: 0;
    border: 0;
    font-family: sans-serif;
    text-decoration: none;
    box-sizing: border-box;
}

.header {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 30px;
    justify-content: center;
}

.header .logo {
    width: 70px;
    height: auto;
}

.header .title {
    flex-grow: 2;
    font-size: 37px;
    line-height: 55px;
    text-align: center;
    font-family: museo-sans, sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #021589;
    margin-left: -60px;
}

.video__container {
    width: 100vw;
    height: calc(100vh - 250px);
    min-height: 380px !important;
    box-shadow: 0px 0px 20px 8px rgba(223, 223, 232, 0.8);
    position: relative;
    max-width: 1800px;
    margin: auto;
    overflow: hidden;
}

.video__container video {
    width: 100%;
    height: 100% !important;
    background-color: #ffffff;
}

.btn-play {
    display: none;
    position: absolute;
    top: 82%;
    left: 50%;
    font-size: 45px;
    transform: translate(-50%, -50%);
    color: #f7f9b0;
    border: 3px solid #f7f9b0;
    padding: 35px 50px 35px 65px;
    border-radius: 50%;
    height: 110px;
    width: 110px;
    text-align: center;
    margin: auto;
    background: transparent;
    cursor: pointer;
    /*display: flex;*/
    align-items: center;
    justify-content: center;
}

.video__container .video__text {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    font-family: museo-sans, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #001d9f;
    font-size: 18px;
    line-height: 24px;
    width: 100%;
    max-width: 600px;
    background-color: #ffffff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    margin: auto;
    padding: 40px;
    height: 294px;
}

.video__container .video__text h2 {
    color: #E2001A;
    padding: 20px 0px 0px 0px;
    font-family: museo-sans, sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
}

.video__container .video__text p {
    font-family: museo-sans, sans-serif;
    font-weight: 200;
    font-size: 18px;
    line-height: 24px;
}

.video__container .video__text h2 span {
    text-transform: uppercase;
    font-family: museo-sans, sans-serif;
    font-weight: 600;
}

.video__container video {
    width: 100%;
    height: auto;
}

.video-controls__container {
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1800px;
    margin: auto;
}

.video-controls__container .video-controls span {
    border: 2px solid #f4313f;
    border-radius: 50%;
    padding: 8px;
    margin-left: 15px;
    cursor: pointer;
    outline: none;
}

.video-controls__container .video-controls span i {
    width: 20px;
    height: 20px;
    text-align: center;
    color: #f4313f;
    outline: none;
}

.video-controls__container .video-controls span .fa-play {
    padding-left: 4px;
}

.video__cache {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0%;
    opacity: 0;
    margin: 0px;
    padding: 0px;
    left: 50%;
    transform: translate(-50%, -0%);
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../img/cache.jpg);
    background-size: auto 100%;
}

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

    .video__container .video__text h2,
    .video__container .video__text p {
        font-size: 16px;
        line-height: 22px;
    }
}

@media screen and (max-width: 990px) {
    .header .logo {
        width: 40px;
    }

    .header .title {
        font-size: 23px;
        line-height: 34px;
        margin-left: 0;
    }

    /*
.btn-play {
    position: absolute;
    top: 82%;
    left: 50%;
    font-size: 45px;
    transform: translate(-50%, -50%);
    color: #f7f9b0;
    border: 3px solid #f7f9b0;
    padding: 35px 50px 35px 65px;
    border-radius: 50%;
    height: 110px;
    width: 110px;
    text-align: center;
    margin: auto;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .btn-play {
        position: relative;
        font-size: 20px;
        padding: 13px 25px 13px 25px;
        height: 60px;
        width: 72px;
        left: 40px;
        top: -55vh;
    }
*/
    .video-controls__container .video-controls span {
        margin: 0px 8px;
    }

    .video-controls__container {
        padding: 15px 40px;
    }

    .video__container {
        overflow: auto;
        height: auto;
        min-height: 0 !important;
    }

    .video__container video {
        width: 100%;
        height: auto !important;
    }

    .video__container .video__text {
        position: initial;
        transform: initial;
        padding: 30px 25px;
        overflow: hidden;
        font-size: 14px;
        line-height: 21px;
        height: auto;
    }

    .slide-in {
        animation: slideIn 0.6s ease forwards;
    }

    .video__cache {
        display: none;
    }

}

.video-wrapper {
    position: relative;
}