@charset "utf-8";

/* boot image by rawpixel.com. Used under CC0 license. */

/*particle and flower images from Vecteezy.com
<a href="https://www.vecteezy.com/free-photos">Free Stock photos by Vecteezy</a> */

/*<a href="https://www.vecteezy.com/video/4747804-abstract-blue-particles-background-particles-and-blue-background-4k-beautiful-abstract-background-particles-waving-background">Abstract Blue Particles Background. Particles And Blue Background 4K. Beautiful Abstract Background. Particles Waving Background. Stock Videos by Vecteezy</a>*/

/*Video snippet created by <a href="https://startbootstrap.com"> and is used under the MIT License.*/

/*three column structure below video is taken from https://getbootstrap.com/docs/5.2/examples/carousel and is used under the MIT License */

header {
  position: relative;
  background-color: black;
  height: 75vh;
  min-height: 25rem;
  width: 100%;
  overflow: hidden;
}

header video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

header .container {
  position: relative;
  z-index: 2;
}

header .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: black;
  opacity: 0.5;
  z-index: 1;
}

/* Media Query for devices withi coarse pointers and no hover functionality */

/* This will use a fallback image instead of a video for devices that commonly do not support the HTML5 video element */

@media (pointer: coarse) and (hover: none) {
  header {
	  background: image("images/vecteezy_gradient-wave-particles-background_9928893.jpg") black no-repeat center center scroll;
  }

  header video {
    display: none;
  }
}



/* Center align the text within the three columns below the video */

.marketing .col-lg-4 {
  margin-bottom: 1.5rem;
  text-align: center;
}
/* rtl:begin:ignore */
.marketing .col-lg-4 p {
  margin-right: .75rem;
  margin-left: .75rem;
}
/* rtl:end:ignore */