.button {
  text-transform: uppercase;
  font-weight: 800;
  line-height: 19px;
  letter-spacing: 1.6px;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #FFFFFF;
  border: none;
  border-radius: 0;
  cursor: pointer;
  font-family: "Open Sans";
}
.button .icon {
  font-size: 16px;
  color: #FFFFFF;
}
.button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.button.small {
  padding: 8px 16px;
}
.button.medium {
  padding: 12px 16px;
}
.button.large {
  padding: 24px;
}
.button.cta {
  background: #ED1C24;
  border: 1px solid #ED1C24;
}
.button.cta:hover {
  background: #FEECED;
  color: #ED1C24;
}
.button.primary {
  background: #0C1A81;
  border: 1px solid #0C1A81;
}
.button.primary:hover {
  background: #EFF0FD;
  color: #0C1A81;
}
.button.primary:hover .icon {
  color: #0C1A81;
}
.button.primary:disabled {
  background: #CCCFDA;
  color: #616582;
  border: 1px solid #CCCFDA;
  cursor: not-allowed;
}
.button.secondary {
  background: #FEECED;
  border: 1px solid #FEECED;
}
.button.secondary:hover {
  background: #ED1C24;
  color: #FFFFFF;
  border: 1px solid #ED1C24;
}
.button.disabled {
  background: #CCCFDA;
  color: #616582;
  border: 1px solid #CCCFDA;
  cursor: not-allowed;
}

.wysiwyg {
  font-family: Open Sans;
}
.wysiwyg h1 {
  font-size: 36px;
  /* Heading 1 */
  margin: 16px 0;
  font-weight: 900;
}
.wysiwyg h2 {
  font-size: 28px;
  /* Heading 2 */
  margin: 14px 0;
  font-weight: 900;
}
.wysiwyg h3 {
  font-size: 24px;
  /* Heading 3 */
  margin: 12px 0;
  font-weight: 900;
}
.wysiwyg h4 {
  font-size: 18px;
  /* Heading 4 */
  margin: 10px 0;
  font-weight: 900;
}
.wysiwyg h5 {
  font-size: 16px;
  /* Heading 5 */
  margin: 8px 0;
  font-weight: 900;
}
.wysiwyg h6 {
  font-size: 14px;
  /* Heading 6 */
  margin: 6px 0;
  font-weight: 900;
}
.wysiwyg em {
  font-style: italic;
}
.wysiwyg p {
  margin: 10px 0;
}
.wysiwyg strong {
  font-weight: 700 !important;
}
.wysiwyg ol {
  list-style: decimal;
}
.wysiwyg ul {
  list-style: disc;
}
.wysiwyg a {
  color: #0C1A81;
}

.hero {
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  overflow-x: hidden;
  max-width: 100%;
  padding: 16px;
}
@media (min-width: 768px) {
  .hero {
    max-width: 580px;
    margin: auto;
    padding: 0;
  }
}
@media (min-width: 1152px) {
  .hero {
    max-width: 100%;
  }
}
.hero .background-image {
  display: none;
}
@media (min-width: 1152px) {
  .hero .background-image {
    display: block;
    height: 475.2px;
    width: 102%;
    background-image: url("../../../images/hero.png");
    background-repeat: no-repeat;
    background-size: cover;
    height: 40vw;
  }
}
@media (min-width: 1920px) {
  .hero .background-image {
    height: 46vw;
  }
}
.hero .content-parent {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.hero .content-parent .content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero .content-parent .content .title .cfa-title {
  text-align: left;
  font-size: 32px;
  line-height: 40px;
  color: #000000;
  font-family: Ibarra Real Nova;
}
.hero .content-parent .content .title .cfa-title a {
  color: var(--primary-700, #0c1a81);
}
.hero .content-parent .content .title .cfa-title::after {
  left: unset;
  transform: unset;
  margin: 16px 0;
}
@media (min-width: 1152px) {
  .hero .content-parent .content .title .cfa-title {
    font-size: 48px;
    line-height: 54px;
  }
  .hero .content-parent .content .title .cfa-title::after {
    margin: 32px 0;
  }
}
.hero .content-parent .metrics-content {
  display: flex;
}
.hero .content-parent .metrics-content .metrics {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  align-self: stretch;
  padding: 16px;
  background: #FFFFFF;
  width: 100%;
  gap: 10px;
}
.hero .content-parent .metrics-content .metrics .metric {
  border-right: 1px solid #8C8FA5;
  flex: 1;
  color: #000000;
  text-align: center;
  font-family: Open Sans;
}
.hero .content-parent .metrics-content .metrics .metric:last-child {
  border-right: none;
}
.hero .content-parent .metrics-content .metrics .metric .numbers {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
}
.hero .content-parent .metrics-content .metrics .metric .label {
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
}
@media (min-width: 1152px) {
  .hero .content-parent .metrics-content .metrics .metric .numbers {
    font-size: 39px;
    line-height: 47px;
    letter-spacing: -0.39px;
  }
  .hero .content-parent .metrics-content .metrics .metric .label {
    font-size: 23px;
    line-height: 28px;
    letter-spacing: -0.46px;
  }
}
@media (min-width: 1152px) {
  .hero .content-parent {
    margin-top: -166px;
    padding: 16px;
    width: 100%;
    gap: 32px;
  }
  .hero .content-parent .content {
    max-width: 587px;
    align-self: flex-end;
    gap: 32px;
  }
  .hero .content-parent .metrics-content {
    margin: 0 -16px;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
  }
}
@media (min-width: 1440px) {
  .hero .content-parent {
    margin-top: -190px;
    max-width: 1144px;
  }
  .hero .content-parent .metrics-content {
    margin: unset;
  }
}
@media (min-width: 1920px) {
  .hero .content-parent {
    margin-top: -389px;
  }
  .hero .content-parent .content {
    margin-bottom: 72px;
    margin-right: -111px;
  }
}
.hero .mask-image {
  display: none;
  flex: 1;
  align-items: center;
  justify-content: center;
}
.hero .mask-image .mask {
  width: 217px;
  height: 217px;
}
@media (min-width: 768px) {
  .hero .mask-image {
    display: flex;
  }
}
@media (min-width: 1152px) {
  .hero .mask-image {
    display: none;
  }
}
@media (min-width: 1152px) {
  .hero {
    padding: 0;
    flex-direction: column;
  }
}

/*# sourceMappingURL=hero.css.map */
