.counter {
  width: 100%;
  height: 300px;
  background-image: url("../images/fun-facts-bg.png");
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  font-family: "Raleway";
  color: var(--white-color);
  text-transform: capitalize;
  display: flex;
  justify-content: center;
  align-items: center;
}

.counter .item,
.circle {
  width: 12%;
  height: 100%;
  display: inline-block;
  padding: 100px 0;
  text-align: center;
  transition: margin-top 0.5s;
}

.counter .item:hover {
  margin-top: -20px;
}

.counter .circle.mb {
  margin-top: 55px;
}

.counter .item .number {
  font-size: 30px;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}

.counter .item p {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
}
