html{scroll-behavior: smooth;}
		*{
			margin: 0;
			padding: 0;
			box-sizing: border-box;
		}

body{
	min-height: 100vh;
	max-height: 100vh;
    background-image: url(../img/home.jpg);
	background-position: center;
    background-repeat:no-repeat;
	background-size: cover;
    background-attachment: fixed;
	font-family: 'Alata', sans-serif;
	background-color: black;
	
}

/*SECCIONES*/
.secciones{
    width: 100%;
    min-height:100vh;
    border-bottom: 1px solid black;  
	height:auto;  
}



#bio{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
    background-color:  black;
	scroll-margin-top: 60px;
}

#bio .info{
    padding: 15% 10px;
	color: white;
	text-align: right;
	opacity: 0;
}

#bio .infoIn{
	animation: fade-in 1s forwards;
	animation-delay: 2s;
}

.info h2{
	font-size:3rem;
	font-weight: 700;
}


.txt{
	width: 70%;
	margin-left: auto;
	font-size: .9rem;
	line-height:23px;
	
}

.foto{
	height:100vh;
	background-image: url(../img/bio.jpg);
	background-color:  black;
	background-position: center;
    background-repeat:no-repeat;
	background-size: contain;
	
}

.firma{
	margin-top: 20px;
	width: 170px;
}


/*TOUR----------------------------------------------------------*/
#tour{
	position: relative;
	background-image: url(../img/tour_bg.jpg);
	background-position: center;
    background-repeat:no-repeat;
	background-size: cover;
	color: white;
	text-align: center;
	padding-bottom: 30px;
   
}

.fechas a{
	color: white;
	text-decoration: none;
}

.slide{
	display: flex;
	justify-content: space-around;
	align-items: center;
	width: 100%;
	height:20px;
	margin: auto;
	margin-bottom: 20px;
	font-size: 8px;
	border-bottom: 1px solid white;
	
}

.item{
	display: block;
	width: 100px;
	text-align: center;
	cursor: pointer;
	transition: transform .4s;
	
}

.item:hover{
	color: rgb(255, 255, 255);
	transform: scale(1.2) translateY(-2px);

}


.dot{
	width: 10px;
	height:10px;
	background-color: white;
	margin: auto;
	border-radius: 50%;
}



.titulo_tour{
	width: 100%;
	height: fit-content;
	background-color: rgba(0, 0, 0, 0.22);
	padding: 10% 10px 10px 10px;
	margin-bottom: 10px;	
	opacity: 0;
}

.titulo_tour_in{
	animation: fade-in forwards	1s;
	animation-delay: 1s;
}


#tour p{
	font-size: 1rem;
}

#tour h2{
	font-size:2.5rem;
	padding-bottom:20px;
	font-weight: 700;
}

.contenedor_fechas{
	bottom: 10%;
	margin: auto;
	width: 70%;
	height: fit-content;
}

.fechas{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	padding: 20px;
	background-color: rgba(0, 0, 0, 0.7);
	border: 1px solid rgba(255, 255, 255, 0.212);
	border-radius: 15px;
}



.fechas_img{
	height: 100%;
	background-color: rgb(0, 0, 0);
	border-radius: 15px;
	overflow: hidden;
}

.fechas_img img{
	width: fit-content;
	height: auto;
}

.fechas_info{
	height: auto;
	text-align:left;
	padding: 5px;
	line-height: normal;
	
}

.fechas_info h4{
	font-size:2.2rem;
	padding-bottom: 10px;
	border-bottom: 1px dotted rgb(149, 149, 149);

	
}

.nombre{
	color: #dddddd;
	font-weight: 700;
	padding: 10px 0;
	font-weight: 700;
	
}

.date{
	font-size:1.2rem;
	border: 0;
}

.direccion{
	font-weight: normal;
	color: #afafaf;
}


/*FOTOS**********************************************/

#fotos{
	position: relative;
	background-color: black;
	text-align: center;
	color: white;
	padding-top: 0;
	margin: 0;
	padding-bottom: 20px;
	background-image: url(../img/fondo-home2.jpg);
	background-position: center;
    background-repeat:no-repeat;
	background-size: cover;
}

.contenedor-slider{
	background-color: #00000091;
	border: 1px solid rgb(0, 0, 0);

}


/*CLASES*/
#clases{
	position: relative;
	background-color:white;
	padding: 0 20px 50px 0;
	opacity: 0;
	
}

