:root {
  --font-main: museo-sans, Helvetica, Arial, sans-serif;
  --color-navy-brand: 54,80,120;
  --color-blue-gray: 157,183,199;
  --color-yellow: 225,244,6;
  --color-cyan: 73,201,224;
  --color-green: 163,173,43;
  --color-purple: 199,92,183;
  --color-blue: 100,166,208;
  --color-blue-bright: 77,151,237;
  --color-magenta: 199,9,170;
  --color-aqua: 86,245,252;
  --color-dark-text: 8,15,18;
  --color-light-text: 245,252,255;
  --color-gray-lt: 233,240,244;
  --color-placeholder: 235,235,235;
  --height-header: 6rem;
  --height-menu: calc(100vh - var(--height-header));
  --height-fullscreen: calc(100vh - var(--height-header));
  --spacing-section-vert: 6rem;
  --font-size-base: 1.6rem;
  --font-size-sm: 1.4rem;
  --font-size-lrg: 2rem;
  --font-size-xl: 2.4rem;
  --font-size-xxl: 5rem;
  --animation-duration-base: .6s;
  --animation-scale-down: 1.1;
}
@media (min-width: 768px) {
  :root {
    --height-header: 7rem;
  }
}
@media (min-width: 768px) {
  :root {
    --spacing-section-vert: 8rem;
  }
}
@media (min-width: 1025px) {
  :root {
    --spacing-section-vert: 12rem;
  }
}
@media (min-width: 768px) {
  :root {
    --font-size-base: 1.8rem;
  }
}
@media (min-width: 1025px) {
  :root {
    --font-size-base: 1.8rem;
  }
}
@media (min-width: 768px) {
  :root {
    --font-size-sm: 1.6rem;
  }
}
@media (min-width: 1025px) {
  :root {
    --font-size-sm: 1.6rem;
  }
}
@media (min-width: 768px) {
  :root {
    --font-size-lrg: 2.2rem;
  }
}
@media (min-width: 1025px) {
  :root {
    --font-size-lrg: 2.4rem;
  }
}
@media (min-width: 768px) {
  :root {
    --font-size-xl: 3.2rem;
  }
}
@media (min-width: 1025px) {
  :root {
    --font-size-xl: 4rem;
  }
}
@media (min-width: 768px) {
  :root {
    --font-size-xxl: 6.5rem;
  }
}
@media (min-width: 1025px) {
  :root {
    --font-size-xxl: 7.5rem;
  }
}

.loading * {
  transition: none !important;
}

.clearfix:after {
  clear: both;
  content: " ";
  display: table;
}

@media (max-width: 1024px) {
  .desktop-only {
    display: none !important;
  }
}

