.collections {
    position: relative;
}

.collections__head h2 {
    font-weight: 400;
    font-size: var(--fluid-24-18);
    line-height: 135%;
    color: var(--bezh);
    position: relative;
    display: inline-block;
}

.collections__head h2::after {
    content: "";
    display: block;
    height: 1px;
    width: 100vw;
    opacity: 0.3;
    background: var(--bezh);
    position: absolute;
    left: calc(100% + 20px);
    bottom: 10px;
}

.collections__content {
    margin-top: 32px;
}

.collections .collections-slider {
    position: relative;
}

.collections .collections-slider__slide {
    height: auto;
}

.collections .collections-slider__nav {
    margin-top: 30px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.collections .collections-slider-arrows {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    gap: 7px;
}

.collections .collections-slider-arrows .collections-slider-arrow {
    cursor: pointer;
    position: relative;
    pointer-events: auto;
    position: relative;
    border-radius: 50%;
    border: 1px solid var(--bezh);
    width: 60px;
    height: 60px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: transparent;
    transition: background 0.35s;
}

.collections .collections-slider-arrows .collections-slider-arrow svg {
    position: relative;
}

.collections .collections-slider-arrows .collections-slider-arrow svg path {
    transition: fill 0.35s;
}

.collections .collections-slider-arrows .collections-slider-arrow_prev:not(.swiper-button-disabled):hover, .collections .collections-slider-arrows .collections-slider-arrow_next:not(.swiper-button-disabled):hover {
    background: var(--bezh);
}

.collections .collections-slider-arrows .collections-slider-arrow_prev:not(.swiper-button-disabled):hover svg path, .collections .collections-slider-arrows .collections-slider-arrow_next:not(.swiper-button-disabled):hover svg path {
    fill: #000;
}

.collections .collections-slider-arrows .collections-slider-arrow.swiper-button-disabled {
    cursor: default;
    opacity: 0.5;
}

.collections .collections-slider-arrows .collections-slider-arrow.swiper-button-lock {
    display: none;
}

.collections-card > a {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    font-size: 0;
}

.collections-card__photo {
    overflow: hidden;
    aspect-ratio: 0.816666;
    margin-bottom: 16px;
}

.collections-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s;
}

.collections-card__title {
    font-family: var(--font4);
    font-weight: 400;
    font-size: var(--fluid-32-18);
    line-height: 135%;
    text-align: center;
    color: var(--bezh);
}

.rs-collections {
    padding-top: 144px;
    padding-bottom: 105px;
}

@media (max-width: 991.98px) {
    .collections .collections-slider__slide {
        width: 290px;
    }
}

@media (max-width: 767.98px) {
    .collections .collections-slider-arrows .collections-slider-arrow {
        width: 42px;
        height: 42px;
    }

    .rs-collections {
        padding-top: 45px;
        padding-bottom: 45px;
    }
}

@media (any-hover: hover) {
    .collections-card:hover .collections-card__photo img {
        transform: scale(1.1);
    }
}