
.courseReviews{
    overflow: hidden;
}
.courseReviews-title___wrap{
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}
.courseReviews-title{
    margin-bottom: 0;
}
.courseReviews-arrows{
    display: flex;
    gap: 12px;
    align-self: flex-end;
}
.courseReviews-swiper__prev,
.courseReviews-swiper__next{
    display: flex;
    user-select: none;
    justify-content: center;
    align-items: center;
    width: 41px;
    height: 41px;
    background: #E3E4EF;
    border-radius: 500px;
    padding: 12px;

}
.courseReviews-swiper__prev:hover path,
.courseReviews-swiper__next:hover path{
    fill: #4B47EF;
    transition: 0.3s;
}
.courseReviews-swiper__next{
    transform: rotate(180deg);
}
.js-courseReviews-swiper{
    touch-action: pan-y;
    width: calc(100% + 150px);
    padding-right: 150px;
}
.courseReviews .swiper-wrapper{
    height: auto!important;
}
.courseReviews-swiper__slide{
    width: 250px;
}
.courseReviews-item{
    position: relative;
    overflow: hidden;
    height: 444px;
    border-radius: 15px;
}
.courseReviews-item:hover .courseReviews-item__overlay{
    opacity: 0;
}
.courseReviews-item__overlay{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    color: #fff;
    display: flex;
    align-items: flex-end;
    align-content: flex-end;
    flex-wrap: wrap;
    padding: 16px 16px;
    transition: 0.3s;
    background-image: linear-gradient(transparent, transparent, #1f1f1f);
}
.courseReviews-item__name{
    font-weight: 700;
    font-size: 16px;
    line-height: 120%;
    width: 100%;
    display: inline-block;
    margin-bottom: 4px;
}
.courseReviews-item__prof{
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
}
.courseReviews-btn__wrap{
    padding-top: 32px;
}
@media (max-width: 1024px) {
    .courseReviews-swiper__slide{
        width: 192px;
    }
    .courseReviews-item{
        height: 342px;
    }
    .courseReviews-item__overlay{
        padding: 8px;
    }
}
@media (max-width: 767px) {
    .courseReviews-btn__wrap{
        padding-top: 24px;
    }
    .courseReviews-btn__wrap ._btn-grey{
        width: 100%;
    }
}

.courseReviews-video {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
}
.courseReviews-video__preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.courseReviews-video__btn {
    border: none;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    font-family: inherit;
    line-height: inherit;
    cursor: pointer;
    user-select: none;
    text-align: center;
    background-color: rgba(111, 92, 218, 0.64);
    color: rgb(255, 255, 255);
    padding: 18px;
    margin: 0px;
    touch-action: manipulation;
    font-size: 100%;
    backdrop-filter: blur(4px);
    min-height: 0px;
    min-width: 0px;
    border-radius: 100%;
    opacity: 0.8;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
}
.courseReviews-video__btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
}
.courseReviews-video__frame {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 3;
    display: none;
}
.courseReviews-video__frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.courseReviews-video.isPlaying .courseReviews-video__btn {
    opacity: 0;
    visibility: hidden;
}

.courseReviews-video.isPlaying .courseReviews-video__frame  {
    display: block;
}
