:root {
  --blanco: #FFFFFF;
  --negro: #222222;
  --primario: #272d42;
  --secundario:#3FA9F5;	
  --bg:#F2F9FC;	
  --gris: #666666;
  --fb: #1278FE;	
  --insta:#D43089;
  --wsp:#1FAD00;	
  --fuente: 'Montserrat', sans-serif;
}

html {
	font-size: 62.5%;
	box-sizing: border-box;
	scroll-snap-type: y mandatory;
}
*, *: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;
	font-size: 1.8rem;
}
.display_block {
	display: block;
}
.margen_none {
	margin: 0rem;
}
