.flexslider{
	width: 100%;
	/* max-width: 1300px; */
	margin: 20px auto;
	box-shadow: 0 0 30px 0 rgba(0,0,0,0.70);
	display: flex;
	flex-direction: column;
	position: relative;

}

.slides, .slides li, .slides li img{
	width: 100%;
	overflow: hidden;
}

.slides li{
	margin-bottom: -5px;
}

.flexslider .slides li img{
	animation: zoom1 6s infinite;
	/* transition: all 0.5s; */
}

@keyframes zoom1{
	0%{
		transform: scale(1);	
	}
	20%{
		transform: scale(1);	
	}
	/* 90%{
		transform: scale(1.15);	
	} */
	100%{
		transform: scale(1.1);	
	}
}


.flex-control-nav.flex-control-paging{
	width: 120px;
	padding: 10px 0;
	/* background: #1A89DF; */
	/* border: 2px solid rgba(255,255,255,.3); */
	/* border-radius: 5px; */
	/* box-shadow: 0 0 3px 0 rgba(0,0,0,.80); */
	align-self: center;

	display: flex;
	justify-content: center;
	align-items: center;

	position: absolute;
	bottom: 10px;
	z-index: 2;
}

.flex-control-nav li{
	display: inline-block;
	margin: 0 5px;
}

.flex-control-nav li a{
	display: block;
	width: 15px;
	height: 15px;
	background: #fff;
	border-radius: 50%;
	color: transparent;
	box-shadow: inset 0 -3px 2px 0 rgba(0,0,0,0.55);
}

.flex-control-nav li a.flex-active{
	background: #353535;
}

/* Navegación */

.flex-direction-nav{
	z-index: 3;
}

.flex-direction-nav a{
	width: 60px;
	height: 60px;
	/* background: #1A89DF; */
	display: flex;
	justify-content: center;
	align-items: center;
	/* border: 2px solid rgba(255,255,255,.3); */
	/* border-radius: 5px; */
	/* box-shadow: 0 0 3px 0 rgba(0,0,0,.80); */
	color: #fff;

	position: absolute;
	top: 50%;
	margin-top: -30px;

	transition: all 0.3s ease-in-out;
}

.flex-direction-nav a::before{
	content: "\e922";
	font-family: 'icomoon' !important;
	/* speak: never; */
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;

	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-size: 50px;

}

.flex-direction-nav a.flex-next::before{
	content: "\e923";
}

.flex-direction-nav .flex-prev{
	left: 0px;
	opacity: 0;
}

.flex-direction-nav .flex-next{
	right: 0px;
	opacity: 0;
}

.flexslider:hover .flex-direction-nav .flex-prev{
	opacity: 1;
	left: 15px;
}

.flexslider:hover .flex-direction-nav .flex-next{
	opacity: 1;
	right: 15px;
}

/*CAPTION---Texto de slider*/
.caption{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;

	position: absolute;
	top: 0;
	z-index: 2;
}

.caption h2{
	font-size: 60px;
	color: #fff;
	text-shadow: 3px 3px 2px rgba(0,0,0,0.7);
}
