/* Testimonial */
.testimonial {
    position: relative;
    background-image: url('../../img/index/hero-index.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 40rem;
}

.testimonial::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0, 0.15);
}

.testimonial-carousel {
    display: flex;
    align-items: center;
    margin-inline: auto;
    max-width: 1320px;
    height: 100%;
    text-align: center;
    color: var(--white);
}

.testimonial-item i {
    font-size: 4rem;
}

.testimonial-item p {
    font-size: 2rem;
    font-weight: 900;
}

.testimonial-item span {
    color: #e7e7e7;
}

@media (max-width:992px) {
    .testimonial-item i {
        font-size: 2rem;
    }

    .testimonial-item p {
        font-size: 1rem;
    }
}