
.l-video-header {
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    flex-direction: column; 
    gap:28px
  }
  
  .l-video-header__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  
  .l-video-header__bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* center video */
    min-width: 100%;                  /* cover horizontally */
    min-height: 100%;                 /* cover vertically */
    width: auto;
    height: auto;
    object-fit: cover;
    display: block;
  }
  
  /* overlay */
  .l-video-header__overlay {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 1;
  }
  
  /* content block */
  .l-video-header__content{
    padding: 1rem 2rem;
    max-width: 600px;
    text-align: left;
  }

  .l-video-header__body{
    position: relative;
    z-index: 2;
    flex: 1 1 auto;          
    /* display: flex; */
    align-items: center; 
    padding-top: 200px;
    padding-bottom: 200px;    
  }

  
  /* responsive adjustments */
  @media (max-width: 767.98px) {
    .l-video-header {
      padding: 0;
      border-radius: 0 0 30px 30px;
    }
  
    .l-video-header__content {
      padding-left: 15px;
    }
  }
  
  /* title */
  .l-video-header__title {
    font-family: "Copernicus", sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 3rem;
    margin-bottom: 1rem;
  }
  
  @media (max-width: 1399.98px) {
    .l-video-header__title {
      font-size: 2.75rem;
    }
  }
  
  @media (max-width: 767.98px) {
    .l-video-header__title {
      font-size: 2rem;
    }
    .l-video-header__bg video {
      display: none;
    }
  }
  
  /* subtitle */
  .l-video-header__subtitle {
    max-width: 800px;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    line-height: 1.5rem;
    font-family: "BasisGrotesqueLight", sans-serif;
    /* font-weight: 700; */
  }

  /* button */

  .l-video-header__btn {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.75rem 5rem;
    background: #ffffff;
    color: #002459 !important;
    font-family: "BasisGrotesqueOffWhite", sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  .l-video-header__btn:hover {
    color: #2E69BF;
  }

  .l-video-header__btn:visited {
    color: #ffffff;
  }


.vh-topbar{
    position: relative;
    top: 0; left: 0;
    width: 100%;
    z-index: 3; 
  }
  
  .vh-topbar__inner{
    display: flex;
    justify-content: center; 
    align-items: flex-start;   
    gap: 750px;     
    padding: 20px 24px;
  }

  .vh-logo{
    margin-top: 32px;    
  }
  
  /* logo */
  .vh-logo__img{ height: 40px; width: auto; display: block; }
  .vh-site-name{ color:#fff; text-decoration:none; font-weight:700; }
  
  /* nav */
  .vh-nav__list{
    list-style: none;
    display: flex;
    gap: 28px;
    margin: 0; padding: 0;
  }
  .vh-nav__link{
    color:#fff;
    text-decoration:none;
    font-size: 1.25rem;
    line-height:1;
    padding-bottom:2px;
    font-family: "BasisGrotesqueLight", sans-serif;
  }

  .vh-nav__link:link,
  .vh-nav__link:visited {
    color: #fff;
  }
    
  

  @media (max-width: 767.98px){
    .vh-topbar__inner{ align-items:center; padding:12px 16px; }
    .vh-logo__img{ height:28px; }
    .vh-nav__list{ gap:16px; }
  }