.swiper-container {
    width: 100%;
    z-index: 1;
}

.swiper-wrapper {
    height: auto;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    height: auto;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.swiper-slide img {
    width: 100%;
}

.swiper-button-next, .swiper-button-prev {
    position: absolute;
    top: 40%;
    margin-top: -22px;
    z-index: 10;
    width: 46px;
    height: 46px;
    background: #fff;
}

.swiper-button-next {
    right: 5px;
}

.swiper-button-prev {
    left: 5px;
}

.swiper-button-next:before {
    content: '';
    position: relative;
    width: 22px;
    height: 22px;
    border: 2px solid #a5a2a2;
    top: 12px;
    left: 4px;
    display: inline-block;
    transform: rotate(45deg);
    border-bottom: none;
    border-left: none;
}

.swiper-button-prev:before {
    content: '';
    position: relative;
    width: 22px;
    height: 22px;
    border: 2px solid #a5a2a2;
    top: 12px;
    left: 17px;
    display: inline-block;
    transform: rotate(45deg);
    border-top: none;
    border-right: none;
}
