.intro-video-container {
  object-fit: none;
  object-position: center; /* Center the image within the element */
  width:100%;
  height: 100%;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  
}
video {background: transparent;}
.main-container {
  width:100%;
  object-fit: cover;
  position: absolute;
  top:0px;
  bottom: 0px;
  right: 0px;
  left:0px;

  z-index: 1;
  text-align: center;
}

body{
  height: 100%;
  width: 100%;
}

.height100 {
  height: 100%;
  width: unset;
}
.width100 {
  height: unset;
  width: 100%;
}

#play-video {
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 0;
  width: 100%;
  height: 100%;
}

.transparent {
  background-color: #5aefef00 !important;
  border:0 !important;
}

.links-container {
  margin-top: 5%;
  column-count: 1;
  text-align: center;
}


.link {
  overflow: visible;
}

.link:nth-child(1) {
  margin-top: 0;
}

#video-item-play .modal-content {
  background: #000;
}
#video-item-play .modal-body {
  padding: 0;
}
#video-item-play .modal-title {
  color: #ccc;
}
#video-item-play button.close {
  color: #ccc;
}
#video-item-play .modal-header {
  border-bottom: 0px;
}


@media (min-width: 576px){
  #video-item-play .modal-dialog {
    max-width: 50%;
    margin: 1.75rem auto;
  }
  #video-item-play .modal-content {
    max-height: 80%;
    background: #000;
  }
  #video-item-play .modal-body {
    padding: 0;
  }
  #video-show {
    /* height: 100%; */
    width: 100%;
  }
  .links-container {
    column-count: 2;
  }
}


/* Button */
.glow-on-hover {
  width: 320px;
  height: 50px;
  border: none;
  outline: none;
  color: #fff;
  background: #b39d00;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 10px;
  font-weight: bold;
  border: 5px solid #fcfdff;
}

.glow-on-hover:before {
  content: '';
  background: linear-gradient(45deg, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
  position: absolute;
  top: -2px;
  left:-2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing 20s linear infinite;
  opacity: 0;
  transition: opacity .3s ease-in-out;
  border-radius: 10px;
}

.glow-on-hover:active {
  color: #000
}

.glow-on-hover:active:after {
  background: transparent;
}

.glow-on-hover:hover:before {
  opacity: 1;  

}

.glow-on-hover:after {
  z-index: -1;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
  left: 0;
  top: 0;
  border-radius: 10px;
}

@keyframes glowing {
  0% { background-position: 0 0; }
  50% { background-position: 400% 0; }
  100% { background-position: 0 0; }
}



/* Button */






