.boxes-hotels {
    padding: 64px 0;
    position: relative;
}

.boxes-hotels .boxes-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
    overflow: hidden;
}

.boxes-hotels .boxes-item-wrapper {
    padding: 32px 0;
}

.boxes-hotels .hotels-arrows {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 0 24px;
}

.boxes-hotels .hotels-arrows .swiper-button-prev,
.boxes-hotels .hotels-arrows .swiper-button-next {
    position: relative;
    left: auto;
    top: auto;
    bottom: auto;
    right: auto;
    margin: 0;
    width: auto;
    height: auto;
    padding: 4px 12px;
}

.boxes-hotels .hotels-arrows .swiper-button-prev::after,
.boxes-hotels .hotels-arrows .swiper-button-next::after {
    content: none;
    display: none;
}

.boxes-hotels .hotels-arrows .swiper-button-prev svg,
.boxes-hotels .hotels-arrows .swiper-button-next svg {
    max-width: 12px;
    min-width: 12px;
    width: 100%;
}

.boxes-hotels .hotels-arrows .swiper-button-prev svg path,
.boxes-hotels .hotels-arrows .swiper-button-next svg path {
    transition: fill .3s ease;
}

.boxes-hotels .hotels-arrows .swiper-button-prev.swiper-button-disabled,
.boxes-hotels .hotels-arrows .swiper-button-next.swiper-button-disabled {
    opacity: 1;
}

.boxes-hotels .hotels-arrows .swiper-button-prev.swiper-button-disabled svg path,
.boxes-hotels .hotels-arrows .swiper-button-next.swiper-button-disabled svg path {
    fill: var(--Color-2);
}

.boxes-hotels .btn-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.boxes-hotels .item-thumb {
    line-height: 0.8;
    position: relative;
}

.boxes-hotels .item-thumb::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--Color-1);
    opacity: 0.2;
    pointer-events: none;
    z-index: 0;
    transition: opacity .3s ease;
}

.boxes-hotels .item-thumb:hover::before {
    opacity: 0;
}

.boxes-hotels .item-thumb img {
    aspect-ratio: 366 / 300;
    object-fit: cover;
}

.boxes-hotels .thumb-badge {
    position: absolute;
    right: 16px;
    top: 16px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px;
    width: calc(100% - 32px);
}

.boxes-hotels .thumb-badge>* {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    border-radius: 12px;
    background: rgba(0, 0, 51, 0.20);
    backdrop-filter: blur(5px);
    padding: 4px 16px;
    text-transform: uppercase;
    display: flex;
}

.boxes-hotels .item-title {
    padding: 24px 0;
}

.boxes-hotels .item-title h3 {
    font-size: 28px;
    color: #000;
    font-weight: 600;
    margin-bottom: 16px;
}

.boxes-hotels .item-title p {
    color: var(--Color-2);
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 16px;
    line-height: 1.375;
}

.boxes-hotels .item-stars {
    display: flex;
    align-items: center;
}

.boxes-hotels .item-stars svg {
    max-width: 24px;
    min-width: 24px;
    width: 100%;
    height: auto;
    aspect-ratio: 1;
}

.boxes-hotels .price {
    font-size: 24px;
    font-weight: 600;
    color: var(--Color-1);
    line-height: 1.41;
    font-variant-numeric: lining-nums proportional-nums;
    margin-left: auto;
}

.boxes-hotels .boxes-item .btn-wrapper {
    justify-content: space-between;
    gap: 16px;
    align-items: center;
}

@media (max-width:1199px) {
    .boxes-hotels {
        padding: 48px 0
    }
}

@media (max-width:768px) {
    .boxes-hotels {
        padding: 32px 0;
    }

    .boxes-hotels .boxes-wrapper {
        overflow: initial;
    }

    .boxes-hotels .boxes-item-wrapper {
        overflow: hidden;
        margin-left: -15px;
        margin-right: -15px;
        width: calc(100% + 30px);
        padding-left: 15px;
        padding-right: 15px;
    }

    .boxes-hotels .hotels-arrows {
        display: none;
    }

    .boxes-hotels .item-thumb img {
        aspect-ratio: 288 / 300;
    }
}