* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "poppins", sans-serif;
    /* background-color: #ededed; */
}


.parent {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* gap: 20px; */
}



/* child 1 start  */
.child-1 {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.child-1-heading {
    border: 1px solid #007ab3;
    margin-bottom: 10px;
    padding: 4px;
    border-radius: 8px;
    color: #007ab3;
    font-weight: 600;
    font-size: 14px;
}

.child-1-sub-heading {
    font-size: 28px;
    font-weight: 700;
    color: #007ab3;
    margin-bottom: 30px;
}
.sub-child-1 {
    display: grid;
    grid-template-columns: auto auto auto;
    justify-content: center;
    /* align-items: center; */
    width: 90%;
    gap: 20px;
    border-radius: 10px;
}


.testimonial p {
    margin-bottom: 0;
}

.testimonial {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    background-color: white;
    color: #007ab3;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
}


.testimonial-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.comma-image {
    border: 1px solid white;
    margin-left: 4px;
    margin-top: 4px;
    border: none;
    box-shadow: 1px 2px 9px rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    width: fit-content;
    padding: 8px;
    background-color: #007ab3;
}

.commas {
    width: 25px;
    height: 20px;
}

.testimonial-student {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 15px;
}

.testimonial-student .student {
    width: 45px;
    height: 45px;
} 

.sub-testimonial-student {
    display: flex;
    flex-direction: column;
}

.student-name {
    font-weight: 700;
}
.student-city {
    font-size: 14px;
}

/* child 1 end */



@media screen and (min-width:320px) and (max-width:768px) 
{

    .parent{
        margin-top: 0;
    }

    
    .child-1 {
        display: flex;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        margin-top: 30px;
        margin-bottom: 30px;
    }
    .child-1-heading {
        font-size: 12px;
    }
    .child-1-sub-heading{
        font-size: 20px;
    }

    .sub-child-1 {
        display: grid;
        grid-template-columns: auto;
        justify-content: center;
        align-items: center;
        width: 90%;
        gap: 20px;
        border-radius: 10px;
    }

    .right-testimonial {
        width: 100%;
        height: unset;
    }

    .testimonial p {
        font-size: 14px;
    }

}