.titulo_clases{
	text-align: center;
	font-size:1.5rem;
	background-color: rgb(255, 255, 255);
	width: 100%;
	padding-top: 10%;
}

.titulo_clases_in{
	animation: fade-in 1s forwards ;
	animation-delay: 1s;
}

.contenedor-clases{
	max-width: 900px;
	margin: auto;
	padding: 5% 2%;
	border-bottom: 1px dotted rgb(134, 134, 134);
	
}

.contenedor-form{
	max-width:900px;
	margin: auto;
	display: grid;
	grid-template-columns: 1fr ;
	gap: 20px;
	padding:2%;

}

.sesgo{
	position: absolute;
	bottom: -50px;
	left: 0;
	width: 100%;
	height: 100px;
	background: white;
	z-index: 20;
	transform: skewY(-3.2deg);
}

/*FOOTER*/

footer{
display: flex;
justify-content: center;
align-items: center;

width:100%;
height: 500px;
background-color:#444;
background-image: url(../img/footer_bg.jpg);
background-position: top center;
background-repeat:no-repeat;
background-size: cover;

}

.contenedor-footer{
	width: 100%;
	max-width: 400px;
	margin: auto;
	padding:20px;
	color: white;
	text-align:center;
	font-size:.8rem;
}

.contenedor-footer img{
	width: 100%;
}

.redes{
	display: flex;
	justify-content: space-evenly;
}

.redes ul{
	display: flex;
	list-style: none;
}


.redes img{
	width: 25px;
	height: 25px;
	margin: 10px;
	
}

.redes img:hover{
	animation: redes .3s ease-in-out;
}

.bemol3{
	text-decoration: none;
	color: rgb(182, 113, 2);
	font-size:1rem;
}


/*LOGO MOVIL*/

.logoMovil{
	position: absolute;
	top: 25px;
	left: 15px;
	width: 220px;
	
}

.logoMovil img{
	width: 100%;
}



/*UP*/

.up{
	position: fixed;
	bottom:10px;
	right: 10px;
	width: 35px;
	height: 35px;
	z-index: 30;
}

/*ANIMACIONES*/

@keyframes redes{
	0%{transform: scale(1)}
	50%{transform: scale(1.1)}
	100%{transform: scale(1)}
}


/*******ANIMACIONES******************/

@keyframes fade-in {
    from {
        transform: translateY(-15px);
        opacity: 0;
    }
    to {
        opacity: 1;
        transform: translateY(0px);
    }
  }
  


/*RESPONSIVE------------------------------*/
@media (max-width: 800px){
	
	#bio{
		grid-template-columns:1fr;
		background-color: black;
		scroll-margin-top: 0;
	}
	#bio .info{
		padding: 60px 30px 30px 30px;
		text-align: center;
		}

	#bio .info h2{
		font-size:2.2rem;
	}
	#bio .txt{
		width: 100%;
	}

	#clases{
		padding: 20px;
	}
	.contenedor-form{
		grid-template-columns: 1fr;
		padding:2%;
	}

	.formulario{
		width:100%;
		margin-top: 20px;
		z-index: 20;
	}



	
.contenedor_fechas{
	width: 100%;
	position: relative;
}
	.fechas{
		border-radius: 0;
		grid-template-columns:1fr;
	}

	.contenedor-videos{
		
		grid-template-columns:1fr;
	}

	.contenedor-videos2{
		grid-template-columns:1fr;
	}
}

/*RESPONSIVE CARUSEL*/
@media (max-width: 1000px){
	body{
		background-position: top;
		/*-webkit-appearance: none;
        -moz-appearance: none;*/
		background-attachment: local;
		
	}
}


@media (max-width: 750px){
	.fotosPC{
		display: none;
	}

	}

@media (min-width: 750px){
	.fotosMOVIL{
		display: none;
	}
}


@media (max-width: 500px){
	body{
		background-position: top;
		/*-webkit-appearance: none;
        -moz-appearance: none;*/
		background-attachment: local;
		background-image: url(../img/homemovil2.jpg);
	}
	#discos{
		padding-top:50px;
	}
	.contenedor-discos{
		grid-template-columns: 1fr;
	}

	#clases{
		padding-bottom: 50px;
	}

	

	.menuDiscos{
		padding-left: 25px;
	}
}