.slide-contenedor{
	max-width:100%;
	max-height: 100vh;
	width: 100%;
	height:auto;
	position: relative;
	overflow: hidden;
	margin-bottom:3em;
}
/* .miSlider{
	display: none;
	transition: 2s;
	max-height: 100vh;
} */
.miSlider img{
	width: 100%;
	max-height: 100vh;
	height: inherit;
	object-fit: cover;
	vertical-align: top;
	-webkit-transition: all 3s ease-in-out;
	-moz-transition: all 3s ease-in-out;
	-ms-transition: all 3s ease-in-out;
	-o-transition: all 3s ease-in-out;
	transition: all 3s ease-in-out;
}
.miSlider a{
	position:absolute;
	width:100%;
	height:100%;
	top:0;
	left:0;
	object-fit:cover;
	vertical-align:top;
	z-index:5;
}
.direcciones{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 24px;
}
.direcciones a{
	color: #fff;
	background: rgba(0,0,0,.2);
	display: inline-block;
	padding: 20px;
	text-decoration: none;
}
.direcciones a:hover{
	background: rgba(0,0,0,.6);
	-webkit-transition: all 4s ease-in-out;
	-moz-transition: all 4s ease-in-out;
	-ms-transition: all 4s ease-in-out;
	-o-transition: all 4s ease-in-out;
	transition: all 4s ease-in-out;
}
.barras{
	position: absolute;
	bottom: 0;
	width: 100%;
	display: flex;
	justify-content: center;
	margin-bottom:5px;
}
.barra{
	border: 1px solid #556;
	cursor: pointer;
	width: 13px;
	height:13px;
	margin: 0 5px;
	background:#C3C3CC;
	display: inline-block;
	margin-left: 3px;
}
.active{
	background-color:#778;
}
.fade{
	animation-name: fade;
	animation-duration:1s;    
}
@keyframes fade {
	from {opacity:.6;}
	to {opacity:1;}
}


