.banner-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  .homepage &{
    height: 583px;
  }
  .banner-img{
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .banner-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    /* z-index: -1; */
    object-fit: cover;
  }

  .banner-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    height: inherit;
    bottom: 80px;
    @media (max-width:768px) {
      bottom: 0;
    }
    .main-content {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      @media (max-width:768px) {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 50px;
        padding-block: 90px;
      }

      .info-text {
        display: flex;
        gap: 5px;
        flex-direction: column;
        max-width: 450px;
        .cms-text1 {
          font-size: 20px;
        }
        .cms-text3 {
          color: rgba(255, 255, 255, 0.7);
        }
      }
    }
  }
}