.counter-content{
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 30px;
  
  position: relative;
}
.counter-item{
  display: flex;
  flex-direction: column;
  gap: .5rem;
  text-align: center;
  flex: 1;

  border: 2px solid #fff;
  padding: 8px 5px;
  transition: .3s all ease-in-out;
}

.counter-item:hover {
  border: 2px solid #000;
}

.counter.number {
  display: none;
}

  /*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;
}
*/

/* ARROWS */
.arrow {
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform: rotate(270deg);
}

.arrow span {
    display: block;
    width: 2vw;
    height: 2vw;
    border-bottom: 5px solid #ff0000;
    border-right: 5px solid #ff0000;
    transform: rotate(45deg);
    margin: -10px;
    animation: animate 2s infinite;
}

.arrow span:nth-child(2) {
    animation-delay: -0.2s;
}

.arrow span:nth-child(3) {
    animation-delay: -0.4s;
}

@keyframes animate {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-20px, -20px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(20px, 20px);
    }
}

@media(max-width: 767px) {
  .counter.arrow {
    display: none;
  }
}


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