.testimonial-section {
    padding: 122px 0 77px;
}

/**/
.testimonial-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.testimonial-section {
    position: relative;
}

    .testimonial-section > * {
        position: relative;
        z-index: 1;
    }



    .testimonial-section .section-title {
        margin: 0 0 15px;
        padding: 0;
        border: none;
        font-size: 40px;
        font-weight: 600;
        color: #3a3a3a;
        text-align: center;
    }

.section-subtitle {
    font-family: var(--secondary-fonts);
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 60px;
    color: #808285;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-slider .slick-track {
    display: flex;
    gap: 26px;
}

.testimonial-item {
    display: flex;
}

    .testimonial-item > .content {
        font-family: var(--secondary-fonts);
        position: relative;
        padding: 40px 57px 58px 57px;
        text-align: left;
        box-shadow: 1px 1px 9px 6px hsl(0deg 0% 87% / 25%);
        background: var(--white-color);
        display: flex;
        flex-direction: column;
    }

        .testimonial-item > .content::before {
            position: absolute;
            top: -30px;
            left: 50%;
            transform: translateX(-50%);
            content: '';
            background-image: url('../img/quote-icon.webp');
            background-repeat: no-repeat;
            background-size: contain;
            width: 70px;
            height: 50px;
        }

.testimonial-item__img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
}

    .testimonial-item__img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

.testimonial-item__meta-details .author {
    font-size: 21px;
    font-weight: 600;
    line-height: 25px;
    color: #3a3a3a;
}

.testimonial-item__meta-details .designation {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}

.testimonial-item__meta-details .rating {
    width: 95px;
    height: 14px;
    background-image: url('../img/rating1.png');
    background-repeat: repeat-x;
    background-size: contain;
    overflow: hidden;
    margin: 20px auto 0;
}

    .testimonial-item__meta-details .rating div {
        height: 14px;
        background-image: url('../img/rating2.png');
        background-repeat: repeat-x
    }

.testimonial-item__meta-details .rating-score .value {
    display: inline-block;
    padding: 7px 15px;
    border-radius: 16px;
    background-color: #4ab2f1;
    color: #fff;
    line-height: 1.2;
    font-size: 13px;
    font-weight: 700;
}

.testimonial-section .add-btn-wrap {
    text-align: center;
    margin-top: 50px;
}

.testimonial-section .slick-dotted.slick-slider {
    margin-bottom: 0;
    padding-bottom: 50px;
}

.testimonial-section .slick-dots {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

    .testimonial-section .slick-dots li {
        margin: 0;
        padding: 0;
    }

        .testimonial-section .slick-dots li button {
            display: block;
            width: 12px;
            height: 12px;
            padding: 0;
            border: 0;
            background: transparent;
            cursor: pointer;
        }

            .testimonial-section .slick-dots li button:before {
                content: '';
                width: 12px;
                height: 12px;
                background-color: #808285;
                border-radius: 50%;
                display: block;
                transition: background-color 0.3s ease;
            }

        .testimonial-section .slick-dots li.slick-active button:before {
            background-color: #3a3a3a;
            opacity: 1;
        }

        .testimonial-section .slick-dots li:hover button:before {
            background-color: #3a3a3a;
        }

/* Testimonial Footer Section */
.testimonial-item__footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: auto;
    gap: 20px;
    font-family: Signika, serif;
}

.testimonial-item__desc-wrap {
    flex-grow: 1;
}

/* ADD TESTIMONIAL PAGE */
.add-testimonial-page .page-title {
    margin-bottom: 20px;
}

.add-testimonial-page .form-fields {
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    padding: 40px;
}

    .add-testimonial-page .form-fields .inputs {
        margin-bottom: 25px;
    }

    .add-testimonial-page .form-fields input[type="number"] {
        height: 40px;
        border: 1px solid #ddd;
        padding: 8px;
        vertical-align: middle;
    }
