.counter {
  width: 100%;
}
.counter_container {
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  padding: 5rem 3rem;
}
.counter_content {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}
.counter_item {
  aspect-ratio: 1 / 1; 
  width: 100%;
  background-color: #F29400;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 1rem;
}
.counter_headline {
  margin-bottom: 0.3rem;
}
.counter_headline h4 {
  font-size: clamp(50px, 10vw, 100px);
  line-height: 100%;
}
.counter_description p {
  font-size: clamp(16px, 2.5vw, 20px);
  line-height: 100%;
}

@media screen and (max-width: 800px) {
  .counter_container {
    padding: 3rem 1rem;
  }
  .counter_content {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}