/* 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: #4048C9;
    --color_sec: #01087C;
	--color_gris: #4C4C4C;
	--roboto: 'Roboto', sans-serif;
	--lato: 'Lato', sans-serif;
}

/* ----- UTILERIAS ----- */
.centrar_texto {
	text-align: center;
}
.top_seccion {
	margin-top: 55px;
}
.centrar_imagen {
	display: block;
  	margin-left: auto;
  	margin-right: auto;
}
.centrar_contenido {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.p_nomargin p {
	margin-top: 0;
}
h3 {
	font-family: var(--roboto);
	color: var(--color_gris);
	font-size: 30px;
	text-transform: uppercase;
	border-bottom: 2px solid deepskyblue;
	margin-top: 0;
}

/* ----- BOTONES ----- */
.btn_rojo {
	font-family: var(--lato);
	font-size: 1.5rem;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--color_prin);
	background-color: white;
	border: 2px solid var(--color_prin);
	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_rojo {
		/* arregla botones flex */
		display: inline-block;
		flex: 0 0 auto;
	}
}
.btn_rojo:hover {
	color: white;
	background-color: var(--color_prin);
	border: 2px solid var(--color_sec);
	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;
}

/* ----- TITULOS ----- */
.titulo_sec_rojo {
	font-family: 'Lato', sans-serif;
	font-size: 2.4rem;
	color: var(--color_prin);
	text-align: right;
	border-top: 1px solid var(--color_prin);
}
.titulo_sec_rojo span {
	font-size: 1.6rem;
}
.titulo_int_rojo {
	font-family: 'Lato', sans-serif;
	font-size: 2.4rem;
	color: var(--color_prin);
	text-align: left;
	display: block;
	border-bottom: 2px solid var(--color_prin);
}
.titulo_sec_bco {
	font-family: 'Lato', sans-serif;
	font-size: 2.4rem;
	color: white;
	text-align: right;
	border-top: 1px solid white;
}
.titulo_sec_bco span {
	font-size: 1.6rem;
}

/* ----- 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;
}

/* ------------------ BARRA LVC ------------------ */
.barra_lvc {
	margin: 0;
	display: block;
	text-align: center;
}
@media (min-width: 768px) {
	.barra_lvc {
		text-align: left;
	}
}
.logo_lvc img {
	height: 80px;
}
.barra_lvc_contenedor {
	padding: 4rem 0;
}
@media (min-width: 768px) {
	.barra_lvc_contenedor {
		display: flex;
		justify-content: space-between;
		align-items: baseline;
	}
	.menu_nuevo {
		display: flex;
		justify-content: space-between;
}

/* ----- MENU SOCIALS ----- */
.menu_socials {
	display: block;
	position: fixed;
	right: 0;
	top: 213px;
	z-index: 1;
	
}
.menu_socials img {
	height: 35px;
	margin-bottom: 5px;
}
.menu_socials ul {
	list-style-type: none;
}

/* ------------------ MENU LVC ------------------ */
nav.menu_lvc a {
	color: var(--color_gris);
	text-decoration: none;
	font-family: var(--lato);
	font-weight: 700;
	display: block;
	font-size: 1.6rem;
	line-height: 1.5;
	text-transform: uppercase;
	padding: 10px;
	transition: 0.3s;
}
@media (min-width: 768px) {
	nav.menu_lvc a {
		display: inline-block;
		margin-right: 25px;
	}
	nav.menu_lvc a:last-of-type {
		margin: 0;
	}
	nav.menu_lvc {
		margin-left: 15px;
	}
}
nav.menu_lvc a:hover {
	color: white;
	background-color: var(--color_sec);
}

.pleca_banner {
	height: 5px;
	background: rgb(2,0,36);
background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 50%, rgba(255,0,0,1) 100%);
}
	
/* ------------------ MENU NUEVO ------------------ */
.menu_new {
	margin-bottom: 20px;
}
nav.menu_nuevo a {
	font-family: var(--lato);
	line-height: 1.5;
	color: #2c2c2c;
	font-weight: 500;
	font-size: 1.5rem;
	text-decoration: none;
	position: relative;
}
a.underline:after {
	content: '';
	position: absolute;
	left: 0;
	display: inline-block;
	height: 1em;
	width: 100%;
	border-bottom: 2px solid deepskyblue;
	margin-top: 10px;
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: scale(0,1);
	transform: scale(0,1);
}
a.underline:hover:after {
  opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}
