#testimonials {
    background-color: #f8f8f8;
    position: relative;
    overflow: hidden;
}

#testimonials::before,
#testimonials::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 60px;
    background-image: url('../../images/double-quotes.png');
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

#testimonials::before {
    top: 40px;
    left: 40px;
}

#testimonials .row>.col-lg-4:nth-child(2) .testimonial {
    transform: translateY(-40px);
}


#testimonials::after {
    bottom: 40px;
    right: 40px;
}

.testimonial-title {
    margin-bottom: 5rem!important;
}

.testimonial {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    flex: 1 1 30%;
    height: 100%;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.testimonial:hover{
    box-shadow: 1px 1px 5px var(--primary-color);
}
.testimonial-text {
    font-style: italic;
    margin-bottom: 10px;
    color: #333333d4;
    text-align: center;
}

.testimonial-author {
    text-align: left;
    font-weight: bold;
    color: var(--primary-color);
}



.testimonial-avatar {
    display: none;
}

.testimonial-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.testimonial-header p {
    color: var(--primary-color);
}

@media (max-width: 991px) {

    .testimonial-title {
    margin-bottom: 1rem!important;
}
   
    #testimonials .row > .col-lg-4:nth-child(3) .testimonial {
        transform: none;
    }
}