.testimonials {
    width: 100%;
    background-color: #fffff7;
    padding-bottom: 15rem;
    padding-top: 3rem;
}

.section-header {
    font-family: "Babylonica", cursive;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-group {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(16, 1fr);
    grid-template-rows: repeat(6, 6rem);
    grid-row-gap: 4rem;
}

.testimonial {
    width: 100%;
    margin-bottom: 4rem;
}

.testimonial:nth-child(1) {
    grid-column: 4/7;
    grid-row: 1/3;
}

.testimonial:nth-child(2) {
    grid-column: 3/6;
    grid-row: 3/5;
}

.testimonial:nth-child(3) {
    grid-column: 4/7;
    grid-row: 5/-1;
}

.testimonial:nth-child(4) {
    grid-column: 11/14;
    grid-row: 1/3;
}

.testimonial:nth-child(5) {
    grid-column: 12/15;
    grid-row: 3/5;
}

.testimonial:nth-child(6) {
    grid-column: 11/14;
    grid-row: 5/-1;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.testimonial-header h3 {
    font-family: "Babylonica", cursive;
    color: #b48811;
    font-size: 3.4rem;
    line-height: 1.3rem;
    letter-spacing: 0.4rem;
    font-weight: 450;
    margin-bottom: 0.9rem;
    margin-top: 1rem;
}

.testimonial-text {
    font-family: "Alegreya Sans", sans-serif;
    font-size: 1.6rem;
    text-align: justify;
    margin-bottom: 2rem;
}

.testimonial-text i {
    font-size: 1.5rem;
    color: #b48811;
    margin-right: 0;
}

.testimonial-img-wrapper {
    grid-column: 7/11;
    grid-row: 2/6;
    width: 100%;
}

.testimonial-img-wrapper img {
    width: 80%;
    height: 70%;
    object-fit: cover;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .testimonial-group {
        display: block;
        padding: 0 4rem;
    }

    .testimonial-img-wrapper {
        display: none;
    }
}

@media (max-width: 1200px) {
    .testimonial-header {
        font-size: 2rem;
    }

    .testimonial-text {
        font-size: 1.8rem;
    }

    .testimonial-img-wrapper {
        grid-row: 3/-1;
    }

    .testimonial:nth-child(1) {
        grid-column: 3/7;
    }

    .testimonial:nth-child(2) {
        grid-column: 2/6;
    }

    .testimonial:nth-child(3) {
        grid-column: 3/7;
    }

    .testimonial:nth-child(4) {
        grid-column: 11/15;
    }

    .testimonial:nth-child(5) {
        grid-column: 12/16;
    }

    .testimonial:nth-child(6) {
        grid-column: 11/15;
    }
}

@media (max-width: 1366px) {
    .testimonial-text {
        font-size: 1.5rem;
    }
}

@media (max-width: 820px) {    

    .testimonial-header h3 {
        font-size: 3rem;
        letter-spacing: 0.3rem;
        font-weight: 450;
        padding-top: 4rem;  
        
     
    }

    
    .testimonial-text i {
        display: none;
    }

   

}

@media (max-width:800px){
    .testimonial-img-wrapper {
        height: 60%;
    
}
}