:root {
    --primary-clr: #23b24b;
    --primary-clr-2: #6cbd45;
    --primary-clr-3: #92c73d;
    --primary-clr-4: #b3d234;
    --secondary-clr: #263997;
    --black-clr: #1a1a1a;
}

.vt-video-background-container {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 0 60px;
    color: #263997;
    box-shadow:
        #0e1e251f 0 2px 4px,
        #0e1e2552 0 2px 16px;
    border: 1px solid var(--primary-clr);

    &::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255);
        opacity: 0.9;
        top: 0;
        left: 0;
    }

    .vt-bg-video {
        position: absolute;
        top: 50%;
        left: 50%;
        min-width: 100%;
        min-height: 100%;
        width: 100%;
        height: 100%;
        z-index: -1;
        transform: translate(-50%, -50%);
        object-fit: cover;
    }

    .vt-bg-video-content {
        position: relative;
        width: 90%;
        height: 100%;
        z-index: 1;
        color: var(--primary-clr);
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        font-family: font-semibold;
        padding-bottom: 10px;
    }
}

@media (max-width: 767px) {
    .vt-video-background-container {
        height: 200px;
    }
}
