.office-solution .hero {
  /* display: flex;
  height: 600px;
  width: 100%;
  gap: 20px;
  border-radius: 20px; */
  overflow: hidden;
}
.office-solution .hero .desktop {
  display: flex;
  height: 600px;
  width: 100%;
  gap: 20px;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .office-solution .hero .desktop {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .office-solution .hero .mobile {
    display: none;
  }
}
.office-solution .hero .mobile {
  max-height: 600px;
}
.office-solution .hero .mobile img {
  width: 100%;
  height: 100%;
}
.office-solution .hero .left,
.office-solution .hero .middle,
.office-solution .hero .right {
  flex: 1;
  height: 100%;
  position: relative;
}

.office-solution .hero .left,
.office-solution .hero .right {
  width: 33.33%;
}

.office-solution .hero .left img,
.office-solution .hero .right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.office-solution .hero .middle {
  width: 33.33%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.office-solution .hero .middle .img-container {
  flex: 1;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
}

.office-solution .hero .middle .img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.office-solution .swiper-container {
  height: 600px;
}
