@-webkit-keyframes animate-text {
  0% {
    -webkit-transform: translateY(10%);
            transform: translateY(10%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes animate-text {
  0% {
    -webkit-transform: translateY(10%);
            transform: translateY(10%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
.teal {
  color: #009CA6;
}

.blue {
  color: #0077CB;
}

.dark-blue {
  color: #003A96;
}

.stats-card {
  background-color: transparent;
  padding: 35px 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: inherit;
  border: 15px solid;
  border-color: inherit;
}
.stats-card h1,
.stats-card h2,
.stats-card h3 {
  color: inherit;
  margin: 0 0 20px;
}
.stats-card h2 {
  font-size: calc(64px + 16 * (100vw - 575px) / 1200);
  word-break: break-word;
  line-height: calc(90px + 16 * (100vw - 575px) / 1200);
  letter-spacing: -1px;
}
@media (max-width: 1199.98px) {
  .stats-card h2 {
    font-size: calc(45px + 16 * (100vw - 575px) / 1200);
    line-height: calc(60px + 16 * (100vw - 575px) / 1200);
  }
}
.stats-card .outcomes-differentiators-stat-title,
.stats-card .outcomes-differentiators-stat-details {
  text-align: center;
}
.stats-card p {
  font-size: 24px;
  font-weight: bold;
  line-height: 34px;
  margin-top: 10px;
}
@media (max-width: 1199.98px) {
  .stats-card p {
    font-size: 20px;
    line-height: 28px;
  }
}
.card-group .stats-card {
  min-height: 385px;
}
@media (max-width: 767.98px) {
  .card-group .stats-card {
    min-height: 285px;
  }
}
@media (max-width: 575.98px) {
  .card-group .stats-card {
    min-height: unset;
  }
}

.paragraph--type--dojo-stat .stats-card {
  background-color: #fff;
}