<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.secondary-hero-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.secondary-hero-wrapper .secondary-hero-container {
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px 24px;
}

.secondary-hero-wrapper .secondary-hero-media-wrapper {
  position: relative;
  padding: 40px;
}

.secondary-hero-wrapper .secondary-hero-img {
  width: 100%; 
}

.secondary-hero-wrapper .secondary-hero-info-wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 28px;
}

.secondary-hero-wrapper .secondary-hero-copy-section {
  width: 44%;
  margin-top: -20px;
}

.secondary-hero-wrapper .secondary-hero-title {
  font-family: 'Raleway', sans-serif;
  font-size: 48px;
  color: white;
  line-height: 1.4;
}

.secondary-hero-wrapper .secondary-hero-copy {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  color: white;
  margin-top: 0px;
  margin-bottom: 12px;
  line-height: 2;
}

.secondary-hero-wrapper .secondary-hero-link-item {
  display: inline-flex;
  align-items: center;
}

.secondary-hero-wrapper .secondary-hero-link-item &gt; span {
  margin-right: 4px;
}

.secondary-hero-wrapper .secondary-hero-link-item &gt; svg {
  position: relative;
  left: 2px;
  transition: all .2s ease-in-out;
}

.secondary-hero-wrapper .secondary-hero-link-item:hover &gt; svg {
  left: 8px;
}

.secondary-hero-wrapper .secondary-hero-stat-item {
  background-color: #492C67;
  padding-top: 8px;
  height: min(28vw, 180px);
  width: min(28vw, 180px);
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(-80px);
  opacity: 0;
  transition: transform .5s ease-in-out .250s, opacity .625s ease-in .375s;
}

.secondary-hero-wrapper .secondary-hero-stat-item.show-secondary-stat {
  transform: translateY(0px);
  opacity: 1;
}

.secondary-hero-wrapper .secondary-hero-stat-container {
  display: flex;
  width: 54%;
  justify-content: space-between;
}

.secondary-hero-wrapper .secondary-hero-stat-number {
  margin-top: 12px;
  letter-spacing: 2px;
}

.secondary-hero-wrapper .secondary-hero-stat-description {
  font-family: 'Open Sans', sans-serif;
  font-size: 19px;
  color: white;
  margin-top: -18px;
}

@media (max-width: 1200px) {
  .secondary-hero-wrapper .secondary-hero-info-wrapper {
    flex-direction: column;
    align-items: center;
  }
  
  .secondary-hero-wrapper .secondary-hero-copy-section {
    width: 100%;
    margin-bottom: 64px;
  }
  
  .secondary-hero-wrapper .secondary-hero-stat-container {
    width: min(100%, 620px);
  }
  
  .secondary-hero-wrapper .secondary-hero-stat-item {
    justify-content: center;
  }
  
  .secondary-hero-wrapper .secondary-hero-stat-number {
    font-size: 40px !important;
    margin-top: -22px;
  }
  
  .secondary-hero-wrapper .secondary-hero-stat-description {
    font-size: 22px !important;
  }
}

@media (max-width: 500px) {
  .secondary-hero-wrapper .secondary-hero-stat-number {
    font-size: 28px !important;
    margin-top: -22px;
  }
  
  .secondary-hero-wrapper .secondary-hero-stat-description {
    font-size: 16px !important;
  }
}
</pre></body></html>