@keyframes customFadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 0.5em, 0); }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0); } }

@keyframes zoomOutElement {
  from {
    transform: scale(1) translate(0, 0); }
  to {
    transform: scale(4) translate(30px, -30px); } }

@keyframes dottedLoading {
  0%,
  80%,
  100% {
    box-shadow: 0 1.5em 0 -0.9em; }
  40% {
    box-shadow: 0 1.5em 0 0; } }

@keyframes stickyFadeInUp {
  from {
    transform: translate3d(0, 0.2em, 0);
    visibility: visible;
    opacity: 0; }
  to {
    transform: translate3d(0, -50%, 0);
    opacity: 1; } }

@keyframes spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

.section-title {
  color: #004a8d;
  text-align: center;
  margin-bottom: 1em;
  font-weight: 400;
  font-size: 18px;
  font-size: 1.28571rem; }
  @media (min-width: 768px) {
    .section-title {
      font-size: 20px;
      font-size: 1.42857rem;
      margin-bottom: 0.5em; } }
  @media (min-width: 992px) {
    .section-title {
      font-size: 24px;
      font-size: 1.71429rem; } }
  @media (min-width: 1200px) {
    .section-title {
      font-size: 28px;
      font-size: 2rem; } }
  @media (min-width: 1600px) {
    .section-title {
      font-size: 33px;
      font-size: 2.35714rem; } }
