
a{
  text-decoration: none;
  color: white;
}
.fixed-body{
  height: 100%;
  overflow: hidden;
}

.header{
  position: relative;
  width: 100%;
  height: 100vh;
  
}
.header-overlay{
  position: absolute;
  top:0;
  left:0;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  opacity: 0.2;
  z-index: 5;
}
.header-video{
  height: 100%;
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;

}
.header-video > video{
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  object-fit: cover;
  /* display: none; */
  color: white;
}
.header-heading{
  position: absolute;
  z-index: 6;
  color: white;
  align-self: center;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  
}

@media screen and (max-width:768px){
  .header{
    height: 70vh;
    max-height: 450px;
  }
  .header-video{
    height: 70vh;
    max-height: 450px;
  }
  .header-heading{
    font-size: 2rem;
  }
  .header-video > video{
   object-fit: contain;
   transform: scale(2.5);
  }

  
}

@media screen and (min-width:768px){
  #mobile-bg{
    display: none;
  }
}

@media screen and (max-width:768px){
  #pc-bg{
    display: none;
  }
}