
.swiper-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
}
.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    border: black 0px solid;
    /* 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;
}


.button-next {
    position: absolute;
    top: var(--swiper-navigation-top-offset, 50%);
    left:0px;
    width:34px;
    height:34px;
    margin-top: calc(-50px - (var(--swiper-navigation-size)/2));
    z-index: 1000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 17px;
    -moz-border-radius: 17px;
    -webkit-border-radius: 17px;
    -khtml-border-radius:17px;
    -o-border-radius:17px;
}

.button-prev {
    position: absolute;
    padding-top: 1px;
    padding-left: 1px;
    top: var(--swiper-navigation-top-offset, 50%);
    right:0px;
    width:34px;
    height:34px;
    margin-top: calc(-50px - (var(--swiper-navigation-size)/2));
    z-index: 1000;
    cursor: pointer;
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 17px;
    -moz-border-radius: 17px;
    -webkit-border-radius: 17px;
    -khtml-border-radius:17px;
    -o-border-radius:17px;
}