@charset "UTF-8";


:root{

	--azul-oscuro: #273554;

	--marron-claro: #A8907A;

	--gris-oscuro: #494949;

	--font-texto: 'Georama', sans-serif;

	--font-menu: 'myriad-variable', sans-serif;

	--font-italic: italic;

}


/*Texto*/

*{
	font-family: var(--font-texto);
	font-weight: 300;
	color: var(--azul-oscuro);
}

/*Btn*/

.btn-primary{
	background-color: var(--azul-oscuro);
	border:none;
}

/*Menu*/

#menu{
	background-color: white;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1;
}

a.nav-link{
	font-family: var(--font-menu);
	font-variation-settings: 'wght' 400, 'wdth' 70;
	color: var(--gris-oscuro);
	text-decoration: none;
	font-size: 1.2em;
	transition-duration: .2s;
}

a.nav-link:hover{
	color: var(--azul-oscuro);
}

/*Header*/

#spacer{
	height: 70px;
}

#guarda{
	background-image: url('../img/guarda-mb.jpg');
	background-size: cover;
	height: 80px;
}

/*Info*/

#historia{
	background-image: url('../img/bg-info-mb.jpg');
	background-size: cover;
	background-position: center bottom;
	position: relative;
}

#fondo-historia{
	position: absolute;
	top: 0;
}

#historia-titulo{
	width: 300px;
}

.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{
	background-image: url('../img/bg-premios.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

h2{
	font-size: 2.2em;
	font-weight: 300;
}

h2 b{
	font-weight: 700;
}

.btn-grande{
	background-image: url('../img/btn-premio-gde.png');
	background-size: contain;
	background-repeat: no-repeat;
	min-height: 70px;
	max-width: 350px;
}


.btn-grande h3{
	font-size: 1.5em;
	font-weight: 700;
}

.btn-chico:first-child{
	max-width: 600px;
}

.btn-chico{
	background-image: url('../img/btn-premio-gde.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	min-height: 70px;
	max-width: 700px;
}

.btn-chico h3{
	font-size: 1em;
	font-weight: 500;
}


/*Inscripcion*/

#como-participar{
	background-image: url('../img/bg-instrucciones.jpg');
	background-size: cover;
}

#titulo-instrucciones{
	width: 300px;
}

.nro{
	width: 70px;
}

.boton img{
	transition-duration: .2s;
}

.boton:hover > img{
	transform: scale(0.95);
}

.paso-card{
	visibility: hidden;
}

/*Delayed objects*/
.delay-2{
	animation-delay: .2s;
	transition-delay: .2s;
}

.delay-4{
	animation-delay: .4s;
	transition-delay: .4s;
}


/*Footer*/

.logo-footer{
	max-width: 100px;
}

.texto-footer{
	font-size: 1.1em;
}

.texto-footer b{
	text-transform: uppercase;
	font-weight: 800;
}

.texto-footer span{
	font-style: italic;
	font-weight: 300;
}



/*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%;
	}

	#titulo-instrucciones{
		width: 400px;
	}

	.btn-chico:first-child{
		max-width: 600px;
	}

	.btn-chico{
		background-image: url('../img/btn-premio-chi.png');
		background-size: contain;
		height: 60px;
		max-width: 700px;
	}

	.btn-chico h3{
		font-size: 1.2em;
	}

	.btn-grande h3{
		font-size: 1.7em;
		margin-bottom: 0;
	}

}

@media (min-width: 1024px){


	#guarda{
		background-image: url('../img/guarda.jpg');
		height: 15vh;
	}

	.logo-footer{
		max-width: 120px;
	}

}

@media (min-width: 1920px){


	#historia{
		background-position: left;
	}

}