@media screen and (max-width: 1024px){

@charset "utf-8";
/* CSS Document */

.slide-contenedor {
	max-width: 100%;
	max-height: 100vh;
	
	height: auto;
	position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
	overflow: hidden;
	z-index:1;
    
	display: block;
}

 /*.miSlider {
	display: none;
	transition: 2s;
	max-height: 100vh;
	
} */


.miSlider img,p {
	position: relative;
	max-width: 100%;
	max-height: 90vh;
	object-fit: cover;
	vertical-align: top;
	transition: 2s;
   
	}
	
p.titulo {
	position: relative;
    
	text-transform: uppercase;
	font-size: 15px;
	
}

.direcciones {
	width: 100%;
	height: 100%;
	position: absolute;
    padding: 0 20px;
	top: -50px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 70px;
}

.direcciones a {
	color: rgba(255,255,255,0.8);
	display: inline-block;
	padding: 10px;
	text-decoration: none;
}

.direcciones a:hover {
	background: rgba(0,0,0,0.7);
	transition: 1s;
}

.barras {
	position: absolute;
	bottom: 100px;
	width: 100%;
	display: flex;
	justify-content: center;
	margin-top: 10px;
}

.barra {
	cursor: pointer;
	height: 20px;
	width: 50px;
	margin: 0 2px;
	background: transparent;
	display: inline-block;
	margin-left: 3px;
	border-radius: 5px;
	border: 1px solid #004DEC;
}

.active {
	background-color: #004DEC;
}

.fade{
	animation-name: fade;
	animation-duration: 1.5s;
}

@keyframes fade {
	from {opacity: 0.4;}
	to {opacity: 1;}
}

p.titulo {
	text-transform: uppercase;
	font-size: 70px;
	/*background-color: #FFF;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
	border: 1px solid rgba(0,0,0,0.5);*/
}
    
@media screen and (orientation:landscape){

p.titulo {
	font-size: 30px;
}
    
.direcciones {
	top: -10px;
	font-size: 50px;
}

.barras {
	bottom: 50px;
}

.barra {
	height: 10px;
	width: 30px;
}
    
    
}

}
