.container {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-top: 120px;
}

.heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 120px;
    width: 100%;
    max-width: var(--content-max-width);
    margin: 0 auto;
}

.swiper {
    padding-top: 80px;
    padding-bottom: 120px;
    width: 100%;
}

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

.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;
    }
}

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

    .heading {
        padding: 0 20px;
    }

    .swiper {
        padding: 40px 0;
    }
}
