#student-reviews{
    padding-top: 100px;
    background: #EEEEEE;
}
.section-title{
    font-size: 32px;
    font-family: 'Cairo';
    font-weight: 700;
    color: #1D6758;
    width: fit-content;
    text-transform: uppercase;
}
.review-card{
    background: #FFF;
    border-radius: 10px;
}

.review-content{
    font-family: 'Cairo';
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    color:#7C7C7C;
}

.student-img {
    width: 200px;
    border-radius: 10px 0px 0px 10px;
    object-fit: cover;
    display: block;
    height: 100%;
}
.student-name{
    font-family: 'Cairo';
    font-size: 20px;
    color: #1D6758;
    font-weight: 600;
    line-height: 150%;
    padding-bottom: 0px;
    margin-bottom: 0px;
}
@media screen and (max-width: 992px) {
    .section-title{
        font-size: 28px;
    }
    .review-content{
        font-size: 17px;
    }
    
    .student-img {
        width: 150px;
    }
    .student-name{
        font-size: 18px;
    }
}

@media screen and (max-width: 768px) {
    .section-title{
        font-size: 20px;
    }
    .review-content{
        font-size: 16px;
    }
    
    .student-img {
        width: 120px;
    }
    .student-name{
        font-size: 16px;
    }
}