
#homeContainer{
  background: #28907a;
}

.content{
  display: none !important;
}

.content.active{
  display: block !important;
}

.slider-navigation {
  z-index: 999;
  position: absolute; 
  bottom: 40px; 
  left: 50%; 
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-content: center;
  margin-bottom: 0px;
}

.slider-navigation .nav-btn{
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
  transition: 0.3s ease;
}

.slider-navigation .nav-btn.active {
  background: #126352;
}

.slider-navigation .nav-btn:not(:last-child){
  margin-right: 20px;
}

.slider-navigation .nav-btn:hover{
  transform: scale(1.2);
}

.video-slide {
  position: absolute;
  width: 100%;
  clip-path: circle(0% at 0 50%);
}

.video-slide.active{
  clip-path: circle(150% at 0 50%);
  transition: 2s ease;
  transition-property: clip-path;
}
