@charset "utf-8";
/* CSS Document */
html {
	box-sizing: border-box;
	font-size: 62.5%; /** 1rem = 10px **/
}
*, *:before, *:after {
	  box-sizing: inherit;
}
body {
    font-family: 'Open Sans', sans-serif;
	font-size: 1.6rem;
	line-height: 2;
}

/* ----------- GLOBALES -----------*/
.contenedor {
	max-width: 1200px;
	margin: 0 auto;
	width: 95%;
}
h1 {
    font-family: 'Open Sans', sans-serif;
}
img {
	max-width: 100%;
}
.boton {
	padding: 15px;
	color: white;
	text-decoration: none;
	background-color: darkolivegreen;
	transition: all .6s ease;

}
.boton:hover {
	background-color: maroon;
}
.top_seccion {
	margin: 60px 0 0 0;
}

/* ----------- UTILIDADES -----------*/
.centrar_texto {
	text-align: center;
}

/* ----------- HOME -----------*/
.barra {
	background-color: #211c52;
	padding: 10px 0px;
	margin: 0;
}
.hero {
	background-image: url(../img/fondo_banner.jpg);
	width: 100%;
	height: 50rem;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
.hero::after {
	position: absolute;
	content: '';
	background-color: rgba(0,0,0, .5);
	top: 0; left: 0; bottom: 0; right: 0; 
}
.mns_hero {
	position: relative;
	z-index: 1;
	
	color: wheat;
	padding: 15px 45px;
	border: solid 5px wheat;
	text-align: center;
	margin: 0;
}
.videos {
	display: grid;
	justify-content: center;
}
.video_individual {
	text-align: center;
	padding: 25px;
	margin: 15px 0;
	border: dashed 1px darkolivegreen;
}
.video_individual:last-child {
	margin-bottom: 0;
}
footer {
	background-color: #211c52;
	color: wheat;
	padding: 5px;
	font-size:18px;
	text-align: center;
}
.cont_footer {
	display: flex;
	position: relative;
}
.sociales {
	position: absolute;
	flex-direction: row;

	width: 100%;
	font-size: 28px;
}
.sociales a {
	color: wheat;
	text-decoration: none;
}
