:root {
  --swatch--beige: #f6f0e7;
  --default--heading: var(--swatch--canopy);
  --default--background: var(--swatch--beige);
  --swatch--white: white;
  --swatch--golden-gate-light-green: #adc24a;
  --thirst\<deleted\|variable-d14b6070\>: #ee4060;
  --swatch--moss: #6a9d34;
  --swatch--canopy: #00663c;
  --white\<deleted\|variable-dee47ebc\>: white;
  --default--btn: var(--swatch--moss);
  --default--btn-label: var(--swatch--white);
  --default--text: var(--swatch--dark-green);
  --default--accent: var(--swatch--moss);
  --default--pullout: var(--swatch--canopy);
  --swatch--dark-green: #1a2c25;
  --swatch--sand: #cac4bc;
  --dark--background: var(--swatch--canopy);
  --dark--text: var(--swatch--white);
  --dark--heading: var(--swatch--white);
  --dark--accent: var(--swatch--moss);
  --dark--btn: var(--swatch--white);
  --dark--btn-label: var(--swatch--canopy);
  --dark--pullout: var(--swatch--white);
  --light--background: var(--swatch--moss);
  --light--text: var(--swatch--white);
  --light--heading: var(--swatch--white);
  --light--accent: var(--swatch--canopy);
  --light--btn: var(--swatch--white);
  --light--btn-label: var(--swatch--canopy);
  --light--pullout: var(--swatch--white);
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  background-color: var(--swatch--beige);
  color: #333;
  font-family: Work Sans, sans-serif;
  font-size: 16px;
  line-height: 140%;
}

h1 {
  margin-top: 0;
  margin-bottom: 2rem;
  font-size: 8.87rem;
  font-weight: 800;
  line-height: 90%;
}

h2 {
  color: var(--default--heading);
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 4.07rem;
  font-weight: 800;
  line-height: 110%;
}

h3 {
  color: var(--default--heading);
  margin-top: 0;
  margin-bottom: 48px;
  font-size: 2.67rem;
  font-weight: 800;
  line-height: 1.2;
}

h4 {
  color: var(--default--heading);
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.87rem;
  font-weight: 800;
  line-height: 1.2;
}

h5 {
  color: var(--default--heading);
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.27rem;
  font-weight: 700;
  line-height: 1.2;
}

h6 {
  color: var(--default--heading);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1.17rem;
  font-weight: 700;
  line-height: 18px;
}

p {
  margin-bottom: 20px;
}

a {
  color: var(--default--heading);
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 1.5rem;
  padding-left: 40px;
}

img {
  max-width: 100%;
  display: inline-block;
}

strong {
  font-weight: 800;
}

blockquote {
  border-left: 5px #e2e2e2;
  margin-top: 1rem;
  margin-bottom: 2rem;
  padding: 0;
  font-family: Cardo, sans-serif;
  font-size: 3.57rem;
  font-weight: 400;
  line-height: 130%;
}

figure {
  margin-bottom: 10px;
}

figcaption {
  text-align: center;
  text-transform: uppercase;
  margin-top: 5px;
  font-size: .9rem;
}

.header {
  z-index: 2;
  position: fixed;
  top: 48px;
  left: 60px;
}

.footer {
  background-color: var(--default--background);
  padding-bottom: 40px;
}

.main {
  z-index: 1;
  position: relative;
}

