.hero-banner-section {
    position: relative;
    overflow: hidden;
    min-height: clamp(500px, 80vh, 800px);
    width: 100%;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    justify-content: flex-end;
}

.home-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.home-bg-image::before {
    content: "";
    position: absolute;
    background: rgba(0, 0, 0, 0.60);
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

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

.home-bg-text {
    position: relative;
    bottom: 0px;
    width: 100%;
    padding: clamp(40px, 8vw, 80px) 0;
}

.home-bg-content {
    max-width: 858px;
}

.home-bg-content *:not(.btn) {
    color: var(--white);
}

.home-bg-content h1 {
    color: var(--white);
}

.home-bg-content p {
    max-width: 53.625rem;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.6;
    margin: 22px 0 0;
}

.home-bg-content .btn-call {
    border: 1.5px solid var(--white);
    background: transparent;
}

.home-bg-content .btn-call:hover,
.home-bg-content .btn-call:focus,
.home-bg-content .btn-call:focus-within,
.home-bg-content .btn-call:focus-visible {
    color: var(--white);
    background: var(--brown);
    border-color: var(--brown);
}

.home-bg-content .btn-call svg path {
    fill: var(--white);
}

.home-bg-content .btn-call svg {
    margin-right: 10px;
    margin-left: 0;
}

.home-bg-content .button-block {
    display: flex;
    align-items: center;
}

.home-bg-content .button-block .btn {
    margin-top: 30px;
}

.home-bg-content .button-block .btn:not(:last-child) {
    margin-right: 20px;
}

.hero-badge {
    text-transform: uppercase;
    font-weight: 500;
    font-size: clamp(0.75rem, 1vw, 0.875rem);
    line-height: 1;
    letter-spacing: 0.2em;
    border: 1px solid var(--white);
    display: inline-block;
    vertical-align: middle;
    border-radius: 6.25rem;
    padding: 11px 20px 10px 20px;
    margin-bottom: 22px;
    color: var(--white);
}

.home-bg-content ul li:before,
.home-bg-content ol li:before {
    background-color: var(--white);
}

.home-bg-content .button-block .btn.btn-white {
    min-width: 155px;
}

@media (min-width: 1400px) {
    .hero-banner-section {
        min-height: 800px;
    }
}

@media only screen and (max-width:1024px) {
    .hero-banner-section {
        min-height: 530px;
    }

    .home-bg-content {
        max-width: 718px;
    }
}

@media only screen and (max-width:991px) {
    .home-bg-content .button-block {
        flex-wrap: wrap;
    }

    .home-bg-content p {
        font-size: 18px;
        margin-top: 15px;
    }

    .home-bg-content .button-block .btn {
        margin-top: 15px;
    }

    .home-bg-text {
        padding: 40px 0;
    }

    .home-bg-content {
        max-width: 86%;
    }
}

@media (max-width: 767px) {
    .home-bg-content p {
        font-size: 16px;
    }
}

@media (max-width: 580px) {

    .hero-badge {
        margin-bottom: 1.25rem;
    }

    .home-bg-content {
        max-width: 100%;
    }
}

/* -------------------------------- */
/* FALLBACK (older browsers) */
/* -------------------------------- */
@supports not (padding: clamp(1rem, 2vw, 3rem)) {
    .home-bg-text {
        padding: 60px 0;
    }

    .home-bg-content p {
        font-size: 16px;
    }
}