.image-with-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: var(--margin-medium);
  padding: var(--margin-medium);
}
.image-with-text .image-with-text-image {
  height: 70vh;
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.image-with-text .image-with-text-image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.image-with-text .image-with-text-image .play-video {
  position: absolute;
  cursor: pointer;
  z-index: 100;
}
.image-with-text .has-video:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}
.image-with-text .image-with-text-content-wrap {
  width: 50%;
}
.image-with-text .image-with-text-content-wrap .image-with-text-content {
  width: 70%;
}
.image-with-text .image-with-text-video-wrap {
  z-index: 1000;
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  display: none;
}
.image-with-text .image-with-text-video-wrap .image-with-text-video {
  position: relative;
}
.image-with-text .image-with-text-video-wrap .image-with-text-video iframe {
  width: 50vw;
  height: 60vh;
  aspect-ratio: 16/9;
}
.image-with-text .image-with-text-video-wrap .close-video {
  position: absolute;
  top: -30px;
  right: -30px;
  border: transparent;
  background: var(--green);
  color: var(--dark-green);
}
@media (max-width: 1000px) {
  .image-with-text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .image-with-text .image-with-text-image {
    width: 100%;
  }
  .image-with-text .image-with-text-content-wrap {
    width: 100%;
  }
}

.image-with-text.image-left .image-with-text-image {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.image-with-text.image-left .image-with-text-content-wrap {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.image-with-text.image-right .image-with-text-image {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.image-with-text.image-right .image-with-text-content-wrap {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.image-with-text.dark-background {
  background: black;
}

.split-page-content .image-with-text {
  padding: var(--margin-small) 0;
}
.split-page-content .image-with-text .image-with-text-image {
  height: 60vh;
}
.split-page-content .image-with-text-content-wrap .image-with-text-content {
  width: 100%;
}