.solutions {
  margin-top: 70px;
  margin-bottom: 60px;
}
.solutions .container {
  padding: 36px 24px;
  background-color: #EFEFEF;
  display: flex;
  flex-direction: column-reverse;
  border-radius: 20px;
  gap: 36px;
}
@media (min-width: 1025px) {
  .solutions .container {
    flex-direction: row;
  }
}
.solutions .container > div {
  flex: 1 1 0;
}
.solutions__video {
  position: relative;
}
.solutions__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  overflow: hidden;
  display: block;
}
.solutions__video .play_button {
  display: block;
  max-width: 100%;
  max-height: 100%;
  box-shadow: 0px 4px 52px 0px rgba(0, 0, 0, 0.4);
  border-radius: 121px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 200;
  width: 90px;
  height: 90px;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .solutions__video .play_button {
    width: 60px;
    height: 60px;
  }
}
.solutions__texts {
  padding-left: 36px;
  padding-right: 36px;
}
@media (max-width: 1023px) {
  .solutions__texts {
    padding: 0;
  }
}
.solutions__title {
  font-size: 3.3vw;
  font-family: "ivypresto-headline", serif;
  font-weight: 300;
  background: var(--exd-gradient, radial-gradient(128.26% 128.26% at -19.63% 21.34%, #357EC1 0%, #0F4C5C 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
}
@media (max-width: 1023px) {
  .solutions__title {
    font-size: 1.55rem;
    line-height: 1.1;
  }
}
.solutions__description p {
  color: #353535;
  font-size: 1.6vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.8vw;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
@media (max-width: 1023px) {
  .solutions__description p {
    font-size: 1.2rem;
    line-height: 1.4rem;
  }
}
.solutions .lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
}
.solutions .lightbox-content {
  position: relative;
  max-width: 80%;
  max-height: 80%;
}
.solutions .lightbox video {
  width: 100%;
  height: auto;
}
.solutions .close-lightbox {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 30px;
  color: white;
  cursor: pointer;
}