.reviews {
    background: #FFF3F5;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.reviews h3 {
    text-align: center;
    font-family: var(--ff-SofiaSans);
    font-weight: var(--fw-800);
    font-size: 30px;
    color: var(--black);
    margin-bottom: 2rem;
}

.each_review {
    position: relative;
    background: #D7D9FF;
    padding: 20px;
    border-radius: 20px;
    transform: rotate(0deg);
    transition: var(--common-transition);
}

.each_review .student_review {
    font-family: var(--ff-SofiaSans);
    font-weight: var(--fw-400);
    font-size: 18px;
    color: var(--black);
    margin-bottom: 100px;
}

.each_review .student_info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.each_review .student_info .image_wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 30px;
}

.each_review .student_info .image_wrapper img {
    width: 100%;
}

.each_review .student_info h5 {
    font-family: var(--ff-SofiaSans);
    font-weight: var(--fw-800);
    font-size: 25px;
    color: var(--black);
}

.bottom_corner {
    position: absolute;
    right: 0;
    bottom: 0;
}

.bottom_corner img {
    width: 100%;
}