:root {
  --layout-gutter: 12px;
  --layout-margins: 12px;
  --layout-space: 2rem;
  --color-text: #222;
  --color-primary: #0177b2;
  --color-hover: #005f8c;
  --color-visited: #8a1b61;
  --color-background: #f4f8fc;
  --color-button-text: #fff;
  --shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  color: var(--color-text);
  font: inherit;
  text-decoration: none;
  vertical-align: baseline;
  border: 0;
}

body {
  font:
    1rem / 2 'Source Sans 3',
    sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

p,
h1,
h2,
h3,
h4,
h5,
.headline,
.h1,
.h2,
.h3,
.h4,
.h5 {
  margin-bottom: var(--layout-space);
  overflow-wrap: break-word;
}

p:last-child,
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child {
  margin-bottom: 0;
}

a {
  color: var(--color-primary);
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.2s ease-out;
}

a:visited {
  color: var(--color-visited);
}

a:hover {
  color: var(--color-hover);
}

b,
strong,
.bold,
.h1,
.h2,
.h3,
.h4,
.h5 {
  font-weight: 700;
}

.regular {
  font-weight: 400;
}

hr {
  margin: 2.5rem 0;
  border-bottom: 2px solid currentcolor;
}

button {
  cursor: pointer;
}

.headline,
.h1,
.h2,
.h3,
.h4,
.h5 {
  text-align: center;
}

.headline,
.h1 {
  font-size: 2.25rem;
  line-height: 1.1429;
}

.headline {
  font-weight: 300;
  letter-spacing: 0.02em;
}

.headline .small {
  font-size: 0.46809em;
  font-weight: 700;
}

.headline .large {
  font-size: 1.31915em;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.h2 {
  font-size: 1.5rem;
  line-height: 1.4;
}

.h3 {
  font-size: 1.25rem;
  line-height: 1.25;
}

.h4 {
  line-height: 1.3333;
}

.h5 {
  line-height: 1.4;
}

.small {
  font-size: 0.5957em;
  font-weight: 400;
  line-height: 1.1429;
}

.center {
  text-align: center;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.spacer {
  display: none;
}

.icon {
  margin: 0 auto;
  max-width: none;
}

.icon path:not([fill]) {
  fill: currentColor;
}

.icon-large {
  margin: 0 auto var(--layout-space);
}

.icon-large:last-child {
  margin-bottom: 0;
}

.image-wrapper {
  display: flex;
  justify-content: center;
  margin: 0 auto 80px;
}

.image-wrapper:last-child {
  margin-bottom: 0;
}

.button-wrapper {
  display: flex;
  gap: var(--layout-margins);
  justify-content: center;
}

.button {
  --color-text: var(--color-button-text);
  --color-visited: var(--color-button-text);
  display: block;
  padding: 13px 26px;
  width: 100%;
  color: var(--color-button-text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  background-color: var(--color-primary);
  border-radius: 8px;
  outline: 2px solid transparent;
  outline-offset: 2px;
  transition:
    background-color 0.2s ease-out,
    outline-color 0.2s ease-out;
}

.button:hover {
  color: var(--color-button-text);
  background-color: var(--color-hover);
}

.button:focus {
  outline-color: var(--color-primary);
}

.main-header {
  --color-visited: var(--color-text);
  position: sticky;
  top: 0;
  z-index: 10;
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 0 12px;
  font-family: 'Barlow Condensed', sans-serif;
  background-color: #fff;
}

.main-header::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: inherit;
  content: '';
}

.logo-wrapper {
  flex-shrink: 0;
  padding: 16px;
}

.logo {
  height: 54px;
  width: auto;
}

.skiptocontent {
  position: absolute;
  top: 100%;
  left: 0;
  font-family: 'Source Sans 3', sans-serif;
  border-radius: 0;
}

.skiptocontent:focus {
  outline: 0;
}

.skiptocontent:not(:focus) {
  overflow: hidden;
  height: 1px;
  margin: -1;
  padding: 0;
  width: 1px;
  clip-path: inset(50%);
}

.nav-button,
.main-header {
  font-size: 1.25rem;
  line-height: 1;
}

.nav-button {
  --color-text: var(--color-button-text);
  align-items: center;
  display: flex;
  height: 2em;
  justify-content: center;
  width: 2em;
  color: var(--color-button-text);
  background-color: var(--color-primary);
  border-radius: 8px;
  outline: 2px solid transparent;
  outline-offset: 2px;
  transition:
    background-color 0.2s ease-out,
    outline-color 0.2s ease-out;
}

.nav-button:hover {
  background-color: var(--color-hover);
}

.nav-button:focus {
  outline-color: var(--color-primary);
}

.nav-icon {
  height: 1em;
  width: 1em;
}

.main-nav {
  position: absolute;
  inset: 100% 0 calc(100% - 100vh);
  overflow: auto;
  overscroll-behavior: contain;
  z-index: -2;
  align-items: center;
  display: flex;
  flex-direction: column;
  text-align: center;
  text-transform: uppercase;
  background-color: var(--color-background);
  transform: translateY(-80px);
  opacity: 0;
  visibility: hidden;
  transition:
    transform 0s ease-out 0.2s,
    opacity 0.2s ease-out,
    visibility 0.2s ease-out;
}

.nav-visible .main-nav {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
  transition-duration: 0.2s;
}

.nav-link {
  display: block;
  padding: 21px 12px;
  color: var(--color-text);
  text-decoration: none;
}

.nav-link::after {
  display: block;
  height: 2px;
  margin: 2px 0 -4px;
  background-color: var(--color-primary);
  transform: scaleX(0);
  transform-origin: right center;
  content: '';
  transition: transform 0.2s ease-out;
}

.nav-link:hover {
  color: var(--color-primary);
}

.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.section {
  position: relative;
  overflow: hidden;
  z-index: 0;
  padding-top: 80px;
  padding-bottom: 80px;
}

.section.image {
  background-color: var(--color-background);
}

.section.figure {
  display: grid;
  padding: 0;
}

.in-view .section-background,
.in-view .figure-image {
  will-change: transform;
}

.section-background,
.section-background img,
.tile-background,
.tile-background img,
.block-background,
.block-background img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.section-background,
.tile-background,
.block-background {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
}

.container {
  padding-right: var(--layout-gutter);
  padding-left: var(--layout-gutter);
}

.container .container {
  padding-right: 0;
  padding-left: 0;
}

.section-container,
.block-row {
  margin-top: 80px;
  margin-bottom: 80px;
}

.section-container:first-child,
.section-background + .section-container,
.block-row:first-child {
  margin-top: 0;
}

.section-container:last-child,
.block-row:last-child {
  margin-bottom: 0;
}

.figure {
  overflow: hidden;
  margin-bottom: var(--layout-space);
  background-color: var(--color-background);
}

.figure-image,
.figure-image img,
.tile-image,
.tile-image img {
  object-fit: cover;
  width: 100%;
}

.section.figure .figure-image,
.section.figure .figure-content {
  grid-column-start: 1;
  grid-row-start: 1;
}

.figure-caption {
  position: relative;
  z-index: 1;
  padding: 9px 20px;
  font-size: 1rem;
  line-height: 1.75;
  background-color: #f4f8fc;
}

.figure-content {
  position: relative;
  align-self: center;
}

.media-wrapper {
  position: relative;
  margin-bottom: 112px;
  padding-bottom: 56.25%;
}

.media-wrapper:last-child,
.media-content:last-child,
.media-wrapper + .media-content:last-child {
  margin-bottom: 0;
}

.media {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.media-content {
  padding: 30px 40px;
  background-color: var(--color-background);
  box-shadow: var(--shadow);
}

.media-wrapper + .media-content {
  margin: -112px 0 112px;
}

.quote {
  display: grid;
  margin-bottom: var(--layout-space);
}

.message,
.quote:last-child {
  margin-bottom: 0;
}

.quote-content {
  --layout-space: 2rem;
  line-height: 1.6;
}

.quote-content:only-child {
  box-shadow: var(--shadow);
}

.quote-content .button-wrapper {
  padding-right: var(--layout-gutter);
  padding-left: var(--layout-gutter);
}

.message .quote-content {
  --layout-space: 2.5rem;
  line-height: 2;
}

.quote-block {
  position: relative;
  margin-bottom: var(--layout-space);
  padding: 28px 24px 20px 64px;
  background-color: #fff;
}

.quote-block::before {
  position: absolute;
  top: 0.44em;
  left: 12px;
  color: var(--color-primary);
  font-size: 6.25rem;
  font-weight: 700;
  line-height: 0.2581;
  content: '\201C';
}

.message .quote-block {
  padding: 30px 0;
}

.quote-block:last-child {
  margin-bottom: 0;
}

.quote-cite {
  display: block;
  margin-left: auto;
  width: fit-content;
  font-size: 1.2em;
  font-weight: 700;
  line-height: 1.5;
}

.message .quote-cite {
  margin-top: 0;
  font-weight: inherit;
  line-height: inherit;
  text-align: inherit;
}

.quote-cite::before {
  content: '\2013';
}

.message .quote-block::before,
.message .quote-cite::before {
  content: none;
}

.tile {
  margin-bottom: var(--layout-space);
  background-color: var(--color-background);
}

.tile:last-child {
  margin-bottom: 0;
}

.tile.image {
  position: relative;
  z-index: 0;
  margin-bottom: 0;
  background-color: #fff;
}

.tile-content,
.quote-block,
.block,
.figure-caption {
  --color-text: #222;
  --color-primary: #0177b2;
  --color-hover: #005f8c;
  --color-visited: #8a1b61;
  --color-button-text: #fff;
}

.tile-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 40px 48px;
  background-color: inherit;
}

.tile-icon {
  margin-bottom: var(--layout-space);
}

.tile-icon:last-child {
  margin-bottom: 0;
}

.content-row {
  display: grid;
  gap: 60px;
}

.block-row {
  display: grid;
  gap: 30px 40px;
}

.block {
  display: flex;
  flex-direction: column;
}

.block-image-wrapper {
  position: relative;
  padding-bottom: 56.25%;
}

.block-image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.block-content {
  --layout-space: 1.75rem;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 30px 40px;
  font-size: 1rem;
  line-height: 1.75;
  text-align: left;
  background-color: #fff;
}

.block-content .button-wrapper {
  margin-top: auto;
}

.quote-image-wrapper,
.tile-image-wrapper,
.block-image-wrapper,
.figure:last-child {
  margin-bottom: 0;
}

.main-footer {
  padding: 32px 0;
  background-color: #222;
}

.footer-container {
  display: grid;
  gap: var(--layout-space);
}

.copyright {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.footer-nav {
  display: flex;
  gap: var(--layout-space);
  justify-content: center;
  line-height: 1;
}

.footer-link {
  display: block;
  color: var(--color-text);
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-link:hover {
  color: var(--color-text);
}

.footer-link:hover .fade-in {
  opacity: 1;
}

.footer-link:hover .fade-out,
.fade-in {
  opacity: 0;
}

.footer-icon {
  height: 1.5em;
  margin-bottom: 1.25em;
  width: 1.5em;
}

.fade-in,
.fade-out {
  transition: opacity 0.2s ease-out;
}

.navy,
.blue,
.blue2,
.purple,
.pink,
.black,
.image:not(.white),
.figure,
.main-footer {
  --color-text: #fff;
  --color-primary: var(--color-text);
  --color-hover: #e6f9ff;
  --color-visited: var(--color-text);
  --color-button-text: #0177b2;
}

.navy {
  background-color: #1e1e7c;
}

.blue {
  background-color: #276bdd;
}

.blue2 {
  background-color: #1f1eea;
}

.purple {
  background-color: #7a1774;
}

.pink {
  background-color: #e33a81;
}

.yellow {
  background-color: #f5d239;
}

.black {
  background-color: #000;
}

@media (min-width: 768px) {
  :root {
    --layout-gutter: 24px;
    --layout-margins: 24px;
  }

  hr {
    margin: 4rem 0;
  }

  .logo-wrapper {
    padding: 23px;
  }

  .headline,
  .h1 {
    font-size: 3rem;
  }

  .h2 {
    font-size: 2.25rem;
  }

  .h3 {
    font-size: 1.5rem;
  }

  .button {
    max-width: 100%;
    width: 300px;
  }

  .section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .media-content {
    padding: 50px 60px;
  }

  .quote-block:not(.quote-block-small) {
    padding: 36px 32px 28px 88px;
  }

  .message .quote-block {
    padding: 50px 0;
  }

  .quote-block:not(.quote-block-small)::before {
    top: 0.52em;
    left: 24px;
  }

  .tile.image {
    padding: 50px;
  }
}

@media (min-width: 992px) {
  :root {
    --layout-gutter: 30px;
    --layout-margins: 20px;
  }

  hr {
    margin: 5rem 0;
  }

  .container {
    margin-right: auto;
    margin-left: auto;
    max-width: 1200px;
  }

  .container-small {
    max-width: 992px;
  }

  .container-large {
    max-width: 1660px;
  }

  .container-xlarge {
    max-width: 1920px;
    padding-right: 80px;
    padding-left: 80px;
  }

  .tile .quote {
    display: grid;
    justify-items: start;
  }

  .tile .quote-content,
  .tile .quote-image-wrapper {
    grid-column-start: 1;
    grid-row-start: 1;
  }

  .quote-content {
    position: relative;
    z-index: 1;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    width: 100%;
  }

  .quote-content-2 {
    padding-bottom: 114px;
  }

  .message .quote-content {
    width: auto;
  }

  .tile .quote-image,
  .tile .quote-image img {
    height: 100%;
    object-fit: cover;
  }

  .tile {
    display: grid;
    grid-template-columns: calc(50% + 50px) calc(50% - 50px);
  }

  .tile.image {
    display: flex;
    justify-content: center;
  }

  .tile-image-wrapper,
  .quote-image-wrapper {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  .tile.image .tile-image-wrapper {
    max-width: 980px;
    width: calc(50% + 50px);
  }

  .tile-image,
  .tile-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  .tile.image .tile-content {
    max-width: 840px;
    width: calc(50% - 50px);
  }

  .content-row {
    grid-template-columns: 1fr 2fr;
  }

  .row-content {
    align-self: center;
  }

  .row-content .h1,
  .row-content .h2,
  .row-content .h3,
  .row-content .h4,
  .row-content .h5 {
    text-align: inherit;
  }

  .block-row {
    display: flex;
  }

  .column {
    flex: 1;
  }

  .footer-container {
    align-items: center;
    display: flex;
    justify-content: space-between;
  }

  .copyright {
    text-align: left;
  }

  .footer-nav {
    gap: 40px;
  }
}

@media (min-width: 1200px) {
  .spacer {
    display: block;
    height: var(--layout-space);
  }

  .quote {
    display: grid;
    justify-items: start;
  }

  .quote-content,
  .quote-image-wrapper {
    grid-column-start: 1;
    grid-row-start: 1;
  }

  .quote-content {
    position: relative;
    z-index: 1;
  }

  .quote-content-alt {
    grid-row-start: 2;
    margin: -100px auto 40px;
    padding: 0 80px;
  }

  .quote-content-alt .quote-block {
    max-width: 1120px;
    box-shadow: var(--shadow);
  }

  .quote-content-alt .quote-cite {
    margin-top: var(--layout-margins);
    font-size: 1.25rem;
    line-height: 1.6;
  }

  .quote-content:only-child {
    padding: 0;
  }

  .message .quote-content {
    padding: 6.094vw 2.604vw 3.854vw 2.604vw;
  }

  .quote-block {
    margin-right: auto;
    margin-left: auto;
    max-width: 800px;
  }

  .quote-block-small {
    max-width: 560px;
  }

  .quote-content:only-child .quote-block {
    max-width: 100%;
  }

  .message .quote-block {
    padding: 50px 20px;
    width: 50vw;
    max-width: 945px;
  }

  .quote-image-wrapper {
    width: 100%;
  }

  .quote-image,
  .quote-image img {
    height: 100%;
    object-fit: cover;
  }

  .message .quote-image,
  .message .quote-image img {
    object-position: 75% 50%;
  }

  .tile-content {
    padding-right: 60px;
    padding-left: 60px;
  }

  .content-row {
    padding: 0 120px;
  }
}

@media (min-width: 1400px) {
  .nav-button {
    display: none;
  }

  .main-nav {
    position: static;
    inset: auto;
    overflow: visible;
    overscroll-behavior: auto;
    z-index: auto;
    flex-direction: row;
    font-size: 1.125rem;
    background-color: transparent;
    transform: none;
    opacity: 1;
    visibility: visible;
  }

  .section.hero {
    padding-top: 256px;
    padding-bottom: 256px;
  }
}

@media (min-width: 1600px) {
  :root {
    --layout-space: 2.5rem;
  }

  body {
    font-size: 20px;
    line-height: 2;
  }

  .main-nav {
    font-size: 1.25rem;
  }

  .headline {
    font-size: 5.875rem;
  }

  .h1 {
    font-size: 3.5rem;
  }

  .h2 {
    font-size: 2.5rem;
  }

  .h3 {
    font-size: 2rem;
  }

  .h4,
  .copyright {
    font-size: 1.5rem;
  }

  .h5 {
    font-size: 1.25rem;
  }

  .button {
    font-size: 18px;
    line-height: 1.3333;
  }
}
