.counter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 32px;
}
.counter.contact-counter{max-width:900px; margin:0 auto;}
/* Styles only when .counter also has .contact-counter class */
.counter.contact-counter h5 {
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: 115%; /* 18.4px */
}

.counter .item {
  text-align: center;
  width: calc(33.33% - 32px);
}

.counter .item h5 {
  margin-bottom: 2px;
}

.counter .item p {
  margin: 0;
  color: rgba(11, 11, 11, 1);
}

@media(max-width:1024px){
.counter .item { 
  width: 100%;
}
