
.stat-cards-slider {
    width: 100%;
    padding: 34px 0 68px;
    overflow: hidden;
}

.stat-cards-slider__viewport {
   overflow: hidden;
    padding-bottom: 52px;
    margin-bottom: -52px;
}

.stat-cards-slider__track {
    display: flex;
    gap: 48px;
    transition: transform 0.45s ease;
    will-change: transform;
    padding-right: 30px;
    box-sizing: content-box;
}

.stat-cards-slider__card {
    flex: 0 0 calc((100% - 144px) / 4);
    min-width: 0;
    min-height: 304px;
    border: 1px solid #b9cbe0;;
    background: #fff;
    position: relative;
    padding: 44px 32px 62px;
    box-sizing: border-box;
}

.stat-cards-slider__title {
    margin: 0 0 14px;
    color: #0d005c;
    font-size: 32px;
    line-height: 1.1;
    font-weight: 700;
}

.stat-cards-slider__subtitle {
    color: #66778b;;
    font-size: 27px;
    line-height: 1.2;
    font-weight: 400;
}

.stat-cards-slider__content {
    margin-top: 14px;
    color: #66778b;;
    font-size: 15px;
    line-height: 1.45;
}

.stat-cards-slider__icon-wrap {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    border: 1px solid #16d7c1;
    background: #fff;
    position: absolute;
    right: -25px;
    bottom: -48px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.stat-cards-slider__icon {
    display: block;
    max-width: 43px;
    max-height: 43px;
    width: auto;
    height: auto;
}

.stat-cards-slider__controls {
    margin-top: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.stat-cards-slider__arrow {
    width: 42px;
    height: 42px;
    border: 1px solid #0d005c;
    background: #fff;
    color: #0d005c;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
}

.stat-cards-slider__arrow:disabled {
    opacity: .35;
    cursor: default;
}

.stat-cards-slider__dots {
    display: flex;
    gap: 8px;
}

.stat-cards-slider__dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #c4ccd6;
    cursor: pointer;
}

.stat-cards-slider__dot.is-active {
    background: #0d005c;
}

@media (max-width: 1199px) {
    .stat-cards-slider__track { gap: 28px; }
    .stat-cards-slider__card { flex-basis: calc((100% - 56px) / 3); }
}

@media (max-width: 991px) {
    .stat-cards-slider__card { flex-basis: calc((100% - 28px) / 2); }
}

@media (max-width: 575px) {
    .stat-cards-slider { padding-bottom: 58px; }
    .stat-cards-slider__track { gap: 18px; }
    .stat-cards-slider__card {
        flex-basis: 100%;
        min-height: 285px;
        padding: 36px 26px 60px;
    }
    .stat-cards-slider__title { font-size: 29px; }
    .stat-cards-slider__subtitle { font-size: 24px; }
    .stat-cards-slider__icon-wrap { right: 18px; }
}
@media (max-width: 1199px) {
    .stat-cards-slider__track { gap: 28px; }
    .stat-cards-slider__card {
        flex-basis: calc((100% - 56px) / 3);
        width: calc((100% - 56px) / 3);
    }
}

@media (max-width: 991px) {
    .stat-cards-slider__card {
        flex-basis: calc((100% - 28px) / 2);
        width: calc((100% - 28px) / 2);
    }
}

@media (max-width: 575px) {
    .stat-cards-slider {
        padding: 24px 0 42px;
    }

    .stat-cards-slider__viewport {
        padding: 0 28px 52px 0;
    }

    .stat-cards-slider__track {
        gap: 18px;
    }

    .stat-cards-slider__card {
        flex: 0 0 100%;
        width: 100%;
        min-height: 370px;
        padding: 34px 26px 62px;
    }

    .stat-cards-slider__title { font-size: 29px; }
    .stat-cards-slider__subtitle { font-size: 24px; }
    .stat-cards-slider__icon-wrap { right: -18px; }
    .stat-cards-slider__controls { margin-top: 12px; }
}
@media (max-width: 575px) {
    .stat-cards-slider {
        overflow: visible;
    }

    .stat-cards-slider__viewport {
        overflow: visible;
        padding: 0;
    }

    .stat-cards-slider__track {
        flex-direction: column;
        gap: 72px;
        transform: none !important;
        transition: none;
    }

    .stat-cards-slider__card {
        flex: 0 0 auto !important;
        width: 100% !important;
        min-width: 100%;
        min-height: 0;
        padding: 34px 26px 70px;
    }

    .stat-cards-slider__icon-wrap {
        right: 18px;
        bottom: -40px;
    }

    .stat-cards-slider__controls {
        display: none !important;
    }
}