/* ======================================================================================================
 * Banner appear - section
 * ====================================================================================================== */

.banner-appear {
    display: flex;
    flex-direction: column;
    position: relative;
}

.banner-container-video {
    width: 100vw;
    min-height: 900px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
    position: relative;
}

.banner-container-video video.banner-video {
    width: 600px;
    max-width: 100vw !important;
    height: 600px;
    border-radius: 25px;
    object-fit: cover;
    position: absolute;
}

.banner-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
    text-align: center;
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translate(-50%, 0);
}

.banner-content .section__title {
    margin-top: 30px;
    margin-bottom: 0px !important;
}

.banner-content .section__button {
    margin-top: 45px !important;
    font-size: 12px !important;
    background-color: transparent !important;
}

.banner-content .section__button:hover {
    background-color: var(--primary-color-ponsot) !important;
}

@media (max-width: 764px) {
    .banner-appear {
        overflow: hidden;
    }

    .banner-container-video {
        height: 640px;
        min-height: unset;
    }

    .banner-container-video video.banner-video {
        width: 100vw;
        border-radius: 0;
    }

    .banner-content {
        width: 100%;
        padding: 0px 30px 40px 30px;
        transform: unset;
        margin-top: -66%;
        position: relative;
        bottom: -25px;
        left: unset;
        background: rgb(0, 0, 0);
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 1) 100%
        );
    }



    .banner-content .section__button {
        margin-top: 0px !important;
    }
}

/* ======================================================================================================
 * END Banner appear - section
 * ====================================================================================================== */
