:root {
  --blanco: #fff;
  --negro: #111;
  --primario: #009ee2;
  --secundario: #e0f2fc;
  --gris: #f8f6f6;
  --grisclaro: #efefef;
  --grismedio: #bababa;
  --grisoscuro: #464646;
  --parrafo: #777777;
  --azul: #1d3388;
  --verde: #47aa2b;
  --amarillo: #e8a719;
  --violeta: #450a76;
  --rojo: #c70d22;
  --naranja: #f15613;
  --divider: #e2e2e2;
  --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 */
}
img {
  border-radius: 0.5rem;
}
.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;
}
