.office-solution .about {
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  background: linear-gradient(120deg, #e50051, #ff2b74, #e50051);
  background-size: 200% 200%;

  border-radius: 20px;
  color: white;
  text-align: center;
  padding: 50px 78px 100px 78px;
  margin: 40px 0 100px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 25px;
  background-color: #e50051;
}

.office-solution .about.animate {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: aboutBg 12s ease-in-out infinite;
}
@media screen and (max-width: 767px) {
  .office-solution .about {
    padding: 15px;
  }
}
@keyframes aboutBg {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
