.hero-hotels {
    position: relative;
    height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 992px) {
    .hero-hotels {
        height: 85vh;
    }
}

.hero-hotels img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.hero-hotels-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-hotels-wrap {
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.hero-hotels-wrap span {
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
    font-size: 3.2rem;
    letter-spacing: 0.3rem;
}

.hero-hotels-wrap h1 {
    margin: 0 0 1rem 0;

    padding: 0;
    font-size: 4rem;
    font-family: "Baskervville", serif !important;


}

.hero-hotels::before {
    content: '';
    display: block;
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-hotels .houm-scroll-down {
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
    max-width: 30px;

    @media (min-width:992px) {
        max-width: 50px;
        width: 100%;
        height: 50px;
    }

}

@keyframes scroll {
    0% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(100px);
    }
}