.metrics-section1 {
/*   padding: 60px 20px; */
  text-align: center;
  padding-bottom:0px;

.metrics-container1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: auto;
  gap: 20px;
}

.metric-item {
  flex: 1;
  min-width: 180px;
  position: relative;
}

.metric-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.1);
}

.metric-item h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
}

.metric-label {
  font-size: 16px;
  margin-bottom: 5px;
}

/* .metric-subtext {
  font-size: 13px;
  color: #6b7280;
} */

.metrics-footer {
  margin-top: 30px;
  font-size: 13px;
}

@media (max-width: 768px) {
  .metrics-container1 {
    flex-direction: column;
  }

  .metric-item::after {
    display: none;
  }
}