.slider {
    /* padding-left: 160px;
    padding-right: 160px; */

    display: flex;
    column-gap: 2rem;

    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;

    scroll-behavior: smooth;
}

.slider::-webkit-scrollbar {
    display: none;
}

.slider__box-1 {
    position: absolute;

    right: 64px;
    bottom: 24px;

    display: none;
    column-gap: 1rem;

    z-index: 100;
}

.slider__item {
    position: relative;
}

.slider__text {
    padding: 2rem;

    position: absolute;

    top: 50%;
    transform: translate(0, -50%);

    display: flex;
    flex-direction: column;
    row-gap: 0.25em;

    /* font-size: 2rem; */
    font-size: calc(16px + (32 - 16) * (100vw - 320px) / (1920 - 320));
    font-weight: 600;

    text-transform: uppercase;

    color: var(--secondary-color);
    background-color: rgba(0, 0, 0, 0.5);

    border-radius: 0 var(--border-radius_m) var(--border-radius_m) 0;
}

.slider__item-img {
    width: calc(100vw - 160px * 2);
    /* width: 1600px; */
    /* height: 768px; */

    aspect-ratio: 16 / 9;

    box-shadow: var(--box-shadow);

    border-radius: var(--border-radius_m);
}

.slider-indicator {
    position: absolute;

    bottom: -10px;
    right: 24px;

    display: flex;
    column-gap: 5px;

    z-index: 100;
}

.slider .card-slider__item {
    width: 32px;
}

