/******* Functions *******/
/******* Mixins *******/
/******* Bootstrap *******/
/**
* Fonts
*/
:root {
  --bs-primary: $blue;
  --bs-secondary: $gray-600;
  --bs-tertiary: $teal;
  --bs-success: $green;
  --bs-info: $cyan;
  --bs-warning: $yellow;
  --bs-danger: $red;
  --bs-light: $gray-100;
  --bs-dark: $gray-900;
}

/******* Variables *******/
.hero {
  position: relative;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__bg-half {
  position: absolute;
}
.hero__bg-half-right {
  right: 0;
  left: auto;
}
.hero__bg-half-left {
  left: 0;
  right: auto;
}
.hero__bg-full {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.hero--1 .hero__bg-half {
  width: 44%;
  height: 100%;
  top: 0;
}
.hero--2--container, .hero--3--container {
  height: calc(100vh - 15rem);
  position: relative;
}
.hero--2 .hero__bg-half, .hero--3 .hero__bg-half {
  width: 56%;
  height: 100%;
}
.hero--4, .hero--5, .hero--6, .hero--7, .hero--8, .hero--9, .hero--10 {
  padding: 0 !important;
}
.hero--4--container, .hero--5--container, .hero--6--container, .hero--7--container, .hero--8--container, .hero--9--container, .hero--10--container {
  flex-grow: 1;
}
.hero--4 .hero__bg-full:after, .hero--5 .hero__bg-full:after, .hero--6 .hero__bg-full:after, .hero--7 .hero__bg-full:after, .hero--8 .hero__bg-full:after, .hero--9 .hero__bg-full:after, .hero--10 .hero__bg-full:after {
  pointer-events: none;
  display: block;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9;
  opacity: 0.25;
  background-color: black;
}
.hero--6 {
  border: 1.5rem solid white;
}
.hero--7--container, .hero--8--container, .hero--9--container {
  padding-bottom: 7.5rem;
}
.hero--9 .hero__text p:first-child,
.hero--9 .hero__text ul:first-child {
  margin-top: 0 !important;
}
.hero--10--container {
  padding-top: 7.5rem;
}
.hero__header {
  margin-top: 0;
}
.hero__col {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero__col .hero__text p,
.hero__col .hero__text ul,
.hero__col .hero__text li {
  font-size: var(--bs-font-size-lg) !important;
}
.hero__col .hero__text ul {
  padding: 0;
  list-style: none;
}
.hero__col .hero__text li {
  padding: 0.3em 0 0.3em 2em;
  position: relative;
}
.hero__col .hero__text li:after {
  font-family: "Font Awesome 6 Pro";
  position: absolute;
  content: "\f00c";
  color: var(--bs-primary);
  left: 0;
}
.hero__video {
  z-index: 0;
  height: 100% !important;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.hero__video .video-pause-btn .video-btn-wrap {
  bottom: 0;
  right: 0;
  transform: none;
}
.hero__video video {
  border-radius: 0;
}
.hero__scroll {
  display: block;
  color: var(--bs-white);
}
.hero__scroll:hover, .hero__scroll:focus {
  color: var(--bs-primary);
}
.hero__scroll .scrollOn {
  animation: action 1s infinite alternate;
}
.hero__background-img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.hero__background-img--left {
  background: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.hero__background-img--right {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

@keyframes action {
  0% {
    transform: translateY(0.3125rem);
  }
  100% {
    transform: translateY(0.75rem);
  }
}
