.testimonials-block-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 40px;
    padding-top: 70px;
    padding-bottom: 70px;

    .testimonials-title {
        font-family: Demo;
        font-size: 48px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.21;
        letter-spacing: normal;
        text-align: center;
        color: rgb(0, 43, 70);
        margin: 0;
    }

    .testimonials-block-grid {
        display: flex;
        column-gap: 30px;
        justify-content: center;
    }


    /*testimonials slider*/
    .testimonial_slider_wrapper {
        overflow: visible !important;
            display: table;
            table-layout: fixed;
            width: 100%;

        .slick-list {
            margin: 0 -15px;
        }

        .slick-slide {
            margin: 0 15px;
        }

        button.slick-next,
        button.slick-prev {
            background: transparent !important;
            border: 0;
            position: absolute;
            top: 33%;
            color: #00b5d3 !important;
            width: 24px;
            padding: 0;
            font-family: "Font Awesome 5 Pro";
        }

        button.slick-next {
            left: auto;
            right: 0;
            transform: translate(78px, -28px);
        }

        button.slick-prev {
            left: 0;
            right: auto;
            transform: translate(-78px, -28px);
        }

        @media (max-width: 1300px) {
            button.slick-next {
                transform: translate(30px, -23px);
            }
            button.slick-prev {
                transform: translate(-30px, -23px);
            }
        }

        .fal::before {
            font-size: 64px;
            font-weight: 200;
            height: auto;
            display: inline-block;
            width: 24px;
        }

        .fa-angle-right:before {
            content: url("../icons/chevron-right-solid.svg");
        }
        .fa-angle-left:before{
            content: url("../icons/chevron-left-solid.svg");
        }

    }

    .single-testimonial-wrapper-link {
        width: calc(100% / 3);
    }

    .single-testimonial-wrapper {
        width: 100%;
        display: flex;
        flex-direction: column;
        row-gap: 24px;
    }

    .img-wrapper {
        width: 100%;
        object-fit: contain;
    }

    .img-wrapper img {
        width: 100%;
    }

    .single-testimonial-content {
        display: flex;
        flex-direction: column;
        row-gap: 8px;
        padding-left: 40px;
    }

    .single-testimonial-content .title {
        font-family: Inter;
        font-size: 18px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.56;
        letter-spacing: normal;
        text-align: left;
        color: #002c45;
    }

    .single-testimonial-content .credit {
        font-family: Inter;
        font-size: 18px;
        font-weight: bold;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.56;
        letter-spacing: normal;
        text-align: left;
        color: #002c45;
    }

    .single-testimonial-content .related-crop {
        font-family: Inter;
        font-size: 18px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.56;
        letter-spacing: normal;
        text-align: left;
        color: #00b5d3;
    }

    .single-testimonial-content .location {
        font-family: Inter;
        font-size: 18px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.56;
        letter-spacing: normal;
        text-align: left;
        color: #002c45b3;
    }

    .testimonials-button {
        padding-top: 24px;
    }


    @media (max-width: 768px) {
        row-gap: 24px;
        padding: 30px 20px;
        align-items: flex-start;

        .testimonials-title {
            font-size: 28px;
            line-height: normal;
        }

        .testimonials-block-grid {
            justify-content: flex-start;
            overflow-x: scroll;
            width: calc(100% + 40px);
            padding: 0 20px;
            margin-left: -20px !important
        }

        .testimonials-block-grid::-webkit-scrollbar {
            display: none;
        }

        /* Hide scrollbar for IE, Edge and Firefox */
        .testimonials-block-grid {
            -ms-overflow-style: none;  /* IE and Edge */
            scrollbar-width: none;  /* Firefox */
        }

        .single-testimonial-wrapper-link {
            width: 213px;
            min-width: 213px;
        }

        .single-testimonial-content {
            padding-left: 0;
        }

        .single-testimonial-content .title {
            font-size: 16px;
        }

        .single-testimonial-content .credit {
            font-size: 16px;
        }

        .single-testimonial-content .related-crop {
            font-size: 16px;
            line-height: 1.31;
        }

        .single-testimonial-content .location {
            font-size: 16px;
        }

        .testimonials-button {
            padding-top: 6px;
            width: 100%;
        }
    }

}