/* Colors */
/* Fonts */
body .wrapper {
  padding: 20px 0 30px;
}
body .wrapper h1 {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 50px;
  font-family: "Euclid Circular A", sans-serif;
  font-weight: 700;
  line-height: 42px;
  font-size: 34px;
}
body .wrapper h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(0deg, #0774e4 36%, #2a4b51);
  height: 3px;
  width: 65px;
}
@media (max-width: 420px) {
  body .wrapper h1 {
    line-height: 32px;
    font-size: 24px;
  }
  body .wrapper h1::after {
    width: 45px;
  }
}
body .wrapper h2 {
  margin-bottom: 30px;
  font-family: "Euclid Circular A", sans-serif;
  font-weight: 700;
  line-height: 32px;
  font-size: 28px;
}
@media (max-width: 420px) {
  body .wrapper h2 {
    line-height: 22px;
    font-size: 18px;
  }
}
body .wrapper h3 {
  margin-bottom: 10px;
}
body .wrapper p {
  margin-bottom: 30px;
  line-height: 26px;
  font-size: 16px;
}
body .wrapper p:last-child {
  margin-bottom: 0;
}
body .wrapper strong {
  font-family: "Euclid Circular A", sans-serif;
  font-weight: 700;
}
body .wrapper em,
body .wrapper i {
  font-style: italic;
}
body .wrapper a {
  transition: all 0.3s ease;
  color: #0774e4;
}
body .wrapper a:hover {
  text-decoration: underline;
}
body .wrapper ul,
body .wrapper ol {
  padding-left: 30px;
  margin-bottom: 36px;
}
body .wrapper ul li,
body .wrapper ol li {
  padding: 4px 0;
  list-style-type: disc;
  font-family: "Euclid Circular A", sans-serif;
  line-height: 20px;
  font-size: 14px;
}
body .wrapper ul:last-child,
body .wrapper ol:last-child {
  margin-bottom: 0;
}
body .wrapper ol li {
  list-style-type: number;
}