/*====================================================*
TESTIMONIAL SECTION
*====================================================*/

.testimonial-section {

    width: 100%;

    padding: 75px 0 65px;

    background: #ffffff;

    overflow: hidden;

}



/*====================================================*
TESTIMONIAL HEADING
*====================================================*/

.testimonial-heading {

    text-align: center;

    margin-bottom: 58px;

}


.testimonial-label {

    display: block;

    margin-bottom: 12px;

    color: #4939e6;

    font-size: 23px;

    line-height: 1.3;

    font-weight: 400;

}


.testimonial-heading h2 {

    margin: 0;

    color: #0b0b0b;

    font-size: 46px;

    line-height: 1.2;

    font-weight: 700;

}



/*====================================================*
SLIDER AREA
*====================================================*/

.testimonial-slider {

    width: 100%;

    max-width: 1245px;

    margin: 0 auto;

    overflow: hidden;

    padding-bottom: 2px;

}



/*====================================================*
SLIDER TRACK
*====================================================*/

.testimonial-track {

    display: flex;

    gap: 28px;

    padding-right: 1px;

    transition: transform 0.65s ease;

    will-change: transform;

}



/*====================================================*
TESTIMONIAL CARD
*====================================================*/

.testimonial-card {

    flex: 0 0 calc((100% - 56px) / 3);

    min-height: 375px;

    padding: 29px 29px 25px;

    border: 1px solid #e2e2e2;

    background: #ffffff;

    display: flex;

    flex-direction: column;

    box-sizing: border-box;

}



/*====================================================*
REVIEW USER
*====================================================*/

.review-user {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 32px;

}


.review-image {

    position: relative;

    width: 58px;

    height: 58px;

    flex-shrink: 0;

}


.review-image img {

    width: 58px;

    height: 58px;

    object-fit: cover;

    display: block;

}



/*====================================================*
QUOTE ICON
*====================================================*/

.quote-icon {

    position: absolute;

    right: -10px;

    top: -3px;

    width: 31px;

    height: 31px;

    border-radius: 50%;

    background: #4939e6;

    color: #ffffff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 24px;

    line-height: 1;

    font-weight: 700;

    font-family: Arial, sans-serif;

}



/*====================================================*
USER INFORMATION
*====================================================*/

.review-user-info h3 {

    margin: 0 0 4px;

    color: #111111;

    font-size: 17px;

    line-height: 1.3;

    font-weight: 600;

}


.review-user-info p {

    margin: 0;

    color: #777777;

    font-size: 14px;

    line-height: 1.4;

    font-weight: 400;

}



/*====================================================*
REVIEW TEXT
*====================================================*/

.review-text {

    margin: 0;

    color: #777777;

    font-size: 15px;

    line-height: 1.8;

    font-weight: 400;

    flex: 1;

}



/*====================================================*
REVIEW BOTTOM
*====================================================*/

.review-bottom {

    margin-top: 28px;

}


.review-line {

    width: 100%;

    height: 1px;

    background: #e5e5e5;

    margin-bottom: 20px;

}


.review-stars {

    text-align: right;

    color: #ff9b42;

    font-size: 24px;

    line-height: 1;

    letter-spacing: 1px;

}



/*====================================================*
DOTS
*====================================================*/

.testimonial-dots {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 10px;

    margin-top: 55px;

}


.testimonial-dot {

    width: 17px;

    height: 17px;

    padding: 0;

    border: 2px solid #d0d0d0;

    border-radius: 50%;

    background: #ffffff;

    cursor: pointer;

    transition: all 0.25s ease;

}


.testimonial-dot.active {

    border-color: #4939e6;

}


.testimonial-dot:hover {

    border-color: #4939e6;

}



/*====================================================*
TABLET
*====================================================*/

@media (max-width: 992px) {

    .testimonial-section {

        padding: 65px 25px;

    }


    .testimonial-heading h2 {

        font-size: 38px;

    }


    .testimonial-slider {

        max-width: 900px;

    }


    .testimonial-track {

        gap: 20px;

    }


    .testimonial-card {

        flex: 0 0 calc((100% - 20px) / 2);

        min-height: 360px;

        padding: 25px 22px;

    }


    .review-text {

        font-size: 14px;

    }

}



/*====================================================*
MOBILE
*====================================================*/

@media (max-width: 768px) {

    .testimonial-section {

        padding: 55px 20px 60px;

    }


    .testimonial-heading {

        margin-bottom: 40px;

    }


    .testimonial-label {

        font-size: 20px;

    }


    .testimonial-heading h2 {

        font-size: 32px;

    }


    .testimonial-track {

        gap: 20px;

    }


    .testimonial-card {

        flex: 0 0 100%;

        min-height: 320px;

    }

}



/*====================================================*
SMALL MOBILE
*====================================================*/

@media (max-width: 480px) {

    .testimonial-heading h2 {

        font-size: 28px;

    }


    .testimonial-label {

        font-size: 18px;

    }


    .testimonial-card {

        padding: 23px 20px;

    }


    .review-text {

        font-size: 14px;

    }


    .review-stars {

        font-size: 21px;

    }

}