/* Universal breakpoints */
.hero {
  width: 100%;
  margin: 0 auto;
  height: 300px;
  position: relative;
  scroll-margin-top: 0;
  background-color: #f3f6f6; }
  @media (max-width: 767px) {
    .hero {
      height: -moz-fit-content;
      height: fit-content; } }
  .hero__content {
    color: #3b3d49;
    display: flex;
    box-sizing: border-box;
    flex-direction: column;
    justify-content: center;
    padding-left: 160px;
    padding-right: 160px;
    height: 100%;
    max-width: 1440px;
    margin: auto; }
    @media (min-width: 768px) and (max-width: 1080px) {
      .hero__content {
        padding-left: 80px;
        padding-right: 80px; } }
    @media (max-width: 767px) {
      .hero__content {
        padding: 40px 18px;
        max-width: 100%; } }
    .hero__content .breadcrumbs {
      font-size: 16px;
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 40px; }
      .hero__content .breadcrumbs a {
        color: #3b3d49;
        text-decoration: none; }
        .hero__content .breadcrumbs a.active {
          font-weight: 500;
          margin-top: -4px; }
        .hero__content .breadcrumbs a:hover {
          text-decoration: underline; }
    .hero__content .hero-heading {
      font-size: 48px;
      line-height: 48px;
      display: -webkit-box;
      /* Enables the multiline ellipsis */
      -webkit-box-orient: vertical;
      /* Aligns the text vertically */
      -webkit-line-clamp: 2;
      /* Specifies the number of lines to show before truncating */
      overflow: hidden;
      /* Hides the overflowing content */
      text-overflow: ellipsis;
      /* Adds an ellipsis (...) to represent the overflowing text */
      position: relative; }
      @media (max-width: 1079px) {
        .hero__content .hero-heading {
          font-size: 42px;
          line-height: 42px; } }
      @media (max-width: 767px) {
        .hero__content .hero-heading {
          font-size: 36px;
          line-height: 38px; } }
      @media (max-width: 479px) {
        .hero__content .hero-heading {
          -webkit-line-clamp: 4; } }
    .hero__content .title-with-tooltip {
      display: flex; }
      @media (min-width: 992px) {
        .hero__content .title-with-tooltip {
          max-width: 95%; } }
    .hero__content .tooltip-container {
      display: flex;
      align-items: flex-end; }
      .hero__content .tooltip-container .trigger {
        cursor: pointer;
        position: relative;
        padding: 3px 3px 0 3px;
        }
      .hero__content .tooltip-container .tooltip {
        color: white;
        position: absolute;
        background-color: #62657b;
        font-size: 14px;
        padding: 16px;
        border-radius: 4px;
        width: 200px; /* fix for tooltip */
        line-height: 18px;
        font-size: 14px;
        top: 38px;
        right: -9px;
        z-index: 1;
        opacity: 1;
        visibility: visible;
        transition: opacity 0.3s ease-in-out; }
        .hero__content .tooltip-container .tooltip.tooltip-hidden {
          opacity: 1;
          visibility: visible;
          opacity: 0;
          visibility: hidden; }
        @media (min-width: 992px) {
          .hero__content .tooltip-container .tooltip {
            line-height: 18px;
            width: 180px;
            top: 38px;
            right: -94px;
            } }
        .hero__content .tooltip-container .tooltip:before {
          content: "";
          position: absolute;
          top: -10px;
          right: 10px;
          border-left: 10px solid transparent;
          border-right: 10px solid transparent;
          border-bottom: 10px solid #62657b; }
          @media (min-width: 992px) {
            .hero__content .tooltip-container .tooltip:before {
              left: 50%;
              right: auto;
              transform: translateX(-50%); } }
 .hero__content .sorry {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-top: 40px; }
      .hero__content .sorry img {
        margin-top: -5px; }
      .hero__content .sorry #search-term {
        font-weight: 500; }
.no_results {
  color: #3b3d49;
  box-sizing: border-box;
  padding-left: 44px;
  padding-right: 44px;
  font-size: 24px;
  line-height: 32px; }
  @media (max-width: 767px) {
    .no_results {
      padding-left: 16px;
      padding-right: 16px; } }
  .no_results .sorry {
    display: flex;
    align-items: center;
    gap: 8px; }
    .no_results .sorry img {
      margin-top: -5px; }
    .no_results .sorry #search-term {
      font-weight: 500; }
  @media (min-width: 992px) {
    .no_results .search-tips {
      padding-left: 100px; } }
  .no_results .search-tips ul {
    margin: 0; }
  .no_results a {
    color: #3f647c;
    font-weight: 500; }

    .show-hidden-content {
      display: none !important;
    }
 .sorry .search-term {
      font-weight: 500; }