
/* video continaer css */

.video-container{
    width: 100%;
    overflow: hidden;
    height: 80vh;
    position: relative;

}

.video-container video{
      /* Make video to at least 100% wide and tall */
  min-width: 100%; 
  min-height: 100%; 

  /* Setting width & height to auto prevents the browser from stretching or squishing the video */
  width: auto;
  height: auto;

  /* Center the video */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.video-caption{
    background-color:rgba(10, 10, 10, 0.411);

    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.video-caption> .caption-section> h2 {
    color: white;
}

.video-caption> .caption-section> p {
    color: white;
    font-size: 20px;
}


/* event css */
.date-border{
    border: 4px solid;
    height: 95px;
}

.text-danger{
    color: #bb0b0b !important;
}