@charset "UTF-8";
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;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, 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;
}

section {
  margin: 0 auto;
  max-width: 1440px;
}

body {
  font-family: freight-sans-pro, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  color: #008996;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

h1, h2 {
  font-family: jubilat, serif;
  font-weight: 600;
}

h3, h4, h5, h6 {
  font-weight: 600;
}

strong {
  font-weight: 700;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.disclaimer {
  font-size: 0.875rem;
}

small, sub, sup {
  font-size: 0.875rem;
}

sub {
  vertical-align: sub;
}

sup {
  vertical-align: super;
}

em {
  font-style: italic;
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  font: inherit;
  display: inline-block;
  overflow: visible;
  margin: 0;
  padding: 15px;
  cursor: pointer;
  transition-timing-function: linear;
  transition-duration: 0.15s;
  transition-property: opacity, filter;
  text-transform: none;
  color: inherit;
  border: 0;
  background-color: transparent;
}

.hamburger.is-active:hover, .hamburger:hover {
  opacity: 0.7;
}

.hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner:after, .hamburger.is-active .hamburger-inner:before {
  background-color: #000;
}

.hamburger-box {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 24px;
}

.hamburger-inner {
  top: 50%;
  display: block;
  margin-top: -2px;
}

.hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
  position: absolute;
  width: 40px;
  height: 4px;
  transition-timing-function: ease;
  transition-duration: 0.15s;
  transition-property: transform;
  border-radius: 4px;
  background-color: #000;
}

.hamburger-inner:after, .hamburger-inner:before {
  display: block;
  content: "";
}

.hamburger-inner:before {
  top: -10px;
}

.hamburger-inner:after {
  bottom: -10px;
}

.hamburger--3dx .hamburger-box {
  perspective: 80px;
}

.hamburger--3dx .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
}

.hamburger--3dx .hamburger-inner:after, .hamburger--3dx .hamburger-inner:before {
  transition: transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
}

.hamburger--3dx.is-active .hamburger-inner {
  transform: rotateY(180deg);
  background-color: transparent !important;
}

.hamburger--3dx.is-active .hamburger-inner:before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dx.is-active .hamburger-inner:after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

.hamburger--3dx-r .hamburger-box {
  perspective: 80px;
}

.hamburger--3dx-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
}

.hamburger--3dx-r .hamburger-inner:after, .hamburger--3dx-r .hamburger-inner:before {
  transition: transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
}

.hamburger--3dx-r.is-active .hamburger-inner {
  transform: rotateY(-180deg);
  background-color: transparent !important;
}

.hamburger--3dx-r.is-active .hamburger-inner:before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dx-r.is-active .hamburger-inner:after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

.hamburger--3dy .hamburger-box {
  perspective: 80px;
}

.hamburger--3dy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
}

.hamburger--3dy .hamburger-inner:after, .hamburger--3dy .hamburger-inner:before {
  transition: transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
}

.hamburger--3dy.is-active .hamburger-inner {
  transform: rotateX(-180deg);
  background-color: transparent !important;
}

.hamburger--3dy.is-active .hamburger-inner:before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dy.is-active .hamburger-inner:after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

.hamburger--3dy-r .hamburger-box {
  perspective: 80px;
}

.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
}

.hamburger--3dy-r .hamburger-inner:after, .hamburger--3dy-r .hamburger-inner:before {
  transition: transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
}

.hamburger--3dy-r.is-active .hamburger-inner {
  transform: rotateX(180deg);
  background-color: transparent !important;
}

.hamburger--3dy-r.is-active .hamburger-inner:before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dy-r.is-active .hamburger-inner:after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

.hamburger--3dxy .hamburger-box {
  perspective: 80px;
}

.hamburger--3dxy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
}

.hamburger--3dxy .hamburger-inner:after, .hamburger--3dxy .hamburger-inner:before {
  transition: transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
}

.hamburger--3dxy.is-active .hamburger-inner {
  transform: rotateX(180deg) rotateY(180deg);
  background-color: transparent !important;
}

.hamburger--3dxy.is-active .hamburger-inner:before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dxy.is-active .hamburger-inner:after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

.hamburger--3dxy-r .hamburger-box {
  perspective: 80px;
}

.hamburger--3dxy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
}

.hamburger--3dxy-r .hamburger-inner:after, .hamburger--3dxy-r .hamburger-inner:before {
  transition: transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
}

.hamburger--3dxy-r.is-active .hamburger-inner {
  transform: rotateX(180deg) rotateY(180deg) rotate(-180deg);
  background-color: transparent !important;
}

.hamburger--3dxy-r.is-active .hamburger-inner:before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dxy-r.is-active .hamburger-inner:after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

.hamburger--arrow.is-active .hamburger-inner:before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scaleX(0.7);
}

.hamburger--arrow.is-active .hamburger-inner:after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scaleX(0.7);
}

.hamburger--arrow-r.is-active .hamburger-inner:before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scaleX(0.7);
}

.hamburger--arrow-r.is-active .hamburger-inner:after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scaleX(0.7);
}

.hamburger--arrowalt .hamburger-inner:before {
  transition: top 0.1s ease 0.1s, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt .hamburger-inner:after {
  transition: bottom 0.1s ease 0.1s, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt.is-active .hamburger-inner:before {
  top: 0;
  transition: top 0.1s ease, transform 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.1s;
  transform: translate3d(-8px, -10px, 0) rotate(-45deg) scaleX(0.7);
}

.hamburger--arrowalt.is-active .hamburger-inner:after {
  bottom: 0;
  transition: bottom 0.1s ease, transform 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.1s;
  transform: translate3d(-8px, 10px, 0) rotate(45deg) scaleX(0.7);
}

.hamburger--arrowalt-r .hamburger-inner:before {
  transition: top 0.1s ease 0.1s, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt-r .hamburger-inner:after {
  transition: bottom 0.1s ease 0.1s, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt-r.is-active .hamburger-inner:before {
  top: 0;
  transition: top 0.1s ease, transform 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.1s;
  transform: translate3d(8px, -10px, 0) rotate(45deg) scaleX(0.7);
}

.hamburger--arrowalt-r.is-active .hamburger-inner:after {
  bottom: 0;
  transition: bottom 0.1s ease, transform 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.1s;
  transform: translate3d(8px, 10px, 0) rotate(-45deg) scaleX(0.7);
}

.hamburger--arrowturn.is-active .hamburger-inner {
  transform: rotate(-180deg);
}

.hamburger--arrowturn.is-active .hamburger-inner:before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scaleX(0.7);
}

.hamburger--arrowturn.is-active .hamburger-inner:after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scaleX(0.7);
}

.hamburger--arrowturn-r.is-active .hamburger-inner {
  transform: rotate(-180deg);
}

.hamburger--arrowturn-r.is-active .hamburger-inner:before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scaleX(0.7);
}

.hamburger--arrowturn-r.is-active .hamburger-inner:after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scaleX(0.7);
}

.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner:after, .hamburger--boring .hamburger-inner:before {
  transition-property: none;
}

.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg);
}

.hamburger--boring.is-active .hamburger-inner:before {
  top: 0;
  opacity: 0;
}

.hamburger--boring.is-active .hamburger-inner:after {
  bottom: 0;
  transform: rotate(-90deg);
}

.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-duration: 0.13s;
}

.hamburger--collapse .hamburger-inner:after {
  top: -20px;
  transition: top 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, opacity 0.1s linear;
}

