.slick-arrow {
    display: block;
    font-size: 0;
    line-height: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    transition: opacity .3s ease;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    z-index: 1;
}

.slick-arrow:hover {
    opacity: .8;
}

.slick-arrow.slick-next {
    background-image: url('../../icons/slider__arrow-next.svg');
    right: 16px;
}

.slick-arrow.slick-prev {
    background-image: url('../../icons/slider__arrow-prev.svg');
    left: 16px;
}

ul.slick-dots {
    position: absolute;
    display: flex;
    align-items: center;
    column-gap: 12px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 16px;
}

ul.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: inline-flex;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ffffff;
    opacity: .5;
    transition: opacity .3s ease;
}

ul.slick-dots li.slick-active button {
    opacity: 1;
}


.home__slider {

    margin-top: 32px;

    .slick-list {
        margin-left: -10px;
        margin-right: -10px;
    }

    .slick-slide {
        margin-left: 10px;
        margin-right: 10px;
    }

    .slider__slide {
        position: relative;
        min-height: 480px;
        overflow: hidden;
        border-radius: 12px;
    }

    .slider__description {
        color: #ffffff;
        font-size: 26px;
        font-style: normal;
        font-weight: 500;
        line-height: 140%;
        letter-spacing: 0.52px;
        margin-top: 24px;
    }

    .slider__slide>img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .slider__slide>a {
        position: absolute;
        font-size: 0;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
    }

    .slider__slide:after {
        content: "";
        position: absolute;
        display: block;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: linear-gradient(90deg, rgb(0 0 0 / 20%) 0%, rgba(255, 255, 255, 0) 100%);
    }

    .slider__content {
        position: relative;
        max-width: 500px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        left: 8%;
        z-index: 1;
    }

    .slider__title {
        color: #ffffff;
        font-size: 56px;
        font-style: normal;
        font-weight: 700;
        line-height: 120%;
        letter-spacing: 1.12px;
    }
}

.slider__buttons {
    display: flex;
    column-gap: 16px;

    .slider__button {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        cursor: pointer;
        transition: all .3s ease;

        &:hover {
            opacity: .8;
        }
    }
}

@media (max-width: 992px) {
    .home__slider {
        margin-top:24px;

        .slider__slide {
            min-height:400px;
            display:block;
            padding:40px 24px;
            box-sizing:border-box;

            .slider__content {
                justify-content: start;
                box-sizing:border-box;
                left:0;

            }

            .slider__title {
                font-size: 30px;
                font-weight: 700;
                line-height: 130%;
                letter-spacing: 0.6px;
            }

            .slider__description {
                font-size: 14px;
                line-height: 140%;
                letter-spacing: 0.14px;
                margin-top:16px;
            }
        }
    }
}

