.sections-block {
    margin-top: var(--twenty);
    position: relative;
}

.sections-block .sections-swiper__holder {
    width: 100%;
}

.sections-block .swiper-slide {
    max-width: 170px;
}

.sections-block .swiper-slide.sbMain {
    max-width: 270px;
}

.section-item {
    width: 100%;
    height: 100%;
    align-self: stretch;
    min-height: 160px;
    display: flex;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.section-item .section-item__inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    align-self: stretch;
    justify-content: space-between;
    gap: 15px;
    padding: var(--twenty) var(--twentyFive);
}

.section-item .section-item__photo {
    width: fit-content;
    height: fit-content;
    overflow: hidden;
    display: flex;
    pointer-events: none;
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.section-item .section-item__photo img {
    width: 80px;
    height: 80px;
    display: flex;
    object-fit: contain;
}

.section-item .section-item__name {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: var(--1816);
    line-height: 120%;
    color: var(--black);
}

.section-item:hover .btn {
    background: var(--black);
    border-color: var(--black);
    color: var(--white);
}

.sections-block .arrowLeft {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -20px;
    z-index: 2;
    margin-top: auto;
    margin-bottom: auto;
}

.sections-block .arrowRight {
    position: absolute;
    top: 0;
    bottom: 0;
    right: -20px;
    z-index: 2;
    margin-top: auto;
    margin-bottom: auto;
}

.sections-block .arrow {
    opacity: 0;
    pointer-events: none;
}

.sections-block :hover .arrow {
    opacity: 1;
    pointer-events: all;
}

.sections-block :hover .arrow.swiper-button-disabled {
    opacity: .5;
    pointer-events: none;
}

.sections-block .sections-swiper__holder .swiper {
    border-radius: 10px;
    overflow: hidden;
    /* margin-right: -10px; */
}

@media(max-width:1270px) {
    .sections-block .arrowLeft {
        left: 0;
    }

    .sections-block .arrowRight {
        right: 0;
    }
}