@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700,700i');

@keyframes intermitente {
    0% { opacity: 0;}
    50% {opacity: 1;}
    100% {opacity: 0;}
}

/* Generales */

* {
    padding: 0;
    margin: 0;
	box-sizing: border-box;
	-webkit-user-select: none; /* Chrome/Safari */        
	-moz-user-select: none; /* Firefox */
	-ms-user-select: none; /* IE10+ */

	-o-user-select: none;
	user-select: none;
	outline: none;
}

body {
    font-family: 'Open Sans', sans-serif;
}

.lock-overflow {
	overflow: hidden;
}

p {
    font-size: 18px;
    line-height: 1.5em;
}

/* b {
    color: #1d1d1b
} */

img.responsive {
    max-width: 100%;
}

a {
	font-weight: bold;
	color: #1d1d1b;
}

a:hover {
	text-decoration: underline;
	text-decoration-color: #f7ff00;
	color: #f7ff00;
}

a.enlace-btn {
	text-decoration: none;
	font-weight: bold;
}

button, a.enlace-btn {
	border: 1px solid #333333;
	padding: 10px 15px;
	font-size: 16px;
	color: #333333;
	background-color: white;
	cursor: pointer;
}

button:hover, a.enlace-btn:hover {
	border: 1px solid #333333;
	padding: 10px 15px;
	font-size: 16px;
	color: white;
	background-color: #333333;
	cursor: pointer;
}

ul li {
	margin-bottom: 10px;
}

.hr-logo {
    line-height: 1em;
    position: relative;
    outline: 0;
    border: 0;
    color: #1d1d1b;
    text-align: center;
    height: 40px;
}
.hr-logo:before {
    content: '';
    background: linear-gradient(to right, transparent, #1d1d1b, transparent);
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 2px;
}

.hr-logo:after {
    content: url('../img/mini-logo.svg');
    position: relative;
    display: inline-block;
    color: #1d1d1b;
    padding: 0 .5em;
    line-height: 2px;
    color: #1d1d1b;
    background-color: #fff;
}

.oculto {
	opacity: 0;
	transition: opacity 800ms ease-out;
}

.mostrado {
	opacity: 1;
	transition: opacity 800ms ease-in;
}

.fade-out-izquierda {
	transform: translateX(-200px);
	transition: all 800ms ease-in;
}

.fade-in-izquierda {
	transform: translateX(0px);
	transition: all 800ms ease-in;
}

.fade-out-derecha {
	transform: translateX(200px);
	transition: all 800ms ease-in;
}

.fade-in-derecha {
	transform: translateX(0px);
	transition: all 800ms ease-in;
}

@media (max-width: 440px){
	.fade-out-izquierda {
		transform: translateX(-50px);
	}
		
	.fade-out-derecha {
		transform: translateX(50px);
	}
}

/* Menus */

@keyframes baja-menu {
    0% {top: -100px;}
    80% {top: -100px;}
    100% {top: 0;
          position: fixed;
        }
}


nav {
    position: fixed;
    top: 0;
	background-color: white;
	width: 100%;
    height: 80px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

nav.transparente {
	background-color: transparent;
	position: fixed;
    top: 0px;
    display: flex;
    justify-content: space-between;
	align-items: center;
	opacity: 0;
	animation: titleAnimation 3s ease-in 500ms 1 forwards;
    /* animation-duration: 3000ms;
    animation-iteration-count: 1;
    animation-fill-mode: forwards; */
	transition: all 800ms;
}

nav div:nth-child(2) {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

nav.transparente a {
    color: black;
    text-decoration: none;
    cursor: pointer;
    font-size: 13px;
	margin-left: 20px;
	height: 30px;
	font-weight: 400;
}

nav.transparente a:hover {
    padding-bottom: 5px; 
    border-bottom: 1px solid #f7ff00;
}

nav.transparente a.activo {
    /* color: #8e6919; */
    padding-bottom: 5px; 
    border-bottom: 1px solid  #f7ff00;
}

nav.normal {
	position: fixed;
	top: 0;
    background-color: white;
    z-index: 50;
    box-shadow: 0 2px 4px -1px rgba(0,0,0,0.25);
}

nav.normal a {
    color: #333333;
    text-decoration: none;
    cursor: pointer;
    font-size: 13px;
	margin-left: 20px;
	height: 30px;
	font-weight: 400;
}

nav.normal a:hover {
    padding-bottom: 5px; 
    border-bottom: 1px solid #333333;
}

nav.normal a.activo {
    /* color: #8e6919; */
    padding-bottom: 5px; 
    border-bottom: 1px solid #333333;
}

nav.normal a.enlace-inicio:hover,
nav.transparente a.enlace-inicio:hover {
    border-bottom: none;
}

.volumen {
	width: 30px;
	height: 30px;
	margin-left: 10px;
	margin-top: -2px;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: flex-start;
}

.volumen svg {
	width: 24px;
	height: 24px;
}

.volumen svg path {
	fill: grey;	
}

#sound {
	display: inline;
}

#mute {
	display: none;
}

/* Menu móvil */

.mini-nav {
    width: 100%;
    height: 40px;
	display: none;
	opacity: 0;
	animation: titleAnimation 3s ease-in 500ms 1 forwards;
}

.mini-nav.normal {
    background-color: white;
    z-index: 50;
    box-shadow: 0 2px 4px -1px rgba(0,0,0,0.25);
}

.barra {
    height: 2px;
    width: 20px;
    margin: 4px;
    background-color: black;
}

.mini-nav.normal .barra {
	background-color: #333333;
}

.arriba, .media, .abajo {
    transition: all 700ms ease;
}

#burger.abierto .arriba {
    transform: translateY(6px) rotateZ(45deg);
}

