.hibt {
    position: relative;
    color: #fff;
}

.schedule-now-prompt--visible + .hibt {
    margin-top: var(--section-margins);
}

.hibt__bg {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: -1;
}

.hibt.dark_background:before {
    content: '';
    background: rgba(0,0,0, .4);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.hibt__text {
    margin-inline: 5vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    position: relative;
}



.hibt__text .btn {
    margin-top: 1rem;
}



.hibt__subtitle {
    font-size: 26px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 0;
}

.hibt__subtitle:after {
    content: "";
    width: 40px;
    height: 1px;
    display: inline-block;
    background-color: #fff;
    vertical-align: super;
    opacity: .7;
}

.hibt__title {
    font-size: 42px;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    line-height: 1;
    margin-bottom: 1rem;
}

.light_background {
    color: #404040;
}

.light_background .hibt__title {
    color: #2C5381;
}

.light_background .hibt__subtitle {
    color: #e77420;
}

.light_background .hibt__subtitle:after {
    background-color: #e77420;
}

@media (min-width: 800px) {
    .hibt__subtitle {
        font-size: 36px;
    }

    .hibt__title {
        font-size: 70px;
    }

    
}

@media (min-width: 1024px) {
    .hibt {
        display: flex;
        gap: min(5vw, 120px);
        justify-content: flex-end;
    }

    

    .hibt__text {
        max-width: 832px;
        justify-content: flex-start;
    }

    .hibt{
        justify-content: flex-start;
    }

    .hibt__subtitle {
        font-size: 41px;
    }

    .hibt__title {
        font-size: 100px;
    }

    

    .hibt p {
        font-size: 25px;
        line-height: 1.4;
    }
}

