#student-reviews{
    padding-top: 100px;
}
.section-title{
    font-size: 32px;
    font-family: 'Poppins';
    font-weight: 700;
    color: #D68200;
    border-bottom: 5px solid #D68200;
    padding: 0px 38px;
    padding-bottom: 10px;
    width: fit-content;
    text-transform: uppercase;
}
.review-card{
    background: #373737;
    border-radius: 10px;
}

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

.student-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}
.student-name{
    margin-bottom: 0px;
    font-family: 'Poppins';
    font-size: 20px;
    color: #D68200;
    font-weight: 400;
    line-height: 150%;
}
.r-in{
    font-size: 16px;
    font-weight: 400;
    font-family: 'Poppins';
    color: #FFF;
    margin-bottom: 0px;
    line-height: 150%;
}

@media screen and (max-width: 992px) {
    .review-content{
        font-size: 17px;
    }
    
    .student-img {
        width: 55px;
        height: 55px;
    }
    .student-name{
        font-size: 18px;
    }
    .r-in{
        font-size: 16px;
    }
    .section-title{
        font-size: 28px;
        border-bottom: 4px solid #D68200;
        padding: 0px 34px;
        padding-bottom: 2px;
    }
}

@media screen and (max-width: 768px) {
    .review-content{
        font-size: 16px;
    }
    
    .student-img {
        width: 50px;
        height: 50px;
    }
    .student-name{
        font-size: 16px;
    }
    .r-in{
        font-size: 14px;
    }
    .section-title{
        font-size: 20px;
        border-bottom: 3px solid #D68200;
        padding: 0px 5px;
    }
}