section.hero-container {
    position: relative;
    display: flex;
    height: 920px;
    padding: 0;
    margin: 0 auto 64px;
    max-width: var(--hero-width);
}

.hero-container::before {
    content: '';
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.8) 30%, rgba(17, 17, 17, 0) 100%);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 200px;
    z-index: 5;
}

.hero-container::after {
    content: '';
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.3) 0%, rgba(17, 17, 17, 0.9) 70%, #111111 100%);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 4;
}

.hero-content {
    position: relative;
}

.hero-caption-container {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 5;
    display: flex;
}

.hero-caption-content {
    color: rgba(255, 255, 255, 0.75);
    position: relative;
    margin-top: auto;
    margin-bottom: 68px;
    padding: 0 64px;
}

h1.hero-title {
    color: #fff;
    margin-bottom: 24px;
}

.hero-text {
    font-size: 24px;
    letter-spacing: -0.5px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 50%;
    margin-bottom: 48px;
}

.hero-text strong {
    color: inherit;
}

.hero-image {
    flex: 1 1 100%;
}

.hero-image img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

@media (max-width: 1199px) {
    section.hero-container {
        height: 639px;
    }

    .hero-caption-content {
        margin-bottom: 36px;
        padding: 0 32px;
    }

    h1.hero-title {
        font-size: 40px;
        margin-bottom: 16px;
    }

    .hero-text {
        font-size: 20px;
        margin-bottom: 32px;
        max-width: 100%;
    }
}

@media (max-width: 639px) {
    section.hero-container {
        height: 580px;
    }

    .hero-caption-content {
        margin-bottom: 12px;
        padding: 0 16px;
    }

    h1.hero-title {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .hero-text {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .button-element.inline-block {
        width: 100%;
    }

    .button-element.inline-block .btn {
        width: 100%;
    }
}