.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 120px 0;
}

.heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--content-max-width);
    padding-left: calc(120px - 12px);
    padding-right: 120px;
}

.content {
    width: 100%;
}

.swiper {
    margin-top: 48px;
    width: 100%;
    border-top: var(--border-width-sm) solid var(--border-color-light);
    border-bottom: var(--border-width-sm) solid var(--border-color-light);
}

.swiperSlide {
    height: auto;
    width: auto;
    flex-shrink: 0;
    position: relative;
}

.swiperSlide:first-child {
    padding-left: 96px;
}
.swiperSlide:last-child {
    padding-right: 96px;
}

.swiperSlide:not(:last-child)::after {
    content: '';
    display: block;
    position: absolute;
    width: 1px;
    background-color: var(--border-color-light);
    height: 85%;
    top: 7%;
    right: 0;
}

.progressButtons {
    display: flex;
    justify-content: center;
    align-items: center;
}

.progressButtons[data-device='mobile'] {
    display: none;
}

@media (width <= 1024px) {
    .progressButtons[data-device='desktop'] {
        display: none;
    }
    .progressButtons[data-device='mobile'] {
        display: flex;
        justify-content: flex-start;
        margin-left: 20px;
    }
}

@media (width <= 768px) {
    .container {
        padding: 64px 0;
    }

    .heading {
        padding: 0 20px;
    }

    .swiperSlide:first-child {
        padding-left: 20px;
    }
    .swiperSlide:last-child {
        padding-right: 20px;
    }

    .swiper {
        padding: 16px 0;
        margin-bottom: 40px;
    }
}
