.defaul-reviews__tabs{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}
.default-reviews_btn{
    border: 1px solid var(--stroke-gray-bg);
    border-radius: 151px;
    max-width: 237px;
    padding: 16px;
    font-weight: 400;
    font-size: 16px;
    line-height: 125%;
    color: var(--black);
    background: transparent;
    width: 100%;
}
.default-reviews_btn.active{
    background: var(--violet-dark);
    color: var(--white);
    border-color: var(--violet-dark);
}
.default-reviews-card{
    border-radius: 30px;
    background: var(--bg);
    padding: 40px;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.default-reviews-card__top{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 17px;
}
.default-reviews-card__top-title{
    font-weight: 600;
    font-size: 20px;
    line-height: 120%;
    color: var(--black);
    margin-bottom: 4px;
}
.default-reviews-card__top-date{
    font-weight: 400;
    font-size: 16px;
    color: rgba(51, 51, 51, 0.6);
}
.default-reviews-card__top-stars{
    display: flex;
    align-items: center;
    gap:4px ;
}
.default-reviews-card__top-date svg{
    min-width: 25px;
}
.default-reviews-card__body{
    margin-bottom: 107px;
}
.default-reviews-card__body p{
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: var(--black);
}
.default-reviews-card__link{
    margin-top: auto;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: var(--dop-text);
}
.section-default-reviews{
    overflow: hidden;
}
.default-review-slider{
    position: relative;
}
.swiper-button--navigation--default-reviews{
    top: -85px;
}


@media(max-width:991px){
    .swiper-button--navigation--default-reviews{
        position: static;
        margin-top: 20px;
        justify-content: center;
    }
}
@media(max-width:767px){
    .defaul-reviews__tabs{
        flex-direction: column;
    }
    .default-reviews_btn{
        max-width: 100%;
    }
}
@media(max-width:767px){
    .default-reviews-card__body{
        margin-bottom: 45px;
    }
    .default-reviews-card__body p{
        font-size: 14px;
    }
}