.reparate {
  margin-top: 65px;
}
.bottom-text {
  margin-top: 15px;
}

.intefration-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 20px 0;
}

.intefration-btn .btn {
  font-size: 20px;
  padding: 16px 40px;
  width: 50%;
}

@media (max-width: 768px) {
  .intefration-btn .btn {
    width: 100%;
    max-width: none;
  }
}

.images-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.images-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .images-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .images-grid img {
    aspect-ratio: 1 / 1;
    object-position: center 22%;
  }
}
@media (max-width: 480px) {
  .images-grid {
    gap: 8px;
  }
  .images-grid img {
    aspect-ratio: 1 / 1;
  }
}
