:root{
    --swiper-theme-color: #02B65B
}
.swiper {
    width: 100%;
    height: 100%;
}

.mySwiperBanner{
    position: relative;
    height: 600px;
    width: 100vw;
    background-color: rgba(0,0,0,0.5);
    margin-top: 179px;
    border-radius: 0% 0% 50% 50% / 25% 25% 15% 15%;
    overflow: hidden;
}

.swiper-info{
    position: absolute;
    z-index: 10;
    width: 100%;
    height: 100%;
	background-color: rgba(0,0,0,0.3);
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
}

.swiper-pagination{
    position: static;
}

/*RWD*/

@media(min-width:720px) {
    .mySwiperBanner{
        position: relative;
        height: 700px;
        border-radius: 0;
    }
}