.hamburger--collapse .hamburger-inner:before {
  transition: top 0.12s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse.is-active .hamburger-inner {
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

.hamburger--collapse.is-active .hamburger-inner:after {
  top: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s linear 0.22s;
  opacity: 0;
}

.hamburger--collapse.is-active .hamburger-inner:before {
  top: 0;
  transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.16s, transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s;
  transform: rotate(-90deg);
}

.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-duration: 0.13s;
}

.hamburger--collapse-r .hamburger-inner:after {
  top: -20px;
  transition: top 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, opacity 0.1s linear;
}

.hamburger--collapse-r .hamburger-inner:before {
  transition: top 0.12s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse-r.is-active .hamburger-inner {
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, -10px, 0) rotate(45deg);
}

.hamburger--collapse-r.is-active .hamburger-inner:after {
  top: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s linear 0.22s;
  opacity: 0;
}

.hamburger--collapse-r.is-active .hamburger-inner:before {
  top: 0;
  transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.16s, transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s;
  transform: rotate(90deg);
}

.hamburger--elastic .hamburger-inner {
  top: 2px;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition-duration: 0.275s;
}

.hamburger--elastic .hamburger-inner:before {
  top: 10px;
  transition: opacity 0.125s ease 0.275s;
}

.hamburger--elastic .hamburger-inner:after {
  top: 20px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic.is-active .hamburger-inner {
  transition-delay: 75ms;
  transform: translate3d(0, 10px, 0) rotate(135deg);
}

.hamburger--elastic.is-active .hamburger-inner:before {
  transition-delay: 0s;
  opacity: 0;
}

.hamburger--elastic.is-active .hamburger-inner:after {
  transition-delay: 75ms;
  transform: translate3d(0, -20px, 0) rotate(-270deg);
}

.hamburger--elastic-r .hamburger-inner {
  top: 2px;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition-duration: 0.275s;
}

.hamburger--elastic-r .hamburger-inner:before {
  top: 10px;
  transition: opacity 0.125s ease 0.275s;
}

.hamburger--elastic-r .hamburger-inner:after {
  top: 20px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic-r.is-active .hamburger-inner {
  transition-delay: 75ms;
  transform: translate3d(0, 10px, 0) rotate(-135deg);
}

.hamburger--elastic-r.is-active .hamburger-inner:before {
  transition-delay: 0s;
  opacity: 0;
}

.hamburger--elastic-r.is-active .hamburger-inner:after {
  transition-delay: 75ms;
  transform: translate3d(0, -20px, 0) rotate(270deg);
}

.hamburger--emphatic {
  overflow: hidden;
}

.hamburger--emphatic .hamburger-inner {
  transition: background-color 0.125s ease-in 0.175s;
}

.hamburger--emphatic .hamburger-inner:before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s linear 0.125s, left 0.125s ease-in 0.175s;
}

.hamburger--emphatic .hamburger-inner:after {
  top: 10px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s linear 0.125s, right 0.125s ease-in 0.175s;
}

.hamburger--emphatic.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent !important;
}

.hamburger--emphatic.is-active .hamburger-inner:before {
  top: -80px;
  left: -80px;
  transition: left 0.125s ease-out, top 0.05s linear 0.125s, transform 0.125s cubic-bezier(0.075, 0.82, 0.165, 1) 0.175s;
  transform: translate3d(80px, 80px, 0) rotate(45deg);
}

.hamburger--emphatic.is-active .hamburger-inner:after {
  top: -80px;
  right: -80px;
  transition: right 0.125s ease-out, top 0.05s linear 0.125s, transform 0.125s cubic-bezier(0.075, 0.82, 0.165, 1) 0.175s;
  transform: translate3d(-80px, 80px, 0) rotate(-45deg);
}

.hamburger--emphatic-r {
  overflow: hidden;
}

.hamburger--emphatic-r .hamburger-inner {
  transition: background-color 0.125s ease-in 0.175s;
}

.hamburger--emphatic-r .hamburger-inner:before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s linear 0.125s, left 0.125s ease-in 0.175s;
}

.hamburger--emphatic-r .hamburger-inner:after {
  top: 10px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s linear 0.125s, right 0.125s ease-in 0.175s;
}

.hamburger--emphatic-r.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent !important;
}

.hamburger--emphatic-r.is-active .hamburger-inner:before {
  top: 80px;
  left: -80px;
  transition: left 0.125s ease-out, top 0.05s linear 0.125s, transform 0.125s cubic-bezier(0.075, 0.82, 0.165, 1) 0.175s;
  transform: translate3d(80px, -80px, 0) rotate(-45deg);
}

.hamburger--emphatic-r.is-active .hamburger-inner:after {
  top: 80px;
  right: -80px;
  transition: right 0.125s ease-out, top 0.05s linear 0.125s, transform 0.125s cubic-bezier(0.075, 0.82, 0.165, 1) 0.175s;
  transform: translate3d(-80px, -80px, 0) rotate(45deg);
}

.hamburger--minus .hamburger-inner:after, .hamburger--minus .hamburger-inner:before {
  transition: bottom 0.08s ease-out 0s, top 0.08s ease-out 0s, opacity 0s linear;
}

.hamburger--minus.is-active .hamburger-inner:after, .hamburger--minus.is-active .hamburger-inner:before {
  transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s linear 0.08s;
  opacity: 0;
}

.hamburger--minus.is-active .hamburger-inner:before {
  top: 0;
}

.hamburger--minus.is-active .hamburger-inner:after {
  bottom: 0;
}

.hamburger--slider .hamburger-inner {
  top: 2px;
}

.hamburger--slider .hamburger-inner:before {
  top: 10px;
  transition-timing-function: ease;
  transition-duration: 0.15s;
  transition-property: transform, opacity;
}

.hamburger--slider .hamburger-inner:after {
  top: 20px;
}

.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--slider.is-active .hamburger-inner:before {
  transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
  opacity: 0;
}

.hamburger--slider.is-active .hamburger-inner:after {
  transform: translate3d(0, -20px, 0) rotate(-90deg);
}

.hamburger--slider-r .hamburger-inner {
  top: 2px;
}

.hamburger--slider-r .hamburger-inner:before {
  top: 10px;
  transition-timing-function: ease;
  transition-duration: 0.15s;
  transition-property: transform, opacity;
}

.hamburger--slider-r .hamburger-inner:after {
  top: 20px;
}

.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-45deg);
}

.hamburger--slider-r.is-active .hamburger-inner:before {
  transform: rotate(45deg) translate3d(5.71429px, -6px, 0);
  opacity: 0;
}

.hamburger--slider-r.is-active .hamburger-inner:after {
  transform: translate3d(0, -20px, 0) rotate(90deg);
}

.hamburger--spin .hamburger-inner {
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-duration: 0.22s;
}

.hamburger--spin .hamburger-inner:before {
  transition: top 0.1s ease-in 0.25s, opacity 0.1s ease-in;
}

