/* CSS Document */
html {
	box-sizing: border-box;
	font-size: 62.5%; /** 1rem = 10px **/
}
*, *:before, *:after {
	  box-sizing: inherit;
}

/* ------------------ GLOBALES ------------------ */
.contenedor {
	max-width: 1280px;
	margin: 0 auto;
	width: 95%;
}
img {
	display: block;
	max-width: 100%;
}
.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

:root {
    --color_prin_claro: #056CF2;
    --color_prin: #07038C;
    --color_prin_osc: #002169;
    --color_sec_osc: #890404;
    --color_sec: #f32735;
	--roboto: 'Roboto', sans-serif;;
	--lato: 'Lato', sans-serif;
}

/* ----- UTILERIAS ----- */
.centrar_texto {
	text-align: center;
}
.top_seccion {
	margin-top: 60px;
}

/* ----- BOTONES ----- */
.btn_rojo {
	font-family: var(--lato);
	font-size: 1.5rem;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--color_sec);
	border: 2px solid var(--color_sec);
	background-color: white;
	border-radius: 45px;
	padding: 1rem 2rem;
	text-decoration: none;
	transition: background-color .3s ease-in-out;
	/* arregla botones flex */
	display: block;
	flex: 0 0 100%;
}
@media (min-width: 768px) {
	.btn_rojo {
		/* arregla botones flex */
		display: inline-block;
		flex: 0 0 auto;
	}
}
.btn_rojo:hover {
	color: white;
	background-color: var(--color_sec);
	border: 2px solid var(--color_sec_osc);
	cursor: pointer;
}

.btn_bco {
	font-family: var(--lato);
	font-size: 1.5rem;
	font-weight: 700;
	text-transform: uppercase;
	color: white;
	border: 2px solid white;
	border-radius: 45px;
	padding: 1rem 2rem;
	margin: 15px 0 15px 0;
	text-decoration: none;
	transition: background-color .3s ease-in-out;
	/* arregla botones flex */
	display: block;
	flex: 0 0 100%;
}
@media (min-width: 768px) {
	.btn_bco {
		/* arregla botones flex */
		display: inline-block;
		flex: 0 0 auto;
	}
}

.btn_bco:hover {
	color: var(--color_prin);
	background-color: white;
	border: 2px solid #E1E1E1;
	cursor: pointer;
}
.centrar_boton {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.centrar_imagen {
	display: block;
  	margin-left: auto;
  	margin-right: auto;
}

/* ----- TITULOS ----- */
.titulo_sec_rojo {
	font-family: 'Lato', sans-serif;
	font-size: 2.4rem;
	color: var(--color_prin);
	text-align: right;
	border-top: 2px solid var(--color_prin);
}
.titulo_sec_bco {
	font-family: 'Lato', sans-serif;
	font-size: 2.4rem;
	color: white;
	text-align: right;
	border-top: 2px solid white;
}
h2 {
	font-size: 40px;
	color: white;
	font-family: var(--roboto);
}
h4 {
	font-family: var(--roboto);
	font-size: 3.5rem;
	margin: 0 0 20px 0;
	text-align: center;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--color_prin_claro);
	border-bottom: 3px solid var(--color_prin_claro);
}

/* ----- ICONOS ----- */
.fa-elementary {
	content: url(../img/es.svg);
	height: 30px;
}
.fa-middle {
	content: url(../img/ms.svg);
	height: 30px;
}
.fa-high {
	content: url(../img/hs.svg);
	height: 30px;
}
.fa-bars {
	content: url(../img/icon_bars.svg);
	height: 35px;
}
.fa-ircielo {
	content: url(../img/icon_ir_cielo.svg);
	height: 50px;
}
.fa-lateral-fut {
	content: url("../img/icon_lateral_fut.svg");
	height: 25px;
}
.fa-lateral-basket {
	content: url("../img/icon_lateral_basket.svg");
	height: 25px;
}
.fa-lateral-atletismo {
	content: url("../img/icon_lateral_atletismo.svg");
	height: 25px;
}
.fa-lateral-tkd {
	content: url("../img/icon_lateral_tkd.svg");
	height: 25px;
}
.fa-lateral-padel {
	content: url("../img/icon_lateral_padel.svg");
	height: 25px;
}