@media (min-width: 1025px) {
  .no-desktop {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .mobile-only {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .no-mobile {
    display: none !important;
  }
}

img, picture {
  display: block;
  height: auto;
  max-width: 100%;
}

.img-wrapper {
  background-color: rgb(var(--color-placeholder));
}
.img-wrapper.fullscreen {
  height: var(--height-fullscreen);
}

.img-fit {
  overflow: hidden;
  position: relative;
}
.img-fit img, .img-fit video, .img-fit iframe {
  height: 100%;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}

.vid-wrapper {
  margin-inline: auto;
  padding-bottom: 56.25%;
  position: relative;
  width: 100%;
}

.svg-wrapper {
  display: none;
}

.nobr {
  white-space: nowrap;
}

.slide-rule {
  padding-bottom: 0.25rem;
  position: relative;
  text-decoration: none;
}
.slide-rule:after {
  background-color: currentColor;
  bottom: 0;
  content: " ";
  display: inline-block;
  height: 2px;
  left: 0;
  position: absolute;
  transition: width 0.3s ease-in-out;
  width: 0;
}
html:not(.user-can-touch) .slide-rule:hover {
  text-decoration: none;
}
html:not(.user-can-touch) .slide-rule:hover:after {
  width: 100%;
}

.module-link {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 9;
}

.bg-navy {
  background-color: rgb(var(--color-navy-brand));
}

.bg-white {
  background-color: white;
}

.bg-gray {
  background-color: rgb(var(--color-blue-gray));
}

.bg-gray-lt {
  background-color: rgb(var(--color-gray-lt));
}

.bg-dark {
  background-color: rgb(var(--color-dark-text));
}

.txt-navy {
  color: rgb(var(--color-navy-brand));
}

.txt-white {
  color: white;
}

.txt-aqua {
  color: rgb(var(--color-aqua));
}

.txt-blue {
  color: rgb(var(--color-blue));
}

.txt-green {
  color: rgb(var(--color-green));
}

.columns {
  -moz-columns: 2 300px;
  columns: 2 300px;
  -moz-column-gap: 4rem;
  column-gap: 4rem;
}
.columns .no-col-br {
  page-break-inside: avoid;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}
.columns.col-3 {
  -moz-columns: 3 20rem;
  columns: 3 20rem;
  -moz-column-gap: 4rem;
  column-gap: 4rem;
}

.aos {
  animation-duration: var(--animation-duration-base);
  animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
  animation-fill-mode: both;
  opacity: 0;
  position: relative;
  will-change: opacity, transform;
}
.aos.delay {
  animation-delay: calc(var(--animation-duration-base) / 2);
}
.aos.delay-2x {
  animation-delay: var(--animation-duration-base);
}
.aos.aos-scale {
  animation-duration: calc(var(--animation-duration-base) * 5);
  opacity: 1;
  transform: scale(1.1);
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.aos.fade-in {
  animation-name: fade-in;
}

@keyframes fade-up {
  0% {
    opacity: 0;
    transform: translateY(25%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.aos.fade-up {
  animation-name: fade-up;
}

@keyframes fade-down {
  0% {
    opacity: 0;
    transform: translateY(-25%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.aos.fade-down {
  animation-name: fade-down;
}

@keyframes fade-right {
  0% {
    opacity: 0;
    transform: translateX(-10rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.aos.fade-right {
  animation-name: fade-up;
}
@media (min-width: 768px) {
  .aos.fade-right {
    animation-name: fade-right;
  }
}

@keyframes fade-left {
  0% {
    opacity: 0;
    transform: translateX(10rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.aos.fade-left {
  animation-name: fade-up;
}
@media (min-width: 768px) {
  .aos.fade-left {
    animation-name: fade-left;
  }
}

@keyframes scale-down {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.aos.scale-down {
  animation-name: scale-down;
}

@keyframes scale-up {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
.aos.scale-up {
  animation-name: scale-up;
}

.aos-children.stagger > *:nth-child(1) {
  animation-delay: 250ms;
}
.aos-children.stagger > *:nth-child(2) {
  animation-delay: 500ms;
}
.aos-children.stagger > *:nth-child(3) {
  animation-delay: 750ms;
}
.aos-children.stagger > *:nth-child(4) {
  animation-delay: 1000ms;
}
.aos-children.stagger > *:nth-child(5) {
  animation-delay: 1250ms;
}
.aos-children.stagger > *:nth-child(6) {
  animation-delay: 1500ms;
}
.aos-children.stagger > *:nth-child(7) {
  animation-delay: 1750ms;
}
.aos-children.stagger > *:nth-child(8) {
  animation-delay: 2000ms;
}
.aos-children.stagger > *:nth-child(9) {
  animation-delay: 2250ms;
}
.aos-children.stagger > *:nth-child(10) {
  animation-delay: 2500ms;
}

/* ==========================================================================
   CSS RESET v2.0 http://meyerweb.com/eric/tools/css/reset/
   ========================================================================== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* User specific resets */
html {
  font-size: 10px;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  line-height: 1.5;
  text-align: center;
}

/* Remove annoying border on linked images. */
a img {
  border: none;
}

/* Remove Firefox dotted border on links */
a {
  outline: none;
}

h1 {
  color: white;
  font-size: 7.5rem;
  font-weight: 300;
  line-height: 1;
}
@media (min-width: 768px) {
  h1 {
    font-size: 9rem;
  }
}
@media (min-width: 1100px) {
  h1 {
    font-size: 10rem;
  }
}
@media (min-width: 1025px) {
  h1 br {
    display: none;
  }
}

h2 {
  color: rgb(var(--color-navy-brand));
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  h2 {
    font-size: 6.5rem;
    width: 75%;
  }
}
@media (min-width: 1025px) {
  h2 {
    font-size: 7.5em;
    margin-bottom: 4rem;
  }
}

h3 {
  color: rgb(var(--color-navy-brand));
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 2rem;
  text-align: center;
}
@media (min-width: 768px) {
  h3 {
    font-size: 2.8rem;
  }
}
@media (min-width: 1025px) {
  h3 {
    font-size: 3.2rem;
  }
}

h4 {
  color: rgb(var(--color-navy-brand));
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  h4 {
    font-size: 2rem;
  }
}
@media (min-width: 1025px) {
  h4 {
    font-size: 2.4rem;
  }
}

h5 {
  color: rgb(var(--color-navy-brand));
  font-size: var(--font-size-base);
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  h5 {
    margin-bottom: 0.75rem;
  }
}

p:last-child {
  margin-bottom: 0;
}
main p {
  color: rgb(var(--color-navy-brand));
  font-size: var(--font-size-base);
  line-height: 1.4;
  margin-bottom: 1em;
}
main p:last-child {
  margin-bottom: 0;
}
p.size-sm {
  font-size: var(--font-size-sm);
}
p.size-lrg {
  font-size: var(--font-size-lrg);
  line-height: 1.3;
}
p.size-xl {
  font-size: var(--font-size-xl);
  line-height: 1.2;
}
p.size-xxl {
  font-size: var(--font-size-xxl);
  font-weight: 300;
  line-height: 1.1;
}
@media (min-width: 768px) {
  main .container > p {
    width: 60%;
  }
  main .container > p.size-xl, main .container > p.size-xxl {
    width: 75%;
  }
}

ul, ol {
  font-size: 1rem;
}
main ul, main ol {
  list-style: none;
}
main ul:last-child, main ol:last-child {
  margin-bottom: 0;
}
main ul li, main ol li {
  font-size: var(--font-size-base);
  line-height: 1.4;
  margin-bottom: 1em;
  position: relative;
}
main ul li:last-child, main ol li:last-child {
  margin-bottom: 0;
}
main ul li.size-sm, main ol li.size-sm {
  font-size: var(--font-size-sm);
}
main ul li.size-lrg, main ol li.size-lrg {
  font-size: var(--font-size-lrg);
  line-height: 1.3;
}
main ul li.size-xl, main ol li.size-xl {
  font-size: var(--font-size-xl);
  line-height: 1.2;
}
main ul li.size-xxl, main ol li.size-xxl {
  font-size: var(--font-size-xxl);
  font-weight: 300;
  line-height: 1.1;
}

a {
  text-decoration: none;
}
main a:not([class]), #popup a:not([class]) {
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 100% 2px;
  color: rgb(var(--color-magenta));
  padding-bottom: 0.125rem;
  position: relative;
  text-decoration: none;
  transition: background-size 0.3s ease-in-out;
}
html:not(.user-can-touch) main a:not([class]):hover, html:not(.user-can-touch) #popup a:not([class]):hover {
  background-size: 0% 2px;
  text-decoration: none;
}
a.fade {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}
html:not(.user-can-touch) a.fade:hover {
  opacity: 0.7;
}

.txt-center {
  text-align: center;
}

.txt-left {
  text-align: left;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

sup {
  font-size: 0.5em;
  margin: 0 2px;
  vertical-align: super;
}

sub {
  font-size: 0.5em;
  margin: 0 2px;
  position: relative;
  top: -2px;
  vertical-align: bottom;
}

.caps {
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.caps.small {
  font-size: 0.8em;
}

html, body {
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
}

html {
  scroll-padding-top: var(--height-header);
}

body {
  -webkit-backface-visibility: hidden;
  background-color: white;
  color: rgb(var(--color-navy-brand));
  font-family: var(--font-main);
  font-weight: normal;
  height: 100%;
  line-height: 1.5;
  overflow-x: hidden;
}
body * {
  box-sizing: border-box;
}
body.no-scroll {
  overflow-y: hidden;
}

main {
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 0;
  min-height: var(--height-fullscreen);
  text-align: left;
}

.container {
  margin: 0 auto;
  max-width: 144rem;
  padding: 0 2rem;
  position: relative;
  width: 100%;
}
@media (min-width: 768px) {
  .container {
    padding: 0 4rem;
  }
}
@media (min-width: 1025px) {
  .container {
    padding: 0 5rem;
  }
}

section, article {
  position: relative;
}

.internal-padding {
  padding-block: var(--spacing-section-vert);
}

.section-spacing {
  margin-bottom: var(--spacing-section-vert);
}

@media (min-width: 1280px) {
  section:not(#team) .section-intro {
    padding-top: calc(var(--spacing-section-vert) * 1.5);
  }
}
.section-intro h2:last-child {
  margin-bottom: 0;
}

.grid-wrapper {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 600px) {
  .grid-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1025px) {
  .grid-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
.grid-wrapper.tight {
  gap: 0;
}
.grid-wrapper.loose {
  gap: 4rem;
}

.btn, button {
  -webkit-appearance: none;
  background: none;
  border: none;
  border-radius: 0;
  cursor: pointer;
  font-family: var(--font-main);
  line-height: 1;
  padding: 0;
}
.btn:focus, button:focus {
  outline: none;
}

#popup {
  background-color: rgba(var(--color-navy-brand), 0.95);
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}
#popup .popup-wrapper {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: flex-start;
  left: 0;
  overflow-y: scroll;
  padding: 2rem;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
@media (min-width: 768px) {
  #popup .popup-wrapper {
    padding: 4rem;
  }
}
@media (min-width: 1025px) {
  #popup .popup-wrapper {
    padding: 5rem;
  }
}
#popup .popup-panel {
  margin: auto;
  max-width: 100rem;
  position: relative;
  width: 100%;
}
#popup .popup-close {
  color: rgb(var(--color-gray));
  font-family: sans-serif;
  font-size: 4rem;
  font-weight: 100;
  line-height: 0.5;
  padding: 0.25rem 0.5rem 1rem;
  position: absolute;
  right: 1rem;
  text-align: center;
  top: 1rem;
  z-index: 3;
}
@media (min-width: 1025px) {
  #popup .popup-close {
    font-size: 5rem;
    right: 2rem;
    top: 2rem;
  }
}

.card {
  margin: 0;
  width: 100%;
}
.card.internal-padding {
  padding: 2rem;
}
@media (min-width: 768px) {
  .card.internal-padding {
    padding: 3rem;
  }
}
.card.border {
  border: 1px solid currentColor;
}
@media (min-width: 1025px) {
  #home #stories .card {
    align-items: flex-start;
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
  }
}
#home #stories .card .card-header {
  margin-bottom: 3rem;
  padding-inline: 2rem;
  text-wrap: balance;
}
@media (min-width: 768px) {
  #home #stories .card .card-header {
    padding-inline: 4rem;
  }
}
@media (min-width: 1025px) {
  #home #stories .card .card-header {
    margin-bottom: 5rem;
  }
}
#home #stories .card .card-header h4 {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin-bottom: 0;
  max-width: 80%;
  text-transform: uppercase;
}
@media (min-width: 1025px) {
  #home #stories .card .card-header h4 {
    font-size: 2.3rem;
  }
}
#home #stories .card a {
  display: contents;
}
@media (min-width: 1025px) {
  #home #stories .card a:hover .content-wrapper {
    opacity: 1;
  }
}
#home #stories .card .card-body {
  position: relative;
  width: 100%;
}
@media (min-width: 1025px) {
  #home #stories .card .card-body {
    min-height: 58rem;
  }
}
#home #stories .card .card-body .img-wrapper {
  aspect-ratio: 4/3;
  width: 100%;
}
@media (min-width: 1025px) {
  #home #stories .card .card-body .img-wrapper {
    aspect-ratio: auto;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;
  }
}
#home #stories .card .card-body .img-wrapper.parallax img {
  bottom: 0;
  height: 120%;
  top: auto;
}
#home #stories .card .card-body .content-wrapper {
  background-color: rgba(var(--color-yellow), 1);
  padding: 3rem 2rem;
}
@media (min-width: 768px) {
  #home #stories .card .card-body .content-wrapper {
    padding: 5rem 4rem;
  }
}
@media (min-width: 1025px) {
  #home #stories .card .card-body .content-wrapper {
    background-color: rgba(var(--color-yellow), 0.85);
    height: 100%;
    left: 0;
    opacity: 0;
    padding: 8rem 5rem;
    position: absolute;
    top: 0;
    transition: opacity 0.5s cubic-bezier(0.39, 0.575, 0.565, 1);
    width: 100%;
    z-index: 1;
  }
}
#home #stories .card .card-body .content-wrapper p {
  font-size: 2rem;
  line-height: 1.3;
}
@media (min-width: 1025px) {
  #home #stories .card .card-body .content-wrapper p {
    font-size: 2.7rem;
  }
}
#home #stories .card .card-body .content-wrapper p:after {
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 100% 2px;
  color: rgb(var(--color-magenta));
  content: "View Story";
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-top: 2rem;
  padding-bottom: 0.125rem;
  text-transform: uppercase;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 1025px) {
  #home #stories .card .card-body .content-wrapper p:after {
    margin-top: 4rem;
  }
}
#home #stories .card:nth-child(2) .card-body .content-wrapper {
  background-color: rgba(var(--color-aqua), 1);
}
@media (min-width: 1025px) {
  #home #stories .card:nth-child(2) .card-body .content-wrapper {
    background-color: rgba(var(--color-aqua), 0.85);
  }
}
#home #stories .card:last-child .card-body .content-wrapper {
  background-color: rgb(203, 227, 255);
}
@media (min-width: 1025px) {
  #home #stories .card:last-child .card-body .content-wrapper {
    background-color: rgba(203, 227, 255, 0.9);
  }
}

