.hps-slider {

    position: relative;

    width: 100%;

    max-width: 1200px;

    margin: 0 auto;

    overflow: hidden;
}

.hps-track {

    display: flex;

    transition: transform .5s ease;
}

.hps-slide {

    min-width: 100%;

    flex-shrink: 0;
}

/*
|--------------------------------------------------------------------------
| DESKTOP IMAGE
|--------------------------------------------------------------------------
*/

.hps-slide img {

    display: block;

    width: 100%;

    aspect-ratio: 1200 / 700;

    object-fit: cover;

    border-radius: 20px;
}

/*
|--------------------------------------------------------------------------
| MOBILE IMAGE
|--------------------------------------------------------------------------
*/

@media (max-width: 768px) {

    .hps-slide img {

        aspect-ratio: 768 / 960;

        border-radius: 20px
    }
}

/*
|--------------------------------------------------------------------------
| ARROWS
|--------------------------------------------------------------------------
*/

.hps-prev,
.hps-next {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 48px;

    height: 48px;

    border: none;

    border-radius: 50%;

    cursor: pointer;

    z-index: 10;

    font-size: 24px;

    line-height: 20px;

    text-align: center;

    background: rgba(0,0,0,.5);

    color: #fff;

    transition: .2s;
}

.hps-prev:hover,
.hps-next:hover {

    background: rgba(0,0,0,.8);
}

.hps-prev {

    left: 15px;
}

.hps-next {

    right: 15px;
}

/*
|--------------------------------------------------------------------------
| DOTS
|--------------------------------------------------------------------------
*/

.hps-dots {

    display: flex;

    justify-content: center;

    gap: 8px;

    margin-top: 15px;
}

.hps-dot {

    width: 12px;

    height: 12px;

    border-radius: 50%;

    background: #ccc;

    cursor: pointer;

    transition: .2s;
}

.hps-dot.active {

    background: #333;
}