.cmp-banner-video {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 0;
  min-height: 658px;
  max-width: 2040px;
  margin: 0 auto;
  background-color: var(--color-white-dark);

  .tw-container {
    max-width: 100%;
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    max-width: 1170px;
    margin: 0 auto;
  }

  .cmp-banner-video__title {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* margin: 0 auto; */
    max-width: 73.125rem;
    padding-left: 24px;
    padding-right: 24px;
    /* width: 100%; */
    margin-right: auto;
    width: calc(50% - 110px);

    .title-video {
      text-wrap: balance;
      max-width: 40ch;

      .h_title {
        margin: 0;
      }
    }

    .alert-heading {
      font-size: 3rem;
      font-weight: 300;
      line-height: 60px;
      text-align: left;
    }
  }

  .cmp-banner-video__video {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(45deg, #8e1230 0%, #c5281c 100%);
    z-index: 1;

    .container-video {
      height: 100%;
      width: 100%;
    }


    .video {
      height: 100%;
      padding: 100px 0px 100px 0;
      margin-left: -84px;
      max-width: 968px;
    }
  }

  .cmp-video-iframe {
    cursor: pointer;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4 / 3;
    width: 100%;
    height: 100%;

    .image {
      position: relative;
      display: block;
      z-index: 2;
      width: 600px;

      &::before {
        content: "";
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='128' height='129'%3E%3Cdefs%3E%3Cfilter x='-135.4%25' y='-114.6%25' width='370.8%25' height='370.8%25' filterUnits='objectBoundingBox' id='a'%3E%3CfeOffset dy='10' in='SourceAlpha' result='shadowOffsetOuter1'/%3E%3CfeGaussianBlur stdDeviation='20' in='shadowOffsetOuter1' result='shadowBlurOuter1'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0' in='shadowBlurOuter1'/%3E%3C/filter%3E%3Ccircle id='b' cx='24' cy='24' r='24'/%3E%3C/defs%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg transform='translate(40 30.591)'%3E%3Cuse fill='%23000' filter='url(%23a)' xlink:href='%23b'/%3E%3Cuse fill='%23FFF' xlink:href='%23b'/%3E%3C/g%3E%3Cpath d='m62.53 63.453 9.77-6.81a2.879 2.879 0 0 0 0-4.73l-9.77-6.8c-1.91-1.33-4.53.04-4.53 2.36v13.61c0 2.33 2.62 3.7 4.53 2.37Z' fill='%23C21B17'/%3E%3C/g%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-size: contain;
        content: "";
        cursor: pointer;
        display: block;
        height: 128px;
        left: 50%;
        position: absolute;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        width: 128px;
        z-index: 5;
      }

      img {
        display: block;
        max-width: 600px;
        max-height: 500px;
        height: auto;
      }
    }

    iframe {
      display: none;
      width: 600px;
      /* height: 100%; */
      aspect-ratio: 16 / 9;
      border: none;
      z-index: 1;
    }

    &.playing {
      .image {
        display: none;
      }

      iframe {
        display: block;
      }
    }
  }
}


@media screen and (min-width: 1200px) {
  .cmp-video-iframe .image::before {
    left: 35%;
  }
}

@media screen and (max-width: 992px) {
  .cmp-banner-video {
    flex-direction: column-reverse;
    padding: 0;
    min-height: 0;

    .tw-container {
      flex-direction: column-reverse;
    }

    .cmp-banner-video__title {
      background-color: var(--color-white-dark);
      width: 100%;

      .title-video {
        max-width: 100%;

        .h_title {
          padding-bottom: 40px;
          padding-top: 114px;
          margin: 0 auto;

          .alert-heading {
            font-size: 2.5rem;
            line-height: 52px;
            text-align: center;
          }
        }
      }
    }

    .cmp-banner-video__video {
      position: relative;
      width: 100%;
      height: auto;

      .cmp-video-iframe iframe {
        width: 100%;
      }

      .video {
        margin-left: 0;
        margin-bottom: -58px;
        padding: 56px 16px 0 16px;
        max-width: none;
      }
    }

    .cmp-video-iframe {
      .image {
        width: 100%;
      }
    }
  }
}

@media screen and (max-width: 768px) {
  .cmp-video-iframe .image img {
    width: 100%;
    height: auto;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .cmp-banner-video {
    .cmp-video-iframe {
      .image img {
        width: 100%;
        max-width: 100%;
        height: auto;
      }
    }
  }
}