body > header {
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.5);
  left: 0;
  position: fixed;
  top: 0;
  transition: transform 0.3s ease-in-out;
  transform: translate3d(0, -100%, 0);
  width: 100%;
  z-index: 99;
}
body > header.on {
  transform: translate3d(0, 0, 0);
}
body > header .navbar {
  background-color: rgb(var(--color-blue));
  height: var(--height-header);
  width: 100%;
}
body > header .navbar .container {
  height: 100%;
  align-items: center;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}
body > header .navbar .title {
  color: rgb(var(--color-aqua));
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
@media (min-width: 600px) {
  body > header .navbar .title {
    font-size: 1.5rem;
  }
}
body > header .navbar .menu-trigger {
  flex-shrink: 0;
  height: 3.6rem;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-indent: -9999em;
  transition: transform 0.3s ease-in-out;
  width: 3.6rem;
  z-index: 99;
}
@media (min-width: 768px) {
  body > header .navbar .menu-trigger {
    height: 4rem;
    width: 4rem;
  }
}
body > header .navbar .menu-trigger.on {
  transform: rotate(45deg);
}
body > header .navbar .menu-trigger:before, body > header .navbar .menu-trigger:after {
  background-color: white;
  content: " ";
  position: absolute;
  left: 50%;
  top: 50%;
  transform-origin: center center;
  transform: translate3d(-50%, -50%, 0);
}
body > header .navbar .menu-trigger:before {
  height: 0.2rem;
  width: calc(100% - 1.6rem);
}
@media (min-width: 768px) {
  body > header .navbar .menu-trigger:before {
    height: 0.3rem;
  }
}
body > header .navbar .menu-trigger:after {
  height: calc(100% - 1.6rem);
  width: 0.2rem;
}
@media (min-width: 768px) {
  body > header .navbar .menu-trigger:after {
    width: 0.3rem;
  }
}
body > header nav {
  background-color: rgb(var(--color-blue));
  height: 0;
  max-height: var(--height-menu);
  overflow: hidden;
  transition: height 0.3s ease-in-out;
  width: 100%;
}
body > header nav.on {
  animation: hide-scroll 0.3s backwards;
  height: var(--height-menu);
  overflow: auto;
}
body > header nav .container {
  align-items: flex-start;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  max-width: 124rem;
  min-height: var(--height-menu);
  padding-block: 4rem 8rem;
}
@media (min-width: 768px) {
  body > header nav .container {
    padding-block: 6rem 10rem;
  }
}
@media (min-width: 1025px) {
  body > header nav .container {
    padding-block: 8rem;
  }
}
body > header nav .main-nav {
  gap: 4rem;
  margin-block: auto;
  text-align: left;
  width: 100%;
}
@media (min-width: 1025px) {
  body > header nav .main-nav {
    -moz-column-gap: 7rem;
         column-gap: 7rem;
  }
}
body > header nav .main-nav .stories span {
  color: rgb(var(--color-navy-brand));
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.35;
  margin-bottom: 2rem;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  body > header nav .main-nav .stories span {
    font-size: 1.6rem;
    margin-bottom: 2.5rem;
  }
}
body > header nav .main-nav .stories a span {
  color: rgb(var(--color-aqua));
  font-weight: normal;
  margin-block: 0.5rem 0;
  transition: color 0.3s ease-in-out;
}
body > header nav .main-nav a {
  color: rgb(var(--color-aqua));
  display: block;
  font-size: 2.4rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  transition: color 0.3s ease-in-out;
}
@media (min-width: 768px) {
  body > header nav .main-nav a {
    font-size: 3rem;
    margin-bottom: 3rem;
  }
}
html:not(.user-can-touch) body > header nav .main-nav a:hover {
  color: white;
}
html:not(.user-can-touch) body > header nav .main-nav a:hover span {
  color: white;
}
body > header nav .main-nav a[href*="waterstreet.com"] {
  color: white;
  font-size: 2.1rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  body > header nav .main-nav a[href*="waterstreet.com"] {
    font-size: 2.5rem;
    margin-bottom: 5.75rem;
  }
}
body > header nav .main-nav a[href*=disclaimer] {
  font-size: 1.4rem;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  body > header nav .main-nav a[href*=disclaimer] {
    font-size: 1.6rem;
  }
}
body > header nav .main-nav a:last-child {
  margin-bottom: 0;
}
@keyframes hide-scroll {
  from, to {
    overflow: hidden;
  }
}

.hero {
  background-color: rgb(var(--color-placeholder));
  align-items: flex-start;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  min-height: 100vh;
  padding-block: 4rem 8rem;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: -1;
}
@media (min-width: 768px) {
  .hero {
    padding-block: 6rem 10rem;
  }
}
@media (min-width: 1025px) {
  .hero {
    padding-bottom: 7rem;
  }
}
.hero .container {
  align-items: flex-start;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-end;
  flex-grow: 1;
  position: relative;
  text-align: left;
  z-index: 2;
}
.hero .container .logo {
  fill: white;
  height: auto;
  margin-bottom: 4rem;
  width: 23rem;
}
@media (min-width: 768px) {
  .hero .container .logo {
    margin-bottom: 5rem;
    width: 28rem;
  }
}
.hero .img-wrapper {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.banner {
  padding-block: var(--spacing-section-vert);
}
.banner.border-top {
  border-top: 1px solid rgb(var(--color-navy-brand));
}
.banner.img-text {
  overflow: hidden;
  padding-block: 0;
  position: relative;
}
@media (min-width: 768px) {
  .banner.img-text .container {
    align-items: stretch;
    display: flex;
    flex-flow: row-reverse nowrap;
    justify-content: flex-start;
  }
}
.banner.img-text .img-wrapper {
  aspect-ratio: 4/3;
  background-color: transparent;
}
.banner.img-text .img-wrapper.parallax img {
  bottom: 0;
  height: 120%;
  top: auto;
}
@media (min-width: 768px) {
  .banner.img-text .img-wrapper {
    aspect-ratio: auto;
    height: 100%;
    left: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 40%;
  }
  .banner.img-text .img-wrapper img {
    -o-object-position: right center;
       object-position: right center;
  }
  .banner.img-text .img-wrapper.bottom img {
    -o-object-position: right bottom;
       object-position: right bottom;
  }
  .banner.img-text .img-wrapper.top img {
    -o-object-position: right top;
       object-position: right top;
  }
}
@media (min-width: 1280px) {
  .banner.img-text .img-wrapper {
    left: 5%;
  }
}
@media (min-width: 1440px) {
  .banner.img-text .img-wrapper {
    left: 10%;
  }
}
@media (min-width: xxlpx) {
  .banner.img-text .img-wrapper {
    left: 10%;
  }
}
@media (min-width: 768px) {
  .banner.img-text.img-bg .img-wrapper {
    width: 100%;
  }
}
@media (min-width: 1280px) {
  .banner.img-text.img-bg .img-wrapper {
    left: 0;
  }
}
@media (min-width: 1440px) {
  .banner.img-text.img-bg .img-wrapper {
    left: 0;
  }
}
@media (min-width: xxlpx) {
  .banner.img-text.img-bg .img-wrapper {
    left: 0;
  }
}
@media (min-width: 768px) {
  .banner.img-text.img-bg.overlap .img-wrapper {
    width: 65%;
  }
}
.banner.img-text .content-wrapper {
  padding-block: var(--spacing-section-vert);
}
@media (min-width: 768px) {
  .banner.img-text .content-wrapper {
    max-width: 64rem;
    width: 60%;
  }
}
@media (min-width: 768px) {
  .banner.img-text.xtra-top .content-wrapper {
    padding-top: calc(var(--spacing-section-vert) * 2);
  }
}
@media (min-width: 768px) {
  .banner.img-text.xtra-bottom .content-wrapper {
    padding-bottom: calc(var(--spacing-section-vert) * 2);
  }
}
@media (min-width: 768px) {
  .banner.img-text.img-right .img-wrapper {
    left: auto !important;
    right: 0;
  }
  .banner.img-text.img-right .img-wrapper img {
    -o-object-position: left center;
       object-position: left center;
  }
  .banner.img-text.img-right .img-wrapper.bottom img {
    -o-object-position: left bottom;
       object-position: left bottom;
  }
  .banner.img-text.img-right .img-wrapper.top img {
    -o-object-position: left top;
       object-position: left top;
  }
}
@media (min-width: 1280px) {
  .banner.img-text.img-right.img-bg .img-wrapper {
    right: 0;
  }
}
@media (min-width: 1440px) {
  .banner.img-text.img-right.img-bg .img-wrapper {
    right: 0;
  }
}
@media (min-width: xxlpx) {
  .banner.img-text.img-right.img-bg .img-wrapper {
    right: 0;
  }
}
@media (min-width: 768px) {
  .banner.img-text.img-right .container {
    flex-direction: row;
  }
}
.banner.img-banner {
  height: 30rem;
  overflow: hidden;
  padding-block: 0;
  position: relative;
}
@media (min-width: 768px) {
  .banner.img-banner {
    height: 35rem;
  }
}
@media (min-width: 1025px) {
  .banner.img-banner {
    height: 43rem;
  }
}
.banner.img-banner .img-wrapper {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.banner.img-banner .img-wrapper.parallax img {
  bottom: 0;
  height: 120%;
  -o-object-position: center top;
  object-position: center top;
  top: auto;
}

#highlights .img-wrapper {
  position: sticky;
  top: var(--height-header);
  z-index: -1;
}
#highlights .stats {
  background-color: rgba(var(--color-navy-brand), 0.8);
}
#highlights .stats h3 {
  border-bottom: 1px solid currentColor;
  color: rgb(var(--color-yellow));
  display: block;
  font-size: 2.3rem;
  font-weight: normal;
  letter-spacing: 0.05em;
  margin-inline: auto;
  text-transform: uppercase;
  padding-bottom: 0.5rem;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 768px) {
  #highlights .stats h3 {
    margin-bottom: 8rem;
  }
}
@media (min-width: 1025px) {
  #highlights .stats h3 {
    margin-bottom: 10rem;
  }
}
#highlights .stats ul {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(1, 1fr);
  position: relative;
}
@media (min-width: 768px) {
  #highlights .stats ul {
    grid-template-columns: repeat(2, 1fr);
  }
  #highlights .stats ul:before, #highlights .stats ul:after {
    background-color: rgb(var(--color-light-text));
    content: "";
    display: block;
    position: absolute;
  }
  #highlights .stats ul:before {
    height: 0;
    left: 50%;
    top: 50%;
    transition: height 1s ease-in-out;
    transform: translate3d(-50%, -50%, 0);
    width: 1px;
  }
  #highlights .stats ul.on:before {
    height: 100%;
  }
  #highlights .stats ul:after {
    height: 1px;
    left: 50%;
    top: 50%;
    transition: width 1s ease-in-out;
    transform: translate3d(-50%, -50%, 0);
    width: 0;
  }
  #highlights .stats ul.on:after {
    width: 100%;
  }
}
#highlights .stats ul li {
  border-bottom: 1px solid currentColor;
  color: rgb(var(--color-light-text));
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.25;
  margin: 0;
  padding-block: 4rem;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  #highlights .stats ul li {
    border-bottom: none;
    padding: 4rem;
    text-align: left;
  }
}
@media (min-width: 900px) {
  #highlights .stats ul li {
    font-size: 2.1rem;
  }
}
@media (min-width: 1025px) {
  #highlights .stats ul li {
    font-size: 2.3rem;
    padding: 6rem;
  }
}
@media (min-width: 1280px) {
  #highlights .stats ul li {
    margin-inline: auto;
    min-width: 48rem;
  }
}
#highlights .stats ul li:last-child {
  border-bottom: none;
}
#highlights .stats ul li em {
  display: block;
  font-size: 12rem;
  font-style: normal;
  font-weight: 300;
  margin-bottom: 1rem;
  line-height: 1;
}
@media (min-width: 900px) {
  #highlights .stats ul li em {
    font-size: 13rem;
  }
}
@media (min-width: 1025px) {
  #highlights .stats ul li em {
    font-size: 15rem;
    margin-bottom: 1.5rem;
  }
}