.container {
  max-width: 1454px;
  padding-left: 32px;
  padding-right: 32px;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-sm {
  margin-bottom: 40px;
}

.mb {
  margin-bottom: 5rem;
}

.p-y {
  padding-top: 80px;
  padding-bottom: 80px;
}

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

.pt-0 {
  padding-top: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.hidden {
  display: none;
}

.rich-text h2 {
  color: var(--default--heading);
}

.rich-text li {
  margin-bottom: .25rem;
}

.navbar {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  background-color: var(--swatch--white);
  border-radius: 34px;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 10px 12px;
  display: flex;
  box-shadow: 1px 1px 8px #0000001f;
}

.logo {
  width: 230px;
}

.navbar-container {
  flex: none;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-left: 0;
  margin-right: 0;
  display: flex;
}

.nav-menu {
  background-color: #005532;
  border-radius: 34px;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  margin-top: 12px;
  padding-top: 12px;
  padding-bottom: 12px;
  display: flex;
}

.nav-link {
  color: var(--swatch--white);
  margin-left: 0;
  margin-right: 0;
  padding: 14px 32px;
  font-size: 1.27rem;
  font-weight: 600;
  line-height: 130%;
}

.nav-link:hover {
  color: var(--swatch--golden-gate-light-green);
}

.nav-link.w--current {
  color: var(--thirst\<deleted\|variable-d14b6070\>);
}

.nav-link.btn {
  background-color: var(--swatch--moss);
  text-align: center;
  margin: 12px 32px;
  padding: 12px 24px;
  font-size: 1.27rem;
}

.nav-link.btn:hover {
  background-color: var(--swatch--beige);
  color: var(--swatch--canopy);
}

.nav-link.btn.w--current {
  color: var(--white\<deleted\|variable-dee47ebc\>);
}

.menu-button {
  background-color: var(--swatch--canopy);
  color: var(--swatch--white);
  border-radius: 24px;
  padding: 12px 20px;
  font-size: 1.17rem;
}

.menu-button:hover, .menu-button.w--open {
  background-color: var(--swatch--moss);
}

.brand {
  padding-left: 0;
}

.dynamic-year {
  font-weight: 400;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 600px;
  display: flex;
}

.btn {
  background-color: var(--default--btn);
  color: var(--default--btn-label);
  border-radius: 100px;
  padding: .75rem 1.8rem;
  font-size: 1.25rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color .25s;
}

.btn:hover {
  background-color: var(--default--heading);
}

.grid__6-6 {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.grid__6-6.gap-24 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
}

.grid__6-6.collapse-tablet.align-top {
  align-items: start;
}

.fade {
  background-color: var(--default--background);
  color: var(--default--text);
}

.fade.hero {
  height: 95%;
  min-height: 95vh;
  position: relative;
  overflow: hidden;
}

.fade.p-y.overflow-hidden, .fade.p-y.map {
  overflow: hidden;
}

.quick-exit {
  grid-column-gap: 2rem;
  background-color: #cecece;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  display: flex;
}

.quick-exit__text {
  margin-bottom: 0;
  display: none;
}

.quick-exit__button {
  flex: none;
}

.menu-label {
  margin-bottom: 0;
  font-family: Work Sans, sans-serif;
  font-weight: 600;
  line-height: 100%;
}

.hero__image {
  z-index: 1;
  object-fit: cover;
  object-position: 50% 100%;
  width: 100%;
  height: 100%;
  position: absolute;
}

.hero__pattern {
  z-index: 3;
  background-image: url('../images/pattern-strip-horiz.png');
  background-position: 50%;
  background-repeat: repeat-x;
  background-size: auto 16px;
  width: 100%;
  height: 16px;
  position: absolute;
  bottom: 0;
}

.hero__content {
  z-index: 3;
  color: var(--swatch--white);
  position: absolute;
  bottom: 80px;
  left: 60px;
}

.hero__subheading {
  color: var(--swatch--white);
  font-family: Cardo, sans-serif;
  font-size: 4rem;
  font-weight: 400;
  line-height: 120%;
}

.hero__overlay {
  z-index: 2;
  background-image: linear-gradient(90deg, #0003, #0000);
  width: 100vw;
  height: 100vh;
  position: absolute;
}

.menu {
  flex: 1;
}

.section-number {
  float: left;
  background-color: var(--default--accent);
  color: var(--swatch--white);
  border-radius: 3px;
  margin-top: 12px;
  margin-right: 20px;
  padding-left: 24px;
  padding-right: 24px;
  font-size: 2.47rem;
  font-weight: 800;
  line-height: 130%;
  display: block;
}

.col-10 {
  width: 83.3333%;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.py-lg {
  padding-top: 160px;
  padding-bottom: 160px;
}

.pullout {
  color: var(--default--pullout);
  font-family: Cardo, sans-serif;
  font-size: 3.57rem;
  line-height: 130%;
}

.caption {
  color: var(--default--accent);
  letter-spacing: .08rem;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 400;
}

.caption.author {
  opacity: .65;
  color: var(--default--text);
  font-size: .8rem;
}

.section-heading {
  display: block;
}

.col-11 {
  width: 91.6667%;
}

.flex-end {
  justify-content: flex-end;
  display: flex;
}

.rte blockquote {
  color: var(--swatch--canopy);
  margin-top: 64px;
  margin-bottom: 16px;
  font-family: Cardo, sans-serif;
  font-size: 1.77rem;
  font-weight: 400;
  line-height: 140%;
}

.rte figure {
  width: 75%;
  margin: 24px 0;
}

.rte img {
  width: 100%;
}

.column.flex-v {
  flex-flow: column;
  display: flex;
}

.column.flex-v.gap-24 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
}

.column.border-left {
  border-left: 1px solid var(--default--text);
  padding-bottom: 32px;
  padding-left: 24px;
}

.column.pr-lg {
  padding-right: 120px;
}

.author {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.ratio {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.ratio.square {
  padding-bottom: 100%;
}

.ratio.square.rounded {
  border-radius: 100%;
}

.ratio.square.h-full {
  height: 100%;
}

.ratio._3-2 {
  padding-bottom: 66.6667%;
}

.ratio-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.author__image {
  width: 55%;
}

.signature {
  height: 56px;
}

.small {
  font-size: .85rem;
  line-height: 130%;
}

.small.mt-sm {
  margin-top: 20px;
}

.section-header {
  display: flex;
}

.section-header__content {
  align-self: center;
  width: 50%;
  padding: 120px 40px 120px 60px;
}

.section-header__img-wrapper {
  width: 50%;
  padding-right: 64px;
  position: relative;
}

.section-header__img-border {
  width: 64px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}

.section-header__img-border.light-green {
  background-color: var(--swatch--canopy);
  background-image: url('../images/pattern-stump-1.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.section-header__img-border.dark-green {
  background-color: var(--swatch--moss);
  background-image: url('../images/pattern-stump-2.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.grid__4-8 {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
}

.grid__4-8.gap-x-24 {
  grid-column-gap: 24px;
}

.grid__4-8.align-top {
  place-items: start;
}

.grid__4-8.gap-y-20 {
  grid-row-gap: 20px;
}

.grid__4-8.retain-cols-tablet.gap-x-24 {
  place-items: stretch start;
}

.image__border-left {
  width: 100%;
  padding-left: 0;
  position: relative;
}

.image-border__border-v {
  z-index: 2;
  background-image: url('../images/border-yosemite.jpg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  width: 16px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.image-border__border-v.golden-gate {
  background-image: url('../images/border-golden-gate.jpg');
  background-size: cover;
}

.image-border__border-v.prince-william {
  background-image: url('../images/border-prince.jpg');
  background-size: cover;
}

.image-border__border-v.olympic {
  background-image: url('../images/border-olympic.jpg');
}

.accordion-item {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.accordion-item-trigger {
  color: var(--swatch--dark-green);
  cursor: pointer;
  justify-content: flex-start;
  align-self: flex-start;
  align-items: center;
  padding-top: 4px;
  padding-bottom: 4px;
  font-size: 1.25rem;
  display: flex;
  position: relative;
}

.read-more {
  z-index: 2;
  text-decoration: none;
  position: relative;
}

.accordion-item-content {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: column;
  width: 100%;
  display: flex;
  overflow: hidden;
}

.larger {
  font-size: 1.25rem;
  line-height: 140%;
}

.larger h4 {
  margin-bottom: 48px;
}

.accordion-title {
  padding-bottom: 56px;
}

.text-canopy {
  color: var(--swatch--canopy);
}

._w-75-tablet {
  width: 100%;
}

.list__stories {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  flex-flow: column;
  display: flex;
}

.figure-caption {
  text-align: left;
}

.chart {
  width: 100%;
}

.chart.mb-sm.bar {
  width: 80%;
}

.chart.pl-sm {
  padding-left: 24px;
}

.chart._w-85 {
  width: 85%;
}

.cta {
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding-left: 80px;
  padding-right: 80px;
  display: flex;
}

.section-content {
  width: 65%;
  padding-top: 64px;
}

.section-content h3 {
  font-size: 2.27rem;
}

.grid__8-4 {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr;
}

.nav-num {
  color: var(--swatch--golden-gate-light-green);
}

.card-stat {
  background-color: var(--swatch--white);
  border-radius: 20px;
  flex-flow: column;
  flex: 1;
  justify-content: center;
  align-self: stretch;
  width: 90%;
  max-width: 320px;
  height: 100%;
  padding: 20px;
  display: flex;
  position: absolute;
}

.card-stat__wrapper {
  flex-flow: row;
  flex: 1;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 400px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.card-stat__wrapper.card-stat__large {
  flex-flow: row;
  justify-content: center;
  align-items: center;
  height: 430px;
}

.card-stat__inner {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  border: 1px solid var(--swatch--sand);
  border-radius: 15px;
  flex-flow: column;
  flex: none;
  justify-content: center;
  align-self: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 24px 20px;
  display: flex;
}

.card-stat__num {
  color: var(--default--accent);
  margin-bottom: 0;
  font-size: 3.9vw;
  font-weight: 800;
  line-height: 110%;
}

.card-stat__num.large {
  font-size: 9.67rem;
}

.card-stat__desc {
  color: var(--swatch--canopy);
  text-align: center;
  margin-bottom: 0;
  font-family: Cardo, sans-serif;
  font-size: 1.5vw;
  line-height: 140%;
}

.cards-list {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex: 1;
  justify-content: center;
  display: flex;
}

.cards-list.stacked {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.flex-x {
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.block-text {
  letter-spacing: -.01em;
  padding-left: 32px;
  padding-right: 80px;
  font-family: Cardo, sans-serif;
  font-size: 2.87vw;
  font-weight: 400;
  line-height: 130%;
}

.block {
  background-color: var(--swatch--canopy);
  color: #fff;
  align-items: stretch;
  min-height: 460px;
  margin-bottom: 100px;
  padding: 48px 50px 80px;
  font-size: 28px;
  font-weight: 300;
  line-height: 1.4;
  display: flex;
  position: sticky;
  box-shadow: 0 -4px 30px #00000040;
}

.block._3 {
  top: 30%;
}

.block._4 {
  margin-bottom: 48px;
  top: 34%;
}

.block._2 {
  margin-bottom: 48px;
  top: 26%;
}

.block._1 {
  top: 22%;
}

.block__inner {
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.block__stat {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  grid-template-rows: auto;
  grid-template-columns: .65fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center;
  width: 100%;
  display: grid;
}

.block__stat-num {
  margin-bottom: 0;
  font-size: 9.67vw;
  font-weight: 800;
}

.block__stat-caption {
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 400;
}

.quote__author {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.quote__author-image {
  flex: none;
  width: 96px;
}

.table {
  flex-flow: column;
  display: flex;
}

.row {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  border-top: 1px solid var(--swatch--moss);
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 1rem;
  display: flex;
}

.row.total {
  border-bottom: 2px solid var(--swatch--moss);
  color: var(--swatch--canopy);
  border-top-width: 2px;
  font-size: 1.27rem;
  font-weight: 800;
}

.cell {
  flex: 1;
}

.cell.cell__total {
  flex: none;
  width: 25%;
}

.cell-data {
  margin-bottom: 0;
}

.text-right {
  text-align: right;
}

.acc-body {
  padding-top: 20px;
}

.acc-head {
  border-bottom: 1px solid var(--swatch--moss);
  color: var(--swatch--canopy);
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
  display: flex;
}

.toggle-arrow {
  width: 24px;
  height: 24px;
  font-size: 14px;
  transition: transform .3s;
}

.acc-item, .acc-text {
  margin-bottom: 0;
}

.q-wrapper {
  align-items: center;
  display: flex;
}

.faq-question {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.87rem;
}

.quote__sm {
  color: var(--default--heading);
  font-size: 1.47rem;
}

.tab-link {
  color: var(--default--btn);
  background-color: #0000;
  padding: .75rem 1.8rem;
  font-size: 1.05rem;
  font-weight: 600;
  transition: all .2s;
}

.tab-link:hover {
  color: var(--default--heading);
}

.tab-link.w--current {
  border: 1px solid var(--default--btn);
  color: var(--default--btn);
  background-color: #0000;
  border-radius: 100px;
  transition: background-color .2s;
}

.tab-link.w--current:hover {
  color: var(--default--heading);
}

.tabs-menu {
  margin-bottom: 32px;
}

.footer-links {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  display: flex;
}

.copy {
  color: var(--swatch--white);
}

.grid__footer {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.mask {
  background-color: var(--swatch--canopy);
  backface-visibility: hidden;
  height: 100%;
  position: relative;
  overflow: hidden;
  transform: translate(0);
}

.movement {
  z-index: 1;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.movement-inverse {
  height: 100%;
  position: relative;
}

.overlay {
  z-index: 2;
  background-color: var(--dark--background);
  display: none;
  position: absolute;
  inset: 0%;
}

.accordion-image {
  justify-content: flex-start;
  align-items: flex-start;
}

.swiper.map {
  z-index: 9999;
  width: 300px;
  height: 290px;
  position: absolute;
}

.swiper.swiper__testimonials {
  position: relative;
}

.swiper-slide._w-swiper-slide {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-color: #00663c;
  border-radius: 15px;
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  padding: 2.1rem 3rem;
  display: flex;
}

.swiper-wrapper.map {
  position: absolute;
  inset: 0%;
}

.swiper-pagination._w-swiper-pagination {
  height: 100%;
}

.map-container {
  position: relative;
}

.swiper-outer {
  position: absolute;
  inset: 0%;
}

.swiper-2 {
  z-index: 9999;
  width: 300px;
  height: 270px;
}

.swiper-wrapper-2 {
  position: absolute;
  inset: 0%;
}

.swiper-slide-2 {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  border-radius: 15px;
  flex-flow: column;
  align-items: flex-start;
  padding: 1.6rem 2rem;
  font-weight: 400;
  display: flex;
}

.swiper-slide-2._w-swiper-slide {
  align-items: flex-start;
  padding: 1.6rem 2.7rem;
  display: flex;
  box-shadow: 0 4px 5px #00000040;
}

.swiper-pagination-2 {
  height: 100%;
}

.swiper-pagination-bullet {
  background-color: #eccf3f;
  width: 12px;
  height: 12px;
}

.slider-title {
  color: #00663c;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.1;
}

.slider-sub-title {
  color: #6a9d34;
  font-size: .95rem;
  font-weight: 700;
}

.slider-desc {
  color: #1a2c25;
  font-size: .8rem;
  line-height: 1.25;
}

.x-pos.hidden, .y-pos.hidden {
  display: none;
}

.campus.hidden {
  opacity: 0;
}

.slider-students {
  color: #6a9d34;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
}

._404-heading {
  font-family: Cardo, sans-serif;
  font-weight: 400;
  position: static;
}

@media screen and (min-width: 1440px) {
  h2 {
    font-size: 4.97rem;
  }

  .fade.hero {
    height: 100%;
    min-height: 100vh;
  }

  .section-number {
    margin-top: 16px;
    font-size: 2.67rem;
    line-height: 140%;
  }

  .card-stat__num {
    font-size: 3.9rem;
  }

  .card-stat__desc {
    font-size: 1.27rem;
  }

  .block-text {
    font-size: 2.27vw;
  }

  .block__stat-num {
    font-size: 8.97vw;
  }

  .quote__sm {
    font-size: 2.17rem;
  }

  .swiper.map {
    z-index: 9999;
    height: 270px;
  }

  .swiper-slide._w-swiper-slide {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    border-radius: 15px;
    flex-flow: column;
    display: flex;
    box-shadow: 0 4px 5px #00000040;
  }

  .swiper-pagination._w-swiper-pagination {
    height: 100%;
  }
}

@media screen and (min-width: 1920px) {
  h2 {
    font-size: 5.47rem;
  }

  h3 {
    font-size: 2.94rem;
  }

  .container {
    max-width: 1600px;
  }

  .section-number {
    margin-top: 16px;
    font-size: 2.87rem;
  }

  .section-header__content {
    padding-right: 60px;
  }

  .section-content h3 {
    font-size: 2.87rem;
  }

  .card-stat__wrapper {
    flex: none;
    width: 320px;
  }

  .card-stat__wrapper.card-stat__large {
    width: 350px;
  }

  .card-stat__wrapper._1 {
    flex: none;
  }

  .block-text {
    font-size: 1.97vw;
  }

  .block__stat-num {
    font-size: 7.27vw;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 7.47rem;
  }

  blockquote {
    font-size: 2.17rem;
  }

  .header {
    top: 32px;
    left: 32px;
  }

  .nav-link {
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 1.17rem;
  }

  .nav-link.btn {
    text-align: center;
    font-size: 1.17rem;
  }

  .menu-button.w--open {
    background-color: var(--swatch--moss);
  }

  .utility-page-content {
    width: 90%;
  }

  .grid__6-6.collapse-tablet {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-columns: 1fr;
  }

  .fade.hero {
    height: 90%;
    min-height: 90vh;
  }

  .hero__image {
    object-position: 67% 50%;
  }

  .hero__content {
    top: 40%;
    bottom: auto;
    left: 32px;
    transform: translate(0, -40%);
  }

  .hero__subheading {
    font-size: 3.47rem;
  }

  .py-lg {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .pullout {
    font-size: 2.17rem;
  }

  .author__image {
    width: 40%;
  }

  .section-header {
    flex-flow: column;
  }

  .section-header__content {
    width: 100%;
    padding: 80px 32px;
  }

  .section-header__img-wrapper {
    width: 100%;
    padding-right: 32px;
  }

  .section-header__img-border {
    width: 32px;
  }

  .section-header__img-border.light-green {
    background-image: url('../images/pattern-stump-1_1.svg');
  }

  .grid__4-8 {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    grid-template-columns: 1fr;
  }

  .grid__4-8.gap-x-24.retain-cols-tablet, .grid__4-8.retain-cols-tablet {
    grid-template-columns: .5fr 1fr;
  }

  .accordion-item-trigger {
    cursor: pointer;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    padding-bottom: 12px;
    display: flex;
  }

  ._w-75-tablet {
    width: 75%;
  }

  .chart {
    padding-left: 0;
  }

  .chart.mb-sm.bar {
    width: 100%;
  }

  .chart.pl-sm {
    padding-left: 0;
  }

  .chart._w-85 {
    width: 50%;
  }

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

  .section-content {
    width: 85%;
    padding-top: 40px;
  }

  .grid__8-4 {
    grid-template-columns: 1fr;
  }

  .card-stat {
    flex: none;
    width: 80%;
  }

  .card-stat._1 {
    flex: none;
  }

  .card-stat__wrapper {
    height: 350px;
  }

  .card-stat__inner {
    padding-left: 24px;
    padding-right: 24px;
  }

  .card-stat__num {
    font-size: 6vw;
  }

  .card-stat__num.large {
    font-size: 7.27rem;
  }

  .card-stat__desc {
    font-size: 2.1vw;
  }

  .cards-list.stacked {
    grid-column-gap: 20px;
    grid-row-gap: 32px;
    grid-template-columns: 1fr 1fr;
  }

  .block-text {
    padding-left: 0;
    padding-right: 0;
    font-size: 3vw;
  }

  .block {
    min-height: 300px;
    padding-bottom: 48px;
    top: 28%;
  }

  .block__stat {
    grid-template-columns: 1fr 1fr;
  }

  .block__stat-num {
    font-size: 10.67vw;
  }

  .block__stat-caption {
    font-size: .8rem;
  }

  .quote__sm {
    font-size: 1.67rem;
  }

  .grid__footer {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    grid-template-columns: 1fr;
  }

  .swiper-2 {
    width: 250px;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    margin-bottom: 1.4rem;
    font-size: 20vw;
  }

  h2 {
    font-size: 2.97rem;
  }

  h3 {
    font-size: 2.27rem;
  }

  blockquote {
    font-size: 1.67rem;
  }

  .header {
    width: 100%;
    padding-left: 24px;
    padding-right: 24px;
    top: 24px;
    left: 0;
  }

  .container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .container.map {
    padding-right: 0;
    overflow: hidden;
  }

  .mb-sm {
    margin-bottom: 1.5rem;
  }

  .mb {
    margin-bottom: 2.5rem;
  }

  .p-y {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .navbar {
    padding: 8px 10px;
  }

  .logo {
    width: 200px;
  }

  .nav-menu {
    margin-top: 6px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .nav-link {
    padding: 7px 24px;
    font-size: 1.14rem;
  }

  .nav-link.btn {
    margin: 12px 24px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 1.14rem;
  }

  .menu-button {
    padding: 14px 22px;
    font-size: 1.05rem;
  }

  .hero__image {
    object-position: 72% 50%;
  }

  .hero__content {
    left: 24px;
  }

  .hero__subheading {
    font-size: 11vw;
  }

  .section-number {
    margin-top: 4px;
    margin-right: 16px;
    padding-left: 14px;
    padding-right: 14px;
    font-size: 2.17rem;
  }

  .col-10 {
    width: 100%;
  }

  .py-lg {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .pullout {
    font-size: 1.67rem;
  }

  .caption {
    font-size: .9rem;
  }

  .col-11 {
    width: 100%;
  }

  .rte blockquote {
    margin-top: 32px;
  }

  .column.border-left {
    border-bottom: 1px solid var(--swatch--canopy);
    border-left-style: none;
    padding-bottom: 12px;
    padding-left: 0;
  }

  .column.pr-lg {
    padding-right: 0;
  }

  .author {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .author__image {
    width: 40%;
  }

  .signature {
    height: 48px;
  }

  .section-header__content {
    padding: 48px 24px 32px;
  }

  .section-header__img-wrapper {
    padding-right: 24px;
  }

  .section-header__img-border, .section-header__img-border.light-green {
    width: 24px;
  }

  .grid__4-8.gap-x-24, .grid__4-8.retain-cols-tablet, .grid__4-8.retain-cols-tablet.gap-x-24 {
    grid-template-columns: 1fr;
  }

  .read-more {
    font-size: 1.25rem;
  }

  .accordion-title {
    padding-bottom: 32px;
  }

  .chart._w-85 {
    width: 65%;
  }

  .section-content {
    width: 100%;
    padding-top: 32px;
  }

  .section-content h3 {
    font-size: 1.97rem;
  }

  .card-stat {
    flex: 0 auto;
    width: 230px;
  }

  .card-stat__wrapper, .card-stat__wrapper.card-stat__large {
    height: 309px;
  }

  .card-stat__inner {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    padding: 32px 16px;
  }

  .card-stat__num {
    font-size: 3.1rem;
  }

  .card-stat__num.large {
    font-size: 4.27rem;
  }

  .card-stat__desc {
    font-size: 1.05rem;
  }

  .cards-list.stacked {
    grid-template-columns: 1fr;
  }

  .block-text {
    padding-left: 0;
    font-size: 4vw;
  }

  .block {
    min-height: 320px;
    margin-bottom: 40px;
  }

  .block__stat {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-columns: 1fr;
  }

  .block__stat-num {
    font-size: 14vw;
  }

  .block__stat-caption {
    font-size: .77rem;
  }

  .row {
    font-size: .97rem;
  }

  .row.total {
    font-size: 1.07rem;
  }

  .cell.cell__total {
    width: 26%;
  }

  .faq-item-wrap {
    width: 100%;
  }

  .faq-question {
    font-size: 1.47rem;
  }

  .quote__sm {
    font-size: 1.37rem;
  }

  .tab-link {
    color: var(--default--heading);
    padding: .4rem 0;
    font-size: 4.2vw;
  }

  .tab-link.w--current {
    border-top-style: none;
    border-bottom-width: 4px;
    border-right-style: none;
    border-bottom-color: var(--default--accent);
    color: var(--default--heading);
    border-left-style: none;
    border-radius: 0;
  }

  .tab-link.first {
    margin-right: 32px;
  }

  .footer-links {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-flow: column;
  }

  .grid__footer {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .swiper.map {
    width: 80%;
  }

  .swiper-outer {
    position: static;
  }

  .swiper-2 {
    width: 80%;
  }

  .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
  }

  .map-spacer {
    height: 300px;
  }
}

@media screen and (max-width: 479px) {
  .logo {
    width: 180px;
  }

  .menu-button {
    text-align: center;
  }

  .btn {
    font-size: 1.03rem;
  }

  .grid__6-6 {
    grid-template-columns: 1fr;
  }

  .grid__6-6.gap-24.align-top.reset-mobile {
    grid-template-columns: 1fr 1fr;
  }

  .fade.hero {
    height: 80%;
    min-height: 80vh;
  }

  .author__image {
    width: 59%;
  }

  .card-stat__wrapper.card-stat__large {
    height: 300px;
  }

  .block-text {
    font-size: 5.67vw;
  }

  .block {
    min-height: 280px;
    padding: 28px 32px 32px;
    font-size: 24px;
    top: 24%;
  }

  .block._3 {
    top: 28%;
  }

  .block._4 {
    top: 32%;
  }

  .block._2 {
    top: 24%;
  }

  .block._1 {
    top: 20%;
  }

  .block__stat-num {
    font-size: 19.87vw;
  }

  .row {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .cell.cell__total {
    width: 47%;
  }

  .tabs-menu {
    display: flex;
  }
}

#w-node-_5b16723e-30ea-2e33-0e33-8f675647aa49-5d3fe33f {
  align-self: start;
}

#w-node-_8d20b281-05b6-c441-cf0a-83e4d5a14260-5d3fe33f {
  align-self: stretch;
}

#w-node-_4efb5d5f-7487-b1ff-f2ce-90d97d51351c-5d3fe33f {
  justify-self: start;
}

#w-node-be24f013-6b6d-1990-061e-29c15fcc5cea-5d3fe33f {
  align-self: start;
}

#w-node-be24f013-6b6d-1990-061e-29c15fcc5cf6-5d3fe33f {
  justify-self: start;
}

#w-node-a31a6162-8fba-781c-5445-90c0ae7b21bd-5d3fe33f {
  align-self: start;
}

#w-node-a31a6162-8fba-781c-5445-90c0ae7b21c9-5d3fe33f {
  justify-self: start;
}

#w-node-ab230d1b-cf03-6c01-00b3-ad194c1b4f6d-5d3fe33f {
  align-self: start;
}

#w-node-_4b271ca0-8ab5-cb33-99d6-a161224d55c4-5d3fe33f, #w-node-af1798cd-75e8-4de6-63da-bd5c602c8f1e-5d3fe33f {
  align-self: stretch;
}

#w-node-_4f15ce78-24df-bc83-47ac-fef0fba9aab5-5d3fe33f, #w-node-bed72b34-556e-1cce-7b81-53b99f3b4991-5d3fe33f, #w-node-_72b3045a-eeba-e0ee-5180-28c7c274de17-5d3fe33f, #w-node-_72b3045a-eeba-e0ee-5180-28c7c274de1b-5d3fe33f, #w-node-_4f8c4f75-0cd2-3c70-a0a5-bb95f70144bc-5d3fe33f, #w-node-_4f8c4f75-0cd2-3c70-a0a5-bb95f70144c0-5d3fe33f, #w-node-_6491a404-afbf-0235-2b1f-a29e3d656e78-5d3fe33f, #w-node-_6491a404-afbf-0235-2b1f-a29e3d656e7c-5d3fe33f, #w-node-_9c1a7d59-cc45-316e-73c6-a12c83df367a-5d3fe33f, #w-node-_9c1a7d59-cc45-316e-73c6-a12c83df367e-5d3fe33f, #w-node-_9c1a7d59-cc45-316e-73c6-a12c83df3687-5d3fe33f, #w-node-_9c1a7d59-cc45-316e-73c6-a12c83df368b-5d3fe33f {
  justify-self: start;
}

#w-node-_1d943bff-f218-0ea5-209f-9e457b5958cd-5d3fe33f {
  place-self: start stretch;
}

#w-node-_669259e0-bf65-6f72-e170-63b26b48dadd-5d3fe33f {
  justify-self: start;
}

#w-node-_55951c67-efe8-1b66-8665-0fcd593856d9-5d3fe33f {
  place-self: start stretch;
}

#w-node-_00981cc6-2c27-1219-5472-8278e7718d30-5d3fe33f {
  justify-self: start;
}

#w-node-_7cd2b0e0-f07f-8fd7-b359-6c58c8f7b4f3-5d3fe33f {
  place-self: stretch center;
}

#w-node-d2cfd1e8-9ca6-acc8-b72b-477acc99cffa-5d3fe33f {
  justify-self: center;
}

#w-node-_67582993-7330-4dd7-eca5-f65f29014578-efc29454 {
  place-self: start end;
}

@media screen and (max-width: 991px) {
  #w-node-_7cd2b0e0-f07f-8fd7-b359-6c58c8f7b4f3-5d3fe33f, #w-node-d2cfd1e8-9ca6-acc8-b72b-477acc99cffa-5d3fe33f, #w-node-_67582993-7330-4dd7-eca5-f65f29014578-efc29454 {
    justify-self: start;
  }
}


