.counter-slider-wrapper {
    overflow: hidden;
}
.counter-slider-wrapper .slick-list{
    min-height: 400px !important;
}
.counter-slider-wrapper .slick-slide{
    transition: .3s all ease-in-out;
}
.counter-slider-wrapper .slick-slide.slick-active{
    scale: 1.3;
}
.counter-slider {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.counter-item {
    text-align: center;
    opacity: 0;
    transform: translateY(100%);
    animation: slideInUp 0.6s ease-out forwards;
    animation-delay: var(--slide-delay);
}
.counter-item.slick-active {
    opacity: 1;
}
@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.counter-value {
    font-weight: bold;
}
.counter-title {
    margin-top: 10px;
    margin-bottom: 0;
}