.slider-poles--container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

@media screen and (min-width: 992px) {
    .slider-poles--container {
        flex-direction: row;
        justify-content: space-between;
        gap: clamp(32px, 2.78vw, 40px);
    }
}

.slider-poles--header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    flex-shrink: 0;
}

@media screen and (min-width: 992px) {
    .slider-poles--header {
        align-items: flex-start;
    }
}

.slider-poles--item {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.slider-poles--item h4 {
    font-size: 1.5rem;
    color: var(--green);
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
}

.slider-poles--item img {
    border-radius: 8px;
    height: 280px;
    -o-object-fit: cover;
    object-fit: cover;
}

.slider-poles--item .infos {
    display: flex;
    gap: 16px;
    align-items: center;
}

.slider-poles--item .circle {
    --percentage: 0;
    --fill-color: #328269;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: conic-gradient(var(--fill-color) calc(var(--percentage) * 1%), #E0EAE6 0);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-poles--item .circle span {
    background: #fff;
    width: 18px;
    height: 18px;
    border-radius: 50%;
}

.slider-poles--slider {
    min-width: 1px;
}

@media screen and (max-width: 991px) {
    .slider-poles h3 {
        font-size: 2rem;
    }
}

.slider-poles .mobile {
    display: flex;
    justify-content: center;
}

@media screen and (min-width: 992px) {
    .slider-poles .mobile {
        display: none;
    }
}

.slider-poles .desktop {
    display: none;
}

@media screen and (min-width: 992px) {
    .slider-poles .desktop {
        display: flex;
        justify-content: flex-start;
    }
}

.slider-poles--navigation.is-hidden {
    display: none;
}