.dl-text-media-section .text-media-wrapper {
  width: 100%;
  background: var(--bg-colour);
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.dl-text-media-section .text-media-wrapper.right {
  flex-flow: row nowrap;
}
.dl-text-media-section .text-media-wrapper.left {
  flex-flow: row-reverse nowrap;
}
@media only screen and (max-width: 1024.98px) {
  .dl-text-media-section .text-media-wrapper, .dl-text-media-section .text-media-wrapper.left, .dl-text-media-section .text-media-wrapper.right {
    flex-flow: var(--layout-mobile) nowrap;
  }
}
.dl-text-media-section .text-media-wrapper .media-wrapper {
  flex: 1;
  width: 50%;
  min-width: 50%;
  max-width: 50%;
}
@media only screen and (max-width: 1024.98px) {
  .dl-text-media-section .text-media-wrapper .media-wrapper {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    aspect-ratio: 390/200;
  }
}
@media only screen and (max-width: 991.98px) {
  .dl-text-media-section .text-media-wrapper .media-wrapper {
    aspect-ratio: 390/250;
  }
}
@media only screen and (max-width: 767.98px) {
  .dl-text-media-section .text-media-wrapper .media-wrapper {
    aspect-ratio: 390/302;
  }
}
.dl-text-media-section .text-media-wrapper .media-wrapper,
.dl-text-media-section .text-media-wrapper .content-wrapper {
  flex: 1;
  width: 50%;
  min-width: 50%;
  max-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column nowrap;
  gap: 15px;
}
@media only screen and (max-width: 1024.98px) {
  .dl-text-media-section .text-media-wrapper .media-wrapper,
  .dl-text-media-section .text-media-wrapper .content-wrapper {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
  }
}
@media only screen and (max-width: 767.98px) {
  .dl-text-media-section .text-media-wrapper .media-wrapper,
  .dl-text-media-section .text-media-wrapper .content-wrapper {
    gap: 11px;
  }
}
.dl-text-media-section .text-media-wrapper .media-wrapper {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.dl-text-media-section .text-media-wrapper .media-wrapper.video {
  cursor: pointer;
}
.dl-text-media-section .text-media-wrapper .media-wrapper img, .dl-text-media-section .text-media-wrapper .media-wrapper svg, .dl-text-media-section .text-media-wrapper .media-wrapper video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.dl-text-media-section .text-media-wrapper .media-wrapper .play-video-trigger {
  pointer-events: none;
  width: 50px;
  height: 50px;
  position: absolute;
  translate: -50% -50%;
  inset: 50% auto auto 50%;
  opacity: 0.7;
  transition: opacity 0.15s ease-in-out;
}
.dl-text-media-section .text-media-wrapper .media-wrapper .play-video-trigger svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  color: #ffffff;
}
.dl-text-media-section .text-media-wrapper .media-wrapper .play-video-trigger svg.icon-play {
  display: flex;
}
.dl-text-media-section .text-media-wrapper .media-wrapper .play-video-trigger svg.icon-pause {
  display: none;
}
.dl-text-media-section .text-media-wrapper .media-wrapper.playing .play-video-trigger {
  opacity: 0;
}
.dl-text-media-section .text-media-wrapper .media-wrapper.playing .play-video-trigger svg.icon-play {
  display: none;
}
.dl-text-media-section .text-media-wrapper .media-wrapper.playing .play-video-trigger svg.icon-pause {
  display: flex;
}
.dl-text-media-section .text-media-wrapper .media-wrapper.playing:hover .play-video-trigger {
  opacity: 0.7;
}
@media only screen and (min-width: 1025px) {
  .dl-text-media-section .text-media-wrapper .content-wrapper {
    padding: 170px 76px;
  }
}
@media only screen and (max-width: 1024.98px) {
  .dl-text-media-section .text-media-wrapper .content-wrapper {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (max-width: 767.98px) {
  .dl-text-media-section .text-media-wrapper .content-wrapper {
    padding-top: 80px;
    padding-bottom: 70px;
  }
}
.dl-text-media-section .text-media-wrapper .content-wrapper.content-middle {
  justify-content: center;
  text-align: center;
}
.dl-text-media-section .text-media-wrapper .content-wrapper.content-right {
  justify-content: flex-end;
  text-align: right;
}
.dl-text-media-section .text-media-wrapper .content-wrapper.content-left {
  justify-content: flex-start;
  text-align: left;
}
.dl-text-media-section .text-media-wrapper .content-wrapper .title {
  font-size: 30px;
  line-height: 1.35;
  text-transform: uppercase;
}
@media only screen and (max-width: 767.98px) {
  .dl-text-media-section .text-media-wrapper .content-wrapper .title {
    font-size: 24px;
  }
}
.dl-text-media-section .text-media-wrapper .content-wrapper .title, .dl-text-media-section .text-media-wrapper .content-wrapper .body {
  color: var(--text-colour);
  width: 100%;
  max-width: 450px;
}
@media only screen and (max-width: 767.98px) {
  .dl-text-media-section .text-media-wrapper .content-wrapper .title, .dl-text-media-section .text-media-wrapper .content-wrapper .body {
    max-width: 400px;
  }
}
.dl-text-media-section .text-media-wrapper .content-wrapper .body {
  font-size: 18px;
}
@media only screen and (max-width: 767.98px) {
  .dl-text-media-section .text-media-wrapper .content-wrapper .body {
    font-size: 16px;
  }
}
.dl-text-media-section .text-media-wrapper .content-wrapper .content-btn {
  text-transform: uppercase;
  margin-top: 20px;
}
@media only screen and (max-width: 767.98px) {
  .dl-text-media-section .text-media-wrapper .content-wrapper .content-btn {
    margin-top: 20px;
  }
}
