
/* Landing page */
.landingpage{
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: var(--primary-color);
  display: block;
  z-index: 999999999999999;
  transition: all 2s ease;
}

.landingpage.vanish{
  left: 101%;
  pointer-events: none;
}

.landing-section{
  width: 100%;
  height:100%;
  text-align: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.skipBtn{
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  display: inline-block;
  padding: 10px 20px;
  border-radius: 40px;
  text-transform: uppercase;
  color: #fff;
  background-color: var(--secondary-color);
  font-size: 13px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 300ms ease-in-out;
  z-index: 9;
}

.skipBtn:hover{
  background-color: #fff;
  color: var(--secondary-color);
}

.landing-img{
  z-index: 1;
  height: 100%;
  overflow: hidden;
  transition: all 1s ease;
  
}
.landing-img video{
  display: block;
  width: calc(100% + 4px);
  height: 100%;
  margin-left: -2px;
  object-fit: cover;
  background-color: var(--primary-color);
  border: none;
}

.landing-img.go{
  top: 100%;
}
/* Landing page */