.zen_video_carousel {
    position: relative;
    overflow: hidden;
    text-align: center;
    color: #fff;
    background-color: #000;
    display: flex
    ;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
  }
  
  .zen_video_carousel__video-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
  }
  
  .zen_video_carousel__video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: 0;
  }
  
  .zen_video_carousel__video--mobile {
    display: none;
  }
  
  .zen_video_carousel__content {
    position: absolute;
    z-index: 1;
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .zen_video_carousel__heading {
    color: var(--White, #FFF);
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Nunito;
    font-size: 48px;
    font-style: normal;
    font-weight: 800;
    line-height: 120%; /* 57.6px */
    margin-bottom: 26px;
  }
  
  .zen_video_carousel__subheading {
    color:  #FFF;
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Nunito;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 26px */
  }
  
  @media (max-width: 768px) {
    .zen_video_carousel__video--desktop {
      display: none;
    }
  
    .zen_video_carousel__video--mobile {
      display: block;
    }
  
    .zen_video_carousel__heading {
        text-align: center;
        font-size:  20px;
        font-style: normal;
        font-weight: 700;
        line-height:  24px; /* 120% */
    }
  
    .zen_video_carousel__subheading {
        color: #FFF;
        text-align: center;
        
        font-family: Nunito;
        font-size:  14px;
        font-style: normal;
        font-weight: 400;
        line-height:  18px; /* 128.571% */
    }
  }
  