*{
    box-sizing: border-box;
  }
  
  body{
    margin:0;
    font-family: var(--textfont);
    font-weight: 400;
    font-weight:normal;
    line-height: 0.7;
    overflow-x:hidden;
  }
  
  .v-header{
    height:90vh;
    display:flex;
    align-items: center;
    color:#fff;
  }
  
  .fullscreen-video-wrap{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:90vh;
    overflow:hidden;
  }
  
  .fullscreen-video-wrap video{
    min-height:90%;
    min-width:100%;
  }
  
  .header-overlay{
    height:90vh;
    position: absolute;
    top:0;
    left:0;
    width:100vw;
    z-index:1;
    background:#1c1c1c;
    opacity:0.25;
  }
  
  .header-content {
    width: 100%;
    z-index: 2;
    animation-name: fade;
    animation-duration: 1.5s;
    opacity: 1;
    height: auto;
    position: absolute;
    bottom: 320px;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
}
  
  .header-content h1{
    font-size:50px;
    margin-bottom:0;
  }
  
  .header-content p{
    font-size:1.5rem;
    display:block;
    padding-bottom:2rem;
  }

  #header-font {
    font-family: var(--heading);
    font-weight: bold;
    line-height: 1;
  }

  #heading-h2 {
    font-family: var(--heading);
    font-size: 24px;
  }

  .fullscreen-video-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  
  .fullscreen-video-wrap video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    z-index: 0;
  }
  
  video.show {
    opacity: 1;
    z-index: 1;
  }

  video.fade-out {
    opacity: 0;
  }
  

  @media(max-width:960px){
    .container{
      padding-right:3rem;
      padding-left:3rem;
    }

  }

  @media screen and (max-width: 600px) {
    .header-content {
      margin-top: 160px;
    }
    .header-content h1{
      font-size: 35px;
      margin-bottom:0;
      line-height: 0.8;
    }
  }