@charset "UTF-8";


:root{

	--gris-claro: #4c4c4c;

	--gris-oscuro: #282828;

	--font-texto: 'neue-haas-grotesk-text', sans-serif;

	--font-titulos: 'gazzetta-variable', sans-serif;

}


/*Texto*/

*{
	font-family: var(--font-texto);
	font-weight: 400;
	color: var(--gris-claro);
}

/*Btn*/

.btn-primary{
	background-color: var(--gris-oscuro);
	border:none;
}

/*Menu*/

#menu{
	background-color: transparent;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1;
		transition-duration: .2s;
}

nav{
	border-bottom: solid 1px white;
}


#menu.navbar-scroll{
	background-color: white;
	border-bottom: none;
}

#menu.navbar-scroll a.nav-link{
	color: var(--gris-oscuro);
}

.navbar{
	transition-duration: .2s;
}

a.nav-link{
	font-family: var(--font-texto);
	font-weight: 400;
	color: white;
	text-decoration: none;
	font-size: 1.2em;
	transition-duration: .2s;
	border-bottom: solid 1px transparent;
}

a.nav-link:hover{
	border-bottom: solid 1px white;
	color: white;
}

#menu.navbar-scroll a.nav-link:hover{
	border-bottom: solid 1px var(--gris-oscuro);
	color: var(--gris-oscuro);
}

/*Header*/

#header{
	background-image: url('../img/header.jpg');
	background-size: cover;
	background-position: center center;
	min-height: 100vh;
}

#header .container, #header .row{
	min-height: 100vh;
}

/*Info*/

#historia{
	background-image: url('../img/bg-info-mb.jpg');
	background-size: cover;
	background-position: center bottom;
	position: relative;
}

.spacer{
	height: 250px;
}

/*Galeria*/

.img-slide{
	width: auto;
	height: 320px;
	background-size: cover;
	background-position: center;
}

.img-slide{
	border: solid 3px white;
	border-top: solid 6px white;
	border-bottom: solid 6px white;
}

.swiper-grid-column>.swiper-wrapper{
	flex-direction: row!important;
}

.leyenda{
	position: absolute;
    bottom: 0;
    background-color: white;
    margin-bottom: 0;
    width: 100%;
}


/*Premios*/

#premios, #como-participar{
	background-image: url('../img/bg-premios.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	background-attachment: fixed;
}

.premio{
	width: fit-content;
	padding: 3px 12px;
	border-radius: 25px;
	border: solid 2px white;
	background-color: rgba(0,0,0,.3);
}


h3{
	color: white;
	font-size: 1.5em;
	font-weight: 400;
	margin-bottom: 0;
}

h2{
	font-weight: 400;
	font-size: 2.5em;
}

h2 b{
	font-weight: 700;
}

h2.titulo-light{
	font-family: var(--font-titulos);
	font-size: 4em;
	text-transform: uppercase;
	font-variation-settings: "wght" 300;
	color: var(--gris-oscuro);
}


/*Jurados*/

#jurados{
	background-image: url('../img/bg-jurados.jpg');
	background-size: cover;
	background-position: center center;
}

.img-jurado{
	max-width: 120px;
}

/*Inscripcion*/

#titulo-instrucciones{
	width: 300px;
}

.numero{
	width: 70px;
	height: 70px;
	align-content: center;
	text-align: center;
	color: white;
	font-size: 2.5em;
	font-weight: 700;
	border: solid 2px white;
	background-color: rgba(0,0,0,.7);
	border-radius: 60px;
	margin-bottom: 0;
}

.paso-card{
	visibility: hidden;
}

.boton{
	background-color: rgba(0, 0, 0, .5);
	border-radius: 25px;
	border: solid 2px white;
	padding: 7px 15px;
	font-size: 1.1em;
	color: white;
	text-decoration: none;
	transition-duration: .2s;
}


.boton:hover{
	background-color: rgba(0, 0, 0, .8);
}

/*Delayed objects*/
.delay-2{
	animation-delay: .2s;
	transition-delay: .2s;
}

.delay-4{
	animation-delay: .4s;
	transition-delay: .4s;
}

.delay-6{
	animation-delay: .6s;
	transition-delay: .6s;
}


/*Footer*/

.logo-footer{
	max-width: 120px;
}

.texto-footer{
	font-size: 1.1em;
}

.texto-footer b{
	text-transform: uppercase;
	font-weight: 800;
}

.texto-footer span{
	font-style: italic;
	font-weight: 300;
}

.boton-social:hover img{
	transform: scale(.9);
}


/*Animations*/

/*
==============================================
slideUp
==============================================
*/


.slideUp{
	animation-name: slideUp;
	-webkit-animation-name: slideUp;	

	animation-duration: 1s;	
	-webkit-animation-duration: 1s;

	animation-timing-function: ease;	
	-webkit-animation-timing-function: ease;

	visibility: visible !important;			
}

@keyframes slideUp {
	0% {
		transform: translateY(100%);
		opacity: 0;
	}		
	100% {
		transform: translateY(0%);
		opacity: 1;
	}	
}

@-webkit-keyframes slideUp {
	0% {
		-webkit-transform: translateY(100%);
		opacity:0
	}		
	100% {
		-webkit-transform: translateY(0%);
		opacity: 1;
	}	
}



/*
*
*
Media Queries*/

@media (min-width:576px){

	#historia-titulo{
		width: 400px;
	}

}

@media (min-width:768px){

	#historia{
		background-image: url('../img/bg-info.jpg');
		background-position: 20%;
	}

	h2{
		font-size: 3em;
	}

}

@media (min-width: 1024px){


	.text-col{
		column-count: 2;
		column-gap: 2em;
		text-align: justify;
	}

	.logo-footer{
		max-width: 140px;
	}

}

@media (min-width: 1920px){

	#historia{
		background-position: left;
	}

}