.reviews {
    background-color: #181818;
    color: #ffffff;
    overflow: hidden;
    padding-bottom: 65px;    
}

.reviews__container {
    text-align: center;
}

.reviews__title {
    font-weight: bold;
    font-size: 60px;
    line-height: 122%;
    margin-bottom: 100px;
}

.reviews__title span {
    color: #f7ca60;
}

.reviews__swiper {
    width: 900px;
    height: 560px;
    margin: 0 auto;
    margin-bottom: 40px;
    position: relative;
}
.reviews__prev {
    position: absolute;
    left: -25px;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}
.reviews__next {
    position: absolute;
    right: -25px;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.reviews__video {
    width: 900px;
    height: 560px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
}

.reviews__video img {
    cursor: pointer;
}

.reviews .swiper-pagination-bullet {
    width: 13px;
    height: 13px;
    background-color: transparent;
    border: 1px solid #ffffff;
    opacity: 1;
    margin-right: 12px;
}

.reviews .swiper-pagination-bullet-active {
    background-color: #ffffff;
}

@media (max-width: 576px) {
    .reviews__title {
        font-size: 26px;
        line-height: 115%;
        margin-bottom: 30px;
    }
    .reviews__swiper {
        width: 240px;
        height: 145px;
        margin: 0 auto;
        margin-bottom: 20px;
    }
    .reviews__video {
        height: 145px;
    }
    .reviews__video img {
        width: 54px;
    }
    .swiper-pagination-bullet {
        width: 8px !important;
        height: 8px !important;
        margin-right: 3px !important;
        margin-left: 3px !important;
    }
    .reviews__prev {
        display: none;
    }
    .reviews__next {
        display: none;
    }
}