nav.menu_nuevo a:hover {
	font-weight: 600;
}

/* ------------------ BANNER ------------------ */
.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;
}
.banner {
	position: relative;
	height: auto;
	padding: 40px 0;
	}
div.banner::before {
	background-image: url(../img/banner.jpg);
	content: '';
}
.cuadro_mensaje {
	text-align: center;
}

@media (min-width: 815px) {
	.video_home {
		margin-top: 30px;
		width: 800px;
		height: 450px;
	}
	.cuadro_mensaje {
		width: 800px;
	}
}

h2 {
	color: var(--color_sec);
	font-family: var(--roboto);
	font-style: italic;
	font-size: 40px;
	margin: 0;
	text-shadow: 2px 2px #ff0000;
}
.cuadro_mensaje p {
	font-family: var(--lato);
	font-size: 18px;
	line-height: 1.5;
	color: dimgray;
}

/* ------------------ NUEVOS ------------------ */
.nuevos {
	display: flex;
	flex-wrap: wrap;
}
.nuevos_accesos {
	flex: 0 0 100%;
}
@media (min-width: 768px) {
	.nuevos {
		justify-content: space-between;
	}
	.nuevos_acceso {
	display: inline-block;
	max-width: calc(33.3% - 10px);
	margin-right: 10px;
	}
}
div.nuevos_acceso:last-of-type {
		margin: 0;
}

/* ------------------ SECCIONES ------------------ */
.secciones {
	display: flex;
	flex-wrap: wrap;
}
.secciones_accesos {
	flex: 0 0 100%;
}
@media (min-width: 768px) {
	.secciones {
		justify-content: space-between;
	}
	.secciones_acceso {
	display: inline-block;
	max-width: calc(33.3% - 15px);
	margin-right: 10px;
	}
}
div.secciones_acceso:last-of-type {
		margin: 0;
}

div.secciones_acceso img {	
	transition: all .5s ease-in-out;
	height: 160px;
}
div.secciones_acceso:hover img {
	transform: scale(1.1);

}

/* ------------------ ENTRADAS ------------------ */
.entradas {
	display: flex;
	flex-wrap: wrap;
}
.entradas_contenido {
	flex: 0 0 100%;
}
div.entradas_texto h4 {
	font-family: var(--lato);
	color: var(--color_gris);
	font-size: 20px;
	text-transform: uppercase;
	font-weight: bold;
}
div.entradas_texto p {
	font-family: var(--lato);
	font-size: 16px;
	line-height: 1.4;
}
div.entradas_texto p span {
	font-weight: bold;
	color: var(--color_prin);
}
.blog_imagen {
	margin-right: 20px;
}

/* --- zoom imagen 
div.blog_individual {
	overflow: hidden;
}
div.blog_individual img {	
	transition: all .5s ease-in-out;
	bottom: 0;
}
div.blog_individual:hover img {
	transform: scale(1.1);
}
--*/
@media (min-width: 768px) {
	.entradas {
		justify-content: space-between;
	}
	.blog_entrada {
		display: block;
	}
	div.blog_individual {
		display: flex;
		flex-direction: row;
		margin-top: 10px;
	}
	div.blog_individual img {
		height: 340px;
	}
}

/* ------------------ CRAI LIFE ------------------ */
.life {
	display: flex;
	flex-wrap: wrap;
}
.titulo_seccion,
.life_accesos {
	flex: 0 0 100%;
}
@media (min-width: 768px) {
	.life {
		justify-content: space-between;
	}
	.titulo_seccion {
		flex-basis: 10%;
	}
	.life_accesos {
		flex-basis: calc(90% - 2rem);
	}
	.life_acceso {
	display: inline-block;
	max-width: calc(25% - 10px);
	margin-right: 10px;
	vertical-align: top;
	}
}
div.life_acceso h3 {
	text-transform: uppercase;
	font-family: var(--roboto);
	font-size: 15px;
}
div.life_acceso p {
	font-family: var(--lato);
	font-size: 1.4rem;
	line-height: 1.4;
}
div.life_acceso:last-of-type {
		margin: 0;
}