#burger.abierto .media {
    width: 0;
}

#burger.abierto .abajo {
    transform: translateY(-6px) rotateZ(-45deg);
}

.menu-movil {
    position: fixed;
    top: 40px;
    left: 0;
    width: 100%;
    height: calc(100vh - 40px);
    background-color: rgba(0, 0, 0, 0.80);
    z-index: 10000000;
    display: none;
}

.todo {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    white-space: nowrap;
}

.todo p {
    color: white;
    font-size: 12px;
	padding: 0 10px 10px 0px;
	margin-bottom: 30px;
	text-align: center;
}

.enlaces {
    display: flex;
    flex-direction: column;
    padding-top: 20px;
}
.menu-movil a {
    width: 100%;
    padding: 10px 0 10px 20px;
    transform: translateX(-200px);
    color: rgb(193, 193, 193);
    text-decoration: none;
	transition: all 500ms;
}

.menu-movil a:nth-child(1) {
    transition: transform 500ms ease-in-out;
}
.menu-movil a:nth-child(2) {
    transition: transform 700ms ease-in-out;
}
.menu-movil a:nth-child(3) {
    transition: transform 900ms ease-in-out;
}
.menu-movil a:nth-child(4) {
    transition: transform 1100ms ease-in-out;
}
.menu-movil a:nth-child(5) {
    transition: transform 1300ms ease-in-out;
}
.menu-movil a:nth-child(6) {
    transition: transform 1500ms ease-in-out;
}

.menu-movil a.aparicion {
    transform: translateX(0px);
}

.menu-movil a.aparicion:hover {
    color: white;
}

.menu-movil a.aparicion.activo {
   color: white;
}

#sound-mini {
	display: flex;
	align-items: center;
	margin-top: 2px;
	opacity: 0;
	animation: titleAnimation 3s ease-in 500ms 1 forwards;
}

#mute-mini {
	display: none;
	align-items: center;
	margin-top: 2px;
}

#resenya a {
	width: 100%;
    padding: 10px 0 10px 20px;
    color: rgb(193, 193, 193);
    text-decoration: none;
	transition: all 500ms;
}

