:root {
  --blanco: #FFFFFF;
  --negro: #232323;
  --primario: #00AFEF;
  --secundario: #91D8F7;
  --grismedio: #BABABA;
  --parrafo: #777777;
  --gris: #F0F4F6;
  --grisclaro: #E8E8E8;
  --grisoscuro: #8C8C8C;
  --fuente: "Poppins", 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;
}
header .container {
  padding: 0;
}