.background-image-with-content-sec {
    position: relative;
}

.background-image-with-content-sec-content {
    position: relative;
    z-index: 2;
}

.background-image-with-content-sec-bg {
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-position: center;
}

.background-image-with-content-sec-bg .video_type {
    position: absolute;
    top: 0;
    left: 0;
    margin-bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all .5s ease;
}

.background-image-with-content-sec::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: var(--black);
    width: 100%;
    height: 100%;
    opacity: 55%;
    pointer-events: none;
}

.background-image-with-content-sec-bg.height_height_big {
    min-height: 576px;
}

.background-image-with-content-sec-bg.height_height_small {
    min-height: 540px;
}

.background-image-with-content-sec-bg.for-desktop {
    background-size: cover;
}

.background-image-with-content-sec-bg.for-mobile {
    background-size: 0;
    width: 100%;
}

.background-image-with-content-sec .background-image-with-content-sec-data-tagline {
    color: var(--white);
    margin-bottom: 4px;
}

.background-image-with-content-sec-data .h2,
.background-image-with-content-sec-data-content * {
    color: var(--white);
}

.background-image-with-content-sec-data {
    text-align: center;
}

.background-image-with-content-sec-data .h2 {
    margin: 0 0 12px;
    font-size: 48px;
}

.background-image-with-content-sec-data.content_small .background-image-with-content-sec-data-content {
    max-width: 575px;
    margin: 0 auto;
}

.background-image-with-content-sec-data.content_small {
    max-width: 857px;
    margin: 0 auto;
}

.background-image-with-content-sec-data.content_big {
    max-width: 1344px;
    margin: 0 auto;
}

.background-image-with-content-sec-data-link {
    margin-top: 24px;
}

@media (max-width:991px) {
    .background-image-with-content-sec-bg.for-desktop {
        background-size: 0;
    }

    .background-image-with-content-sec-bg.for-mobile {
        background-size: cover;
        width: 100%;
        height: 100%;
    }

    .background-image-with-content-sec-data-content p {
        font-size: 18px;
    }
}