/* Testimonials Section */
.testimonials {
    background-color: #3C393C;
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
    margin: 0 !important;
}

.testimonials__container {
    max-width: 1000px;
    margin: 0 auto;
}

.keen-slider {
    overflow: hidden;
}

.testimonials__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.testimonials__icon {
    display: flex;
    gap: 0.5rem;
}

.testimonials__quote {
    color: #FFF;
    text-align: center;
    font-family: "Libre Baskerville", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

@media (max-width: 992px) {
    .testimonials__quote {
        font-size: 20px;
    }
}

.testimonials__author {
    font-size: 1rem;
    font-weight: 700;
    margin-top: 1rem;
    color: #9b9b9b;
}

.testimonials__author::before {
    content: "";
    font-weight: normal;
}

/* Dots styling */
.dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 80px;
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #666;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #fff;
}
