.image-box-row {
  display: flex;
  gap: 120px;
  justify-content: center;
  flex-wrap: wrap;
}

.image-box {
  border-radius: 10px;
  overflow: hidden;
  width: 250px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-box:hover {
  transform: translateY(-5px);
}

.image-box img {
  width: 30%;
  height: auto;
  display: block;
}

.counter {
  font-size: 35px;

  margin: 10px 0 5px;
  color: #fff;
  font-family: var(--tt-alter-font);
}

.title {
  font-size: 35px;
  color: #fff;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-family: var(--tt-alter-font);
}