.hamburger--spin .hamburger-inner:after {
  transition: bottom 0.1s ease-in 0.25s, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin.is-active .hamburger-inner {
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: rotate(225deg);
}

.hamburger--spin.is-active .hamburger-inner:before {
  top: 0;
  transition: top 0.1s ease-out, opacity 0.1s ease-out 0.12s;
  opacity: 0;
}

.hamburger--spin.is-active .hamburger-inner:after {
  bottom: 0;
  transition: bottom 0.1s ease-out, transform 0.22s cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  transform: rotate(-90deg);
}

.hamburger--spin-r .hamburger-inner {
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-duration: 0.22s;
}

.hamburger--spin-r .hamburger-inner:before {
  transition: top 0.1s ease-in 0.25s, opacity 0.1s ease-in;
}

.hamburger--spin-r .hamburger-inner:after {
  transition: bottom 0.1s ease-in 0.25s, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin-r.is-active .hamburger-inner {
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: rotate(-225deg);
}

.hamburger--spin-r.is-active .hamburger-inner:before {
  top: 0;
  transition: top 0.1s ease-out, opacity 0.1s ease-out 0.12s;
  opacity: 0;
}

.hamburger--spin-r.is-active .hamburger-inner:after {
  bottom: 0;
  transition: bottom 0.1s ease-out, transform 0.22s cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  transform: rotate(90deg);
}

.hamburger--spring .hamburger-inner {
  top: 2px;
  transition: background-color 0s linear 0.13s;
}

.hamburger--spring .hamburger-inner:before {
  top: 10px;
  transition: top 0.1s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring .hamburger-inner:after {
  top: 20px;
  transition: top 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.22s;
  background-color: transparent !important;
}

.hamburger--spring.is-active .hamburger-inner:before {
  top: 0;
  transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.15s, transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--spring.is-active .hamburger-inner:after {
  top: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
  transform: translate3d(0, 10px, 0) rotate(-45deg);
}

.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-duration: 0.13s;
}

.hamburger--spring-r .hamburger-inner:after {
  top: -20px;
  transition: top 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, opacity 0s linear;
}

.hamburger--spring-r .hamburger-inner:before {
  transition: top 0.1s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring-r.is-active .hamburger-inner {
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

.hamburger--spring-r.is-active .hamburger-inner:after {
  top: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s linear 0.22s;
  opacity: 0;
}

.hamburger--spring-r.is-active .hamburger-inner:before {
  top: 0;
  transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.15s, transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
  transform: rotate(90deg);
}

.hamburger--stand .hamburger-inner {
  transition: transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.15s, background-color 0s linear 75ms;
}

.hamburger--stand .hamburger-inner:before {
  transition: top 75ms ease-in 75ms, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
}

.hamburger--stand .hamburger-inner:after {
  transition: bottom 75ms ease-in 75ms, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
}

.hamburger--stand.is-active .hamburger-inner {
  transition: transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0s, background-color 0s linear 0.15s;
  transform: rotate(90deg);
  background-color: transparent !important;
}

.hamburger--stand.is-active .hamburger-inner:before {
  top: 0;
  transition: top 75ms ease-out 0.1s, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s;
  transform: rotate(-45deg);
}

.hamburger--stand.is-active .hamburger-inner:after {
  bottom: 0;
  transition: bottom 75ms ease-out 0.1s, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s;
  transform: rotate(45deg);
}

.hamburger--stand-r .hamburger-inner {
  transition: transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.15s, background-color 0s linear 75ms;
}

.hamburger--stand-r .hamburger-inner:before {
  transition: top 75ms ease-in 75ms, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
}

.hamburger--stand-r .hamburger-inner:after {
  transition: bottom 75ms ease-in 75ms, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
}

.hamburger--stand-r.is-active .hamburger-inner {
  transition: transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0s, background-color 0s linear 0.15s;
  transform: rotate(-90deg);
  background-color: transparent !important;
}

.hamburger--stand-r.is-active .hamburger-inner:before {
  top: 0;
  transition: top 75ms ease-out 0.1s, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s;
  transform: rotate(-45deg);
}

.hamburger--stand-r.is-active .hamburger-inner:after {
  bottom: 0;
  transition: bottom 75ms ease-out 0.1s, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s;
  transform: rotate(45deg);
}

.hamburger--squeeze .hamburger-inner {
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-duration: 75ms;
}

.hamburger--squeeze .hamburger-inner:before {
  transition: top 75ms ease 0.12s, opacity 75ms ease;
}

.hamburger--squeeze .hamburger-inner:after {
  transition: bottom 75ms ease 0.12s, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze.is-active .hamburger-inner {
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: rotate(45deg);
}

.hamburger--squeeze.is-active .hamburger-inner:before {
  top: 0;
  transition: top 75ms ease, opacity 75ms ease 0.12s;
  opacity: 0;
}

.hamburger--squeeze.is-active .hamburger-inner:after {
  bottom: 0;
  transition: bottom 75ms ease, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  transform: rotate(-90deg);
}

.hamburger--vortex .hamburger-inner {
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transition-duration: 0.2s;
}

.hamburger--vortex .hamburger-inner:after, .hamburger--vortex .hamburger-inner:before {
  transition-delay: 0.1s;
  transition-timing-function: linear;
  transition-duration: 0s;
}

.hamburger--vortex .hamburger-inner:before {
  transition-property: top, opacity;
}

.hamburger--vortex .hamburger-inner:after {
  transition-property: bottom, transform;
}

.hamburger--vortex.is-active .hamburger-inner {
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transform: rotate(765deg);
}

.hamburger--vortex.is-active .hamburger-inner:after, .hamburger--vortex.is-active .hamburger-inner:before {
  transition-delay: 0s;
}

.hamburger--vortex.is-active .hamburger-inner:before {
  top: 0;
  opacity: 0;
}

.hamburger--vortex.is-active .hamburger-inner:after {
  bottom: 0;
  transform: rotate(90deg);
}

.hamburger--vortex-r .hamburger-inner {
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transition-duration: 0.2s;
}

.hamburger--vortex-r .hamburger-inner:after, .hamburger--vortex-r .hamburger-inner:before {
  transition-delay: 0.1s;
  transition-timing-function: linear;
  transition-duration: 0s;
}

.hamburger--vortex-r .hamburger-inner:before {
  transition-property: top, opacity;
}

.hamburger--vortex-r .hamburger-inner:after {
  transition-property: bottom, transform;
}

.hamburger--vortex-r.is-active .hamburger-inner {
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transform: rotate(-765deg);
}

.hamburger--vortex-r.is-active .hamburger-inner:after, .hamburger--vortex-r.is-active .hamburger-inner:before {
  transition-delay: 0s;
}

.hamburger--vortex-r.is-active .hamburger-inner:before {
  top: 0;
  opacity: 0;
}

.hamburger--vortex-r.is-active .hamburger-inner:after {
  bottom: 0;
  transform: rotate(-90deg);
}

.modals {
  display: none;
}

.scrim {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  z-index: 6;
  transition: opacity 0.3s ease-out;
  display: flex;
  pointer-events: none;
  /*content styling */
}
.scrim.open {
  opacity: 1;
  pointer-events: all;
}
.scrim.open .download-modal {
  display: block;
}
.scrim .content {
  width: 400px;
  margin: auto;
  max-height: 100%;
  overflow-y: scroll;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  /* intro */
  /* MCIP */
}
.scrim .content::-webkit-scrollbar {
  display: none;
}
.scrim .content .download-modal {
  background: #fff;
  padding: 10px;
}
.scrim .content .download-modal .wrapper {
  border: 8px solid rgba(0, 136, 148, 0.4588235294);
  border-radius: 8px;
  padding: 20px;
}
.scrim .content .download-modal h1 {
  font-size: 26px;
  margin-bottom: 10px;
}
.scrim .content .download-modal form {
  padding: 20px 0px 10px 0px;
  max-width: 100%;
  margin: 0 auto;
}
.scrim .content .download-modal input {
  font-size: 16px;
  padding: 6px 8px;
  margin-bottom: 10px;
  border: 1px solid rgba(0, 136, 148, 0.5607843137);
  width: 80%;
}
.scrim .content .download-modal button {
  display: inline-block;
  background: #008894;
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  margin: 8px 0px;
  border: 0;
}
.scrim .content .download-modal label {
  display: block;
  text-align: left;
  text-transform: uppercase;
  color: grey;
}
.scrim .content .bucket {
  background-color: #fff;
  border-left: 20px solid #c9e2a9;
  width: 100%;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 400px;
  margin-right: 1.5%;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 60px;
  padding-bottom: 40px;
  position: relative;
}
.scrim .content .bucket .more-link {
  position: absolute;
  right: 25px;
  bottom: 9px;
  text-decoration: underline;
  background-color: white;
  padding-left: 8px;
  font-weight: 700;
  color: #c9e2a9;
  cursor: pointer;
}
.scrim .content .bucket ul {
  padding-top: 10px;
  padding-bottom: 10px;
}
.scrim .content .bucket ul li {
  color: #ac82ba;
  padding-top: 8px;
  padding-bottom: 8px;
  font-weight: bold;
}
.scrim .content .bucket.border-left-orange {
  border-color: #f9bb80;
}
.scrim .content .bucket.border-left-orange .more-link {
  color: #f9bb80;
}
.scrim .content .bucket.border-left-orange li {
  color: #f9bb80;
}
.scrim .content .bucket.border-left-purple {
  border-color: #ac82ba;
}
.scrim .content .bucket.border-left-purple .more-link {
  color: #ac82ba;
}
.scrim .content .bucket.border-left-purple li {
  color: #ac82ba;
}
.scrim .content .bucket h2 {
  font-size: 40px;
  font-weight: 700;
  margin: 0;
}
.scrim .content .bucket h3 {
  font-family: freight-sans-pro, sans-serif;
  font-weight: 600;
  padding-top: 30px;
  font-size: 24px;
  line-height: 20px;
  padding-bottom: 20px;
  margin: 0 0 10px 0;
  width: 90%;
}
.scrim .content .bucket h4 {
  color: #000;
  font-size: 16px;
  margin: 0;
}
.scrim .content .bucket p {
  margin: 0;
}
.scrim .content .bucket .extra-modal-content {
  display: block;
  margin-top: 1rem;
  padding: 0;
}
.scrim .content .mcip-modal {
  background: #fff;
  padding: 30px;
}
.scrim .content .mcip-modal h2 {
  color: #ac82ba;
  font-size: 20px;
  padding-bottom: 20px;
}
.scrim .content .mcip-modal .more-link {
  display: block;
  text-align: right;
  padding-top: 20px;
  border-bottom: 2px dotted #ac82ba;
  padding-bottom: 8px;
  color: #ac82ba;
}
.scrim .content .bucket-grid-bucket {
  border-left: 0;
  padding: 30px;
  padding-bottom: 60px;
}
.scrim .content .bucket-grid-bucket .bucket-image {
  max-width: 100%;
}
.scrim .content .bucket-grid-bucket .bucket-image img {
  width: 100%;
}
.scrim .content .bucket-grid-bucket .inner {
  border-left: 2px dotted #818287;
  padding-left: 20px;
  margin-top: 20px;
}
.scrim .content .bucket-grid-bucket .inner b {
  font-weight: bold;
}
.scrim .content .bucket-grid-bucket .inner h4 {
  padding-top: 8px;
  padding-bottom: 8px;
  font-weight: bold;
}
.scrim .content .bucket-grid-bucket .inner h3 {
  color: #000;
  padding-top: 0;
  padding-bottom: 0;
  font-weight: 700;
  font-size: 16px;
}
.scrim .content .bucket-grid-bucket .inner .more-link {
  color: #000;
}

.anim {
  --xyz-appear-opacity: 0;
}

.anim {
  animation-duration: 1s;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  opacity: 0;
}

.anim.xyz-in {
  animation-name: fadeInUp;
  -webkit-animation-name: fadeInUp;
}

.anim[xyz~=delay-2] {
  animation-delay: 0.2s;
}

.anim[xyz~=delay-4] {
  animation-delay: 0.4s;
}

.anim[xyz~=delay-5] {
  animation-delay: 0.5s;
}

.anim[xyz~=delay-6] {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  from {
    transform: translate3d(0, 80px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
header {
  background: #259aa5;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 5;
}
header .header-inner {
  max-width: 1440px;
  margin: 0 auto;
  /*mobile*/
}
header .header-inner a {
  text-decoration: none;
  color: #fff;
}
header .header-inner .header-logo {
  margin: 19px;
  width: 130px;
}
header .header-inner ul#menu {
  display: inline-flex;
  float: right;
  margin: 32px 87px 56px 0px;
  height: 40px;
}
header .header-inner ul#menu li {
  font-size: 18px;
  font-weight: 500;
  width: 150px;
  text-align: center;
}
header .header-inner ul#menu li .button {
  width: 200px;
  display: inline-block;
  background: #fff;
  border-radius: 6px;
  color: #259aa5;
  padding: 8px;
  margin-top: -8px;
}
header .header-inner .hamburger {
  border: 0;
  -webkit-tap-highlight-color: transparent;
  outline: 0;
  display: none;
  float: right;
  margin: 15px 15px 0px 15px;
}
header .header-inner .hamburger .hamburger-inner, header .header-inner .hamburger .hamburger-inner:after, header .header-inner .hamburger .hamburger-inner:before {
  background-color: #fff;
}
header .header-inner ul#menu.open {
  padding-top: 0px;
  padding-bottom: 40px;
  margin-top: 0px;
  display: block;
  width: 100%;
  background: #259aa5;
  float: none;
  margin: 0;
  height: -moz-fit-content;
  height: fit-content;
}
header .header-inner ul#menu.open li {
  text-align: center;
  width: 100%;
  padding: 20px;
}

.hero-container {
  background-image: url("images/home-hero-2024-v2-min.jpg");
  background-position: top center;
  background-size: cover;
  height: 550px;
  height: 35vw;
  margin-top: 80px;
  max-height: 550px;
  width: 100%;
}
.hero-container .hero-container-inner {
  height: 100%;
  max-width: 1440px;
  margin: 0px auto;
  position: relative;
}
.hero-container .hero-container-inner h1 {
  font-size: 4vw;
  margin-left: 27px;
  display: block;
  font-weight: 600;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 1600px) {
  .hero-container .hero-container-inner h1 {
    font-size: 63px;
  }
}

section.intro {
  display: flex;
  margin-top: -40px;
  padding-left: 27px;
  margin-bottom: 40px;
}
section.intro .bucket {
  background-color: #fff;
  border-left: 20px solid #c9e2a9;
  width: 30%;
  margin-right: 1.5%;
  padding-left: 30px;
  padding-top: 60px;
  position: relative;
}
section.intro .bucket .more-link {
  position: absolute;
  right: 25px;
  bottom: 9px;
  text-decoration: underline;
  background-color: white;
  padding-left: 8px;
  font-weight: 700;
  color: #c9e2a9;
  cursor: pointer;
}
section.intro .bucket ul {
  padding-top: 10px;
  padding-bottom: 10px;
}
section.intro .bucket ul li {
  color: #ac82ba;
  padding-top: 8px;
  padding-bottom: 8px;
  font-weight: bold;
}
section.intro .bucket.border-left-orange {
  border-color: #f9bb80;
}
section.intro .bucket.border-left-orange .more-link {
  color: #f9bb80;
}
section.intro .bucket.border-left-orange li {
  color: #f9bb80;
}
section.intro .bucket.border-left-purple {
  border-color: #ac82ba;
}
section.intro .bucket.border-left-purple .more-link {
  color: #ac82ba;
}
section.intro .bucket h2 {
  font-size: 40px;
  font-weight: 700;
  margin: 0;
}
section.intro .bucket h3 {
  font-family: freight-sans-pro, sans-serif;
  font-weight: 600;
  padding-top: 30px;
  font-size: 24px;
  line-height: 20px;
  border-bottom: 2px dotted #259aa5;
  padding-bottom: 40px;
  margin-bottom: 10px;
  width: 90%;
}
section.intro .bucket .extra-modal-content {
  display: none;
}

section.mcip {
  background: #f0f0f0;
  border: 1px solid #c9cacc;
  font-size: 21px;
  font-weight: 300;
  padding: 55px 40px;
}
section.mcip ol {
  list-style: decimal;
}

.mobile-only-stat {
  display: none;
}

@media screen and (max-width: 800px) {
  .mobile-only-stat {
    border-bottom: 1px solid #000;
    display: block;
    margin-bottom: 1.5rem;
  }
}
.scrim .extra-modal-content {
  background: #fff;
  padding: 30px;
}
.scrim .extra-modal-content .two-parter {
  align-items: center;
  margin-bottom: 1rem;
}
.scrim .extra-modal-content .two-parter h3 {
  margin: 0;
}
.scrim .extra-modal-content h3,
.scrim .extra-modal-content h4 {
  font-family: jubilat, serif;
  text-transform: none;
}
.scrim .extra-modal-content .more-link {
  cursor: pointer;
  font-weight: 700;
  text-align: right;
  text-decoration: underline;
}

.goals-container {
  margin: 100px 0;
}
.goals-container.goals-set-2 {
  margin-top: 200px;
}
@media screen and (max-width: 1100px) {
  .goals-container.goals-set-2 {
    margin: 30px 0;
  }
}
@media screen and (max-width: 1100px) {
  .goals-container {
    margin: 30px 0;
  }
}

.goals-inner {
  background: #259aa5;
  border-bottom: 15px solid #afcfd5;
  color: #fff;
  display: flex;
  justify-content: space-between;
  padding: 30px;
}
@media screen and (max-width: 1100px) {
  .goals-inner {
    flex-direction: column;
    padding: 30px 15px;
  }
}

.goals-intro,
.goals-footer {
  flex-basis: 270px;
}
.goals-intro p,
.goals-footer p {
  font-size: 1.5rem;
  line-height: 1.3;
  margin-bottom: 0;
}
@media screen and (max-width: 1200px) {
  .goals-intro p,
  .goals-footer p {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 1100px) {
  .goals-intro,
  .goals-footer {
    flex-basis: 100%;
  }
}
.goals-intro img,
.goals-footer img {
  position: absolute;
  bottom: 50px;
  right: 30px;
  width: 100px;
}
@media screen and (max-width: 1100px) {
  .goals-intro img,
  .goals-footer img {
    margin-top: 1.5rem;
    position: relative;
    bottom: auto;
    right: auto;
  }
}

.goals-intro {
  padding-right: 15px;
}
@media screen and (max-width: 1100px) {
  .goals-intro {
    margin-bottom: 30px;
    padding-right: 0;
  }
}

.goals-footer {
  padding-left: 15px;
}
@media screen and (max-width: 1100px) {
  .goals-footer {
    margin-top: 30px;
    padding-left: 0;
  }
}

.goals {
  display: flex;
  flex-basis: calc(100% - 600px);
  flex-direction: column;
  justify-content: space-between;
  margin-top: -80px;
  margin-bottom: -90px;
}
@media screen and (max-width: 1100px) {
  .goals {
    margin-top: 0;
    margin-bottom: 0;
  }
}

.goal {
  align-items: stretch;
  -webkit-clip-path: polygon(0% 0%, 97% 0, 100% 50%, 97% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 97% 0, 100% 50%, 97% 100%, 0% 100%);
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
  max-width: 100%;
  min-height: 126px;
  min-width: 640px;
  position: relative;
}
.goal .extra-modal-content {
  display: none;
}
.goal h3 {
  font-family: jubilat, serif;
  margin: 0;
}
.goal:after {
  background: #fff;
  -webkit-clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 75% 50%, 0% 0%);
          clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 75% 50%, 0% 0%);
  content: "";
  height: calc(100% + 2px);
  position: absolute;
  top: -1px;
  bottom: -1px;
  right: -1px;
  width: 30px;
}
@media screen and (max-width: 1100px) {
  .goal:after {
    width: 40px;
  }
}
@media screen and (max-width: 950px) {
  .goal:after {
    width: 30px;
  }
}
@media screen and (max-width: 800px) {
  .goal:after {
    display: none;
  }
}
.goal:last-child {
  margin-bottom: 0;
}
.goal .more-link {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  position: relative;
  text-align: right;
  text-decoration: none;
  text-transform: uppercase;
  width: 100%;
}
.goal .more-link:before {
  border-bottom: 2px dotted #259aa5;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
}
.goal .more-link span {
  background: #fff;
  padding-left: 5px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 800px) {
  .goal {
    -webkit-clip-path: none;
            clip-path: none;
    min-width: 0;
  }
}

.goal-col-1,
.goal-col-2,
.goal-col-3,
.goal-col-4 {
  align-items: center;
  display: flex;
}

.goal-col-1 {
  flex-basis: 40px;
  flex-shrink: 0;
  margin-right: 15px;
  padding: 10px 15px;
  position: relative;
  text-align: center;
}
.goal-col-1 h4 {
  color: #fff;
  font-family: jubilat, serif;
  font-size: 1rem;
  margin: 0;
}
.goal-col-1 h4 strong {
  font-size: 2rem;
}
.goal-col-1:after {
  content: "";
  border-right: 2px dotted #fff;
  height: 60%;
  position: absolute;
  top: 20%;
  right: 0;
}

.goal-col-2 p {
  font-size: 1.5rem;
  margin: 0;
  padding-right: 15px;
}
@media screen and (max-width: 1200px) {
  .goal-col-2 p {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 640px) {
  .goal-col-2 p {
    font-size: 1rem;
  }
}
@media screen and (max-width: 1100px) {
  .goal-col-2 {
    flex-basis: calc(60% - 75px);
  }
}
@media screen and (max-width: 800px) {
  .goal-col-2 {
    flex-basis: calc(100% - 75px);
  }
}

.goal-col-3 {
  align-items: flex-start;
  background: #fff;
  flex-basis: 250px;
  flex-shrink: 0;
  flex-direction: column;
  justify-content: center;
  padding: 10px 0 10px 20px;
  position: relative;
}
.goal-col-3:before {
  content: "";
  -webkit-clip-path: polygon(0 0, 100% 100%, 100% 0);
          clip-path: polygon(0 0, 100% 100%, 100% 0);
  display: inline-block;
  width: 10px;
  height: 50%;
  position: absolute;
  top: 0;
  background: white;
  left: -10px;
}
.goal-col-3:after {
  content: "";
  -webkit-clip-path: polygon(100% 0, 0 100%, 100% 100%);
          clip-path: polygon(100% 0, 0 100%, 100% 100%);
  display: inline-block;
  width: 10px;
  height: 50%;
  position: absolute;
  bottom: 0;
  background: white;
  left: -10px;
}
@media screen and (max-width: 1100px) {
  .goal-col-3 {
    flex-basis: 40%;
  }
}
@media screen and (max-width: 800px) {
  .goal-col-3 {
    display: none;
  }
}

.two-parter {
  display: flex;
}
.two-parter h3 {
  flex-basis: 60px;
  flex-shrink: 0;
  text-align: center;
}

.explanation {
  color: #000;
  font-size: 0.9rem;
  margin: 0;
  padding-left: 10px;
}

.goal-col-4 {
  background: #fff;
  flex-basis: 35px;
  flex-shrink: 0;
  padding: 0 30px 0 15px;
}
.goal-col-4 img {
  vertical-align: middle;
  width: 35px;
}
@media screen and (max-width: 800px) {
  .goal-col-4 img {
    margin-bottom: 10px;
  }
}
.goal-col-4 .more-link {
  display: none;
}
@media screen and (max-width: 800px) {
  .goal-col-4 .more-link {
    display: block;
    margin: 0 auto;
  }
}
@media screen and (max-width: 800px) {
  .goal-col-4 {
    flex-direction: column;
    justify-content: center;
    padding: 0 15px;
  }
}

.eyebrow {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  text-transform: uppercase;
}

.goal-1 {
  background: #00c0dd;
  border: 1px solid #a0dbec;
}
.goal-1 h3,
.goal-1 .eyebrow,
.goal-1 .more-link {
  color: #00c0dd;
}
.goal-1 .more-link:before {
  border-bottom: 2px dotted #00c0dd;
}
.goal-1:after {
  background: #00c0dd;
}

.mcip-modal-1 .eyebrow,
.mcip-modal-1 h3,
.mcip-modal-1 h4 {
  color: #00c0dd;
}

.goal-2 {
  background: #2b9947;
  border: 1px solid #c9e2a9;
}
.goal-2 h3,
.goal-2 .eyebrow,
.goal-2 .more-link {
  color: #2b9947;
}
.goal-2 .more-link:before {
  border-bottom: 2px dotted #2b9947;
}
.goal-2:after {
  background: #2b9947;
}

.mcip-modal-2 .eyebrow,
.mcip-modal-2 h3,
.mcip-modal-2 h4 {
  color: #2b9947;
}

.goal-3 {
  background: #f98d29;
  border: 1px solid #f9bb80;
}
.goal-3 h3,
.goal-3 .eyebrow,
.goal-3 .more-link {
  color: #f98d29;
}
.goal-3 .more-link:before {
  border-bottom: 2px dotted #f98d29;
}
.goal-3:after {
  background: #f98d29;
}

.mcip-modal-3 .eyebrow,
.mcip-modal-3 h3,
.mcip-modal-3 h4 {
  color: #f98d29;
}

.goal-4 {
  background: #72308a;
  border: 1px solid #ac82ba;
}
.goal-4 h3,
.goal-4 .eyebrow,
.goal-4 .more-link {
  color: #ac82ba;
}
.goal-4 .more-link:before {
  border-bottom: 2px dotted #ac82ba;
}
.goal-4:after {
  background: #72308a;
}

.mcip-modal-4 .eyebrow,
.mcip-modal-4 h3,
.mcip-modal-4 h4 {
  color: #ac82ba;
}

.goal-5 {
  background: #00505d;
  border: 1px solid #bfd3d6;
}
.goal-5 h3,
.goal-5 .eyebrow,
.goal-5 .more-link {
  color: #00505d;
}
.goal-5 .more-link:before {
  border-bottom: 2px dotted #00505d;
}
.goal-5:after {
  background: #00505d;
}

.mcip-modal-5 .eyebrow,
.mcip-modal-5 h3,
.mcip-modal-5 h4 {
  color: #00505d;
}

.goal-6 {
  background: #e3619e;
  border: 1px solid #f5ccde;
}
.goal-6 h3,
.goal-6 .eyebrow,
.goal-6 .more-link {
  color: #e3619e;
}
.goal-6 .more-link:before {
  border-bottom: 2px dotted #e3619e;
}
.goal-6:after {
  background: #e3619e;
}

.mcip-modal-6 .eyebrow,
.mcip-modal-6 h3,
.mcip-modal-6 h4 {
  color: #e3619e;
}

.goal-7 {
  background: #eabf23;
  border: 1px solid #f5df91;
}
.goal-7 h3,
.goal-7 .eyebrow,
.goal-7 .more-link {
  color: #eabf23;
}
.goal-7 .more-link:before {
  border-bottom: 2px dotted #eabf23;
}
.goal-7:after {
  background: #eabf23;
}

.mcip-modal-7 .eyebrow,
.mcip-modal-7 h3,
.mcip-modal-7 h4 {
  color: #eabf23;
}

.goal-8 {
  background: #2a276c;
  border: 1px solid #8078a1;
}
.goal-8 h3,
.goal-8 .eyebrow,
.goal-8 .more-link {
  color: #2a276c;
}
.goal-8 .more-link:before {
  border-bottom: 2px dotted #2a276c;
}
.goal-8:after {
  background: #2a276c;
}

.mcip-modal-8 .eyebrow,
.mcip-modal-8 h3,
.mcip-modal-8 h4 {
  color: #2a276c;
}

.goals-set-2 .goal-col-3 p:not(.eyebrow) {
  color: #000;
  font-size: 0.875rem;
  font-weight: 400;
  margin: 0 0 0.25rem 0;
}

.icon-widget {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  margin: 2rem 0;
  max-width: 100%;
  width: 600px;
}
.icon-widget h4 {
  font-family: jubilat, serif;
  font-size: 1.5rem;
  font-weight: normal;
  margin: 0;
}
.icon-widget p {
  color: #259aa5;
  font-family: freight-sans-compressed-pro, sans-serif;
  margin: 0.5rem 0 0 0;
}

.icon-image {
  flex-basis: 100px;
}
.icon-image img {
  vertical-align: middle;
  width: 100px;
}

.icon-content {
  flex-basis: calc(100% - 120px);
}

section.bucket-grid {
  padding: 55px 55px;
}
section.bucket-grid h2 {
  font-size: 40px;
  font-weight: 700;
  max-width: 100%;
  width: 700px;
}
section.bucket-grid .grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-right: -12.5px;
  margin-left: -12.5px;
}
section.bucket-grid .grid .bucket {
  width: calc(33.3% - 25px);
  margin: 12.5px;
  position: relative;
  height: 580px;
  position: relative;
  overflow: hidden;
}
section.bucket-grid .grid .bucket .inner {
  border-left: 2px dotted #818287;
  padding-left: 20px;
  margin-top: 20px;
  padding-bottom: 200px;
}
section.bucket-grid .grid .bucket .inner h3 {
  color: #000;
  font-family: freight-sans-pro, sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin: 0;
  padding-top: 6px;
  padding-bottom: 12px;
}
section.bucket-grid .grid .bucket .inner h4 {
  color: #000;
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  padding-top: 12px;
  padding-bottom: 12px;
}
section.bucket-grid .grid .bucket .inner b {
  font-weight: 700;
  font-size: 13px;
}
section.bucket-grid .grid .bucket .inner p {
  margin: 0;
}
section.bucket-grid .grid .bucket .inner .more-link {
  color: #000;
  position: absolute;
  right: 20px;
  bottom: 20px;
}
section.bucket-grid .grid .bucket .inner .extra-modal-content {
  display: none;
}
section.bucket-grid .grid .bucket .inner:after {
  content: "";
  background-image: url("images/bucket-grid-icon.png");
  background-repeat: no-repeat;
  background-size: cover;
  width: 35px;
  height: 35px;
  display: inline-block;
  position: absolute;
  bottom: 10px;
  left: 30px;
}
section.bucket-grid .grid .bucket .bucket-image {
  width: 100%;
}
section.bucket-grid .grid .bucket .bucket-image img {
  width: 100%;
}

section.contact .contact-inner {
  max-width: 1440px;
  padding: 55px 55px;
  display: flex;
  justify-content: center;
}
section.contact .contact-inner .contact-form-header {
  max-width: 50%;
  margin-right: 5%;
}
section.contact .contact-inner .contact-form-header h3 {
  font-family: freight-sans-pro, sans-serif;
  text-transform: uppercase;
  font-size: 24px;
}
section.contact .contact-inner .contact-form-header h1 {
  font-size: 40px;
  font-weight: 700;
  padding-bottom: 8px;
}
section.contact .contact-inner .contact-form label {
  display: block;
  text-align: left;
  text-transform: uppercase;
  color: grey;
}
section.contact .contact-inner .contact-form input, section.contact .contact-inner .contact-form textarea {
  font-size: 16px;
  padding: 6px 8px;
  margin-bottom: 10px;
  border: 1px solid rgba(0, 136, 148, 0.5607843137);
}
section.contact .contact-inner .contact-form button {
  display: inline-block;
  background: #008894;
  color: #fff;
  padding: 8px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  border: 0;
}

section.download-report {
  background: #f0f0f0;
  padding: 40px;
  text-align: center;
}
section.download-report a {
  display: inline-block;
  background: #259aa5;
  color: #fff;
  padding: 24px 36px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
}

:root {
  --bar1height: 1em;
  --bar2height: 1em;
  --bar3height: 1em;
  --bar4height: 1em;
  --bar4offset: -1em;
  --bar5height: 1em;
  --bar5offset: -1em;
  --bar6height: 1em;
  --bar6offset: -1em;
}

.threed-chart-wrapper {
  width: 100%;
  height: 100%;
  max-width: 450px;
  max-height: 464px;
}
.threed-chart-wrapper .threed-chart {
  width: 100%;
  padding-top: 103.1%;
  position: relative;
  display: block;
}
.threed-chart-wrapper .threed-chart .icon-1 {
  position: absolute;
  top: 3%;
  left: 4%;
  width: 6%;
}
.threed-chart-wrapper .threed-chart .icon-2 {
  position: absolute;
  top: 3%;
  right: 4%;
  width: 6%;
}
.threed-chart-wrapper .threed-chart .copy-left, .threed-chart-wrapper .threed-chart .copy-right {
  position: absolute;
  color: #fff;
  width: 36%;
}
.threed-chart-wrapper .threed-chart .copy-left h3, .threed-chart-wrapper .threed-chart .copy-right h3 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 5%;
}
.threed-chart-wrapper .threed-chart .copy-left {
  left: 4%;
  top: 30%;
  border-left: 2px dotted #fff;
  padding-top: 20%;
  padding-left: 3%;
}
.threed-chart-wrapper .threed-chart .copy-right {
  right: 4%;
  top: 20%;
  text-align: right;
  border-right: 2px dotted #fff;
  padding-bottom: 20%;
  padding-right: 3%;
}
.threed-chart-wrapper .threed-chart .chart-bg-1 {
  width: 50%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background: #a1d45d;
}
.threed-chart-wrapper .threed-chart .chart-bg-2 {
  width: 50%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  background: #259aa5;
}
.threed-chart-wrapper .threed-chart .chart-axis-plane {
  background: rgba(255, 255, 255, 0.3);
  position: absolute;
  width: 110%;
  height: 15%;
  transform: rotatex(55deg) rotateZ(45deg) translateZ(-1em);
  transform-style: preserve-3d;
  top: 35%;
  left: -5%;
  padding-left: 5%;
}
.threed-chart-wrapper .threed-chart .chart-axis-plane .chart-bar {
  transform-style: preserve-3d;
  height: 80%;
  width: 11%;
  position: relative;
  display: inline-block;
  margin-left: 3%;
}
.threed-chart-wrapper .threed-chart .chart-axis-plane .chart-bar .chart-bar-top {
  background: #c9c9c3;
  transform: translateZ(var(--bar1height));
  height: 100%;
  width: 98%;
  transition: all 0.9s ease-out;
  transition-delay: 0.7s;
}
.threed-chart-wrapper .threed-chart .chart-axis-plane .chart-bar .chart-bar-left {
  background: #fff;
  width: 100%;
  height: var(--bar1height);
  transform-origin: center 0%;
  transform: rotateX(90deg);
  transition: all 0.9s ease-out;
  transition-delay: 0.7s;
}
.threed-chart-wrapper .threed-chart .chart-axis-plane .chart-bar .chart-bar-right {
  background: #818287;
  width: 100%;
  left: -1px;
  top: 1px;
  bottom: -1px;
  position: absolute;
  height: var(--bar1height);
  transform-origin: 100% 0%;
  transform: rotateX(90deg) rotateY(-90deg);
  transition: all 0.9s ease-out;
  transition-delay: 0.7s;
}
.threed-chart-wrapper .threed-chart .chart-axis-plane .chart-bar .chart-bar-label {
  color: #fff;
  transform: rotateX(180deg);
  bottom: 10%;
  position: absolute;
  display: block;
  text-align: center;
  width: 100%;
  font-size: 1.5em;
  line-height: 0.7em;
  font-weight: 400;
  opacity: 0;
  transition: all 0.9s ease-out;
  transition-delay: 1.2s;
}
.threed-chart-wrapper .threed-chart .chart-axis-plane .chart-bar .chart-bar-label span {
  font-weight: 800;
}
.threed-chart-wrapper .threed-chart .chart-axis-plane #chart-bar-1 .chart-bar-top {
  transform: translateZ(var(--bar1height));
}
.threed-chart-wrapper .threed-chart .chart-axis-plane #chart-bar-1 .chart-bar-left {
  height: var(--bar1height);
}
.threed-chart-wrapper .threed-chart .chart-axis-plane #chart-bar-1 .chart-bar-right {
  height: var(--bar1height);
}
.threed-chart-wrapper .threed-chart .chart-axis-plane #chart-bar-2 .chart-bar-top {
  transform: translateZ(var(--bar2height));
}
.threed-chart-wrapper .threed-chart .chart-axis-plane #chart-bar-2 .chart-bar-left {
  height: var(--bar2height);
}
.threed-chart-wrapper .threed-chart .chart-axis-plane #chart-bar-2 .chart-bar-right {
  height: var(--bar2height);
}
.threed-chart-wrapper .threed-chart .chart-axis-plane #chart-bar-3 .chart-bar-top {
  transform: translateZ(var(--bar3height));
}
.threed-chart-wrapper .threed-chart .chart-axis-plane #chart-bar-3 .chart-bar-left {
  height: var(--bar3height);
}
.threed-chart-wrapper .threed-chart .chart-axis-plane #chart-bar-3 .chart-bar-right {
  height: var(--bar3height);
}
.threed-chart-wrapper .threed-chart .chart-axis-plane #chart-bar-4 .chart-bar-top {
  transform: translateZ(0);
}
.threed-chart-wrapper .threed-chart .chart-axis-plane #chart-bar-4 .chart-bar-left {
  height: var(--bar4height);
  transform: rotateX(90deg) translateY(var(--bar4offset));
}
.threed-chart-wrapper .threed-chart .chart-axis-plane #chart-bar-4 .chart-bar-right {
  height: var(--bar4height);
  transform: rotateX(90deg) rotateY(-90deg) translateY(var(--bar4offset));
}
.threed-chart-wrapper .threed-chart .chart-axis-plane #chart-bar-5 .chart-bar-top {
  transform: translateZ(0);
}
.threed-chart-wrapper .threed-chart .chart-axis-plane #chart-bar-5 .chart-bar-left {
  height: var(--bar5height);
  transform: rotateX(90deg) translateY(var(--bar5offset));
}
.threed-chart-wrapper .threed-chart .chart-axis-plane #chart-bar-5 .chart-bar-right {
  height: var(--bar5height);
  transform: rotateX(90deg) rotateY(-90deg) translateY(var(--bar5offset));
}
.threed-chart-wrapper .threed-chart .chart-axis-plane #chart-bar-6 .chart-bar-label {
  top: 10%;
  bottom: auto;
}
.threed-chart-wrapper .threed-chart .chart-axis-plane #chart-bar-6 .chart-bar-top {
  transform: translateZ(0);
}
.threed-chart-wrapper .threed-chart .chart-axis-plane #chart-bar-6 .chart-bar-left {
  height: var(--bar6height);
  transform: rotateX(90deg) translateY(var(--bar6offset));
}
.threed-chart-wrapper .threed-chart .chart-axis-plane #chart-bar-6 .chart-bar-right {
  height: var(--bar6height);
  transform: rotateX(90deg) rotateY(-90deg) translateY(var(--bar6offset));
}

