:root {
  --blanco: #FFF;
  --negro: #111;

  --parrafo:#777777;
  --gris: #F0F4F6;
  --grisoscuro: #8C8C8C;	
  --fuente: 'Rubik', sans-serif;
}

html {
	font-size: 62.5%;
	box-sizing: border-box;
	scroll-snap-type: y mandatory;
	scroll-behavior: smooth;
}
*, *:before, *:after {
	box-sizing: inherit;
}
body, table, td, textarea, input, select {
	font-size: 1.5rem; /* 1rem = 10px */
	font-family: var(--fuente);
	color: var(--negro);
}
.texto_subrayado {
	text-decoration: underline;
}
.texto_resaltado {
	font-weight: 700;
}
.align_right {
	text-align: right;
}
.align_center {
	text-align: center;
}
.align_left {
	text-align: left;
}
.align_justify {
	text-align: justify;
}
.float_left {
	float: left;
}
.float_right {
	float: right;
}
span.align_justify, span.align_right, span.align_center {
	display: block;
}
.clear_both {
	clear: both;
}
form {
	padding: 0rem;
	margin: 0rem;
}
p {
	padding: 0rem;
	margin: 0rem;
	color: var(--parrafo);
	font-size: 1.9rem;
	font-style: normal;
	font-weight: 400;
	line-height: 135%; /* 1.6875rem */
}

.parrafo_modulo {
	color: var(--parrafo);
	font-size: 1.5rem;
	font-style: normal;
	font-weight: 400;
	line-height: 2.3rem;
}

@media (max-width:768px){
.parrafo_modulo {
	margin-bottom: 3rem;
}	
	
.parrafo_modulo:last-child {
	margin-bottom: 0rem;
}		
}

.parrafo_modulo b {
	color: var(--parrafo);
	font-size: 1.6rem;
	font-style: normal;
	font-weight: 600;
	line-height: 2.2rem;
}



.display_block {
	display: block;
}
.margen_none {
	margin: 0rem;
}
