
.counter-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.counter-wrapper .vline {
  border-width: 1px;
  border: 1px solid rgba(3, 43, 82, 0.17);
  height: 100px;
}
@media (max-width: 767px) {
  .counter-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 100px;
  }
  .counter-wrapper .vline {
    display: none;
  }
  .counter-wrapper .cont {
    justify-content: center;
    margin-bottom: 0 !important;
  }
  .counter-wrapper .cont span {
    font-size: 36px !important;
  }
}
@media (max-width: 500px) {
  .counter-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 30px;
  }
  .counter-wrapper .vline {
    display: none;
  }
}

.counter__items .cont {
  margin-bottom: 10px;
}


.counter__items .cont span {
  font-size: 50px;
  font-weight: 800;
  color: #032B52;
  line-height: 64px;
}
.plus__icon svg {
  width: 30px;
  height: 30px;
}
.plus__icon svg {
  fill: #032B52;
}

.counter__items p {
  font-size: 16px;
  color: rgba(3, 43, 82, 0.7);
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
}