.threed-chart-wrapper.visible .chart-axis-plane .chart-bar-label {
  opacity: 1 !important;
}
.threed-chart-wrapper.visible .chart-axis-plane #chart-bar-1 .chart-bar-top {
  transform: translateZ(2em);
}
.threed-chart-wrapper.visible .chart-axis-plane #chart-bar-1 .chart-bar-left {
  height: 2em;
}
.threed-chart-wrapper.visible .chart-axis-plane #chart-bar-1 .chart-bar-right {
  height: 2em;
}
.threed-chart-wrapper.visible .chart-axis-plane #chart-bar-2 .chart-bar-top {
  transform: translateZ(4em);
}
.threed-chart-wrapper.visible .chart-axis-plane #chart-bar-2 .chart-bar-left {
  height: 4em;
}
.threed-chart-wrapper.visible .chart-axis-plane #chart-bar-2 .chart-bar-right {
  height: 4em;
}
.threed-chart-wrapper.visible .chart-axis-plane #chart-bar-3 .chart-bar-top {
  transform: translateZ(7em);
}
.threed-chart-wrapper.visible .chart-axis-plane #chart-bar-3 .chart-bar-left {
  height: 7em;
}
.threed-chart-wrapper.visible .chart-axis-plane #chart-bar-3 .chart-bar-right {
  height: 7em;
}
.threed-chart-wrapper.visible .chart-axis-plane #chart-bar-4 .chart-bar-top {
  transform: translateZ(0);
}
.threed-chart-wrapper.visible .chart-axis-plane #chart-bar-4 .chart-bar-left {
  height: 2em;
  transform: rotateX(90deg) translateY(-2em);
}
.threed-chart-wrapper.visible .chart-axis-plane #chart-bar-4 .chart-bar-right {
  height: 2em;
  transform: rotateX(90deg) rotateY(-90deg) translateY(-2em);
}
.threed-chart-wrapper.visible .chart-axis-plane #chart-bar-5 .chart-bar-top {
  transform: translateZ(0);
}
.threed-chart-wrapper.visible .chart-axis-plane #chart-bar-5 .chart-bar-left {
  height: 4em;
  transform: rotateX(90deg) translateY(-4em);
}
.threed-chart-wrapper.visible .chart-axis-plane #chart-bar-5 .chart-bar-right {
  height: 4em;
  transform: rotateX(90deg) rotateY(-90deg) translateY(-4em);
}
.threed-chart-wrapper.visible .chart-axis-plane #chart-bar-6 .chart-bar-label {
  top: 10%;
  bottom: auto;
}
.threed-chart-wrapper.visible .chart-axis-plane #chart-bar-6 .chart-bar-top {
  transform: translateZ(0);
}
.threed-chart-wrapper.visible .chart-axis-plane #chart-bar-6 .chart-bar-left {
  height: 7em;
  transform: rotateX(90deg) translateY(-7em);
}
.threed-chart-wrapper.visible .chart-axis-plane #chart-bar-6 .chart-bar-right {
  height: 7em;
  transform: rotateX(90deg) rotateY(-90deg) translateY(-7em);
}