/* ----- MENU SOCIALS ----- */
.menu_socials {
	display: none;
}
@media (min-width: 1220px) {
	.menu_socials {
		display: block;
		position: fixed;
		right: -100px;
		top: 166px;
		z-index: 3;
	}
}
.menu_socials li {
	transition: all .5s ease-in-out;
}
.menu_socials li:hover {
	transform: translateX(-100px);
	
}	
.menu_socials img {
	height: 35px;
	margin-bottom: 5px;
}
.menu_socials ul {
	list-style-type: none;
}

/* ----- IR AL CIELO ----- */
.ir-arriba {
	display:none;
	padding:20px;
	background:var(--color_prin);
	cursor:pointer;
	position: fixed;
	bottom:20px;
	right:50px;
	z-index: 4;
}

/* ------------------ BARRA HLV ------------------ */
.barra_hlv {
	margin: 0;
	display: block;
	text-align: center;
	 background: rgb(255,255,255);
background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(241,241,241,1) 100%); 
}
.logo_hlv img {
	height: 90px;
}
.barra_hlv_contenedor {
	padding: 3rem 0;
}
.barra_hlv_contenedor {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
@media (min-width: 1023px) {
	.barra_hlv {
		text-align: left;
	}
	.barra_hlv_contenedor {
	align-items: baseline;
	}
}

/* ------------------ MENU HLV ------------------ */
.menu_hlv nav > ul{
	display: flex;
}
.menu_hlv nav ul li{
	list-style: none;
	position: relative;
}
.menu_hlv nav > ul > li:first-child > a{
	background-image: url("../img/icon-home.png");
	background-size: 25px;
	background-position: center center;
	background-repeat: no-repeat;
	padding: 15px 35px;
}
.menu_hlv nav > ul > li:first-child > a:hover{
	background-image: url("../img/icon-home.png");
	background-size: 25px;
	background-position: center center;
	background-repeat: no-repeat;
	padding: 15px 35px;
}
.menu_hlv nav > ul > li > a{
	color: var(--color_prin);
	padding: 15px;
	text-decoration: none;
	font-family: var(--roboto);
	text-transform: uppercase;
	font-size: 15px;
	line-height: 1.5;
	transition: all 300ms ease;
	font-weight: bold;
}
.menu_hlv nav > ul > li > a:hover {
	background: #0047C7;
	color: white;
	box-shadow: 0 0 5px 0 rgba(0,0,0,0.5);
}

/* ------------------ SUBMENU HLV ------------------ */
.menu_hlv nav > ul > li > ul {
	width: 200px;
	display: flex;
	flex-direction: column;
	background: white;
	position: absolute;
	top: 70px;
	padding: 15px 0;
	visibility: hidden;
	opacity: 0;
	box-shadow: 0 0 5px 0 rgba(0,0,0,0.5);
	z-index: 10;
	transition: all 300ms ease;
}
.menu_hlv nav > ul > li:hover > ul {
	visibility: visible;
	opacity: 1;
	top: 35px;
}
.menu_hlv nav > ul > li > ul:before {
	content: '';
	width: 0;
	height: 0;
	border-left: 12px solid transparent;
	border-right: 12px solid transparent;
	border-bottom: 12px solid white;
	position: absolute;
	top: -12px;
	left: 20px;
}
.menu_hlv nav > ul > li > ul > li > a {
	display: block;
	padding: 6px;
	color: var(--color_prin_claro);
	padding-left: 15px;
	margin-top: 10px;
	text-decoration: none;
	font-family: var(--roboto);
	text-transform: uppercase;
	font-size: 16px;
	transition: all 300ms ease;
}
.menu_hlv nav > ul > li > ul > li > a:hover {
	color: white;
	background: #0047C7;
	transform: scale(1.1);
	padding-left: 30px;
	font-size: 16px;
	box-shadow: 0 0 5px 0 rgba(0,0,0,0.5);
}

/* ------------ ELEMENTOS RESPONSIVE ------------ */
.icon_menu {
	width: 40px;
	cursor: pointer;
	height: 100%;
	display: none;
	align-items: center;
}
#label_check {
	width: 35px;
	height: 100%;
	display: none;
}
#check_menu {
	display: none;
}

