!important

/* Base styles for desktop */
.video-background-cta {
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.video-background-cta__container {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
}

.video-background-cta__holder {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-background-cta__background {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Maintain aspect ratio and cover the whole area */
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.video-background-cta__content {
    position: relative;
    z-index: 1;
    color: #fff;
    text-align: center;
    padding: 20px;
}

/* Responsive styles for mobile */
@media only screen and (max-width: 768px) {
    .video-background-cta {
        height: 100vh;
    }

    .video-background-cta__background {
        width: 100%;
        height: auto; /* Maintain width but adjust height to keep aspect ratio */
        min-height: 100vh; /* Ensure video covers full height */
    }

    .video-background-cta__holder {
        flex-direction: column;
        justify-content: flex-start;
    }

    .video-background-cta__content {
        padding: 10px;
        font-size: 1.2rem; /* Slightly smaller text for mobile */
    }
}
