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

/*		ESTILOS PERSONALES		*/

/*		ALTURA		*/
.h-10{height: 10%;}
.h-15{height: 15%;}
.h-20{height: 20%;}
.h-30{height: 30%;}
.h-35{height: 35%;}
.h-40{height: 40%;}
.h-45{height: 45%;}
.h-60{height: 60%;}
.h-65{height: 65%;}
.h-70{height: 70%;}
.h-80{height: 80%;}
.h-85{height: 85%;}
.h-90{height: 90%;}
.h-95{height: 95%;}

/*		ANCHURA		*/
.w-10{width: 10%;}
.w-15{width: 15%;}
.w-20{width: 20%;}
.w-30{width: 30%;}
.w-35{width: 35%;}
.w-40{width: 40%;}
.w-45{width: 45%;}
.w-60{width: 60%;}
.w-65{width: 65%;}
.w-70{width: 70%;}
.w-80{width: 80%;}
.w-85{width: 85%;}
.w-90{width: 90%;}
.w-95{width: 95%;}

.text-black{
	color: #000;
}

a.text-black{
	transition: 0.3s;
}

a.text-black:hover{
	color: #fff;
}

.text-white{
	color: #fff;
}

a.text-white{
	transition: 0.3s;
}

a.text-white:hover{
	color: #000;
}

a.text-secondary{
	transition: 0.3s;
}

a.text-secondary:hover{
	color: #fff!important;
}

.text-justify{
	text-align: justify;
}

/*		FIN ESTILOS PERSONALES		*/

body{
	font-family: Poppins,sans-serif;
}

#navbar-white{
	display: none;
}

#navbar-transparent{
	position: absolute;
	background: transparent!important;
	width: 100%;
	z-index: 10;
}

.navbar .navbar-nav .nav-item, #navbar-transparent .navbar-nav .nav-item, #navbar-white .navbar-nav .nav-item {
	position: relative;
}
#navbar-transparent .navbar-nav .nav-item::after {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	background-color: #fff;
	width: 0%;
	content: "";
	height: 4px;
	transition: all 0.5s;
}

.navbar .navbar-nav .nav-item::after, #navbar-white .navbar-nav .nav-item::after{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	background-color: #000;
	width: 0%;
	content: "";
	height: 4px;
	transition: all 0.5s;
}
  
.navbar .navbar-nav .nav-item:hover::after, #navbar-transparent .navbar-nav .nav-item:hover::after, #navbar-white .navbar-nav .nav-item:hover::after {
	width: 100%;
}

.carousel-inner .carousel-item > img{
	-webkit-animation: thing 10s;
	-o-animation: thing 10s;
	animation: thing 10s;
}

@keyframes thing {
	from{
		transform: scale(1, 1);
	}
	to{
		transform: scale(1.05, 1.05);
	}
}

/*		COOKIES		*/

.contenedor-cookie{
	display: none;
}

.contenedor-cookie.activo{
	display: block;
}

.fondo-aviso-cookies{
	display: none;
	background: rgba(0,0,0,.60);
	position: fixed;
	z-index: 99;
	width: 100vw;
	height: 100vh;
	top: 0;
	left: 0;
}

.fondo-aviso-cookies.activo{
	display: block;
}

/*		FIN COOKIES		*/

/*		BOTONES PERSONALIZADOS		*/

.btn-primary-new{
	color: #000;
	border-radius: 5px;
	border: solid 1px #000;
	
	transition: all 0.3s ease;
}

.btn-primary-new:hover{
	color: white;
	background-color: #000;
}

.btn-danger-new{
	color: #dc3545;
	border-radius: 5px;
	border: solid 1px #dc3545;
	
	transition: all 0.3s ease;
}

.btn-danger-new:hover{
	color: white;
	background-color: #dc3545;
}

/*		FIN BOTONES PERSONALIZADOS		*/

@media only screen and (max-width : 992px) {
	#navbar-transparent{
		display: none;
	}

	#navbar-white{
		display: block;
	}
}