.office-solution .points {
  display: flex;
  flex-direction: column;
  gap: 150px;
}

.office-solution .points .point {
  display: flex;
  align-items: center;
  gap: 35px;

  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.office-solution .points .point h3 {
  margin-bottom: 20px;
}
.office-solution .points .point .img-container {
  max-width: 835px;
  width: 100%;
  min-width: 835px;
}
.office-solution .points .point .img-container img {
  width: 100%;
  height: auto;
}
/* Reverse layout for even points */
.office-solution .points .point:nth-child(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 1240px) {
  .office-solution .points .point .img-container {
    max-width: 550px;
    min-width: 550px;
  }
}
@media screen and (max-width: 1000px) {
  .office-solution .points {
    gap: 70px;
  }
  .office-solution .points .point .img-container {
    min-width: 100%;
    max-width: 100%;
  }
  .office-solution .points .point {
    flex-direction: column;
  }

  .office-solution .points .point:nth-child(even) {
    flex-direction: column;
  }

  .office-solution .points .point .img-container {
    width: 100%;
  }
}

/* === Animations === */

.office-solution .point.animate {
  opacity: 1;
  transform: translateY(0);
}

.office-solution .point .img-container,
.office-solution .point .info {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.6s ease-out;
}

/* If it's marked to slide in left (odd rows) */
.office-solution .point.slide-in-left .img-container {
  transform: translateX(-40px);
}

.office-solution .point.animate .img-container,
.office-solution .point.animate .info {
  opacity: 1;
  transform: translateX(0);
}

/* Default hidden state */
.office-solution .point .check {
  display: inline-block;
  opacity: 0;
  transform: scale(0.5) rotate(-30deg);
  transition: all 0.3s ease-out;
}

/* When animated */
.office-solution .point.animate .check {
  animation: ticked 0.4s ease-out both;
  animation-delay: 0.6s;
  color: #e50051;
  font-weight: 700;
}

@keyframes ticked {
  0% {
    opacity: 0;
    transform: scale(0.5) rotate(-30deg);
  }
  50% {
    opacity: 1;
    transform: scale(1.2) rotate(0deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}
.office-solution .point.animate .check:nth-of-type(1) {
  animation-delay: 0.6s;
}
.office-solution .point.animate .check:nth-of-type(2) {
  animation-delay: 0.8s;
}
.office-solution .point.animate .info p:nth-of-type(3) .check {
  animation-delay: 0.6s;
}
.office-solution .point.animate .info p:nth-of-type(4) .check {
  animation-delay: 0.8s;
}
