/* Bare minimum styles */
.slider {
	-ms-touch-action: none; /* Prevent default touch actions on Windows 8. Only required for IE10 */
	overflow: auto; /* Not required but recommended for accessibility when JavaScript is turned off */
	position: relative;
	touch-action: none; /* Prevent default touch actions on Windows 8. Supported in IE11+ */}

/* AnySlider can be styled to your liking. This is just example styles */
.slider {
	background: url("images/layout/banner-bg.jpg") center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	height: 450px;
	margin: 0 auto;
	padding: 0;
	text-align: center;
	width: 100%;}

.slider-wrapper {
	height: 450px;}

#testimonial .slider-wrapper {
	height: 800px;}
	
	@media only screen and (max-width : 768px) {
		#testimonial .slider-wrapper {
			height: 650px;}
	}


.slider2 {
	background: rgb(200,229,247);
	height: 800px;}
	
	@media only screen and (max-width : 768px) {
		.slider2 {
			height: 650px;}
	}

/* The arrows can of course also be styled to your liking. This is just example styles */
.as-prev-arrow, .as-next-arrow {
	cursor: pointer;
	filter: alpha(opacity=0);
	height: 40px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	text-indent: 100%;
	top: 205px;
	white-space: nowrap;
	width: 40px;
	z-index: 1;}

#testimonial .as-prev-arrow, #testimonial .as-next-arrow {
	top: 300px;}

.as-prev-arrow {
	background: url("images/layout/arrow-prev.png") no-repeat;
	left: 1%;}

.as-next-arrow {
	background: url("images/layout/arrow-next.png") no-repeat;
	right: 1%;}

.slider:hover .as-prev-arrow, .slider:hover .as-next-arrow {
	filter: alpha(opacity=1);
	opacity: 1;}


.slider:hover .as-next-arrow:hover, .slider:hover .as-prev-arrow:hover {
	filter: alpha(opacity=.6);
	opacity: .6;}

/* The same rules for styling apply here. Style to your liking */
.as-nav {
	left: 50%;
	margin-left: -35px;
	text-align: left;
	width: 70px;
	position: relative;
	bottom: 30px;
	z-index: 1;}

#testimonial .as-nav {
	bottom: 100px;}
	
	@media only screen and (max-width : 768px) {
		#testimonial .as-nav {
			bottom: 63px;}
	}
	@media only screen and (max-width : 480px) {
		#testimonial .as-nav {
			display: none;}
	}

.as-nav a {
	background: rgb(255,255,255);
	height: 13px;
	display: inline-block;
	margin: 0 5px;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
	width: 13px;
	border-radius: 50%;}

a.as-active, .as-nav a:hover {
	background: rgb(31,151,212);}