@media screen {

  .section-hero {
    background: var(--theme-hero-background-color);
    color: #fff;
    overflow: hidden;
    position: relative;
  }
  .section-hero .inner {
    --inner-padding-bottom: 0;
    --inner-padding-top: 110px;

    align-items: flex-start;
    color: #fff;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
  }
  .section-hero .inner a {
    color: var(--theme-link-color_alt);
  }
  .section-hero img {
    bottom: 0;
    height: 100%;
    left: 50%;
    object-fit: cover;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
  }
  .section-hero h1 {
    margin: 0;
  }
  .section-hero p {
    margin: 0;
  }
  .section-hero p + p {
    margin-top: .625rem;
  }
  .section-hero h1 + p,
  .section-hero h1 + div {
    line-height: 1.4;
    margin-top: .625rem;
  }

  /* For visual editor */
  .p-visual-editor-hero::before,
  .p-visual-editor-support::before {
    content: '';
    display: block !important;
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #17181A;
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: 60% 0%;
    z-index: 0;
  }

  .p-visual-editor-hero::before {
    background-image: url('../img/hero/blog_mobile.jpeg');
  }
  .p-visual-editor-support::before {
    background-image: url('../img/hero/support_mobile.jpg');
  }

  @media screen and (min-width: 768px) {
    .section-hero .inner {
      --inner-padding-top: 130px;
    }
    .section-hero h1 + p {
      margin-top: 1rem;
    }
    .p-visual-editor-hero::before {
      background-image: url('../img/hero/blog.png');
    }
    .p-visual-editor-support::before {
      background-image: url('../img/hero/support_desktop.jpg');
    }
  }
  @media screen and (min-width: 1024px) {
    .section-hero .inner {
      --inner-padding-top: 160px;
    }
  }

  /* Breadcrumb Nav */
  .nav-breadcrumb {
    align-items: center;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    font-size: .75rem;
    left: 0; /* Set to zero for solutions site */
    max-width: 1390px;
    position: absolute;
    text-transform: uppercase;
    top: calc(1.5rem + var(--header-sub-height));
    z-index: 1;
  }
  .section-hero .inner .nav-breadcrumb > p > * + * { margin-left: 5px; }
  .section-hero .inner .nav-breadcrumb a {
    color:#fff;
  }
  .nav-breadcrumb a span { opacity:.5; }
  .mk-grid .nav-breadcrumb a span { opacity: 1; }
  .nav-breadcrumb svg {
    margin-right: 10px;
    transform: translate(4px,-.5px);
  }
  .nav-breadcrumb path {
    fill: #fff;
  }
  @media screen and (min-width: 768px) {
    .nav-breadcrumb {
      --header-nav-breadcrumb-left: 165px;
    }
  }
  @media screen and (min-width: 1024px) {
    .nav-breadcrumb {
      --header-nav-breadcrumb-left: 219px;
    }
  }
  @media screen and (max-width: 767px) {
    .nav-breadcrumb { display:none; }
  }

  /* Share Button */
  .section-hero .btn-share {
    background-color: rgba(0,0,0,.4);
    border: 1px solid var(--theme-btn-color);
    border-radius: 5px;
    bottom: 60px;
    color: #fff;
    cursor: pointer;
    display: none;
    font-family: var(--theme-font-bold);
    font-weight: 500;
    position: absolute;
    right: 0;
    text-transform: uppercase;
  }
  .section-hero .btn-share:focus-visible {
    color: #000;
  }
  @media screen and (min-width: 768px) {
    .section-hero .btn-share { display:flex; }
  }



  /* MEDIA QUERY: MIN
  --------------------------- */

  /* TABLET: PORTRAIT+ */
  @media screen and (min-width: 768px) {
    .section-hero {
      --inner-height: 450px;
    }
  }

  /* TABLET: DESKTOP MAX */
  /* @media screen and (min-width: 1390px) {} */


  /* MEDIA QUERY: MIN
  --------------------------- */

  /* MAX MOBILE */
  @media screen and (max-width: 767px) {
    .section-hero {
      --inner-height: 400px;
    }
  }

}


/* PRINT STYLES
--------------------------- */
@media print {

  /* HIDE ITEMS */
  [class*="nav-primary"] { display:none !important; }

}
