.video_content_block {
    background: #ffffff;
    padding: 40px 0 70px;
}

.video_hero_tabs_inner {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 40px;
}

.video_hero_stage {
    position: relative;
    width: 100%;
    min-height: 610px;
    overflow: hidden;
    background: #222222;
}

.video_hero_panel {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .45s ease, visibility .45s ease;
}

.video_hero_panel.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.video_hero_bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video_hero_overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .42);
    z-index: 1;
}

.video_hero_content {
    position: relative;
    z-index: 2;
    min-height: 610px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
    padding: 40px;
}

.video_hero_title {
    font-family: 'Moderat';
    font-size: 31px;
    line-height: 40px;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 50px;
}
.video_hero_desc {
    max-width: 540px;
    margin: 0 auto;
}
.video_hero_desc,
.video_hero_desc p {
    font-family: 'Moderat';
    font-size: 31px;
    line-height: 40px;
    font-weight: 400;
    color: #ffffff;
}
.video_hero_desc p {
    margin: 0;
}

.video_hero_tabs_nav {
    display: flex;
    justify-content: center;
    gap: 70px;
    margin-top: 18px;
}
.video_hero_tab {
    min-width: 80px;
    padding: 0;
    border: 0;
    background: transparent;
    text-align: center;
    cursor: pointer;
}
.video_hero_tab .top_tiny_line {
    display: block;
    width: 50px;
    height: 1px;
    background: #9d9d9c;
    margin: 0 auto 5px;
    opacity: 1;
    transition: opacity .25s ease;
}
.video_hero_tab.active .top_tiny_line {
    background: var(--green);
    opacity: 1;
}
.video_hero_tab_text {
    font-family: 'Moderat';
    font-size: 14px;
    line-height: 37px;
    color: var(--text-color);
    font-weight: 400;
    opacity: 0.5;
}
.video_hero_tab.active .video_hero_tab_text {
    opacity: 1;
}

@media (max-width: 991px) {
    .video_hero_stage,
    .video_hero_content {
        min-height: 520px;
    }

    .video_hero_tabs_nav {
        gap: 40px;
    }
}

@media (max-width: 767px) {
    .video_content_block {
        padding: 30px 0 55px;
    }

    .video_hero_tabs_inner {
        padding: 0 24px;
    }

    .video_hero_stage,
    .video_hero_content {
        min-height: 430px;
    }

    .video_hero_content {
        padding: 30px 22px;
    }

    .video_hero_title {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 35px;
    }

    .video_hero_desc,
    .video_hero_desc p {
        font-size: 18px;
        line-height: 26px;
    }

    .video_hero_tabs_nav {
        flex-wrap: wrap;
        gap: 22px 34px;
    }
}
