@charset "utf-8";
.swiper {
    width: 100%;
    height: 470px;
	background-color: white;
	-moz-box-shadow: 0px 1px 0px #c9c9c9;
	-webkit-box-shadow: 0px 1px 0px #c9c9c9;
	box-shadow: 0px 1px 0px #c9c9c9;
}
.swiper-wrapper {
	height: 500px;
	top: -15px;
}
.swiper-slide {
    text-align: center;
    font-size: 18px;
    background:  #fff;

    /* 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-content {
    width: 100%;
    height: 100%;
    display: block;
}
.swiper-content div, .swiper-slide div {
    display: block;
    height: 100%;
    width: 100%;
    background: no-repeat center 50%;
    background-size: auto 100%;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    color:  #000;
    opacity: 1;
    background: rgba(0, 0, 0, 0.2);
}

.swiper-pagination-bullet-active {
    color:  #fff;
    background:  #007aff;
}

.swiper-button-prev, .swiper-button-next {
    background: rgba(180, 180, 180, 0.25);
    padding: 8px 16px;
    border-radius: 15%;
    opacity: .2;
    -webkit-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
}
.swiper-button-prev:hover, .swiper-button-next:hover {
    opacity: .7;
}

