.reviews{
    border-radius: 50px;
    box-shadow: 0 0 50px 25px rgba(0, 0, 0, 0.1);
    background: #fff;
    padding: 50px 200px 100px 200px;
}

.reviews__block{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.reviews__block_item{
    border-radius: 16px;
    width: 380px;
    height: 576px;
    background: rgba(229, 231, 235, 0.2);
    padding: 25px 15px 19px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.reviews__title{
    font-weight: 700;
    font-size: 42px;
    line-height: 140%;
    text-align: center;
    color: #1a1e3a;
}

.reviews__block_text{
    font-weight: 300;
    font-size: 14px;
    line-height: 140%;
    color: rgba(26, 30, 58, 1);
}

.reviews__block_people{
    font-weight: 700;
    font-size: 16px;
    color: #4ba8ff;
    display: flex;
    gap: 14px;
}

.reviews__block_people div{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.reviews__block_people span{
    font-weight: 300;
    font-size: 16px;
    color: rgba(20, 3, 45, 0.5);
}

@media (max-width: 1700px){
    .reviews{
        padding: 91px 100px 0 100px;
    }
}

@media (max-width: 1450px){
    .reviews{
        padding: 91px 50px 0 50px;
    }
    .reviews__block{
        gap: 16px;
    }
}

@media (max-width: 1300px) {
    .reviews__block_item{
        width: 100%;
        height: 100%;
    }
    .reviews__block_people{
        margin-top: 25px;
    }
    .reviews{
        border-radius: 0;
        padding: 47px 25px 0 25px;
    }
     .reviews__block{
        margin-top: 9px;
        padding-bottom: 74px;
     }
     .reviews__title{
        font-size: 32px;
     }
}

@media (max-width: 768px) {
     .reviews{
        padding: 47px 11px 0 7px;
    }
}