/* ------------------ MENU RESPONSIVE ------------------ */
@media screen and (max-width: 1023px) {
	.menu_hlv nav > ul {
		flex-direction: column;
		background-color: var(--color_prin_osc);
		position: fixed;
		left: 0;
		top: 145px;
		width: 100%;
		height: 0px;
		transition: all 300ms ease;
		z-index: 100;
		opacity: 0;
		visibility: hidden;
	}
	.menu_hlv nav ul li {
		padding: 5px 0;
		margin: 10px 0;
	}
	.menu_hlv nav ul li ul {
		left: 300px;
	}
	.menu_hlv nav > ul > li:hover > ul {
		top: 50px;
	}
	.menu_hlv nav > ul > li > a {
		font-size: 25px;
		color: white;
	}
	#label_check {
		display: block;
	}
	.icon_menu {
		display: flex;
	}
	#check_menu:checked ~ nav > ul {
		height: 500px;
		visibility: visible;
		opacity: 1;
	}
}

/* ------------- BANNER VIDEO -------------*/
section.banner_video {
	position: relative;
}
div.contenedor_video {
	width: 100%;
	height: 550px;
	overflow: hidden;
	display: grid;
	align-content: center;
}
div.contenedor_video::after {
	position: absolute;
	content: '';
	background-color: rgba(0,0,0, .5);
	top: 0; left: 0; bottom: 0; right: 0;
	
}
div.contenido_banner_video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
}
.contenedor_mensaje {
	max-width: 1100px;
	margin: 0 auto;
	width: 95%;
	
	
	padding: 30px;
}
.mensaje_banner_video {
	position: relative;
	z-index: 1;
	margin: 0;
	text-align: center;
	padding: 30px;
}
.mensaje_banner_video p {
	color: white;
	font-size: 30px;
	font-weight: 600;
	font-family: var(--lato);
}
.pleca_banner {
	height: 10px;
	 background: rgb(255,0,0);
background: linear-gradient(90deg, rgba(255,0,0,1) 0%, rgba(0,24,255,1) 100%); 
}

/* ------------------ NEWS ------------------ */
.news {
	display: flex;
	flex-wrap: wrap;
}
.news_banner,
.news_lateral {
	flex: 0 0 100%;
}
@media (min-width: 1023px) {
	.news {
		justify-content: space-between;
	}
	.news_banner {
		flex-basis: 60%;
	}
	.news_lateral {
		flex-basis: calc(40% - 2rem);
	}
}

.news_banner {
	background-color: var(--color_prin_osc);
	color: white;
	padding: 20px;
	
	display: inline-block;
	vertical-align: top;
}
.news_banner h3 {
	font-family: var(--roboto);
	text-transform: uppercase;
	font-size: 2.4rem;
	margin: 20px 0 0 0;
}
.news_banner p {
	font-family: var(--lato);
	font-size: 1.6rem;
}
div.news_imagen {
	overflow: hidden;
}
div.news_imagen img {	
	transition: all .5s ease-in-out;
	bottom: 0;
}
div.news_imagen:hover img {
	transform: scale(1.1);

}

/* ------------------ MENU LATERAL  ------------------ */
.news_lateral {
	background-color: #efefef;
	font-family: var(--roboto);
}
.news_lateral ul {
  list-style: none;
}

.news_lateral a {
  text-decoration: none;
}

.news_lateral h2 {
  text-align: center;
  margin: 20px auto;
  color: #fff;
}

.accordion-menu {
  width: 100%;
  max-width: 850px;
  margin: 60px auto 20px;
  background: #fff;
  border-radius: 4px;
}
.accordion-menu li.open .dropdownlink {
  color: var(--color_sec);
  .fa-chevron-down {
    transform: rotate(180deg);
  }
}
.accordion-menu li:last-child .dropdownlink {
  border-bottom: 0;
}
.dropdownlink {
  cursor: pointer;
  display: block;
  padding: 15px 15px 15px 45px;
  font-size: 22px;
  border-bottom: 1px solid #ccc;
  color: var(--color_prin_osc);
  position: relative;
  transition: all 0.4s ease-out;
  i {
    position: absolute;
    top: 17px;
    left: 16px;
  }
  .fa-chevron-down {
    right: 12px;
    left: auto;
  }
}

.submenuItems {
  display: none;
  background: #0047C7;
  li {
    border-bottom: 1px solid #B6B6B6;
  }
}

.submenuItems a {
	display: block;
	font-size: 16px;
	color: white;
	padding: 12px 12px 12px 45px;
	transition: all 0.4s ease-out;
 	&:hover {
 	background-color: #CDDC39;
 	color: #fff;
  }
}
.submenuItems a:hover {
	background-color: var(--color_sec);
}

