/* ======================================================================================================
 * Intro page fille - section
 * ====================================================================================================== */

#intro-page-fille {
    width: 100%;
    height: 80vh;
    display: flex;
    align-items: end;
    justify-content: center;
    background-color: #222;
    position: relative;
    overflow: hidden;
}

#intro-page-fille::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgb(0, 0, 0);
    background: linear-gradient(1800deg, rgba(0,0,0,1) 10%, rgba(0,0,0,0.75) 40%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0) 100%);

    pointer-events: none;
    z-index: 2;
}

.intro-page-fille__content {
    width: 100%;
    max-width: 590px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 4;
    margin-bottom: 130px;
}

.intro-page-fille__container-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.intro-page-fille__video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

@media (max-width: 764px) {
    #intro-page-fille {
        height: 100%;
        min-height: 100vh;
    }

    #intro-page-fille::before {
        height: 100%;
        background: linear-gradient(
            0deg,
            rgba(0, 0, 0, 1) 5%,
            rgba(18, 17, 22, 0) 100%
        );
    }
}

/* ======================================================================================================
 * END Intro page fille - section
 * ====================================================================================================== */