footer {
  background-color: #259aa5;
  min-height: 200px;
}
footer .inner {
  max-width: 1340px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 50px 40px;
}

.footer-row-1 {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .footer-row-1 {
    flex-wrap: wrap;
  }
}

.footer-image,
.footer-colophon {
  color: #fff;
  flex-basis: calc(50% - 25px);
  flex-shrink: 0;
}
@media screen and (max-width: 800px) {
  .footer-image,
  .footer-colophon {
    flex-basis: 100%;
    margin-bottom: 2rem;
  }
}

.footer-image h2 {
  color: #fff;
  font-size: 3.5rem;
  margin: 2rem 0 4rem 0;
}
@media screen and (max-width: 800px) {
  .footer-image h2 {
    font-size: 2.5rem;
    margin: 0.5rem 0 1.5rem 0;
  }
}
.footer-image img {
  margin-bottom: -220px;
  max-width: 100%;
}
@media screen and (max-width: 800px) {
  .footer-image img {
    margin-bottom: 0;
  }
}

.footer-colophon h2 {
  color: #fff;
}
.footer-colophon p {
  font-size: 1.2rem;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .footer-colophon p {
    font-size: 1rem;
    line-height: 1.2;
  }
}
.footer-colophon hr {
  background: transparent;
  border-top: 2px dotted #fff;
  margin-bottom: 1.5rem;
}

