.hotels-list-sec {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 0 auto;
    margin-bottom: var(--space-between-sections);
    padding-top:var(--space-between-sections) ;
    padding-bottom:var(--space-between-sections) ;
    background-color: #f8f5f0;
}

.hotels-list__title {
    width: 50%;
}

.hotels-list__title h1 {
    text-align: center;
}

.hotels-list__title p {
    text-align: center;
}

.hotels-list__zones {
    margin-top: 25px;
    cursor: pointer;
}

.hotels-list__zones .zones__nav {
    display: flex;
    gap: 20px;
}

.hotels-list__hotels {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-direction: row;
    gap: 30px;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 30px;
}

.hotels__card {
    display: flex;
    flex-direction: column;
    background-color: white;
    padding: 21px;
    width: calc(24% - 30px);
    position: relative;
}

.hotels__card img {
    width: 100%;
    height: 265px;
    object-fit: cover;
    margin-bottom: 30px;
}

.hotels__card .icon img {
    position: relative;
    top: 15px;
    width: 30px;
    height: 30px;
}

.hotels__card .about__section-buttons {
    margin-top: auto;
}

.zones__nav li {
    position: relative;
}

.zones__nav .active a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
}

.zones__nav a {
    position: relative;
}

.zones__nav a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
}

.zones__nav a:hover::before,
.zones__nav .active a::before {
    width: 100%;
}


@media (max-width:992px) {
    .hotels-list-sec {
        padding-right: 15px;
        padding-left: 15px;
    }

    .hotels-list__title {
        width: 100%;
    }
    .hotels-list__title h1 {
        font-size: 45px;
        text-align: left;
    }

    .hotels-list__title p {
        text-align: left;
    }

    .hotels__card {
        width: 100%;
    }
}