/******* 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--2 {
  overflow: visible !important;
}
.hero--1 .hero__bg-half, .hero--2 .hero__bg-half {
  width: 44%;
  height: 90%;
  top: 5%;
  z-index: 99;
}
.hero--1 .hero__text *, .hero--2 .hero__text * {
  font-size: var(--bs-font-size-lg);
}
.hero--1:before, .hero--2:before {
  width: 600px;
  height: 600px;
  border-radius: 9999px;
  display: block;
  position: absolute;
  content: "";
  background-color: #7c62de;
  opacity: 0.4;
  bottom: -200px;
  left: -300px;
  filter: blur(300px);
  z-index: 1;
}
.hero--1:after, .hero--2:after {
  width: 600px;
  height: 600px;
  border-radius: 9999px;
  display: block;
  position: absolute;
  content: "";
  background-color: white;
  opacity: 0.9;
  top: 100px;
  left: 300px;
  filter: blur(100px);
  z-index: 1;
}
.hero--2 {
  min-height: 90vh;
}
.hero--2:before, .hero--2:after {
  display: none !important;
}
.hero--2 .hero__bg-half {
  position: absolute;
  width: 60%;
  top: 15%;
  height: 85%;
}
.hero--2 .hero__bg-half img {
  -o-object-position: left;
     object-position: left;
}
.hero--3 {
  min-height: 50vh;
}
.hero--3:before, .hero--3:after {
  display: none !important;
}
.hero--3 .hero__bg-half {
  position: absolute;
  width: 50%;
  top: 15%;
  height: 85%;
}
.hero--3 .hero__bg-half img {
  -o-object-position: center bottom;
     object-position: center bottom;
  -o-object-fit: contain !important;
     object-fit: contain !important;
}
.hero .hero__counters {
  line-height: 1 !important;
}
.hero .hero__counters .hero__counter:not(:last-child) {
  border-right: 1px solid #ccc;
}
.hero .hero__counters small {
  font-size: 14px !important;
  line-height: 1 !important;
}