@media (max-width: 860px) {
	nav.transparente,
	nav.normal {
		display: none;
	}
 
	.mini-nav {
		 display: flex;
		 justify-content: space-between;
		 align-items: center;
		 padding: 0 15px 0 10px;
		 position: fixed;
         top: 0;
         z-index: 10;
	 }
 }

 @media ( max-width: 540px) {
	.volumen {
		width: 24px;
		height: 40px;
		align-items: center;
	}

}

/* Hero */

.hero {
    width: 100vw;
    height: 100vh;
    background-image: url('../img/PLANOS-3.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.filtro {
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    background-color: rgba(255, 255, 255, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

.logo-hero {
    background-image: url('../img/IMAGEN-FONDO-300x267.jpg');
    padding: 20px;
	opacity: 0;
	animation: titleAnimation 3s ease-in 500ms 1 forwards;
	width: 30%;
	max-width: 300px;
    margin-bottom: 20px;
}


.flecha {
    text-align: center;
    margin-top: 5px;
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    cursor: pointer;
}

#flecha-grande {
	opacity: 0;
    animation: intermitente 3s 1.5s infinite;
    margin-bottom: 40px;
    cursor: pointer;
}
#flecha-pequena {
	display: none;
	opacity: 0;
    animation: intermitente 3s 1.5s infinite;
    margin-bottom: 20px;
    cursor: pointer;
}

@keyframes titleAnimation { 
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@media (max-width: 860px) {
	.logo-hero {
		width: 50%;
	}

	#flecha-grande {
		display: none;
	}

	#flecha-pequena {
		display: inline;
	}
}

@media ( max-width: 540px) {
	.logo-hero {
		width: 80%;
	}
}

/* Contenedores */

.fila {
	max-width: 1440px;
	margin: 40px auto;
	display: flex;
	align-items: flex-start;
    flex-wrap: wrap;
    position: relative;
}

.centrado {
	justify-content: center;
	align-items: center;
}

.columnas {
	flex-direction: column;
}

.fila.reverse {
	align-items: flex-end;
}

.fila.gris {
	background-color: #eeecea;
	background-size: contain;
}

.contenedor-60-40 {
	margin: 40px;
	display: grid;
	grid-template-columns: 60% 40%;
	position: relative;
}

.contenedor-60-40 div:nth-child(1) {
	grid-column: 1 / 2;
	grid-row: 1;
	padding: 20px;
}

.contenedor-60-40 div:nth-child(2) {
	grid-column: 2;
	grid-row: 1 / 3;
	padding: 20px;
}

.contenedor-60-40 div:nth-child(3) {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #eeecea;
	z-index: -10;
}

.contenedor-60-40 div img {
	max-width: 100%;
}

@media (max-width: 840px){
	.contenedor-60-40 {
		grid-template-columns: 100%;
	}
	.contenedor-60-40 div:nth-child(1) {
		grid-column: 1;
		grid-row: 1;
		padding: 0 20px;
	}

	.contenedor-60-40 div:nth-child(2) {
		grid-column: 1;
		grid-row: 2;
		padding: 0 20px;
	}

	.contenedor-60-40 p {
		padding: 20px 0;
	}
}

.contenedor-30-70 {
	margin: 40px;
	display: grid;
	grid-template-columns: 30% 70%;
	position: relative;
}

.contenedor-30-70 div:nth-child(1) {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: #eeecea;
	z-index: -10;
}

.contenedor-30-70 div:nth-child(2) {
	grid-column: 1;
	grid-row: 1 / 3;
	padding: 20px;
}

.contenedor-30-70 div:nth-child(3) {
	grid-column: 2;
	grid-row: 2 / 3;
	padding: 20px;
}

.contenedor-30-70 div img {
	max-width: 100%;
}

@media (max-width: 840px){
	.contenedor-30-70 {
		grid-template-columns: 100%;
	}
	.contenedor-30-70 div:nth-child(2) {
		grid-column: 1;
		grid-row: 1;
		padding: 0 20px;
	}

	.contenedor-30-70 div:nth-child(3) {
		grid-column: 1;
		grid-row: 2;
		padding: 20px;
	}
}

