/* PAGE MAIN SECTION VIDEO */
.main section.video .section-banner {
    width: 100%;
    position: relative;
    padding: 0;
    background-color: transparent;
    border: none;
    outline: none;
    stroke: none;
}

.main section.video .section-banner .banner-image-wrapper {
    position: relative;
    border-radius: 4px;
}

.main section.video .section-banner .banner-image-wrapper:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(var(--dark-color), 0.62);
    width: 100%;
    height: 100%;
    border-radius: inherit;
}

.main section.video .section-banner .banner-image {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    border-radius: inherit;
}

.main section.video .section-banner .button-start {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    aspect-ratio: 1/1;
    border-radius: 9999px;
    background-color: rgba(var(--light-color), 0.24);
}

.main section.video .section-banner .button-start img {
    width: 15px;
    height: 17px;
}

.main section.video .section-content .content-title {
    margin-bottom: 12px;
}
/* END PAGE MAIN SECTION VIDEO */

/* RESPONSIVE */
@media (max-width: 767.98px) {
    .main section.video .section-banner .banner-image {
        aspect-ratio: 16/9;
    }

    .main section.video .content .content-title {
        margin-bottom: 8px;
    }
}
/* END RESPONSIVE */