.counter-content3{
  display: flex;
  justify-content: center;
  gap: 2rem 2rem;
  padding: 30px;
  flex-wrap: wrap;
}

.circle {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  font-size: 15px;
  color: #000;
  text-align: center;
  background: #fff;
  border: 1px solid #000;
  margin: 0 auto;
  margin-bottom: 15px;
  
  transition: .4s all ease-in-out;
}
.counter-item3{
  width: 190px;
  text-align: center;
}

.counter-item3:hover .circle {
  background: #000;
  color: #fff;
}


  /*border-left: 1px dashed #666666;/*
  padding: 0 30px;
}

.counter-item:first-child{
  display: flex;
  flex-direction: column;
  gap: .5rem;
  text-align: center;
  flex: 1;
  border-left: 0px;
  padding: 0 30px;
}

.counter-item .number{
  margin-bottom: 1rem;
}


/*****************************************/
/* RESPONSIVE STYLES    */
/*****************************************/
@media (max-width: 575px) {
  .counter-content{
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  .counter-item {
    border-left :0px;
}