#team .section-intro {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  #team .section-intro {
    margin-bottom: 6rem;
  }
}
@media (min-width: 1025px) {
  #team .section-intro {
    margin-bottom: 10rem;
  }
}
#team .section-intro p {
  font-size: 2.3rem;
}
@media (min-width: 768px) {
  #team .section-intro p {
    font-size: 2.6rem;
  }
}
@media (min-width: 1025px) {
  #team .section-intro p {
    font-size: 3rem;
  }
}
#team li {
  border-bottom: 1px solid rgb(var(--color-gray-lt));
  margin-bottom: 0;
  padding-block: 6rem;
}
@media (min-width: 768px) {
  #team li {
    padding-block: 8rem;
  }
}
@media (min-width: 1025px) {
  #team li {
    padding-block: 9rem;
  }
}
#team li:last-child {
  border-bottom-width: 0;
}
@media (min-width: 768px) {
  #team li:last-child {
    border-bottom-width: 1px;
  }
}
#team li .container {
  max-width: 100rem;
}
@media (min-width: 768px) {
  #team li .container {
    align-items: stretch;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
  }
}
@media (min-width: 768px) {
  #team li:nth-child(even) .container {
    align-items: stretch;
    display: flex;
    flex-flow: row-reverse nowrap;
    justify-content: flex-start;
  }
}
@media (min-width: 768px) {
  #team li:nth-child(3) p {
    margin-right: 15%;
  }
}
#team li .img-wrapper {
  background-color: transparent;
  position: relative;
}
@media (max-width: 767px) {
  #team li .img-wrapper {
    height: 20rem;
    margin-bottom: 3rem;
    margin-inline: auto;
    max-width: 50rem;
  }
  #team li .img-wrapper.count-1 {
    height: 12rem;
  }
  #team li .img-wrapper.count-3 {
    height: 24rem;
  }
}
@media (min-width: 768px) {
  #team li .img-wrapper {
    flex-grow: 1;
  }
}
#team li .img-wrapper img {
  background-color: rgb(var(--color-placeholder));
  border-radius: 50%;
  height: 12rem;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  width: 12rem;
}
#team li .img-wrapper img.joseph {
  left: 55%;
  top: 0;
}
@media (min-width: 768px) {
  #team li .img-wrapper img.joseph {
    left: auto;
    right: 3rem;
    top: -10rem;
  }
}
#team li .img-wrapper img.ari {
  bottom: 0;
  right: 55%;
}
@media (min-width: 768px) {
  #team li .img-wrapper img.ari {
    bottom: -3rem;
    right: 17rem;
  }
}
#team li .img-wrapper img.avi {
  right: 55%;
  top: 0;
}
@media (min-width: 768px) {
  #team li .img-wrapper img.avi {
    left: 4rem;
    right: auto;
    top: -6rem;
  }
}
#team li .img-wrapper img.craig {
  bottom: 0;
  left: 55%;
}
@media (min-width: 768px) {
  #team li .img-wrapper img.craig {
    bottom: -5rem;
    left: 19rem;
  }
}
#team li .img-wrapper img.boris {
  right: 45%;
  top: 0;
}
@media (min-width: 768px) {
  #team li .img-wrapper img.boris {
    right: 6rem;
    top: calc(50% - 6rem);
  }
}
#team li .img-wrapper img.john {
  left: 45%;
  top: 0;
}
@media (min-width: 768px) {
  #team li .img-wrapper img.john {
    left: 3rem;
    top: -3rem;
  }
}
#team li .img-wrapper img.paty {
  left: calc(50% - 6rem);
  top: -9rem;
}
@media (min-width: 768px) {
  #team li .img-wrapper img.paty {
    left: auto;
    top: -10rem;
    right: 8rem;
  }
}
#team li .img-wrapper img.dan {
  left: 1rem;
  top: 4rem;
}
@media (min-width: 768px) {
  #team li .img-wrapper img.dan {
    bottom: -4rem;
    left: auto;
    top: auto;
    right: 18rem;
  }
}
#team li .img-wrapper img.grace {
  bottom: 0;
  right: 0;
}
@media (min-width: 768px) {
  #team li .img-wrapper img.grace {
    bottom: -16rem;
    right: -4rem;
  }
}
@media (min-width: 768px) {
  #team li p {
    max-width: 50rem;
    width: 55%;
  }
}
#team li a {
  color: rgb(var(--color-dark-text));
}

