.swiper-container {
    position: relative;
    margin: 0 auto;
    width: 100%;
}

.swiper {
    padding: 50px 0 !important;
    height: fit-content;
    max-width: 1170px;
    position: relative;
}

.swiper-wrapper {
    align-items: center;
}

/* Navigation buttons */
.swiper-navigation {
    padding: 0 10px;
    max-width: 1320px;
    margin: 0 auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.swiper-next,
.swiper-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    z-index: 10;
    margin-top: 0;
    opacity: 0.4;
    transition: opacity 200ms;
    pointer-events: auto;
}

.swiper-next:hover,
.swiper-prev:hover {
    opacity: .9;
}

.swiper-prev {
    left: 10px;
    background-image: url('../../images/swiper-prev.svg');
}

.swiper-next {
    right: 10px;
    background-image: url('../../images/swiper-next.svg');
}

.swiper-next.swiper-button-disabled,
.swiper-prev.swiper-button-disabled {
    opacity: .1;
}