.video-background-holder {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  /*16: 9 aspect ratio;*/
}

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

.video-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

a {
  text-decoration: none;
}

.navbar-toggler {
  padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
  font-size: var(--bs-navbar-toggler-font-size);
  line-height: 1;
  color: #00000000;
  background-color: transparent;
  border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
  border-radius: var(--bs-navbar-toggler-border-radius);
  transition: var(--bs-navbar-toggler-transition);
}

.green {
  color: green;
}

.red {
  color: red;
}

.search-bar {
  height: 60px;
  max-height: 60px;
  min-height: 60px;
  font-family: Nunito, sans-serif;
  font-size: 20px;
  width: 100%;
  border: none;
  outline: none;
  padding: 0 10px;
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 0;
  -webkit-appearance: none;
}

@media (max-width: 768px) {
  .search-bar {
    border-radius: 5px;
  }
}