/* ------------------ 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;
}

/* ------------------ BLOG ------------------ */
.blog {
	display: flex;
	flex-wrap: wrap;
}
.titulo_seccion,
.blog_contenido {
	flex: 0 0 100%;
}
.blog_entrada p {
	font-family: var(--lato);
	font-size: 10px;
}
div.blog_texto h3 {
	text-transform: uppercase;
	font-family: var(--roboto);
	font-size: 15px;
}
div.blog_texto h4 {
	font-family: var(--lato);
	color: black;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: bold;
}
div.blog_texto p {
	font-family: var(--lato);
	font-size: 1.4rem;
	line-height: 1.4;
}
div.blog_texto p span {
	font-weight: bold;
	color: var(--color_prin);
}
.leer_entrada {
	font-weight: bold;
	font-style: italic;
	color: var(--color_prin);
	font-family: var(--roboto);
	font-size: 1.4rem;
}
@media (min-width: 768px) {
	.blog {
		justify-content: space-between;
	}
	.titulo_seccion {
		flex-basis: 10%;
	}
	.blog_contenido {
		flex-basis: calc(90% - 2rem);
	}
	.blog_entrada {
		display: block;
	}
}

/* ------------------ 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_info img {
	height: 75px;
}
@media only screen and (min-width: 768px){
	div.contenido_footer > div {
		width: 33.3%;
		float: left;
	}
}
footer.site_footer h5 {
	font-size: 24px;
	color: white;
	text-transform: uppercase;
	font-family: var(--lato);
	margin-bottom: 20px
}
footer.site_footer h5 span {
	color: var(--color_prin);
}
footer.site_footer .ultimos_tweets li {
	margin-bottom: 15px;
}
footer.site_footer .ultimos_tweets li a {
	color: white;
}
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: 60%;
	}
	.conocenos_texto {
		flex-basis: calc(40% - 1rem);
		margin: 0;
	}
}
.conocenos_texto {
	margin-top: 1rem;
}
.conocenos_texto p {
	font-family: var(--lato);
	font-size: 1.4rem;
	line-height: 1.4;
	color: black;
}
.conocenos_texto h4 {
	font-family: var(--roboto);
	font-size: 1.8rem;
	font-weight: bold;
	color: black;
	margin: 0;
}

/* ---------- DIRECTORIO ---------- */
@media (min-width: 480px) {
.directorio {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		margin-top: 0;
	}
}
/* ---------- Estilos del profe ---------- */
.profe {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 30px;
	background: #f2f2f2;
	color: #161c32;
	padding: 20px;
	font-family: var(--lato);
}
.profe_descripcion,
.profe_foto {
	flex: 0 0 100%;
}
.profe_txt {
	font-size: 12px;
}
@media (min-width: 480px) {
	.profe {
		justify-content: space-between;
	}
	.profe_descripcion {
		flex-basis: 45%;
	}
	.profe_foto {
		flex-basis: calc(55% - 2rem);
	}
	.profe_txt {
	font-size: 10px
	}
}
@media (min-width: 768px) {
	.profe {
		flex-basis: calc(50% - .5rem);
	}	
}
@media (min-width: 1024px) {
	.profe_txt {
		font-size: 12px;
	}
}
@media (min-width: 1200px) {
	.profe {
		flex-basis: calc(33.3% - .5rem);
	}	
}
.profe_titulo {
	font-size: 30px;
	margin: 0;
}
.profe_subtitulo {
	font-size: 14px;
	font-weight: bold;
}

/* ---------- PLATAFORMAS ---------- */
.plataformas {
	display: flex;
	flex-wrap: wrap;
}
.plataformas_accesos {
	flex: 0 0 100%;
}
@media (min-width: 768px) {
	.plataformas {
		justify-content: space-between;
	}
	.plataformas_acceso {
	display: inline-block;
	max-width: calc(20% - 10px);
	margin-right: 10px;
	}
}
div.plataformas_acceso:last-of-type {
		margin: 0;
}

div.plataformas_acceso img {	
	transition: all .5s ease-in-out;
	height: 200px;
}
div.plataformas_acceso:hover img {
	transform: scale(1.1);
}

