#in-numbers {
  min-height: 400px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--header-bg);
  -webkit-text-stroke-color: var(--header-bg);
}

.in-numbers-title {
  text-transform: capitalize;
  font-size: var(--text-xl);
  font-weight: 600;
}
.numbers-wrapper {
  gap: 10rem;
}

.number-value {
  font-size: 50px;
  color: #fff;
  -webkit-text-fill-color: white;
  font-weight: 700;
  border-bottom: 10px solid #f8f0e0;
}

.number-title {
  font-size: var(--text-md);
  font-weight: normal;
  color: #fff;
}

.icon-wrapper {
  margin-bottom: 10px;
}

.number {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 10px;
}

@media screen and (max-width: 767px) {
  .numbers-wrapper {
    gap: 1rem;
  }
  .in-numbers-title {
    padding-top: 2rem;
  }
}
