.service-list {
    width: calc(100% + 96px);
    padding: 96px 0;
    margin-left: -48px;
    margin-right: -48px;
    background-color: var(--background-secondary);
    border-radius: 16px;
    overflow: hidden;
}

section .service-list .section__heading {
    margin-bottom: 56px;
}

.service-list .section__title {
    font-size: 40px;
    height: 44px;
    hyphens: none;
}

.service-list__wrapper {
    width: 1248px;
    margin: 0 auto;
}

.service-list__swiper {
    position: relative;
}

.service-list__swiper .swiper-wrapper {
    align-items: stretch;
}

.service-list__slide {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: var(--background-primary);
    border-radius: 16px;
}

.service-list__image-wrapper {
    height: 426px;
}

.service-list__picture {
    display: block;
    width: 180px;
    height: 378px;
    margin: 48px auto 0;
}

.service-list__image {
    width: 180px;
    height: 378px;
    transform: translateZ(1px);
}

.service-list__content {
    padding: 48px;
    text-align: center;
}

.service-list__slide-title {
    margin-bottom: 8px;
    color: var(--text-primary);
}

.service-list__slide-description {
    color: var(--text-secondary);
}

.service-list .swiper-button {
    width: 48px;
    height: 48px;
    top: 50%;
    background-color: var(--button-secondary-enabled);
}

.service-list .swiper-button_prev {
    transform: translateY(-50%) translateX(-50%) rotate(180deg);
    left: 0;
}

.service-list .swiper-button_next {
    transform: translateY(-50%) translateX(50%);
    right: 0;
}

.service-list .swiper-buttonIcon {
    fill: var(--icon-tertiary);
    width: 24px;
    height: 24px;
}

@media (max-width: 1439px) {
    .service-list {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding: 96px 48px;
    }

    .service-list__wrapper {
        width: 100%;
        margin: 0;
    }

    .service-list .swiper-slide {
        width: 400px;
    }

    .service-list .swiper-button {
        display: none;
    }
}

@media (max-width: 1023px) {
    .service-list {
        width: calc(100% + 32px);
        margin-left: -16px;
        margin-right: -16px;
        padding: 32px 16px;
        border-radius: 0;
    }

    section .service-list .section__heading {
        margin-bottom: 48px;
    }

    .service-list .section__title {
        font-size: 28px;
        height: 32px;
    }

    .service-list .swiper-slide {
        width: 340px;
    }

    .service-list__image-wrapper {
        height: 410px;
    }

    .service-list__picture {
        margin: 32px auto 0;
    }

    .service-list__content {
        padding: 32px;
    }

    .service-list__slide-title {
        font-size: 22px;
        line-height: 26px;
    }
}