@charset "UTF-8";
.primary-blue {
  color: #003E52;
}

.bg-primary-blue {
  background-color: #003E52;
}

.primary-green {
  color: #748F80;
}

.bg-tint-green-90 {
  background-color: #829A8D;
}

.tint-blue-10 {
  color: #E5ECEE;
}

.tint-blue-20 {
  color: #CCD8DC;
}

.bg-tint-blue-10 {
  background-color: #E5ECEE;
}

.tint-blue-60 {
  color: #668B97;
}

.tint-green-40 {
  color: #C7D2CC;
}

.tint-green-60 {
  color: #ACBCB3;
}

.bg-abalone {
  background-color: #007096;
}

.bg-fin-fish {
  background-color: #BDCAC5;
}

.bg-lobster {
  background-color: #863929;
}

.bg-oyster {
  background-color: #9EB9CB;
}

.bg-wild-abalone {
  background-color: #002234;
}

@keyframes spin-in {
  from {
    transform: rotate(90deg);
  }
  to {
    transform: rotate(0deg);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes videoSlideIn {
  0% {
    opacity: 0;
    transform: translateY(25%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeSlideInRight {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideUpY {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes imageSlideUpY {
  0% {
    opacity: 0;
    transform: translateY(50%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes indicatorSlideIn {
  0% {
    opacity: 0;
    transform: translateX(-500px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.indicatorSlideIn {
  animation-name: indicatorSlideIn;
  animation-duration: 1500ms;
  animation-fill-mode: both;
  animation-timing-function: ease-in-out;
}

.fadein {
  animation-name: fadeIn;
  animation-duration: 750ms;
  animation-fill-mode: both;
  animation-timing-function: ease-in-out;
}

.fadeout {
  animation-name: fadeOut;
  animation-duration: 750ms;
  animation-fill-mode: both;
  animation-timing-function: ease-in-out;
}

.videoSlideIn {
  animation-name: videoSlideIn;
  animation-duration: 750ms;
  animation-fill-mode: both;
  animation-timing-function: ease-in-out;
}

.fadeSlideIn {
  animation-name: fadeSlideIn;
  animation-duration: 1.5s;
  animation-fill-mode: both;
  animation-timing-function: ease-in-out;
}

.fadeSlideInRight {
  animation-name: fadeSlideInRight;
  animation-duration: 1.5s;
  animation-fill-mode: both;
  animation-timing-function: ease-in-out;
}

.slideUpY {
  animation-name: slideUpY;
  animation-duration: 750ms;
  animation-fill-mode: both;
  animation-timing-function: ease-in-out;
}

.imageSlideUpY {
  animation-name: imageSlideUpY;
  animation-duration: 750ms;
  animation-fill-mode: both;
  animation-timing-function: ease-in-out;
}

main > .blue-frame .chapter,
main > .bg-tint-green-10 .chapter,
main > .stats-wrapper .chapter,
main > .chapter {
  font-family: "Noe Display", sans-serif;
  padding: 0 1.5625rem;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 3.125rem;
  margin: 0 0 2.5rem 0;
  text-align: center;
}
main > .blue-frame .chapter em,
main > .bg-tint-green-10 .chapter em,
main > .stats-wrapper .chapter em,
main > .chapter em {
  font-family: "Brown", sans-serif;
  font-weight: 200;
  font-style: normal;
}
@media screen and (min-width: 920px) {
  main > .blue-frame .chapter,
main > .bg-tint-green-10 .chapter,
main > .stats-wrapper .chapter,
main > .chapter {
    padding: 0;
    margin-bottom: 4rem;
  }
}

p.before-download {
  margin-bottom: 4.3125rem;
}

.download strong,
.download span {
  display: block;
}
.download strong {
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.download span {
  line-height: 1.75rem;
}
.download a {
  transition: 0.2s;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1rem;
  line-height: 1.25rem;
  text-decoration: none;
  transition: 0.2s;
}
.download a:hover svg circle {
  fill: #668B97;
  transition: 0.2s;
}
.download a:hover svg circle.strokeable {
  stroke: #668B97;
  transition: 0.2s;
}
.download a:hover {
  color: #668B97;
}
.download a:hover strong {
  text-decoration: underline;
}
.download svg {
  flex-shrink: 0;
  height: 2rem;
  width: 2rem;
}
.download + .download {
  margin-top: 2.5rem;
}

.image-w-text,
.quote-w-image,
.video-w-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
}
@media screen and (min-width: 920px) {
  .image-w-text,
.quote-w-image,
.video-w-text {
    flex-direction: row;
    gap: 0;
    justify-content: space-between;
  }
}

.link-button {
  align-items: center;
  display: flex;
  flex-direction: row;
  font-size: 1rem;
  justify-content: flex-start;
  margin-top: 1.125rem;
  text-decoration: none;
  transition: 0.2s;
}
.link-button:hover svg circle {
  fill: #668B97;
  transition: 0.2s;
}
.link-button:hover svg circle.strokeable {
  stroke: #668B97;
  transition: 0.2s;
}
.link-button span {
  font-weight: bold;
  letter-spacing: 2px;
  margin-left: 0.625rem;
  text-transform: uppercase;
}
.link-button:hover {
  transition: 0.2s;
}
.link-button:hover span {
  color: #668B97;
  text-decoration: underline;
}
.link-button.external svg {
  transform: rotate(-45deg);
}

.image-w-text,
.quote-w-image,
.video-w-text {
  align-items: center;
  overflow: hidden;
}
.image-w-text h3,
.quote-w-image h3,
.video-w-text h3 {
  font-size: 1.75rem;
  line-height: 2.25rem;
}
.image-w-text blockquote,
.quote-w-image blockquote,
.video-w-text blockquote {
  margin: 0;
}
.image-w-text .video,
.quote-w-image .video,
.video-w-text .video {
  cursor: pointer;
  margin-bottom: 1.875rem;
  position: relative;
}
@media screen and (min-width: 920px) {
  .image-w-text .video,
.quote-w-image .video,
.video-w-text .video {
    margin-bottom: 0;
  }
}
.image-w-text .video button,
.quote-w-image .video button,
.video-w-text .video button {
  height: 5rem;
  margin-bottom: 0;
  width: 5rem;
}
@media screen and (min-width: 920px) {
  .image-w-text h3,
.quote-w-image h3,
.video-w-text h3 {
    font-size: 2.5rem;
    line-height: 3.25rem;
  }
  .image-w-text .video,
.quote-w-image .video,
.video-w-text .video {
    max-width: 42.25rem;
  }
  .image-w-text .text,
.quote-w-image .text,
.video-w-text .text {
    max-width: 27.5rem;
  }
}

.image-w-text .number {
  font-family: "Noe Display", sans-serif;
  font-weight: 700;
}
.image-w-text img {
  opacity: 0;
}
.image-w-text p.citation {
  margin: 1rem 0 0 0;
}
@media screen and (min-width: 920px) {
  .image-w-text p.citation {
    margin-top: 1.25rem;
  }
}
.image-w-text p.citation-typography {
  color: #668B97;
  margin: 1rem 0 0 0;
}
@media screen and (min-width: 920px) {
  .image-w-text .number {
    font-size: 5rem;
    line-height: 5rem;
    margin-bottom: 1.25rem;
  }
  .image-w-text .image {
    max-width: 36rem;
  }
  .image-w-text .text {
    max-width: 33.75rem;
  }
}
@media screen and (min-width: 920px) {
  .image-w-text.large .image {
    max-width: 42.25rem;
  }
  .image-w-text.large .text {
    max-width: 27.5rem;
  }
}
@media screen and (min-width: 920px) {
  .image-w-text.reverse {
    flex-direction: row-reverse;
  }
}

.quote-w-image .quote {
  text-align: left;
}
@media screen and (min-width: 920px) {
  .quote-w-image .quote {
    max-width: 33.75rem;
  }
}
@media screen and (min-width: 920px) {
  .quote-w-image > img,
.quote-w-image > div {
    max-width: 36rem;
  }
}

.scholarships {
  margin-bottom: 0;
}
.scholarships .row {
  align-items: flex-start;
  display: flex;
  flex-direction: row;
  gap: 2rem;
  justify-content: flex-start;
}
.scholarships .row .image {
  max-width: 6.25rem;
  min-width: 6.25rem;
  height: auto;
}
.scholarships .row .content h4 {
  font-family: "Noe Display", sans-serif;
  font-size: 1.5rem;
  line-height: 2rem;
}
@media screen and (min-width: 920px) {
  .scholarships .row .content {
    max-width: 35.25rem;
  }
}
.scholarships .row:last-child {
  border-top: 1px solid #CCD8DC;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
}

hr.brackets, hr.light, hr.triangular {
  background-position-x: center;
  background-repeat: no-repeat;
  background-size: auto 1.875rem;
  border: none;
  height: 1.875rem;
  margin: 3.75rem 0;
}
@media (min-width: 920px) {
  hr.brackets, hr.light, hr.triangular {
    background-size: contain;
    background-size: auto 1.875rem;
    height: 1.875rem;
    margin: 6.25rem 0;
  }
}
hr.brackets {
  background-image: url("/2021/images/dividers/brackets-mobile.svg");
}
@media (min-width: 920px) {
  hr.brackets {
    background-image: url("/2021/images/dividers/brackets.svg");
  }
}
hr.light {
  background-image: url("/2021/images/dividers/light.svg");
  background-size: auto 0.9375rem;
  height: 0.9375rem;
}
hr.triangular {
  background-image: url("/2021/images/dividers/triangular.svg");
}
.blue-frame hr.brackets, .blue-frame hr.triangular {
  background-position-y: center;
}
@media (min-width: 920px) {
  .blue-frame hr.brackets, .blue-frame hr.triangular {
    margin: 0;
    padding: 6.25rem 0;
  }
}
.blue-frame hr.brackets {
  background-image: url("/2021/images/dividers/brackets-white.svg");
}

@media screen and (min-width: 920px) {
  .financials > h3 {
    max-width: 48.75rem;
  }
}

main > .bg-tint-green-10.governance {
  padding-top: 6.25rem;
  position: relative;
}
main > .bg-tint-green-10.governance > .brackets {
  margin-top: 0;
}
main > .bg-tint-green-10.governance h3 {
  color: #4C7886;
  margin: 0 0 2.5rem 0;
}
@media screen and (min-width: 920px) {
  main > .bg-tint-green-10.governance h3 {
    margin: 0 0 5rem 0;
  }
}
main > .bg-tint-green-10.governance h3 em {
  color: #668B97;
  font-weight: normal;
}

.attendance {
  padding: 0 1.5625rem;
  margin-bottom: 3.75rem;
  overflow-x: auto;
}
@media screen and (min-width: 920px) {
  .attendance {
    padding: 0;
    margin-bottom: 7.5rem;
  }
}
.attendance table {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1rem;
  margin: 0 auto;
  min-width: 61rem;
}
@media screen and (min-width: 920px) {
  .attendance table {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1200px) {
  .attendance table {
    max-width: 73.5rem;
  }
}
.attendance table tr {
  border-top: 1px solid #003E52;
}
.attendance table tr td {
  padding: 5px 0;
  text-align: center;
}
@media screen and (min-width: 920px) {
  .attendance table tr td {
    padding: 8px 0;
  }
}
.attendance table tr.header, .attendance table tr.sub-heading {
  border: none;
}
.attendance table tr.header {
  font-weight: bold;
}
@media screen and (min-width: 920px) {
  .attendance table tr.header {
    font-size: 1.125rem;
    line-height: 1.5rem;
  }
}
.attendance table tr.header td {
  padding-bottom: 10px;
  vertical-align: top;
}
.attendance table tr.sub-heading {
  font-weight: 400;
}
@media screen and (min-width: 920px) {
  .attendance table tr.sub-heading {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
.attendance table tr.sub-heading td {
  background-color: #efefef;
  border-left: 1px solid #003E52;
  border-top: 1px solid #003E52;
  text-align: center;
}
.attendance table tr.sub-heading td.no-border {
  background-color: transparent;
  border-left: 0;
}
.attendance table tr.sub-heading td:first-child {
  background-color: transparent;
  border-top: none;
}
.attendance table tr.row td {
  border-left: 1px solid #003E52;
}
.attendance table tr.row td:first-child, .attendance table tr.sub-heading td:first-child {
  border-left: none;
  text-align: left;
}
.attendance table tr:last-child {
  border-bottom: 2px solid #003E52;
}

.directory.profiles .row .profile {
  align-items: flex-start;
}
@media screen and (min-width: 920px) {
  .directory.profiles .row .profile {
    max-width: unset;
    width: 16.625rem;
  }
}
.directory .profile {
  width: 100%;
}
.directory h4 {
  font-family: "Noe Display", sans-serif;
  font-size: 1.5rem;
  line-height: 2rem;
  margin-bottom: 0;
  width: 100%;
}
.directory p {
  margin-top: 0;
}
.directory hr {
  border-top: 1px solid #CCD8DC;
  height: 1px;
  margin: 1rem 0 2.5rem 0;
  width: 100%;
}

.link-to-home {
  display: flex;
  justify-content: center;
  margin: 0 auto 3.75rem auto;
  text-align: center;
}
@media screen and (min-width: 920px) {
  .link-to-home {
    margin-bottom: 6.25rem;
  }
}

.highlights {
  padding: 0 1.5625rem;
  border-top: 1px solid #CCD8DC;
  max-width: 61rem;
  padding-top: 1.5rem;
}
@media screen and (min-width: 1200px) {
  .highlights {
    padding-left: 0;
    padding-right: 0;
  }
}
.highlights .chart {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
@media screen and (min-width: 920px) {
  .highlights .chart {
    flex-direction: row;
    margin-bottom: 5rem;
  }
}
.highlights .donut {
  height: 18.75rem;
  margin-right: 0;
  width: 18.75rem;
}
@media screen and (min-width: 920px) {
  .highlights .donut {
    height: 23.625rem;
    margin-right: 3.75rem;
    width: 23.625rem;
  }
}
.highlights .donut canvas {
  height: 18.75rem;
  width: 18.75rem;
}
@media screen and (min-width: 920px) {
  .highlights .donut canvas {
    height: 23.625rem;
    width: 23.625rem;
  }
}
.highlights .bar {
  height: 17.6875rem;
  width: 18.75rem;
}
@media screen and (min-width: 920px) {
  .highlights .bar {
    height: 23.625rem;
    width: 25rem;
  }
}
.highlights .bar canvas {
  height: 17.6875rem;
  width: 18.75rem;
}
@media screen and (min-width: 920px) {
  .highlights .bar canvas {
    height: 23.625rem;
    width: 25rem;
  }
}
.highlights .legend {
  font-size: 1rem;
  margin-left: 1.875rem;
  margin-top: 1.875rem;
  width: 300px;
}
@media screen and (min-width: 920px) {
  .highlights .legend {
    margin-left: 3.75rem;
    margin-top: 0;
  }
}
.highlights .legend .label {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  margin-bottom: 1rem;
}
.highlights .legend .label p {
  line-height: 1.25rem;
  margin: 0;
}
.highlights .legend .point {
  border-radius: 100%;
  height: 1.3125rem;
  margin-right: 1rem;
  width: 1.3125rem;
}
.highlights .two-by-charts .row {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 920px) {
  .highlights .two-by-charts .row {
    flex-direction: row;
    justify-content: space-between;
  }
}
.highlights .two-by-charts .row .column {
  border-top: 1px solid #CCD8DC;
  padding-top: 1.5rem;
}
@media screen and (min-width: 920px) {
  .highlights .two-by-charts .row .column {
    width: 29.75rem;
  }
}
.highlights .two-by-charts .row .column p {
  margin: 0 0 1.5rem 0;
  text-align: center;
}
@media screen and (min-width: 920px) {
  .highlights .two-by-charts .row .column p {
    text-align: left;
  }
}

.image-block {
  font-size: 1.5rem;
  overflow: hidden;
  padding: 5rem 8.4375rem;
  margin: 0 auto;
}

.floating-images {
  align-items: center;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
@media screen and (min-width: 920px) {
  .floating-images {
    padding: 0 1.5625rem;
    align-items: flex-start;
    flex-direction: row;
    gap: 1rem;
    justify-content: space-between;
    margin: 0 auto 5rem auto;
    max-width: 73.5rem;
  }
}
@media screen and (min-width: 1200px) {
  .floating-images {
    gap: 0;
    padding: 0;
  }
}
.floating-images .column {
  max-width: 50%;
}
.floating-images .column img {
  opacity: 0;
}
.floating-images .column span {
  color: #668B97;
  font-size: 0.875rem;
  font-style: italic;
  letter-spacing: 2px;
  text-transform: uppercase;
}
@media screen and (min-width: 920px) {
  .floating-images .column span {
    line-height: 3rem;
  }
}
.floating-images .column.portrait {
  max-width: 64%;
}
@media screen and (min-width: 920px) {
  .floating-images .column.portrait {
    max-width: 36rem;
  }
}
.floating-images .column.landscape {
  max-width: calc(100% - 2 * 1.5625rem);
}
@media screen and (min-width: 920px) {
  .floating-images .column.landscape {
    max-width: 29.75rem;
  }
}
.floating-images .column.landscape:first-child {
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 920px) {
  .floating-images .column.landscape:first-child {
    margin-bottom: 0;
  }
}
.floating-images.portrait-landscape .column.portrait {
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 920px) {
  .floating-images.portrait-landscape .column.portrait {
    margin-bottom: 7.5rem;
  }
}
@media screen and (min-width: 920px) {
  .floating-images.portrait-landscape .column.landscape {
    align-self: flex-end;
  }
}
.floating-images.portrait-portrait .column.portrait:first-child {
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 920px) {
  .floating-images.portrait-portrait .column.portrait:first-child {
    margin-bottom: 17.1875rem;
  }
}
@media screen and (min-width: 920px) {
  .floating-images.portrait-portrait .column.portrait:last-child {
    align-self: flex-end;
  }
}
.floating-images.landscape-portrait .column.landscape {
  margin-bottom: 1rem;
}
@media screen and (min-width: 920px) {
  .floating-images.landscape-portrait .column.landscape {
    max-width: 32.875rem;
  }
}
@media screen and (min-width: 1200px) {
  .floating-images.landscape-portrait .column.landscape {
    max-width: 42.25rem;
  }
}
@media screen and (min-width: 920px) {
  .floating-images.landscape-portrait .column.portrait {
    padding-top: 2rem;
    max-width: 20.5625rem;
  }
}
@media screen and (min-width: 1200px) {
  .floating-images.landscape-portrait .column.portrait {
    padding-top: 4rem;
    max-width: 23.6875rem;
  }
}
@media screen and (min-width: 920px) {
  .floating-images.landscape-landscape .column.landscape:first-child {
    max-width: 32.875rem;
  }
}
@media screen and (min-width: 1200px) {
  .floating-images.landscape-landscape .column.landscape:first-child {
    max-width: 36rem;
  }
}
@media screen and (min-width: 920px) {
  .floating-images.landscape-landscape .column.landscape:last-child {
    padding-top: 0.5rem;
    max-width: 26.625rem;
  }
}
@media screen and (min-width: 1200px) {
  .floating-images.landscape-landscape .column.landscape:last-child {
    max-width: 29.75rem;
    padding-top: 11.125rem;
  }
}
@media screen and (min-width: 920px) {
  .floating-images.landscape-landscape.reverse {
    flex-direction: row-reverse;
  }
}
.floating-images.landscape-landscape.min-top-margin .column.landscape:last-child {
  padding-top: 1.25rem;
}
@media screen and (min-width: 920px) {
  .floating-images.landscape-landscape.landscape-alt .column.landscape:first-child {
    max-width: 26.625rem;
    padding-top: 2rem;
  }
}
@media screen and (min-width: 1200px) {
  .floating-images.landscape-landscape.landscape-alt .column.landscape:first-child {
    max-width: 29.75rem;
    padding-top: 2rem;
  }
}
.floating-images.landscape-landscape.landscape-alt .column.landscape:last-child {
  max-width: 36rem;
  padding-top: 0;
}

.inline-images {
  background-repeat: no-repeat;
  background-position-x: right;
  background-position-y: top;
}
.inline-images.sliding img {
  opacity: 0;
}
.inline-images.watermark-1 {
  background-image: url("/2021/images/watermarks/bg-inline-images-pattern-01.svg");
}
.inline-images.watermark-2 {
  background-image: url("/2021/images/watermarks/oyster_blue-1-min.png");
  background-size: 33.875rem 33.4375rem;
}
.inline-images.watermark-3 {
  background-image: url("/2021/images/watermarks/mist-min.png");
  background-position-y: 20%;
  background-size: 36.5625rem 24.125rem;
}
.inline-images.watermark-4 {
  background-image: url("/2021/images/watermarks/fin-fish-blue-1.svg");
  background-position-y: 30%;
}
@media screen and (min-width: 920px) {
  .inline-images {
    margin-top: -2rem;
    padding-top: 2rem;
  }
}

.inline-image {
  overflow: hidden;
}
.inline-image .citation {
  font-family: "Brown", sans-serif;
  font-style: italic;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  line-height: 1.25rem;
  text-transform: uppercase;
  color: #668B97;
}

.image-group {
  font-size: 1.125rem;
  margin: 5rem 145px;
  position: relative;
}
@media screen and (min-width: 1200px) {
  .image-group .background {
    background-image: url("/2021/images/backgrounds/device.svg");
    background-repeat: no-repeat;
    background-position-x: 15.3125rem;
    background-position-y: 16.5625rem;
    background-size: 434px 1014px;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
  }
  .image-group img {
    width: 30.75rem;
  }
  .image-group .image-text,
.image-group .text-image {
    height: 30.8125rem;
    margin-bottom: 2.25rem;
  }
  .image-group .image-text .content {
    margin-left: 3.1875rem;
  }
  .image-group .text-image .content {
    margin-right: 3.1875rem;
  }
  .image-group .content {
    width: 25rem;
  }
}
@media screen and (min-width: 1400px) {
  .image-group .background {
    background-image: url("/2021/images/backgrounds/device.svg");
    background-repeat: no-repeat;
    background-position-x: 18rem;
    background-position-y: 19.5rem;
    background-size: 510px 1193px;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
  }
  .image-group img {
    width: 36.1875rem;
  }
  .image-group .image-text,
.image-group .text-image {
    height: 36.25rem;
    margin-bottom: 2.625rem;
  }
  .image-group .image-text .content {
    margin-left: 3.75rem;
  }
  .image-group .text-image .content {
    margin-right: 3.75rem;
  }
  .image-group .content {
    width: 29.4375rem;
  }
  .image-group h3 {
    font-size: 1.75rem;
    line-height: 2.25rem;
  }
}
@media screen and (min-width: 1400px) and (min-width: 920px) {
  .image-group h3 {
    font-size: 2.5rem;
    line-height: 3.125rem;
  }
}
@media screen and (min-width: 1400px) {
  .image-group ul {
    line-height: 2rem;
    padding-top: 0.5rem;
  }
  .image-group ul li {
    padding: 0 0 0 0;
  }
}

.slider {
  margin-bottom: 3.125rem;
}
@media screen and (min-width: 920px) {
  .slider {
    margin-bottom: 6.25rem;
  }
}
.slider .container {
  margin-left: 2rem;
  width: calc(100vw - 2rem);
}
@media screen and (min-width: 920px) {
  .slider .container {
    margin-left: 0;
    max-width: 73.5rem;
  }
}
@media screen and (min-width: 1200px) {
  .slider .container {
    margin-right: -14rem;
    max-width: 73.5rem;
  }
}
.slider .flickity-slider {
  width: 100%;
}
@media screen and (min-width: 920px) {
  .slider .flickity-slider {
    width: 100%;
  }
}
.slider .flickity-page-dots {
  margin-bottom: 2rem;
  position: relative;
  width: 85%;
}
@media screen and (min-width: 1200px) {
  .slider .flickity-page-dots {
    padding-top: 1.5rem;
    width: 59.5rem;
  }
}
.slider .flickity-page-dots .dot {
  border-radius: 0;
  background-color: #E5ECEE;
  height: 2px;
  width: 33.333%;
  margin: 0;
  opacity: 1;
}
.slider .flickity-page-dots .dot.is-selected {
  background-color: #99B2BA;
}

.slides {
  background-image: url("/2021/images/backgrounds/tides_white-min.png");
  background-repeat: no-repeat;
  background-position: center center;
  height: 50rem;
  padding: 0 7rem;
  margin-bottom: 7.5rem;
  margin-top: 7.5rem;
  max-width: none;
  width: 100%;
}
.slides .slide {
  font-family: "Noe Display", sans-serif;
  position: relative;
}
.slides .slide .title {
  bottom: -3.75rem;
  font-size: 6.25rem;
  font-weight: bold;
  left: 0;
  line-height: 1;
  padding-left: 1rem;
  position: absolute;
}
.slides .slide .title:before {
  content: "—";
}
.slides .slide .title span {
  color: #CCD8DC;
  display: inline-block;
  margin-left: 2.5rem;
}

.hyphenated:before {
  content: "—";
  padding-right: 1rem;
}

.flickity-viewport {
  background-image: url("/2021/images/backgrounds/tides_white-min.png");
  background-repeat: no-repeat;
  background-position: center center;
  height: 45vw !important;
}
@media screen and (min-width: 920px) {
  .flickity-viewport {
    height: 33.5rem !important;
  }
}

.flickity-slider .slide {
  font-size: 0;
  line-height: 0;
  margin-left: 5%;
  width: 85%;
}
@media screen and (min-width: 920px) {
  .flickity-slider .slide {
    margin-left: 0;
    margin-right: 3.5rem;
    width: 59.5rem;
  }
}
.flickity-slider .slide button.play {
  bottom: 1.5rem;
  left: 1.5rem;
}
@media screen and (min-width: 920px) {
  .flickity-slider .slide button.play {
    bottom: 2.5rem;
    left: 2.5rem;
  }
}

.inline-statistic {
  margin: 0 auto 2.5rem auto;
  max-width: 61rem;
}
@media screen and (min-width: 920px) {
  .inline-statistic {
    padding: 0 1.5625rem;
    display: flex;
    align-items: flex-start;
    gap: 3.125rem;
    flex-direction: row-reverse;
    margin-bottom: 5rem;
  }
}
@media screen and (min-width: 1200px) {
  .inline-statistic {
    padding: 0;
  }
}
.inline-statistic p {
  margin: 0;
  max-width: 34.375rem;
}
.inline-statistic .statistic {
  color: #668B97;
  overflow: hidden;
  width: 100%;
}
@media screen and (min-width: 920px) {
  .inline-statistic .statistic {
    max-width: 23.5rem;
  }
}
.inline-statistic .statistic .stat {
  flex-direction: column;
  padding-top: 1.25rem;
}
@media screen and (min-width: 920px) {
  .inline-statistic .statistic .stat {
    padding-top: 2rem;
  }
}
.inline-statistic .statistic .stat .words {
  font-family: "Noe Display", sans-serif;
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 2rem;
  width: 100%;
}
.inline-statistic .indicator {
  border-top: 2px solid #668B97;
}

.pattern-1:before,
.pattern-2:before {
  background-repeat: no-repeat;
  content: " ";
  display: block;
  opacity: 1;
  position: absolute;
  z-index: 2;
}

.pattern-1:before {
  background-image: url("/2021/images/patterns/pattern-1.svg");
}

.pattern-2:before {
  background-image: url("/2021/images/patterns/pattern-2.svg");
}

@media (min-width: 1200px) {
  .pattern-1:before,
.pattern-2:before {
    height: 33rem;
    top: -12rem;
    width: 15.75rem;
  }

  .pattern-1:before {
    right: 0;
  }

  .pattern-2:before {
    left: 0;
    top: -21.5rem;
  }
  .pattern-2.alt:before {
    top: 0;
  }
}
.saw-tooth-top:after {
  background-image: url(/2021/images/patterns/saw-tooth-top.svg);
  background-repeat: repeat-x;
  background-position-y: 0;
  content: " ";
  height: 10px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.saw-tooth-bottom {
  background-image: url(/2021/images/patterns/saw-tooth-bottom.svg);
  background-repeat: repeat-x;
  background-position-y: 0;
  content: " ";
  height: 10px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.person {
  font-family: "Noe Display", sans-serif;
  align-items: center;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}
@media screen and (min-width: 920px) {
  .person {
    flex-direction: row;
    gap: 3.5rem;
  }
}
.person > img {
  margin-bottom: 1.5rem;
  max-width: 9.6875rem;
}
@media screen and (min-width: 920px) {
  .person > img {
    margin-bottom: 0;
    max-width: 100%;
  }
}
.person .details {
  font-size: 18px;
  line-height: 24px;
}
.person .details h4 {
  font-size: 1.25rem;
  line-height: 2rem;
  font-weight: bold;
}
.person .details img {
  margin-top: 0.75rem;
}

.profiles {
  width: 100%;
}
@media screen and (min-width: 920px) {
  .profiles {
    max-width: 73.5rem;
  }
}
.profiles .row {
  align-items: center;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 600px) {
  .profiles .row {
    align-items: flex-start;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.profiles .row .profile {
  border-top: 1px solid #CCD8DC;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2.1875rem;
  padding-top: 2.1875rem;
  width: 100%;
}
@media screen and (min-width: 600px) {
  .profiles .row .profile {
    width: 50%;
  }
}
@media screen and (min-width: 920px) {
  .profiles .row .profile {
    align-items: flex-start;
    margin-bottom: 0;
    width: 16.625rem;
  }
}
.profiles .row .profile img {
  align-self: center;
  max-width: 12.5rem;
}
.profiles .row .profile a,
.profiles .row .profile p {
  font-size: 1rem;
  line-height: 1.5rem;
}
.profiles .row .profile .name {
  font-family: "Noe Display", sans-serif;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.profiles .row .profile .role {
  font-weight: bold;
  margin: 0 0 0.5rem 0;
  text-align: center;
}
@media screen and (min-width: 920px) {
  .profiles .row .profile .role {
    text-align: left;
  }
}
.profiles .row .profile .iwi {
  margin: 0 0 1.5rem 0;
  text-align: center;
}
@media screen and (min-width: 920px) {
  .profiles .row .profile .iwi {
    text-align: left;
  }
}
.profiles .row .profile .iwi strong {
  font-style: normal;
}

@keyframes slideArrow {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  50% {
    opacity: 0;
    transform: translateX(100px);
  }
  51% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.previous-next {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 5rem auto;
  max-width: 73.5rem;
  text-decoration: none;
}
@media screen and (min-width: 920px) {
  .previous-next {
    margin: 6.25rem auto;
  }
}
.previous-next .direction {
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.previous-next a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: 0.2s;
}
.previous-next a svg {
  position: absolute;
  top: 0;
  left: 0;
}
.previous-next a svg.arrow {
  z-index: 8;
}
.previous-next a:hover {
  color: #668B97;
  transition: 0.2s;
}
.previous-next a:hover .button {
  color: #668B97;
}
.previous-next a:hover .button .arrow {
  animation-name: slideArrow;
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-timing-function: ease-in-out;
}
.previous-next a:active {
  color: #99B2BA;
  transition: 0.1s;
}
.previous-next a:active .button {
  color: #99B2BA;
}
.previous-next .chapter {
  display: flex;
  flex-direction: row;
  font-family: "Noe Display", sans-serif;
  font-weight: bold;
  margin: 1.25rem 0 2.1875rem 0;
}
@media screen and (min-width: 920px) {
  .previous-next .chapter {
    margin: 2.0625rem 0 2.6875rem 0;
  }
}
.previous-next .chapter .title {
  font-size: 3.125rem;
  line-height: 3.5rem;
  text-align: center;
}
@media screen and (min-width: 920px) {
  .previous-next .chapter .title {
    font-size: 6.25rem;
    line-height: 6.25rem;
  }
}
.previous-next .chapter .title .number {
  display: inline-block;
  font-size: 1.25rem;
  line-height: 1.25rem;
  vertical-align: super;
}
@media screen and (min-width: 920px) {
  .previous-next .chapter .title .number {
    font-size: 2.5rem;
    line-height: 2.5rem;
    margin-right: 1rem;
  }
}
.previous-next .button {
  color: #003E52;
  display: block;
  height: 3.75rem;
  transition: 0.2s;
  width: 3.75rem;
}
@media screen and (min-width: 920px) {
  .previous-next .button {
    height: 6.25rem;
    width: 6.25rem;
  }
}

.pull-out-quote .quote,
.impact-quote {
  font-family: "Noe Display", sans-serif;
  font-weight: 400;
}

.pull-out-quote .quote {
  font-size: 1.75rem;
  line-height: 2.25rem;
}
@media screen and (min-width: 920px) {
  .pull-out-quote .quote {
    font-size: 2.5rem;
    line-height: 3.125rem;
  }
}

.impact-quote {
  font-size: 1.75rem;
  line-height: 2.25rem;
  text-align: center;
}
@media screen and (min-width: 920px) {
  .impact-quote {
    font-size: 2.5rem;
    line-height: 3.125rem;
  }
}
.impact-quote .quoted:before, .impact-quote .quoted:after {
  font-weight: bold;
}
.impact-quote .quoted:before {
  content: "“";
  padding-right: 0.125rem;
}
.impact-quote .quoted:after {
  content: "”";
  padding-left: 0.125rem;
}
.impact-quote .source {
  font-family: "Brown", sans-serif;
  font-style: italic;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  line-height: 1.25rem;
  text-transform: uppercase;
}
.impact-quote .source:before {
  content: "—";
}
.impact-quote .source img {
  display: block;
  height: 6.25rem;
  margin: 1.5rem auto 0 auto;
  width: 6.25rem;
}

@media (min-width: 1200px) {
  .impact-quote {
    max-width: 61rem;
  }
}
.pull-quote {
  align-items: flex-start;
  display: flex;
  flex-direction: column-reverse;
  margin-bottom: 1.875rem;
  max-width: 67.0625rem;
}
.pull-quote blockquote,
.pull-quote p {
  margin-top: 0;
}
.pull-quote blockquote {
  margin-bottom: 1.5625rem;
}
@media screen and (min-width: 920px) {
  .pull-quote blockquote {
    margin-bottom: 0;
  }
}
.pull-quote .impact-quote {
  margin: 0;
}
.pull-quote blockquote,
.pull-quote .impact-quote {
  font-size: 1.75rem;
  line-height: 2.25rem;
  color: #668B97;
  font-weight: 300;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 920px) {
  .pull-quote blockquote,
.pull-quote .impact-quote {
    font-size: 2rem;
    line-height: 2.75rem;
    margin-bottom: 0;
    text-align: left;
  }
}
@media screen and (min-width: 920px) {
  .pull-quote {
    padding: 0 1.5625rem;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 5rem;
  }
  .pull-quote p,
.pull-quote .text {
    max-width: 29.5rem;
  }
  .pull-quote p:last-child {
    margin-bottom: 0;
  }
  .pull-quote blockquote,
.pull-quote .impact-quote {
    max-width: 34.4375rem;
  }
  .pull-quote.margin-bottom-80 {
    margin-bottom: 5rem;
  }
}
@media screen and (min-width: 1200px) {
  .pull-quote {
    padding: 0;
  }
}

.big-green-quote {
  padding: 0 1.5625rem;
  align-items: center;
  background-color: #ACBCB3;
  background-image: url("/2021/images/watermarks/tides.svg");
  background-position-x: center;
  background-position-y: center;
  background-repeat: no-repeat;
  color: #FFFFFF;
  display: flex;
  flex-direction: row;
  padding-bottom: 11.25rem;
  padding-top: 11.25rem;
  position: relative;
}
@media (min-width: 920px) {
  .big-green-quote {
    height: 61.25rem;
    padding: 0;
  }
  .big-green-quote .impact-quote {
    max-width: 61rem;
  }
}

.scrolly-wrapper {
  padding-top: 3.125rem;
  margin-bottom: 3.75rem;
}
@media screen and (min-width: 920px) {
  .scrolly-wrapper {
    margin: 0 auto;
    margin-bottom: 7.5rem;
    max-width: 73.5rem;
    padding-top: 8.75rem;
  }
}
.scrolly-wrapper h3 {
  margin-bottom: 3.375rem;
}

.scrolly {
  display: flex;
  gap: 1.25rem;
  justify-content: space-between;
  margin: 3rem auto;
}
@media screen and (min-width: 920px) {
  .scrolly {
    gap: 7.75rem;
    margin: 0 auto;
    max-width: 73.5rem;
  }
}
.scrolly h4 {
  font-family: "Noe Display", sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 2rem;
}
@media screen and (min-width: 920px) {
  .scrolly h4 {
    font-size: 2rem;
    line-height: 2.75rem;
  }
}

article {
  position: relative;
}
@media screen and (min-width: 920px) {
  article {
    max-width: 29.75rem;
  }
}
article .step {
  padding-bottom: 6.25rem;
}
@media screen and (min-width: 920px) {
  article .step {
    padding-bottom: 12.5rem;
  }
}
article .step > img {
  margin: 0 auto 1.5rem auto;
}
@media screen and (min-width: 920px) {
  article .step > img {
    display: none;
  }
}
article .step .heading {
  border-bottom: 1px solid white;
  border-top: 1px solid white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
@media screen and (min-width: 920px) {
  article .step .heading {
    padding: 1.5rem 0;
  }
}
article .step .heading .numbered {
  align-items: flex-start;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}
article .step .heading .numbered span {
  line-height: 2rem;
  min-width: 2rem;
}
@media screen and (min-width: 920px) {
  article .step .heading .numbered span {
    width: 3.125rem;
  }
}
article .step .heading img {
  max-width: 3.125rem;
}
@media screen and (min-width: 920px) {
  article .step .heading img {
    max-width: 100%;
  }
}

figure.sticky {
  display: none;
  overflow: hidden;
}
@media screen and (min-width: 920px) {
  figure.sticky {
    display: block;
    position: sticky;
    max-width: 27.5rem;
    height: 45rem;
    margin: 0;
    top: 20vh;
    left: 0;
  }
  figure.sticky > div {
    max-height: 45rem;
    width: 27.5rem;
  }
  figure.sticky span {
    padding: 0.5rem 1rem;
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background-color: green;
    color: white;
    font-size: 0.85rem;
  }
  figure.sticky img {
    max-height: 75vh;
    position: absolute;
    top: 0;
    left: 0;
    transition: 1.5s;
  }
}
@media screen and (min-width: 1200px) {
  figure.sticky {
    max-width: 36rem;
  }
  figure.sticky > div {
    width: 36rem;
  }
}

.topic-table {
  overflow: hidden;
}
.topic-table .indicator {
  height: 1px;
  border-top: 1px solid #003E52;
  opacity: 0;
}
.topic-table .heading {
  align-items: flex-start;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  padding: 1.5rem 0;
}
.topic-table .heading span {
  line-height: 2rem;
  min-width: 2rem;
}
@media screen and (min-width: 920px) {
  .topic-table .heading span {
    width: 3.125rem;
  }
}
.topic-table .heading h4 {
  font-family: "Noe Display", sans-serif;
  font-size: 2rem;
  line-height: 2.75rem;
  font-weight: bold;
}

.embedded-video-wrapper {
  position: relative;
}
.embedded-video-wrapper.no-transcription {
  margin-bottom: 3.125rem;
}
@media (min-width: 1200px) {
  .embedded-video-wrapper.no-transcription {
    margin-bottom: 6.25rem;
  }
}
.embedded-video-wrapper .citation {
  padding: 0 1.5625rem;
}
@media (min-width: 1200px) {
  .embedded-video-wrapper .citation {
    padding: 0;
  }
}

.embedded-video {
  position: relative;
}
.embedded-video button {
  z-index: 8;
}

button.play {
  height: auto;
  width: 3.75rem;
}
@media screen and (min-width: 1200px) {
  button.play {
    width: 6.25rem;
  }
}

.transcription {
  font-family: "Noe Display", sans-serif;
  margin-bottom: 3.75rem;
}
.transcription button {
  font-size: 1.5rem;
  font-weight: bold;
  transition: 0.2s;
}
.transcription button:before {
  content: " ";
  border-top: 1px solid #003E52;
  display: inline-block;
  width: 3.625rem;
  height: 0.625rem;
  margin-right: 1.75rem;
}
@media screen and (min-width: 920px) {
  .transcription button:before {
    width: 27rem;
  }
}
.transcription button img {
  width: 2.5rem;
}
@media screen and (min-width: 920px) {
  .transcription button img {
    width: 3.75rem;
  }
}
.transcription button:hover svg circle {
  fill: #668B97;
  transition: 0.2s;
}
.transcription button:hover svg circle.strokeable {
  stroke: #668B97;
  transition: 0.2s;
}
.transcription button svg {
  height: 2.5rem;
  width: 2.5rem;
}
@media screen and (min-width: 920px) {
  .transcription button svg {
    height: 3.75rem;
    width: 3.75rem;
  }
}
.transcription .content {
  font-family: "Brown", sans-serif;
  padding: 0 1.5625rem;
  font-size: 1rem;
  line-height: 1.75rem;
  padding-bottom: 1.5rem;
  padding-top: 1.5rem;
}
@media screen and (min-width: 920px) {
  .transcription .content {
    font-size: 1.125rem;
    line-height: 2rem;
    padding: 4.75rem 15rem;
  }
}
@media screen and (min-width: 1200px) {
  .transcription .content {
    padding: 6.25rem 15rem 7.5rem 15rem;
  }
}
.transcription .content p:first-child {
  margin-top: 0;
}

@media (min-width: 1200px) {
  .embedded-video,
.transcription {
    width: 73.5rem;
  }
}
@media (min-width: 920px) {
  .video-w-text .text blockquote {
    font-size: 2.5rem;
    line-height: 3.25rem;
  }
}
@media (min-width: 920px) {
  .video-w-text .text p:first-child {
    margin-top: 0;
  }
}

.modal.video .modal-container {
  width: 90%;
}
@media screen and (min-width: 1200px) {
  .modal.video .modal-container {
    width: 73.5rem;
  }
}
.modal.video .modal-content {
  padding-bottom: 56.25%;
  position: relative;
  width: 100%;
}
.modal.video .modal-content iframe {
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
}

.play-button {
  bottom: 1.25rem;
  height: auto;
  left: 1.25rem;
  position: absolute;
  width: 3.75rem;
}
@media screen and (min-width: 1200px) {
  .play-button {
    bottom: 2.5rem;
    left: 2.5rem;
    width: 6.25rem;
  }
}

.poster-image {
  overflow: hidden;
}
.poster-image svg .hover {
  opacity: 0;
  transition: 0.2s;
}
.poster-image:hover svg .hover {
  opacity: 1;
  transition: 0.2s;
}

.play svg .hover {
  display: none;
}
.play:hover svg .hover {
  display: initial;
}

@media screen and (min-width: 1200px) {
  .bg-tint-green-90 .transcription {
    margin-bottom: 11.125rem;
  }
}
.bg-tint-green-90 .transcription .content {
  background-color: #748F80;
  color: #FFFFFF;
}
.bg-tint-green-90 .transcription button:before {
  border-color: #FFFFFF;
}
.bg-tint-green-90 .transcription button svg {
  transition: 0.2s;
}
.bg-tint-green-90 .transcription button svg circle {
  fill: #FFFFFF;
  stroke: #FFFFFF;
}
.bg-tint-green-90 .transcription button svg rect {
  fill: #ACBCB3;
}
.bg-tint-green-90 .transcription button:hover svg {
  transition: 0.2s;
}
.bg-tint-green-90 .transcription button:hover svg circle {
  fill: #C7D2CC;
  stroke: #C7D2CC;
}

.blue-frame .transcription .content {
  background-color: #336575;
}
.blue-frame .transcription button:before {
  border-color: #FFFFFF;
  width: 1.25rem;
}
@media screen and (min-width: 420px) {
  .blue-frame .transcription button:before {
    width: 3.625rem;
  }
}
@media screen and (min-width: 920px) {
  .blue-frame .transcription button:before {
    width: 27rem;
  }
}
.blue-frame .transcription button svg {
  transition: 0.2s;
}
.blue-frame .transcription button svg circle {
  fill: #FFFFFF;
  stroke: #FFFFFF;
}
.blue-frame .transcription button svg rect {
  fill: #003E52;
}
.blue-frame .transcription button:hover svg {
  transition: 0.2s;
}
.blue-frame .transcription button:hover svg circle {
  fill: #99B2BA;
  stroke: #99B2BA;
}

@font-face {
  font-family: "Pitch Web";
  font-style: normal;
  font-weight: normal;
  src: url("/fonts/PitchWeb-Regular.eot?#iefix") format("embedded-opentype"), url("/fonts/PitchWeb-Regular.woff2") format("woff2"), url("/fonts/PitchWeb-Regular.woff") format("woff");
}
@font-face {
  font-family: "Noe Display";
  font-style: normal;
  font-weight: 400;
  src: url("/fonts/NoeDisplay-Medium.eot?#iefix") format("embedded-opentype"), url("/fonts/NoeDisplay-Medium.woff2") format("woff2"), url("/fonts/NoeDisplay-Medium.woff") format("woff");
}
@font-face {
  font-family: "Noe Display";
  font-style: normal;
  font-weight: 700;
  src: url("/fonts/Noe Display Bold.eot?#iefix") format("embedded-opentype"), url("/fonts/Noe Display Bold.woff") format("woff");
}
@font-face {
  font-family: "Noe Display";
  font-style: italic;
  font-weight: 700;
  src: url("/fonts/Noe Display Bold Italic.eot?#iefix") format("embedded-opentype"), url("/fonts/Noe Display Bold Italic.woff") format("woff");
}
@font-face {
  font-family: "Brown";
  font-style: normal;
  font-weight: 700;
  src: url("/fonts/lineto-brown-pro-bold.eot?#iefix") format("embedded-opentype"), url("/fonts/lineto-brown-pro-bold.woff") format("woff");
}
@font-face {
  font-family: "Brown";
  font-style: normal;
  font-weight: 400;
  src: url("/fonts/lineto-brown-pro-regular.eot?#iefix") format("embedded-opentype"), url("/fonts/lineto-brown-pro-regular.woff") format("woff");
}
@font-face {
  font-family: "Brown";
  font-style: normal;
  font-weight: 200;
  src: url("/fonts/lineto-brown-pro-light.eot?#iefix") format("embedded-opentype"), url("/fonts/lineto-brown-pro-light.woff") format("woff");
}
@font-face {
  font-family: "Brown";
  font-style: normal;
  font-weight: 100;
  src: url("/fonts/lineto-brown-pro-thin.eot?#iefix") format("embedded-opentype"), url("/fonts/lineto-brown-pro-thin.woff") format("woff");
}
footer {
  background-color: rgba(153, 178, 186, 0.2);
}

[x-cloak] {
  display: none !important;
}

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-family: "Brown", sans-serif;
  color: #003E52;
}
body .modal-active {
  overflow-x: hidden;
  overflow-y: visible !important;
}

h2,
h3,
h4,
h5,
blockquote {
  font-family: "Noe Display", sans-serif;
}

h1,
h2,
h3,
h5 {
  font-weight: bold;
}

@media screen and (min-width: 920px) {
  h2 {
    font-size: 3.75rem;
    line-height: 4.25rem;
  }
}

@media screen and (min-width: 920px) {
  h3 {
    font-size: 2.5rem;
    line-height: 3.25rem;
  }
}

@media screen and (min-width: 920px) {
  h4 {
    font-size: 2rem;
    line-height: 2.75rem;
  }
}

@media screen and (min-width: 920px) {
  h5 {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

a {
  text-decoration: underline;
}
@media screen and (min-width: 920px) {
  a.last {
    margin-bottom: 2.5rem;
  }
}
@media screen and (min-width: 920px) and (min-width: 920px) {
  a.last {
    margin-bottom: 5rem;
  }
}

a.external:not(.link-button):after {
  background-image: url(/2021/images/icons/external-link.svg);
  background-repeat: no-repeat;
  content: " ";
  display: inline-block;
  height: 1rem;
  margin-left: 0.25rem;
  width: 1rem;
}

.todo {
  background-color: gold;
}

@media screen and (min-width: 920px) {
  .w-5-12 {
    width: 41.667%;
  }
}

@media screen and (min-width: 920px) {
  .w-7-12 {
    width: 58.333%;
  }
}

.w-10-12 {
  width: 83.333%;
}

.mb-13 {
  margin-bottom: 1.5625rem;
}
@media screen and (min-width: 920px) {
  .mb-13 {
    margin-bottom: 3.125rem;
  }
}

@media screen and (min-width: 920px) {
  .mb-17 {
    margin-bottom: 4.125rem;
  }
}

.mb-30 {
  margin-bottom: 3.75rem;
}
@media screen and (min-width: 1200px) {
  .mb-30 {
    margin-bottom: 7.5rem;
  }
}

.citation-typography {
  font-family: "Brown", sans-serif;
  font-style: italic;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  line-height: 1.25rem;
  text-transform: uppercase;
}

main {
  background-color: #FFFFFF;
  font-size: 1rem;
  position: relative;
}
.blue main .container {
  background-color: #003E52;
  color: #FFFFFF;
}
@media screen and (min-width: 920px) {
  main {
    font-size: 1.125rem;
  }
}
main > h2,
main .blue-frame h2,
main .bg-tint-green-10 h2 {
  display: block;
  margin: 0 1.5rem 2.5rem 1.5rem;
  text-align: center;
}
@media screen and (min-width: 920px) {
  main > h2,
main .blue-frame h2,
main .bg-tint-green-10 h2 {
    margin: 0 auto 5rem auto;
    max-width: 51.5rem;
  }
}
main p {
  line-height: 2rem;
  margin: 1.5rem 0;
}
main p.last {
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 920px) {
  main p.last {
    margin-bottom: 5rem;
  }
}
main > h3,
main > p,
main > .bg-tint-blue-70 > h3,
main > .bg-tint-blue-70 > p,
main > .bg-tint-green-10 > h3,
main > .bg-tint-green-10 > p,
main > .bg-green > h4,
main > .bg-green p {
  padding: 0 1.5625rem;
}
@media screen and (min-width: 920px) {
  main > h3,
main > p,
main > .bg-tint-blue-70 > h3,
main > .bg-tint-blue-70 > p,
main > .bg-tint-green-10 > h3,
main > .bg-tint-green-10 > p,
main > .bg-green > h4,
main > .bg-green p {
    padding: 0;
    margin-left: auto;
    margin-right: auto;
    max-width: 43.5rem;
  }
}
main > blockquote,
main > section.blue-frame blockquote,
main > .bg-tint-green-10 blockquote {
  padding: 0 1.5625rem;
  font-size: 1.75rem;
  line-height: 2.25rem;
  font-weight: 300;
  margin: 3rem 0;
  text-align: center;
}
@media (min-width: 1200px) {
  main > blockquote,
main > section.blue-frame blockquote,
main > .bg-tint-green-10 blockquote {
    padding: 0;
    font-size: 2.5rem;
    line-height: 3.25rem;
    margin: 0 auto 5rem auto;
    max-width: 61rem;
  }
}
main section {
  padding: 0 1.5625rem;
  margin: 0 auto 2.5rem auto;
}
main section > section {
  padding: 0;
}
@media screen and (min-width: 920px) {
  main section {
    padding: 0;
    margin-bottom: 5rem;
    max-width: 43.5rem;
  }
  main section.image-w-text, main section.quote-w-image, main section.video-w-text, main section.inline-image {
    max-width: 73.5rem;
  }
}
@media screen and (min-width: 920px) {
  main section.text-two-columns {
    max-width: 60.8125rem;
  }
}
main section.blue-frame {
  background-color: #003E52;
  color: #FFFFFF;
  margin-bottom: 3.75rem;
  max-width: unset;
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 920px) {
  main section.blue-frame {
    margin-bottom: 7.5rem;
    padding-bottom: 5rem;
  }
}

.citation {
  font-family: "Brown", sans-serif;
  font-style: italic;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  line-height: 1.25rem;
  text-transform: uppercase;
  color: #668B97;
  margin-top: 1.25rem;
}

.blue-frame.angles {
  overflow: hidden;
  padding: 0;
  position: relative;
}
@media screen and (min-width: 920px) {
  .blue-frame.angles {
    max-height: 60.4375rem;
    padding: 9.5rem 0;
  }
}
.blue-frame.angles:before {
  background-image: url(/2021/images/patterns/chevrons.svg);
  background-position-x: right;
  background-repeat: no-repeat;
  content: " ";
  display: block;
  position: absolute;
  z-index: 2;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.blue-frame .todo {
  color: #003E52;
}

.bg-tint-blue-70,
.bg-green,
.bg-tint-green-90,
.bg-tint-green-10 {
  margin-bottom: 3.75rem;
  padding: 3.75rem 0;
}
@media screen and (min-width: 920px) {
  .bg-tint-blue-70,
.bg-green,
.bg-tint-green-90,
.bg-tint-green-10 {
    margin-bottom: 7.5rem;
    padding: 7.5rem 0;
  }
}
.bg-tint-blue-70 p:last-child,
.bg-green p:last-child,
.bg-tint-green-90 p:last-child,
.bg-tint-green-10 p:last-child {
  margin-bottom: 0;
}

.bg-green {
  background-color: #748F80;
  color: #FFFFFF;
}

.bg-tint-green-90 {
  background-color: #829A8D;
  color: #FFFFFF;
  position: relative;
}
@media screen and (min-width: 1200px) {
  .bg-tint-green-90 {
    padding: 10.375rem 0;
  }
}

.bg-tint-blue-70 {
  background-color: #4C7886;
  color: #FFFFFF;
}

main .bg-tint-green-10 {
  background-color: #F1F4F2;
}
main .bg-tint-green-10 h2.mb-35 {
  margin-bottom: 4.4375rem;
}
@media screen and (min-width: 920px) {
  main .bg-tint-green-10 h2.mb-35 {
    margin-bottom: 8.875rem;
  }
}

.text-two-columns {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 920px) {
  .text-two-columns {
    border-bottom: 1px solid #CCD8DC;
    flex-direction: row;
    gap: 5rem;
    margin-bottom: 6.25rem;
    padding-bottom: 6.25rem;
  }
}
@media screen and (min-width: 920px) {
  .text-two-columns .column {
    max-width: 27.875rem;
  }
}
.text-two-columns.no-bottom-border {
  border-bottom: none;
  padding-bottom: 0;
}

@keyframes animateIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
#menu {
  top: 7.25rem;
}

.menu::-webkit-scrollbar {
  display: none;
  /* Safari and Chrome */
}

.menu {
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow: -moz-scrollbars-none;
  font-family: "Noe Display", sans-serif;
  background-color: #003E52;
  color: #FFFFFF;
  font-size: 2.375rem;
  font-weight: normal;
  line-height: 2.5rem;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  overscroll-behavior-y: none;
  text-align: center;
}
@media screen and (min-width: 920px) {
  .menu {
    font-size: 3.75rem;
    line-height: 3.75rem;
    padding: 0;
  }
}
.menu .header-nav {
  padding: 0 1.5625rem;
}
.menu a {
  text-decoration: none;
  transition: 0.2s;
}
.menu a:hover {
  color: #99B2BA;
  transition: 0.2s;
}
.menu a svg.logo {
  color: #FFFFFF;
}
.menu .toggle {
  display: none;
}
@media screen and (min-width: 920px) {
  .menu .toggle {
    display: inline-block;
  }
}
.menu .toggle span {
  text-decoration: underline;
}
.menu .mobile-toggle {
  display: block;
  font-size: 1.125rem;
  line-height: 1.25rem;
  margin-bottom: 3.125rem;
}
@media screen and (min-width: 920px) {
  .menu .mobile-toggle {
    display: none;
  }
}
.menu .mobile-toggle span {
  text-decoration: underline;
}
.menu nav > .item {
  animation-name: animateIn;
  animation-duration: 175ms;
  animation-delay: calc(var(--animation-order) * 100ms);
  animation-fill-mode: both;
  animation-timing-function: ease-in-out;
  margin-top: 3.125rem;
  padding: 0 1.5625rem;
}
@media screen and (min-width: 920px) {
  .menu nav > .item {
    margin-top: 3.75rem;
  }
}
@media screen and (min-width: 1200px) {
  .menu nav > .item {
    padding: 0;
  }
}
.menu nav > .item.current {
  background-color: #084457;
  border-top: 1px solid #215768;
  border-bottom: 1px solid #215768;
  padding: 3.125rem 1.5625rem;
}
@media screen and (min-width: 920px) {
  .menu nav > .item.current {
    padding: 3.75rem 1.5625rem;
  }
}
.menu nav > .item:last-child {
  margin-bottom: 3.125rem;
}
@media screen and (min-width: 920px) {
  .menu nav > .item:last-child {
    margin-bottom: 3.75rem;
  }
}
.menu sup {
  font-size: 1.25rem;
  padding-right: 0.5rem;
  vertical-align: middle;
}
@media screen and (min-width: 920px) {
  .menu sup {
    font-size: 1.75rem;
  }
}
.menu .chapter-block {
  font-family: "Brown", sans-serif;
  font-weight: 400;
}
.menu .chapter-block a {
  display: block;
}

.menu-open .menu {
  display: block;
}

.downloads {
  font-family: "Brown", sans-serif;
  padding: 0 1.5625rem;
}
.downloads .download {
  margin-bottom: 1.5rem;
}
.downloads .download .text {
  max-width: 16.25rem;
}
@media screen and (min-width: 600px) {
  .downloads .download .text {
    max-width: unset;
  }
}
.downloads svg circle {
  fill: #FFFFFF;
}
.downloads svg path {
  stroke: #003E52;
}
.downloads svg rect {
  fill: #003E52;
}

header {
  font-family: "Noe Display", sans-serif;
  font-weight: bold;
  -webkit-backface-visibility: hidden;
  background-color: #FFFFFF;
  color: #003E52;
  height: 5rem;
  overflow: hidden;
  top: 0;
  transition: 0.75s;
}
@media screen and (min-width: 920px) {
  header {
    height: 7.5rem;
  }
}
header .toggle {
  display: none;
}
header .toggle span {
  text-decoration: underline;
}
header .toggle a {
  text-decoration: none;
}
@media screen and (min-width: 920px) {
  header .toggle {
    display: block;
  }
}

.hamburger img {
  display: inline-block;
  margin-left: 1rem;
}
.hamburger img.close {
  display: none;
}

svg.logo {
  color: #003E52;
  height: 2.375rem;
}

.menu-open svg.logo {
  color: #FFFFFF;
}
.menu-open header {
  background-color: #003E52;
  color: #FFFFFF;
}
.menu-open .hamburger img {
  display: none;
  margin-right: 10px;
}
.menu-open .hamburger img.close {
  animation-name: spin-in;
  animation-duration: 0.25s;
  animation-iteration-count: 1;
  /* linear | ease | ease-in | ease-out | ease-in-out */
  animation-timing-function: linear;
  display: inline-block;
}

@keyframes heroAnimateIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-wrapper {
  height: 37.1875rem;
  margin-bottom: 3.125rem;
}
@media screen and (min-width: 920px) {
  .hero-wrapper {
    height: 57.5rem;
    margin-bottom: 6.25rem;
  }
}
.hero-wrapper.no-bottom-margin {
  margin-bottom: 0;
}

.hero {
  color: #FFFFFF;
  height: 100%;
}
.blue .hero {
  background-color: #003E52;
}
@media screen and (min-width: 920px) {
  .hero {
    height: 57.5rem;
  }
}
.hero .hero-bg {
  background-position-x: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}
.hero .hero-bg.pinned-top {
  background-position-y: top;
}
.hero .hero-bg.pinned-bottom {
  background-position-y: bottom;
}
.hero .bg-image {
  height: 57.5rem;
}
.hero h1 {
  font-size: 1rem;
  line-height: 1.125rem;
  margin-bottom: 1.5rem;
  text-shadow: 0px 0px 5px #999;
  animation-name: heroAnimateIn;
  animation-duration: 350ms;
  animation-delay: 0.75s;
  animation-fill-mode: both;
  animation-timing-function: ease-in-out;
}
@media screen and (min-width: 600px) {
  .hero h1 {
    margin-bottom: 2rem;
    text-shadow: none;
  }
}
.hero .title,
.hero .sub-title {
  font-family: "Noe Display", sans-serif;
  font-weight: bold;
}
.hero .title {
  font-size: 3.125rem;
  line-height: 3.5rem;
  animation-name: heroAnimateIn;
  animation-duration: 350ms;
  animation-delay: 1s;
  animation-fill-mode: both;
  animation-timing-function: ease-in-out;
}
@media screen and (min-width: 920px) {
  .hero .title {
    font-size: 6.25rem;
    line-height: 6.25rem;
  }
}
.hero .sub-title {
  font-size: 1.25rem;
  line-height: 1.625rem;
  animation-name: heroAnimateIn;
  animation-duration: 350ms;
  animation-delay: 1.25s;
  animation-fill-mode: both;
  animation-timing-function: ease-in-out;
}
@media screen and (min-width: 920px) {
  .hero .sub-title {
    font-size: 2.5rem;
    line-height: 3.25rem;
  }
}
.hero .sub-title:before {
  box-sizing: content-box;
  content: "__";
  display: inline-block;
  margin-right: 1rem;
  line-height: 0.275rem;
  vertical-align: text-top;
}
@media screen and (min-width: 920px) {
  .hero .sub-title:before {
    line-height: 1rem;
  }
}
.hero .content {
  height: 100%;
  padding: 1.5rem;
  padding-top: 9.0625rem;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 420px) {
  .hero .content {
    padding-top: 9.5rem;
  }
}
@media screen and (min-width: 600px) {
  .hero .content {
    padding-top: 11.5625rem;
  }
}
@media screen and (min-width: 920px) {
  .hero .content {
    padding: 20rem 0 0 0;
  }
}
.hero .support {
  height: 4.875rem;
}
@media screen and (min-width: 1200px) {
  .hero .support {
    height: 6.25rem;
  }
}
.hero .ribbon {
  width: 4rem;
}
@media screen and (min-width: 1200px) {
  .hero .ribbon {
    width: unset;
  }
}

.home .hero-wrapper {
  padding: 0;
  position: sticky;
  height: 100vh;
  top: 0;
}
.home .hero {
  background-image: url("/2021/images/hero/home/01.jpg");
  background-size: cover;
  background-position-x: right;
  background-position-y: top;
  height: 100%;
}
@media screen and (min-width: 920px) {
  .home .hero {
    max-height: unset;
  }
}
.home .hero .down-arrow {
  animation-name: fadeIn;
  animation-delay: 2.5s;
  animation-duration: 1.5s;
  animation-fill-mode: both;
  animation-timing-function: ease-in-out;
  bottom: 1.25rem;
  height: 0.9375rem;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  transition: 5s;
  width: 1.25rem;
}
@media screen and (min-width: 1200px) {
  .home .hero .content {
    padding-top: 18.25rem;
  }
}
.home .hero h2 {
  color: #FFFFFF;
}
@media screen and (min-width: 920px) {
  .home .hero h2 {
    font-size: 2.5rem;
    line-height: 3.25rem;
  }
}
.home .hero .hero-bg {
  clip-path: polygon(100% 0%, 50% 100%, 50% 100%);
  height: 100%;
  max-height: unset;
  object-fit: cover;
  object-position: top center;
  width: 100%;
}
.home .hero .titles {
  position: relative;
}
.home .hero .titles .first-title,
.home .hero .titles .second-title {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.home .hero .titles .second-title {
  opacity: 0;
}

.inputs-outputs .scrolly-wrapper {
  margin-bottom: 0;
  padding-top: 0;
}
@media screen and (min-width: 920px) {
  .inputs-outputs .scrolly-wrapper {
    padding-top: 3.125rem;
  }
}
@media screen and (min-width: 1200px) {
  .inputs-outputs .scrolly-wrapper {
    padding-top: 8.75rem;
  }
}
.inputs-outputs .scrolly-wrapper:last-child article {
  margin-bottom: 0;
}
@media screen and (min-width: 920px) {
  .inputs-outputs .scrolly-wrapper article {
    margin-bottom: 3.75rem;
    width: 50%;
  }
}
@media screen and (min-width: 1200px) {
  .inputs-outputs .scrolly-wrapper article {
    margin-bottom: 8.75rem;
    max-width: 36rem;
    width: unset;
  }
}
.inputs-outputs .scrolly-wrapper .sticky {
  border-top: 1px solid #ACBCB3;
  padding-top: 1.5rem;
  top: 12.5rem;
}
@media screen and (min-width: 920px) {
  .inputs-outputs .scrolly-wrapper .sticky {
    width: 50%;
  }
}
@media screen and (min-width: 1200px) {
  .inputs-outputs .scrolly-wrapper .sticky {
    width: 33.6875rem;
  }
}
.inputs-outputs .scrolly-wrapper .sticky h3 {
  margin-bottom: 1.5rem;
  text-align: left;
}
.inputs-outputs .scrolly-wrapper .indicator {
  border-top: 1px solid #ACBCB3;
  padding-top: 1rem;
  margin: 0 auto;
  width: calc(100% - 3rem);
}
@media screen and (min-width: 920px) {
  .inputs-outputs .scrolly-wrapper .indicator {
    width: 100%;
  }
}
.inputs-outputs .scrolly-wrapper .indicator.bottom {
  margin-top: 1rem;
  padding-top: 0;
  padding-bottom: 1rem;
}
.inputs-outputs .scrolly-wrapper h4 {
  margin-bottom: 0;
}
.inputs-outputs .scrolly-wrapper h4 em {
  color: #C7D2CC;
}
.inputs-outputs .scrolly-wrapper .scrolly h4 {
  padding: 0 1.5625rem;
}
@media screen and (min-width: 1200px) {
  .inputs-outputs .scrolly-wrapper .scrolly h4 {
    padding: 0;
  }
}
.inputs-outputs h3 {
  padding: 0 1.5625rem;
  margin-bottom: 3.125rem;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .inputs-outputs h3 {
    padding: 0;
  }
}
.inputs-outputs article .title {
  border-top: 1px solid #ACBCB3;
  margin: 0 1.5rem 3.125rem 1.5rem;
  padding: 1.5rem 0 0 0;
}
@media screen and (min-width: 920px) {
  .inputs-outputs article .title {
    display: none;
  }
}
.inputs-outputs article .title h3,
.inputs-outputs article .title h4 {
  padding: 0;
}
.inputs-outputs article .title h3 {
  margin-bottom: 1.5rem;
  text-align: left;
}
.inputs-outputs .heading {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.inputs-outputs .heading > img {
  margin-right: 1.5625rem;
  max-width: 3.125rem;
}
@media screen and (min-width: 1200px) {
  .inputs-outputs .heading > img {
    margin-right: 0;
    max-width: 4.375rem;
  }
}
.inputs-outputs ul {
  padding: 0 1.5625rem;
  margin: 1.5rem 0 2.5rem 1rem;
}
@media screen and (min-width: 1200px) {
  .inputs-outputs ul {
    padding: 0;
    margin-bottom: 5rem;
  }
}
.inputs-outputs ul li {
  padding: 0 0 0.5rem 0;
}
.inputs-outputs .values {
  font-family: "Noe Display", sans-serif;
  font-size: 2.5rem;
  line-height: 3.125rem;
  font-weight: bold;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width: 920px) {
  .inputs-outputs .values {
    font-size: 3.75rem;
    line-height: 4.25rem;
    flex-direction: row;
  }
}
.inputs-outputs .values > div {
  margin: 0 0.75rem;
}
@media screen and (min-width: 920px) {
  .inputs-outputs .values > div {
    margin: 0 2rem;
  }
}
.inputs-outputs .values > div:first-child {
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 920px) {
  .inputs-outputs .values > div:first-child {
    margin-bottom: 0;
  }
}
.inputs-outputs section.inline-image {
  margin-bottom: 0;
}

.watermark-image {
  margin: 0 auto;
  max-width: 90rem;
  position: relative;
}
.watermark-image .watermark {
  position: absolute;
  left: 0;
  right: 0;
  top: -15rem;
}
@media screen and (min-width: 920px) {
  .watermark-image .watermark {
    top: -40rem;
  }
}

.stats {
  margin: 0 auto;
  max-width: 61rem;
}
.stats blockquote {
  margin-bottom: 7.125rem;
}
.stats h3 {
  font-size: 2.5rem;
  line-height: 3.125rem;
  margin: 0 0 2rem 0;
}
.stats .row {
  width: 100%;
}
.stats .row.last {
  margin-bottom: 2.5rem;
}
.stats .row.visual img {
  margin-bottom: 1.125rem;
  max-height: 10rem;
  width: auto;
}
@media screen and (min-width: 920px) {
  .stats .row.visual img {
    max-height: 6.25rem;
  }
}
@media screen and (min-width: 920px) {
  .stats .row {
    display: flex;
    justify-content: space-between;
  }
  .stats .row.last {
    margin-bottom: 2.5rem;
  }
}
@media screen and (min-width: 920px) and (min-width: 920px) {
  .stats .row.last {
    margin-bottom: 5rem;
  }
}
@media screen and (min-width: 920px) {
  .stats .row.triple .col, .stats .row.visual .col {
    padding-bottom: 1.5rem;
    width: 31%;
  }
}
.stats .col {
  overflow: hidden;
  width: 100%;
}
@media screen and (min-width: 920px) {
  .stats .col {
    width: 48%;
  }
}
.stats .col .indicator {
  border-top: 2px solid #FFFFFF;
}
.stats .triple .col .indicator {
  border-color: #003E52;
}

.stat {
  display: flex;
  padding: 1.5rem 0 1.25rem 0;
}
@media screen and (min-width: 920px) {
  .stat {
    padding: 1.5rem 0 0.75rem 0;
  }
}
.triple .stat {
  align-items: flex-start;
  flex-direction: column;
}
.triple .stat .words,
.triple .stat .numbers {
  width: 100%;
}
.visual .stat {
  align-items: center;
  flex-direction: column;
}
@media screen and (min-width: 920px) {
  .visual .stat {
    max-height: 10.5rem;
    overflow: hidden;
  }
}
.stat .numbers {
  font-family: "Noe Display", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 3rem;
  width: 12rem;
}
.stat .numbers sup {
  font-size: 1.25rem;
  line-height: 1.25rem;
  vertical-align: middle;
}
@media screen and (min-width: 920px) {
  .stat .numbers {
    font-size: 5rem;
    line-height: 5rem;
    width: 52%;
  }
  .stat .numbers sup {
    font-size: 2.5rem;
    line-height: 3.125rem;
  }
}
.stat .numbers small {
  font-size: 60%;
}
.stat .words {
  align-items: center;
  display: flex;
  width: 48%;
}

.stat .down:after,
.stat .up:after,
.footnotes .down:after,
.footnotes .up:after {
  background-repeat: no-repeat;
  content: " ";
  display: inline-block;
  margin-left: 0.25rem;
  height: 1.875rem;
  width: 1.875rem;
}
.stat .down:after,
.footnotes .down:after {
  background-image: url("/2021/images/icons/value-down.svg");
}
.stat .up:after,
.footnotes .up:after {
  background-image: url("/2021/images/icons/value-up.svg");
}

@media screen and (min-width: 920px) {
  .footnotes {
    max-width: 35rem;
  }
}

.full-width-statistic .indicator {
  display: none;
}
.full-width-statistic .stat {
  gap: 1.5rem;
  justify-content: center;
  padding: 0;
}
.full-width-statistic .stat .numbers {
  width: auto;
}
.full-width-statistic .stat .words {
  font-family: "Noe Display", sans-serif;
  font-weight: bold;
}
@media screen and (min-width: 920px) {
  .full-width-statistic .stat .words {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

@media screen and (min-width: 920px) {
  .extrapolated-stats {
    max-width: 73.5rem;
  }
}
.extrapolated-stats > section {
  display: flex;
  flex-direction: column;
  max-width: unset;
  width: 100%;
}
@media screen and (min-width: 920px) {
  .extrapolated-stats > section {
    flex-direction: row;
    justify-content: space-between;
  }
}
.extrapolated-stats .topline-stat {
  font-family: "Noe Display", sans-serif;
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}
@media screen and (min-width: 920px) {
  .extrapolated-stats .topline-stat {
    align-items: flex-start;
  }
}
.extrapolated-stats .topline-stat .words {
  font-size: 2rem;
  line-height: 2.75rem;
  font-weight: bold;
  margin-bottom: 1.125rem;
}
.extrapolated-stats .topline-stat .numbers {
  font-weight: bold;
  font-size: 6.25rem;
  line-height: 6.25rem;
}
@media screen and (min-width: 920px) {
  .extrapolated-stats .topline-stat .numbers {
    font-size: 12.5rem;
    line-height: 12.5rem;
  }
}
.extrapolated-stats .stats {
  margin: 0;
  width: 100%;
}
@media screen and (min-width: 920px) {
  .extrapolated-stats .stats {
    width: 29.5rem;
  }
}
.extrapolated-stats .stats .col {
  width: 100%;
}
.extrapolated-stats .stats .col .indicator {
  border-color: #003E52;
}

/*# sourceMappingURL=styles.css.map */
.hero .alert-wrapper {
  left: 0;
  position: absolute;
  top: 100px;
  width: 100%;
  z-index: 2;
}

@media screen and (min-width: 920px) {
  .hero .alert-wrapper {
    display: flex;
    justify-content: center;
    top: 148px;
  }
}

.hero .alert {
  background-color: #fff;
  border-radius: 1.5rem;
  box-shadow: 0px 0px 32px rgba(0, 0, 0, 0.2);
  color: #003E52;
  display: flex;
  font-size: 1rem;
  justify-content: space-between;
  margin: 0 1.25rem;
  padding: 1.25rem 1rem;
}

@media screen and (min-width: 920px) {
  .hero .alert {
    align-items: center;
    border-radius: 60px;
    font-size: 1.125rem;
    margin: 0;
    padding: 1.25rem 2.5rem;
  }
}

.hero .alert img {
  height: 2rem;
  max-width: none;
  width: 2rem;
}

@media screen and (min-width: 920px) {
  .hero .alert img {
    margin-left: 1rem;
  }
}
