.testimonials {
    padding: 80px 0;
    background-color: var(--grey-50);
}

.testimonials__container--row {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
}

.testimonials__header {
    flex: 0 0 25%;
    max-width: 25%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.testimonials__header .red-text{
    color: var(--primary-500);
}
.testimonials__header__heading,
.testimonials__header__content,
.testimonials__header__content * {
    text-align: left;
}

.testimonials__header__content p{
    margin: 0;
}
.testimonials__header__content {
    max-width: 100%;
    margin-bottom: 24px;
}


.testimonials__header > svg{
    margin-bottom: 24px;
}
.testimonials__carousel-wrapper {
    width: 75%;
    max-width: 75%;
    margin-left: auto;
    margin-right: 0;
}

.testimonials-carousel__item{
    padding: 40px;
    border-radius: 24px;
    background: var(--white);
}

.testimonials-carousel__author__container{
    display: flex;
    gap: 16px;
    margin-top: 32px;

}
.testimonials-carousel__author{
    display: flex;
    justify-content: center;
    align-items: center;
}
.testimonials-carousel__author p{
    color: var(--grey-900);
    font-weight: 700;
    margin: 0;
}
.testimonials-carousel__image{
    display: flex;
}
.testimonials-carousel__author__container img{
    width: 48px;
    height: 48px;
    border-radius: 999px;
    object-fit: cover;
}
.testimonials__container__pagination{
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
}





@media (max-width: 1480px) {
    .testimonials__container--row{
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .testimonials__header > svg{
        margin-bottom: 12px;
    }
    .testimonials__header__content{
        margin-bottom: 12px;
    }
    .testimonials__container__pagination{
        margin-top: 24px;
        margin-bottom: 8px;
    }
    .testimonials__header{
        flex: 1;
        max-width: 100%;
        align-items: center;
    }

    .testimonials__carousel-wrapper{
        max-width: 100%;
        width: 100%;
    }
    .testimonials__header__heading{
        text-align: center;
    }
}

@media (max-width: 992px) {
    .testimonials__container--row {
        flex-direction: column;
        gap: 48px;
    }

    .testimonials__header,
    .testimonials__carousel-wrapper {
        max-width: 100%;
        flex: 0 0 100%;
    }

       .testimonials__carousel-wrapper {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }

    .testimonials__header__heading,
    .testimonials__header__content,
    .testimonials__header__content * {
        text-align: center;
    }

    .testimonials__container .button {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .testimonials__header{
    }
    .testimonials__container--row {
        gap: 12px;
    }

    .testimonials__header {
        gap: 12px;
    }
.testimonials__header > svg{
    margin-bottom: 32px;
    width: 80px;
    height: auto;
}
   
}
@media (max-width: 576px) {
    .testimonials-carousel__item{padding: 28px;}
}