#investing .section-intro h2 {
  margin-bottom: 4rem;
}
@media (min-width: 1025px) {
  #investing .section-intro h2 {
    margin-bottom: 6rem;
  }
}
#investing .callout-list li {
  border-bottom: 1px solid rgb(var(--color-navy-brand));
  font-weight: 300;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
}
#investing .callout-list li:first-child {
  color: rgb(var(--color-aqua));
}
#investing .callout-list li:nth-child(2) {
  color: rgb(var(--color-green));
}
#investing .callout-list li:nth-child(3) {
  color: rgb(var(--color-purple));
}
#investing .callout-list li:last-child {
  color: rgb(var(--color-blue-bright));
}
#investing #investments h3 {
  border-bottom: 1px solid currentColor;
  color: rgb(var(--color-navy-brand));
  display: block;
  font-size: 2rem;
  font-weight: normal;
  letter-spacing: 0.05em;
  margin-inline: auto;
  margin-bottom: 6rem;
  text-transform: uppercase;
  padding-bottom: 0.5rem;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 768px) {
  #investing #investments h3 {
    font-size: 2.3rem;
  }
}
@media (min-width: 1025px) {
  #investing #investments h3 {
    margin-bottom: 9rem;
  }
}
#investing #investments h4 {
  color: rgb(var(--color-navy-brand));
  font-size: 1.6rem;
  font-weight: normal;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
  text-transform: uppercase;
}
@media (min-width: 1025px) {
  #investing #investments h4 {
    font-size: 1.8rem;
    margin-bottom: 3.5rem;
  }
}
#investing #investments ul {
  margin-bottom: 4rem;
}
@media (min-width: 1025px) {
  #investing #investments ul {
    margin-bottom: 7rem;
  }
}
#investing #investments ul:last-child {
  margin-bottom: 0;
}
#investing #investments ul li {
  page-break-inside: avoid;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  margin-bottom: 1.75em;
}
#investing #investments ul li:last-child {
  margin-bottom: 0;
}
#investing div#stories > .container:first-child {
  max-width: none;
}
#investing div#stories > .container:first-child:after {
  background-color: rgb(var(--color-navy-brand));
  content: "";
  display: block;
  height: 1px;
  left: 2rem;
  position: absolute;
  top: 22px;
  width: calc(100% - 4rem);
  z-index: 0;
}
@media (min-width: 768px) {
  #investing div#stories > .container:first-child:after {
    left: 4rem;
    top: 25px;
    width: calc(100% - 8rem);
  }
}
@media (min-width: 1025px) {
  #investing div#stories > .container:first-child:after {
    left: 5rem;
    top: 27px;
    width: calc(100% - 10rem);
  }
}
#investing div#stories h3 {
  background-color: rgb(var(--color-navy-brand));
  border-radius: 5rem;
  color: #E1F406;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 6rem;
  margin-inline: auto;
  position: relative;
  padding: 1.25rem 3rem 1.125rem;
  text-transform: uppercase;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 1;
}
@media (min-width: 768px) {
  #investing div#stories h3 {
    font-size: 2rem;
    padding: 1.5rem 4.5rem 1.25rem;
  }
}
@media (min-width: 1025px) {
  #investing div#stories h3 {
    font-size: 2.3rem;
    margin-bottom: 10rem;
  }
}
#investing div#stories .grid-wrapper {
  row-gap: 6rem;
}

