/* =================== CSS Reset =================== */
html {
  -webkit-text-size-adjust: 100%;
}
h1, h2, h3, h4, h5, h6, p, blockquote, figure, span, a, sub, sup {
  margin: 0;
  font-weight: normal;
}
a {
  text-decoration: none;
  word-break: break-all;
  color: #1f2124;
}
/* ========================== Documento ========================== */
* {
  margin: 2% 1%;
  font-size: 16px;
  font-weight: normal;
  text-indent: 0px;
  text-align: justify;
  line-height: 1.4em;
  color: #1f2124;
}
div {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}
.container {
  max-width: 1200px;
  text-align: center;
  margin: auto;
}
/* ========================== Generales ========================== */
p {
  text-indent: 1.3em;
  margin: 0.3em auto;
  hyphens: auto;
  word-wrap: break-word;
  font-size: inherit;
}
sub, sup {
  font-size: 0.7em;
}
a, .redondas, .italicas, .bold, .versales {
  font-size: 1em;
}
blockquote {
  font-size: 0.9em;
  margin: 1.5em 3.5em;
}
/* ========================== Estilos básicos ========================== */
.redondas {
  font-style: normal;
  font-weight: inherit;
}
.italicas {
  font-style: italic;
  font-weight: inherit;
}
.bold {
  font-weight: bold;
  font-style: inherit;
}
.versales {
  text-transform: uppercase;
  font-size: 0.75em;
}
.subrayado {
  text-decoration: underline;
}
.tachado {
    text-decoration:line-through;
}
/* ========================== Responsive ========================== */
@media (max-width: 768px) {
    * {
        font-size: 14px;
    }
    .container {
        margin: 2% 3%;
    }
    h4 {
        margin-top: 1em;
    }
}