.footer-secondary {
  background-color: #fff;
}
.footer-secondary .inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 50px 40px;
}

.footer-row-2 {
  text-align: right;
}
.footer-row-2 img {
  vertical-align: middle;
  width: 240px;
}
@media screen and (max-width: 640px) {
  .footer-row-2 img {
    width: 170px;
  }
}
@media screen and (max-width: 640px) {
  .footer-row-2 {
    text-align: left;
  }
}

.footer-row-3 {
  counter-reset: my-counter;
  display: flex;
  justify-content: space-between;
  margin-top: 100px;
}
@media screen and (max-width: 1024px) {
  .footer-row-3 {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 800px) {
  .footer-row-3 {
    margin-top: 30px;
  }
}
.footer-row-3 h3 {
  font-family: freight-sans-compressed-pro, sans-serif;
  font-size: 1.25rem;
  letter-spacing: 1px;
  margin-bottom: 0;
  text-transform: uppercase;
}
.footer-row-3 ul {
  list-style: none;
  margin: 0 0 1rem 0;
  padding: 0;
}
.footer-row-3 li {
  position: relative;
}
.footer-row-3 li span {
  display: block;
  margin-left: 2rem;
}
.footer-row-3 li:before {
  content: "·";
  position: absolute;
  left: -1rem;
}
.footer-row-3 p,
.footer-row-3 li {
  color: #259aa5;
  font-family: freight-sans-compressed-pro, sans-serif;
  font-size: 1.25rem;
  margin: 0.75rem 0 0.75rem 3rem;
}
.footer-row-3 p.intro,
.footer-row-3 li.intro {
  margin: 0.5rem 0 1rem 0;
}
.footer-row-3 p.top-level,
.footer-row-3 li.top-level {
  font-weight: 700;
  counter-increment: my-counter;
  position: relative;
}
.footer-row-3 p.top-level:before,
.footer-row-3 li.top-level:before {
  content: counter(my-counter);
  font-size: 1.5rem;
  position: absolute;
  top: -5px;
  left: -2rem;
}

.footer-col {
  border-right: 1px dotted #259aa5;
  flex-basis: calc(25% - 20px);
  flex-shrink: 0;
  padding: 10px;
}
.footer-col:last-child {
  border-right: 0;
}
@media screen and (max-width: 1024px) {
  .footer-col {
    border-right: 0;
    flex-basis: calc(50% - 20px);
    padding: 0 10px;
  }
  .footer-col:nth-child(2) {
    order: 1;
  }
  .footer-col:nth-child(2) {
    order: 3;
  }
  .footer-col:nth-child(3) {
    order: 2;
  }
  .footer-col:nth-child(4) {
    order: 4;
  }
}
@media screen and (max-width: 640px) {
  .footer-col {
    flex-basis: 100%;
    padding: 0;
  }
  .footer-col:nth-child(2) {
    order: 1;
  }
  .footer-col:nth-child(2) {
    order: 2;
  }
  .footer-col:nth-child(3) {
    order: 3;
  }
  .footer-col:nth-child(4) {
    order: 4;
  }
}

@media screen and (max-width: 980px) {
  header {
    background-color: #259aa5;
    height: -moz-fit-content;
    height: fit-content;
  }
  header .header-inner ul#menu {
    display: none;
  }
  header .header-inner .hamburger {
    display: inline-block;
  }
  .hero-container {
    margin-top: 80px;
    padding-top: 40px;
  }
  .hero-container .hero-container-inner h1 {
    margin-left: 0;
    padding-left: 20px;
    margin-top: 0px;
    padding-bottom: 20px;
  }
  section.intro {
    display: block;
    margin-bottom: 20px;
    margin-top: 20px;
  }
  section.intro .bucket {
    width: auto;
    margin-bottom: 20px;
    padding-top: 20px;
    padding-right: 20px;
    transition: all 0.2s ease-out;
  }
  section.intro .bucket .more-link {
    text-decoration: none;
    background: white;
    width: 60px;
    text-align: center;
    font-size: 25px;
    bottom: -10px;
    right: 0;
    padding-right: 10px;
  }
  section.intro .bucket.accordion-open h2 {
    border-color: transparent;
  }
  section.intro .bucket.accordion-open h3 {
    display: block;
    padding-top: 0px;
    border-bottom: 0;
    padding-bottom: 10px;
  }
  section.intro .bucket.accordion-open .extra-modal-content {
    display: block;
    margin: 0;
  }
  section.intro .bucket.accordion-open .extra-modal-content:last-child {
    padding-bottom: 30px;
  }
  section.intro .bucket.accordion-open .more-link {
    transform: rotate(180deg);
  }
  section.intro h2 {
    border-bottom: 2px dotted #c9e2a9;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  section.intro h3 {
    display: none;
  }
  section.intro.border-left-orange {
    border-color: #f9bb80;
  }
  section.intro.border-left-purple {
    border-color: #ac82ba;
  }
  section.mcip .mcip-buckets .mcip-bucket-1 {
    width: 100%;
    background-image: url("images/mcip-bucket-1-bg-mobile.png");
  }
  section.mcip .mcip-buckets .mcip-bucket-1 .inner {
    margin-bottom: 0;
    padding-bottom: 20px;
    margin-left: 95px;
  }
  section.mcip .mcip-buckets .mcip-bucket-1:before {
    transform: rotate(90deg);
    right: 50%;
    margin-right: -60px;
    top: auto;
    bottom: -50px;
  }
  section.mcip .mcip-buckets .mcip-bucket-2 {
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
    background-image: url("images/mcip-bucket-2-bg-mobile.png");
  }
  section.mcip .mcip-buckets .mcip-bucket-2 .inner {
    margin-left: 95px;
  }
  section.mcip .mcip-buckets .mcip-bucket-2:before {
    right: 50%;
    margin-right: -60px;
  }
  section.mcip .mcip-buckets .mcip-bucket-3 .inner {
    width: auto;
    margin: 0;
    padding: 20px;
  }
  section.mcip .mcip-buckets .mcip-bucket-3 .inset {
    position: relative;
    width: auto;
    margin: 20px 20px 20px 20px;
    top: auto;
    left: 0;
  }
  section.mcip .mcip-buckets .mcip-bucket-3 .inset .years-icon {
    right: 50%;
    margin-right: -75px;
  }
  section.mcip .mcip-buckets .mcip-bucket-3:before {
    right: 50%;
    margin-right: -60px;
  }
  section.mcip .mcip-buckets .mcip-bucket-4 {
    flex-wrap: wrap;
  }
  section.mcip .mcip-buckets .mcip-bucket-4 h2 {
    font-size: 46px;
    width: 100%;
    margin-bottom: 100px;
  }
  section.mcip .mcip-buckets .mcip-bucket-4 .threed-chart-wrapper {
    max-width: 100%;
    max-height: -moz-fit-content;
    max-height: fit-content;
  }
  section.mcip .mcip-buckets .mcip-bucket-4 .threed-chart-wrapper .threed-chart .copy-right {
    top: 10%;
  }
/*
  section.bucket-grid h2 br {
    display: none;
  }
*/
  section.bucket-grid .grid {
    display: block;
    margin-left: 0;
    margin-right: 0;
  }
  section.bucket-grid .grid .bucket {
    width: 100%;
    margin: 0 0 25px 0;
    height: -moz-fit-content;
    height: fit-content;
  }
  section.bucket-grid .grid .bucket .inner {
    padding-bottom: 30px;
  }
  section.bucket-grid .grid .bucket .inner:after {
    background-image: none;
  }
  section.bucket-grid .grid .bucket .inner .more-link {
    bottom: 0;
  }
  section.contact .contact-inner {
    display: block;
  }
  section.contact .contact-inner .contact-form-header {
    max-width: 100%;
    padding-bottom: 20px;
  }
  section.contact .contact-inner .contact-form input, section.contact .contact-inner .contact-form textarea {
    width: 90%;
  }
  footer .inner {
    display: block;
  }
  .scrim .content {
    width: -moz-fit-content;
    width: fit-content;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow-x: scroll;
    position: absolute;
  }
  .scrim .content .bucket {
    width: -moz-fit-content;
    width: fit-content;
  }
}/*# sourceMappingURL=style.css.map */