.slick-arrow {
    position: absolute;
    bottom: 50%;
    right: 50%;
    color: #fff;
    padding: 8px 16px;
    z-index: 3;
    font-size: 14px;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .2s;
    border: 1px solid #fff;
    border-radius: 50%;
}

.slick-arrow.slick-disabled {
    opacity: .5;
    cursor: default;
}

.slick-arrow.next-arrow {
}

.slick-arrow:hover {
    background-color: #fff;
    color: var(--_light_blue);
}

.slick-dots {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    padding: 0 0 0 0;
    margin-bottom: 0;
    margin-right: 0;
    width: 100%;
    opacity: 1 !important;
}

.slick-dots > li {
    flex: 1;
    height: 10px;
    display:flex;
}

.slick-dots > li button {
    content: '';
    width: 100%;
    border: none;
    box-shadow: none;
    height: 10px;
    background-color: #B6E6FF;
    overflow: hidden;
    transition: .5s;
    color: #B6E6FF;
}

.slick-dots > li.slick-active button {
    background-color:#0655A4;
    color: #0655A4;
}

.testimonial-slider .slick-track {
    display: flex;
    align-items: center;
}

.testimonial-slider .slick-arrow.prev-arrow {

    left: calc(calc(50% - 25px) - 525px);
    right: unset;
}

.testimonial-slider .slick-arrow.next-arrow {
    left: calc(calc(50% - 25px) + 475px);
    right: unset;
}

@media all and (max-width: 992px) {
    .testimonial-slider .slick-arrow.prev-arrow {

        left: calc(calc(50% - 25px) - 30px);
        right: unset;
        bottom: 45px;
    }

    .testimonial-slider .slick-arrow.next-arrow {
        left: unset;
        right: calc(calc(50% - 25px) - 30px);
        bottom: 45px;
    }

    .testimonial-item {
        padding: 75px 25px 125px;
    }
}

