.hero_section {
    position: relative;
    overflow: hidden;
    padding: 210px 0;
}

.hero_overlay {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero_section_background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero_section_video,
.hero_section_image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero_section_content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 853px;
    margin: 0 auto;
}

.hero_heading h1 {
    font-family: "sans-serif";
    font-weight: 500;
    font-size: 48px;
    line-height: normal;
    color: #FFF;
    margin-bottom: 30px;
    text-transform: uppercase;
    text-shadow: 0.08em 0.08em 0.08em rgba(0, 0, 0, 0.8);
}

@media (max-width: 1199px) {
    .hero_section {
        padding: 150px 0;
    }

    .hero_heading h1 {
        font-size: 40px;
        margin-bottom: 25px;
    }
}

@media (max-width: 991px) {
    .hero_section {
        padding: 130px 0;
    }

    .hero_heading h1 {
        font-size: 36px;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .hero_section {
        padding: 100px 0;
    }

    .hero_heading h1 {
        font-size: 30px;
    }
}