
.statistics {
  padding: 50px 20px;
  background-color: transparent;
}

.statistics .container {
  max-width: 1270px;
  margin: 0 auto;
  background-color: #F8BA0099;
  padding: 50px 40px;
  border-radius: 12px;
}

.statistics .stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 40px;
}

.statistics .stat-item {
  position: relative;
  padding-left: 36px;
  /* space for arrow */
}

.statistics .stat-arrow {
  position: absolute;
  left: 0;
  top: 10px;
  width: 2px;
  height: 80px;
  background-color: #000;
}

.statistics .stat-arrow::before,
.statistics .stat-arrow::after {
  content: '';
  position: absolute;
  left: -3px;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
}

.statistics .stat-arrow::before {
  top: -8px;
  border-bottom: 8px solid #000;
}

.statistics .stat-arrow::after {
  bottom: -8px;
  border-top: 8px solid #000;
}

.statistics .stat-number {
  font-size: 48px;
  font-weight: 500;
  margin: 0 0 10px 0;
  color: #000;
  line-height: 1;
  font-family: inherit;
}

.statistics .stat-description {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  color: #000;
  max-width: 260px;
}

/* Fully Responsive Breakpoints */
@media (max-width: 1400px) {
  .statistics {
    padding: 45px 62px;
    background-color: transparent;
  }
}


@media (max-width: 1300px) {
  .statistics {
    padding: 45px 62px;
    background-color: transparent;
  }
}

@media (max-width: 1200px) {
  .statistics {
    padding: 45px 62px;
    background-color: transparent;
  }
}

@media (max-width: 1100px) {
  .statistics {
    padding: 60px 60px;
    background-color: transparent;
  }
}

@media (max-width: 1024px) {
  .statistics {
    padding: 45px 60px;
    background-color: transparent;
  }

  .statistics .container {
    padding: 50px 40px;
  }

  .statistics .stats-grid {
    gap: 45px 35px;
  }

  .statistics .stat-number {
    font-size: 44px;
  }
}

@media (max-width: 992px) {
  .statistics {
    padding: 30px 53px;
    background-color: transparent;
  }


  .statistics .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 40px;
  }

  .statistics .stat-item {
    padding-left: 40px;
  }

  .statistics .stat-arrow {
    height: 70px;
  }
}

@media (max-width: 870px) {
  .statistics {
    padding: 30px 30px;
    background-color: transparent;
  }
}

@media (max-width: 640px) {

  .statistics {
    padding: 50px 15px;
  }

  .statistics .container {
    padding: 40px 25px;
    border-radius: 10px;
  }

  .statistics .stats-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .statistics .stat-item {
    padding-left: 50px;
    text-align: left;
  }

  .statistics .stat-arrow {
    height: 90px;
    top: 8px;
  }

  .statistics .stat-number {
    font-size: 42px;
  }

  .statistics .stat-description {
    max-width: none;
    font-size: 15px;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .statistics .stat-number {
    font-size: 35px;
  }

  .statistics .stat-item {
    padding-left: 45px;
  }

  .statistics .stat-arrow {
    height: 80px;
  }
}