/* ------------- CONTADOR -------------*/
.parallax_rosarometro::before {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	background-attachment: fixed;
	filter: brightness(.5);
}
div.contador {
	position: relative;
	height: auto;
}
div.contador::before {
	background-image: url(../img/banner.jpg);
	content: '';
}

ul.resumen_evento {
	position: relative;
	padding: 100px 0;
}
ul.resumen_evento h6 {
	text-align: center;
	color: white;
	font-size: 35px;
	font-family: var(--roboto);
	margin: 0 0 30px 0;
}
ul.resumen_evento li {
	width: 50%;
	float: left;
	text-align: center;
	color: white;
	text-transform: uppercase;
	font-size: 24px;
	font-family: 'Oswald', sans-serif;
	list-style: none;
}
ul.resumen_evento li a {
	text-decoration: none;
	color: white;
}
@media only screen and (min-width: 768px) {
	ul.resumen_evento li {
		width: 25%;
	}
}
p.numero {
	color: wheat;
	font-size: 4em;
	display: block;
	margin: 0 0 10px 0;
	font-family: var(--open_sans);
	font-weight: 700;
}

/* ------------------ EXCELENCIA LITERARIA ------------------ */
.exc_lit {
	display: flex;
	flex-wrap: wrap;
}
.titulo_seccion,
.life_accesos {
	flex: 0 0 100%;
}
@media (min-width: 768px) {
	.exc_lit {
		justify-content: space-between;
	}
	.titulo_seccion {
		flex-basis: 10%;
	}
	.exc_lit_accesos {
		flex-basis: calc(90% - 2rem);
	}
	.exc_lit_acceso {
	display: inline-block;
	max-width: calc(33% - 10px);
	margin-right: 10px;
	vertical-align: top;
	}
}
div.exc_lit_acceso h3 {
	text-transform: uppercase;
	font-family: var(--roboto);
	font-size: 15px;
}
div.exc_lit_acceso p {
	font-family: var(--lato);
	font-size: 1.4rem;
	line-height: 1.4;
}
div.exc_lit_acceso p span{
	font-family: var(--lato);
	font-size: 1.4rem;
	line-height: 1.4;
	color: #848484;
	font-style: italic;
}
div.exc_lit_acceso:last-of-type {
		margin: 0;
}

/* ------------------ NOTAS ------------------ */
.notas {
	display: flex;
	flex-wrap: wrap;
}
.notas_accesos {
	flex: 0 0 100%;
}
@media (min-width: 768px) {
	.notas {
		justify-content: space-between;
	}
	.notas_acceso {
	display: inline-block;
	max-width: calc(33.3% - 10px);
	margin-right: 10px;
	}
}
div.notas_acceso a {
	text-decoration: none;
}
div.notas_acceso h3 {
	text-transform: uppercase;
	color: black;
	font-family: var(--roboto);
	font-size: 15px;
}
div.notas_acceso p {
	font-family: var(--lato);
	font-size: 1.4rem;
	line-height: 1.4;
}
div.notas_acceso:last-of-type {
		margin: 0;
}

/* ------------------ PICKS ------------------ */
.picks_fondo {
	background-color: var(--color_prin);
	padding: 4rem 0;
}
.picks {
	display: flex;
	flex-wrap: wrap;
}
.titulo_seccion,
.picks_accesos {
	flex: 0 0 100%;
}
@media (min-width: 768px) {
	.picks {
		justify-content: space-between;
	}
	.titulo_seccion {
		flex-basis: 10%;
	}
	.picks_accesos {
		flex-basis: calc(90% - 2rem);
	}
	.picks_acceso {
		display: inline-block;
		max-width: calc(50% - 15px);
		vertical-align: top;
		margin-right: 10px;
	}
}
div.picks_imagen {
	overflow: hidden;
}
div.picks_imagen img {	
	transition: all .5s ease-in-out;
	bottom: 0;
}
div.picks_imagen:hover img {
	transform: scale(1.1);

}
div.picks_acceso h3 {
	font-family: var(--roboto);
	color: white;
	font-size: 15px;
	font-style: italic;
	text-transform: uppercase;
}
div.picks_acceso p {
	font-family: var(--lato);
	color: white;
	font-size: 1.4rem;
	line-height: 1.4;
}
div.picks_acceso:last-of-type {
		margin: 0;
}

