.section-icons .wrapper {
    flex-direction: column;
}

.section-icons .wrapper .slider-icons-row {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    margin-bottom: 0;
}

.section-icons {
    padding-bottom: 0;
    margin-top: 32px;
}

.section-icons .wrapper .slider-icons-row .slider-icons__title {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 12px;
    color: #1F3357;
    padding: 16.5px 12px;
    background: rgba(222, 232, 248, 1);
    border: 1px solid rgba(222, 232, 248, 1);
    text-wrap: nowrap;
    margin-top: 0;
}

.section-icons .wrapper .slider-icons-row .slider-icons__title.active {
    border: 1px solid rgba(31, 51, 87, 1)
}


/* дорожка скролла */
.icons-slider__track {
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.icons-slider__track::-webkit-scrollbar {
    display: none;
}

/* навигация под лентой */
.icons-slider__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 36px;
}


.icons-nav {
    border: 0;
    background: transparent;
    font-size: 20px;
    line-height: 1;
    padding: 4px 6px;
    cursor: pointer;
    color: #1F3357;
    opacity: .9;
}

.slider-icons__slide {
    width: fit-content;
    margin-left: 0;
}

.icons-nav:disabled {
    opacity: .25;
    cursor: default;
}

.icons-dots {
    display: flex;
    gap: 6px;
    align-items: center;
}
.section-icons-title {
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 48px;
    text-transform: uppercase;
    color: #1F3357;
    text-align: start;
    margin-bottom: 32px;
}
.icons-dot {
    width: 8px;
    height: 8px;
    border: 0;
    background: rgba(222, 232, 248, 1);
    cursor: pointer;
}

.icons-dot.is-active {
    background: rgba(31, 51, 87, 1);
}

@media screen and (max-width: 768px) {
    .icons-slider__nav {
        padding-top: 16px;
    }
    .section-icons {
        margin-top: 24px;
    }
    .section-icons-title {
        margin-bottom: 24px;
        font-style: normal;
        font-weight: 700;
        font-size: 24px;
        line-height: 28px;
        text-transform: uppercase;
    }
}