/* -- SIZE TOKEN HELPER FUNCTION -- */
/*  -- GLOBAL SIZE TOKENS -- */
/* -- BREAKPOINTS -- */
/* -- UPDATED COLORS -- */
/* -- BORDER RADIUS -- */
/* -- TYPOGRAPHY -- */
/* ---------- MIXINS ---------- */
/* -- STANDARD FIXES -- */
* {
  margin: 0;
  padding: 0;
  outline: 0;
}

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

ul {
  list-style: none;
}

/* -- GLOBAL STYLES -- */
/* -- Media queries are set mobile first -- */
html {
  font-size: 62.5%;
}

html, body {
  height: 100%;
  min-height: 100%;
}

html {
  -webkit-text-size-adjust: 100%;
  overflow: -moz-scrollbars-vertical;
  overflow-y: scroll;
}
html body {
  background: #F5F5FA;
}

body {
  font-family: "Poppins", sans-serif;
}

.clear {
  clear: both !important;
}

.left {
  float: left;
}

.right {
  float: right;
}

#wrapper {
  width: 100%;
  height: auto;
}

.section__inner {
  margin: 0 auto;
  padding: 16px 16px;
}
@media all and (min-width: 360px) {
  .section__inner {
    padding: 20px 24px;
  }
}
@media all and (min-width: 480px) {
  .section__inner {
    padding: 20px 40px;
  }
}
@media all and (min-width: 768px) {
  .section__inner {
    padding: 32px 60px;
  }
}
@media all and (min-width: 1024px) {
  .section__inner {
    padding: 32px 100px;
  }
}
@media all and (min-width: 1280px) {
  .section__inner {
    padding: 40px 120px;
  }
}
@media all and (min-width: 1440px) {
  .section__inner {
    padding: 40px 160px;
  }
}
@media all and (min-width: 1920px) {
  .section__inner {
    padding: 40px 200px;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  color: #4f4f56;
}

h1 {
  font-size: 2.4rem;
  line-height: 3.2rem;
}
@media all and (min-width: 1024px) {
  h1 {
    font-size: 3.2rem;
    line-height: 4rem;
  }
}
@media all and (min-width: 1440px) {
  h1 {
    font-size: 3.6rem;
    line-height: 4.8rem;
  }
}

h2 {
  font-size: 2.4rem;
  line-height: 3rem;
}
@media all and (min-width: 1024px) {
  h2 {
    font-size: 3.2rem;
    line-height: 4rem;
  }
}

h3 {
  font-size: 2.2rem;
  line-height: 2.6rem;
}
@media all and (min-width: 1024px) {
  h3 {
    font-size: 2.4rem;
    line-height: 3.2rem;
  }
}

h4 {
  font-size: 2rem;
  line-height: 2.2rem;
}
@media all and (min-width: 1024px) {
  h4 {
    font-size: 2.4rem;
    line-height: 2.8rem;
  }
}

h5 {
  font-size: 1.6rem;
  line-height: 2rem;
  text-transform: uppercase;
}
@media all and (min-width: 1024px) {
  h5 {
    font-size: 1.8rem;
    line-height: 2.4rem;
  }
}

h6 {
  font-size: 1.2rem;
  line-height: 1.6rem;
}
@media all and (min-width: 1024px) {
  h6 {
    font-size: 1.4rem;
    line-height: 1.8rem;
  }
}

p {
  font-size: 1.4rem;
  line-height: 2.2rem;
  color: #4f4f56;
  font-weight: 400;
  padding: 8px 0px;
}
@media all and (min-width: 1024px) {
  p {
    font-size: 1.6rem;
    line-height: 2.6rem;
  }
}
p.large {
  font-size: 1.8rem;
  line-height: 2.6rem;
}
@media all and (min-width: 1024px) {
  p.large {
    font-size: 2rem;
    line-height: 3rem;
  }
}
p.small {
  font-size: 1.2rem;
  line-height: 1.6rem;
}
p a {
  color: #a7a7b6;
  background: #F5F5FA;
  border: 2px solid #F0F0F7;
  padding: 4px 12px;
  border-radius: 8px;
  display: inline-block;
}
p a:hover {
  color: #4f4f56;
  border: 2px solid #F0F0F7;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

section {
  width: 100%;
}
section.hidden {
  opacity: 0;
}
section.visible {
  opacity: 1;
}

img {
  width: 100%;
}

.text-cta {
  color: #73737e;
  font-size: 1.6rem;
  padding: 2px 0px;
  border-bottom: 2px solid #DDDDEB;
}
.text-cta:hover {
  color: #37373b;
  border-bottom: 2px solid #CACADB;
}

.text-center {
  text-align: center;
  width: 100%;
}

.two-by-two-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media all and (min-width: 768px) {
  .two-by-two-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 40px 1fr;
    grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: auto 40px auto;
    grid-template-rows: repeat(2, auto);
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }
  .two-by-two-grid > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .two-by-two-grid > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .two-by-two-grid > *:nth-child(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .two-by-two-grid > *:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
}

.two-column h2, .two-column h3, .two-column h4, .two-column h5,
.column__sticky-content--content h2,
.column__sticky-content--content h3,
.column__sticky-content--content h4,
.column__sticky-content--content h5 {
  margin-bottom: 12px;
}

.two-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
}
@media all and (min-width: 768px) {
  .two-column {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 40px 1fr;
    grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 40px;
  }
  .two-column > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .two-column > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
}
@media all and (min-width: 1280px) {
  .two-column {
    grid-column-gap: 80px;
  }
}

.two-column-reverse {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: 40px;
}
@media all and (min-width: 768px) {
  .two-column-reverse {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
  }
  .two-column-reverse > * {
    margin-left: 0;
    margin-bottom: 0;
    margin-right: 40px;
    width: calc(100% / 2 - 40px + 40px / 2);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .two-column-reverse > *:nth-child(n+3) {
    margin-top: 40px;
  }
  .two-column-reverse > *:nth-child(2n) {
    margin-right: 0;
  }
}

.three-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  padding: 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media all and (min-width: 768px) {
  .three-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
  }
  .three-column > * {
    margin-left: 0;
    margin-bottom: 0;
    margin-right: 40px;
    width: calc(100% / 3 - 40px + 40px / 3);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .three-column > *:nth-child(n+4) {
    margin-top: 40px;
  }
  .three-column > *:nth-child(3n) {
    margin-right: 0;
  }
}
@media all and (min-width: 1920px) {
  .three-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
  }
  .three-column > * {
    margin-left: 0;
    margin-bottom: 0;
    margin-right: 80px;
    width: calc(100% / 3 - 80px + 80px / 3);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .three-column > *:nth-child(n+4) {
    margin-top: 80px;
  }
  .three-column > *:nth-child(3n) {
    margin-right: 0;
  }
}

.four-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media all and (min-width: 414px) {
  .four-column {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 28px 1fr;
    grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: 1fr 28px 1fr;
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 28px;
    grid-row-gap: 28px;
  }
  .four-column > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .four-column > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .four-column > *:nth-child(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .four-column > *:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
}
@media all and (min-width: 480px) {
  .four-column {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 40px 1fr;
    grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: 1fr 40px 1fr;
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }
  .four-column > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .four-column > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .four-column > *:nth-child(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .four-column > *:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
}
@media all and (min-width: 1024px) {
  .four-column {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
    grid-template-columns: repeat(4, 1fr);
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 40px;
    grid-row-gap: 0px;
  }
  .four-column > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .four-column > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .four-column > *:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
  }
  .four-column > *:nth-child(4) {
    -ms-grid-row: 1;
    -ms-grid-column: 7;
  }
}

.column-justify-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.column-object h4 {
  padding-bottom: 20px;
}

.column-wide {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
}

.inset {
  padding-inline: 20px;
}

.icon {
  display: block;
  height: 40px;
  width: 40px;
}
.icon.chart svg {
  fill: green;
}

img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.divider {
  display: block;
  height: 1px;
  background-color: #DDDDEB;
  margin: 24px 20px;
}

/* -- HEADER -- */
header {
  z-index: 9999;
  width: 100%;
  position: fixed;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  padding: 40px 0px;
  font-size: 1.6rem;
}
@media all and (max-width: 768px) {
  header {
    font-size: 1.4rem;
  }
}
header .header__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 0px;
  padding-bottom: 0px;
}
header .header__inner nav {
  -ms-flex-negative: 1;
      flex-shrink: 1;
}
@media all and (max-width: 768px) {
  header .header__inner nav {
    display: none;
  }
}
header .header__inner nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  height: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
header .header__inner nav ul li {
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
}
header .header__inner nav ul li a {
  display: block;
  padding: 8px 0px;
  color: #a7a7b6;
  font-weight: 700;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  cursor: pointer;
}
header .header__inner nav ul li a:hover {
  color: #19191C;
}
header .header__inner nav ul li.current-menu-item a, header .header__inner nav ul li .current-menu-parent > a {
  color: #4f4f56;
}
header .header__inner .navicon {
  z-index: 9999;
  display: none;
  width: 40px;
  padding: 16px 8px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
header .header__inner .navicon:before {
  content: "";
  display: block;
  height: 11px;
  border-top: 3px solid #a7a7b6;
  border-bottom: 3px solid #a7a7b6;
  margin-bottom: 5px;
}
header .header__inner .navicon:after {
  content: "";
  height: 3px;
  display: block;
  background: #a7a7b6;
}
@media all and (max-width: 768px) {
  header .header__inner .navicon {
    display: block;
  }
}

header.smaller {
  padding: 16px 0px;
  background: rgba(253, 253, 253, 0.975);
}

#header-spacer {
  height: 120px;
  width: 100%;
}

a.logo {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  cursor: pointer;
  z-index: 999999;
}
a.logo .symbol {
  position: relative;
  background: #FFF url("_img/logo.svg") center center no-repeat;
  border: 2px solid #F5F5FA;
  background-size: 38%;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media all and (min-width: 768px) {
  a.logo .symbol {
    width: 56px;
    height: 56px;
  }
}
a.logo .name {
  font-weight: 700;
  color: #4f4f56;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
a.logo .name span {
  display: block;
  margin-left: 0;
  font-weight: 400;
}
@media all and (min-width: 768px) {
  a.logo .name span {
    margin-left: 8px;
    display: inline-block;
  }
}
a.logo .name:hover {
  color: #19191C;
}

.text-image-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.text-image-col.flex-direction__default {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
.text-image-col.flex-direction__reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media all and (min-width: 768px) {
  .text-image-col {
    gap: 40px;
  }
  .text-image-col.flex-direction__default {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .text-image-col.flex-direction__reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media all and (min-width: 1280px) {
  .text-image-col {
    gap: 80px;
  }
}
.text-image-col .column-one {
  -webkit-box-flex: 30;
      -ms-flex: 30;
          flex: 30;
  padding: 20px;
}
.text-image-col .column-two {
  -webkit-box-flex: 70;
      -ms-flex: 70;
          flex: 70;
}

/* -- FOOTER --*/
#footer {
  width: 100%;
  background-color: #F0F0F7;
  color: #a7a7b6;
  text-align: center;
  padding: 40px;
}
#footer .credits {
  font-size: 1.2rem;
}
#footer ul.social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}
#footer ul.social li {
  text-transform: uppercase;
}
#footer ul.social li a {
  display: block;
  fill: #a7a7b6;
  padding: 8px;
  height: 48px;
  width: 48px;
  border-radius: 12px;
  cursor: pointer;
}
#footer ul.social li a:hover {
  fill: #73737e;
  background-color: #FFF;
}

/* --------- MOBILE NAVIGATION -------- */
#navOverlay {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: auto;
  z-index: 9999;
  background: #FFF;
  text-align: center;
  display: none;
}
#navOverlay ul {
  list-style: none;
  width: 100%;
  height: 100%;
  margin: 0px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
}
#navOverlay ul li a {
  color: #a7a7b6;
  font-weight: 600;
  font-size: 2.4rem;
  padding: 12px 0;
  display: block;
}
#navOverlay ul li.current-menu-item a, #navOverlay ul li .current-menu-parent > a {
  color: #4f4f56;
}
#navOverlay #close {
  height: 60px;
  width: 100%;
  cursor: pointer;
  display: block;
  position: fixed;
  bottom: 40px;
  z-index: 100000;
}
#navOverlay #close:before, #navOverlay #close:after {
  position: absolute;
  content: "";
  width: 30px;
  height: 3px;
  background: #a7a7b6;
  display: block;
  bottom: 28px;
  left: 50%;
  margin-left: -15px;
}
#navOverlay #close:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#navOverlay #close:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* -- BUTTONS -- */
.button {
  cursor: pointer;
  text-align: center;
  border-radius: 12px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.button.large {
  background-color: #4f4f56;
  padding: 12px 20px;
  font-size: 1.8rem;
  color: #FFF;
}
.button.large:hover {
  background: #37373b;
}
.button.small {
  padding: 12px 16px;
  font-size: 1.4rem;
  border: 2px solid #DDDDEB;
  color: #4f4f56;
}
.button.small a {
  color: #4f4f56;
}
.button.small:hover {
  border: 2px solid #a7a7b6;
}

a span.arrow {
  color: #a7a7b6 !important;
  padding: 0px 5px;
}

.button-block {
  z-index: 9900;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.button-block.centered-horz {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.button-block.centered-vert {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* CARDS */
.cards-large {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
.cards-large.featured {
  margin: 40px 0px;
}
@media all and (min-width: 768px) {
  .cards-large {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
  }
  .cards-large > * {
    margin-left: 0;
    margin-bottom: 0;
    margin-right: 40px;
    width: calc(100% / 2 - 40px + 40px / 2);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .cards-large > *:nth-child(n+3) {
    margin-top: 40px;
  }
  .cards-large > *:nth-child(2n) {
    margin-right: 0;
  }
}
.cards-large li {
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  border-radius: 16px;
  overflow: hidden;
  word-wrap: break-word;
  background: #FFF;
  height: auto;
}
.cards-large li a.card {
  height: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.cards-large li .card-image {
  width: 100%;
  overflow: hidden;
}
.cards-large li .card-image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  display: block;
  aspect-ratio: 1.33;
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}
.cards-large li h3 {
  margin-top: 16px;
}
@media all and (min-width: 768px) {
  .cards-large li h3 {
    margin-top: 24px;
  }
}
.cards-large li .card-text {
  margin-left: 24px;
  margin-right: 24px;
}
@media all and (min-width: 768px) {
  .cards-large li .card-text {
    margin-left: 40px;
    margin-right: 40px;
  }
}
.cards-large li p {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin: 0px 24px;
}
@media all and (min-width: 768px) {
  .cards-large li p {
    margin: 0px 40px;
  }
}
.cards-large li .text-cta {
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-bottom: 24px;
}
@media all and (min-width: 768px) {
  .cards-large li .text-cta {
    margin-bottom: 36px;
  }
}
.cards-large li:hover img {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}

.cards-small {
  margin: 40px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media all and (min-width: 768px) {
  .cards-small {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
  }
  .cards-small > * {
    margin-left: 0;
    margin-bottom: 0;
    margin-right: 24px;
    width: calc(100% / 4 - 24px + 24px / 4);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .cards-small > *:nth-child(n+5) {
    margin-top: 24px;
  }
  .cards-small > *:nth-child(4n) {
    margin-right: 0;
  }
}
.cards-small li {
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  overflow: hidden;
  word-wrap: break-word;
  background: #FFF;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  height: auto;
}
.cards-small li a.card {
  height: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.cards-small li .card-image {
  width: 100%;
  overflow: hidden;
}
.cards-small li .card-image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  display: block;
  aspect-ratio: 1.33;
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}
.cards-small li h5 {
  text-transform: none;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-top: 8px;
}
@media all and (min-width: 768px) {
  .cards-small li h5 {
    margin-top: 12px;
  }
}
.cards-small li .card-text {
  margin-left: 20px;
  margin-right: 20px;
}
@media all and (min-width: 768px) {
  .cards-small li .card-text {
    margin-left: 24px;
    margin-right: 24px;
  }
}
.cards-small li .text-cta {
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-bottom: 20px;
}
@media all and (min-width: 768px) {
  .cards-small li .text-cta {
    margin-bottom: 24px;
  }
}
.cards-small li:hover img {
  -webkit-transform: scale(1.06);
          transform: scale(1.06);
}

.section__work-images .work-image {
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 100%;
  position: relative;
  border-radius: 16px;
}
.section__work-images .work-image img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1.33;
}

ul.block__work-overview {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-inline: 20px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media all and (min-width: 1024px) {
  ul.block__work-overview {
    -ms-grid-columns: 1fr 12px 1fr 12px 1fr 12px 1fr;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
}
ul.block__work-overview li {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
}

/* WORK IMPACT BLOCK */
.section__work-impact .three-column {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.section__work-impact h4 {
  padding-inline: 20px;
}
.section__work-impact .section__work-impact--callout-data {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  border-radius: 12px;
  border: 2px solid #dfece5;
}
.section__work-impact .section__work-impact--callout-data p {
  font-size: 1.4rem;
  line-height: 2.2rem;
}
.section__work-impact .section__work-impact--disclaimer {
  width: 100%;
  padding-inline: 20px;
  font-size: 1.2rem;
  line-height: 2rem;
  color: #73737e;
  font-weight: 400;
}

.label {
  padding: 4px 12px;
  display: block;
  font-size: 1.2rem;
}
.label.positive {
  background-color: #dfece5;
  border-radius: 4px;
  color: green;
}

.flex-block .video {
  border-radius: 8px;
  overflow: hidden;
}
.flex-block .video .videoWrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  padding-top: 25px;
  height: 0;
}
.flex-block .video .videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.flex-block-single-image-fixed .image-block {
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
  width: 100%;
  border-radius: 16px;
  margin: 0px 0px 20px 0px;
  border: 1px solid #EFF0F3;
  overflow: hidden;
  background-color: #F0F0F7;
  display: block;
}
.flex-block-single-image-fixed .image-block img {
  aspect-ratio: 1.33;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.flex-block-single-image-stretch .image-block {
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
  width: 100%;
  border-radius: 16px;
  margin: 0px 0px 20px 0px;
  border: 1px solid #EFF0F3;
  overflow: hidden;
  background-color: #F0F0F7;
  display: block;
}
.flex-block-single-image-stretch .image-block img {
  display: block;
  width: 100%;
  height: auto;
}

.section__sticky-content .column__sticky-content--content {
  -webkit-box-flex: 40;
      -ms-flex: 40;
          flex: 40;
  position: sticky;
  top: 160px;
}
.section__sticky-content .column__sticky-content--image {
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background-color: #F0F0F7;
  display: block;
}
.section__sticky-content .column__sticky-content--image img {
  display: block;
}

.about-intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 16px;
  max-width: 768px;
}

.about-interests {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 8px;
  font-size: 1.2rem;
  margin-top: 8px;
}
.about-interests li {
  background-color: #F0F0F7;
  padding: 8px 12px;
  border-radius: 12px;
}

.skills .box h3 {
  margin-bottom: 28px;
}
.skills .box h5 {
  margin-bottom: 8px;
}
@media all and (min-width: 1024px) {
  .skills .box h5 {
    margin-bottom: 16px;
  }
}

ul.tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  font-size: 1.2rem;
  margin-top: 12px;
}
ul.tags li {
  border-radius: 8px;
  background-color: #F0F0F7;
  padding: 4px 8px;
}

.intro {
  padding: 20px 0px 20px 0px;
  margin: 0 auto;
  text-align: center;
  max-width: 1000px;
  height: auto;
}
@media all and (min-width: 1024px) {
  .intro {
    padding: 40px 0px 40px 0px;
  }
}
.intro .section__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
@media all and (min-width: 1024px) {
  .intro .section__inner {
    gap: 40px;
    height: 100%;
  }
}

#featured-work {
  width: 100%;
  z-index: 0;
}

.work-intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 16px;
  max-width: 768px;
}

.work-hero-image {
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 100%;
  position: relative;
  border-radius: 16px;
  margin-bottom: 0;
  margin-top: 0;
}
@media all and (min-width: 1024px) {
  .work-hero-image {
    margin-bottom: 40px;
    margin-top: 40px;
  }
}
.work-hero-image img {
  aspect-ratio: 1.33;
}

.work-image-caption {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 12px 20px;
}
.work-image-caption p {
  font-size: 1.2rem;
  line-height: 2rem;
  color: #73737e;
}

ul.content-list {
  font-size: 1.6rem;
  list-style-type: disc;
}
@media all and (min-width: 768px) {
  ul.content-list {
    font-size: 1.8rem;
  }
}
ul.content-list li {
  padding: 8px 0px;
  margin-left: 16px;
  color: #4f4f56;
}

p.tagline {
  font-style: italic;
  font-weight: 400;
  color: #73737e;
  font-size: 1.2rem;
  line-height: 1.8rem;
}
@media all and (min-width: 1024px) {
  p.tagline {
    font-size: 1.4rem;
    line-height: 2rem;
  }
}

.section__work-tags {
  width: 100%;
  padding: 0px 20px;
}

.post-navigation {
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
.post-navigation a {
  min-width: 132px;
  text-align: center;
  padding: 12px 12px;
  font-size: 1.4rem;
  border: 2px solid #DDDDEB;
  color: #4f4f56;
  border-radius: 12px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.post-navigation a:hover {
  border: 2px solid #a7a7b6;
}