/* ------------------ VIDEOS ------------------ */
.parallax::before {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	background-attachment: fixed;
	filter: brightness(.4);
}
.videos {
	position: relative;
	height: auto;
	padding: 5rem 0;
	}
div.videos::before {
	background-image: url(../img/banner_videos.jpg);
	content: '';
}
@media (min-width: 815px) {
	.video_home {
		width: 815px;
		height: 458px;
	}
}

/* ------------------ AMAZING VIDEO ------------------ */
.mfp-hide {
	display: none !important;
}

.button .fa {
	margin-left: 20px;
}
iframe_av {
	margin-left: 80px;
}
button.mfp-close {
	overflow: visible;
	cursor: pointer;
	background: white;
	border: 0;
	-webkit-appearance: none;
	display: block;
	outline: 0;
	padding: 0;
	z-index: 1046;
	box-shadow: none;
}
.mfp-close {
	width: 44px;
	height: 44px;
	border-radius: 50px;
	line-height: 44px;
	position: absolute;
	right: 44px;
}

/* ------------------ FOOTER ------------------ */
footer.site_footer {
	background-color: #353535;
	padding-top: 40px;
	margin-top: 20px;
}
div.contenido_footer > div {
	color: white;
	padding: 0px 20px;
	font-size: 1.4rem;
	font-family: var(--lato);
}
div.footer_info p {
	line-height: 1.4;
}
footer.site_footer .ultimos_tweets ul li a {
	color: white;
}
@media only screen and (min-width: 768px){
	div.contenido_footer > div {
		width: 33.3%;
		float: left;
	}
}
footer.site_footer h3 {
	color: white;
	text-transform: uppercase;
	font-family: var(--lato);
	margin-bottom: 20px
}
footer.site_footer h3 span {
	color: var(--color_prin_claro);
}
footer.site_footer .ultimos_tweets li {
	margin-bottom: 15px;
}
footer.site_footer nav.redes_sociales {
	text-align: left;
}
footer.site_footer nav.redes_sociales a i {
	color: white;
	font-size: 1.8rem;
}
p.copyright {
	font-family: var(--lato);
	font-size: 12px;
	color: white;
	background-color: #2E2E2E;
	padding: 10px 0px 10px 0px;
	margin: 20px 0 0 0;
	text-align: center;
}

