.testimonial-slider-with-content {
    position: relative;

    .container {
        position: relative;
        z-index: 2;
    }
}

@media (min-width: 1200px) {
    .testimonial-slider-with-content {
        padding-bottom: calc(96px + 120px);
    }
}

.testimonial-slider-with-content__p-icon {
    width: 262px;
    position: absolute;
    bottom: 0;
    left: 20px;
    z-index: 1;
    display: none;

    img {
        width: 100%;
        height: auto;
    }
}

@media (min-width: 1200px) {
    .testimonial-slider-with-content__p-icon {
        display: block;
    }

    .testimonial-slider-with-content:before {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        background-color: #fff;
        width: calc(50% - 200px);
        height: 100%;
    }

    .testimonial-slider-with-content:after {
        content: "";
        display: block;
        position: absolute;
        bottom: 0;
        right: 0;
        background-color: #fff;
        width: calc(50% - 200px);
        height: 120px;
    }

    .testimonial-slider-with-content__bg-primary:after {
        background: #fff
    }

    .testimonial-slider-with-content__bg-off-white:after {
        background: var(--off-white)
    }

    .testimonial-slider-with-content__bg-light-green:after {
        background: var(--light-green)
    }

    .testimonial-slider-with-content__bg-green:after {
        background: var(--green);
    }
       
}

.testimonial-slider-with-content__row {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    align-items: center;
}

.testimonial-slider-with-content__item {
    width: 100%;
    margin: 0 0 20px;

    &:last-child {
        margin-bottom: 0;
    }
}

.testimonial-slider-with-content__slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;

    .slick-list {
        order: 0;
        width: 100%;
        margin-bottom: 20px;
    }

    .slick-arrow {
        order: 2;
        position: relative;
        left: 0;
        right: 0;
        margin: 0 7px;
        transform: none;
    }

    .slick-dots {
        order: 1;
        position: relative;
        top: 0;
        left: 0;
        width: auto;
        padding-left: 0;
        padding-right: 20px;
        width: 230px;
        display: flex !important;
        gap: 0;

        li {
            flex: 1;
            border-radius: 0;
            height: 5px;
            border: 0;

            button {
                display: block;
                width: 100%;
                height: 100%;
                background-color: #F5F7F8;
                border-radius: 0;
                border: 0;
                position: relative;
            }

            button:before {
                content: "";
                display: block;
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-color: #98C6C3;
                transform: scaleX(0);
                transform-origin: left center;
                transition: transform 0.3s ease-in-out;
            }
        }

        li.slick-dot-active {
            button {

                &:before {
                    transform: scaleX(1);
                }
            }
        }
    }
}

@media (max-width: 767px) {
    .testimonial-slider-with-content__slider {
        justify-content: center;

        .slick-dots {
            display: none !important;
        }
    }
}

.testimonial-slider-with-content__slider-item {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.slick-current .testimonial-slider-with-content__slider-item {
    opacity: 1;
}

.testimonial-slider-with-content__slider-card {
    padding: 30px 32px;
    background-color: #fff;
    box-shadow: 0 0 20px 0 rgba(76, 102, 105, 0.12);
    position: relative;
}

.testimonial-slider-with-content__slider-card-content {
    height: 190px;
    overflow-y: auto;
    padding-right: 10px;
    
    p {
        color: #575757;
    }
}

.testimonial-slider-with-content__slider-card-content::-webkit-scrollbar {
    width: 4px;
}

.testimonial-slider-with-content__slider-card-content::-webkit-scrollbar-track {
    border-radius: 0;
    background-color: #f2f5f5;
}

.testimonial-slider-with-content__slider-card-content::-webkit-scrollbar-thumb {
    border-radius: 0;
    background-color: #98c5c3;
}

.testimonial-slider-with-content .testimonial-slider-with-content__slider-card-content-client {
    margin-top: 50px;
    margin-bottom: 0;
    font-size: 20px;
    color: #68ABA7;
    text-transform: uppercase;
}

.testimonial-slider-with-content__icon {
    position: absolute;
    bottom: 32px;
    right: 32px;
    width: 53px;

    svg {
        width: 100%;
        height: auto;
    }
}

@media (min-width: 860px) {
    .testimonial-slider-with-content__item:first-child {
        width: 50%;
    }

    .testimonial-slider-with-content__item:last-child {
        width: 50%;
        padding-left: 20px;
    }
}

@media (min-width: 1200px) {
    .testimonial-slider-with-content__item:first-child {
        width: 585px;
    }

    .testimonial-slider-with-content__item:last-child {
        width: calc(100% - 585px);
        padding-left: 63px;
    }

    .testimonial-slider-with-content__slider {
        .slick-list {
            margin-inline: -20px;
        }
        
        .slick-slide {
            padding: 20px;
        }
    }
}