/* old: 'Font Awesome 6 Free' */
main .banner {
  margin-bottom: 0;
  position: relative;
  min-height: 786px;
  display: flex;
  background-color: #E6EFF7;
  position: relative;
  height: 100%;
  /*
  @include media-breakpoint-down(xl) {
      height: 100%;
      //top: 32px;
  }
  */
  /*
  @include media-breakpoint-down(sm) {
      min-height: 400px;

      .content {
          font-size: 18px;

          .title {
              font-size: 28px;
              margin-bottom: 15px;
          }

          .text-content {
              font-size: 18px;
              margin-bottom: 0px;
          }
      }
  }
  */
}
main .banner .container-fluid {
  max-width: 1920px;
}
main .banner .row {
  flex-wrap: nowrap;
  justify-content: space-between;
  height: 100%;
  column-gap: 6%;
}
main .banner .content {
  flex: 0 1 100%;
  max-width: 636px;
  margin-left: 9%;
  position: relative;
  z-index: 1;
  padding: 107.5px 0;
  color: black;
}
main .banner .content .title {
  font-family: "Cabin", Arial, sans-serif;
  font-size: 55px;
  font-style: normal;
  font-weight: 700;
  line-height: 63px;
  margin-bottom: 24px;
  white-space: break-spaces;
}
main .banner .content .text-content {
  font-family: "Karla", Arial, sans-serif;
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
}
main .banner .content .banner-buttons {
  margin-top: 32px;
}
main .banner .content .banner-buttons ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  gap: 32px;
}
main .banner .image {
  flex: 0 1 100%;
  height: 100%;
  justify-content: flex-end;
  --mask-image: url(/dist/img/bannermask-left.svg), url(/dist/img/bannermask-right.svg);
  mask-image: var(--mask-image);
  mask-composite: intersect;
  mask-position: 0 50%, 100% 50%;
  padding: 0 1em;
  background: #FBB040;
}
@media (max-width: 1920px) {
  main .banner .image {
    --mask-image: url(/dist/img/bannermask-left.svg);
    padding-right: 0;
  }
}
main .banner .image .banner-img {
  overflow: hidden;
  object-fit: cover;
  object-position: center left;
  width: 100%;
  height: 100%;
  mask-image: var(--mask-image);
  mask-composite: intersect;
  mask-position: 0 50%, 100% 50%;
  aspect-ratio: 858/786;
}
@media (max-width: 1199.98px) {
  main .banner .content {
    padding: 0 calc(var(--bs-gutter-x) * 0.5);
    margin: 0;
    align-content: center;
    max-width: none;
  }
  main .banner .image {
    display: none;
  }
}
@media (max-width: 767.98px) {
  main .banner .content {
    flex-direction: column;
    display: flex;
    align-content: unset;
  }
  main .banner .content .title {
    margin-top: 40px;
    line-height: 45px;
    font-size: 36px;
  }
  main .banner .content .banner-buttons ul {
    flex-wrap: wrap;
  }
  main .banner .content .bannerMetrics {
    margin-top: 32px;
    margin-bottom: 40px;
  }
  main .banner .content .bannerMetrics .metricListing ul {
    flex-wrap: wrap;
  }
}