@media ( max-width: 1280px) {
	.fila {
		margin: 40px 40px;
	}
}

@media ( max-width: 540px) {
	.fila {
		margin: 20px 20px;
	}
}

.col {
    flex-basis: 360px;
    flex-grow: 1;
}

.col.min {
    flex-basis: 240px;
    flex-grow: 1;
}

.col.borde-central {
	border-right: 0.5px solid grey;
}

@media ( max-width: 720px) {
	.col.borde-central {
		border-right: none;
	}
}

#fondo-gris {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -10;
}

#fondo-gris-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -10;
}

.fila.info {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
}

.fila.info div:nth-child(1){
	width: 80%;
}

.fila.info div:nth-child(2){
	width: 20%;
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
}

@media (max-width: 880px) {
	.fila.info {
		display: flex;
		justify-content: space-between;
		align-items: stretch;
	}
	
	.fila.info div:nth-child(1){
		width: 100%;
	}
	
	.fila.info div:nth-child(2){
		margin-top: 20px;
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
	}
}



/* Acordeon */


.acordeon {
    width: 80%;
    margin: 40px auto;
}
.acordeon .masInfo {
	margin-bottom: 4px;
    margin-top:1px;
    cursor: pointer;
}

.acordeon .masInfo > p {
	border: 1px solid black;
	color: black;
	opacity:1;
	padding:10px 20px;
	width:100%;
	overflow:hidden;
	-webkit-transition:opacity 0.5s ease-in;  
	-moz-transition:opacity 0.5s ease-in;  
	-o-transition:opacity 0.5s ease-in;  
    transition:opacity 0.5s ease-in;
    display: flex;
    justify-content: space-between;
    align-content: center;
}

.acordeon .masInfo > p > span {
	margin-right: 10px;
}

.acordeon .masInfo > p svg.up {
    transition: transform 500ms ease-in;
    transform: rotate(180deg);
}
.acordeon .masInfo > p svg.down {
    transition: transform 500ms ease-in;
    transform: rotate(0deg);
}

.acordeon .masInfo .content {
	display:none;
}

.acordeon .masInfo .content p {
    padding: 20px;
}

/* Cita */

