@import url('https://fonts.googleapis.com/css2?family=Asap&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

body {
  margin: 0px;
  padding: 0px;
}

#main {
  width: 100%;
  height: 60vh;
  position: relative;
}
.main-text{
  position: absolute;
  left: 25%;
  top: 42%;
  transform: translate(-13%,-42%);
  line-height: 0;
}
.main-text h2{
  font-weight: 500;
  font-size: 30px;
  color: #e0ffff;
}
.main-text h1{
  font-size: 70px;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  color: #fff;
}
.main-text p{
  font-size: 20px;
  color: #e0ffff;
  margin: 25px 0px 25px;
  line-height: 50px;
}
.main-text a{
  width: 150px;
  height: 40px;
  outline: none;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 200;
  padding: 1rem;
}

#main video{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-image: linear-gradient(to bottom, rgba(34,35,46,0.75) 50%, rgba(34,35,46));
}

.video-bg{
  position: absolute;
  width: 100%;
  clip-path: circle(0% at 0 50%);
}
.video-bg.active{
  clip-path: circle(150% at 0 50%);
  transition: 1s ease;
  transition-property: clip-path;
}