
.slide-cont-big{
	height: 630px;
	overflow: hidden;
	background-color: white;
	z-index: 6;
}

/* Slideshow container */
.slideshow-container {
	position: relative;
	overflow: hidden;
	height: 600px;
	min-width: 1200px;
}

.mySlides{
	position: absolute;
	width: 100%;
}

/* Next & previous buttons */
.prev, .next {
	cursor: pointer;
	position: absolute;
	top: 50%;
	width: auto;
	margin-top: -22px;
	padding: 16px;
	color: white;
	font-weight: bold;
	font-size: 18px;
	transition: 0.6s ease;
	border-radius: 0 3px 3px 0;
	background-color: rgba(0, 163, 154, 0.2);
}

/* Position the "next button" to the right */
.next {
	right: 0;
	border-radius: 3px 0 0 3px;
	background-color: rgba(0, 163, 154, 0.2);
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
	background-color: rgba(0, 163, 154, 0.8);
	color: black;
}

/* Caption text */
.text {
	color: #f2f2f2;
	font-size: 15px;
	padding: 8px 12px;
	position: absolute;
	bottom: 8px;
	width: 100%;
	text-align: center;
}

/* The dots/bullets/indicators */
.dot-container{
	text-align:center;
	height: 30px;
	background-color:  rgba(0, 163, 154, 0.2);
}

.dot, .c2_dot{
	cursor: pointer;
	height: 14px;
	width: 14px;
	margin-top: 8px;
	margin-right: 4px;
	margin-left: 4px;
	background-color: rgba(56, 77, 92, 1);
	border-radius: 50%;
	display: inline-block;
	transition: background-color 0.6s ease;
}

.active, .dot:hover, .c2_dot:hover {
	background-color: rgba(0, 163, 154, 1);
}
/*
img.s_slide1{display: none;}
img.s_slide2{display: none;}
img.s_slide3{display: none;}
img.s_slide4{display: none;}
img.s_slide5{display: none;}
img.s_slide6{display: none;}
img.s_slide7{display: none;}
img.s_slide8{display: none;}
*/
@media screen and (max-width: 1200px) {
	.slide-cont-big{
		height: 530px;
	}
	.slideshow-container {
		height: 500px;
		min-width: 760px;
	}
}

@media screen and (max-width: 760px) {
	.slide-cont-big{
		height: auto;
		width: 100%;
	}
	.slideshow-container {
		height: 240px;
		min-width: 200px;
		width: 100%;
	}
	.mySlides{
		min-width: 380px;
	}
}

/* Fading animation */
.fade {
	-webkit-animation-name: fade;
	-webkit-animation-duration: 1.5s;
	-webkit-animation-timing-function: ease;
	animation-name: fade;
	animation-duration: 1.5s;
	animation-timing-function: ease;
}

@-webkit-keyframes fade {
	from {opacity: .4} 
	to {opacity: 1}
}

@keyframes fade {
	from {opacity: .4} 
	to {opacity: 1}
}