


.video-section{
  position: relative;
  background-color: black;
  height: 600px;
  width: 100%;
  overflow: hidden;
}

.video-section 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%);
}

.video-section .container {
  position: relative;
  z-index: 2;
}

.video-section .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) {
.video-section {
    background: url('video/landing.png') black no-repeat center center scroll;
  }

.video-section video {
    display: none;
  }
}


.menu-center{
  left: 100% !important;
}


.highlight {
background: url('../img/shape/yellow-brushstroke.png');
background-repeat: no-repeat;
background-size: 100% 95%;
padding: 8px 0;
}


.modal { z-index: 9999 !important; }



.close:not(:disabled):not(.disabled) {
  cursor: pointer;
}
.modal-body > .close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.5rem 0.75rem;
  z-index: 1;
}
.modal .close {
  font-weight: 100;
}
button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
}
button, html [type="button"], [type="reset"], [type="submit"] {
  -webkit-appearance: button;
}
.close {
  float: right;
  font-size: 1.40625rem;
  font-weight: 600;
  line-height: 1;
  color: #000;
  text-shadow: none;
  opacity: .5;
}


.demo_wrap {
    position: relative;
    overflow: hidden;
    padding: 16px;
    border: 1px dashed green;
}
.demo_wrap h1 {
    padding: 100px;
    position: relative;
    z-index: 2;
}
.demo_wrap img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    opacity: 0.6;
}

label.error {
  color: #c10000;
  font-size: 0.9em;
  line-height: 18px;
  padding: 5px 0 0;
  display: inline-block;
}


label {
    font-weight: 600;
    font-size: .875rem;
}

select.form-select {
    background-image: url(../img/dropdown-arrow.svg);
}

.form-control,
.custom-select,
.form-select {
    border: 2px solid rgba(17,24,39,.12)
}