/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
  width: 100%;
  height: 60vh;
  background: url("/assets/hero/hero-privacy.webp");
  background-position-x: center;
  background-position-y: top;
  position: relative;
  /*
  box-shadow: inset 0 0 0 2000px rgba(255, 255, 255, 0.25);  
  */
}

#hero .container {
  padding-top: 180px;
}

#hero h1 {
  text-align: left;
  margin-left: 40px;
  margin-bottom: 10px;
  font-size: var(--tab-hero-h1-lg);
  font-weight: 700;
  color: white;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.1);
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero {
    height: 100vh;
  }

  #hero .container {
    padding-top: 60px;
  }

  #hero h1 {
    font-size: var(--tab-hero-h1-sm);
    line-height: var(--tab-hero-h1-line-sm);
  }
}

@supports (-webkit-touch-callout: none) {
  @media only screen {
    #hero {
      background-attachment: scroll;
    }
  }
}

/*--------------------------------------------------------------
  Trademark Disclaimer
--------------------------------------------------------------*/

.trademark-disclaimer {
  font-size: 1.125rem;
  background: #FAFAFA;
  padding-top: 80px;
}


.trademark-disclaimer h2 {
  margin-bottom: 20px;
  font-size: 1.375rem;
  font-weight: 700;
}

.trademark-disclaimer span {
  padding-inline-start: 1.125rem;
  font-size: 1.0rem;
  font-style: italic;
}