/* ---------- VIDEOBLOG ---------- */
.videoblog_descrip {
	background-color: #f2f2f2;
	padding: 15px;
}
.videoblog_descrip h4 { 
	margin-top: 0;
}
.videoblog_descrip p { 
	margin-bottom: 0;
}
.videoblog {
	display: flex;
	flex-wrap: wrap;
}
.videoblog_acceso {
	flex: 0 0 100%;
}
@media (max-width: 815px) {
	.video_videoblog {
		width: 500px;
		height: 281px;
	}
}
@media (min-width: 815px) {
	.video_videoblog {
		width: 800px;
		height: 450px;
	}
}
@media (min-width: 1024px) {
	.videoblog {
		justify-content: space-between;
	}
	.videoblog_acceso {
		display: inline-block;
		max-width: calc(50% - 10px);
		margin-right: 10px;
	}
	.video_videoblog {
		width: 500px;
		height: 281px;
	}
}
@media (min-width: 1280px) {
	.video_videoblog {
		width: 635px;
		height: 357px;
	}
}
div.videoblog_acceso:last-of-type {
		margin: 0;
}

/* ---------- BLOG ---------- */
div.blog_banner {
	height: 50rem;
	background-position: center center;
	background-size: cover;
}
.blog_contenedor h3 {
	font-family: var(--roboto);
	font-size: 20px;
	color: dimgrey;
}
.blog_contenedor img {
	max-height: 400px;
}
@media (min-width: 768px) {
	div.blog_contenedor {
		max-width: 900px;
		margin: 0 auto;
	}
}

/* ---------- PADRES ---------- */
.somos_padres {
	display: flex;
	flex-wrap: wrap;
}
.logo_sp {
	height: 120px;
	margin-bottom: 30px;
}
.somos_padres_accesos {
	flex: 0 0 100%;
}
@media (min-width: 768px) {
	.somos_padres {
		justify-content: space-between;
	}
	.somos_padres_acceso {
	display: inline-block;
	max-width: calc(33.3% - 10px);
	margin-right: 10px;
	}
}
div.somos_padres_acceso:last-of-type {
		margin: 0;
}

div.somos_padres_acceso img {	
	transition: all .5s ease-in-out;
}
div.somos_padres_acceso:hover img {
	transform: scale(1.05);
}

/* ---------- VIRGEN ROSARIO ---------- */

/* ---------- BANNER ---------- */
.parallax_virgen::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;
}
.banner_virgen {
	position: relative;
	height: auto;
	padding: 60px 0;
	}
div.banner_virgen::before {
	background-image: url(../img/rosario_virgen/100_0646.JPG);
	content: '';
}
.cuadro_mensaje_virgen {
	text-align: center;
	font-family: var(--lato);
	font-size: 50px;
	line-height: 1.5;
	color: white;
	text-shadow: 0px 0px 5px #6E6E6E;
}


.contenedor_virgen {
	display: flex;
 	justify-content: center;
	}
.virgen {
	display: flex;
	flex-wrap: wrap;
}
.virgen_foto,
.virgen_texto {
	flex: 0 0 100%;
}
@media (min-width: 768px) {
	.virgen {
		max-width: 900px;
		justify-content: space-between;
	}
	.virgen_foto {
		flex-basis: 30%;
	}
	.virgen_texto {
		flex-basis: calc(70% - 2rem);
		margin: 0;
	}
}
.virgen_foto img {
	height: 400px;
}
.virgen_texto {
	margin-top: 1rem;
}
.virgen_texto p {
	font-family: var(--lato);
	font-size: 1.7rem;
	line-height: 1.5;
	color: dimgray;
}
.virgen_texto h4 {
	font-family: var(--roboto);
	font-size: 1.8rem;
	font-weight: bold;
	color: black;
	margin: 0;
}
div.galeria {
	margin-bottom: 30px;
}
div.galeria a {
	display: inline-block;
	margin: 5px;
}

/* ------------- 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(.7);
}
div.contador {
	position: relative;
	height: auto;
}
div.contador::before {
	background-image: url(../img/rosario_virgen/rosario2.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(--lato);
	font-weight: 700;
}


/* ---------- 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;
	max-width: 877px;
}
