.image-container > a{
    position: relative;
}
.hotels-slider {
    position: relative;
    overflow: hidden;
}

.hotels-slider img {
    display: none;
    width: 100%;
}

.hotels-slider:not(.initialized) img:first-child,
.hotels-slider img.active {
    display: block;
}

.hotels-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.1);
    color: white;
    border: none;
    padding: 0 6px;
    cursor: pointer;
    font-size: 40px;
    z-index: 10;
    transition: background 0.3s ease;
}

.hotels-slider-nav:hover {
    background: rgba(0, 0, 0, 0.7);
}

.hotels-slider-nav.prev {
    left: 10px;
}

.hotels-slider-nav.next {
    right: 10px;
}

.hotels-slider-dots {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
}

.hotels-slider-dots .dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ccc;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.hotels-slider-dots .dot.active {
    background: #333;
}

.hotels-slider-dots .dot:hover {
    background: #666;
}