/* ------------------ INTERNAS ------------------ */
/* ------------------ BANNER HERO ------------------ */
.hero_banner {
	background: transparent;
	position: relative;
	overflow: hidden;
}
.hero_contenedor {
	max-width: 1280px;
	margin: 0 auto;
	display: block;
	position: relative;
	height: 100%;
}
.hero_contenedor::before {
	content: " ";
	display: table;
}
.landingImage {
	background-size: cover;
	background-position: center center;
	width: 100%;
	height: 240px;
}
.squareImage {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.squareImage img {
	border: 0;
}
.sectionTitle {
    color: #fff;
    text-transform: uppercase;
    font-size: 1em;
    margin-bottom: 0;
    font-weight: normal;
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.hero_texto {
	padding: 0 10px;
}
.hero_titulo {
    margin-bottom: 0;
    font-family: var(--roboto);
    font-size: 26px;
    font-weight: 400;
    color: #333333;
}
.hero_descripcion {
	font-family: var(--lato);
	font-size: 1.4rem;
	line-height: 1.5;
}
@media (min-width: 768px) {
	.hero_banner {
		height: 350px;
		background-color: var(--color_sec);
	}
	.hero_contenedor {
		padding-left: 10px;
		padding-right: 10px;
	}
	.landingImage {
		position: absolute;
		left: -10000px;
		top: auto;
		width: 1px;
		height: 1px;
		overflow: hidden;
	}
	.squareImage {
		left: auto;
		height: 350px;
		width: 350px;
		position: absolute;
		border-radius: 50%;
		top: -60px;
		right: 10px;
	}
	.bienvenida_texto {
		width: 100%;
		float: right;
		margin-left: 0;
		margin-right: 0;
		clear: none;
	}
	.hero_texto {
		padding: 0;
		padding-top: 20px;
		color: #fff;
		width: 36.84211%;
		float: left;
		margin-right: -100%;
		margin-left: 10%;
		clear: none;
	}
	.sectionTitle {
    	padding-top: 26px;
	}
	.hero_titulo,
	.hero_descripcion {
		color: white;
	}
	.hero_titulo {
    	padding-left: 10px;
	}
	.hero_descripcion {
    	padding: 0 10px;
    	margin-top: .5em;
	}
}

@media (min-width: 1024px) {
	.hero_banner {
		height: 290px;
	}
	.hero_texto {
		margin-left: 21.05263%;
	}
	.hero_titulo {
    	padding: 0;
		margin-top: .5em;
		margin-bottom: 0;
		font-size: 2.5em;
		color: #fff;
		line-height: .85em;
	}
	.hero_descripcion {
		padding: 0;
	}
	
}

/* ------------------ CONOCENOS ------------------ */
.contenedor_conocenos {
	display: flex;
 	justify-content: center;
	}
.conocenos {
	display: flex;
	flex-wrap: wrap;
}
.conocenos_video,
.conocenos_texto {
	flex: 0 0 100%;
}
@media (min-width: 768px) {
	.conocenos {
		max-width: 1000px;
		justify-content: space-between;
	}
	.conocenos_video {
		flex-basis: calc(60% - 2rem);
	}
	.conocenos_texto {
		flex-basis: 40%;
		margin: 0;
	}
}
.conocenos_texto {
	margin-top: 1rem;
}
.conocenos_texto p {
	font-family: var(--lato);
	font-size: 1.4rem;
	line-height: 1.4;
	color: black;
	text-align: justify;
}
.conocenos_texto h4 {
	font-family: var(--roboto);
	font-size: 2rem;
	font-weight: bold;
	color: black;
	margin: 0;
}

/* ------------------ DIRECTORIO ------------------ */
.directorio_columna {
	position: relative;
	margin-bottom: 30px;
	background: #f2f2f2;
	color: #161c32;
	padding: 15px;
	}
.directorio_descripcion {
	position: absolute;
	top: 0;
	left: 0;
	color: #161c32;
	width: 50%;
	height: 100%;
	padding: 5px;
}
.directorio_foto {
	position: relative;
	top: 0;
	left: 50%;
	width: 50%;
	height: 100%;
	padding: 5px;
}
.directorio_titulo {
	font-family: var(--roboto);
	color: var(--color_sec);
	font-size:24px;
	margin: 5px 0;
}
.directorio_subtitulo {
	font-family: var(--lato);
	font-size: 16px;
	font-weight: bold;
}
.directorio_txt {
	font-family: var(--lato);
	font-size: 11px;
	line-height: 1.5;
}
.directorio_img {
	width: 100%;
}
@media(min-width:768px) {
	.contenedor_directorio {
		margin: 0 auto;
		max-width: 1200px;
	}
	.directorio {
		justify-content: space-between;
		display: flex;
		flex-wrap: wrap;
		margin-top: 0;
	}
	.directorio_columna {
		width: 49%;
	}
	.directorio_titulo {
		font-size: 28px;
	}
}
@media(min-width:1024px) {
	.directorio_descripcion {
		padding: 20px;
	}
	.directorio_subtitulo {
	font-size: 14px;
	}
}

/* ------------------ UNIFORMES ------------------ */
.contenedor_uniformes {
 	display: grid;
	justify-content: center;
}
.contenedor_uniformes img {
 	margin-bottom: 20px;
	max-width: 1000px;
}

/* ------------------ WALLPAPERS ------------------ */
.wallpaper_acceso img {
 	border-radius: 45px 0 0 0;
	margin-bottom: 20px;
}

/* ------------------ CONTACTO ------------------ */
div.contacto_banner {
	height: 40rem;
	background-image: url(../img/banner_contacto.jpg);
	background-position: center center;
	background-size: cover;
}
/* Contacto */
.contacto p {
	color: lightgray;
	font-size: 1.7rem;
	margin: 2rem 0 0 0;
}
label {
	display: block;
	font-weight: 700;
	text-transform: uppercase;
	font-family: var(--lato);
	font-size: 1.5rem;
}
legend {
	font-size: 2.3rem;
	font-family: var(--roboto);
	color: var(--color_sec);
}
/* selector de atributo */
input:not([type="submit"]),
textarea,
select {
	padding: 1rem;
	display: block;
	width: 100%;
	background-color: #e1e1e1;
	margin-bottom: 2rem;
	border: none;
	border-radius: 1rem;
}
input[type="radio"]{
	width: auto;
	margin: 0;
}
select {
	-webkit-appearance: none;
	appearance: none;
}
textarea {
	height: 20rem;
}

	