.stats-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  width: 100%;
  text-align: center;
  padding: 80px 0;
}

.stats-grid .stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stats-grid .stat-number {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  color: #000;
}

.stats-grid .stat-card p {
  font-size: 14px;
  line-height: 1.45;
  max-width: 260px;
  margin: 0 auto;
  color: #111;
}


.five-photo-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.five-photo-track {
  position: relative;
  width: 100%;
}

.five-photo-slide {
  display: none !important;
  width: 100% !important;
  height: auto !important;
  object-fit: cover;
}

.five-photo-slide.is-active {
  display: block !important;
}

.five-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 28px;
  line-height: 30px;
  cursor: pointer;
  padding: 0;
}

.five-slider-prev {
  left: 12px;
}

.five-slider-next {
  right: 12px;
}

.five-slider-arrow:hover {
  background: rgba(0, 0, 0, 0.65);
}

.img-five{
  width: 290px;
}
/* Responsive */

@media (max-width: 1400px){
.img-five{
  width: 100%;
}
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 60px 0;
  }

  .stats-grid .stat-number {
    margin-bottom: 24px;
    font-size: 34px;
  }
}