/******* 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;
  min-height: 100vh;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero.has-callouts {
  justify-content: space-between;
}
.hero .logos__image {
  border-radius: 0;
  width: auto;
}
@media (max-width: 767.98px) {
  .hero .logos__image {
    max-height: 70px;
    max-width: 100px;
  }
}
@media (min-width: 768px) {
  .hero .logos__image {
    max-height: 80px;
    max-width: 150px;
  }
}
.hero__bg-half {
  position: absolute;
}
.hero__bg-half:hover .edit_image_holder {
  opacity: 1;
}
.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__bg-full:hover .edit_image_holder {
  opacity: 1;
}
.hero--1 .hero__bg-half {
  width: 44%;
  height: 100%;
  top: 0;
}
.hero--2.has-callouts, .hero--3.has-callouts {
  padding: 120px 0 0 !important;
}
.hero--2 .hero__header, .hero--3 .hero__header {
  margin-bottom: 400px;
}
.hero--2--container, .hero--3--container {
  height: calc(100vh - 240px);
  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--5 .edit_image_holder, .hero--6 .edit_image_holder {
  align-items: flex-end;
  padding-bottom: 10%;
}
.hero--6 {
  border: 1.5rem solid white;
}
.hero--7--container, .hero--8--container, .hero--9--container {
  padding-bottom: 120px;
}
.hero--9 .hero__text p:first-child,
.hero--9 .hero__text ul:first-child {
  margin-top: 0 !important;
}
.hero--10--container {
  padding-top: 120px;
}
.hero__header {
  margin-top: 0;
}
.hero__header.display-1 {
  text-indent: -1em;
  padding-left: 1em;
}
.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(5px);
  }
  100% {
    transform: translateY(12px);
  }
}
