.intro-stats-container {
  position: relative;
  display: flex;
  flex-direction: row;
  height: fit-content;
  background-color: rgb(255, 255, 255);
  border-top: solid 1px rgb(194, 194, 194);
}
.intro-stats {
  width: 33%;
  text-align: left;
  padding: 25px 40px;
  border-left: 1px solid rgb(223, 219, 219);
  font-family: "Public Sans", sans-serif;
}

.small-stat-text {
  font-weight: 600;
}

.intro-stats span {
  font-size: 20px;
  color: rgb(51, 51, 51);
}

.other-content {
  font-size: 40px;
  height: 120vh;
  padding-top: 400px;
  background-color: rgb(234, 255, 255);
}
.intro-stats-text span {
  font-size: clamp(28px, 3vw - 3px, 40px);
  text-transform: uppercase;
  font-weight: 300;
}
.big-stats span {
  font-size: 100px;
  font-family: "Zen Dots";
}

.ptShow {
  display: block;
  opacity: 0;
  transform: translateY(-20px);
}

.ptShowA {
  animation: pt-show 1s ease forwards;
  animation-delay: 0.6s;
}

@keyframes pt-show {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stagger-text span {
  display: block; /* each span on its own line */
  opacity: 0;
  transform: translateY(50px);
}
.stagger-textA span {
  animation: stagger-text-A 1s ease forwards;
}

.stagger-text span:nth-child(1) {
  animation-delay: 0.25s;
}
.stagger-text span:nth-child(2) {
  animation-delay: 0.4s;
}
.stagger-text span:nth-child(3) {
  animation-delay: 0.55s;
}
.stagger-text span:nth-child(4) {
  animation-delay: 0.7s;
}
.stagger-text span:nth-child(5) {
  animation-delay: 0.85s;
}
.stagger-text span:nth-child(6) {
  animation-delay: 1s;
}

@keyframes stagger-text-A {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stagger-text-horizontal span {
  display: inline-block; /* each span on its own line */
  opacity: 0;
  transform: translateY(120px);
}
.stagger-text-horizontalA span {
  animation: stagger-text-horizontalA 1s ease forwards;
  animation-delay: 2s;
}

.stagger-text-horizontal span:nth-child(1) {
  animation-delay: 0.25s;
}
.stagger-text-horizontal span:nth-child(2) {
  animation-delay: 0.325s;
}
.stagger-text-horizontal span:nth-child(3) {
  animation-delay: 0.4s;
}
.stagger-text-horizontal span:nth-child(4) {
  animation-delay: 0.475s;
}
.stagger-text-horizontal span:nth-child(5) {
  animation-delay: 0.55s;
}
.stagger-text-horizontal span:nth-child(6) {
  animation-delay: 0.625s;
}
.stagger-text-horizontal span:nth-child(7) {
  animation-delay: 0.7s;
}
.stagger-text-horizontal span:nth-child(8) {
  animation-delay: 0.775s;
}

.quick-stagger-text-horizontal span:nth-child(1) {
  animation-delay: 0.2s;
}
.quick-stagger-text-horizontal span:nth-child(2) {
  animation-delay: 0.25s;
}
.quick-stagger-text-horizontal span:nth-child(3) {
  animation-delay: 0.3s;
}
.quick-stagger-text-horizontal span:nth-child(4) {
  animation-delay: 0.35s;
}
.quick-stagger-text-horizontal span:nth-child(5) {
  animation-delay: 0.4s;
}
.quick-stagger-text-horizontal span:nth-child(6) {
  animation-delay: 0.45s;
}
.quick-stagger-text-horizontal span:nth-child(7) {
  animation-delay: 0.5s;
}
.quick-stagger-text-horizontal span:nth-child(8) {
  animation-delay: 0.55s;
}

.quick-stagger-text-horizontal span {
  display: inline-block; /* each span on its own line */
  opacity: 0;
  transform: translateY(120px);
}
.quick-stagger-text-horizontalA span {
  animation: stagger-text-horizontalA 1s ease forwards;
  animation-delay: 1s;
}

@keyframes stagger-text-horizontalA {
  from {
    opacity: 0;
    transform: translateY(120px);
  }
  1% {
    opacity: 0.1;
  }
  50% {
    opacity: 0.8;
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1000px) {
  #intro-stats-t {
    display: none;
  }
  .intro-stats {
    width: 50%;
  }
}

@media (max-width: 670px) {
  .intro-stats-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  #intro-stats-t {
    display: flex;
    width: 100%;
    text-align: center;
  }
  .intro-stats {
    width: 100%;
    border-left: none;
    border-bottom: 1px solid rgb(223, 219, 219);
    text-align: center;
    padding-right: 0px;
    padding-left: 0px;
    width: 100%;
  }
  .intro-stats-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
  }

  .intro-stats-text span {
    display: block;
    width: 100%;
    text-align: center;
  }
}
