/* STATISTICS */
.impact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 250px !important;
    height: 250px;
    border: 1px solid var(--color-white);
    padding: 30px 15px;
}

@media (max-width: 850px) and (min-width: 760px) {
    .impact {
        width: 220px !important;
        height: 220px;
    }
}

@media (max-width: 760px) and (min-width: 640px) {
    .impact {
        width: 180px !important;
        height: 180px;
    }
}

@media (max-width: 640px) and (min-width: 550px) {
    .impact {
        width: 150px !important;
        height: 150px;
    }
}

@media (max-width: 550px) {
    #about_impact .subtitle.mb-40 {
        margin-bottom: 35px;
    }

    .impact-wrapper {
        justify-content: center;
    }

    .impact {
        max-width: 50%;
        width: 200px !important;
        height: 200px;
    }

    .impact > h3 {
        margin-bottom: 0;
    }

    .impact > h4 {
        font-size: 1.15rem;
    }
}

@media (max-width: 460px) {
    .impact {
        width: 160px !important;
        height: 160px;
    }
}

@media (max-width: 380px) {
    .impact {
        width: 130px !important;
        height: 130px;
    }
}
/* /STATISTICS */

/* REVIEWS */
.scale-slider-wrapper {
    position: relative;
}

.client-review {
    align-items: center;
    gap: 30px;
}

.client-img {
    width: 250px;
    height: 250px;
    object-fit: cover;
}

.client-info {
    width: calc(100% - 250px - 30px);
    flex: 1;
}

.client-review > p:last-child {
    margin-bottom: 0;
}

.client-review strong {
    font-size: var(--font-md);
    color: var(--color-primary);
    font-weight: var(--font-regular);
}

@media (max-width: 544px)  {
    .events-wrapper.element-scroll-mobile .slick-track {
        width: 100% !important;
    }

    .client-info {
        width: 100%;
        text-align: center;
    }

    .client-review {
        justify-content: center;
    }

    .scale-slider-wrapper .scale-slider-controls {
        justify-content: space-between;
        top: calc(250px / 2 - 18px / 2);
    }
}
/* /REVIEWS */