.counter-content{
  display: flex;
  justify-content: center;

}
.counter-item{
  display: flex;
  flex-direction: column;
  gap: .5rem;
  text-align: center;
  flex: 1;
  border-left: 1px dashed #666666;
  padding: 0 30px;
  
  transition: .3s all ease-in-out;
}

.counter-item:hover {
  background: #000;
  border-left: 0;
}

.counter-item:hover span {
  color: #fff !important;
}

.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;
}