.parallax {
	background-image: url('../img/piano-2543688_960_720.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	min-height: 300px;
	color: white;
	padding: 40px;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: center;
}

.cita {
	font-family: 'Cinzel', serif;
	text-align: center;
	font-size: 26px;
	text-shadow: 1.5px 1.5px 1.5px grey;
}

.autor {
	font-family: 'Cedarville Cursive', cursive;
	font-size: 24px;
	align-self: flex-end;
	text-shadow: 1.5px 1.5px 1.5px grey;
}

.parallax img:nth-child(1) {
	align-self: flex-start;
	margin-left: 10px;
}

.parallax img:nth-child(3) {
	align-self: flex-end;
	margin-right: 10px;
}

/* Recitales */

.modal {
	display: none;
	position: fixed;
	top: 40px;
	left: 50%;
	transform: translate(-50%);
	background-color: #f8f7f5;
	z-index: 1000;
}

.overlay {
	display: none;
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	background-color: rgba(0, 0, 0, 0.6);
	z-index: 999;
}

.aspas {
	position: absolute;
	top: 20px;
	right: 20px;
	cursor: pointer;
}

.modal .contenido {
	padding: 60px 20px 20px 20px;
}

.modal .contenido img {
	max-width:100%;
	max-height:80vh;
	width:auto;
	height:auto;
}

.modal .contenido-full {
	padding: 60px 20px 20px 20px;
	height: calc(100vh - 80px);
	width: calc(100vw - 80px);
	display: flex;
}

.modal .contenido-full-imagenes {
	padding: 60px 20px 20px 20px;
	width: calc(100vw - 80px);
	max-height: calc(100vh - 80px);
	position: relative;
}

.modal .contenido-full-imagenes .btn-back {
	position: absolute;
	top: 50%;
	left: 10px;
	transform: translateY(-50%);
}

.modal .contenido-full-imagenes .btn-next {
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
}

.modal .contenido-full-imagenes .slider {
	display: flex;
	justify-content: center;
	align-items: center;
}

.modal .contenido-full-imagenes .slider img {
	max-width:100%;
	max-height:60vh;
	width:auto;
	height:auto;
}


@media (max-width: 540px){
	.modal {
		width: calc(100vw - 40px);
		height: calc(100vh - 40px);
		top: 20px;
		left: 20px;
		transform: translate(0%);
	}

	.aspas {
		top: 15px;
		right: 15px;
	}

	.aspas svg {
		width: 20px;
		height: 20px;
	}

	.modal p {
		font-size: 14px;
	}
}

/* Footer */

footer {
	background-color: #6b696b;
	display: flex;
	flex-wrap: wrap;
	color: white;
	border-top: 1px solid #f7ff00;
	border-bottom: 1px solid #f7ff00;
}

.col-f {
	flex-basis: 360px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0px 20px 20px;
}

.col-f > div {
	padding: 20px 20px;
}

.col-f:nth-child(2) p {
	text-align: center;
	font-size: 12px;
	margin: 8px;
}

.col-f:nth-child(2) div div{
	display: flex;
	justify-content: center;
}

.col-f:nth-child(2) div div a{
	margin: 0 10px;
}

.col-f:nth-child(3) p {
	text-align: right;
}

@media (max-width: 1079px) {
	.col-f:nth-child(1) div {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	.col-f:nth-child(3) p {
		text-align: center;
	}
}

@media (max-width: 719px) {
	.col-f:nth-child(1) > div,
	.col-f:nth-child(2) > div {
		border-bottom: 0.5px solid grey;
	}
}

footer p {
	font-size: 14px;
}

footer a {
	color: white;
	text-decoration: none;
	font-size: 14px;
	font-weight: 400;
}



footer #facebook:hover path {
	fill: #3b5998;
}
footer #twitter:hover path {
	fill: #1da1f2;
}
footer #youtube:hover path {
	fill: #f93e3e;
}
footer #whatsapp:hover path {
	fill: #25d366;
}
.mini-footer {
	background-color: #6b696b;
	color: white;
	padding: 10px;
	position: relative;
}

.mini-footer p {
	font-size: 12px;
	text-align: center;
}

#top-arrow {
	position: absolute;
	bottom: 0px;
	right: 40px;
}

@media ( max-width: 540px) {
	#top-arrow {
		bottom: 0px;
		right: 20px;
	}
}



/* Cabeceras blog */

.imagen-cabecera {
	width: 100vw;
    height: 100vh;
	overflow: hidden;
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	position: relative;
	z-index: -2;
}

.gradiente-blanco {
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,  rgba(255,255,255,0) 20%,rgba(255,255,255,1) 80%, rgba(255,255,255,1) 100%);
	background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 20%, rgba(255,255,255,1) 80%, rgba(255,255,255,1) 100%);
	z-index: -1;
	transition: all 500ms ease-in;
}

.titulo-blog {
	font-family: 'Cinzel', serif;
	font-size: 36px;
	padding: 20px 40px;
	width: 100%;
	transition: color 500ms ease-in;
}

.titulo-blog.blanco {
	color: white;
	text-shadow: 1.5px 1.5px 1.5px grey;
}

.subtitulo-blog {
	font-size: 22px;
	padding: 20px 40px;
	width: 100%;
	position: relative;
}

.autor-blog {
	font-weight: bolder;
	font-size: 16px;
	position: absolute;
	top: 0;
	left:40px;
}

.fecha-blog {
	font-size: 16px;
	position: absolute;
	top: 0;
	right: 40px;
}