#value .animation-wrapper {
  position: relative;
}
#value .animation-wrapper .img-wrapper {
  position: sticky;
  top: var(--height-header);
}
#value .animation-wrapper .img-wrapper .container {
  z-index: 6;
}
#value .animation-wrapper .img-wrapper .container h3 {
  color: rgb(var(--color-light-text));
  font-size: 3.4rem;
  font-weight: normal;
  letter-spacing: 0.05em;
  margin-bottom: 0;
  margin-top: 2rem;
  opacity: 0;
  text-transform: uppercase;
  transition: opacity 0.3s ease-in-out;
}
@media (min-width: 768px) {
  #value .animation-wrapper .img-wrapper .container h3 {
    font-size: 4.5rem;
    margin-top: 6rem;
    text-align: left;
  }
}
@media (min-width: 1025px) {
  #value .animation-wrapper .img-wrapper .container h3 {
    margin-top: 7rem;
  }
}
#value .animation-wrapper .img-wrapper .container h3.on {
  opacity: 1;
}
#value .animation-wrapper .img-wrapper .container a {
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 100% 2px;
  color: rgb(var(--color-magenta));
  display: block;
  font-size: 1.3rem;
  margin-top: 1rem;
  opacity: 0;
  padding-bottom: 0.125rem;
  position: relative;
  text-decoration: none;
  transition: background-size 0.3s ease-in-out, opacity 0.3s ease-in-out;
  width: -moz-fit-content;
  width: fit-content;
}
html:not(.user-can-touch) #value .animation-wrapper .img-wrapper .container a:hover {
  background-size: 0% 2px;
  text-decoration: none;
}
#value .animation-wrapper .img-wrapper .container a.on {
  opacity: 1;
}
#value .animation-wrapper .img-wrapper picture {
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 0s linear 1.1s;
  top: 0;
  width: 100%;
  z-index: 1;
}
#value .animation-wrapper .img-wrapper picture.active {
  opacity: 1;
  transition: opacity 1s cubic-bezier(0.39, 0.575, 0.565, 1);
  z-index: 2;
}
#value .animation-wrapper .img-wrapper picture:nth-of-type(4):before {
  background-color: rgba(26, 60, 85, 0.55);
  content: "";
  height: 100%;
  left: 0;
  opacity: 1;
  position: absolute;
  top: 0;
  transition: opacity 0.5s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 100%;
  z-index: 1;
}
#value .animation-wrapper .img-wrapper picture:nth-of-type(4).off:before {
  opacity: 0;
}
#value .animation-wrapper > .container {
  pointer-events: none;
}
#value .animation-wrapper > .container li {
  color: rgb(var(--color-light-text));
  height: var(--height-fullscreen);
  font-size: 3.2rem;
  line-height: 1.2;
  margin-inline: auto;
  max-width: 80rem;
  text-align: center;
}
@media (min-width: 768px) {
  #value .animation-wrapper > .container li {
    font-size: 5rem;
    line-height: 1.1;
  }
}
#value .animation-wrapper > .container li:first-child, #value .animation-wrapper > .container li:nth-child(2) {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.1;
}
@media (min-width: 768px) {
  #value .animation-wrapper > .container li:first-child, #value .animation-wrapper > .container li:nth-child(2) {
    font-size: 11rem;
    line-height: 1;
  }
}
#value #outro {
  background-color: white;
  padding-bottom: 0;
  position: relative;
  z-index: 1;
}
#value #outro p {
  margin-bottom: 1.5em;
}
#value #outro p:first-of-type {
  margin-bottom: 20rem;
}
#value #outro p:last-child {
  margin-bottom: 0;
}

body > footer {
  background: linear-gradient(180deg, rgba(226, 240, 248, 0) 0%, rgb(226, 240, 248) 100%);
  border-top: 1px solid white;
  padding-block: 12rem 8rem;
}
@media (min-width: 768px) {
  body > footer {
    padding-bottom: 10rem;
  }
}
@media (min-width: 1025px) {
  body > footer {
    padding-block: 18rem 12rem;
  }
}
@media (min-width: 900px) {
  body > footer .container {
    align-items: center;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
    gap: 5rem;
  }
}
body > footer .logo {
  height: auto;
  width: 6.5rem;
}
@media (min-width: 900px) {
  body > footer .logo {
    width: 7.5rem;
  }
}
body > footer ul {
  border-top: 1px solid rgb(var(--color-navy-brand));
  margin-top: 2rem;
  margin-inline: auto;
  padding-inline: 3rem;
  padding-top: 3rem;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 900px) {
  body > footer ul {
    border-left: 1px solid rgb(var(--color-navy-brand));
    border-top: 0;
    margin: 0;
    padding: 0 0 0 5rem;
  }
}
body > footer ul li {
  color: rgb(var(--color-navy-brand));
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
@media (min-width: 900px) {
  body > footer ul li {
    margin-bottom: 0.5rem;
    text-align: left;
  }
}
@media (min-width: 1025px) {
  body > footer ul li {
    font-size: 1.5rem;
  }
}
body > footer ul li:last-child {
  margin-bottom: 0;
}
body > footer ul li a {
  color: inherit;
  transition: color 0.3s ease-in-out;
}
html:not(.user-can-touch) body > footer ul li a:hover {
  color: rgb(var(--color-magenta));
}

.disclaimer {
  background-color: rgb(var(--color-gray-lt));
  padding: 4rem 2rem;
}
@media (min-width: 768px) {
  .disclaimer {
    padding: 6rem 4rem;
  }
}
@media (min-width: 768px) {
  .disclaimer {
    padding-inline: 5rem;
  }
}
.disclaimer p {
  color: rgb(var(--color-navy-brand));
  font-size: var(--font-size-sm);
  line-height: 1.4;
  margin-bottom: 1em;
}
.disclaimer:last-child {
  margin-bottom: 0;
}

body#stories {
  --color-gray-lt: 216,226,232;
  --color-blue: 140,197,232;
}
@media (min-width: 1025px) {
  body#stories {
    --font-size-lrg: 2.5rem;
  }
}
@media (min-width: 1025px) {
  body#stories {
    --font-size-xl: 3.5rem;
  }
}
body#stories > header {
  transform: translate3d(0, 0, 0);
}
body#stories > header .navbar .container {
  align-items: stretch;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
}
@media (max-width: 767px) {
  body#stories > header .navbar .container {
    padding-inline: 0;
  }
}
body#stories > header .navbar .container a {
  align-self: center;
  background-color: transparent;
  color: rgb(var(--color-aqua));
  align-items: flex-start;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  flex: 0 0 auto;
  font-size: 1.4rem;
  font-weight: bold;
  height: 100%;
  letter-spacing: 0.05em;
  padding-inline: 2rem;
  text-align: left;
  text-transform: uppercase;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
