/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
  width: 100%;
  height: 60vh;
  background: url("/assets/hero/hero-privacy.webp");
  background-position-x: center;
  background-position-y: top;
  position: relative;
}

#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);
  }
}

@supports (-webkit-touch-callout: none) {
  @media only screen {
    #hero {
      background-attachment: scroll;
    }
  }
}

/*--------------------------------------------------------------
  Privacy Policy
--------------------------------------------------------------*/

.privacy-policy {
  font-size: 1.125rem;
  background: #FAFAFA;
  padding-top: 80px;
}


.privacy-policy h2 {
  margin-bottom: 20px;
  font-size: 1.375rem;
  font-weight: 700;
}

.privacy-policy span {
  padding-inline-start: 1.125rem;
  font-size: 1.0rem;
  font-style: italic;
}