@media (max-width: 800px) {

	.subtitulo-blog {
		font-size: 22px;
		padding: 20px 40px;
		width: 100%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	
	.autor-blog {
		position: initial;
		width: 100%;
		text-align: center;
		margin-bottom: 10px;
	}
	
	.fecha-blog {
		position: initial;
		width: 100%;
		text-align: center;
	}
}


/* Formulario */

.marco-formulario {
    background-image: url('../img/planos-b.png');
    background-position: center;
    background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}

form {
    width: 100%;
    max-width: 640px;
    margin: 40px auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

form div {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

select {
    -webkit-appearance: none;
    margin: 20px 0;
    padding: 10px;
    background-color: transparent;
    color: white;
    font-size: 20px;
    border: 2px solid white;
    width: 100%;
    border-radius: 0;
}


input {
    margin: 20px 0;
    padding: 10px;
    background-color: transparent;
    color: white;
    font-size: 18px;
    border: 2px solid white;
    width: 100%;
    border-radius: 0;
}

input::placeholder {
    color: white;
    font-size: 18px;
}

textarea {
    margin: 20px 0;
    padding: 10px;
    background-color: transparent;
    color: white;
    font-size: 18px;
    border: 2px solid white;
    width: 100%;
	border-radius: 0;
	font-family: 'Open Sans', sans-serif;
}

textarea::placeholder {
    color: white;
	font-size: 18px;
	font-family: 'Open Sans', sans-serif;
}

a[type="submit"]:hover {
    cursor: pointer;
    color: rgb(58, 58, 58);
    border: 2px solid white;
    background-color: white;
}

button {
    border: 2px solid white;
    font-size: 18px;
    color: white;
    background-color: transparent;
    padding: 10px;
    margin: 20px 0;
    transition: all 500ms;
}

button:hover {
	cursor: pointer;
	font-size: 18px;
    color: rgb(58, 58, 58);
    border: 2px solid white;
	background-color: white;
	padding: 10px;
    margin: 20px 0;
}

/* Tabla */

.tabla {
	max-width: 100vw;
	overflow-x: auto;
}

th,
td {
	border: 1px solid black;
	padding: 5px 10px;
}

th:nth-child(1) {
	text-align: left;
}

th:nth-child(3),
td:nth-child(3) {
	text-align: right;
}

#aviso,
#privacidad,
#cookies {
	padding: 40px;
}

#aviso p,
#privacidad p,
#cookies p{
	padding: 10px 0;
	display: block;
}

/* Slider */

.datos {
	background-color: #eeecea;
	padding: 20px 40px 100px;
	min-width: 60%;
}

.wrapper {
	margin: -80px auto 20px;
	padding: 0 20px 20px;
	position: relative;
	width: calc(100vw - 40px);
	max-width: 1200px;
  }
  
  
.wrapper a svg {
	position: relative;
	display: block;
	cursor: pointer;
  }
    
  .wrapper img {
	margin: 0 auto;
	max-width:100%;
	max-height: 100%;
	width:auto;
	height:auto;
	display: none;
  }
  
  .wrapper img.active {
	display: block;
	-webkit-animation: fadeImg 0.8s;
	-moz-animation: fadeImg 0.8s;
	animation: fadeImg 0.8s;
  }
  
  .wrapper .slider-nav  {
	padding-bottom: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
  } 

  .wrapper .slider-nav  div{
	padding: 0 5px 0;
  } 


  @-webkit-keyframes fadeImg {
	from {
	  opacity: 0; 
	}
  
	to {
	  opacity: 1;
	}
  }
  
  @-moz-keyframes fadeImg {
	from {
	  opacity: 0; 
	}
  
	to {
	  opacity: 1;
	}
  }
  
  @keyframes fadeImg {
	from {
	  opacity: 0;
	}
  
	to {
	  opacity: 1;
	}
  }

  @media (max-width: 440px) {

	p {
		text-align: justify;
	}

	.datos {
		padding: 20px 20px 100px;
	}

  }