@media (min-width: 768px) {
  body#stories > header .navbar .container a {
    flex: 1 1 25%;
    font-size: 1.5rem;
    padding-inline: 3rem;
  }
}
body#stories > header .navbar .container a.on {
  background-color: rgb(82, 144, 182);
  color: rgb(var(--color-light-text));
}
body#stories > header .navbar .container a span {
  display: contents;
}
body#stories > header .navbar .container button {
  align-self: center;
  background-color: rgb(82, 144, 182);
  color: rgb(var(--color-light-text));
  align-items: center;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  flex: 1 1 auto;
  font-size: 1.4rem;
  font-weight: bold;
  height: 100%;
  letter-spacing: 0.05em;
  padding-inline: 2rem;
  text-align: left;
  text-transform: uppercase;
}
body#stories > header .navbar .container button:after {
  content: "";
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 10px solid rgb(var(--color-light-text));
  transition: transform 0.3s ease-in-out;
  width: 0;
}
body#stories > header .navbar .container button.on:after {
  transform: rotate(180deg);
}
body#stories > header .main-nav li {
  margin-bottom: 5rem;
  text-wrap: balance;
}
body#stories > header .main-nav li:last-child {
  margin-bottom: 0;
}
body#stories > header .main-nav li a {
  color: white;
  font-size: 3rem;
  font-weight: 300;
  transition: color 0.3s ease-in-out;
}
body#stories > header .main-nav li a span {
  border-bottom: 1px solid currentColor;
  color: rgb(var(--color-navy-brand));
  display: block;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  padding-bottom: 0.25rem;
  transition: color 0.3s ease-in-out;
  width: -moz-fit-content;
  width: fit-content;
}
body#stories > header .main-nav li a.on {
  color: rgb(var(--color-aqua));
}
body#stories > header .main-nav li a.on span {
  color: rgb(var(--color-aqua));
}
body#stories main {
  margin-top: var(--height-header);
}
body#stories section:not([class*=bg-]) {
  background-color: white;
}
body#stories .hero {
  min-height: var(--height-fullscreen);
  top: var(--height-header);
}
body#stories .hero .container {
  justify-content: flex-start;
}
@media (min-width: 768px) {
  body#stories .hero .container {
    justify-content: flex-end;
  }
}
body#stories .hero h1 {
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  padding-left: 0.5rem;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  body#stories .hero h1 {
    font-size: 2.2rem;
    justify-content: flex-end;
    margin-bottom: 2rem;
  }
}
@media (min-width: 1025px) {
  body#stories .hero h1 {
    font-size: 2.5rem;
  }
}
body#stories .hero h2 {
  color: white;
  font-size: 5rem;
  margin-bottom: 0;
  text-wrap: balance;
}
@media (min-width: 768px) {
  body#stories .hero h2 {
    font-size: 6rem;
    width: 75%;
  }
}
@media (min-width: 1025px) {
  body#stories .hero h2 {
    font-size: 7.2rem;
  }
}
body#stories .intro p {
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 768px) {
  body#stories .intro p {
    font-size: 4rem;
    width: 75%;
  }
}
@media (min-width: 1025px) {
  body#stories .intro p {
    font-size: 5rem;
  }
}
body#stories .text-green {
  color: rgb(89, 159, 140);
}
body#stories .grid-wrapper {
  margin-block: var(--spacing-section-vert);
}
@media (min-width: 768px) {
  body#stories .grid-wrapper {
    gap: 3rem;
  }
}
body#stories .grid-wrapper .card {
  background: linear-gradient(222deg, rgb(128, 172, 160) 0%, rgb(167, 196, 121) 100%);
  min-height: 15rem;
}
@media (min-width: 768px) {
  body#stories .grid-wrapper .card {
    min-height: 0;
  }
}
body#stories .map {
  display: block;
  height: auto;
  margin-inline: auto;
  margin-top: calc(var(--spacing-section-vert));
  max-width: 84rem;
  width: 100%;
}
@media (min-width: 1280px) {
  body#stories .map {
    margin-top: calc(var(--spacing-section-vert) * 1.5);
  }
}
body#stories .map .new path {
  opacity: 0;
  transition: opacity 1s ease-out;
  will-change: opacity;
}
body#stories .map .new path:nth-child(4n-3) {
  transition-delay: 0.5s;
}
body#stories .map .new path:nth-child(4n-2) {
  transition-delay: 1s;
}
body#stories .map .new path:nth-child(4n-1) {
  transition-delay: 1.5s;
}
body#stories .map.on .new path {
  opacity: 1;
}
body#stories .stats {
  align-items: stretch;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  row-gap: 0;
}
body#stories .stats li {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 0;
  padding-block: 3rem;
  line-height: 1.3;
  width: 100%;
}
@media (min-width: 768px) {
  body#stories .stats li {
    padding-block: 4rem 5rem;
  }
}
@media (min-width: 900px) {
  body#stories .stats li {
    font-size: 2.4rem;
  }
}
@media (min-width: 1025px) {
  body#stories .stats li {
    font-size: 3rem;
    padding-block: 6rem 8rem;
  }
}
body#stories .stats li:not(:last-child) {
  border-bottom: 1px solid rgb(var(--color-navy-brand));
}
body#stories .stats li em {
  color: white;
  display: block;
  font-size: 8rem;
  font-style: normal;
  line-height: 1;
  margin-bottom: 1.5rem;
  width: 100%;
}
@media (min-width: 900px) {
  body#stories .stats li em {
    font-size: 10rem;
  }
}
@media (min-width: 1025px) {
  body#stories .stats li em {
    font-size: 12rem;
    margin-bottom: 2rem;
  }
}
@media (min-width: 1280px) {
  body#stories .stats li em {
    font-size: 15rem;
  }
}
body#stories .callout-list {
  margin-inline: auto;
  margin-top: var(--spacing-section-vert);
  max-width: 84rem;
}
body#stories .callout-list li {
  letter-spacing: 0.05em;
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  text-align: center;
  text-transform: uppercase;
}
body#stories .callout-list li:not(:last-child) {
  border-bottom: 1px solid rgb(var(--color-navy-brand));
}
body#stories .callout-list li:first-child {
  color: rgb(var(--color-aqua));
}
body#stories .callout-list li:nth-child(2) {
  color: rgb(var(--color-green));
}
body#stories .callout-list li:nth-child(3) {
  color: rgb(var(--color-purple));
}
body#stories .vid-wrapper {
  margin-block: var(--spacing-section-vert);
}
body#stories blockquote {
  color: rgb(var(--color-purple));
  margin-inline: auto;
  max-width: 84rem;
  position: relative;
  text-align: center;
}
@media (min-width: 768px) {
  body#stories blockquote {
    padding-inline: 3rem;
  }
}
body#stories blockquote .quotation-marks {
  display: block;
  fill: currentColor;
  height: auto;
  margin-inline: auto;
  width: 2.7rem;
}
@media (min-width: 768px) {
  body#stories blockquote .quotation-marks {
    position: absolute;
    top: -1rem;
  }
}
body#stories blockquote .quotation-marks.open {
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  body#stories blockquote .quotation-marks.open {
    margin-bottom: 0;
    left: 0;
  }
}
body#stories blockquote .quotation-marks.close {
  margin-top: 3rem;
}
@media (min-width: 768px) {
  body#stories blockquote .quotation-marks.close {
    margin-top: 0;
    right: 0;
  }
}
body#stories blockquote p {
  color: inherit;
  font-size: 2.5rem;
  margin-bottom: 1em;
}
@media (min-width: 1025px) {
  body#stories blockquote p {
    font-size: 2.7rem;
    margin-bottom: 2em;
  }
}
body#stories blockquote cite {
  display: block;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  margin-inline: auto;
  max-width: 54rem;
  text-transform: uppercase;
}
@media (min-width: 1025px) {
  body#stories blockquote cite {
    font-size: 1.7rem;
  }
}
body#stories blockquote cite:before {
  background-color: rgb(var(--color-dark-text));
  content: "";
  display: block;
  height: 1px;
  margin-bottom: 3rem;
  margin-inline: auto;
  width: 6rem;
}
body#stories blockquote a {
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 100% 2px;
  color: rgb(var(--color-magenta));
  display: block;
  font-size: 1.3rem;
  margin-inline: auto;
  margin-top: 3rem;
  padding-bottom: 0.125rem;
  position: relative;
  text-decoration: none;
  transition: background-size 0.3s ease-in-out;
  width: -moz-fit-content;
  width: fit-content;
}
html:not(.user-can-touch) body#stories blockquote a:hover {
  background-size: 0% 2px;
  text-decoration: none;
}
body#stories .logo {
  height: auto;
  margin-inline: auto;
  margin-top: calc(var(--spacing-section-vert) * 1.5);
  width: 75%;
}
body#stories .logo + a {
  display: block;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  margin-inline: auto;
  margin-top: 5rem;
  width: -moz-fit-content;
  width: fit-content;
  text-transform: uppercase;
}
body#stories section.animation-wrapper {
  background-color: transparent;
  position: relative;
}
body#stories section.animation-wrapper .img-wrapper {
  position: sticky;
  top: var(--height-header);
  z-index: -1;
}
body#stories section.animation-wrapper .img-wrapper picture {
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 0s linear 1.1s;
  top: 0;
  width: 100%;
  z-index: 1;
}
body#stories section.animation-wrapper .img-wrapper picture.active {
  opacity: 1;
  transition: opacity 1s cubic-bezier(0.39, 0.575, 0.565, 1);
  z-index: 2;
}
body#stories section.animation-wrapper li {
  color: rgb(var(--color-light-text));
  align-items: center;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  height: var(--height-fullscreen);
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.3;
  margin-inline: auto;
  max-width: 69rem;
  text-align: center;
}
@media (min-width: 768px) {
  body#stories section.animation-wrapper li {
    font-size: 4rem;
  }
}
body#stories section.animation-wrapper li em {
  display: block;
  font-size: 8rem;
  font-style: normal;
  font-weight: 300;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  body#stories section.animation-wrapper li em {
    font-size: 10rem;
  }
}
@media (min-width: 1025px) {
  body#stories section.animation-wrapper li em {
    font-size: 13rem;
  }
}
body#stories section.animation-wrapper li .note {
  display: block;
  font-size: 1.2rem;
  margin-top: 6rem;
  margin-inline: auto;
  max-width: 48rem;
}
@media (min-width: 768px) {
  body#stories section.animation-wrapper li .note {
    font-size: 1.6rem;
    margin-top: 10rem;
  }
}
@media (min-width: 1025px) {
  body#stories section.animation-wrapper li .note {
    margin-top: 12rem;
  }
}
body#stories #avantik .stats {
  margin-top: var(--spacing-section-vert);
}
@media (min-width: 768px) {
  body#stories #avantik .stats li {
    align-items: flex-end;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    -moz-column-gap: 6rem;
         column-gap: 6rem;
  }
}
@media (min-width: 768px) {
  body#stories #avantik .stats li em {
    flex: 0 0 calc(50% - 3rem);
    margin-bottom: -1rem;
    text-align: right;
  }
}
@media (min-width: 1025px) {
  body#stories #avantik .stats li em {
    margin-bottom: -1.5rem;
  }
}
body#stories #avantik blockquote {
  margin-top: var(--spacing-section-vert);
}
body#stories #avantik .logo {
  max-width: 35rem;
}
@media (min-width: 768px) {
  body#stories #compliance .files.banner {
    background-position: -25% 85%, 125% 74%;
    background-color: white;
    background-image: url(../img/water-street-ar23-story-compliance-banner-challenge-bg1.jpg), url(../img/water-street-ar23-story-compliance-banner-challenge-bg2.jpg);
    background-repeat: no-repeat;
    background-size: 45vw auto;
    padding-block: 0 25vw;
  }
  body#stories #compliance .files.banner .img-wrapper {
    display: none;
  }
}
body#stories #compliance p + picture {
  margin-top: var(--spacing-section-vert);
}
body#stories #compliance blockquote {
  color: rgb(var(--color-navy-brand));
}
body#stories #compliance .logo {
  max-width: 26rem;
}
body#stories #discovery .logo {
  max-width: 25rem;
}
@media (min-width: 768px) {
  body#stories #discovery .banner.lab {
    padding-top: 25vw;
  }
}
body#stories #discovery .stats {
  align-items: stretch;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
}
@media (min-width: 768px) {
  body#stories #discovery .stats li {
    padding: 0 5rem;
    width: 50%;
  }
  body#stories #discovery .stats li:not(:last-child) {
    border-bottom: none;
  }
}
@media (min-width: 1025px) {
  body#stories #discovery .stats li {
    padding-inline: 10rem;
  }
}
@media (min-width: 768px) {
  body#stories #discovery .stats li:nth-child(odd) {
    border-right: 1px solid rgb(var(--color-navy-brand));
  }
}
body#stories #discovery blockquote {
  color: rgb(var(--color-blue));
}
body#stories #discovery .grid-wrapper {
  margin-bottom: calc(var(--spacing-section-vert) * 2);
}

@media print {
  * {
    background-color: transparent !important;
    background-image: none !important;
    color: black !important;
  }
}/*# sourceMappingURL=main.css.map */