
.large-slider-container{
	height: auto;
	width: 100%;
    margin: 0 auto;
    margin-bottom: 100px;
}
.large-swiper {
  height: 600px;
  overflow: hidden;
  position: relative;
}
.swiper-slide-inside {
	height: 100%;
	width: 100%;
	float: left;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #e9f0f4;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.swiper-caption {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .5);
    color:#ffffff;
    padding: 15px;
    font-weight: bold;
}
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 30px;
    height: 30px;
    margin: auto;
    background-repeat: no-repeat;
    z-index: 4;
}
.prev {
    left: 20px;
    background-image: url('left.png');
}
.next {
    right: 20px;
    background-image: url('right.png');
}

@media only screen and (max-width: 800px) {
    .large-swiper {
        height: 333px;
    }
}