.about-slider__nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: -40px;
    margin-bottom: 40px;
    gap: 20px;
}

.swiper-button-next.about-slider__btn,
.swiper-button-prev.about-slider__btn,
.about-slider__btn {
    position: relative;
    margin-top: auto;
    width: auto;
    height: auto;
    left: unset;
    right: unset;
}

.about-slider__btn::after {
    display: none;
}

.about-slider .swiper-wrapper, .about-slider__item {
    height: fit-content;
}

.about-slider__img {
    width: 100%;
    height: 225px;
    object-fit: cover;
}

.carousel__slide.has-thumb.has-video::before {
    content: '';
    z-index: 1;
    background-size: 35px;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 96px;
    height: 68px;
    margin-top: -34px;
    margin-left: -48px;
    cursor: pointer;
    background-image: url('img/play.svg');
    background-position: center;
    background-repeat: no-repeat;
}

@media screen and (max-width: 640px) {
    .about-slider__nav {
        display: none;
    }
}