container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 800px;
}

.counter-box {
  /*background: white;
  border-radius: 15px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);*/
  transition: transform 0.3s ease;
}

.counter-box:hover {
  transform: translateY(-3px);
}

.counter-number {
  font-size: 40px;
  font-weight: bold;
  color: #252668;
  margin: 20px 0;
  font-variant-numeric: tabular-nums;
}

.counter-label {
  font-size: 16px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.counter-icon {
  font-size: 40px;
  margin-bottom: 10px;
}
/*
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(80px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
*/

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-80px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(300px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-300px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.counter-box:nth-child(1) {
  animation: slideInRight 1.5s ease-out;
}

.counter-box:nth-child(2) {
  animation: slideInRight 1.5s ease-out;
}

.counter-box:nth-child(3) {
  animation: slideInDown 1.5s ease-out;
}

.counter-box:nth-child(4) {
  animation: slideInLeft 1.5s ease-out;
}
.counter-box:nth-child(5) {
  animation: slideInLeft 1.5s ease-out;
}

/*Live Statistic*/
.dot {
  width: 12px;
  height: 12px;
  background-color: red;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px; /* szóköz a pont és a szöveg között */

  animation: pulse 2s infinite;
  padding-bottom: 5px;
}

@keyframes pulse {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(1.3);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.title {
  vertical-align: middle;
}

.live-sign {
  padding: 0px;
  background-color: #f0f0f0;
}

.live-sign p {
  margin-bottom: 0 !important;
}

.live-sign-title {
  padding-bottom: 5px;
}
