
.reviews{
    background-image: url(/img/pages/reviews.webp);
    background-size: cover;
    width: 90%;
    height: 400px;
    border-radius: 30px;
    padding: 50px 50px 50px 50px;
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;
    margin-bottom: 150px;
}
.reviews_text{
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 130%;
    color: #FFFFFF;
}
.reviews_author{
    padding-top: 40px;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    color: #FFFFFF;
}
.reviews_post{
    padding-top: 5px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    color: #FFFFFF;
    opacity: 0.6;
}

.rating_star{
    display: flex;
    gap:2px;
    padding-bottom:30px ;

}
.star{
    color: #02C6F3;
    border-radius: 1px;
    height: 30px;
    font-size: 25px
}
.reviews_switch{
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}
.reviews_switch_box{
    width: 40px;
    height: 40px;
    border: 1px solid #FFFFFF;
    border-radius:50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    cursor: pointer;
    transition: 0.3s;

}
.reviews_switch_box:hover{
    background:#0068AF;
    color:#FFFFFF;
}
.reviews_switch_a{
    font-size: 37px;
    color:#FFFFFF;
}
.reviews_content_all{
    display: flex;
    width: 100%;
    overflow: hidden;
    position: relative;
}
.reviews_content{
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity:0;
    transition: 700ms;
}
.activReviews{
    width: 100%;
    opacity:1;

}