/* .gradient-custom {
    background: #6a11cb;
    
    background: -webkit-linear-gradient(to right, rgba(106, 17, 203, 1), rgba(37, 117, 252, 1));
    
    background: linear-gradient(to right, rgba(106, 17, 203, 1), rgba(37, 117, 252, 1))
} */

.video-background {
    position: relative;
    width: 100%;
    height: 100vh; 
    overflow: hidden;
}

.video-background video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }
  

.content {
    position: relative;
    z-index: 1; 
}
      
.bg-custom{
    background-color: rgba(0, 0, 0, 0.7);
}