.testimonial-section .section__header {
    text-align: center;
}

.testimonial-section__slider {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.testimonial-section__content {
    width: 100%;
}

.testimonial-section__content .slick-track {
    display: flex;
    margin-bottom: 64px;
}

.testimonial-section__content .slick-slide {
    height: inherit;
    padding: 0 16px 16px 16px;
}

.testimonial-section__content .slick-slide > div {
    height: 100%;
}

.testimonial-section__content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 860px;
    position: relative;
}

.testimonial-section__slider__item {
    height: 100%;
    text-align: center;
    padding: 32px;
    background-color: var(--color-primary);
    display: inline-flex !important;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.testimonial-section__slider__item.testimonial-section__slider__item--full {
    color: #fff;
}

.testimonial-section__slider__item:not(.testimonial-section__slider__item--full) p {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}

.testimonial-section__slider__item h3 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #fff;
}


.testimonial-button {
    border-radius: 50%;
    background-color: transparent;
    background-color: transparent;
    position: absolute;
    border: 0;
    border: 2px solid #fff;
    overflow: hidden;
    width: 50px;
    height: 50px;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 0);
    z-index: 1;
}

.testimonial-button:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 10px;
    height: 10px;
    border: 2px solid var(--color-white);
    z-index: 1;
    transition: border 0.3s ease-in-out;
}

.testimonial-button:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(0);
    transition: transform 0.3s ease-in-out;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--color-white);
}



.testimonial-button--prev:before {
    border-top: 0;
    border-right: 0;
    left: 4px;
}

.testimonial-button--prev {
    margin-left: -30px;
}

.testimonial-button--next {
    margin-left: 30px;
}



.testimonial-button--next:before {
    border-bottom: 0;
    border-left: 0;
    right: 4px;
}


.testimonial-section__content{
    display: block;
    position: relative;
}


.testimonial-section__content .mcfx-reviews{
    /*display: flex;
    flex-wrap: wrap;
    gap: 20px;*/
}


.testimonial-section__content .mcfx-reviews .mcfx-review{
    height: 100%;
    text-align: center;
    padding: 32px;
    background-color: var(--color-primary);
    display: inline-flex !important;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;    
    font-size: 18px;
    font-weight: 300;
    max-width: 420px;
    font-family: "Roboto", sans-serif;
    line-height: 1.6em;
}


.testimonial-section__content .mcfx-reviews .mcfx-review .mcfx-review-author{
    text-transform: capitalize;
    font-size: 22px;
    font-weight: 700;
    margin-right: 10px;
    font-family: var(--font-primary);
}


.testimonial-section__content .mcfx-reviews .mcfx-review .mcfx-review-date{
    font-size: 16px;
}


.testimonial-section__content .mcfx-reviews .mcfx-review .mcfx-review-number-rating{
    display: none;
}


.testimonial-section__content .mcfx-reviews .mcfx-review .mcfx-review-stars{
    display: block;
    margin: 5px 0;
}


.testimonial-section__content .mcfx-reviews .mcfx-review .mcfx-star{
    width: 20px;
    height: 20px;
    display: inline-block;    
    background: #F8CA00;
    aspect-ratio: 1;
    clip-path: polygon(50% 0,79% 90%,2% 35%,98% 35%,21% 90%);       
}


@media (min-width: 1025px) {
    .testimonial-section__slider {
        margin-top: 0;
        justify-content: space-between;
        width: calc(70% - 16px);
    }

    .testimonial-section .section__header {
        margin-top: 60px;
        width:calc(30% - 16px);
        text-align:left
    }

    .testimonial-section .container{
        display:flex;
        flex-wrap:wrap;
        justify-content:space-between
    }

    .testimonial-section__slider__item h3 {
        margin-top: 35px;
    }

    .testimonial-button:hover:after {
        transform: scale(1);
    }

    .testimonial-button:hover:before {
        border-color: #292828;
        transition-delay: 0.15s;
    }

    .testimonial-button:hover {
        border-color: #fff;
    }
    
    .testimonial-button--prev {
        margin-left: -40px;
    }

    .testimonial-button--next {
        margin-left: 40px;
    }

    
    
    .testimonial-button {
        width: 56px;
        height: 56px;
    }
}