

#main-video {
  width: 100%;
  height: 980px;
  position: relative;
}
.main-text{
  position: absolute;
  left: 18%;
  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;
  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;
}
.btn{
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #e0ffff;
  font-family: "Asap", sans-serif;
}
#main-video 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.30) 50%, rgba(34,35,30));
}
.slider-btns{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(50px);
  z-index: 100;
}
.slide-btn{
  width: 10px;
  height: 10px;
  background: #e0ffff;
  border-radius: 50%;
  cursor: pointer;
}
.slide-btn.active{
  background: #00c2cb;
}
.slide-btn:not(:last-child){
  margin-right: 20px;
}
.slide-btn:hover{
  transform: scale(1.2);
}
.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;
}