.main-slider {
    --services-gutter:10px;
    border-radius:16px;
    height:480px;
    overflow:hidden;
    width:100%
}

@media(max-width:992px) {
    .main-slider {
        height:300px
    }
}

@media(max-width:1700px) {
    .main-slider {
        --services-gutter:20px
    }
}

@media(max-width:1200px) {
    .main-slider {
        --services-gutter:20px
    }
}

@media(max-width:600px) {
    .main-slider {
        --services-gutter: 60px
    }
}

.main-slider__slide {
    height: 480px;
    width: 100%
}

@media(max-width:992px) {
    .main-slider__slide {
        height: 300px
    }
}

.main-slider__slide a {
    cursor: pointer
}

.main-slider__slide img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top center;
    object-position: top center;
    width: 100%
}

.small-slides {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    gap: 20px;
    width: 100%;
    padding-bottom: 250px;
}

@media(max-width:992px) {
    .small-slides {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        margin-top: 16px;
        width: 100%
    }
}

@media(max-width:576px) {
    .small-slides {
        grid-template-columns: 1fr
    }
}

.small-slides__item {
    background: #471818;
    border-radius: 8px;
    height: 150px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.slides-block {
    gap: 16px
}

.small-slide {
    cursor: pointer;
    display: block;
    overflow: hidden;
    padding: 20px;
    position: relative;
    -webkit-text-decoration: none !important;
    text-decoration: none !important
}

.small-slide:before {
    background-size: cover;
    z-index: 10
}

.small-slide:after,
.small-slide:before {
    content: "";
    height: 100%;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%
}

.small-slide:after {
    background: linear-gradient(90deg, rgba(0, 0, 0, .88) 23%, transparent);
    z-index: 11
}


.small-slide__title {
    display: block;
    font-size: 24px;
    font-weight: 700;
    position: relative;
    z-index: 20
}

@media(max-width:992px) {
    .small-slide__title {
        font-size: 16px;
        white-space: nowrap
    }
}

@media(max-width:576px) {
    .small-slide__title {
        font-size: 20px
    }
}

.small-slide__description {
    display: block;
    font-size: 14px;
    margin-top: 12px;
    max-width: 60%;
    position: relative;
    z-index: 20
}

@media(min-width:577px)and (max-width:992px) {
    .small-slide__description {
        font-size: 11px
    }
}

.small-slide__tag {
    bottom: -17px;
    color: hsla(0, 0%, 100%, .07);
    font-size: 41px;
    position: absolute;
    right: -3px
}