.hero-section {
    margin-top: -109px;
}

.hero-slide {
    position: relative;
    min-height: 750px;
}

.hero-slide:before {
    content: "";
    background: #00000080;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
}

.hero-img {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.hero-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top center;
}

.hero-content {
    height: 100%;
    z-index: 2;
    position: relative;
}

.hero-content .container {
    height: 100%;
}

.hero-content-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    max-width: 860px;
    min-height: 750px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 109px;
}

.hero-content h1,
.hero-content p {
    color: var(--white);
    text-align: center;
}

.hero-content p {
    max-width: 535px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 20px;
    margin-top: 20px;
}

@media (max-width: 1024px) {
    .hero-section {
        margin-top: -70px;
    }
}

@media (max-width: 991px) {
    .hero-content-inner {
        padding-top: 70px;
        min-height: 600px;
    }
    .hero-slide {
        min-height: 600px;
    }
    .btn-group {
        margin-top: 15px;
    }
}