html {
  margin: 0;
}
html body {
  margin: 0;
  width: 100vw;
  overflow-x: hidden;
}
html body .scroll {
  /*overflow: scroll;
  height: 100vh;
  scroll-snap-points-y: repeat(100vh);
  scroll-snap-type: y proximity;*/
}
html body .pacifico-regular {
  font-family: "Pacifico", serif;
  font-weight: 400;
  font-style: normal;
}
html body .open-sans-regular {
  font-family: "Open Sans", serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
html body .background-blue {
  background-color: #6CABDD;
  color: white;
}
html body .background-pink {
  background-color: #D194A0;
  color: white;
}
html body .content-inner-container {
  background-color: white;
  z-index: 2;
  position: relative;
}
html body .header {
  padding: 30px 20px;
  background-color: #6CABDD;
  color: white;
}
html body .header a {
  color: white;
}
html body h2 {
  font-size: 40px;
}
html body .content-section {
  min-height: 100vh;
  scroll-snap-align: start;
  position: relative;
  display: flex;
  flex-direction: column;
  font-weight: 500;
  font-size: 18px;
}
@media (min-width: 992px) {
  html body .content-section {
    font-size: 24px;
  }
}
html body .content-section:nth-child(even) .title-box {
  background-color: #6CABDD;
  color: white;
}
html body .content-section:nth-child(odd) .title-box {
  background-color: #D194A0;
  color: white;
}
html body .content-section .text-container {
  padding-top: 50px;
  padding-bottom: 50px;
}
html body .hero-section-image {
  width: 100%;
  position: relative;
  overflow: hidden;
  /* Hide excess image */
  flex-grow: 1;
  min-height: 350px;
  /*.hero-section-background {
    width: 100%;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    height: 570px;
  }*/
}
html body .hero-section-image .parallax-container {
  position: relative;
  height: 100vh;
  /* Full viewport height */
  overflow: hidden;
  /* Hide excess image */
}
html body .hero-section-image .parallax-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* Center the image initially */
  will-change: transform;
  /* Optimize for performance */
  height: 100vh;
  object-fit: cover;
  width: 100vw;
}
html body .hero-section-image:after {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(108, 171, 221, 0.4);
}
html body .hero-container {
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 1;
  position: relative;
}
html body .hero-container .hero-section-image {
  height: 100%;
}
html body .hero-container .hero-section {
  flex-grow: 1;
  overflow: hidden;
  position: relative;
}
html body .header-menu li a {
  text-decoration: none;
  color: #6CABDD;
}
html body .header-menu li.active a {
  text-decoration: underline;
}

/*# sourceMappingURL=globals.css.map */
