.hero-banner {
    position: relative;
    height: 588px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    background-color: #1F472166;
}

.hero-banner.bg-color {
    background-color: #091c0e;
}

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

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background-color: #1F472166;
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 788px;
    margin-left: auto;
    margin-right: auto;
}

.hero-description {
    margin-bottom: 20px;
}

.hero-description>p {
    color: rgba(255, 255, 255, 0.80);
    max-width: 702px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 20px;
    justify-content: center;
    align-items: center;
}

.hero-banner .theme-btn {
    color: #1F4721 !important;
}

.hero-banner .theme-btn-outline:hover span {
    color: var(--green);
}

@media (min-width: 992px) {
    .theme-btn-outline {
        padding: 14px 28px;
    }
}

@media (max-width: 768px) {
    .hero-description {
        margin-bottom: 15px;
    }
}

@media (max-width: 574px) {
    .hero-banner .theme-btn,
    .hero-banner .theme-btn-outline {
        width: 100%;
    }
    .hero-buttons {
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
}