.review_person {
display: flex;
gap: 1rem;
padding: 1rem;
}
.review_img {
width: 50px;
height: 50px;
border-radius: 50%;
overflow: hidden;
border: 1px solid grey;
}
.review_img img {
height: 100%;
object-fit: contain;
}
.review_identity {
display: flex;
flex-direction: column;
justify-content: center;
}
.review_identity p:first-child {
color: var(--main-blue);
}
.review_identity p:last-child {
color: grey;
}
.review_stars {
display: flex;
padding: .5rem 1rem 1rem; 
color: orange;
}
.review_text {
padding: 0 1rem;
overflow-y: scroll;
max-height: 200px;
height: 100%;
} @media only screen and (max-width: 750px) {
.reviews_carousel_ct {
width: 65%;
}
}
@media only screen and (max-width: 750px) {
.reviews_carousel_ct {
width: 75%;
}
}
@media only screen and (max-width: 600px) {
.reviews_carousel_ct {
width: 75% !important;
}
}
@media all and (max-width: 550px) {
.reviews_carousel_ct {
width: 100% !important;
}
}