@charset "UTF-8";
/*!
  Theme Name: KNI Gulp
  Author: KNI
  Author URI: https://kurtnoble.com/
  Description: KNI Gulp Starter Kit
  Version: 2.0

  License: No License
*/
/* stylelint-disable value-keyword-case */
/* stylelint-enable value-keyword-case */
/* stylelint-disable value-keyword-case */
/* stylelint-disable enable-keyword-case */
#breakpoints {
  display: none;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  #breakpoints {
    z-index: 1;
  }
}

#dev-config--width {
  position: fixed;
  top: 0;
  right: 0;
  background: lightgreen;
  padding: 10px;
}
#dev-config--width::before,
#dev-config--width span {
  font-weight: bold;
  font-size: 1.5rem;
}
@media (width >= 1px) and (max-width: 374px) {
  #dev-config--width {
    background: lightseagreen;
  }
  #dev-config--width::before {
    content: "Below $ms: ";
  }
}
@media (min-width: 320px) {
  #dev-config--width {
    background: lightblue;
  }
  #dev-config--width::before {
    content: "$ms: ";
  }
}
@media (min-width: 375px) {
  #dev-config--width {
    background: lightgoldenrodyellow;
  }
  #dev-config--width::before {
    content: "$mm: ";
  }
}
@media (min-width: 500px) {
  #dev-config--width {
    background: yellow;
  }
  #dev-config--width::before {
    content: "$ml: ";
  }
}
@media (min-width: 600px) {
  #dev-config--width {
    background: lightsalmon;
  }
  #dev-config--width::before {
    content: "$ts: ";
  }
}
@media (min-width: 768px) {
  #dev-config--width {
    background: lightsteelblue;
  }
  #dev-config--width::before {
    content: "$tm: ";
  }
}
@media (min-width: 1024px) {
  #dev-config--width {
    background: lightpink;
  }
  #dev-config--width::before {
    content: "$tl: ";
  }
}
@media (min-width: 1440px) {
  #dev-config--width {
    background: rgb(90, 216, 244);
  }
  #dev-config--width::before {
    content: "$dm: ";
  }
}
@media (min-width: 1600px) {
  #dev-config--width {
    background: rgb(147, 245, 128);
  }
  #dev-config--width::before {
    content: "$dl: ";
  }
}
@media (min-width: 1800px) {
  #dev-config--width {
    background: yellow;
  }
  #dev-config--width::before {
    content: "$dxl: ";
  }
}

.gradient-text {
  background: linear-gradient(89.8deg, #8c4e9f 0.22%, #0c8dc3 99.88%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.gradient-text-dark {
  background: linear-gradient(89.8deg, #5f1776 0%, #00567a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.gradient-text::after {
  content: "";
  display: block;
  height: 0.1em;
}

h1.gradient-text {
  background: linear-gradient(84.87deg, #5f1776 5.19%, #00567a 96.1%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

*,
*::after,
*::before {
  --emBase: 16;
  --mobileMin: 320;
  --mobile: 375;
  --mobileMax: 600;
  --desktopMin: 1024;
  --desktop: 1440;
  --desktopMax: 1800;
  --siteMin: var(--mobileMin);
  --siteBasis: var(--mobile);
  --siteMax: var(--mobileMax);
  box-sizing: border-box;
  text-decoration: none;
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: antialiased;
  -webkit-margin-before: 0;
  margin-block-start: 0;
  -webkit-margin-after: 0;
  margin-block-end: 0;
  -webkit-padding-start: 0;
  padding-inline-start: 0;
  -webkit-padding-end: 0;
  padding-inline-end: 0;
  -webkit-padding-before: 0;
  padding-block-start: 0;
  -webkit-padding-after: 0;
  padding-block-end: 0;
  -webkit-margin-start: 0;
  margin-inline-start: 0;
  -webkit-margin-end: 0;
  margin-inline-end: 0;
}
@media (min-width: 1024px) {
  *,
  *::after,
  *::before {
    --siteMin: var(--desktopMin);
    --siteBasis: var(--desktop);
    --siteMax: var(--desktopMax);
  }
}
*:visited,
*::after:visited,
*::before:visited {
  color: inherit;
}

html,
body {
  min-height: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

html {
  font-family: -apple-system, BlinkMacSystemFont, "Apple Color Emoji", "Segoe UI", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 1em;
  font-weight: 400;
}

body {
  margin: 0;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1rem;
}

img {
  max-width: 100%;
}

img,
button {
  -webkit-user-select: none;
          user-select: none;
}

img,
video,
figure,
picture,
label,
embed {
  display: block;
}

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

fieldset {
  border: none;
  padding: 0;
}

a {
  cursor: pointer;
}

nav ul {
  list-style-type: none;
}

iframe {
  border: none;
  color-scheme: normal;
}

q {
  quotes: "“" "”" "‘" "’";
}
q::before {
  content: open-quote;
}
q::after {
  content: close-quote;
}

figure,
picture {
  overflow: hidden;
  position: relative;
}

pre {
  margin: 0;
}

button {
  -webkit-appearance: none;
          appearance: none;
  align-items: unset;
  background-color: transparent;
  margin: unset;
  padding: unset;
  border: none;
  font: unset;
  font-size: inherit;
  font-family: -apple-system, BlinkMacSystemFont, "Apple Color Emoji", "Segoe UI", "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: 400;
}
button:hover {
  cursor: pointer;
}

html {
  background-color: #fff;
}
html.open .responsiveNav {
  display: block;
}
html.overflow-hidden {
  overflow: hidden;
}

a {
  text-decoration: underline;
  text-decoration-thickness: 0.05em;
  text-underline-offset: 0.25em;
}

tt,
i,
b,
big,
small,
em,
strong,
dfn,
code,
samp,
kbd,
var,
cite,
abbr,
acronym,
sub,
sup,
span,
bdo,
address,
div,
a,
object,
p,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
q,
ins,
del,
dt,
dd,
li,
label,
option,
textarea,
fieldset,
legend,
button,
caption,
td,
th,
title,
blockquote,
time,
input,
.fluid-type {
  --fontSizeMin: calc(var(--fontSize) * var(--siteMin) / var(--siteBasis));
  --fontSizeMax: calc(var(--fontSize) * var(--siteMax) / var(--siteBasis));
  --fontSizeMinClamp: var(--fontSizeMin);
  --fontSizeMaxClamp: var(--fontSizeMax);
  font-size: clamp(var(--fontSizeMinClamp) * 1px, var(--fontSizeMin) / var(--emBase) * 1rem + (var(--fontSizeMax) - var(--fontSizeMin)) * (100vw - var(--siteMin) * 1px) / (var(--siteMax) - var(--siteMin)), var(--fontSizeMaxClamp) * 1px);
}

.screenReaderOnly {
  position: absolute;
  overflow: hidden;
  top: auto;
  left: -10000px;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
}

.resizeTransitionStopper .responsiveNav,
.resizeTransitionStopper .responsiveNav .nav {
  transition: none !important;
}

.spacing-mt-none {
  margin-top: 0 !important;
}
.spacing-mt-01 {
  margin-top: clamp(1px, calc(6vw * (100 / var(--siteBasis))), calc(6px * var(--siteMax) / var(--siteBasis))) !important;
}
@media (max-width: 767px) {
  .spacing-mt-01 {
    margin-top: clamp(1px, calc(6vw * (100 / var(--siteBasis))), calc(6px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
.spacing-mt-02 {
  margin-top: clamp(1px, calc(12vw * (100 / var(--siteBasis))), calc(12px * var(--siteMax) / var(--siteBasis))) !important;
}
@media (max-width: 767px) {
  .spacing-mt-02 {
    margin-top: clamp(1px, calc(12vw * (100 / var(--siteBasis))), calc(12px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
.spacing-mt-03 {
  margin-top: clamp(1px, calc(16vw * (100 / var(--siteBasis))), calc(16px * var(--siteMax) / var(--siteBasis))) !important;
}
@media (max-width: 767px) {
  .spacing-mt-03 {
    margin-top: clamp(1px, calc(16vw * (100 / var(--siteBasis))), calc(16px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
.spacing-mt-04 {
  margin-top: clamp(1px, calc(24vw * (100 / var(--siteBasis))), calc(24px * var(--siteMax) / var(--siteBasis))) !important;
}
@media (max-width: 767px) {
  .spacing-mt-04 {
    margin-top: clamp(1px, calc(24vw * (100 / var(--siteBasis))), calc(24px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
.spacing-mt-05 {
  margin-top: clamp(1px, calc(32vw * (100 / var(--siteBasis))), calc(32px * var(--siteMax) / var(--siteBasis))) !important;
}
@media (max-width: 767px) {
  .spacing-mt-05 {
    margin-top: clamp(1px, calc(32vw * (100 / var(--siteBasis))), calc(32px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
.spacing-mt-06 {
  margin-top: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis))) !important;
}
@media (max-width: 767px) {
  .spacing-mt-06 {
    margin-top: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
.spacing-mt-07 {
  margin-top: clamp(1px, calc(48vw * (100 / var(--siteBasis))), calc(48px * var(--siteMax) / var(--siteBasis))) !important;
}
@media (max-width: 767px) {
  .spacing-mt-07 {
    margin-top: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
.spacing-mt-08 {
  margin-top: clamp(1px, calc(64vw * (100 / var(--siteBasis))), calc(64px * var(--siteMax) / var(--siteBasis))) !important;
}
@media (max-width: 767px) {
  .spacing-mt-08 {
    margin-top: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
.spacing-mt-09 {
  margin-top: clamp(1px, calc(80vw * (100 / var(--siteBasis))), calc(80px * var(--siteMax) / var(--siteBasis))) !important;
}
@media (max-width: 767px) {
  .spacing-mt-09 {
    margin-top: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
.spacing-mt-10 {
  margin-top: clamp(1px, calc(96vw * (100 / var(--siteBasis))), calc(96px * var(--siteMax) / var(--siteBasis))) !important;
}
@media (max-width: 767px) {
  .spacing-mt-10 {
    margin-top: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
.spacing-mt-11 {
  margin-top: clamp(1px, calc(120vw * (100 / var(--siteBasis))), calc(120px * var(--siteMax) / var(--siteBasis))) !important;
}
@media (max-width: 767px) {
  .spacing-mt-11 {
    margin-top: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
.spacing-mt-12 {
  margin-top: clamp(1px, calc(160vw * (100 / var(--siteBasis))), calc(160px * var(--siteMax) / var(--siteBasis))) !important;
}
@media (max-width: 767px) {
  .spacing-mt-12 {
    margin-top: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis))) !important;
  }
}

.spacing-mb-none {
  margin-bottom: 0 !important;
}
.spacing-mb-01 {
  margin-bottom: clamp(1px, calc(6vw * (100 / var(--siteBasis))), calc(6px * var(--siteMax) / var(--siteBasis))) !important;
}
@media (max-width: 767px) {
  .spacing-mb-01 {
    margin-bottom: clamp(1px, calc(6vw * (100 / var(--siteBasis))), calc(6px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
.spacing-mb-02 {
  margin-bottom: clamp(1px, calc(12vw * (100 / var(--siteBasis))), calc(12px * var(--siteMax) / var(--siteBasis))) !important;
}
@media (max-width: 767px) {
  .spacing-mb-02 {
    margin-bottom: clamp(1px, calc(12vw * (100 / var(--siteBasis))), calc(12px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
.spacing-mb-03 {
  margin-bottom: clamp(1px, calc(16vw * (100 / var(--siteBasis))), calc(16px * var(--siteMax) / var(--siteBasis))) !important;
}
@media (max-width: 767px) {
  .spacing-mb-03 {
    margin-bottom: clamp(1px, calc(16vw * (100 / var(--siteBasis))), calc(16px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
.spacing-mb-04 {
  margin-bottom: clamp(1px, calc(24vw * (100 / var(--siteBasis))), calc(24px * var(--siteMax) / var(--siteBasis))) !important;
}
@media (max-width: 767px) {
  .spacing-mb-04 {
    margin-bottom: clamp(1px, calc(24vw * (100 / var(--siteBasis))), calc(24px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
.spacing-mb-05 {
  margin-bottom: clamp(1px, calc(32vw * (100 / var(--siteBasis))), calc(32px * var(--siteMax) / var(--siteBasis))) !important;
}
@media (max-width: 767px) {
  .spacing-mb-05 {
    margin-bottom: clamp(1px, calc(32vw * (100 / var(--siteBasis))), calc(32px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
.spacing-mb-06 {
  margin-bottom: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis))) !important;
}
@media (max-width: 767px) {
  .spacing-mb-06 {
    margin-bottom: clamp(1px, calc(6vw * (100 / var(--siteBasis))), calc(6px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
.spacing-mb-07 {
  margin-bottom: clamp(1px, calc(48vw * (100 / var(--siteBasis))), calc(48px * var(--siteMax) / var(--siteBasis))) !important;
}
@media (max-width: 767px) {
  .spacing-mb-07 {
    margin-bottom: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
.spacing-mb-08 {
  margin-bottom: clamp(1px, calc(64vw * (100 / var(--siteBasis))), calc(64px * var(--siteMax) / var(--siteBasis))) !important;
}
@media (max-width: 767px) {
  .spacing-mb-08 {
    margin-bottom: clamp(1px, calc(6vw * (100 / var(--siteBasis))), calc(6px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
.spacing-mb-09 {
  margin-bottom: clamp(1px, calc(80vw * (100 / var(--siteBasis))), calc(80px * var(--siteMax) / var(--siteBasis))) !important;
}
@media (max-width: 767px) {
  .spacing-mb-09 {
    margin-bottom: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
.spacing-mb-10 {
  margin-bottom: clamp(1px, calc(96vw * (100 / var(--siteBasis))), calc(96px * var(--siteMax) / var(--siteBasis))) !important;
}
@media (max-width: 767px) {
  .spacing-mb-10 {
    margin-bottom: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
.spacing-mb-11 {
  margin-bottom: clamp(1px, calc(120vw * (100 / var(--siteBasis))), calc(120px * var(--siteMax) / var(--siteBasis))) !important;
}
@media (max-width: 767px) {
  .spacing-mb-11 {
    margin-bottom: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
.spacing-mb-12 {
  margin-bottom: clamp(1px, calc(160vw * (100 / var(--siteBasis))), calc(160px * var(--siteMax) / var(--siteBasis))) !important;
}
@media (max-width: 767px) {
  .spacing-mb-12 {
    margin-bottom: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis))) !important;
  }
}

.spacing-pt-none {
  padding-top: 0 !important;
}
.spacing-pt-01 {
  padding-top: clamp(1px, calc(6vw * (100 / var(--siteBasis))), calc(6px * var(--siteMax) / var(--siteBasis))) !important;
}
@media (max-width: 767px) {
  .spacing-pt-01 {
    padding-top: clamp(1px, calc(6vw * (100 / var(--siteBasis))), calc(6px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
.spacing-pt-02 {
  padding-top: clamp(1px, calc(12vw * (100 / var(--siteBasis))), calc(12px * var(--siteMax) / var(--siteBasis))) !important;
}
@media (max-width: 767px) {
  .spacing-pt-02 {
    padding-top: clamp(1px, calc(12vw * (100 / var(--siteBasis))), calc(12px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
.spacing-pt-03 {
  padding-top: clamp(1px, calc(16vw * (100 / var(--siteBasis))), calc(16px * var(--siteMax) / var(--siteBasis))) !important;
}
@media (max-width: 767px) {
  .spacing-pt-03 {
    padding-top: clamp(1px, calc(16vw * (100 / var(--siteBasis))), calc(16px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
.spacing-pt-04 {
  padding-top: clamp(1px, calc(24vw * (100 / var(--siteBasis))), calc(24px * var(--siteMax) / var(--siteBasis))) !important;
}
@media (max-width: 767px) {
  .spacing-pt-04 {
    padding-top: clamp(1px, calc(24vw * (100 / var(--siteBasis))), calc(24px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
.spacing-pt-05 {
  padding-top: clamp(1px, calc(32vw * (100 / var(--siteBasis))), calc(32px * var(--siteMax) / var(--siteBasis))) !important;
}
@media (max-width: 767px) {
  .spacing-pt-05 {
    padding-top: clamp(1px, calc(32vw * (100 / var(--siteBasis))), calc(32px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
.spacing-pt-06 {
  padding-top: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis))) !important;
}
@media (max-width: 767px) {
  .spacing-pt-06 {
    padding-top: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
.spacing-pt-07 {
  padding-top: clamp(1px, calc(48vw * (100 / var(--siteBasis))), calc(48px * var(--siteMax) / var(--siteBasis))) !important;
}
@media (max-width: 767px) {
  .spacing-pt-07 {
    padding-top: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
.spacing-pt-08 {
  padding-top: clamp(1px, calc(64vw * (100 / var(--siteBasis))), calc(64px * var(--siteMax) / var(--siteBasis))) !important;
}
@media (max-width: 767px) {
  .spacing-pt-08 {
    padding-top: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
.spacing-pt-09 {
  padding-top: clamp(1px, calc(80vw * (100 / var(--siteBasis))), calc(80px * var(--siteMax) / var(--siteBasis))) !important;
}
@media (max-width: 767px) {
  .spacing-pt-09 {
    padding-top: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
.spacing-pt-10 {
  padding-top: clamp(1px, calc(96vw * (100 / var(--siteBasis))), calc(96px * var(--siteMax) / var(--siteBasis))) !important;
}
@media (max-width: 767px) {
  .spacing-pt-10 {
    padding-top: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
.spacing-pt-11 {
  padding-top: clamp(1px, calc(120vw * (100 / var(--siteBasis))), calc(120px * var(--siteMax) / var(--siteBasis))) !important;
}
@media (max-width: 767px) {
  .spacing-pt-11 {
    padding-top: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
.spacing-pt-12 {
  padding-top: clamp(1px, calc(160vw * (100 / var(--siteBasis))), calc(160px * var(--siteMax) / var(--siteBasis))) !important;
}
@media (max-width: 767px) {
  .spacing-pt-12 {
    padding-top: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis))) !important;
  }
}

.spacing-pb-none {
  padding-bottom: 0 !important;
}
.spacing-pb-01 {
  padding-bottom: clamp(1px, calc(6vw * (100 / var(--siteBasis))), calc(6px * var(--siteMax) / var(--siteBasis))) !important;
}
@media (max-width: 767px) {
  .spacing-pb-01 {
    padding-top: clamp(1px, calc(6vw * (100 / var(--siteBasis))), calc(6px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
.spacing-pb-02 {
  padding-bottom: clamp(1px, calc(12vw * (100 / var(--siteBasis))), calc(12px * var(--siteMax) / var(--siteBasis))) !important;
}
@media (max-width: 767px) {
  .spacing-pb-02 {
    padding-top: clamp(1px, calc(12vw * (100 / var(--siteBasis))), calc(12px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
.spacing-pb-03 {
  padding-bottom: clamp(1px, calc(16vw * (100 / var(--siteBasis))), calc(16px * var(--siteMax) / var(--siteBasis))) !important;
}
@media (max-width: 767px) {
  .spacing-pb-03 {
    padding-top: clamp(1px, calc(16vw * (100 / var(--siteBasis))), calc(16px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
.spacing-pb-04 {
  padding-bottom: clamp(1px, calc(24vw * (100 / var(--siteBasis))), calc(24px * var(--siteMax) / var(--siteBasis))) !important;
}
@media (max-width: 767px) {
  .spacing-pb-04 {
    padding-top: clamp(1px, calc(24vw * (100 / var(--siteBasis))), calc(24px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
.spacing-pb-05 {
  padding-bottom: clamp(1px, calc(32vw * (100 / var(--siteBasis))), calc(32px * var(--siteMax) / var(--siteBasis))) !important;
}
@media (max-width: 767px) {
  .spacing-pb-05 {
    padding-top: clamp(1px, calc(32vw * (100 / var(--siteBasis))), calc(32px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
.spacing-pb-06 {
  padding-bottom: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis))) !important;
}
@media (max-width: 767px) {
  .spacing-pb-06 {
    padding-top: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
.spacing-pb-07 {
  padding-bottom: clamp(1px, calc(48vw * (100 / var(--siteBasis))), calc(48px * var(--siteMax) / var(--siteBasis))) !important;
}
@media (max-width: 767px) {
  .spacing-pb-07 {
    padding-top: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
.spacing-pb-08 {
  padding-bottom: clamp(1px, calc(64vw * (100 / var(--siteBasis))), calc(64px * var(--siteMax) / var(--siteBasis))) !important;
}
@media (max-width: 767px) {
  .spacing-pb-08 {
    padding-top: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
.spacing-pb-09 {
  padding-bottom: clamp(1px, calc(80vw * (100 / var(--siteBasis))), calc(80px * var(--siteMax) / var(--siteBasis))) !important;
}
@media (max-width: 767px) {
  .spacing-pb-09 {
    padding-top: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
.spacing-pb-10 {
  padding-bottom: clamp(1px, calc(96vw * (100 / var(--siteBasis))), calc(96px * var(--siteMax) / var(--siteBasis))) !important;
}
@media (max-width: 767px) {
  .spacing-pb-10 {
    padding-top: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
.spacing-pb-11 {
  padding-bottom: clamp(1px, calc(120vw * (100 / var(--siteBasis))), calc(120px * var(--siteMax) / var(--siteBasis))) !important;
}
@media (max-width: 767px) {
  .spacing-pb-11 {
    padding-top: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
.spacing-pb-12 {
  padding-bottom: clamp(1px, calc(160vw * (100 / var(--siteBasis))), calc(160px * var(--siteMax) / var(--siteBasis))) !important;
}
@media (max-width: 767px) {
  .spacing-pb-12 {
    padding-top: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis))) !important;
  }
}

@media (max-width: 767px) {
  .spacing-mobile-mt-none {
    margin-top: 0 !important;
  }
}
@media (max-width: 767px) {
  .spacing-mobile-mt-01 {
    margin-top: clamp(1px, calc(6vw * (100 / var(--siteBasis))), calc(6px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
@media (max-width: 767px) {
  .spacing-mobile-mt-02 {
    margin-top: clamp(1px, calc(12vw * (100 / var(--siteBasis))), calc(12px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
@media (max-width: 767px) {
  .spacing-mobile-mt-03 {
    margin-top: clamp(1px, calc(16vw * (100 / var(--siteBasis))), calc(16px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
@media (max-width: 767px) {
  .spacing-mobile-mt-04 {
    margin-top: clamp(1px, calc(24vw * (100 / var(--siteBasis))), calc(24px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
@media (max-width: 767px) {
  .spacing-mobile-mt-05 {
    margin-top: clamp(1px, calc(32vw * (100 / var(--siteBasis))), calc(32px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
@media (max-width: 767px) {
  .spacing-mobile-mt-06 {
    margin-top: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
@media (max-width: 767px) {
  .spacing-mobile-mt-07 {
    margin-top: clamp(1px, calc(48vw * (100 / var(--siteBasis))), calc(48px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
@media (max-width: 767px) {
  .spacing-mobile-mt-08 {
    margin-top: clamp(1px, calc(64vw * (100 / var(--siteBasis))), calc(64px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
@media (max-width: 767px) {
  .spacing-mobile-mt-09 {
    margin-top: clamp(1px, calc(80vw * (100 / var(--siteBasis))), calc(80px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
@media (max-width: 767px) {
  .spacing-mobile-mt-10 {
    margin-top: clamp(1px, calc(96vw * (100 / var(--siteBasis))), calc(96px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
@media (max-width: 767px) {
  .spacing-mobile-mt-11 {
    margin-top: clamp(1px, calc(120vw * (100 / var(--siteBasis))), calc(120px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
@media (max-width: 767px) {
  .spacing-mobile-mt-12 {
    margin-top: clamp(1px, calc(160vw * (100 / var(--siteBasis))), calc(160px * var(--siteMax) / var(--siteBasis))) !important;
  }
}

@media (max-width: 767px) {
  .spacing-mobile-mb-none {
    margin-bottom: 0 !important;
  }
}
@media (max-width: 767px) {
  .spacing-mobile-mb-01 {
    margin-bottom: clamp(1px, calc(6vw * (100 / var(--siteBasis))), calc(6px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
@media (max-width: 767px) {
  .spacing-mobile-mb-02 {
    margin-bottom: clamp(1px, calc(12vw * (100 / var(--siteBasis))), calc(12px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
@media (max-width: 767px) {
  .spacing-mobile-mb-03 {
    margin-bottom: clamp(1px, calc(16vw * (100 / var(--siteBasis))), calc(16px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
@media (max-width: 767px) {
  .spacing-mobile-mb-04 {
    margin-bottom: clamp(1px, calc(24vw * (100 / var(--siteBasis))), calc(24px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
@media (max-width: 767px) {
  .spacing-mobile-mb-05 {
    margin-bottom: clamp(1px, calc(32vw * (100 / var(--siteBasis))), calc(32px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
@media (max-width: 767px) {
  .spacing-mobile-mb-06 {
    margin-bottom: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
@media (max-width: 767px) {
  .spacing-mobile-mb-07 {
    margin-bottom: clamp(1px, calc(48vw * (100 / var(--siteBasis))), calc(48px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
@media (max-width: 767px) {
  .spacing-mobile-mb-08 {
    margin-bottom: clamp(1px, calc(64vw * (100 / var(--siteBasis))), calc(64px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
@media (max-width: 767px) {
  .spacing-mobile-mb-09 {
    margin-bottom: clamp(1px, calc(80vw * (100 / var(--siteBasis))), calc(80px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
@media (max-width: 767px) {
  .spacing-mobile-mb-10 {
    margin-bottom: clamp(1px, calc(96vw * (100 / var(--siteBasis))), calc(96px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
@media (max-width: 767px) {
  .spacing-mobile-mb-11 {
    margin-bottom: clamp(1px, calc(120vw * (100 / var(--siteBasis))), calc(120px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
@media (max-width: 767px) {
  .spacing-mobile-mb-12 {
    margin-bottom: clamp(1px, calc(160vw * (100 / var(--siteBasis))), calc(160px * var(--siteMax) / var(--siteBasis))) !important;
  }
}

@media (max-width: 767px) {
  .spacing-mobile-pt-none {
    padding-top: 0 !important;
  }
}
@media (max-width: 767px) {
  .spacing-mobile-pt-01 {
    padding-top: clamp(1px, calc(6vw * (100 / var(--siteBasis))), calc(6px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
@media (max-width: 767px) {
  .spacing-mobile-pt-02 {
    padding-top: clamp(1px, calc(12vw * (100 / var(--siteBasis))), calc(12px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
@media (max-width: 767px) {
  .spacing-mobile-pt-03 {
    padding-top: clamp(1px, calc(16vw * (100 / var(--siteBasis))), calc(16px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
@media (max-width: 767px) {
  .spacing-mobile-pt-04 {
    padding-top: clamp(1px, calc(24vw * (100 / var(--siteBasis))), calc(24px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
@media (max-width: 767px) {
  .spacing-mobile-pt-05 {
    padding-top: clamp(1px, calc(32vw * (100 / var(--siteBasis))), calc(32px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
@media (max-width: 767px) {
  .spacing-mobile-pt-06 {
    padding-top: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
@media (max-width: 767px) {
  .spacing-mobile-pt-07 {
    padding-top: clamp(1px, calc(48vw * (100 / var(--siteBasis))), calc(48px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
@media (max-width: 767px) {
  .spacing-mobile-pt-08 {
    padding-top: clamp(1px, calc(64vw * (100 / var(--siteBasis))), calc(64px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
@media (max-width: 767px) {
  .spacing-mobile-pt-09 {
    padding-top: clamp(1px, calc(80vw * (100 / var(--siteBasis))), calc(80px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
@media (max-width: 767px) {
  .spacing-mobile-pt-10 {
    padding-top: clamp(1px, calc(96vw * (100 / var(--siteBasis))), calc(96px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
@media (max-width: 767px) {
  .spacing-mobile-pt-11 {
    padding-top: clamp(1px, calc(120vw * (100 / var(--siteBasis))), calc(120px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
@media (max-width: 767px) {
  .spacing-mobile-pt-12 {
    padding-top: clamp(1px, calc(160vw * (100 / var(--siteBasis))), calc(160px * var(--siteMax) / var(--siteBasis))) !important;
  }
}

@media (max-width: 767px) {
  .spacing-mobile-pb-none {
    padding-bottom: 0 !important;
  }
}
@media (max-width: 767px) {
  .spacing-mobile-pb-01 {
    padding-bottom: clamp(1px, calc(6vw * (100 / var(--siteBasis))), calc(6px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
@media (max-width: 767px) {
  .spacing-mobile-pb-02 {
    padding-bottom: clamp(1px, calc(12vw * (100 / var(--siteBasis))), calc(12px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
@media (max-width: 767px) {
  .spacing-mobile-pb-03 {
    padding-bottom: clamp(1px, calc(16vw * (100 / var(--siteBasis))), calc(16px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
@media (max-width: 767px) {
  .spacing-mobile-pb-04 {
    padding-bottom: clamp(1px, calc(24vw * (100 / var(--siteBasis))), calc(24px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
@media (max-width: 767px) {
  .spacing-mobile-pb-05 {
    padding-bottom: clamp(1px, calc(32vw * (100 / var(--siteBasis))), calc(32px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
@media (max-width: 767px) {
  .spacing-mobile-pb-06 {
    padding-bottom: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
@media (max-width: 767px) {
  .spacing-mobile-pb-07 {
    padding-bottom: clamp(1px, calc(48vw * (100 / var(--siteBasis))), calc(48px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
@media (max-width: 767px) {
  .spacing-mobile-pb-08 {
    padding-bottom: clamp(1px, calc(64vw * (100 / var(--siteBasis))), calc(64px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
@media (max-width: 767px) {
  .spacing-mobile-pb-09 {
    padding-bottom: clamp(1px, calc(80vw * (100 / var(--siteBasis))), calc(80px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
@media (max-width: 767px) {
  .spacing-mobile-pb-10 {
    padding-bottom: clamp(1px, calc(96vw * (100 / var(--siteBasis))), calc(96px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
@media (max-width: 767px) {
  .spacing-mobile-pb-11 {
    padding-bottom: clamp(1px, calc(120vw * (100 / var(--siteBasis))), calc(120px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
@media (max-width: 767px) {
  .spacing-mobile-pb-12 {
    padding-bottom: clamp(1px, calc(160vw * (100 / var(--siteBasis))), calc(160px * var(--siteMax) / var(--siteBasis))) !important;
  }
}

.color--white {
  color: #fff;
}
.color--black {
  color: #000;
}
.color--text {
  color: #302c2c;
}
.color--border {
  color: #cbcbcb;
}
.color--blueBlack {
  color: #00202c;
}
.color--blueBlack2 {
  color: #030101;
}
.color--grey {
  color: #303030;
}
.color--darkBlue {
  color: #0e1e2a;
}
.color--gold {
  color: #e9a64c;
}
.color--purple {
  color: #8c4e9f;
}
.color--deepBlue {
  color: #035c81;
}
.color--skyBlue {
  color: rgba(227, 240, 245, 0.5019607843);
}
.color--magenta {
  color: #cf2fb3;
}
.color--seaGreen {
  color: #8ab699;
}
.color--ceruleanSky {
  color: #0c8dc3;
}

.background--white {
  background-color: #fff;
}
.background--black {
  background-color: #000;
}
.background--text {
  background-color: #302c2c;
}
.background--border {
  background-color: #cbcbcb;
}
.background--blueBlack {
  background-color: #00202c;
}
.background--grey {
  background-color: #303030;
}
.background--darkBlue {
  background-color: #0e1e2a;
}
.background--gold {
  background-color: #e9a64c;
}
.background--purple {
  background-color: #8c4e9f;
}
.background--deepBlue {
  background-color: #035c81;
}
.background--skyBlue {
  background-color: rgba(227, 240, 245, 0.5019607843);
}
.background--magenta {
  background-color: #cf2fb3;
}
.background--seaGreen {
  background-color: #8ab699;
}

.flex {
  display: flex;
}
.flex.inline-flex {
  display: inline-flex;
}
.flex.wrap {
  flex-wrap: wrap;
}
.flex.j-sb {
  justify-content: space-between;
}
.flex.j-c {
  justify-content: center;
}
.flex.j-start {
  justify-content: flex-start;
}
.flex.j-end {
  justify-content: flex-end;
}
.flex.a-c {
  align-items: center;
}
.flex.a-start {
  align-items: flex-start;
}
.flex.a-end {
  align-items: flex-end;
}
.flex.column {
  flex-direction: column;
}
@media (max-width: 767px) {
  .flex.column-mobile {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .flex.column-mobile-reverse {
    flex-direction: column-reverse;
  }
}
@media (min-width: 768px) {
  .flex.row-desktop-reverse {
    flex-direction: row-reverse;
  }
}
@media (max-width: 767px) {
  .flex.row-mobile-reverse {
    flex-direction: row-reverse;
  }
}
.flex.center {
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .flex.a-start-mobile {
    align-items: flex-start;
  }
}
@media (max-width: 767px) {
  .flex.j-c-mobile {
    justify-content: center;
  }
}

:root {
  --ar: 1;
  --scaleBy: 1;
  --headerBGHeight: 0;
}

html {
  text-rendering: optimizelegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Noto Sans", sans-serif;
}

html,
body {
  --fontSize: 14;
  line-height: 140%;
  font-weight: 400;
  color: #000;
}
@media (min-width: 768px) {
  html,
  body {
    --fontSize: 16;
  }
}
html.is-locked,
body.is-locked {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
  top: 0;
  left: 0;
}
html.has-overlay,
body.has-overlay {
  position: relative;
  height: 100%;
}
html.has-overlay::before,
body.has-overlay::before {
  background: rgba(0, 0, 0, 0.2);
  content: "";
  width: 100%;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: 600;
}
html.is-dimmed,
body.is-dimmed {
  position: relative;
  height: 100%;
}
html.is-dimmed::before,
body.is-dimmed::before {
  background: rgba(0, 0, 0, 0.2);
  content: "";
  width: 100%;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: 500;
}

.max-container {
  z-index: 0;
  overflow-x: hidden;
  overflow-x: clip;
}

.container {
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .container {
    max-width: clamp(1px, calc(1200vw * (100 / var(--siteBasis))), calc(1200px * var(--siteMax) / var(--siteBasis)));
  }
}
@media (max-width: 767px) {
  .container {
    padding-left: 5%;
    padding-right: 5%;
  }
}

@media (max-width: 767px) {
  .desktop-only {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .mobile-only {
    display: none !important;
  }
}

p:not(:last-child) {
  margin-bottom: clamp(1px, calc(18vw * (100 / var(--siteBasis))), calc(18px * var(--siteMax) / var(--siteBasis)));
}

.static {
  position: static;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.abs-full {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.fit-cover {
  object-fit: cover;
}

.fit-contain {
  object-fit: contain;
}

.fit-photo {
  position: relative;
}
.fit-photo.absolute {
  position: absolute;
}
.fit-photo.cover img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fit-photo.contain img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#wpadminbar {
  position: fixed !important;
  opacity: 0.3 !important;
  transition: transform 0.3s, opacity 0.3s;
  transform: translateY(-80%) !important;
}
#wpadminbar:hover {
  opacity: 1 !important;
  transform: none !important;
}

.w-full {
  width: 100%;
}

.cursor-pointer {
  cursor: pointer;
}

h1,
.heading--xxl {
  font-family: "Noto Serif", serif;
  font-weight: 600;
  --fontSize: 38;
  line-height: 110%;
}
@media (min-width: 768px) {
  h1,
  .heading--xxl {
    --fontSize: 60;
  }
}

h2,
.heading--xl {
  font-family: "Noto Serif", serif;
  font-weight: 600;
  --fontSize: 32;
  line-height: 115%;
}
@media (min-width: 768px) {
  h2,
  .heading--xl {
    --fontSize: 48;
  }
}

h3,
.heading--l {
  font-family: "Noto Serif", serif;
  font-weight: 600;
  --fontSize: 26;
  line-height: 120%;
}
@media (min-width: 768px) {
  h3,
  .heading--l {
    --fontSize: 38;
  }
}

h4,
.heading--m {
  font-family: "Noto Serif", serif;
  font-weight: 600;
  --fontSize: 22;
  line-height: 120%;
}
@media (min-width: 768px) {
  h4,
  .heading--m {
    --fontSize: 30;
  }
}

h5,
.heading--s {
  font-family: "Noto Serif", serif;
  font-weight: 600;
  --fontSize: 20;
  line-height: 125%;
}
@media (min-width: 768px) {
  h5,
  .heading--s {
    --fontSize: 24;
  }
}

h6,
.heading--xs {
  font-family: "Noto Serif", serif;
  font-weight: 600;
  --fontSize: 18;
  line-height: 125%;
}
@media (min-width: 768px) {
  h6,
  .heading--xs {
    --fontSize: 20;
  }
}

.heading--xxs {
  font-family: "Noto Serif", serif;
  font-weight: 600;
  --fontSize: 14;
  line-height: 125%;
}
@media (min-width: 768px) {
  .heading--xxs {
    --fontSize: 18;
  }
}

.heading--xxxs {
  font-family: "Noto Serif", serif;
  font-weight: 600;
  --fontSize: 14;
  line-height: 125%;
}
@media (min-width: 768px) {
  .heading--xxxs {
    --fontSize: 16;
  }
}

.body--l {
  --fontSize: 14;
  line-height: 140%;
}
@media (min-width: 768px) {
  .body--l {
    --fontSize: 18;
  }
}

p,
li,
.body--l-longform {
  --fontSize: 16;
  line-height: 155%;
}
@media (min-width: 768px) {
  p,
  li,
  .body--l-longform {
    --fontSize: 18;
  }
}

.body--m {
  --fontSize: 14;
  line-height: 140%;
}
@media (min-width: 768px) {
  .body--m {
    --fontSize: 16;
  }
}

p,
li,
.body--m-longform {
  --fontSize: 14;
  line-height: 155%;
}
@media (min-width: 768px) {
  p,
  li,
  .body--m-longform {
    --fontSize: 16;
  }
}

.body--s {
  --fontSize: 12;
  line-height: 135%;
}
@media (min-width: 768px) {
  .body--s {
    --fontSize: 14;
  }
}

.body--xs {
  --fontSize: 11;
  line-height: 135%;
}
@media (min-width: 768px) {
  .body--xs {
    --fontSize: 12;
  }
}

.body--xxs {
  --fontSize: 10;
  line-height: 135%;
}
@media (min-width: 768px) {
  .body--xxs {
    --fontSize: 11;
  }
}

.caps--m {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: normal;
  --fontSize: 14;
}
@media (min-width: 768px) {
  .caps--m {
    --fontSize: 16;
  }
}

.caps--s {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: normal;
  --fontSize: 12;
}
@media (min-width: 768px) {
  .caps--s {
    --fontSize: 14;
  }
}

.caps--xs {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: normal;
  --fontSize: 11;
}
@media (min-width: 768px) {
  .caps--xs {
    --fontSize: 12;
  }
}

.caps--xxs {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: normal;
  --fontSize: 10;
}
@media (min-width: 768px) {
  .caps--xxs {
    --fontSize: 11;
  }
}

.caps--xxxs {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: normal;
  --fontSize: 9;
}
@media (min-width: 768px) {
  .caps--xxxs {
    --fontSize: 10;
  }
}

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

.inherit p {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
}
.inherit p strong,
.inherit p a {
  font-size: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
p,
li {
  text-wrap: pretty;
}

.wrap-balance {
  text-wrap: balance;
}

.wrap-normal {
  text-wrap: wrap;
}

.fw--400 {
  font-weight: 400;
}

.fw--500 {
  font-weight: 500;
}

.fw--600 {
  font-weight: 600;
}

.fw--700 {
  font-weight: 700;
}

.fw--800 {
  font-weight: 800;
}

.fw--900 {
  font-weight: 900;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  z-index: 1;
  padding-top: clamp(1px, calc(16vw * (100 / var(--siteBasis))), calc(16px * var(--siteMax) / var(--siteBasis)));
  padding-bottom: clamp(1px, calc(17vw * (100 / var(--siteBasis))), calc(17px * var(--siteMax) / var(--siteBasis)));
  padding-left: clamp(1px, calc(27vw * (100 / var(--siteBasis))), calc(27px * var(--siteMax) / var(--siteBasis)));
  padding-right: clamp(1px, calc(27vw * (100 / var(--siteBasis))), calc(27px * var(--siteMax) / var(--siteBasis)));
  --fontSize: 14;
  line-height: 140%;
  font-weight: 600;
  line-height: 1em;
  text-align: center;
  text-decoration: none;
  border-radius: 999px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  vertical-align: middle;
  transition: color 300ms, background-color 300ms;
  overflow: hidden;
  color: #fff;
  background-color: #030101;
  border: 1px solid #030101;
}
@media (min-width: 768px) {
  .btn {
    --fontSize: 16;
  }
}
.btn:hover {
  background-color: #fff;
  color: #030101;
}
.btn.outline {
  background-color: transparent;
  border: 1px solid #fff;
}
.btn.inverse {
  background-color: #fff;
  color: #030101;
}
.btn.inverse:hover {
  background-color: #000;
  color: #fff;
}
.btn.slim-blue {
  background-color: #035c81;
  color: #fff;
  padding: clamp(1px, calc(5vw * (100 / var(--siteBasis))), calc(5px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(15vw * (100 / var(--siteBasis))), calc(15px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(6vw * (100 / var(--siteBasis))), calc(6px * var(--siteMax) / var(--siteBasis)));
  border: none;
  --fontSize: 12;
  line-height: 135%;
}
@media (min-width: 768px) {
  .btn.slim-blue {
    --fontSize: 14;
  }
}
.btn.slim-blue:hover {
  background-color: #0c8dc3;
}

.rounded-image-border {
  border-radius: 100%;
}
.rounded-image-border img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  border: clamp(1px, calc(2vw * (100 / var(--siteBasis))), calc(2px * var(--siteMax) / var(--siteBasis))) solid #fff;
}

*,
*::after,
*::before {
  -moz-osx-font-smoothing: grayscale;
  --siteMax: 1440;
  /* keep scaling for tablet ranges */
}
@media (min-width: 768px) and (max-width: 1024px) {
  *,
  *::after,
  *::before {
    --siteMin: 768;
    --siteBasis: 1440;
    --siteMax: 1440;
  }
}
@media (min-width: 768px) and (max-width: 1799px) {
  *,
  *::after,
  *::before {
    --siteMax: 1440;
  }
}
@media (min-width: 1800px) {
  *,
  *::after,
  *::before {
    --siteMax: 1600;
  }
}

.treemap {
  padding-bottom: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
}
.treemap a {
  text-decoration: none;
}
.treemap ol {
  padding-top: clamp(1px, calc(14vw * (100 / var(--siteBasis))), calc(14px * var(--siteMax) / var(--siteBasis)));
  padding-left: clamp(1px, calc(16vw * (100 / var(--siteBasis))), calc(16px * var(--siteMax) / var(--siteBasis)));
}
.treemap ol li {
  --fontSize: 11;
  line-height: 135%;
  padding-left: clamp(1px, calc(18vw * (100 / var(--siteBasis))), calc(18px * var(--siteMax) / var(--siteBasis)));
  padding-bottom: clamp(1px, calc(9vw * (100 / var(--siteBasis))), calc(9px * var(--siteMax) / var(--siteBasis)));
}
@media (min-width: 768px) {
  .treemap ol li {
    --fontSize: 12;
  }
}
.treemap ol li .title {
  font-weight: 600;
  padding-bottom: clamp(1px, calc(4vw * (100 / var(--siteBasis))), calc(4px * var(--siteMax) / var(--siteBasis)));
}

.search-container.is-active {
  top: 0;
  left: 0;
  z-index: 1;
  position: absolute;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(112.71deg, rgba(57, 0, 94, 0.7) 3.67%, rgba(0, 59, 56, 0.7) 94.25%);
}
.search-container.is-active .search {
  height: 0;
  left: 0;
  right: auto;
  box-shadow: -10px 0 10px -5px rgba(0, 0, 0, 0.3019607843);
  transition: left 350ms cubic-bezier(0.23, 1, 0.32, 1), box-shadow 350ms cubic-bezier(0.23, 1, 0.32, 1), width 350ms cubic-bezier(0.23, 1, 0.32, 1), right 350ms cubic-bezier(0.23, 1, 0.32, 1), top 350ms cubic-bezier(0.23, 1, 0.32, 1), background-color 350ms cubic-bezier(0.23, 1, 0.32, 1);
}
@media (min-width: 768px) {
  .search-container.is-active .search {
    right: 0;
    left: auto;
  }
}
.search-container.is-active.show-results .search {
  height: 100vh;
  transition: left 350ms cubic-bezier(0.23, 1, 0.32, 1), height 350ms cubic-bezier(0.23, 1, 0.32, 1), box-shadow 350ms cubic-bezier(0.23, 1, 0.32, 1), width 350ms cubic-bezier(0.23, 1, 0.32, 1), right 350ms cubic-bezier(0.23, 1, 0.32, 1), top 350ms cubic-bezier(0.23, 1, 0.32, 1), background-color 350ms cubic-bezier(0.23, 1, 0.32, 1);
}
@media (min-width: 768px) {
  .search-container.is-active.show-results .search {
    height: 73vh;
  }
}
.search-container.is-active.show-results .results {
  display: flex;
}

.search {
  background-color: #fff;
  height: 100vh;
  width: clamp(1px, calc(350vw * (100 / var(--siteBasis))), calc(350px * var(--siteMax) / var(--siteBasis)));
  position: absolute;
  left: clamp(calc(-350 * (100 / var(--siteBasis)) * 1vw), calc(-350px * var(--siteMax) / var(--siteBasis)), -1px);
  right: auto;
  top: 0;
  z-index: 50;
  transition: left 350ms cubic-bezier(0.23, 1, 0.32, 1), box-shadow 350ms cubic-bezier(0.23, 1, 0.32, 1), width 350ms cubic-bezier(0.23, 1, 0.32, 1), right 350ms cubic-bezier(0.23, 1, 0.32, 1), top 350ms cubic-bezier(0.23, 1, 0.32, 1), background-color 350ms cubic-bezier(0.23, 1, 0.32, 1);
}
@media (min-width: 768px) {
  .search {
    height: 73vh;
    width: 100vw;
    right: -100vw;
    left: auto;
  }
}
.search__bar {
  background-color: #fff;
  padding: clamp(1px, calc(14vw * (100 / var(--siteBasis))), calc(14px * var(--siteMax) / var(--siteBasis)));
  gap: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
}
@media (min-width: 768px) {
  .search__bar {
    padding: clamp(1px, calc(23vw * (100 / var(--siteBasis))), calc(23px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(16vw * (100 / var(--siteBasis))), calc(16px * var(--siteMax) / var(--siteBasis)));
  }
}
.search__bar .search__input-wrapper {
  position: relative;
  width: clamp(1px, calc(284vw * (100 / var(--siteBasis))), calc(284px * var(--siteMax) / var(--siteBasis)));
  flex: 1;
}
.search__bar .search__input-wrapper label {
  display: none;
}
.search__bar .search__input-wrapper .ais-SearchBox-input {
  width: 100%;
  height: clamp(1px, calc(38vw * (100 / var(--siteBasis))), calc(38px * var(--siteMax) / var(--siteBasis)));
  border-radius: clamp(1px, calc(99vw * (100 / var(--siteBasis))), calc(99px * var(--siteMax) / var(--siteBasis)));
  border: 0;
  padding-left: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis)));
  background-color: rgba(215, 226, 237, 0.7);
  font-family: "Noto Sans", sans-serif;
  font-weight: 500;
  --fontSize: 16;
}
.search__bar .search__input-wrapper .ais-SearchBox-submit {
  position: absolute;
  left: clamp(1px, calc(12vw * (100 / var(--siteBasis))), calc(12px * var(--siteMax) / var(--siteBasis)));
  top: 50%;
  transform: translateY(-50%);
  width: clamp(1px, calc(18vw * (100 / var(--siteBasis))), calc(18px * var(--siteMax) / var(--siteBasis)));
  height: clamp(1px, calc(18vw * (100 / var(--siteBasis))), calc(18px * var(--siteMax) / var(--siteBasis)));
  display: flex;
  align-items: center;
  justify-content: center;
}
.search__bar .search__input-wrapper .ais-SearchBox-submit svg {
  width: clamp(1px, calc(18vw * (100 / var(--siteBasis))), calc(18px * var(--siteMax) / var(--siteBasis)));
  height: clamp(1px, calc(18vw * (100 / var(--siteBasis))), calc(18px * var(--siteMax) / var(--siteBasis)));
}
.search .results {
  display: none;
  height: calc(100% - var(--searchBarHeight));
  border-top: 1px solid #d9d9d9;
  background-color: #fff;
}
@media (max-width: 767px) {
  .search .results {
    height: 100%;
    overflow-y: auto;
    flex-direction: column;
    gap: clamp(1px, calc(36vw * (100 / var(--siteBasis))), calc(36px * var(--siteMax) / var(--siteBasis)));
    padding-bottom: 10vh;
  }
}
.search .results-container {
  padding-top: clamp(1px, calc(32vw * (100 / var(--siteBasis))), calc(32px * var(--siteMax) / var(--siteBasis)));
  padding-inline: clamp(1px, calc(12vw * (100 / var(--siteBasis))), calc(12px * var(--siteMax) / var(--siteBasis)));
}
@media (min-width: 768px) {
  .search .results-container {
    padding-inline: clamp(1px, calc(32vw * (100 / var(--siteBasis))), calc(32px * var(--siteMax) / var(--siteBasis)));
    height: 100%;
    overflow-y: auto;
    width: 33.3333333333%;
  }
}
@media (min-width: 768px) {
  .search .results-container.news {
    border-left: 1px solid #d9d9d9;
    border-right: 1px solid #d9d9d9;
  }
}
@media (min-width: 768px) {
  .search .results-container.pages {
    padding-left: clamp(1px, calc(48vw * (100 / var(--siteBasis))), calc(48px * var(--siteMax) / var(--siteBasis)));
  }
}
@media (min-width: 768px) {
  .search .results-container.teams {
    padding-right: clamp(1px, calc(125vw * (100 / var(--siteBasis))), calc(125px * var(--siteMax) / var(--siteBasis)));
  }
}
.search .results h2 {
  color: #00202c;
  margin-bottom: clamp(1px, calc(26vw * (100 / var(--siteBasis))), calc(26px * var(--siteMax) / var(--siteBasis)));
}
@media (max-width: 767px) {
  .search .results h2 {
    margin-bottom: clamp(1px, calc(15vw * (100 / var(--siteBasis))), calc(15px * var(--siteMax) / var(--siteBasis)));
  }
}
.search .search-item {
  display: flex;
  align-items: center;
  gap: clamp(1px, calc(13vw * (100 / var(--siteBasis))), calc(13px * var(--siteMax) / var(--siteBasis)));
  text-decoration: none;
  color: #2b2b2b;
  padding-bottom: clamp(1px, calc(14vw * (100 / var(--siteBasis))), calc(14px * var(--siteMax) / var(--siteBasis)));
}
.search .search-item h3 {
  margin: 0;
}
.search .search-item.news-item h3 {
  font-family: -apple-system, BlinkMacSystemFont, "Apple Color Emoji", "Segoe UI", "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: 400;
  color: #000;
}
.search .search-item.news-item figure {
  width: clamp(1px, calc(84vw * (100 / var(--siteBasis))), calc(84px * var(--siteMax) / var(--siteBasis)));
  min-width: clamp(1px, calc(84vw * (100 / var(--siteBasis))), calc(84px * var(--siteMax) / var(--siteBasis)));
  height: clamp(1px, calc(53vw * (100 / var(--siteBasis))), calc(53px * var(--siteMax) / var(--siteBasis)));
}
@media (max-width: 767px) {
  .search .search-item.news-item figure {
    width: clamp(1px, calc(75vw * (100 / var(--siteBasis))), calc(75px * var(--siteMax) / var(--siteBasis)));
    min-width: clamp(1px, calc(75vw * (100 / var(--siteBasis))), calc(75px * var(--siteMax) / var(--siteBasis)));
    height: clamp(1px, calc(48vw * (100 / var(--siteBasis))), calc(48px * var(--siteMax) / var(--siteBasis)));
  }
}
.search .search-item.core-member {
  gap: clamp(1px, calc(17vw * (100 / var(--siteBasis))), calc(17px * var(--siteMax) / var(--siteBasis)));
}
.search .search-item.core-member figure {
  width: clamp(1px, calc(63vw * (100 / var(--siteBasis))), calc(63px * var(--siteMax) / var(--siteBasis)));
  min-width: clamp(1px, calc(63vw * (100 / var(--siteBasis))), calc(63px * var(--siteMax) / var(--siteBasis)));
  height: clamp(1px, calc(63vw * (100 / var(--siteBasis))), calc(63px * var(--siteMax) / var(--siteBasis)));
  border-radius: 100%;
  border: 2px solid #d7e2ed;
}
.search .search-item .position {
  margin-top: clamp(1px, calc(4vw * (100 / var(--siteBasis))), calc(4px * var(--siteMax) / var(--siteBasis)));
}
.search .search-item mark {
  background-color: #e2d3e7;
}
.search .ais-SearchBox-reset {
  display: none;
}
.search .ais-Hits-item {
  list-style: none;
}
.search .ais-Hits-item a {
  padding: clamp(1px, calc(12vw * (100 / var(--siteBasis))), calc(12px * var(--siteMax) / var(--siteBasis))) 0;
  text-decoration: none;
  display: flex;
}
.search .ais-Hits-item a:hover {
  background: linear-gradient(94.37deg, #8c4e9f -5.29%, #0c8dc3 100.11%);
}
.search .ais-Hits-item a:hover p {
  color: #fff;
}
.search .ais-Hits-item a:hover .ais-Highlight-highlighted {
  color: #fff;
}
.search .ais-Hits-item a:hover figure::after {
  border-radius: 3px;
  box-shadow: inset 0 0 0 clamp(1px, calc(2vw * (100 / var(--siteBasis))), calc(2px * var(--siteMax) / var(--siteBasis))) #fff;
  content: "";
  height: 100%;
  inset: 0;
  pointer-events: none;
  position: absolute;
  width: 100%;
  z-index: 1;
}
.search .ais-Hits-item .article__meta {
  padding: 0 clamp(1px, calc(30vw * (100 / var(--siteBasis))), calc(30px * var(--siteMax) / var(--siteBasis))) 0 clamp(1px, calc(15vw * (100 / var(--siteBasis))), calc(15px * var(--siteMax) / var(--siteBasis)));
  gap: clamp(1px, calc(13vw * (100 / var(--siteBasis))), calc(13px * var(--siteMax) / var(--siteBasis)));
}
.search .ais-Hits-item .article__meta figure {
  width: clamp(1px, calc(84vw * (100 / var(--siteBasis))), calc(84px * var(--siteMax) / var(--siteBasis)));
  height: clamp(1px, calc(53vw * (100 / var(--siteBasis))), calc(53px * var(--siteMax) / var(--siteBasis)));
  border-radius: clamp(1px, calc(3vw * (100 / var(--siteBasis))), calc(3px * var(--siteMax) / var(--siteBasis)));
  position: relative;
}
.search .ais-Hits-item .article__meta figure::after {
  content: "";
  box-shadow: inset 0 0 0 0;
  transition: all 350ms cubic-bezier(0.23, 1, 0.32, 1);
}
.search .ais-Hits-item .article__meta figure img {
  width: 100%;
  height: 100%;
}
.search .ais-Hits-item .article__meta p {
  flex: 1;
}
.search .ais-Hits-item .ais-Highlight-highlighted {
  background-color: transparent;
  color: #0c8dc3;
}
.search .ais-Hits--empty {
  padding: 0 clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
}
.search .search-close-btn {
  position: relative;
  cursor: pointer;
  padding: 0;
  outline: none;
  border-radius: 100%;
  height: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis)));
  width: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis)));
  background: linear-gradient(122.2deg, #8c4e9f 14.31%, #0c8dc3 100%);
}
@media (min-width: 768px) {
  .search .search-close-btn {
    background: transparent;
    height: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
    width: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
  }
}
.search .search-close-btn::before,
.search .search-close-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(1px, calc(12vw * (100 / var(--siteBasis))), calc(12px * var(--siteMax) / var(--siteBasis)));
  height: clamp(1px, calc(1vw * (100 / var(--siteBasis))), calc(1px * var(--siteMax) / var(--siteBasis)));
  background-color: #fff;
  transform-origin: center;
}
@media (min-width: 768px) {
  .search .search-close-btn::before,
  .search .search-close-btn::after {
    background-color: #000;
    width: clamp(1px, calc(18vw * (100 / var(--siteBasis))), calc(18px * var(--siteMax) / var(--siteBasis)));
  }
}
.search .search-close-btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.search .search-close-btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}

/*! Flickity v2.3.0
https://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus {
  outline: 0;
}

.flickity-viewport {
  overflow: visible;
  position: relative;
  height: 100%;
  width: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: grabbing;
}

.flickity-button {
  position: absolute;
  background: hsla(0, 0%, 100%, 0.75);
  border: none;
  color: #333;
}

.flickity-button:hover {
  background: #fff;
  cursor: pointer;
}

.flickity-button:focus {
  outline: 0;
  box-shadow: 0 0 0 5px #19f;
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  pointer-events: none;
}

.flickity-button-icon {
  fill: currentcolor;
}

.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transform: translateY(-50%);
}

.flickity-prev-next-button.previous {
  left: 10px;
}

.flickity-prev-next-button.next {
  right: 10px;
}

.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: clamp(calc(-25 * (100 / var(--siteBasis)) * 1vw), calc(-25px * var(--siteMax) / var(--siteBasis)), -1px);
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots {
  direction: rtl;
}

.flickity-page-dots .dot {
  display: inline-block;
  width: clamp(1px, calc(10vw * (100 / var(--siteBasis))), calc(10px * var(--siteMax) / var(--siteBasis)));
  height: clamp(1px, calc(10vw * (100 / var(--siteBasis))), calc(10px * var(--siteMax) / var(--siteBasis)));
  margin: 0 clamp(1px, calc(8vw * (100 / var(--siteBasis))), calc(8px * var(--siteMax) / var(--siteBasis)));
  background: #C1D6DF;
  border-radius: 50%;
  opacity: 1;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
  background: #0C8DC3;
}

.slider__slide {
  width: 100%;
  height: 100%;
}
.slider .flickity-page-dots .dot {
  margin: 0 clamp(1px, calc(4vw * (100 / var(--siteBasis))), calc(4px * var(--siteMax) / var(--siteBasis)));
  width: clamp(1px, calc(8vw * (100 / var(--siteBasis))), calc(8px * var(--siteMax) / var(--siteBasis)));
  height: clamp(1px, calc(8vw * (100 / var(--siteBasis))), calc(8px * var(--siteMax) / var(--siteBasis)));
  background-color: blue;
  opacity: 1;
}
.slider .flickity-page-dots .dot.is-selected {
  background-color: red;
}

/*
 * Container style
 */
.ps {
  overflow: hidden !important;
  overflow-anchor: none;
  -ms-overflow-style: none;
  touch-action: auto;
  -ms-touch-action: auto;
}

/*
 * Scrollbar rail styles
 */
.ps__rail-x {
  display: none;
  opacity: 0;
  transition: background-color 0.2s linear, opacity 0.2s linear;
  -webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
  height: 15px;
  /* there must be 'bottom' or 'top' for ps__rail-x */
  bottom: 0px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-y {
  display: none;
  opacity: 0;
  transition: background-color 0.2s linear, opacity 0.2s linear;
  -webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
  width: 15px;
  /* there must be 'right' or 'left' for ps__rail-y */
  right: 0;
  /* please don't change 'position' */
  position: absolute;
}

.ps--active-x > .ps__rail-x,
.ps--active-y > .ps__rail-y {
  display: block;
  background-color: transparent;
}

.ps:hover > .ps__rail-x,
.ps:hover > .ps__rail-y,
.ps--focus > .ps__rail-x,
.ps--focus > .ps__rail-y,
.ps--scrolling-x > .ps__rail-x,
.ps--scrolling-y > .ps__rail-y {
  opacity: 0.6;
}

.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking {
  background-color: #eee;
  opacity: 0.9;
}

/*
 * Scrollbar thumb styles
 */
.ps__thumb-x {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color 0.2s linear, height 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s linear, height 0.2s ease-in-out;
  height: 6px;
  /* there must be 'bottom' for ps__thumb-x */
  bottom: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__thumb-y {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color 0.2s linear, width 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s linear, width 0.2s ease-in-out;
  width: 6px;
  /* there must be 'right' for ps__thumb-y */
  right: 2px;
  /* please don't change 'position' */
  position: absolute;
}

/* Hide horizontal scrollbar completely */
.ps__rail-x {
  display: none !important;
  /* never show horizontal rail */
}

/* Always show vertical scrollbar */
.ps__rail-y {
  display: block !important;
  opacity: 1 !important;
  background-color: rgba(0, 0, 0, 0.05);
}

.ps__thumb-y {
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 1 !important;
}

/* Keep existing hover effect for vertical thumb */
.ps__rail-y:hover > .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
  background-color: #999;
  width: 11px;
}

/* MS supports */
@supports (-ms-overflow-style: none) {
  .ps {
    overflow: auto !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ps {
    overflow: auto !important;
  }
}
/*
  This is a modified version of https://github.hubspot.com/odometer/themes/odometer-theme-default.css
*/
.odometer.odometer-auto-theme,
.odometer.odometer-theme-default {
  display: inline-block;
  vertical-align: baseline;
  position: relative;
}
.odometer.odometer-auto-theme,
.odometer.odometer-auto-theme *,
.odometer.odometer-theme-default,
.odometer.odometer-theme-default * {
  font-feature-settings: "cv12" on;
  font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-variant-numeric: tabular-nums lining-nums;
}

.odometer.odometer-auto-theme .odometer-digit,
.odometer.odometer-theme-default .odometer-digit {
  display: inline-block;
  vertical-align: baseline;
  position: relative;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-spacer,
.odometer.odometer-theme-default .odometer-digit .odometer-digit-spacer {
  display: inline-block;
  vertical-align: baseline;
  visibility: hidden;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner,
.odometer.odometer-theme-default .odometer-digit .odometer-digit-inner {
  text-align: left;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon,
.odometer.odometer-theme-default .odometer-digit .odometer-ribbon {
  display: block;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon-inner,
.odometer.odometer-theme-default .odometer-digit .odometer-ribbon-inner {
  display: block;
  -webkit-backface-visibility: hidden;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-value,
.odometer.odometer-theme-default .odometer-digit .odometer-value {
  display: block;
  transform: translateZ(0);
}

.odometer.odometer-auto-theme .odometer-digit .odometer-value.odometer-last-value,
.odometer.odometer-theme-default .odometer-digit .odometer-value.odometer-last-value {
  position: absolute;
}

.odometer.odometer-auto-theme.odometer-animating-up .odometer-ribbon-inner,
.odometer.odometer-theme-default.odometer-animating-up .odometer-ribbon-inner {
  transition: transform 1s;
}

.odometer.odometer-auto-theme.odometer-animating-up.odometer-animating .odometer-ribbon-inner,
.odometer.odometer-theme-default.odometer-animating-up.odometer-animating .odometer-ribbon-inner {
  transform: translateY(-100%);
}

.odometer.odometer-auto-theme.odometer-animating-down .odometer-ribbon-inner,
.odometer.odometer-theme-default.odometer-animating-down .odometer-ribbon-inner {
  transform: translateY(-100%);
}

.odometer.odometer-auto-theme.odometer-animating-down.odometer-animating .odometer-ribbon-inner,
.odometer.odometer-theme-default.odometer-animating-down.odometer-animating .odometer-ribbon-inner {
  transition: transform 1s;
  transform: translateY(0);
}

.odometer.odometer-auto-theme .odometer-value,
.odometer.odometer-theme-default .odometer-value {
  text-align: center;
}

.bodyBgImg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}
@media (max-width: 767px) {
  .bodyBgImg {
    display: none;
  }
}
.bodyBgImg img {
  position: absolute;
  top: clamp(1px, calc(120vw * (100 / var(--siteBasis))), calc(120px * var(--siteMax) / var(--siteBasis)));
  left: 50%;
  transform: translateX(40%);
  width: clamp(1px, calc(1050vw * (100 / var(--siteBasis))), calc(1050px * var(--siteMax) / var(--siteBasis)));
}

footer.footer {
  padding: clamp(1px, calc(70vw * (100 / var(--siteBasis))), calc(70px * var(--siteMax) / var(--siteBasis))) 0 clamp(1px, calc(80vw * (100 / var(--siteBasis))), calc(80px * var(--siteMax) / var(--siteBasis)));
  background-color: #0e1e2a;
  position: relative;
}
@media (max-width: 767px) {
  footer.footer {
    padding-top: clamp(1px, calc(70vw * (100 / var(--siteBasis))), calc(70px * var(--siteMax) / var(--siteBasis)));
    padding-bottom: clamp(1px, calc(10vw * (100 / var(--siteBasis))), calc(10px * var(--siteMax) / var(--siteBasis)));
  }
}
@media (min-width: 768px) {
  footer.footer .container {
    display: flex;
    justify-content: space-between;
  }
}

.footer--bgImg {
  position: absolute;
  bottom: 0;
  pointer-events: none;
}
@media (min-width: 768px) {
  .footer--bgImg {
    left: calc(50% - clamp(1px, calc(420vw * (100 / var(--siteBasis))), calc(420px * var(--siteMax) / var(--siteBasis))));
    transform: translateX(-50%);
    max-height: clamp(1px, calc(315vw * (100 / var(--siteBasis))), calc(315px * var(--siteMax) / var(--siteBasis)));
    max-width: 45%;
  }
}
@media (max-width: 767px) {
  .footer--bgImg {
    left: -30%;
    width: 120%;
    max-width: none;
  }
}

@media (min-width: 768px) {
  .footer--rightCol {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  .footer--rightCol {
    margin-top: clamp(1px, calc(65vw * (100 / var(--siteBasis))), calc(65px * var(--siteMax) / var(--siteBasis)));
  }
}

.footer--logo {
  margin-bottom: clamp(1px, calc(10vw * (100 / var(--siteBasis))), calc(10px * var(--siteMax) / var(--siteBasis)));
  display: inline-block;
  transition: 0.35s;
}
@media (max-width: 767px) {
  .footer--logo {
    margin-bottom: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis)));
  }
}
.footer--logo:hover {
  opacity: 0.75;
}
.footer--logo img {
  display: block;
  width: clamp(1px, calc(213vw * (100 / var(--siteBasis))), calc(213px * var(--siteMax) / var(--siteBasis)));
}
@media (max-width: 767px) {
  .footer--logo img {
    width: clamp(1px, calc(195vw * (100 / var(--siteBasis))), calc(195px * var(--siteMax) / var(--siteBasis)));
  }
}

.footer--text {
  max-width: clamp(1px, calc(350vw * (100 / var(--siteBasis))), calc(350px * var(--siteMax) / var(--siteBasis)));
  margin-bottom: clamp(1px, calc(65vw * (100 / var(--siteBasis))), calc(65px * var(--siteMax) / var(--siteBasis)));
}
@media (max-width: 767px) {
  .footer--text {
    margin-bottom: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis)));
  }
}

@media (min-width: 768px) {
  .footer--miscLinks {
    margin-bottom: clamp(1px, calc(50vw * (100 / var(--siteBasis))), calc(50px * var(--siteMax) / var(--siteBasis)));
  }
}
@media (max-width: 767px) {
  .footer--miscLinks {
    margin-bottom: clamp(1px, calc(15vw * (100 / var(--siteBasis))), calc(15px * var(--siteMax) / var(--siteBasis)));
  }
}
.footer--miscLinks a {
  --fontSize: 12;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  font-weight: 500;
  line-height: 1.55em;
  display: inline-block;
  padding: 0 clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
  position: relative;
}
@media (max-width: 767px) {
  .footer--miscLinks a {
    --fontSize: 11;
    padding: 0 clamp(1px, calc(15vw * (100 / var(--siteBasis))), calc(15px * var(--siteMax) / var(--siteBasis)));
  }
}
.footer--miscLinks a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: clamp(1px, calc(14vw * (100 / var(--siteBasis))), calc(14px * var(--siteMax) / var(--siteBasis)));
  background-color: #fff;
  transform: translateY(-50%);
}
.footer--miscLinks a:first-of-type {
  padding-left: 0;
}
.footer--miscLinks a:last-of-type {
  padding-right: 0;
}
.footer--miscLinks a:last-of-type::before {
  content: none;
}
.footer--miscLinks a:hover {
  text-decoration: underline;
}

.footer--copyright p {
  --fontSize: 12;
  font-weight: 500;
}
@media (max-width: 767px) {
  .footer--copyright p {
    --fontSize: 11;
  }
}

.footer--ss {
  gap: clamp(1px, calc(17vw * (100 / var(--siteBasis))), calc(17px * var(--siteMax) / var(--siteBasis)));
}
@media (min-width: 768px) {
  .footer--ss {
    justify-content: flex-end;
  }
}
@media (max-width: 767px) {
  .footer--ss {
    margin-bottom: clamp(1px, calc(50vw * (100 / var(--siteBasis))), calc(50px * var(--siteMax) / var(--siteBasis)));
  }
}
.footer--ss a {
  width: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis)));
  height: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis)));
  background-color: #fff;
  border-radius: 100%;
  border: 1px solid #fff;
  transition: 0.35s;
  position: relative;
}
.footer--ss a svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.footer--ss a path {
  fill: #0e1e2a;
  transition: 0.35s;
}
.footer--ss a:hover {
  background-color: transparent;
}
.footer--ss a:hover path {
  fill: #fff;
}

@media (min-width: 768px) {
  .footer--program {
    margin-bottom: clamp(1px, calc(18vw * (100 / var(--siteBasis))), calc(18px * var(--siteMax) / var(--siteBasis)));
  }
}
@media (min-width: 768px) {
  .footer--program p {
    --fontSize: 14;
    text-align: right;
    margin-bottom: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
  }
}
@media (max-width: 767px) {
  .footer--program p {
    --fontSize: 11;
    margin-bottom: clamp(1px, calc(15vw * (100 / var(--siteBasis))), calc(15px * var(--siteMax) / var(--siteBasis)));
  }
}
.footer--program-logos {
  gap: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis)));
}
@media (max-width: 767px) {
  .footer--program-logos {
    gap: clamp(1px, calc(25vw * (100 / var(--siteBasis))), calc(25px * var(--siteMax) / var(--siteBasis)));
  }
}
.footer--program-logos a {
  transition: 0.35s;
}
.footer--program-logos a:hover {
  opacity: 0.75;
}
.footer--program-logos img {
  display: block;
  width: 100%;
  max-width: clamp(1px, calc(132vw * (100 / var(--siteBasis))), calc(132px * var(--siteMax) / var(--siteBasis)));
  max-height: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis)));
}
@media (max-width: 767px) {
  .footer--program-logos img {
    max-width: clamp(1px, calc(87vw * (100 / var(--siteBasis))), calc(87px * var(--siteMax) / var(--siteBasis)));
    max-height: clamp(1px, calc(25vw * (100 / var(--siteBasis))), calc(25px * var(--siteMax) / var(--siteBasis)));
  }
}

body .gform_wrapper,
body .gform-theme--framework {
  position: relative;
}
body .gform_wrapper *,
body .gform-theme--framework * {
  font-family: "Noto Sans", sans-serif;
}
body .gform_wrapper .gform_fields,
body .gform-theme--framework .gform_fields {
  gap: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
}
body .gform_wrapper .ginput_complex .gform-field-label--type-sub,
body .gform-theme--framework .ginput_complex .gform-field-label--type-sub {
  display: none;
}
body .gform_wrapper .gfield_label,
body .gform_wrapper .gfield_required,
body .gform-theme--framework .gfield_label,
body .gform-theme--framework .gfield_required {
  --fontSize: 11;
  line-height: 135%;
  color: #2b2b2b;
}
@media (min-width: 768px) {
  body .gform_wrapper .gfield_label,
  body .gform_wrapper .gfield_required,
  body .gform-theme--framework .gfield_label,
  body .gform-theme--framework .gfield_required {
    --fontSize: 12;
  }
}
body .gform_wrapper .gform_button.button,
body .gform-theme--framework .gform_button.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  z-index: 1;
  padding-top: clamp(1px, calc(16vw * (100 / var(--siteBasis))), calc(16px * var(--siteMax) / var(--siteBasis)));
  padding-bottom: clamp(1px, calc(17vw * (100 / var(--siteBasis))), calc(17px * var(--siteMax) / var(--siteBasis)));
  padding-left: clamp(1px, calc(27vw * (100 / var(--siteBasis))), calc(27px * var(--siteMax) / var(--siteBasis)));
  padding-right: clamp(1px, calc(27vw * (100 / var(--siteBasis))), calc(27px * var(--siteMax) / var(--siteBasis)));
  --fontSize: 14;
  line-height: 140%;
  font-weight: 600;
  line-height: 1em;
  text-align: center;
  text-decoration: none;
  border-radius: 999px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  vertical-align: middle;
  transition: color 300ms, background-color 300ms;
  overflow: hidden;
  color: #fff;
  background-color: #030101;
  border: 1px solid #030101;
}
@media (min-width: 768px) {
  body .gform_wrapper .gform_button.button,
  body .gform-theme--framework .gform_button.button {
    --fontSize: 16;
  }
}
body .gform_wrapper .gform_button.button:hover,
body .gform-theme--framework .gform_button.button:hover {
  background-color: #fff;
  color: #030101;
}
body .gform_wrapper .gform_button.button.outline,
body .gform-theme--framework .gform_button.button.outline {
  background-color: transparent;
  border: 1px solid #fff;
}
body .gform_wrapper .gform_button.button.inverse,
body .gform-theme--framework .gform_button.button.inverse {
  background-color: #fff;
  color: #030101;
}
body .gform_wrapper .gform_button.button.inverse:hover,
body .gform-theme--framework .gform_button.button.inverse:hover {
  background-color: #000;
  color: #fff;
}
body .gform_wrapper .gform_button.button.slim-blue,
body .gform-theme--framework .gform_button.button.slim-blue {
  background-color: #035c81;
  color: #fff;
  padding: clamp(1px, calc(5vw * (100 / var(--siteBasis))), calc(5px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(15vw * (100 / var(--siteBasis))), calc(15px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(6vw * (100 / var(--siteBasis))), calc(6px * var(--siteMax) / var(--siteBasis)));
  border: none;
  --fontSize: 12;
  line-height: 135%;
}
@media (min-width: 768px) {
  body .gform_wrapper .gform_button.button.slim-blue,
  body .gform-theme--framework .gform_button.button.slim-blue {
    --fontSize: 14;
  }
}
body .gform_wrapper .gform_button.button.slim-blue:hover,
body .gform-theme--framework .gform_button.button.slim-blue:hover {
  background-color: #0c8dc3;
}
body .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework, .gform-theme__disable, .gform-theme__disable *,
.gform-theme__disable-framework, .gform-theme__disable-framework *)),
body .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework, .gform-theme__disable, .gform-theme__disable *,
.gform-theme__disable-framework, .gform-theme__disable-framework *)),
body .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn)) > button:not([id*=mceu_], .mce-open):where(:not(.gform-theme-no-framework, .gform-theme__disable, .gform-theme__disable *,
.gform-theme__disable-framework, .gform-theme__disable-framework *)),
body .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework, .gform-theme__disable, .gform-theme__disable *,
.gform-theme__disable-framework, .gform-theme__disable-framework *)),
body .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit], [type=button], [type=reset]).button:where(:not(.gform-theme-no-framework, .gform-theme__disable, .gform-theme__disable *,
.gform-theme__disable-framework, .gform-theme__disable-framework *)),
body .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit], [type=button], [type=reset]):where(:not(.gform-theme-no-framework, .gform-theme__disable, .gform-theme__disable *,
.gform-theme__disable-framework, .gform-theme__disable-framework *)),
body .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework, .gform-theme__disable, .gform-theme__disable *,
.gform-theme__disable-framework, .gform-theme__disable-framework *)) {
  position: relative;
  display: inline-flex;
  align-items: center;
  z-index: 1;
  padding-top: clamp(1px, calc(16vw * (100 / var(--siteBasis))), calc(16px * var(--siteMax) / var(--siteBasis)));
  padding-bottom: clamp(1px, calc(17vw * (100 / var(--siteBasis))), calc(17px * var(--siteMax) / var(--siteBasis)));
  padding-left: clamp(1px, calc(27vw * (100 / var(--siteBasis))), calc(27px * var(--siteMax) / var(--siteBasis)));
  padding-right: clamp(1px, calc(27vw * (100 / var(--siteBasis))), calc(27px * var(--siteMax) / var(--siteBasis)));
  --fontSize: 14;
  line-height: 140%;
  font-weight: 600;
  line-height: 1em;
  text-align: center;
  text-decoration: none;
  border-radius: 999px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  vertical-align: middle;
  transition: color 300ms, background-color 300ms;
  overflow: hidden;
  color: #fff;
  background-color: #030101;
  border: 1px solid #030101;
}
@media (min-width: 768px) {
  body .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework, .gform-theme__disable, .gform-theme__disable *,
  .gform-theme__disable-framework, .gform-theme__disable-framework *)),
  body .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework, .gform-theme__disable, .gform-theme__disable *,
  .gform-theme__disable-framework, .gform-theme__disable-framework *)),
  body .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn)) > button:not([id*=mceu_], .mce-open):where(:not(.gform-theme-no-framework, .gform-theme__disable, .gform-theme__disable *,
  .gform-theme__disable-framework, .gform-theme__disable-framework *)),
  body .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework, .gform-theme__disable, .gform-theme__disable *,
  .gform-theme__disable-framework, .gform-theme__disable-framework *)),
  body .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit], [type=button], [type=reset]).button:where(:not(.gform-theme-no-framework, .gform-theme__disable, .gform-theme__disable *,
  .gform-theme__disable-framework, .gform-theme__disable-framework *)),
  body .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit], [type=button], [type=reset]):where(:not(.gform-theme-no-framework, .gform-theme__disable, .gform-theme__disable *,
  .gform-theme__disable-framework, .gform-theme__disable-framework *)),
  body .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework, .gform-theme__disable, .gform-theme__disable *,
  .gform-theme__disable-framework, .gform-theme__disable-framework *)) {
    --fontSize: 16;
  }
}
body .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework, .gform-theme__disable, .gform-theme__disable *,
.gform-theme__disable-framework, .gform-theme__disable-framework *)):hover,
body .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework, .gform-theme__disable, .gform-theme__disable *,
.gform-theme__disable-framework, .gform-theme__disable-framework *)):hover,
body .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn)) > button:not([id*=mceu_], .mce-open):where(:not(.gform-theme-no-framework, .gform-theme__disable, .gform-theme__disable *,
.gform-theme__disable-framework, .gform-theme__disable-framework *)):hover,
body .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework, .gform-theme__disable, .gform-theme__disable *,
.gform-theme__disable-framework, .gform-theme__disable-framework *)):hover,
body .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit], [type=button], [type=reset]).button:where(:not(.gform-theme-no-framework, .gform-theme__disable, .gform-theme__disable *,
.gform-theme__disable-framework, .gform-theme__disable-framework *)):hover,
body .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit], [type=button], [type=reset]):where(:not(.gform-theme-no-framework, .gform-theme__disable, .gform-theme__disable *,
.gform-theme__disable-framework, .gform-theme__disable-framework *)):hover,
body .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework, .gform-theme__disable, .gform-theme__disable *,
.gform-theme__disable-framework, .gform-theme__disable-framework *)):hover {
  background-color: #fff;
  color: #030101;
}
body .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework, .gform-theme__disable, .gform-theme__disable *,
.gform-theme__disable-framework, .gform-theme__disable-framework *)).outline,
body .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework, .gform-theme__disable, .gform-theme__disable *,
.gform-theme__disable-framework, .gform-theme__disable-framework *)).outline,
body .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn)) > button:not([id*=mceu_], .mce-open):where(:not(.gform-theme-no-framework, .gform-theme__disable, .gform-theme__disable *,
.gform-theme__disable-framework, .gform-theme__disable-framework *)).outline,
body .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework, .gform-theme__disable, .gform-theme__disable *,
.gform-theme__disable-framework, .gform-theme__disable-framework *)).outline,
body .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit], [type=button], [type=reset]).button:where(:not(.gform-theme-no-framework, .gform-theme__disable, .gform-theme__disable *,
.gform-theme__disable-framework, .gform-theme__disable-framework *)).outline,
body .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit], [type=button], [type=reset]):where(:not(.gform-theme-no-framework, .gform-theme__disable, .gform-theme__disable *,
.gform-theme__disable-framework, .gform-theme__disable-framework *)).outline,
body .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework, .gform-theme__disable, .gform-theme__disable *,
.gform-theme__disable-framework, .gform-theme__disable-framework *)).outline {
  background-color: transparent;
  border: 1px solid #fff;
}
body .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework, .gform-theme__disable, .gform-theme__disable *,
.gform-theme__disable-framework, .gform-theme__disable-framework *)).inverse,
body .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework, .gform-theme__disable, .gform-theme__disable *,
.gform-theme__disable-framework, .gform-theme__disable-framework *)).inverse,
body .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn)) > button:not([id*=mceu_], .mce-open):where(:not(.gform-theme-no-framework, .gform-theme__disable, .gform-theme__disable *,
.gform-theme__disable-framework, .gform-theme__disable-framework *)).inverse,
body .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework, .gform-theme__disable, .gform-theme__disable *,
.gform-theme__disable-framework, .gform-theme__disable-framework *)).inverse,
body .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit], [type=button], [type=reset]).button:where(:not(.gform-theme-no-framework, .gform-theme__disable, .gform-theme__disable *,
.gform-theme__disable-framework, .gform-theme__disable-framework *)).inverse,
body .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit], [type=button], [type=reset]):where(:not(.gform-theme-no-framework, .gform-theme__disable, .gform-theme__disable *,
.gform-theme__disable-framework, .gform-theme__disable-framework *)).inverse,
body .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework, .gform-theme__disable, .gform-theme__disable *,
.gform-theme__disable-framework, .gform-theme__disable-framework *)).inverse {
  background-color: #fff;
  color: #030101;
}
body .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework, .gform-theme__disable, .gform-theme__disable *,
.gform-theme__disable-framework, .gform-theme__disable-framework *)).inverse:hover,
body .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework, .gform-theme__disable, .gform-theme__disable *,
.gform-theme__disable-framework, .gform-theme__disable-framework *)).inverse:hover,
body .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn)) > button:not([id*=mceu_], .mce-open):where(:not(.gform-theme-no-framework, .gform-theme__disable, .gform-theme__disable *,
.gform-theme__disable-framework, .gform-theme__disable-framework *)).inverse:hover,
body .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework, .gform-theme__disable, .gform-theme__disable *,
.gform-theme__disable-framework, .gform-theme__disable-framework *)).inverse:hover,
body .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit], [type=button], [type=reset]).button:where(:not(.gform-theme-no-framework, .gform-theme__disable, .gform-theme__disable *,
.gform-theme__disable-framework, .gform-theme__disable-framework *)).inverse:hover,
body .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit], [type=button], [type=reset]):where(:not(.gform-theme-no-framework, .gform-theme__disable, .gform-theme__disable *,
.gform-theme__disable-framework, .gform-theme__disable-framework *)).inverse:hover,
body .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework, .gform-theme__disable, .gform-theme__disable *,
.gform-theme__disable-framework, .gform-theme__disable-framework *)).inverse:hover {
  background-color: #000;
  color: #fff;
}
body .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework, .gform-theme__disable, .gform-theme__disable *,
.gform-theme__disable-framework, .gform-theme__disable-framework *)).slim-blue,
body .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework, .gform-theme__disable, .gform-theme__disable *,
.gform-theme__disable-framework, .gform-theme__disable-framework *)).slim-blue,
body .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn)) > button:not([id*=mceu_], .mce-open):where(:not(.gform-theme-no-framework, .gform-theme__disable, .gform-theme__disable *,
.gform-theme__disable-framework, .gform-theme__disable-framework *)).slim-blue,
body .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework, .gform-theme__disable, .gform-theme__disable *,
.gform-theme__disable-framework, .gform-theme__disable-framework *)).slim-blue,
body .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit], [type=button], [type=reset]).button:where(:not(.gform-theme-no-framework, .gform-theme__disable, .gform-theme__disable *,
.gform-theme__disable-framework, .gform-theme__disable-framework *)).slim-blue,
body .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit], [type=button], [type=reset]):where(:not(.gform-theme-no-framework, .gform-theme__disable, .gform-theme__disable *,
.gform-theme__disable-framework, .gform-theme__disable-framework *)).slim-blue,
body .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework, .gform-theme__disable, .gform-theme__disable *,
.gform-theme__disable-framework, .gform-theme__disable-framework *)).slim-blue {
  background-color: #035c81;
  color: #fff;
  padding: clamp(1px, calc(5vw * (100 / var(--siteBasis))), calc(5px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(15vw * (100 / var(--siteBasis))), calc(15px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(6vw * (100 / var(--siteBasis))), calc(6px * var(--siteMax) / var(--siteBasis)));
  border: none;
  --fontSize: 12;
  line-height: 135%;
}
@media (min-width: 768px) {
  body .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework, .gform-theme__disable, .gform-theme__disable *,
  .gform-theme__disable-framework, .gform-theme__disable-framework *)).slim-blue,
  body .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework, .gform-theme__disable, .gform-theme__disable *,
  .gform-theme__disable-framework, .gform-theme__disable-framework *)).slim-blue,
  body .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn)) > button:not([id*=mceu_], .mce-open):where(:not(.gform-theme-no-framework, .gform-theme__disable, .gform-theme__disable *,
  .gform-theme__disable-framework, .gform-theme__disable-framework *)).slim-blue,
  body .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework, .gform-theme__disable, .gform-theme__disable *,
  .gform-theme__disable-framework, .gform-theme__disable-framework *)).slim-blue,
  body .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit], [type=button], [type=reset]).button:where(:not(.gform-theme-no-framework, .gform-theme__disable, .gform-theme__disable *,
  .gform-theme__disable-framework, .gform-theme__disable-framework *)).slim-blue,
  body .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit], [type=button], [type=reset]):where(:not(.gform-theme-no-framework, .gform-theme__disable, .gform-theme__disable *,
  .gform-theme__disable-framework, .gform-theme__disable-framework *)).slim-blue,
  body .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework, .gform-theme__disable, .gform-theme__disable *,
  .gform-theme__disable-framework, .gform-theme__disable-framework *)).slim-blue {
    --fontSize: 14;
  }
}
body .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework, .gform-theme__disable, .gform-theme__disable *,
.gform-theme__disable-framework, .gform-theme__disable-framework *)).slim-blue:hover,
body .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework, .gform-theme__disable, .gform-theme__disable *,
.gform-theme__disable-framework, .gform-theme__disable-framework *)).slim-blue:hover,
body .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn)) > button:not([id*=mceu_], .mce-open):where(:not(.gform-theme-no-framework, .gform-theme__disable, .gform-theme__disable *,
.gform-theme__disable-framework, .gform-theme__disable-framework *)).slim-blue:hover,
body .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework, .gform-theme__disable, .gform-theme__disable *,
.gform-theme__disable-framework, .gform-theme__disable-framework *)).slim-blue:hover,
body .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit], [type=button], [type=reset]).button:where(:not(.gform-theme-no-framework, .gform-theme__disable, .gform-theme__disable *,
.gform-theme__disable-framework, .gform-theme__disable-framework *)).slim-blue:hover,
body .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit], [type=button], [type=reset]):where(:not(.gform-theme-no-framework, .gform-theme__disable, .gform-theme__disable *,
.gform-theme__disable-framework, .gform-theme__disable-framework *)).slim-blue:hover,
body .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework, .gform-theme__disable, .gform-theme__disable *,
.gform-theme__disable-framework, .gform-theme__disable-framework *)).slim-blue:hover {
  background-color: #0c8dc3;
}

.CTA_Bar {
  background-color: #0e1e2a;
  padding-top: clamp(1px, calc(90vw * (100 / var(--siteBasis))), calc(90px * var(--siteMax) / var(--siteBasis)));
}
@media (max-width: 767px) {
  .CTA_Bar {
    padding-top: clamp(1px, calc(50vw * (100 / var(--siteBasis))), calc(50px * var(--siteMax) / var(--siteBasis)));
  }
}
.CTA_Bar--wrap {
  padding-bottom: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis)));
}
.CTA_Bar--inner {
  background: linear-gradient(90deg, #8c4e9f 0%, #4a6fb1 55%, #62a15a 100%);
}
@media (min-width: 768px) {
  .CTA_Bar--inner {
    border-radius: clamp(1px, calc(200vw * (100 / var(--siteBasis))), calc(200px * var(--siteMax) / var(--siteBasis)));
    padding: clamp(1px, calc(18vw * (100 / var(--siteBasis))), calc(18px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(24vw * (100 / var(--siteBasis))), calc(24px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(18vw * (100 / var(--siteBasis))), calc(18px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(64vw * (100 / var(--siteBasis))), calc(64px * var(--siteMax) / var(--siteBasis)));
    gap: clamp(1px, calc(55vw * (100 / var(--siteBasis))), calc(55px * var(--siteMax) / var(--siteBasis)));
  }
}
@media (max-width: 767px) {
  .CTA_Bar--inner {
    border-radius: clamp(1px, calc(15vw * (100 / var(--siteBasis))), calc(15px * var(--siteMax) / var(--siteBasis)));
    padding: clamp(1px, calc(24vw * (100 / var(--siteBasis))), calc(24px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(30vw * (100 / var(--siteBasis))), calc(30px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(34vw * (100 / var(--siteBasis))), calc(34px * var(--siteMax) / var(--siteBasis)));
    gap: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis)));
    align-items: flex-start !important;
    background: linear-gradient(136deg, #8c4e9f 0%, #4a6fb1 55%, #62a15a 100%);
  }
}
.CTA_Bar p {
  font-family: "Noto Serif", serif;
}
@media (min-width: 768px) {
  .CTA_Bar p {
    --fontSize: 20;
  }
}
@media (max-width: 767px) {
  .CTA_Bar p {
    --fontSize: 18;
  }
}
.CTA_Bar .btn {
  display: inline-block;
  white-space: nowrap;
}

.PostTypeGrid {
  padding: clamp(1px, calc(60vw * (100 / var(--siteBasis))), calc(60px * var(--siteMax) / var(--siteBasis))) 0;
}
.PostTypeGrid--inner {
  display: grid;
  gap: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis)));
}
@media (min-width: 768px) {
  .PostTypeGrid--inner {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1px, calc(70vw * (100 / var(--siteBasis))), calc(70px * var(--siteMax) / var(--siteBasis)));
  }
}
.PostTypeGrid--item {
  text-decoration: none;
  color: inherit;
}
.PostTypeGrid--item-img {
  border-radius: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
  width: 100%;
  aspect-ratio: 350/223;
  margin-bottom: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
}
.PostTypeGrid--item-arrow {
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: clamp(1px, calc(92vw * (100 / var(--siteBasis))), calc(92px * var(--siteMax) / var(--siteBasis)));
  height: clamp(1px, calc(63vw * (100 / var(--siteBasis))), calc(63px * var(--siteMax) / var(--siteBasis)));
  background-color: #f1f7fa;
  z-index: 2;
  border-top-left-radius: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
}
.PostTypeGrid--item-arrow svg {
  width: clamp(1px, calc(32vw * (100 / var(--siteBasis))), calc(32px * var(--siteMax) / var(--siteBasis)));
  display: block;
}
.PostTypeGrid--item-title {
  margin-bottom: clamp(1px, calc(10vw * (100 / var(--siteBasis))), calc(10px * var(--siteMax) / var(--siteBasis))) !important;
}
.PostTypeGrid--item-date {
  --fontSize: 12;
}
.PostTypeGrid--item-blurb {
  --fontSize: 14;
  margin-top: clamp(1px, calc(25vw * (100 / var(--siteBasis))), calc(25px * var(--siteMax) / var(--siteBasis)));
  line-height: 1.37em;
}

.Stats {
  padding: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis))) 0;
}
.Stats--inner {
  display: grid;
  gap: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
}
@media (min-width: 768px) {
  .Stats--inner {
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
  }
}
@media (max-width: 767px) {
  .Stats--inner.has-old-span-mobile .Stats--item:last-child:nth-child(odd) {
    grid-column: 1/-1; /* span full width */
    justify-self: center; /* center horizontally */
    width: 50%;
  }
}
.Stats--item {
  border: 1px solid #cbcbcb;
  border-radius: clamp(1px, calc(12vw * (100 / var(--siteBasis))), calc(12px * var(--siteMax) / var(--siteBasis)));
  text-align: center;
  padding: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(24vw * (100 / var(--siteBasis))), calc(24px * var(--siteMax) / var(--siteBasis)));
}
.Stats--item-eyebrow, .Stats--item-desc {
  --fontSize: 14;
  font-weight: 500;
  display: block;
}
.Stats--item-eyebrow {
  margin-bottom: clamp(1px, calc(5vw * (100 / var(--siteBasis))), calc(5px * var(--siteMax) / var(--siteBasis)));
}
.Stats--item-desc {
  margin-top: clamp(1px, calc(5vw * (100 / var(--siteBasis))), calc(5px * var(--siteMax) / var(--siteBasis)));
}
.Stats--item-title {
  --fontSize: 56;
  font-weight: 900;
  font-family: "Noto Serif", serif;
  margin: 0 !important;
  line-height: 1;
}
.Stats--item-title span {
  background: linear-gradient(89.8deg, #8c4e9f 0.22%, #0c8dc3 99.88%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.papers {
  padding-inline: 0;
}
.papersContainer {
  gap: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .papersContainer {
    grid-template-columns: 1fr 1fr;
  }
}
.papers h3 {
  font-weight: 600;
}
.papers a {
  text-decoration: none;
  color: #000;
}
.papers a:hover {
  box-shadow: 0 20px 40px 0 rgba(0, 0, 0, 0.0509803922);
  transition: box-shadow 350ms cubic-bezier(0.23, 1, 0.32, 1);
}
.papersCard {
  border-radius: clamp(1px, calc(5vw * (100 / var(--siteBasis))), calc(5px * var(--siteMax) / var(--siteBasis)));
  border: 1px solid #e5e5e5;
  padding: clamp(1px, calc(30vw * (100 / var(--siteBasis))), calc(30px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(30vw * (100 / var(--siteBasis))), calc(30px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(24vw * (100 / var(--siteBasis))), calc(24px * var(--siteMax) / var(--siteBasis)));
  gap: clamp(1px, calc(12vw * (100 / var(--siteBasis))), calc(12px * var(--siteMax) / var(--siteBasis)));
  background-color: #fff;
}
@media (min-width: 768px) {
  .papersCard {
    gap: clamp(1px, calc(24vw * (100 / var(--siteBasis))), calc(24px * var(--siteMax) / var(--siteBasis)));
    padding: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(30vw * (100 / var(--siteBasis))), calc(30px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(38vw * (100 / var(--siteBasis))), calc(38px * var(--siteMax) / var(--siteBasis)));
  }
}
.papersCopy {
  flex: 1;
}
.papersCopy .title {
  font-weight: 600;
  margin-bottom: clamp(1px, calc(24vw * (100 / var(--siteBasis))), calc(24px * var(--siteMax) / var(--siteBasis)));
}
.papersCopy .excerpt p {
  --fontSize: 11;
  line-height: 135%;
  font-weight: 400;
}
@media (min-width: 768px) {
  .papersCopy .excerpt p {
    --fontSize: 12;
  }
}

.empty_box {
  margin-top: clamp(1px, calc(54vw * (100 / var(--siteBasis))), calc(54px * var(--siteMax) / var(--siteBasis)));
  background-color: rgba(227, 240, 245, 0.5019607843);
  padding: clamp(1px, calc(34vw * (100 / var(--siteBasis))), calc(34px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(31vw * (100 / var(--siteBasis))), calc(31px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(34vw * (100 / var(--siteBasis))), calc(34px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(34vw * (100 / var(--siteBasis))), calc(34px * var(--siteMax) / var(--siteBasis)));
  gap: clamp(1px, calc(37vw * (100 / var(--siteBasis))), calc(37px * var(--siteMax) / var(--siteBasis)));
}
.empty_box__badge {
  height: clamp(1px, calc(74vw * (100 / var(--siteBasis))), calc(74px * var(--siteMax) / var(--siteBasis)));
  aspect-ratio: 1/1;
  border-radius: 100%;
  background-color: #fff;
  box-shadow: 0 6px 13px 0 rgba(73, 95, 202, 0.0509803922), 0 24px 24px 0 rgba(73, 95, 202, 0.0392156863), 0 53px 32px 0 rgba(73, 95, 202, 0.031372549), 0 95px 38px 0 rgba(73, 95, 202, 0.0117647059), 0 148px 41px 0 rgba(73, 95, 202, 0);
}
.empty_box p {
  font-weight: 400;
}

.news_box {
  gap: clamp(1px, calc(22vw * (100 / var(--siteBasis))), calc(22px * var(--siteMax) / var(--siteBasis)));
  border-image-slice: 1;
  border-width: 2px;
  position: relative;
  border-radius: 5px;
}
.news_box__container {
  gap: clamp(1px, calc(14vw * (100 / var(--siteBasis))), calc(14px * var(--siteMax) / var(--siteBasis)));
  padding-top: 0;
}
@media (min-width: 768px) {
  .news_box__container {
    padding-top: clamp(1px, calc(8vw * (100 / var(--siteBasis))), calc(8px * var(--siteMax) / var(--siteBasis)));
  }
}
.news_box a {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  gap: clamp(1px, calc(22vw * (100 / var(--siteBasis))), calc(22px * var(--siteMax) / var(--siteBasis)));
  text-decoration: none;
  color: #000;
}
.news_box__meta {
  padding-inline: clamp(1px, calc(18vw * (100 / var(--siteBasis))), calc(18px * var(--siteMax) / var(--siteBasis)));
  padding-block: clamp(1px, calc(15vw * (100 / var(--siteBasis))), calc(15px * var(--siteMax) / var(--siteBasis)));
  flex-direction: row-reverse;
}
@media (min-width: 768px) {
  .news_box__meta {
    padding-inline: clamp(1px, calc(24vw * (100 / var(--siteBasis))), calc(24px * var(--siteMax) / var(--siteBasis)));
    padding-block: clamp(1px, calc(15vw * (100 / var(--siteBasis))), calc(15px * var(--siteMax) / var(--siteBasis)));
    display: flex;
    width: 100%;
    gap: clamp(1px, calc(22vw * (100 / var(--siteBasis))), calc(22px * var(--siteMax) / var(--siteBasis)));
    flex-direction: row;
    align-content: center;
  }
}
.news_box__meta .title {
  font-weight: 600;
  margin-bottom: clamp(1px, calc(6vw * (100 / var(--siteBasis))), calc(6px * var(--siteMax) / var(--siteBasis)));
  --fontSize: 12;
}
@media (min-width: 768px) {
  .news_box__meta .title {
    --fontSize: 16;
  }
}
.news_box__thumbnail {
  float: right;
}
@media (min-width: 768px) {
  .news_box__thumbnail {
    float: left;
  }
}
.news_box__thumbnail figure {
  width: clamp(1px, calc(65vw * (100 / var(--siteBasis))), calc(65px * var(--siteMax) / var(--siteBasis)));
  height: clamp(1px, calc(50vw * (100 / var(--siteBasis))), calc(50px * var(--siteMax) / var(--siteBasis)));
  margin-left: clamp(1px, calc(16vw * (100 / var(--siteBasis))), calc(16px * var(--siteMax) / var(--siteBasis)));
}
@media (min-width: 768px) {
  .news_box__thumbnail figure {
    width: clamp(1px, calc(134vw * (100 / var(--siteBasis))), calc(134px * var(--siteMax) / var(--siteBasis)));
    height: clamp(1px, calc(104vw * (100 / var(--siteBasis))), calc(104px * var(--siteMax) / var(--siteBasis)));
    margin-left: 0;
  }
}
.news_box__thumbnail figure img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.news_box__arrow {
  position: absolute;
  top: clamp(1px, calc(16vw * (100 / var(--siteBasis))), calc(16px * var(--siteMax) / var(--siteBasis)));
  right: clamp(1px, calc(16vw * (100 / var(--siteBasis))), calc(16px * var(--siteMax) / var(--siteBasis)));
  transform: rotate(-45deg);
  opacity: 0;
  transition: opacity 250ms cubic-bezier(0.23, 1, 0.32, 1);
}
.news_box__arrow svg path {
  fill: #0c8dc3;
}
.news_box:hover::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 5px;
  padding: 2px;
  background: linear-gradient(90deg, #8c4e9f 0%, #4a6fb1 55%, #62a15a 100%);
  -webkit-mask: conic-gradient(#000 0 0) content-box, conic-gradient(#000 0 0);
          mask: conic-gradient(#000 0 0) content-box, conic-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}
.news_box:hover .news_box__arrow {
  opacity: 1;
}

@keyframes dotFlash {
  0% {
    filter: hue-rotate(0deg);
  }
  30% {
    filter: hue-rotate(30deg) brightness(3);
  }
  60%, 100% {
    filter: hue-rotate(0deg);
  }
}
.home-map-scroll {
  position: relative;
}
@media (max-width: 767px) {
  .home-map-scroll {
    margin-bottom: clamp(1px, calc(50vw * (100 / var(--siteBasis))), calc(50px * var(--siteMax) / var(--siteBasis)));
  }
}
.home-map-scroll.gsap-ready .map-dots svg {
  opacity: 1;
}
.home-map-scroll.gsap-ready .map-dots svg g {
  transform: scale(1);
  animation: dotFlash 2.5s infinite forwards;
}
.home-map-scroll.gsap-ready .map-dots svg g:nth-child(2n) {
  animation-delay: 600ms;
}
.home-map-scroll.gsap-ready .map-dots svg g:nth-child(3n) {
  animation-delay: 750ms;
}
.home-map-scroll.gsap-ready .map-dots svg g:nth-child(4n) {
  animation-delay: 900ms;
}
.home-map-scroll.gsap-ready .map-dots svg g:nth-child(5n) {
  animation-delay: 1050ms;
}
.home-map-scroll.gsap-ready .map-dots svg g:nth-child(6n) {
  animation-delay: 1200ms;
}
.home-map-scroll.gsap-ready .map-dots svg g:nth-child(7n) {
  animation-delay: 1350ms;
}
.home-map-scroll.is-trigger .map-dots svg g {
  animation: none;
}
.home-map-scroll.is-trigger .map-dots svg circle {
  filter: blur(0);
}
.home-map-scroll .hero {
  aspect-ratio: 2/1;
}
.home-map-scroll .hero .container,
.home-map-scroll .hero .hero_scroll {
  z-index: 3;
}
.home-map-scroll .TwoColFlex {
  aspect-ratio: 2/1;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .home-map-scroll .TwoColFlex {
    padding-top: clamp(1px, calc(50vw * (100 / var(--siteBasis))), calc(50px * var(--siteMax) / var(--siteBasis)));
  }
}
.home-map-scroll .TwoColFlex__col--right .TwoColFlex__col--inner {
  width: 100%;
  max-width: none;
}

.home-map-dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.home-map-dots .container {
  position: relative;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  padding: 0;
}

.home-map-dots-sticky {
  position: -webkit-sticky;
  position: sticky;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  top: clamp(1px, calc(130vw * (100 / var(--siteBasis))), calc(130px * var(--siteMax) / var(--siteBasis)));
  aspect-ratio: 2/1;
  width: 100%;
  transform: translateY(2px);
}
@media (max-width: 767px) {
  .home-map-dots-sticky {
    height: 592.33px;
    align-items: flex-start;
    padding: clamp(1px, calc(50vw * (100 / var(--siteBasis))), calc(50px * var(--siteMax) / var(--siteBasis))) 5% 0;
  }
}

.map-dots {
  width: 100%;
}
@media (min-width: 768px) {
  .map-dots {
    width: 66.6667%;
  }
}
.map-dots svg {
  overflow: visible;
  width: 100%;
  opacity: 0;
  transition: opacity 2s;
}
.map-dots g {
  transform: scale(0);
  transform-origin: center;
  transform-box: fill-box;
  transition: transform 1s cubic-bezier(0.23, 1, 0.32, 1);
}
.map-dots g:nth-child(2n) {
  transition-delay: 150ms;
}
.map-dots g:nth-child(3n) {
  transition-delay: 500ms;
}
.map-dots g:nth-child(4n) {
  transition-delay: 650ms;
}
.map-dots g:nth-child(5n) {
  transition-delay: 800ms;
}
.map-dots g:nth-child(6n) {
  transition-delay: 950ms;
}
.map-dots g:nth-child(7n) {
  transition-delay: 1100ms;
}
.map-dots circle {
  filter: blur(5px);
  transition: filter 1s;
}

.hero-card {
  margin: clamp(1px, calc(30vw * (100 / var(--siteBasis))), calc(30px * var(--siteMax) / var(--siteBasis))) 0;
}
.hero-card .container {
  max-width: clamp(1px, calc(1330vw * (100 / var(--siteBasis))), calc(1330px * var(--siteMax) / var(--siteBasis)));
}
.hero-card__content {
  width: 100%;
  padding: clamp(1px, calc(30vw * (100 / var(--siteBasis))), calc(30px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
  border-radius: clamp(1px, calc(5vw * (100 / var(--siteBasis))), calc(5px * var(--siteMax) / var(--siteBasis)));
  background: linear-gradient(221deg, #622973 8.22%, #016f9d 104.82%);
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero-card__content {
    padding: clamp(1px, calc(70vw * (100 / var(--siteBasis))), calc(70px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(70vw * (100 / var(--siteBasis))), calc(70px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(100vw * (100 / var(--siteBasis))), calc(100px * var(--siteMax) / var(--siteBasis)));
  }
}
.hero-card__content .wysi {
  width: 55%;
  text-align: left;
}
@media (max-width: 767px) {
  .hero-card__content .wysi {
    width: 100%;
  }
}
.hero-card__content .wysi ul,
.hero-card__content .wysi ol {
  padding-left: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
}
.hero-card__content .wysi ul:not(:last-child),
.hero-card__content .wysi ol:not(:last-child) {
  margin-bottom: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
}
.hero-card__content .wysi a {
  color: #fff;
  transition: color 0.3s ease;
}
.hero-card__content .wysi a:hover {
  color: #e2d3e7;
  text-decoration: none;
}
.hero-card__content .image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 45%;
  height: 100%;
  mix-blend-mode: color-dodge;
}
@media (max-width: 767px) {
  .hero-card__content .image {
    display: none;
  }
}
.hero-card__content .image img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom;
}
@media (max-width: 767px) {
  .hero-card__content .image {
    width: 40%;
  }
}

@media (max-width: 767px) {
  .sntc {
    margin: clamp(1px, calc(50vw * (100 / var(--siteBasis))), calc(50px * var(--siteMax) / var(--siteBasis))) 0 clamp(1px, calc(80vw * (100 / var(--siteBasis))), calc(80px * var(--siteMax) / var(--siteBasis)));
  }
}
.sntc__row {
  gap: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
}
.sntc__nav {
  padding-top: clamp(1px, calc(80vw * (100 / var(--siteBasis))), calc(80px * var(--siteMax) / var(--siteBasis)));
  padding-right: clamp(1px, calc(30vw * (100 / var(--siteBasis))), calc(30px * var(--siteMax) / var(--siteBasis)));
  padding-bottom: clamp(1px, calc(100vw * (100 / var(--siteBasis))), calc(100px * var(--siteMax) / var(--siteBasis)));
  flex: 0 0 clamp(1px, calc(300vw * (100 / var(--siteBasis))), calc(300px * var(--siteMax) / var(--siteBasis)));
  position: -webkit-sticky;
  position: sticky;
  top: clamp(1px, calc(100vw * (100 / var(--siteBasis))), calc(100px * var(--siteMax) / var(--siteBasis)));
  align-self: start;
}
.sntc__nav-list {
  padding-left: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
  border-left: solid 6px #ededed;
}
.sntc__nav-list .indicator {
  position: absolute;
  left: clamp(calc(-6 * (100 / var(--siteBasis)) * 1vw), calc(-6px * var(--siteMax) / var(--siteBasis)), -1px);
  width: clamp(1px, calc(6vw * (100 / var(--siteBasis))), calc(6px * var(--siteMax) / var(--siteBasis)));
  height: clamp(1px, calc(33vw * (100 / var(--siteBasis))), calc(33px * var(--siteMax) / var(--siteBasis)));
  background-color: #0c8dc3;
  transition: all 350ms cubic-bezier(0.23, 1, 0.32, 1);
}
.sntc__nav-item {
  padding: clamp(1px, calc(3vw * (100 / var(--siteBasis))), calc(3px * var(--siteMax) / var(--siteBasis))) 0;
}
.sntc__nav-item.is-active a {
  color: #000;
}
.sntc__nav-item a {
  display: inline-block;
  color: #c6c6c6;
  text-decoration: none;
  transition: color 400ms cubic-bezier(0.23, 1, 0.32, 1);
}
.sntc__nav-item a:hover {
  color: #000;
}
.sntc__content {
  flex: 1;
  width: 100%;
}
@media (max-width: 767px) {
  .sntc__content {
    display: flex;
    flex-direction: column;
    gap: clamp(1px, calc(60vw * (100 / var(--siteBasis))), calc(60px * var(--siteMax) / var(--siteBasis)));
  }
}
@media (min-width: 768px) {
  .sntc__section {
    padding: clamp(1px, calc(80vw * (100 / var(--siteBasis))), calc(80px * var(--siteMax) / var(--siteBasis))) 0 clamp(1px, calc(100vw * (100 / var(--siteBasis))), calc(100px * var(--siteMax) / var(--siteBasis)));
    padding-top: calc(var(--headerHeight) + clamp(1px, calc(80vw * (100 / var(--siteBasis))), calc(80px * var(--siteMax) / var(--siteBasis))));
    margin-top: calc(-1 * (var(--headerHeight)));
  }
}
@media (min-width: 768px) {
  .sntc__section:not(:last-child) {
    border-bottom: solid 1px #ededed;
  }
}
.sntc__section-image {
  margin-bottom: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis)));
  border-radius: clamp(1px, calc(5vw * (100 / var(--siteBasis))), calc(5px * var(--siteMax) / var(--siteBasis)));
}
.sntc__section-row {
  gap: clamp(1px, calc(30vw * (100 / var(--siteBasis))), calc(30px * var(--siteMax) / var(--siteBasis)));
}
.sntc__section-row.cards .copy {
  width: 100%;
}
@media (min-width: 768px) {
  .sntc__section-row {
    gap: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis)));
  }
}
.sntc__section-row .copy {
  width: 100%;
}
@media (min-width: 768px) {
  .sntc__section-row .copy {
    width: 50%;
  }
  .sntc__section-row .copy.large {
    width: 70%;
  }
  .sntc__section-row .copy.full-width {
    width: 100%;
  }
}
.sntc__section-row .media {
  position: relative;
}
@media (min-width: 768px) {
  .sntc__section-row .media {
    flex: 1;
  }
}
@media (max-width: 767px) {
  .sntc__section-row .media {
    width: 100%;
  }
}
.sntc__section-row .media-image-top {
  margin-bottom: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
}
@media (max-width: 767px) {
  .sntc__section-row .media .media-image {
    margin-block: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
  }
}
@media (min-width: 768px) {
  .sntc__section-row .media .media-image.overflow {
    overflow: visible;
  }
}
@media (min-width: 768px) {
  .sntc__section-row .media .media-image.overflow img {
    max-width: initial;
    width: 190%;
    margin-left: -13%;
  }
}
.sntc__section-row .media .media-image.circle {
  width: clamp(1px, calc(150vw * (100 / var(--siteBasis))), calc(150px * var(--siteMax) / var(--siteBasis)));
  aspect-ratio: 1/1;
  border-radius: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .sntc__section-row .media .media-image.circle {
    width: clamp(1px, calc(250vw * (100 / var(--siteBasis))), calc(250px * var(--siteMax) / var(--siteBasis)));
  }
}
.sntc__section-row .media .media-image.circle img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (min-width: 768px) {
  .sntc__section-cards {
    margin-top: clamp(1px, calc(30vw * (100 / var(--siteBasis))), calc(30px * var(--siteMax) / var(--siteBasis)));
  }
}
.sntc__section-cards .btn {
  margin-top: clamp(1px, calc(50vw * (100 / var(--siteBasis))), calc(50px * var(--siteMax) / var(--siteBasis)));
}
@media (max-width: 767px) {
  .sntc__section-cards .btn {
    margin-top: clamp(1px, calc(25vw * (100 / var(--siteBasis))), calc(25px * var(--siteMax) / var(--siteBasis)));
  }
}
.sntc__section-card {
  position: relative;
  gap: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
  padding: clamp(1px, calc(30vw * (100 / var(--siteBasis))), calc(30px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(25vw * (100 / var(--siteBasis))), calc(25px * var(--siteMax) / var(--siteBasis)));
  border-radius: clamp(1px, calc(5vw * (100 / var(--siteBasis))), calc(5px * var(--siteMax) / var(--siteBasis)));
  text-decoration: none;
}
@media (min-width: 768px) {
  .sntc__section-card {
    gap: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis)));
    padding: clamp(1px, calc(30vw * (100 / var(--siteBasis))), calc(30px * var(--siteMax) / var(--siteBasis)));
  }
}
.sntc__section-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  background: linear-gradient(90deg, #8c4e9f 0.22%, #0c8dc3 99.88%);
  z-index: 0;
  border-radius: clamp(1px, calc(5vw * (100 / var(--siteBasis))), calc(5px * var(--siteMax) / var(--siteBasis)));
  transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1);
}
.sntc__section-card:not(:last-child) {
  margin-bottom: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
}
.sntc__section-card .image,
.sntc__section-card .wysi {
  position: relative;
  z-index: 1;
}
.sntc__section-card .image {
  aspect-ratio: 13/7;
  width: 100%;
  transition: box-shadow 450ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: clamp(1px, calc(4vw * (100 / var(--siteBasis))), calc(4px * var(--siteMax) / var(--siteBasis)));
}
@media (min-width: 768px) {
  .sntc__section-card .image {
    aspect-ratio: 13/9;
    width: clamp(1px, calc(306vw * (100 / var(--siteBasis))), calc(306px * var(--siteMax) / var(--siteBasis)));
  }
}
.sntc__section-card .wysi {
  padding-bottom: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
}
@media (min-width: 768px) {
  .sntc__section-card .wysi {
    flex: 1;
    padding-right: clamp(1px, calc(30vw * (100 / var(--siteBasis))), calc(30px * var(--siteMax) / var(--siteBasis)));
  }
}
@media (max-width: 767px) {
  .sntc__section-card .wysi {
    width: 100%;
  }
}
.sntc__section-card .wysi h3,
.sntc__section-card .wysi p,
.sntc__section-card .wysi li {
  transition: color 450ms cubic-bezier(0.23, 1, 0.32, 1);
}
.sntc__section-card .wysi h3 {
  color: #000;
}
.sntc__section-card .wysi p,
.sntc__section-card .wysi li {
  --fontSize: 12;
  line-height: 135%;
  color: #000;
}
@media (min-width: 768px) {
  .sntc__section-card .wysi p,
  .sntc__section-card .wysi li {
    --fontSize: 14;
  }
}
.sntc__section-card .arrow {
  position: absolute;
  bottom: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
  right: clamp(1px, calc(25vw * (100 / var(--siteBasis))), calc(25px * var(--siteMax) / var(--siteBasis)));
  opacity: 0;
  transform: translateX(clamp(calc(-10 * (100 / var(--siteBasis)) * 1vw), calc(-10px * var(--siteMax) / var(--siteBasis)), -1px));
  transition: opacity 450ms cubic-bezier(0.23, 1, 0.32, 1), transform 450ms cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 2;
}
.sntc__section-card:hover::after {
  background: linear-gradient(90deg, #8c4e9f 0.22%, #0c8dc3 99.88%);
  opacity: 1;
}
.sntc__section-card:hover .image {
  box-shadow: 0 210px 59px 0 rgba(0, 0, 0, 0), 0 135px 54px 0 rgba(0, 0, 0, 0.01), 0 76px 45px 0 rgba(0, 0, 0, 0.05), 0 34px 34px 0 rgba(0, 0, 0, 0.09), 0 8px 19px 0 rgba(0, 0, 0, 0.1);
}
.sntc__section-card:hover .wysi h3,
.sntc__section-card:hover .wysi p,
.sntc__section-card:hover .wysi li {
  color: #fff;
}
.sntc__section-card:hover .arrow {
  opacity: 1;
  transform: translateX(0);
}
.sntc .copy-wysiwyg-area {
  margin-bottom: clamp(1px, calc(30vw * (100 / var(--siteBasis))), calc(30px * var(--siteMax) / var(--siteBasis)));
}
.sntc .copy-wysiwyg-area p,
.sntc .copy-wysiwyg-area li {
  color: #302c2c;
}
.sntc .copy-wysiwyg-area .copy-item:not(:last-child) {
  margin-bottom: clamp(1px, calc(15vw * (100 / var(--siteBasis))), calc(15px * var(--siteMax) / var(--siteBasis)));
}
.sntc .copy-wysiwyg-area .copy-item ul {
  margin: clamp(1px, calc(25vw * (100 / var(--siteBasis))), calc(25px * var(--siteMax) / var(--siteBasis))) 0;
  padding-left: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
}
.sntc .copy-wysiwyg-area .copy-item ul li:not(:last-child) {
  margin-bottom: clamp(1px, calc(8vw * (100 / var(--siteBasis))), calc(8px * var(--siteMax) / var(--siteBasis)));
}
.sntc .cards-white-area {
  margin-bottom: clamp(1px, calc(30vw * (100 / var(--siteBasis))), calc(30px * var(--siteMax) / var(--siteBasis)));
}
.sntc .cards-white-area .card-white-item {
  position: relative;
  border-radius: clamp(1px, calc(5vw * (100 / var(--siteBasis))), calc(5px * var(--siteMax) / var(--siteBasis)));
  border: solid 1px #ededed;
  padding: clamp(1px, calc(15vw * (100 / var(--siteBasis))), calc(15px * var(--siteMax) / var(--siteBasis)));
  gap: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
  text-decoration: none;
  color: #000;
  transition: border-color 400ms cubic-bezier(0.23, 1, 0.32, 1), box-shadow 400ms cubic-bezier(0.23, 1, 0.32, 1);
}
.sntc .cards-white-area .card-white-item:not(:last-child) {
  margin-bottom: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
}
@media (min-width: 768px) {
  .sntc .cards-white-area .card-white-item {
    gap: clamp(1px, calc(30vw * (100 / var(--siteBasis))), calc(30px * var(--siteMax) / var(--siteBasis)));
    padding: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
  }
}
.sntc .cards-white-area .card-white-item .image {
  position: relative;
  width: clamp(1px, calc(70vw * (100 / var(--siteBasis))), calc(70px * var(--siteMax) / var(--siteBasis)));
  aspect-ratio: 4/3;
  margin: 0;
}
@media (min-width: 768px) {
  .sntc .cards-white-area .card-white-item .image {
    width: clamp(1px, calc(140vw * (100 / var(--siteBasis))), calc(140px * var(--siteMax) / var(--siteBasis)));
    aspect-ratio: 13/9;
  }
}
.sntc .cards-white-area .card-white-item .content {
  flex: 1;
}
@media (min-width: 768px) {
  .sntc .cards-white-area .card-white-item .content {
    padding-right: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis)));
  }
}
.sntc .cards-white-area .card-white-item .content h3 {
  font-family: "Noto Sans", sans-serif;
  font-weight: 600;
  margin-bottom: clamp(1px, calc(5vw * (100 / var(--siteBasis))), calc(5px * var(--siteMax) / var(--siteBasis)));
}
.sntc .cards-white-area .card-white-item .arrow {
  position: absolute;
  top: clamp(1px, calc(16vw * (100 / var(--siteBasis))), calc(16px * var(--siteMax) / var(--siteBasis)));
  right: clamp(1px, calc(16vw * (100 / var(--siteBasis))), calc(16px * var(--siteMax) / var(--siteBasis)));
  transform: rotate(-45deg);
  opacity: 0;
  transition: opacity 250ms cubic-bezier(0.23, 1, 0.32, 1);
}
.sntc .cards-white-area .card-white-item:hover::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 5px;
  padding: 2px;
  background: linear-gradient(90deg, #8c4e9f 0%, #4a6fb1 55%, #62a15a 100%);
  -webkit-mask: conic-gradient(#000 0 0) content-box, conic-gradient(#000 0 0);
          mask: conic-gradient(#000 0 0) content-box, conic-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}
.sntc .cards-white-area .card-white-item:hover .arrow {
  opacity: 1;
}
.sntc .end-text {
  margin-bottom: clamp(1px, calc(30vw * (100 / var(--siteBasis))), calc(30px * var(--siteMax) / var(--siteBasis)));
}
.sntc .cards-icon-area {
  margin-top: clamp(1px, calc(30vw * (100 / var(--siteBasis))), calc(30px * var(--siteMax) / var(--siteBasis)));
  margin-bottom: clamp(1px, calc(30vw * (100 / var(--siteBasis))), calc(30px * var(--siteMax) / var(--siteBasis)));
  gap: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
}
@media (min-width: 768px) {
  .sntc .cards-icon-area {
    gap: clamp(1px, calc(36vw * (100 / var(--siteBasis))), calc(36px * var(--siteMax) / var(--siteBasis)));
  }
}
.sntc .cards-icon-area .card-icon-item {
  position: relative;
  width: 100%;
  padding: clamp(1px, calc(15vw * (100 / var(--siteBasis))), calc(15px * var(--siteMax) / var(--siteBasis)));
  border-radius: clamp(1px, calc(5vw * (100 / var(--siteBasis))), calc(5px * var(--siteMax) / var(--siteBasis)));
  text-decoration: none;
}
.sntc .cards-icon-area .card-icon-item::before, .sntc .cards-icon-area .card-icon-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: clamp(1px, calc(5vw * (100 / var(--siteBasis))), calc(5px * var(--siteMax) / var(--siteBasis)));
  transition: opacity 350ms cubic-bezier(0.23, 1, 0.32, 1);
  z-index: -1;
}
.sntc .cards-icon-area .card-icon-item::before {
  background: linear-gradient(90deg, rgba(140, 78, 159, 0.1) 0.22%, rgba(12, 141, 195, 0.1) 99.88%);
  opacity: 1;
}
.sntc .cards-icon-area .card-icon-item::after {
  background: linear-gradient(90deg, #8c4e9f 0.22%, #0c8dc3 99.88%);
  opacity: 0;
}
@media (min-width: 768px) {
  .sntc .cards-icon-area .card-icon-item {
    width: calc(50% - clamp(1px, calc(18vw * (100 / var(--siteBasis))), calc(18px * var(--siteMax) / var(--siteBasis))));
    padding: clamp(1px, calc(30vw * (100 / var(--siteBasis))), calc(30px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis)));
  }
}
.sntc .cards-icon-area .card-icon-item figure {
  width: clamp(1px, calc(100vw * (100 / var(--siteBasis))), calc(100px * var(--siteMax) / var(--siteBasis)));
  aspect-ratio: 1/1;
  margin-bottom: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
}
.sntc .cards-icon-area .card-icon-item figure img {
  filter: grayscale(0) invert(0) brightness(1);
  transition: filter 350ms cubic-bezier(0.23, 1, 0.32, 1);
}
.sntc .cards-icon-area .card-icon-item h3,
.sntc .cards-icon-area .card-icon-item p,
.sntc .cards-icon-area .card-icon-item small {
  transition: color 350ms cubic-bezier(0.23, 1, 0.32, 1);
}
.sntc .cards-icon-area .card-icon-item h3,
.sntc .cards-icon-area .card-icon-item p {
  color: #000;
}
.sntc .cards-icon-area .card-icon-item h3 {
  margin-bottom: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
}
.sntc .cards-icon-area .card-icon-item small {
  display: block;
  font-weight: 600;
}
.sntc .cards-icon-area .card-icon-item:hover::before {
  opacity: 0;
}
.sntc .cards-icon-area .card-icon-item:hover::after {
  opacity: 1;
}
.sntc .cards-icon-area .card-icon-item:hover img {
  filter: grayscale(1) invert(1) brightness(2);
}
.sntc .cards-icon-area .card-icon-item:hover h3,
.sntc .cards-icon-area .card-icon-item:hover p,
.sntc .cards-icon-area .card-icon-item:hover small {
  color: #fff !important;
}
.sntc .stat-boxes {
  gap: clamp(1px, calc(10vw * (100 / var(--siteBasis))), calc(10px * var(--siteMax) / var(--siteBasis)));
  margin-bottom: clamp(1px, calc(30vw * (100 / var(--siteBasis))), calc(30px * var(--siteMax) / var(--siteBasis)));
  align-items: stretch;
}
.sntc .stat-boxes .box {
  background-color: #f6f6f6;
  border-radius: clamp(1px, calc(4vw * (100 / var(--siteBasis))), calc(4px * var(--siteMax) / var(--siteBasis)));
  padding: clamp(1px, calc(10vw * (100 / var(--siteBasis))), calc(10px * var(--siteMax) / var(--siteBasis)));
  width: calc(50% - clamp(1px, calc(7vw * (100 / var(--siteBasis))), calc(7px * var(--siteMax) / var(--siteBasis))));
}
.sntc .stat-boxes .number .odometer-digit {
  width: clamp(1px, calc(13vw * (100 / var(--siteBasis))), calc(13px * var(--siteMax) / var(--siteBasis)));
  min-height: clamp(1px, calc(30vw * (100 / var(--siteBasis))), calc(30px * var(--siteMax) / var(--siteBasis)));
}
.sntc .stat-boxes .number .odometer-value,
.sntc .stat-boxes .number .prefix,
.sntc .stat-boxes .number .suffix {
  font-family: "Noto Serif", serif;
  font-weight: 600;
  --fontSize: 20;
  line-height: 125%;
  font-weight: 800;
  background: linear-gradient(0deg, #8c4e9f 0.22%, #0c8dc3 99.88%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
@media (min-width: 768px) {
  .sntc .stat-boxes .number .odometer-value,
  .sntc .stat-boxes .number .prefix,
  .sntc .stat-boxes .number .suffix {
    --fontSize: 24;
  }
}
.sntc .stat-boxes p {
  margin-top: clamp(1px, calc(3vw * (100 / var(--siteBasis))), calc(3px * var(--siteMax) / var(--siteBasis)));
}

.hero-two-col {
  padding: clamp(1px, calc(30vw * (100 / var(--siteBasis))), calc(30px * var(--siteMax) / var(--siteBasis))) 0;
}
@media (min-width: 768px) {
  .hero-two-col {
    padding: clamp(1px, calc(80vw * (100 / var(--siteBasis))), calc(80px * var(--siteMax) / var(--siteBasis))) 0;
  }
}
.hero-two-col .container {
  max-width: clamp(1px, calc(1210vw * (100 / var(--siteBasis))), calc(1210px * var(--siteMax) / var(--siteBasis)));
}
.hero-two-col__content {
  width: 100%;
  gap: clamp(1px, calc(30vw * (100 / var(--siteBasis))), calc(30px * var(--siteMax) / var(--siteBasis)));
}
@media (min-width: 768px) {
  .hero-two-col__content {
    gap: clamp(1px, calc(50vw * (100 / var(--siteBasis))), calc(50px * var(--siteMax) / var(--siteBasis)));
  }
}
.hero-two-col .wysi {
  flex: 1;
}
.hero-two-col .wysi p,
.hero-two-col .wysi li {
  color: #000;
}
.hero-two-col .image {
  width: 100%;
}
@media (min-width: 768px) {
  .hero-two-col .image {
    width: 50%;
  }
}

.form-block {
  position: relative;
  padding: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis))) 0;
}
@media (min-width: 768px) {
  .form-block {
    padding: clamp(1px, calc(80vw * (100 / var(--siteBasis))), calc(80px * var(--siteMax) / var(--siteBasis))) 0;
  }
}
.form-block__content {
  text-align: center;
  max-width: clamp(1px, calc(600vw * (100 / var(--siteBasis))), calc(600px * var(--siteMax) / var(--siteBasis)));
  margin: 0 auto;
}
.form-block__content h2,
.form-block__content p {
  color: #000;
}
.form-block__content h2 {
  background: linear-gradient(85deg, #5f1776 5.19%, #00567a 96.1%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: clamp(1px, calc(10vw * (100 / var(--siteBasis))), calc(10px * var(--siteMax) / var(--siteBasis)));
  padding-bottom: clamp(1px, calc(10vw * (100 / var(--siteBasis))), calc(10px * var(--siteMax) / var(--siteBasis)));
}
.form-block__form {
  margin-top: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis)));
  max-width: clamp(1px, calc(600vw * (100 / var(--siteBasis))), calc(600px * var(--siteMax) / var(--siteBasis)));
  padding: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
  border: solid 4px #d6dee1;
  border-radius: clamp(1px, calc(6vw * (100 / var(--siteBasis))), calc(6px * var(--siteMax) / var(--siteBasis)));
  background-color: #fff;
  color: #00202c;
}
@media (min-width: 768px) {
  .form-block__form {
    padding: clamp(1px, calc(30vw * (100 / var(--siteBasis))), calc(30px * var(--siteMax) / var(--siteBasis)));
  }
}

.gradient-bar {
  background: linear-gradient(90deg, #723e82 0%, #2c5192 55%, #457b3e 100%);
  padding: clamp(1px, calc(8vw * (100 / var(--siteBasis))), calc(8px * var(--siteMax) / var(--siteBasis))) 0;
  font-weight: 500;
  padding-inline: 2%;
}
.gradient-bar a {
  text-decoration: none;
}
.gradient-bar a svg {
  padding-bottom: 1px;
}

.header {
  background-color: #fff;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  box-shadow: 0 40px 87px 0 rgba(0, 0, 0, 0.0509803922);
  z-index: 999;
}
.header .container {
  max-width: clamp(1px, calc(1368vw * (100 / var(--siteBasis))), calc(1368px * var(--siteMax) / var(--siteBasis)));
}
@media (max-width: 767px) {
  .header .container {
    padding-left: 6%;
    padding-right: 6%;
  }
}
.header__bg {
  background-color: #fff;
  width: 100vw;
  height: var(--headerBGHeight);
  transition: height 250ms cubic-bezier(0.23, 1, 0.32, 1);
  position: absolute;
  left: 0;
}
@media (max-width: 767px) {
  .header__bg {
    height: auto;
  }
}
.header__logo {
  width: clamp(1px, calc(200vw * (100 / var(--siteBasis))), calc(200px * var(--siteMax) / var(--siteBasis)));
  order: 2;
}
@media (min-width: 768px) {
  .header__logo {
    order: 0;
    width: clamp(1px, calc(220vw * (100 / var(--siteBasis))), calc(220px * var(--siteMax) / var(--siteBasis)));
  }
}
.header__row {
  padding: clamp(1px, calc(12vw * (100 / var(--siteBasis))), calc(12px * var(--siteMax) / var(--siteBasis))) 0;
}
@media (min-width: 768px) {
  .header__row {
    padding: 0;
    position: initial;
  }
}
.header__row a {
  text-decoration: none;
  font-family: "Noto Sans", sans-serif;
}
.header__row.is-active .header__nav {
  right: 0;
}
.header__row.is-active .header__nav_container {
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: linear-gradient(112.71deg, rgba(57, 0, 94, 0.7019607843) 3.67%, rgba(0, 59, 56, 0.7019607843) 94.25%);
}
.header__row.is-active .nav-close-btn {
  opacity: 1;
  pointer-events: auto;
}
.header__nav {
  flex: 1;
  z-index: 20;
  transition: right 750ms cubic-bezier(0.23, 1, 0.32, 1);
  background: #fff;
  height: 100vh;
  width: clamp(1px, calc(295vw * (100 / var(--siteBasis))), calc(295px * var(--siteMax) / var(--siteBasis)));
  top: 0;
  right: -100%;
  position: absolute;
  justify-content: flex-start;
  padding: 0 3% 0 clamp(1px, calc(28vw * (100 / var(--siteBasis))), calc(28px * var(--siteMax) / var(--siteBasis)));
}
.header__nav_container {
  position: absolute;
}
@media (min-width: 768px) {
  .header__nav {
    height: auto;
    right: 0;
    position: static;
    padding: 0;
    justify-content: flex-end;
    z-index: 1;
    padding-right: clamp(1px, calc(21vw * (100 / var(--siteBasis))), calc(21px * var(--siteMax) / var(--siteBasis)));
  }
  .header__nav.open {
    right: 0;
  }
}
.header__nav:hover .header__nav-item a {
  transition: opacity 450ms cubic-bezier(0.23, 1, 0.32, 1);
}
.header__nav:hover .header__nav-item a:not(:hover) {
  opacity: 1;
}
@media (min-width: 768px) {
  .header__nav:hover .header__nav-item a:not(:hover) {
    opacity: 0.5;
  }
}
.header__nav:hover .header__nav-item.active a:not(:hover) {
  opacity: 1;
}
@media (min-width: 768px) {
  .header__nav:hover .header__nav-item.active a:not(:hover) {
    opacity: 1;
  }
}
.header__nav_mobileHeader {
  padding-top: clamp(1px, calc(18vw * (100 / var(--siteBasis))), calc(18px * var(--siteMax) / var(--siteBasis)));
  padding-bottom: clamp(1px, calc(34vw * (100 / var(--siteBasis))), calc(34px * var(--siteMax) / var(--siteBasis)));
  width: 100%;
}
.header__nav-item {
  list-style: none;
  font-weight: 600;
}
.header__nav-item.indicator.active > a {
  position: relative;
}
.header__nav-item.indicator.active > a::after {
  content: "";
  background-color: #8c4e9f;
  height: clamp(1px, calc(4vw * (100 / var(--siteBasis))), calc(4px * var(--siteMax) / var(--siteBasis)));
  width: 80%;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: -1px;
}
@media (max-width: 767px) {
  .header__nav-item {
    position: static;
  }
}
.header__nav-item.active .header__subnav {
  opacity: 1;
  min-height: clamp(1px, calc(380vw * (100 / var(--siteBasis))), calc(380px * var(--siteMax) / var(--siteBasis)));
}
.header__nav-main {
  gap: clamp(1px, calc(11vw * (100 / var(--siteBasis))), calc(11px * var(--siteMax) / var(--siteBasis)));
  padding: clamp(1px, calc(13vw * (100 / var(--siteBasis))), calc(13px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(4vw * (100 / var(--siteBasis))), calc(4px * var(--siteMax) / var(--siteBasis)));
}
@media (min-width: 768px) {
  .header__nav-main {
    padding: clamp(1px, calc(27vw * (100 / var(--siteBasis))), calc(27px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(21vw * (100 / var(--siteBasis))), calc(21px * var(--siteMax) / var(--siteBasis)));
  }
}
.header__nav-main svg {
  transform: rotate(-90deg);
  transition: transform 500ms cubic-bezier(0.23, 1, 0.32, 1);
  height: clamp(1px, calc(6vw * (100 / var(--siteBasis))), calc(6px * var(--siteMax) / var(--siteBasis)));
  width: clamp(1px, calc(12vw * (100 / var(--siteBasis))), calc(12px * var(--siteMax) / var(--siteBasis)));
}
@media (min-width: 768px) {
  .header__nav-main svg {
    transform: rotate(-90deg);
    height: clamp(1px, calc(9vw * (100 / var(--siteBasis))), calc(9px * var(--siteMax) / var(--siteBasis)));
    width: clamp(1px, calc(12vw * (100 / var(--siteBasis))), calc(12px * var(--siteMax) / var(--siteBasis)));
  }
}
.header__nav-main:hover svg {
  transform: rotate(0deg);
}
.header__nav_mobile-logo {
  width: clamp(1px, calc(169vw * (100 / var(--siteBasis))), calc(169px * var(--siteMax) / var(--siteBasis)));
}
.header__subnav {
  position: absolute;
  top: 0;
  left: 100%;
  width: 100vw;
  max-height: none;
  overflow: hidden;
  transition: left 250ms;
  z-index: 10;
  background-color: transparent;
}
@media (max-width: 767px) {
  .header__subnav {
    height: 100vh;
    background-color: #fff;
  }
}
@media (min-width: 768px) {
  .header__subnav {
    position: absolute;
    left: clamp(1px, calc(25vw * (100 / var(--siteBasis))), calc(25px * var(--siteMax) / var(--siteBasis)));
    top: auto;
    width: 100%;
    height: 0;
    overflow: hidden;
    transition: opacity 250ms ease, filter 250ms ease, height 50ms ease;
    opacity: 0.01;
  }
  .header__subnav.active {
    left: 0;
    box-shadow: none;
  }
}
.header__subnav.active {
  left: 8%;
  box-shadow: -10px 0 10px -5px rgba(0, 0, 0, 0.3);
  padding-left: clamp(1px, calc(10vw * (100 / var(--siteBasis))), calc(10px * var(--siteMax) / var(--siteBasis)));
}
.header__subnav.active.has-children.active .header__subnav-children {
  background-color: #fff;
  box-shadow: -10px 0 10px -5px rgba(0, 0, 0, 0.3);
  max-height: none;
  overflow: hidden;
  position: absolute;
  top: 0;
  z-index: 20;
  left: 8%;
  height: 100vh;
  width: 100%;
  padding-left: clamp(1px, calc(10vw * (100 / var(--siteBasis))), calc(10px * var(--siteMax) / var(--siteBasis)));
  opacity: 1;
}
@media (min-width: 768px) {
  .header__subnav.active.has-children.active .header__subnav-children {
    box-shadow: none;
    height: auto;
    overflow: initial;
    padding-left: 0;
    position: initial;
  }
}
.header__subnav-list {
  padding-bottom: clamp(1px, calc(18vw * (100 / var(--siteBasis))), calc(18px * var(--siteMax) / var(--siteBasis)));
  padding-top: clamp(1px, calc(35vw * (100 / var(--siteBasis))), calc(35px * var(--siteMax) / var(--siteBasis)));
  padding-left: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
}
@media (min-width: 768px) {
  .header__subnav-list {
    padding: 0;
    padding-bottom: clamp(1px, calc(38vw * (100 / var(--siteBasis))), calc(38px * var(--siteMax) / var(--siteBasis)));
  }
}
.header__subnav-item {
  font-weight: 500;
  list-style: none;
  transition: transform 250ms cubic-bezier(0.23, 1, 0.32, 1);
  padding: clamp(1px, calc(12vw * (100 / var(--siteBasis))), calc(12px * var(--siteMax) / var(--siteBasis))) 0;
  display: flex;
  --fontSize: 16;
  flex-direction: row;
}
.header__subnav-item svg {
  display: none;
}
@media (min-width: 768px) {
  .header__subnav-item {
    padding: clamp(1px, calc(1vw * (100 / var(--siteBasis))), calc(1px * var(--siteMax) / var(--siteBasis))) 0;
    flex-direction: column;
  }
}
.header__subnav-item a,
.header__subnav-item span {
  transition: color 250ms cubic-bezier(0.23, 1, 0.32, 1);
  --fontSize: 14;
  font-weight: 600;
  padding-bottom: clamp(1px, calc(2vw * (100 / var(--siteBasis))), calc(2px * var(--siteMax) / var(--siteBasis)));
}
.header__subnav-item a span,
.header__subnav-item span span {
  margin-left: clamp(1px, calc(6vw * (100 / var(--siteBasis))), calc(6px * var(--siteMax) / var(--siteBasis)));
}
.header__subnav-item.has-children a,
.header__subnav-item.has-children span {
  display: flex;
  gap: clamp(1px, calc(11vw * (100 / var(--siteBasis))), calc(11px * var(--siteMax) / var(--siteBasis)));
}
.header__subnav-item.has-children svg {
  display: flex;
  transform: rotate(-90deg);
}
.header__subnav-item.has-children.active .header__subnav-children {
  background-color: #fff;
  box-shadow: -10px 0 10px -5px rgba(0, 0, 0, 0.3);
  max-height: none;
  overflow: hidden;
  position: absolute;
  top: 0;
  z-index: 20;
  left: 8%;
  height: 100vh;
  width: 100%;
  padding-left: clamp(1px, calc(10vw * (100 / var(--siteBasis))), calc(10px * var(--siteMax) / var(--siteBasis)));
  opacity: 1;
}
@media (min-width: 768px) {
  .header__subnav-item.has-children.active .header__subnav-children {
    box-shadow: none;
    height: auto;
    overflow: initial;
    padding-left: 0;
    position: initial;
  }
}
.header__subnav-item.has-children .header__subnav-children-back svg {
  transform: rotate(90deg);
}
.header__subnav-back {
  padding-top: clamp(1px, calc(10vw * (100 / var(--siteBasis))), calc(10px * var(--siteMax) / var(--siteBasis)));
  height: clamp(1px, calc(60vw * (100 / var(--siteBasis))), calc(60px * var(--siteMax) / var(--siteBasis)));
  gap: clamp(1px, calc(10vw * (100 / var(--siteBasis))), calc(10px * var(--siteMax) / var(--siteBasis)));
  cursor: pointer;
}
.header__subnav-back svg {
  transform: rotate(90deg);
}
.header__subnav-back p {
  --fontSize: 16;
}
.header__subnav-children {
  background-color: #fff;
  width: 100%;
  list-style: none;
  max-height: none;
  padding: 0;
  transition: left 250ms cubic-bezier(0.23, 1, 0.32, 1);
  left: 100%;
}
@media (max-width: 767px) {
  .header__subnav-children {
    overflow: hidden;
    position: absolute;
    top: 0;
    height: 100vh;
  }
}
@media (min-width: 768px) {
  .header__subnav-children {
    max-height: 0;
    opacity: 0;
    transition: max-height 300ms ease, opacity 300ms ease;
    pointer-events: none;
  }
}
.header__subnav-children a,
.header__subnav-children span {
  color: #302c2c;
}
@media (min-width: 768px) {
  .header__subnav-children a,
  .header__subnav-children span {
    color: #738389;
    font-weight: 500;
  }
}
.header__subnav-children-back {
  padding-top: clamp(1px, calc(10vw * (100 / var(--siteBasis))), calc(10px * var(--siteMax) / var(--siteBasis)));
  height: clamp(1px, calc(60vw * (100 / var(--siteBasis))), calc(60px * var(--siteMax) / var(--siteBasis)));
  gap: clamp(1px, calc(10vw * (100 / var(--siteBasis))), calc(10px * var(--siteMax) / var(--siteBasis)));
  cursor: pointer;
  margin-bottom: clamp(1px, calc(35vw * (100 / var(--siteBasis))), calc(35px * var(--siteMax) / var(--siteBasis)));
}
.header__subnav-children-back svg {
  transform: rotate(90deg);
  display: flex;
}
.header__subnav-children-back p {
  --fontSize: 16;
  font-weight: 600;
}
.header__subnav-child-item {
  padding: clamp(1px, calc(10vw * (100 / var(--siteBasis))), calc(10px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
}
@media (min-width: 768px) {
  .header__subnav-child-item {
    padding: clamp(1px, calc(2vw * (100 / var(--siteBasis))), calc(2px * var(--siteMax) / var(--siteBasis))) 0;
  }
}

.aux-nav {
  justify-content: flex-end;
}
.aux-nav a {
  padding-left: clamp(1px, calc(14vw * (100 / var(--siteBasis))), calc(14px * var(--siteMax) / var(--siteBasis)));
  padding-right: 0;
  position: relative;
  font-size: 12px;
}
.aux-nav a:not(:nth-last-child(1)) {
  padding-right: clamp(1px, calc(15vw * (100 / var(--siteBasis))), calc(15px * var(--siteMax) / var(--siteBasis)));
  padding-left: 0;
}
.aux-nav a:not(:nth-last-child(1))::after {
  content: "";
  height: clamp(1px, calc(11vw * (100 / var(--siteBasis))), calc(11px * var(--siteMax) / var(--siteBasis)));
  width: 1px;
  right: 0;
  top: 25%;
  background-color: #fff;
  opacity: 0.7;
  position: absolute;
  display: block;
}
.aux-nav a:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .header .mega-menu {
    display: flex;
    flex-wrap: wrap;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .header .mega-menu {
    left: 0;
  }
}
@media (min-width: 768px) {
  .header .mega-menu .header__subnav-item {
    position: relative;
    max-width: clamp(1px, calc(325vw * (100 / var(--siteBasis))), calc(325px * var(--siteMax) / var(--siteBasis)));
    transition: background-color 500ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  .header .mega-menu .header__subnav-item.active {
    background-color: #fff;
  }
  .header .mega-menu .header__subnav-item a {
    display: flex;
    gap: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis)));
    width: 100%;
    height: 100%;
    align-items: center;
    padding: clamp(1px, calc(14vw * (100 / var(--siteBasis))), calc(14px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(16vw * (100 / var(--siteBasis))), calc(16px * var(--siteMax) / var(--siteBasis)));
    transition: transform 750ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  .header .mega-menu .header__subnav-item a span {
    flex: 1;
  }
  .header .mega-menu .header__subnav-item > span {
    cursor: pointer;
    display: flex;
    gap: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis)));
    width: 100%;
    height: 100%;
    align-items: center;
    padding: clamp(1px, calc(14vw * (100 / var(--siteBasis))), calc(14px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(16vw * (100 / var(--siteBasis))), calc(16px * var(--siteMax) / var(--siteBasis)));
    transition: transform 750ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  .header .mega-menu .header__subnav-item > span span {
    flex: 1;
  }
  .header .mega-menu .header__subnav-item svg {
    display: flex;
    opacity: 0;
    transition: opacity 250ms cubic-bezier(0.23, 1, 0.32, 1);
    transform: rotate(-90deg);
    flex-shrink: 0;
  }
  .header .mega-menu .header__subnav-item:hover {
    background-color: #fff;
    transform: translate(0);
  }
  .header .mega-menu .header__subnav-item:hover a {
    transform: translateX(5px);
  }
  .header .mega-menu .header__subnav-item:hover svg {
    opacity: 1;
  }
  .header .mega-menu .header__subnav-item.has-children svg {
    opacity: 1;
    transform: revert;
  }
  .header .mega-menu .header__subnav-item.has-children:hover a {
    transform: none;
  }
  .header .mega-menu .header__subnav-item.has-children.active .header__subnav-children {
    max-height: 500px;
    margin-bottom: clamp(1px, calc(16vw * (100 / var(--siteBasis))), calc(16px * var(--siteMax) / var(--siteBasis)));
    opacity: 1;
    pointer-events: auto;
  }
  .header .mega-menu .header__subnav-children a {
    padding: clamp(1px, calc(4vw * (100 / var(--siteBasis))), calc(4px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(24vw * (100 / var(--siteBasis))), calc(24px * var(--siteMax) / var(--siteBasis)));
  }
  .header .mega-menu .header__subnav-children a:hover {
    color: #035c81;
  }
  .header .mega-menu a::before {
    content: none;
  }
  .header .mega-menu .header__subnav-list {
    width: 50%;
    padding: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(125vw * (100 / var(--siteBasis))), calc(125px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(62vw * (100 / var(--siteBasis))), calc(62px * var(--siteMax) / var(--siteBasis)));
    display: flex;
    justify-content: start;
    gap: clamp(1px, calc(2vw * (100 / var(--siteBasis))), calc(2px * var(--siteMax) / var(--siteBasis)));
    min-height: clamp(1px, calc(440vw * (100 / var(--siteBasis))), calc(440px * var(--siteMax) / var(--siteBasis)));
  }
  .header .mega-menu-bg {
    position: absolute;
    pointer-events: none;
    top: 100%;
    left: 0;
    display: flex;
    width: 100%;
    height: 0;
    transition: height 250ms ease;
  }
  .header .mega-menu-bg .dark-bg {
    height: 100%;
    width: 50%;
    background: linear-gradient(54.46deg, rgba(112, 55, 130, 0.9) -11.69%, rgba(3, 78, 110, 0.9) 112.54%);
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
  }
  .header .mega-menu-bg .light-bg {
    width: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
  }
  .header__subnav__cta {
    width: 50%;
    height: 100%;
    padding: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(130vw * (100 / var(--siteBasis))), calc(130px * var(--siteMax) / var(--siteBasis)));
    will-change: transform;
  }
  .header__subnav__cta_content {
    max-width: clamp(1px, calc(447vw * (100 / var(--siteBasis))), calc(447px * var(--siteMax) / var(--siteBasis)));
    align-content: center;
  }
  .header__subnav__cta_content p {
    font-family: "Noto Sans", sans-serif;
    font-weight: 500;
    padding: clamp(1px, calc(13vw * (100 / var(--siteBasis))), calc(13px * var(--siteMax) / var(--siteBasis))) 0 clamp(1px, calc(19vw * (100 / var(--siteBasis))), calc(19px * var(--siteMax) / var(--siteBasis)));
  }
  .header__subnav__cta_content a {
    --fontSize: 14;
  }
  .header__subnav__cta_content .btn {
    border-color: #fff;
  }
  .header__subnav__cta_content .btn:hover {
    background-color: transparent;
    color: #fff;
  }
}
.header__search {
  cursor: pointer;
}
.header__search-btn {
  border-radius: 100%;
  background-color: rgba(215, 226, 237, 0.5);
  height: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis)));
  aspect-ratio: 1/1;
}
.header__search-btn svg {
  height: clamp(1px, calc(22vw * (100 / var(--siteBasis))), calc(22px * var(--siteMax) / var(--siteBasis)));
  width: clamp(1px, calc(22vw * (100 / var(--siteBasis))), calc(22px * var(--siteMax) / var(--siteBasis)));
  margin-bottom: clamp(1px, calc(1vw * (100 / var(--siteBasis))), calc(1px * var(--siteMax) / var(--siteBasis)));
}
.header .hamburger {
  top: clamp(1px, calc(30vw * (100 / var(--siteBasis))), calc(30px * var(--siteMax) / var(--siteBasis)));
  right: clamp(1px, calc(32vw * (100 / var(--siteBasis))), calc(32px * var(--siteMax) / var(--siteBasis)));
  transition: all 350ms ease-in-out;
  background-color: rgba(215, 226, 237, 0.5);
  border-radius: 100%;
  height: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis)));
  width: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis)));
  order: 3;
  cursor: pointer;
}
.header .hamburger .line {
  z-index: 1;
  position: relative;
  width: 12px;
  height: 1px;
  background-color: #000;
  display: block;
  margin: 3px auto;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}
.header .hamburger-inner {
  transition: all 350ms ease-in-out;
}
@media (min-width: 768px) {
  .header .hamburger {
    display: none;
    pointer-events: none;
  }
}
.header .nav-close-btn {
  transition: opacity 250ms cubic-bezier(0.23, 1, 0.32, 1);
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: clamp(1px, calc(18vw * (100 / var(--siteBasis))), calc(18px * var(--siteMax) / var(--siteBasis)));
  right: clamp(1px, calc(8vw * (100 / var(--siteBasis))), calc(8px * var(--siteMax) / var(--siteBasis)));
  cursor: pointer;
  padding: 0;
  outline: none;
  border-radius: 100%;
  height: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis)));
  width: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis)));
  background: linear-gradient(122.2deg, #8c4e9f 14.31%, #0c8dc3 100%);
  z-index: 90;
}
@media (min-width: 768px) {
  .header .nav-close-btn {
    background: transparent;
    height: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
    width: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
  }
}
.header .nav-close-btn::before,
.header .nav-close-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(1px, calc(12vw * (100 / var(--siteBasis))), calc(12px * var(--siteMax) / var(--siteBasis)));
  height: clamp(1px, calc(1vw * (100 / var(--siteBasis))), calc(1px * var(--siteMax) / var(--siteBasis)));
  background-color: #fff;
  transform-origin: center;
}
@media (min-width: 768px) {
  .header .nav-close-btn::before,
  .header .nav-close-btn::after {
    background-color: #000;
    width: clamp(1px, calc(18vw * (100 / var(--siteBasis))), calc(18px * var(--siteMax) / var(--siteBasis)));
  }
}
.header .nav-close-btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.header .nav-close-btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.treemap {
  padding-bottom: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
}
.treemap a {
  text-decoration: none;
}
.treemap ol {
  padding-top: clamp(1px, calc(14vw * (100 / var(--siteBasis))), calc(14px * var(--siteMax) / var(--siteBasis)));
  padding-left: clamp(1px, calc(16vw * (100 / var(--siteBasis))), calc(16px * var(--siteMax) / var(--siteBasis)));
}
.treemap ol li {
  --fontSize: 11;
  line-height: 135%;
  padding-left: clamp(1px, calc(18vw * (100 / var(--siteBasis))), calc(18px * var(--siteMax) / var(--siteBasis)));
  padding-bottom: clamp(1px, calc(9vw * (100 / var(--siteBasis))), calc(9px * var(--siteMax) / var(--siteBasis)));
}
@media (min-width: 768px) {
  .treemap ol li {
    --fontSize: 12;
  }
}
.treemap ol li .title {
  font-weight: 600;
  padding-bottom: clamp(1px, calc(4vw * (100 / var(--siteBasis))), calc(4px * var(--siteMax) / var(--siteBasis)));
}

.two-col-header {
  margin-top: clamp(1px, calc(30vw * (100 / var(--siteBasis))), calc(30px * var(--siteMax) / var(--siteBasis)));
  margin-bottom: clamp(1px, calc(72vw * (100 / var(--siteBasis))), calc(72px * var(--siteMax) / var(--siteBasis)));
}
@media (min-width: 768px) {
  .two-col-header {
    margin-top: clamp(1px, calc(72vw * (100 / var(--siteBasis))), calc(72px * var(--siteMax) / var(--siteBasis)));
    margin-bottom: clamp(1px, calc(72vw * (100 / var(--siteBasis))), calc(72px * var(--siteMax) / var(--siteBasis)));
  }
}
.two-col-header__inner {
  gap: clamp(1px, calc(10vw * (100 / var(--siteBasis))), calc(10px * var(--siteMax) / var(--siteBasis)));
}
@media (min-width: 768px) {
  .two-col-header__inner {
    gap: clamp(1px, calc(68vw * (100 / var(--siteBasis))), calc(68px * var(--siteMax) / var(--siteBasis)));
  }
}
.two-col-header h1 {
  font-weight: 600;
}
.two-col-header__col--copy {
  max-width: clamp(1px, calc(725vw * (100 / var(--siteBasis))), calc(725px * var(--siteMax) / var(--siteBasis)));
}
@media (min-width: 768px) {
  .two-col-header__col--copy {
    padding-top: clamp(1px, calc(15vw * (100 / var(--siteBasis))), calc(15px * var(--siteMax) / var(--siteBasis)));
  }
}

.theme-cards {
  gap: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
  display: grid;
  margin-bottom: clamp(1px, calc(60vw * (100 / var(--siteBasis))), calc(60px * var(--siteMax) / var(--siteBasis)));
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 768px) {
  .theme-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: clamp(1px, calc(76vw * (100 / var(--siteBasis))), calc(76px * var(--siteMax) / var(--siteBasis)));
  }
}

.wrapping-featured-card {
  position: relative;
  overflow: hidden;
  border-radius: clamp(1px, calc(5vw * (100 / var(--siteBasis))), calc(5px * var(--siteMax) / var(--siteBasis)));
  background: linear-gradient(34.86deg, rgba(140, 78, 159, 0.07) -1.43%, rgba(12, 141, 195, 0.07) 96.87%);
  transition: color 0.3s ease;
}
.wrapping-featured-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(36.97deg, #8c4e9f 4.93%, #0c8dc3 96.87%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: inherit;
  z-index: 0;
}
.wrapping-featured-card__link {
  position: relative;
  padding: clamp(1px, calc(23vw * (100 / var(--siteBasis))), calc(23px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(22.5vw * (100 / var(--siteBasis))), calc(22.5px * var(--siteMax) / var(--siteBasis)));
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
@media (min-width: 768px) {
  .wrapping-featured-card__link {
    padding: clamp(1px, calc(39vw * (100 / var(--siteBasis))), calc(39px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(57vw * (100 / var(--siteBasis))), calc(57px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(58vw * (100 / var(--siteBasis))), calc(58px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(49vw * (100 / var(--siteBasis))), calc(49px * var(--siteMax) / var(--siteBasis)));
  }
}
.wrapping-featured-card .pill {
  padding: clamp(1px, calc(7vw * (100 / var(--siteBasis))), calc(7px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(19vw * (100 / var(--siteBasis))), calc(19px * var(--siteMax) / var(--siteBasis)));
  border-radius: clamp(1px, calc(3vw * (100 / var(--siteBasis))), calc(3px * var(--siteMax) / var(--siteBasis)));
  margin-bottom: clamp(1px, calc(17vw * (100 / var(--siteBasis))), calc(17px * var(--siteMax) / var(--siteBasis)));
  display: inline-block;
  position: absolute;
  top: clamp(1px, calc(23vw * (100 / var(--siteBasis))), calc(23px * var(--siteMax) / var(--siteBasis)));
  right: clamp(1px, calc(22.5vw * (100 / var(--siteBasis))), calc(22.5px * var(--siteMax) / var(--siteBasis)));
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media (min-width: 768px) {
  .wrapping-featured-card .pill {
    position: relative;
    top: auto;
    right: auto;
  }
}
.wrapping-featured-card .pill.active {
  background-color: #f3edf5;
  color: #5f356c;
}
.wrapping-featured-card .pill.inactive {
  background-color: #e7f4f9;
  color: #08597b;
}
.wrapping-featured-card h3 {
  font-weight: 600;
  margin-bottom: clamp(1px, calc(15vw * (100 / var(--siteBasis))), calc(15px * var(--siteMax) / var(--siteBasis)));
}
@media (min-width: 768px) {
  .wrapping-featured-card h3 {
    margin-bottom: clamp(1px, calc(26vw * (100 / var(--siteBasis))), calc(26px * var(--siteMax) / var(--siteBasis)));
  }
}
.wrapping-featured-card figure {
  position: relative;
  border-radius: 100%;
  overflow: hidden;
  float: none;
  margin-bottom: clamp(1px, calc(24vw * (100 / var(--siteBasis))), calc(24px * var(--siteMax) / var(--siteBasis)));
  height: clamp(1px, calc(90vw * (100 / var(--siteBasis))), calc(90px * var(--siteMax) / var(--siteBasis)));
  width: clamp(1px, calc(90vw * (100 / var(--siteBasis))), calc(90px * var(--siteMax) / var(--siteBasis)));
}
@media (min-width: 768px) {
  .wrapping-featured-card figure {
    float: right;
    margin-left: 25px;
    margin-bottom: 12px;
    border-radius: 100%;
    height: clamp(1px, calc(156vw * (100 / var(--siteBasis))), calc(156px * var(--siteMax) / var(--siteBasis)));
    width: clamp(1px, calc(156vw * (100 / var(--siteBasis))), calc(156px * var(--siteMax) / var(--siteBasis)));
  }
}
.wrapping-featured-card figure::after {
  content: "";
  box-shadow: inset 0 0 0 0 transparent;
  transition: all 350ms ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100%;
}
.wrapping-featured-card img {
  border-radius: 100%;
  width: 100%;
  height: 100%;
}
.wrapping-featured-card:hover::before {
  opacity: 1;
}
.wrapping-featured-card:hover {
  color: #fff;
}
.wrapping-featured-card:hover .pill {
  background: rgba(0, 0, 0, 0.3019607843);
}
.wrapping-featured-card:hover .pill.active {
  color: #f3cbec;
}
.wrapping-featured-card:hover .pill.inactive {
  color: #85C6E1;
}
.wrapping-featured-card:hover figure::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 100%;
  box-shadow: inset 0 0 0 5px #fff;
  pointer-events: none;
  transition: box-shadow 0.3s ease;
}
.wrapping-featured-card:hover figure {
  box-shadow: 0 4px 9px 0 rgba(0, 0, 0, 0.2), 0 17px 17px 0 rgba(0, 0, 0, 0.168627451), 0 37px 22px 0 rgba(0, 0, 0, 0.1019607843), 0 66px 26px 0 rgba(0, 0, 0, 0.031372549), 0 103px 29px 0 rgba(0, 0, 0, 0);
}

.breadcrumbs {
  list-style: none;
  gap: clamp(1px, calc(8vw * (100 / var(--siteBasis))), calc(8px * var(--siteMax) / var(--siteBasis)));
  padding-top: clamp(1px, calc(32vw * (100 / var(--siteBasis))), calc(32px * var(--siteMax) / var(--siteBasis)));
}
.breadcrumbs li.active {
  color: #0c8dc3;
}
.breadcrumbs li a {
  color: #646464;
  text-decoration: none;
}
.breadcrumbs li a:hover {
  text-decoration: underline;
}
.breadcrumbs li svg {
  margin-left: clamp(1px, calc(5vw * (100 / var(--siteBasis))), calc(5px * var(--siteMax) / var(--siteBasis)));
  transform: rotate(-90deg);
  width: 9px;
}
.breadcrumbs li svg path {
  stroke: #cecece;
}

.team-card {
  position: relative;
  overflow: hidden;
  border-radius: clamp(1px, calc(5vw * (100 / var(--siteBasis))), calc(5px * var(--siteMax) / var(--siteBasis)));
  background: linear-gradient(34.86deg, rgba(140, 78, 159, 0.07) -1.43%, rgba(12, 141, 195, 0.07) 96.87%);
  transition: color 0.3s ease;
}
.team-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(36.97deg, #8c4e9f 4.93%, #0c8dc3 96.87%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: inherit;
  z-index: 0;
}
.team-card .pill {
  color: #91217d;
  background-color: #fff;
  padding: clamp(1px, calc(6vw * (100 / var(--siteBasis))), calc(6px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(16vw * (100 / var(--siteBasis))), calc(16px * var(--siteMax) / var(--siteBasis)));
  border-radius: clamp(1px, calc(3vw * (100 / var(--siteBasis))), calc(3px * var(--siteMax) / var(--siteBasis)));
}
.team-card__link {
  position: relative;
  padding: clamp(1px, calc(23vw * (100 / var(--siteBasis))), calc(23px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(22.5vw * (100 / var(--siteBasis))), calc(22.5px * var(--siteMax) / var(--siteBasis)));
  display: block;
  text-decoration: none;
  color: inherit;
}
@media (min-width: 768px) {
  .team-card__link {
    padding: clamp(1px, calc(34vw * (100 / var(--siteBasis))), calc(34px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(38vw * (100 / var(--siteBasis))), calc(38px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(15vw * (100 / var(--siteBasis))), calc(15px * var(--siteMax) / var(--siteBasis)));
  }
}
.team-card--heading {
  margin-bottom: clamp(1px, calc(15vw * (100 / var(--siteBasis))), calc(15px * var(--siteMax) / var(--siteBasis)));
  gap: clamp(1px, calc(18vw * (100 / var(--siteBasis))), calc(18px * var(--siteMax) / var(--siteBasis)));
}
.team-card--copy {
  margin-bottom: clamp(1px, calc(8vw * (100 / var(--siteBasis))), calc(8px * var(--siteMax) / var(--siteBasis)));
}
@media (min-width: 768px) {
  .team-card--copy {
    margin-bottom: clamp(1px, calc(24vw * (100 / var(--siteBasis))), calc(24px * var(--siteMax) / var(--siteBasis)));
  }
}
.team-card h4 {
  font-weight: 600;
  margin-bottom: 0;
}
.team-card:hover::before {
  opacity: 1;
}
.team-card:hover {
  color: #fff;
}
.team-card:hover .more {
  background: rgba(0, 0, 0, 0.2);
}
.team-card:hover .pill {
  background: rgba(0, 0, 0, 0.3019607843);
}
.team-card:hover .pill.active {
  color: #f3cbec;
}

.two-col-header-image {
  margin-top: clamp(1px, calc(30vw * (100 / var(--siteBasis))), calc(30px * var(--siteMax) / var(--siteBasis)));
  margin-bottom: clamp(1px, calc(65vw * (100 / var(--siteBasis))), calc(65px * var(--siteMax) / var(--siteBasis)));
}
@media (min-width: 768px) {
  .two-col-header-image {
    margin-top: clamp(1px, calc(65vw * (100 / var(--siteBasis))), calc(65px * var(--siteMax) / var(--siteBasis)));
    margin-bottom: clamp(1px, calc(65vw * (100 / var(--siteBasis))), calc(65px * var(--siteMax) / var(--siteBasis)));
  }
}
.two-col-header-image__inner {
  gap: clamp(1px, calc(30vw * (100 / var(--siteBasis))), calc(30px * var(--siteMax) / var(--siteBasis)));
  padding: 0 clamp(1px, calc(9vw * (100 / var(--siteBasis))), calc(9px * var(--siteMax) / var(--siteBasis)));
}
@media (min-width: 768px) {
  .two-col-header-image__inner {
    gap: clamp(1px, calc(62vw * (100 / var(--siteBasis))), calc(62px * var(--siteMax) / var(--siteBasis)));
  }
}
.two-col-header-image__inner figure {
  border-radius: 100%;
  height: clamp(1px, calc(120vw * (100 / var(--siteBasis))), calc(120px * var(--siteMax) / var(--siteBasis)));
  width: clamp(1px, calc(120vw * (100 / var(--siteBasis))), calc(120px * var(--siteMax) / var(--siteBasis)));
  overflow: hidden;
  border-radius: 100%;
  box-shadow: 0px 6px 13px 0px rgba(73, 95, 202, 0.0509803922), 0px 24px 24px 0px rgba(73, 95, 202, 0.0392156863), 0px 53px 32px 0px rgba(73, 95, 202, 0.031372549), 0px 95px 38px 0px rgba(73, 95, 202, 0.0117647059), 0px 148px 41px 0px rgba(73, 95, 202, 0);
}
@media (min-width: 768px) {
  .two-col-header-image__inner figure {
    height: clamp(1px, calc(234vw * (100 / var(--siteBasis))), calc(234px * var(--siteMax) / var(--siteBasis)));
    width: clamp(1px, calc(234vw * (100 / var(--siteBasis))), calc(234px * var(--siteMax) / var(--siteBasis)));
  }
}
.two-col-header-image__inner figure img {
  height: 100%;
  width: 100%;
}
.two-col-header-image__inner-text {
  flex: 1;
}
.two-col-header-image h1 {
  font-weight: 600;
  max-width: clamp(1px, calc(800vw * (100 / var(--siteBasis))), calc(800px * var(--siteMax) / var(--siteBasis)));
}
.two-col-header-image .gradient-text {
  background: linear-gradient(84.87deg, #5F1776 5.19%, #00567A 96.1%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.two-col-header-image .pill {
  padding: clamp(1px, calc(7vw * (100 / var(--siteBasis))), calc(7px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(19vw * (100 / var(--siteBasis))), calc(19px * var(--siteMax) / var(--siteBasis)));
  border-radius: clamp(1px, calc(3vw * (100 / var(--siteBasis))), calc(3px * var(--siteMax) / var(--siteBasis)));
  margin-bottom: clamp(1px, calc(17vw * (100 / var(--siteBasis))), calc(17px * var(--siteMax) / var(--siteBasis)));
  display: inline-block;
  position: absolute;
  top: clamp(1px, calc(23vw * (100 / var(--siteBasis))), calc(23px * var(--siteMax) / var(--siteBasis)));
  right: clamp(1px, calc(22.5vw * (100 / var(--siteBasis))), calc(22.5px * var(--siteMax) / var(--siteBasis)));
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media (min-width: 768px) {
  .two-col-header-image .pill {
    position: relative;
    top: auto;
    right: auto;
  }
}
.two-col-header-image .pill.active {
  background-color: #f3edf5;
  color: #5f356c;
}
.two-col-header-image .pill.inactive {
  background-color: #e7f4f9;
  color: #08597b;
}
.two-col-header-image__col--heading {
  margin-bottom: clamp(1px, calc(24vw * (100 / var(--siteBasis))), calc(24px * var(--siteMax) / var(--siteBasis)));
}
.two-col-header-image__col--copy {
  font-weight: 400;
  max-width: clamp(1px, calc(837vw * (100 / var(--siteBasis))), calc(837px * var(--siteMax) / var(--siteBasis)));
}
.two-col-header-image__col--copy p, .two-col-header-image__col--copy li {
  --fontSize: 14;
  line-height: 140%;
}
@media (min-width: 768px) {
  .two-col-header-image__col--copy p, .two-col-header-image__col--copy li {
    --fontSize: 18;
  }
}
.two-col-header-image__col--copy p {
  margin-bottom: clamp(1px, calc(30vw * (100 / var(--siteBasis))), calc(30px * var(--siteMax) / var(--siteBasis)));
}
.two-col-header-image__col--copy li {
  margin-bottom: clamp(1px, calc(10vw * (100 / var(--siteBasis))), calc(10px * var(--siteMax) / var(--siteBasis)));
}
.two-col-header-image__col--copy ul, .two-col-header-image__col--copy ol {
  padding-left: clamp(1px, calc(15vw * (100 / var(--siteBasis))), calc(15px * var(--siteMax) / var(--siteBasis)));
  margin-bottom: clamp(1px, calc(30vw * (100 / var(--siteBasis))), calc(30px * var(--siteMax) / var(--siteBasis)));
}

.checkbox-dropdown-list {
  max-height: clamp(1px, calc(200vw * (100 / var(--siteBasis))), calc(200px * var(--siteMax) / var(--siteBasis)));
  overflow-y: auto;
  overflow-x: hidden;
}

.filterBarWithPills {
  margin-bottom: clamp(1px, calc(30vw * (100 / var(--siteBasis))), calc(30px * var(--siteMax) / var(--siteBasis)));
  align-items: flex-start !important;
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 767px) {
  .filterBarWithPills {
    flex-direction: column;
    gap: clamp(1px, calc(10vw * (100 / var(--siteBasis))), calc(10px * var(--siteMax) / var(--siteBasis)));
    display: none;
  }
}
.filterBarWithPills:has(.filter-pill) {
  opacity: 1;
  pointer-events: initial;
  padding-top: clamp(1px, calc(32vw * (100 / var(--siteBasis))), calc(32px * var(--siteMax) / var(--siteBasis)));
}
@media (max-width: 767px) {
  .filterBarWithPills:has(.filter-pill) {
    display: flex;
  }
}
.filterBarWithPills__copy {
  margin-bottom: 0 !important;
  margin-right: clamp(1px, calc(30vw * (100 / var(--siteBasis))), calc(30px * var(--siteMax) / var(--siteBasis)));
  padding-top: clamp(1px, calc(5vw * (100 / var(--siteBasis))), calc(5px * var(--siteMax) / var(--siteBasis)));
}
.filterBarWithPills__copy span {
  white-space: nowrap;
}
.filterBarWithPills .active-filters {
  gap: clamp(1px, calc(15vw * (100 / var(--siteBasis))), calc(15px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(10vw * (100 / var(--siteBasis))), calc(10px * var(--siteMax) / var(--siteBasis)));
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .filterBarWithPills .active-filters {
    gap: clamp(1px, calc(10vw * (100 / var(--siteBasis))), calc(10px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(5vw * (100 / var(--siteBasis))), calc(5px * var(--siteMax) / var(--siteBasis)));
  }
}
.filterBarWithPills .filter-pill {
  position: relative;
  padding-right: clamp(1px, calc(30vw * (100 / var(--siteBasis))), calc(30px * var(--siteMax) / var(--siteBasis)));
}
.filterBarWithPills .filter-pill::before {
  content: "";
  position: absolute;
  right: clamp(1px, calc(12vw * (100 / var(--siteBasis))), calc(12px * var(--siteMax) / var(--siteBasis)));
  top: 50%;
  transform: translateY(-50%);
  width: clamp(1px, calc(9vw * (100 / var(--siteBasis))), calc(9px * var(--siteMax) / var(--siteBasis)));
  height: clamp(1px, calc(9vw * (100 / var(--siteBasis))), calc(9px * var(--siteMax) / var(--siteBasis)));
  background-image: url('data:image/svg+xml,<svg width="10" height="11" viewBox="0 0 10 11" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9.38642 0.791016L0.604004 9.57343" stroke="white" stroke-linecap="round" stroke-linejoin="round"/><path d="M9.38642 9.57343L0.604004 0.791016" stroke="white" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.filterBarWithPills__clearBtn {
  order: 999;
  padding: clamp(1px, calc(5vw * (100 / var(--siteBasis))), calc(5px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(12vw * (100 / var(--siteBasis))), calc(12px * var(--siteMax) / var(--siteBasis)));
}
.filterBarWithPills__clearBtn:hover {
  color: #035c81;
}

.single-person .bio {
  padding-top: clamp(1px, calc(27vw * (100 / var(--siteBasis))), calc(27px * var(--siteMax) / var(--siteBasis)));
  padding-bottom: clamp(1px, calc(31vw * (100 / var(--siteBasis))), calc(31px * var(--siteMax) / var(--siteBasis)));
}
@media (min-width: 768px) {
  .single-person .bio {
    padding-bottom: clamp(1px, calc(120vw * (100 / var(--siteBasis))), calc(120px * var(--siteMax) / var(--siteBasis)));
    padding-top: clamp(1px, calc(50vw * (100 / var(--siteBasis))), calc(50px * var(--siteMax) / var(--siteBasis)));
  }
}
.single-person .bio.container {
  max-width: clamp(1px, calc(1226vw * (100 / var(--siteBasis))), calc(1226px * var(--siteMax) / var(--siteBasis)));
}
.single-person .bio__header {
  padding-inline: 0;
  padding-top: clamp(1px, calc(51vw * (100 / var(--siteBasis))), calc(51px * var(--siteMax) / var(--siteBasis)));
  padding-bottom: clamp(1px, calc(60vw * (100 / var(--siteBasis))), calc(60px * var(--siteMax) / var(--siteBasis)));
}
@media (min-width: 768px) {
  .single-person .bio__header {
    padding-top: clamp(1px, calc(63vw * (100 / var(--siteBasis))), calc(63px * var(--siteMax) / var(--siteBasis)));
    padding-inline: clamp(1px, calc(24vw * (100 / var(--siteBasis))), calc(24px * var(--siteMax) / var(--siteBasis)));
    padding-bottom: clamp(1px, calc(80vw * (100 / var(--siteBasis))), calc(80px * var(--siteMax) / var(--siteBasis)));
  }
}
.single-person .bio__breadcrumbs {
  list-style: none;
  gap: clamp(1px, calc(8vw * (100 / var(--siteBasis))), calc(8px * var(--siteMax) / var(--siteBasis)));
}
.single-person .bio__breadcrumbs li.active {
  color: #0c8dc3;
}
.single-person .bio__breadcrumbs li a {
  color: #646464;
  text-decoration: none;
}
.single-person .bio__breadcrumbs li a:hover {
  text-decoration: underline;
}
.single-person .bio__breadcrumbs li svg {
  margin-left: clamp(1px, calc(5vw * (100 / var(--siteBasis))), calc(5px * var(--siteMax) / var(--siteBasis)));
  transform: rotate(-90deg);
  width: 9px;
}
.single-person .bio__breadcrumbs li svg path {
  stroke: #cecece;
}
.single-person .bio__info {
  width: 100%;
}
@media (min-width: 768px) {
  .single-person .bio__info {
    width: 58.333%;
  }
}
.single-person .bio__infoCard {
  gap: clamp(1px, calc(30vw * (100 / var(--siteBasis))), calc(30px * var(--siteMax) / var(--siteBasis)));
  padding-bottom: clamp(1px, calc(60vw * (100 / var(--siteBasis))), calc(60px * var(--siteMax) / var(--siteBasis)));
}
@media (min-width: 768px) {
  .single-person .bio__infoCard {
    padding-bottom: clamp(1px, calc(38vw * (100 / var(--siteBasis))), calc(38px * var(--siteMax) / var(--siteBasis)));
  }
}
.single-person .bio__infoCard_headshot {
  align-self: center;
  aspect-ratio: 1/1;
  height: clamp(1px, calc(263vw * (100 / var(--siteBasis))), calc(263px * var(--siteMax) / var(--siteBasis)));
  width: clamp(1px, calc(263vw * (100 / var(--siteBasis))), calc(263px * var(--siteMax) / var(--siteBasis)));
  border-radius: 100%;
  border: clamp(1px, calc(10vw * (100 / var(--siteBasis))), calc(10px * var(--siteMax) / var(--siteBasis))) solid #fff;
  overflow: hidden;
  box-shadow: 0 6px 13px 0 rgba(73, 95, 202, 0.05), 0 24px 24px 0 rgba(73, 95, 202, 0.04), 0 53px 32px 0 rgba(73, 95, 202, 0.03), 0 95px 38px 0 rgba(73, 95, 202, 0.01), 0 148px 41px 0 rgba(73, 95, 202, 0);
}
.single-person .bio__infoCard_details {
  flex: 1;
}
.single-person .bio__infoCard_details h1 {
  background: linear-gradient(84.87deg, #5f1776 5.19%, #00567a 96.1%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 600;
  margin-bottom: clamp(1px, calc(10vw * (100 / var(--siteBasis))), calc(10px * var(--siteMax) / var(--siteBasis)));
}
@media (min-width: 768px) {
  .single-person .bio__infoCard_details h1 {
    margin-bottom: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
  }
}
.single-person .bio__infoCard_details p {
  margin-bottom: 0;
  font-weight: 400;
}
.single-person .bio__infoStory {
  max-width: clamp(1px, calc(659vw * (100 / var(--siteBasis))), calc(659px * var(--siteMax) / var(--siteBasis)));
}
.single-person .bio__infoStory p {
  --fontSize: 14;
  line-height: 140%;
  line-height: 140%;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  .single-person .bio__infoStory p {
    --fontSize: 16;
  }
}
.single-person .bio__highlight {
  margin-top: clamp(1px, calc(61vw * (100 / var(--siteBasis))), calc(61px * var(--siteMax) / var(--siteBasis)));
  margin-right: clamp(1px, calc(10vw * (100 / var(--siteBasis))), calc(10px * var(--siteMax) / var(--siteBasis)));
  background: linear-gradient(34.86deg, #8c4e9f -1.43%, #0c8dc3 96.87%);
  padding: clamp(1px, calc(26vw * (100 / var(--siteBasis))), calc(26px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
  width: 100%;
  border-radius: clamp(1px, calc(7vw * (100 / var(--siteBasis))), calc(7px * var(--siteMax) / var(--siteBasis)));
}
@media (min-width: 768px) {
  .single-person .bio__highlight {
    width: clamp(1px, calc(346vw * (100 / var(--siteBasis))), calc(346px * var(--siteMax) / var(--siteBasis)));
    padding: clamp(1px, calc(32vw * (100 / var(--siteBasis))), calc(32px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(26vw * (100 / var(--siteBasis))), calc(26px * var(--siteMax) / var(--siteBasis)));
  }
}
.single-person .bio__highlight p {
  margin-bottom: clamp(1px, calc(18vw * (100 / var(--siteBasis))), calc(18px * var(--siteMax) / var(--siteBasis)));
}
.single-person .bio__highlight_btns {
  gap: clamp(1px, calc(5vw * (100 / var(--siteBasis))), calc(5px * var(--siteMax) / var(--siteBasis)));
  padding-bottom: clamp(1px, calc(24vw * (100 / var(--siteBasis))), calc(24px * var(--siteMax) / var(--siteBasis)));
}
.single-person .bio__highlight_btns .btn {
  background-color: rgba(4, 5, 41, 0.3);
  border: none;
  --fontSize: 12;
  line-height: 135%;
  font-weight: 600;
  padding: clamp(1px, calc(10vw * (100 / var(--siteBasis))), calc(10px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(24vw * (100 / var(--siteBasis))), calc(24px * var(--siteMax) / var(--siteBasis)));
  text-align: left;
}
@media (min-width: 768px) {
  .single-person .bio__highlight_btns .btn {
    --fontSize: 14;
  }
}
@media (min-width: 768px) {
  .single-person .bio__highlight_btns .btn {
    --fontSize: 13;
  }
}
.single-person .bio__highlight_btns .btn:hover {
  background-color: #fff;
}
.single-person .bio__papers {
  padding-inline: 0;
  padding-bottom: clamp(1px, calc(62vw * (100 / var(--siteBasis))), calc(62px * var(--siteMax) / var(--siteBasis)));
  gap: clamp(1px, calc(12vw * (100 / var(--siteBasis))), calc(12px * var(--siteMax) / var(--siteBasis)));
}
@media (min-width: 768px) {
  .single-person .bio__papers {
    padding-inline: clamp(1px, calc(22vw * (100 / var(--siteBasis))), calc(22px * var(--siteMax) / var(--siteBasis)));
    padding-bottom: clamp(1px, calc(85vw * (100 / var(--siteBasis))), calc(85px * var(--siteMax) / var(--siteBasis)));
  }
}
.single-person .bio__papersContainer {
  padding-top: clamp(1px, calc(4vw * (100 / var(--siteBasis))), calc(4px * var(--siteMax) / var(--siteBasis)));
  padding-bottom: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis)));
  gap: clamp(1px, calc(18vw * (100 / var(--siteBasis))), calc(18px * var(--siteMax) / var(--siteBasis)));
}
@media (min-width: 768px) {
  .single-person .bio__papersContainer {
    padding-top: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
  }
}
.single-person .bio__papersEmpty {
  margin-top: clamp(1px, calc(54vw * (100 / var(--siteBasis))), calc(54px * var(--siteMax) / var(--siteBasis)));
  background-color: rgba(227, 240, 245, 0.5019607843);
  padding: clamp(1px, calc(34vw * (100 / var(--siteBasis))), calc(34px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(31vw * (100 / var(--siteBasis))), calc(31px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(34vw * (100 / var(--siteBasis))), calc(34px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(34vw * (100 / var(--siteBasis))), calc(34px * var(--siteMax) / var(--siteBasis)));
  gap: clamp(1px, calc(37vw * (100 / var(--siteBasis))), calc(37px * var(--siteMax) / var(--siteBasis)));
}
.single-person .bio__papersEmpty__badge {
  height: clamp(1px, calc(74vw * (100 / var(--siteBasis))), calc(74px * var(--siteMax) / var(--siteBasis)));
  aspect-ratio: 1/1;
  border-radius: 100%;
  background-color: #fff;
  box-shadow: 0 6px 13px 0 rgba(73, 95, 202, 0.0509803922), 0 24px 24px 0 rgba(73, 95, 202, 0.0392156863), 0 53px 32px 0 rgba(73, 95, 202, 0.031372549), 0 95px 38px 0 rgba(73, 95, 202, 0.0117647059), 0 148px 41px 0 rgba(73, 95, 202, 0);
}
.single-person .bio__papersEmpty p {
  font-weight: 400;
}
.single-person .bio__papers h3 {
  font-weight: 600;
}
.single-person .bio__papers a {
  text-decoration: none;
  color: #000;
}
.single-person .bio__papers a:hover {
  box-shadow: 0 20px 40px 0 rgba(0, 0, 0, 0.0509803922);
  transition: box-shadow 350ms cubic-bezier(0.23, 1, 0.32, 1);
}
.single-person .bio__papersCard {
  border: 1px solid #e5e5e5;
  border-radius: clamp(1px, calc(5vw * (100 / var(--siteBasis))), calc(5px * var(--siteMax) / var(--siteBasis)));
  padding: clamp(1px, calc(23vw * (100 / var(--siteBasis))), calc(23px * var(--siteMax) / var(--siteBasis)));
  gap: clamp(1px, calc(12vw * (100 / var(--siteBasis))), calc(12px * var(--siteMax) / var(--siteBasis)));
  margin-top: 36px;
  background-color: #fff;
  width: 50%;
}
@media (min-width: 768px) {
  .single-person .bio__papersCard {
    gap: clamp(1px, calc(28vw * (100 / var(--siteBasis))), calc(28px * var(--siteMax) / var(--siteBasis)));
  }
}
.single-person .bio__papersCopy {
  flex: 1;
}
.single-person .bio__papersCopy .title {
  font-weight: 600;
  font-family: "Noto Sans Display", sans-serif;
}
.single-person .bio__papersCopy .excerpt p {
  --fontSize: 11;
  line-height: 135%;
  line-height: 140%;
  font-weight: 400;
}
@media (min-width: 768px) {
  .single-person .bio__papersCopy .excerpt p {
    --fontSize: 12;
  }
}
.single-person .bio__team {
  padding-inline: 0;
}
@media (min-width: 768px) {
  .single-person .bio__team {
    padding-inline: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
  }
}
.single-person .bio__teamContainer {
  padding-top: clamp(1px, calc(4vw * (100 / var(--siteBasis))), calc(4px * var(--siteMax) / var(--siteBasis)));
}
@media (min-width: 768px) {
  .single-person .bio__teamContainer {
    padding-top: clamp(1px, calc(11vw * (100 / var(--siteBasis))), calc(11px * var(--siteMax) / var(--siteBasis)));
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
  }
}
.single-person .bio__teamContainer a {
  text-decoration: none;
  color: #000;
}
.single-person .bio__team h3 {
  font-weight: 600;
}
.single-person .bio__teamCard {
  position: relative;
  padding: clamp(1px, calc(18vw * (100 / var(--siteBasis))), calc(18px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(39vw * (100 / var(--siteBasis))), calc(39px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(15vw * (100 / var(--siteBasis))), calc(15px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(19vw * (100 / var(--siteBasis))), calc(19px * var(--siteMax) / var(--siteBasis)));
  border-radius: 5px;
  overflow: hidden;
  width: 100%;
}
@media (max-width: 767px) {
  .single-person .bio__teamCard {
    margin-bottom: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
  }
}
.single-person .bio__teamCard::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(35deg, rgba(140, 78, 159, 0.07) -1.43%, rgba(12, 141, 195, 0.07) 96.87%), #fff;
  border-radius: inherit;
  z-index: -1;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.single-person .bio__teamCard::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(36.97deg, #8c4e9f 4.93%, #0c8dc3 96.87%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: inherit;
  z-index: -1;
}
.single-person .bio__teamCard_article {
  gap: clamp(1px, calc(16vw * (100 / var(--siteBasis))), calc(16px * var(--siteMax) / var(--siteBasis)));
}
.single-person .bio__teamCard_details p {
  margin-bottom: clamp(1px, calc(6vw * (100 / var(--siteBasis))), calc(6px * var(--siteMax) / var(--siteBasis)));
}
.single-person .bio__teamCard_details .title {
  --fontSize: 16;
  font-weight: 600;
  gap: clamp(1px, calc(10vw * (100 / var(--siteBasis))), calc(10px * var(--siteMax) / var(--siteBasis)));
  max-width: clamp(1px, calc(220vw * (100 / var(--siteBasis))), calc(220px * var(--siteMax) / var(--siteBasis)));
  text-wrap: auto;
}
@media (min-width: 768px) {
  .single-person .bio__teamCard_details .title {
    max-width: none;
  }
}
.single-person .bio__teamCard figure {
  border-radius: 100%;
  border: clamp(1px, calc(4vw * (100 / var(--siteBasis))), calc(4px * var(--siteMax) / var(--siteBasis))) solid #fff;
  box-shadow: 0 20px 13px 0 rgba(0, 0, 0, 0);
  transition: box-shadow 250ms cubic-bezier(0.23, 1, 0.32, 1);
}
.single-person .bio__teamCard figure img {
  height: clamp(1px, calc(70vw * (100 / var(--siteBasis))), calc(70px * var(--siteMax) / var(--siteBasis)));
  aspect-ratio: 1;
  border-radius: 100%;
  transition: box-shadow 250ms cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
}
.single-person .bio__teamCard:hover::before {
  opacity: 0;
}
.single-person .bio__teamCard:hover::after {
  opacity: 1;
}
.single-person .bio__teamCard:hover p {
  color: #0c8dc3;
}
@media (min-width: 768px) {
  .single-person .bio__teamCard:hover p {
    color: #fff;
  }
}
.single-person .bio__teamCard:hover figure {
  border: clamp(1px, calc(4vw * (100 / var(--siteBasis))), calc(4px * var(--siteMax) / var(--siteBasis))) solid #fff;
  box-shadow: 0 47px 13px 0 rgba(0, 0, 0, 0), 0 16px 12px 0 rgba(0, 0, 0, 0.33);
}
.single-person .TwoColFlex {
  background-color: rgba(227, 240, 245, 0.5019607843);
  padding-block: clamp(1px, calc(91vw * (100 / var(--siteBasis))), calc(91px * var(--siteMax) / var(--siteBasis)));
}

.single-team .team__hero {
  padding-top: clamp(1px, calc(37vw * (100 / var(--siteBasis))), calc(37px * var(--siteMax) / var(--siteBasis)));
}
@media (min-width: 768px) {
  .single-team .team__hero {
    padding-top: clamp(1px, calc(50vw * (100 / var(--siteBasis))), calc(50px * var(--siteMax) / var(--siteBasis)));
  }
}
.single-team .team__hero.container {
  max-width: clamp(1px, calc(1226vw * (100 / var(--siteBasis))), calc(1226px * var(--siteMax) / var(--siteBasis)));
}
.single-team .team__hero:has(+ .team__story) {
  padding-bottom: clamp(1px, calc(120vw * (100 / var(--siteBasis))), calc(120px * var(--siteMax) / var(--siteBasis)));
}
.single-team .team__story {
  padding-bottom: clamp(1px, calc(10vw * (100 / var(--siteBasis))), calc(10px * var(--siteMax) / var(--siteBasis)));
}
@media (min-width: 768px) {
  .single-team .team__story {
    padding-bottom: clamp(1px, calc(50vw * (100 / var(--siteBasis))), calc(50px * var(--siteMax) / var(--siteBasis)));
  }
}
.single-team .team__news {
  padding-bottom: 0;
}
@media (min-width: 768px) {
  .single-team .team__news {
    padding-bottom: clamp(1px, calc(100vw * (100 / var(--siteBasis))), calc(100px * var(--siteMax) / var(--siteBasis)));
  }
}
.single-team .team__news_title {
  margin-bottom: clamp(1px, calc(30vw * (100 / var(--siteBasis))), calc(30px * var(--siteMax) / var(--siteBasis)));
}
@media (min-width: 768px) {
  .single-team .team__news_title {
    margin-bottom: clamp(1px, calc(18vw * (100 / var(--siteBasis))), calc(18px * var(--siteMax) / var(--siteBasis)));
  }
}
.single-team .team__news_title h3 {
  flex-grow: 1;
  margin: 0 !important;
}
.single-team .team__news_title a {
  color: #040529;
  text-decoration: none;
}
.single-team .team__news_title a svg {
  transform: rotate(-90deg);
  margin-left: clamp(1px, calc(8vw * (100 / var(--siteBasis))), calc(8px * var(--siteMax) / var(--siteBasis)));
}
.single-team .team__news .news_box {
  border: 1px solid #e5e5e5;
}
.single-team .team__header {
  padding-top: clamp(1px, calc(48vw * (100 / var(--siteBasis))), calc(48px * var(--siteMax) / var(--siteBasis)));
}
@media (min-width: 768px) {
  .single-team .team__header {
    padding-top: clamp(1px, calc(58vw * (100 / var(--siteBasis))), calc(58px * var(--siteMax) / var(--siteBasis)));
    padding-inline: clamp(1px, calc(12vw * (100 / var(--siteBasis))), calc(12px * var(--siteMax) / var(--siteBasis)));
    padding-bottom: clamp(1px, calc(33vw * (100 / var(--siteBasis))), calc(33px * var(--siteMax) / var(--siteBasis)));
  }
}
.single-team .team__breadcrumbs {
  list-style: none;
  gap: clamp(1px, calc(8vw * (100 / var(--siteBasis))), calc(8px * var(--siteMax) / var(--siteBasis)));
}
.single-team .team__breadcrumbs li.active {
  color: #0c8dc3;
}
.single-team .team__breadcrumbs li a {
  color: #646464;
  text-decoration: none;
}
.single-team .team__breadcrumbs li a:hover {
  text-decoration: underline;
}
.single-team .team__breadcrumbs li svg {
  margin-left: clamp(1px, calc(5vw * (100 / var(--siteBasis))), calc(5px * var(--siteMax) / var(--siteBasis)));
  transform: rotate(-90deg);
  width: 9px;
}
.single-team .team__breadcrumbs li svg path {
  stroke: #cecece;
}
.single-team .team__info {
  width: 100%;
}
@media (min-width: 768px) {
  .single-team .team__info {
    width: 62.5%;
  }
}
.single-team .team__infoCard {
  padding-bottom: clamp(1px, calc(10vw * (100 / var(--siteBasis))), calc(10px * var(--siteMax) / var(--siteBasis)));
}
.single-team .team__infoCard:not(:has(h2)) {
  padding-bottom: 0;
}
@media (min-width: 768px) {
  .single-team .team__infoCard {
    padding-bottom: clamp(1px, calc(34vw * (100 / var(--siteBasis))), calc(34px * var(--siteMax) / var(--siteBasis)));
  }
}
.single-team .team__infoCard .alumni-badge {
  display: inline-flex;
  background-color: #faeaf7;
  color: #91217d;
  padding: clamp(1px, calc(2vw * (100 / var(--siteBasis))), calc(2px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(16vw * (100 / var(--siteBasis))), calc(16px * var(--siteMax) / var(--siteBasis)));
  margin-bottom: clamp(1px, calc(18vw * (100 / var(--siteBasis))), calc(18px * var(--siteMax) / var(--siteBasis)));
}
@media (min-width: 768px) {
  .single-team .team__infoCard .alumni-badge {
    margin-bottom: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
    padding: clamp(1px, calc(4vw * (100 / var(--siteBasis))), calc(4px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(16vw * (100 / var(--siteBasis))), calc(16px * var(--siteMax) / var(--siteBasis)));
  }
}
.single-team .team__infoCard_details {
  flex: 1;
  margin-bottom: clamp(1px, calc(34vw * (100 / var(--siteBasis))), calc(34px * var(--siteMax) / var(--siteBasis)));
}
.single-team .team__infoCard_details_title {
  gap: 0;
  align-items: flex-start;
}
.single-team .team__infoCard_details h1 {
  background: linear-gradient(84.87deg, #5f1776 5.19%, #00567a 96.1%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 600;
  margin-bottom: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
  line-height: 1.22;
}
@media (min-width: 768px) {
  .single-team .team__infoCard_details h1 {
    margin-bottom: clamp(1px, calc(31vw * (100 / var(--siteBasis))), calc(31px * var(--siteMax) / var(--siteBasis)));
  }
}
.single-team .team__infoCard_details h2 {
  font-weight: 600;
  margin-bottom: 8px;
}
.single-team .team__infoCard_details h3 {
  margin-bottom: clamp(1px, calc(14vw * (100 / var(--siteBasis))), calc(14px * var(--siteMax) / var(--siteBasis)));
}
.single-team .team__infoCard_details p {
  margin-bottom: 0;
  font-weight: 400;
}
.single-team .team__infoStory {
  padding-bottom: clamp(1px, calc(38vw * (100 / var(--siteBasis))), calc(38px * var(--siteMax) / var(--siteBasis)));
}
@media (min-width: 768px) {
  .single-team .team__infoStory {
    padding-bottom: clamp(1px, calc(50vw * (100 / var(--siteBasis))), calc(50px * var(--siteMax) / var(--siteBasis)));
  }
}
.single-team .team__infoStory p {
  --fontSize: 14;
  line-height: 140%;
  font-weight: 400;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  .single-team .team__infoStory p {
    --fontSize: 16;
  }
}
.single-team .team__infoStory ul,
.single-team .team__infoStory ol {
  padding-left: clamp(1px, calc(30vw * (100 / var(--siteBasis))), calc(30px * var(--siteMax) / var(--siteBasis)));
}
.single-team .team__infoStory li:not(:last-child) {
  margin-bottom: clamp(1px, calc(8vw * (100 / var(--siteBasis))), calc(8px * var(--siteMax) / var(--siteBasis)));
}
.single-team .team__infoStory ul {
  list-style: none;
}
.single-team .team__infoStory ul li {
  position: relative;
}
.single-team .team__infoStory ul li::before {
  content: "";
  position: absolute;
  left: clamp(calc(-30 * (100 / var(--siteBasis)) * 1vw), calc(-30px * var(--siteMax) / var(--siteBasis)), -1px);
  top: clamp(1px, calc(2vw * (100 / var(--siteBasis))), calc(2px * var(--siteMax) / var(--siteBasis)));
  width: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
  height: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
  background-image: url('data:image/svg+xml,<svg width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M10.9453 17.5C15.0874 17.5 18.4453 14.1421 18.4453 10C18.4453 5.85786 15.0874 2.5 10.9453 2.5C6.80318 2.5 3.44531 5.85786 3.44531 10C3.44531 14.1421 6.80318 17.5 10.9453 17.5Z" stroke="%238C4E9F" stroke-width="1.20593" stroke-linecap="round" stroke-linejoin="round"/><path d="M14.2911 7.81836L10.6598 12.6609C10.4965 12.8781 10.2469 13.0139 9.97576 13.0331C9.70459 13.0523 9.43842 12.953 9.24609 12.7609L7.37109 10.8859" stroke="%238C4E9F" stroke-width="1.20593" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
  background-origin: center;
}
.single-team .team__infoTags:has(+ .btn) {
  margin-bottom: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis)));
}
.single-team .team__infoTags .btn {
  cursor: default;
  pointer-events: none;
}
.single-team .team__infoTags .btn::before {
  content: "#";
  color: rgba(255, 255, 255, 0.25);
  padding-right: clamp(1px, calc(4vw * (100 / var(--siteBasis))), calc(4px * var(--siteMax) / var(--siteBasis)));
}
.single-team .team__infoTags_container {
  padding-top: clamp(1px, calc(12vw * (100 / var(--siteBasis))), calc(12px * var(--siteMax) / var(--siteBasis)));
  gap: clamp(1px, calc(10vw * (100 / var(--siteBasis))), calc(10px * var(--siteMax) / var(--siteBasis)));
  max-width: clamp(1px, calc(550vw * (100 / var(--siteBasis))), calc(550px * var(--siteMax) / var(--siteBasis)));
}
@media (min-width: 768px) {
  .single-team .team__infoTags_container {
    padding-top: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
  }
}
.single-team .team__highlight {
  margin-top: clamp(1px, calc(32vw * (100 / var(--siteBasis))), calc(32px * var(--siteMax) / var(--siteBasis)));
  margin-right: clamp(1px, calc(10vw * (100 / var(--siteBasis))), calc(10px * var(--siteMax) / var(--siteBasis)));
  background: linear-gradient(34.86deg, #8c4e9f -1.43%, #0c8dc3 96.87%);
  padding-top: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
  width: 100%;
  border-radius: clamp(1px, calc(7vw * (100 / var(--siteBasis))), calc(7px * var(--siteMax) / var(--siteBasis)));
  position: relative;
}
@media (min-width: 768px) {
  .single-team .team__highlight {
    margin-top: clamp(1px, calc(24vw * (100 / var(--siteBasis))), calc(24px * var(--siteMax) / var(--siteBasis)));
    width: clamp(1px, calc(346vw * (100 / var(--siteBasis))), calc(346px * var(--siteMax) / var(--siteBasis)));
  }
}
.single-team .team__highlightTeam {
  max-height: clamp(1px, calc(400vw * (100 / var(--siteBasis))), calc(400px * var(--siteMax) / var(--siteBasis)));
  position: relative;
  padding-bottom: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
}
.single-team .team__highlightTeamHeading {
  padding-inline: clamp(1px, calc(30vw * (100 / var(--siteBasis))), calc(30px * var(--siteMax) / var(--siteBasis)));
  padding-bottom: clamp(1px, calc(17vw * (100 / var(--siteBasis))), calc(17px * var(--siteMax) / var(--siteBasis)));
}
.single-team .team__highlightTeamCard {
  width: 100%;
  color: #fff;
  text-decoration: none;
  gap: clamp(1px, calc(14vw * (100 / var(--siteBasis))), calc(14px * var(--siteMax) / var(--siteBasis)));
  transition: background-color 250ms cubic-bezier(0.23, 1, 0.32, 1);
  padding-block: clamp(1px, calc(12vw * (100 / var(--siteBasis))), calc(12px * var(--siteMax) / var(--siteBasis)));
  padding-inline: clamp(1px, calc(26vw * (100 / var(--siteBasis))), calc(26px * var(--siteMax) / var(--siteBasis)));
}
@media (min-width: 768px) {
  .single-team .team__highlightTeamCard {
    width: 100%;
    margin-bottom: 0;
  }
}
.single-team .team__highlightTeamCard_article {
  gap: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
}
.single-team .team__highlightTeamCard_details p {
  margin-bottom: clamp(1px, calc(6vw * (100 / var(--siteBasis))), calc(6px * var(--siteMax) / var(--siteBasis)));
}
.single-team .team__highlightTeamCard_details .title {
  font-weight: 600;
  gap: clamp(1px, calc(10vw * (100 / var(--siteBasis))), calc(10px * var(--siteMax) / var(--siteBasis)));
  max-width: clamp(1px, calc(220vw * (100 / var(--siteBasis))), calc(220px * var(--siteMax) / var(--siteBasis)));
  text-wrap: auto;
}
.single-team .team__highlightTeamCard figure {
  border-radius: 100%;
  overflow: hidden;
  position: relative;
  border: clamp(1px, calc(2vw * (100 / var(--siteBasis))), calc(2px * var(--siteMax) / var(--siteBasis))) solid #fff;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 7px 7px 0 rgba(0, 0, 0, 0.168627451), 0 16px 9px 0 rgba(0, 0, 0, 0.1019607843), 0 28px 11px 0 rgba(0, 0, 0, 0.031372549), 0 43px 12px 0 rgba(0, 0, 0, 0);
}
.single-team .team__highlightTeamCard figure img {
  height: clamp(1px, calc(70vw * (100 / var(--siteBasis))), calc(70px * var(--siteMax) / var(--siteBasis)));
  aspect-ratio: 1;
  border-radius: 100%;
  transition: box-shadow 250ms cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  display: block;
  transform: scale(1.05);
}
@media (min-width: 768px) {
  .single-team .team__highlightTeamCard:hover {
    background-color: rgba(0, 0, 0, 0.25);
  }
}
.single-team .team__highlight.is-resourceTeams {
  background: #fff;
  border: 1px solid #f6f6f6;
  box-shadow: 0 6px 13px 0 rgba(73, 95, 202, 0.0509803922), 0 24px 24px 0 rgba(73, 95, 202, 0.0392156863), 0 53px 32px 0 rgba(73, 95, 202, 0.031372549), 0 95px 38px 0 rgba(73, 95, 202, 0.0117647059), 0 148px 41px 0 rgba(73, 95, 202, 0);
  padding-top: 0;
}
.single-team .team__highlight.is-resourceTeams p {
  color: #00202c;
}
.single-team .team__highlight.is-resourceTeams a:hover {
  background-color: #e7f4f9;
}
.single-team .team__highlight.is-resourceTeams a {
  position: relative;
}
.single-team .team__highlight.is-resourceTeams a figure {
  box-shadow: none;
}
.single-team .team__highlight.is-resourceTeams a:not(:last-child)::before {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 50%;
  width: 85%;
  transform: translateX(-50%);
  height: clamp(1px, calc(1vw * (100 / var(--siteBasis))), calc(1px * var(--siteMax) / var(--siteBasis)));
  background-color: #f6f6f6;
}
.single-team .team__highlightTeamLogo {
  height: clamp(1px, calc(115vw * (100 / var(--siteBasis))), calc(115px * var(--siteMax) / var(--siteBasis)));
  display: flex;
  padding: clamp(1px, calc(25vw * (100 / var(--siteBasis))), calc(25px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis)));
  border-bottom: 1px solid #e6e6e6;
}
.single-team .team__highlightTeamLogo figure {
  width: 100%;
}
.single-team .team__links {
  gap: clamp(1px, calc(3vw * (100 / var(--siteBasis))), calc(3px * var(--siteMax) / var(--siteBasis)));
  flex-wrap: wrap;
  padding-top: clamp(1px, calc(35vw * (100 / var(--siteBasis))), calc(35px * var(--siteMax) / var(--siteBasis)));
  padding-bottom: clamp(1px, calc(56vw * (100 / var(--siteBasis))), calc(56px * var(--siteMax) / var(--siteBasis)));
}
@media (min-width: 768px) {
  .single-team .team__links {
    gap: clamp(1px, calc(6vw * (100 / var(--siteBasis))), calc(6px * var(--siteMax) / var(--siteBasis)));
    padding-top: clamp(1px, calc(33vw * (100 / var(--siteBasis))), calc(33px * var(--siteMax) / var(--siteBasis)));
    padding-bottom: clamp(1px, calc(65vw * (100 / var(--siteBasis))), calc(65px * var(--siteMax) / var(--siteBasis)));
    flex-wrap: nowrap;
  }
}
.single-team .team__linksCard {
  flex-direction: row;
  position: relative;
  cursor: pointer;
  padding-block: clamp(1px, calc(8vw * (100 / var(--siteBasis))), calc(8px * var(--siteMax) / var(--siteBasis)));
  padding-left: clamp(1px, calc(8vw * (100 / var(--siteBasis))), calc(8px * var(--siteMax) / var(--siteBasis)));
  width: calc(50% - clamp(1px, calc(3vw * (100 / var(--siteBasis))), calc(3px * var(--siteMax) / var(--siteBasis))));
  gap: clamp(1px, calc(13vw * (100 / var(--siteBasis))), calc(13px * var(--siteMax) / var(--siteBasis)));
  border-radius: clamp(1px, calc(3vw * (100 / var(--siteBasis))), calc(3px * var(--siteMax) / var(--siteBasis)));
  background: linear-gradient(34.86deg, rgba(140, 78, 159, 0.07) -1.43%, rgba(12, 141, 195, 0.07) 96.87%);
}
@media (min-width: 768px) {
  .single-team .team__linksCard {
    padding-block: clamp(1px, calc(23vw * (100 / var(--siteBasis))), calc(23px * var(--siteMax) / var(--siteBasis)));
    width: 100%;
    flex-direction: column;
    padding-left: 0;
  }
}
.single-team .team__linksCard_icon {
  border: 3px solid #fff;
  border-radius: 100%;
  background: #fff;
  height: clamp(1px, calc(38vw * (100 / var(--siteBasis))), calc(38px * var(--siteMax) / var(--siteBasis)));
  width: clamp(1px, calc(38vw * (100 / var(--siteBasis))), calc(38px * var(--siteMax) / var(--siteBasis)));
  box-shadow: 0 6px 13px 0 rgba(73, 95, 202, 0.0509803922), 0 24px 24px 0 rgba(73, 95, 202, 0.0392156863), 0 53px 32px 0 rgba(73, 95, 202, 0.031372549), 0 95px 38px 0 rgba(73, 95, 202, 0.0117647059), 0 148px 41px 0 rgba(73, 95, 202, 0);
}
@media (min-width: 768px) {
  .single-team .team__linksCard_icon {
    height: clamp(1px, calc(62vw * (100 / var(--siteBasis))), calc(62px * var(--siteMax) / var(--siteBasis)));
    width: clamp(1px, calc(62vw * (100 / var(--siteBasis))), calc(62px * var(--siteMax) / var(--siteBasis)));
  }
}
.single-team .team__linksCard_icon svg {
  width: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
}
@media (min-width: 768px) {
  .single-team .team__linksCard_icon svg {
    width: clamp(1px, calc(26vw * (100 / var(--siteBasis))), calc(26px * var(--siteMax) / var(--siteBasis)));
  }
}
.single-team .team__linksCard_link {
  position: absolute;
  height: 100%;
  width: 100%;
}
@media (min-width: 768px) {
  .single-team .team__linksCard:hover {
    background: linear-gradient(34.86deg, rgba(140, 78, 159, 0.2) -1.43%, rgba(12, 141, 195, 0.2) 96.87%);
  }
  .single-team .team__linksCard:hover .team__linksCard_icon {
    background: linear-gradient(34.86deg, #8c4e9f -1.43%, #0c8dc3 96.87%);
  }
  .single-team .team__linksCard:hover .team__linksCard_icon svg path {
    fill: #fff;
  }
  .single-team .team__linksCard:hover .arrow {
    opacity: 1;
  }
}
.single-team .team__linksCard .arrow {
  position: absolute;
  top: clamp(1px, calc(16vw * (100 / var(--siteBasis))), calc(16px * var(--siteMax) / var(--siteBasis)));
  right: clamp(1px, calc(16vw * (100 / var(--siteBasis))), calc(16px * var(--siteMax) / var(--siteBasis)));
  transform: rotate(-45deg);
  opacity: 0;
  transition: opacity 250ms cubic-bezier(0.23, 1, 0.32, 1);
}
.single-team .team__linksCard .arrow svg path {
  fill: #0c8dc3;
}
.single-team .team__content {
  gap: clamp(1px, calc(209vw * (100 / var(--siteBasis))), calc(209px * var(--siteMax) / var(--siteBasis)));
}
@media (min-width: 768px) {
  .single-team .team__content {
    padding-top: clamp(1px, calc(65vw * (100 / var(--siteBasis))), calc(65px * var(--siteMax) / var(--siteBasis)));
  }
}
.single-team .team__contentSide {
  position: relative;
}
.single-team .team__contentSide_chapters {
  position: -webkit-sticky;
  position: sticky;
  top: clamp(1px, calc(200vw * (100 / var(--siteBasis))), calc(200px * var(--siteMax) / var(--siteBasis)));
  margin-bottom: clamp(1px, calc(200vw * (100 / var(--siteBasis))), calc(200px * var(--siteMax) / var(--siteBasis)));
  padding-left: clamp(1px, calc(32vw * (100 / var(--siteBasis))), calc(32px * var(--siteMax) / var(--siteBasis)));
  gap: clamp(1px, calc(10vw * (100 / var(--siteBasis))), calc(10px * var(--siteMax) / var(--siteBasis)));
}
.single-team .team__contentSide_chapters a {
  text-decoration: none;
  color: #c6c6c6;
}
.single-team .team__contentSide_chapters a.active {
  color: #000;
}
.single-team .team__contentSide_chapters_progressBar {
  position: absolute;
  left: clamp(1px, calc(3vw * (100 / var(--siteBasis))), calc(3px * var(--siteMax) / var(--siteBasis)));
  background-color: #ededed;
  height: 100%;
  width: clamp(1px, calc(6vw * (100 / var(--siteBasis))), calc(6px * var(--siteMax) / var(--siteBasis)));
}
.single-team .team__contentSide_chapters_progressBar_progress {
  background-color: #0c8dc3;
  height: clamp(1px, calc(30vw * (100 / var(--siteBasis))), calc(30px * var(--siteMax) / var(--siteBasis)));
  width: clamp(1px, calc(6vw * (100 / var(--siteBasis))), calc(6px * var(--siteMax) / var(--siteBasis)));
  transition: transform 250ms cubic-bezier(0.23, 1, 0.32, 1);
}
.single-team .team__contentStory {
  max-width: clamp(1px, calc(864vw * (100 / var(--siteBasis))), calc(864px * var(--siteMax) / var(--siteBasis)));
  width: 100%;
}
.single-team .team__contentStory_section {
  padding-bottom: clamp(1px, calc(62vw * (100 / var(--siteBasis))), calc(62px * var(--siteMax) / var(--siteBasis)));
}
@media (min-width: 768px) {
  .single-team .team__contentStory_section {
    padding-bottom: clamp(1px, calc(100vw * (100 / var(--siteBasis))), calc(100px * var(--siteMax) / var(--siteBasis)));
  }
}
.single-team .team__contentStory_section::before {
  content: "";
  display: block;
  height: 120px;
  margin-top: -120px;
}
.single-team .team__contentStory_section .papersContainer {
  grid-template-columns: 1fr;
}
.single-team .team__contentStory_section .intro {
  padding-bottom: clamp(1px, calc(34vw * (100 / var(--siteBasis))), calc(34px * var(--siteMax) / var(--siteBasis)));
}
@media (min-width: 768px) {
  .single-team .team__contentStory_section .intro {
    padding-bottom: clamp(1px, calc(39vw * (100 / var(--siteBasis))), calc(39px * var(--siteMax) / var(--siteBasis)));
  }
}
.single-team .team__contentStory_section .intro p {
  font-weight: 400;
}
.single-team .team__contentStory_section-title {
  margin-bottom: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
}
.single-team .team__contentStory_section-title h3 {
  margin: 0;
}
.single-team .team__contentStory_section .wp-caption {
  width: 100% !important;
}
.single-team .team__contentStory_section .accolade_image {
  padding-top: 0;
  gap: clamp(1px, calc(10vw * (100 / var(--siteBasis))), calc(10px * var(--siteMax) / var(--siteBasis)));
  padding-bottom: clamp(1px, calc(8vw * (100 / var(--siteBasis))), calc(8px * var(--siteMax) / var(--siteBasis)));
}
@media (min-width: 768px) {
  .single-team .team__contentStory_section .accolade_image {
    padding-top: clamp(1px, calc(11vw * (100 / var(--siteBasis))), calc(11px * var(--siteMax) / var(--siteBasis)));
    gap: clamp(1px, calc(25vw * (100 / var(--siteBasis))), calc(25px * var(--siteMax) / var(--siteBasis)));
    padding-bottom: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis)));
  }
}
.single-team .team__contentStory_section .accolade_image img {
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: clamp(1px, calc(5vw * (100 / var(--siteBasis))), calc(5px * var(--siteMax) / var(--siteBasis)));
}
@media (min-width: 768px) {
  .single-team .team__contentStory_section .accolade_image img {
    aspect-ratio: 5/3;
  }
}
.single-team .team__contentStory_section .accolade_grid {
  padding-top: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis)));
  padding-bottom: clamp(1px, calc(26vw * (100 / var(--siteBasis))), calc(26px * var(--siteMax) / var(--siteBasis)));
  gap: clamp(1px, calc(30vw * (100 / var(--siteBasis))), calc(30px * var(--siteMax) / var(--siteBasis)));
}
@media (min-width: 768px) {
  .single-team .team__contentStory_section .accolade_grid {
    gap: clamp(1px, calc(99vw * (100 / var(--siteBasis))), calc(99px * var(--siteMax) / var(--siteBasis)));
  }
}
.single-team .team__contentStory_section .accolade_gridItem {
  flex: 1;
  max-width: 100%;
}
@media (min-width: 768px) {
  .single-team .team__contentStory_section .accolade_gridItem {
    max-width: clamp(1px, calc(220vw * (100 / var(--siteBasis))), calc(220px * var(--siteMax) / var(--siteBasis)));
  }
}
.single-team .team__contentStory_section .accolade_grid .excerpt p {
  --fontSize: 12;
  line-height: 135%;
  margin-bottom: clamp(1px, calc(7vw * (100 / var(--siteBasis))), calc(7px * var(--siteMax) / var(--siteBasis)));
}
@media (min-width: 768px) {
  .single-team .team__contentStory_section .accolade_grid .excerpt p {
    --fontSize: 14;
  }
}
.single-team .team__contentStory_section .accolade_grid .excerpt p a {
  text-decoration: none;
  color: #0c8dc3;
}
.single-team .team__contentStory_section .accolade_grid .excerpt p a:hover {
  text-decoration: underline;
}
.single-team .team__contentStory_section .contributions {
  gap: clamp(1px, calc(72vw * (100 / var(--siteBasis))), calc(72px * var(--siteMax) / var(--siteBasis)));
}
.single-team .team__contentStory_section .contributionsContainer {
  gap: clamp(1px, calc(80vw * (100 / var(--siteBasis))), calc(80px * var(--siteMax) / var(--siteBasis)));
}
.single-team .TwoColFlex {
  background-color: rgba(227, 240, 245, 0.5019607843);
  padding-block: clamp(1px, calc(91vw * (100 / var(--siteBasis))), calc(91px * var(--siteMax) / var(--siteBasis)));
}
.single-team .team__resourceOutro {
  background-color: rgba(227, 240, 245, 0.5019607843);
  padding: clamp(1px, calc(100vw * (100 / var(--siteBasis))), calc(100px * var(--siteMax) / var(--siteBasis))) 0;
}
@media (max-width: 767px) {
  .single-team .team__resourceOutro {
    padding: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis))) 0 clamp(1px, calc(50vw * (100 / var(--siteBasis))), calc(50px * var(--siteMax) / var(--siteBasis)));
  }
}
@media (max-width: 767px) {
  .single-team .team__resourceOutro .container {
    justify-content: flex-start;
  }
}
.single-team .team__resourceOutro a {
  text-decoration: none;
}
@media (min-width: 768px) {
  .single-team .team__resourceOutro a {
    flex-direction: row-reverse;
  }
}
@media (max-width: 767px) {
  .single-team .team__resourceOutro a {
    width: 100%;
  }
}
.single-team .team__resourceOutro a:hover p span {
  right: clamp(calc(-4 * (100 / var(--siteBasis)) * 1vw), calc(-4px * var(--siteMax) / var(--siteBasis)), -1px);
}
.single-team .team__resourceOutro figure {
  width: clamp(1px, calc(264vw * (100 / var(--siteBasis))), calc(264px * var(--siteMax) / var(--siteBasis)));
  aspect-ratio: 264/64;
}
@media (max-width: 767px) {
  .single-team .team__resourceOutro figure {
    max-width: clamp(1px, calc(180vw * (100 / var(--siteBasis))), calc(180px * var(--siteMax) / var(--siteBasis)));
    max-height: clamp(1px, calc(44vw * (100 / var(--siteBasis))), calc(44px * var(--siteMax) / var(--siteBasis)));
  }
}
@media (min-width: 768px) {
  .single-team .team__resourceOutro figure img {
    object-position: right;
  }
}
@media (max-width: 767px) {
  .single-team .team__resourceOutro figure img {
    object-position: center;
  }
}
.single-team .team__resourceOutro small {
  color: #000;
  display: block;
}
.single-team .team__resourceOutro p {
  color: #0c8dc3;
  position: relative;
  padding-right: clamp(1px, calc(28vw * (100 / var(--siteBasis))), calc(28px * var(--siteMax) / var(--siteBasis)));
  display: inline-block;
}
.single-team .team__resourceOutro p span {
  display: inline-block;
  transition: 0.35s;
  position: absolute;
  right: 0;
}
@media (min-width: 768px) {
  .single-team .team__resourceOutro .col-logo {
    padding: clamp(1px, calc(12vw * (100 / var(--siteBasis))), calc(12px * var(--siteMax) / var(--siteBasis))) 0;
    padding-right: clamp(1px, calc(45vw * (100 / var(--siteBasis))), calc(45px * var(--siteMax) / var(--siteBasis)));
    border-right: 1px solid #d0cccc;
  }
}
@media (max-width: 767px) {
  .single-team .team__resourceOutro .col-logo {
    margin-top: clamp(1px, calc(15vw * (100 / var(--siteBasis))), calc(15px * var(--siteMax) / var(--siteBasis)));
    justify-content: center;
  }
  .single-team .team__resourceOutro .col-logo span {
    display: inline-block;
    margin-left: clamp(1px, calc(10vw * (100 / var(--siteBasis))), calc(10px * var(--siteMax) / var(--siteBasis)));
    color: #0c8dc3;
  }
}
@media (min-width: 768px) {
  .single-team .team__resourceOutro .col-copy {
    padding-left: clamp(1px, calc(36vw * (100 / var(--siteBasis))), calc(36px * var(--siteMax) / var(--siteBasis)));
  }
}

.themes .cta-footer {
  margin-bottom: clamp(1px, calc(60vw * (100 / var(--siteBasis))), calc(60px * var(--siteMax) / var(--siteBasis)));
}
@media (min-width: 768px) {
  .themes .cta-footer {
    margin-bottom: clamp(1px, calc(70vw * (100 / var(--siteBasis))), calc(70px * var(--siteMax) / var(--siteBasis)));
  }
}
.themes .cta-footer a {
  text-decoration: none;
  color: #0c8dc3;
  font-weight: 600;
}
.themes .cta-footer a:hover {
  text-decoration: underline;
}

.themes-archive__grid {
  gap: clamp(1px, calc(36vw * (100 / var(--siteBasis))), calc(36px * var(--siteMax) / var(--siteBasis)));
  margin-bottom: clamp(1px, calc(86vw * (100 / var(--siteBasis))), calc(86px * var(--siteMax) / var(--siteBasis)));
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  grid-auto-rows: auto;
}
@media (min-width: 768px) {
  .themes-archive__grid {
    grid-template-columns: 1fr clamp(1px, calc(273vw * (100 / var(--siteBasis))), calc(273px * var(--siteMax) / var(--siteBasis)));
  }
}
@media (max-width: 767px) {
  .themes-archive__grid {
    margin-bottom: clamp(1px, calc(65vw * (100 / var(--siteBasis))), calc(65px * var(--siteMax) / var(--siteBasis)));
  }
}
.themes-archive__grid--filter_browse {
  padding-top: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
}
@media (min-width: 768px) {
  .themes-archive__grid--filter_browse {
    padding-top: clamp(1px, calc(34vw * (100 / var(--siteBasis))), calc(34px * var(--siteMax) / var(--siteBasis)));
  }
}
.themes-archive__grid--filter_browse a:hover {
  text-decoration: underline !important;
}
.themes-archive__grid--filter_browse p {
  margin-bottom: clamp(1px, calc(18vw * (100 / var(--siteBasis))), calc(18px * var(--siteMax) / var(--siteBasis)));
}
.themes-archive__grid--filter_browse a {
  margin-bottom: clamp(1px, calc(10vw * (100 / var(--siteBasis))), calc(10px * var(--siteMax) / var(--siteBasis)));
}
.themes-archive__grid--cards {
  flex: 1;
  width: 100%;
  gap: clamp(1px, calc(13vw * (100 / var(--siteBasis))), calc(13px * var(--siteMax) / var(--siteBasis)));
  order: 2;
}
@media (min-width: 768px) {
  .themes-archive__grid--cards {
    order: 1;
  }
}
.themes-archive__grid .card {
  position: relative;
  overflow: hidden;
  border-radius: clamp(1px, calc(5vw * (100 / var(--siteBasis))), calc(5px * var(--siteMax) / var(--siteBasis)));
  cursor: pointer;
  width: 100%;
  background: linear-gradient(34.86deg, rgba(140, 78, 159, 0.07) -1.43%, rgba(12, 141, 195, 0.07) 96.87%);
  transition: color 0.3s ease;
  margin-bottom: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
  border: 2px solid transparent;
}
@media (max-width: 767px) {
  .themes-archive__grid .card {
    margin-bottom: 12px;
  }
}
.themes-archive__grid .card[data-status=inactive] .pill {
  background-color: #e7f4f9;
  color: #08597b;
}
.themes-archive__grid .card[data-status=inactive]:hover .pill {
  background-color: rgba(0, 0, 0, 0.302);
  color: #85c6e1;
}
.themes-archive__grid .card__details {
  max-width: clamp(1px, calc(563vw * (100 / var(--siteBasis))), calc(563px * var(--siteMax) / var(--siteBasis)));
}
.themes-archive__grid .card__details p,
.themes-archive__grid .card__details li {
  --fontSize: 12;
  line-height: 135%;
}
@media (min-width: 768px) {
  .themes-archive__grid .card__details p,
  .themes-archive__grid .card__details li {
    --fontSize: 14;
  }
}
.themes-archive__grid .card__details p {
  margin-bottom: clamp(1px, calc(30vw * (100 / var(--siteBasis))), calc(30px * var(--siteMax) / var(--siteBasis)));
}
.themes-archive__grid .card__details li {
  margin-bottom: clamp(1px, calc(10vw * (100 / var(--siteBasis))), calc(10px * var(--siteMax) / var(--siteBasis)));
}
.themes-archive__grid .card__details ul,
.themes-archive__grid .card__details ol {
  padding-left: clamp(1px, calc(15vw * (100 / var(--siteBasis))), calc(15px * var(--siteMax) / var(--siteBasis)));
  margin-bottom: clamp(1px, calc(30vw * (100 / var(--siteBasis))), calc(30px * var(--siteMax) / var(--siteBasis)));
}
.themes-archive__grid .card__details_image {
  width: clamp(1px, calc(180vw * (100 / var(--siteBasis))), calc(180px * var(--siteMax) / var(--siteBasis)));
  aspect-ratio: 1/1;
  border-radius: 100%;
  overflow: hidden;
}
@media (min-width: 768px) {
  .themes-archive__grid .card__details_image {
    position: absolute;
    top: 0;
    right: 0;
  }
}
@media (max-width: 767px) {
  .themes-archive__grid .card__details_image {
    width: clamp(1px, calc(90vw * (100 / var(--siteBasis))), calc(90px * var(--siteMax) / var(--siteBasis)));
    margin-bottom: clamp(1px, calc(25vw * (100 / var(--siteBasis))), calc(25px * var(--siteMax) / var(--siteBasis)));
  }
}
.themes-archive__grid .card__details_heading {
  gap: clamp(1px, calc(23vw * (100 / var(--siteBasis))), calc(23px * var(--siteMax) / var(--siteBasis)));
}
.themes-archive__grid .card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(36.97deg, #8c4e9f 4.93%, #0c8dc3 96.87%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: inherit;
  z-index: 0;
}
.themes-archive__grid .card:hover {
  color: #fff;
  border-color: #fff;
  box-shadow: 0px 6px 13px 0px rgba(73, 95, 202, 0.0509803922), 0px 24px 24px 0px rgba(73, 95, 202, 0.0392156863), 0px 53px 32px 0px rgba(73, 95, 202, 0.031372549), 0px 95px 38px 0px rgba(73, 95, 202, 0.0117647059), 0px 148px 41px 0px rgba(73, 95, 202, 0);
}
.themes-archive__grid .card:hover::before {
  opacity: 1;
}
.themes-archive__grid .card:hover .more {
  background: rgba(0, 0, 0, 0.2);
}
.themes-archive__grid .card:hover .pill {
  background: #4d437d;
  color: #f3cbec;
}
.themes-archive__grid .card:hover .card__details_image {
  outline: 4px solid white;
  outline-offset: 0;
  box-shadow: 0px 4px 9px 0px rgba(0, 0, 0, 0.2), 0px 17px 17px 0px rgba(0, 0, 0, 0.168627451), 0px 37px 22px 0px rgba(0, 0, 0, 0.1019607843), 0px 66px 26px 0px rgba(0, 0, 0, 0.031372549), 0px 103px 29px 0px rgba(0, 0, 0, 0);
}
.themes-archive__grid .card__container {
  padding: clamp(1px, calc(30vw * (100 / var(--siteBasis))), calc(30px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(25vw * (100 / var(--siteBasis))), calc(25px * var(--siteMax) / var(--siteBasis)));
  width: 100%;
  z-index: 1;
  align-content: start;
}
@media (min-width: 768px) {
  .themes-archive__grid .card__container {
    padding: clamp(1px, calc(29vw * (100 / var(--siteBasis))), calc(29px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(33vw * (100 / var(--siteBasis))), calc(33px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(29vw * (100 / var(--siteBasis))), calc(29px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(42vw * (100 / var(--siteBasis))), calc(42px * var(--siteMax) / var(--siteBasis)));
    align-content: center;
  }
}
.themes-archive__grid .card__link {
  text-decoration: none;
  color: inherit;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  z-index: 2;
}
.themes-archive__grid .card .pill {
  background-color: #f3edf5;
  padding: clamp(1px, calc(7vw * (100 / var(--siteBasis))), calc(7px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(19vw * (100 / var(--siteBasis))), calc(19px * var(--siteMax) / var(--siteBasis)));
  border-radius: clamp(1px, calc(3vw * (100 / var(--siteBasis))), calc(3px * var(--siteMax) / var(--siteBasis)));
  margin-bottom: clamp(1px, calc(17vw * (100 / var(--siteBasis))), calc(17px * var(--siteMax) / var(--siteBasis)));
  display: inline-block;
  color: #5f356c;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media (max-width: 767px) {
  .themes-archive__grid .card .pill {
    position: absolute;
    top: 0;
    right: 0;
  }
}
.themes-archive .grid--filter {
  cursor: pointer;
  order: 1;
  width: 100%;
  background-color: #fff;
  border: 2px solid #D6DEE1;
  padding: clamp(1px, calc(15vw * (100 / var(--siteBasis))), calc(15px * var(--siteMax) / var(--siteBasis)));
  border-radius: clamp(1px, calc(7vw * (100 / var(--siteBasis))), calc(7px * var(--siteMax) / var(--siteBasis)));
  z-index: 500;
  max-height: clamp(1px, calc(52vw * (100 / var(--siteBasis))), calc(52px * var(--siteMax) / var(--siteBasis)));
  transition: max-height 0.3s ease;
  /* Display CSS arrow to the right of the dropdown text */
}
@media (min-width: 768px) {
  .themes-archive .grid--filter {
    order: 2;
    position: -webkit-sticky;
    position: sticky;
    top: clamp(1px, calc(150vw * (100 / var(--siteBasis))), calc(150px * var(--siteMax) / var(--siteBasis)));
    padding: clamp(1px, calc(30vw * (100 / var(--siteBasis))), calc(30px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(45vw * (100 / var(--siteBasis))), calc(45px * var(--siteMax) / var(--siteBasis)));
    max-height: none;
  }
}
.themes-archive .grid--filter.is-expanded {
  max-height: 100%;
}
.themes-archive .grid--filter_title {
  margin-bottom: clamp(1px, calc(18vw * (100 / var(--siteBasis))), calc(18px * var(--siteMax) / var(--siteBasis)));
}
@media (max-width: 767px) {
  .themes-archive .grid--filter_title {
    margin-bottom: 0;
  }
}
.themes-archive .grid--filter_title p {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .themes-archive .grid--filter_checkboxes {
    margin-top: clamp(1px, calc(25vw * (100 / var(--siteBasis))), calc(25px * var(--siteMax) / var(--siteBasis)));
  }
}
.themes-archive .grid--filter .checkbox-dropdown {
  border: 1px solid #D6DEE1;
  padding: 10px;
  position: relative;
  margin: 0 auto;
  border-radius: clamp(1px, calc(3vw * (100 / var(--siteBasis))), calc(3px * var(--siteMax) / var(--siteBasis)));
  -webkit-user-select: none;
          user-select: none;
  margin-bottom: clamp(1px, calc(7vw * (100 / var(--siteBasis))), calc(7px * var(--siteMax) / var(--siteBasis)));
}
.themes-archive .grid--filter .checkbox-dropdown:hover {
  border-color: #0c8dc3;
  cursor: pointer;
}
.themes-archive .grid--filter .checkbox-dropdown.is-active {
  z-index: 501;
  background-color: #fff;
}
.themes-archive .grid--filter .checkbox-dropdown::after {
  content: url("/wp-content/themes/crn/img/ui/dropdown-arrow.svg");
  height: clamp(1px, calc(10vw * (100 / var(--siteBasis))), calc(10px * var(--siteMax) / var(--siteBasis)));
  position: absolute;
  width: clamp(1px, calc(10vw * (100 / var(--siteBasis))), calc(10px * var(--siteMax) / var(--siteBasis)));
  right: clamp(1px, calc(10vw * (100 / var(--siteBasis))), calc(10px * var(--siteMax) / var(--siteBasis)));
}
.themes-archive .grid--filter .checkbox-dropdown-list {
  background-color: #fff;
  border-radius: clamp(1px, calc(5vw * (100 / var(--siteBasis))), calc(5px * var(--siteMax) / var(--siteBasis)));
  z-index: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  /* align the dropdown right below the dropdown text */
  border: 1px solid rgba(0, 0, 0, 0.1019607843);
  left: -1px;
  /* align the dropdown to the left */
  right: -1px;
  /* align the dropdown to the right */
  opacity: 0;
  /* hide the dropdown */
  top: clamp(1px, calc(46vw * (100 / var(--siteBasis))), calc(46px * var(--siteMax) / var(--siteBasis)));
  transition: opacity 0.4s ease-in-out;
  pointer-events: none;
  /* avoid mouse click events inside the dropdown */
}
.themes-archive .grid--filter .checkbox-dropdown-list input {
  pointer-events: none;
}
.themes-archive .grid--filter .is-active .checkbox-dropdown-list {
  opacity: 1;
  pointer-events: auto;
  box-shadow: 0 7px 14px 0 rgba(0, 0, 0, 0.1019607843), 0 26px 26px 0 rgba(0, 0, 0, 0.0901960784), 0 59px 35px 0 rgba(0, 0, 0, 0.0509803922), 0 104px 42px 0 rgba(0, 0, 0, 0.0117647059), 0 163px 46px 0 rgba(0, 0, 0, 0);
}
.themes-archive .grid--filter .checkbox-dropdown-list li label {
  padding: 10px;
  gap: clamp(1px, calc(12vw * (100 / var(--siteBasis))), calc(12px * var(--siteMax) / var(--siteBasis)));
  transition: all 0.2s ease-out;
  cursor: pointer;
  accent-color: #0c8dc3;
  font-weight: 400;
}
.themes-archive .grid--filter .checkbox-dropdown-list li label:hover {
  background-color: #e7f4f9;
}
.themes-archive .grid--filter a {
  color: #0c8dc3;
  text-decoration: none;
  display: block;
}

.teams-archive .two-col-header {
  margin-bottom: clamp(1px, calc(21vw * (100 / var(--siteBasis))), calc(21px * var(--siteMax) / var(--siteBasis)));
}
.teams-archive .two-col-header h1 {
  max-width: clamp(1px, calc(250vw * (100 / var(--siteBasis))), calc(250px * var(--siteMax) / var(--siteBasis)));
}
@media (min-width: 768px) {
  .teams-archive .two-col-header h1 {
    max-width: none;
  }
}
.teams-archive__grid {
  gap: clamp(1px, calc(36vw * (100 / var(--siteBasis))), calc(36px * var(--siteMax) / var(--siteBasis)));
  margin-bottom: clamp(1px, calc(155vw * (100 / var(--siteBasis))), calc(155px * var(--siteMax) / var(--siteBasis)));
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  grid-auto-rows: auto;
}
@media (min-width: 768px) {
  .teams-archive__grid {
    grid-template-columns: 1fr clamp(1px, calc(273vw * (100 / var(--siteBasis))), calc(273px * var(--siteMax) / var(--siteBasis)));
  }
}
.teams-archive__grid--filter_browse {
  padding-top: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
}
.teams-archive__grid--filter_browse a:hover {
  text-decoration: underline !important;
}
.teams-archive__grid--filter_browse p {
  margin-bottom: clamp(1px, calc(18vw * (100 / var(--siteBasis))), calc(18px * var(--siteMax) / var(--siteBasis)));
}
.teams-archive__grid--filter_browse a {
  margin-bottom: clamp(1px, calc(10vw * (100 / var(--siteBasis))), calc(10px * var(--siteMax) / var(--siteBasis)));
}
.teams-archive__grid--cards {
  flex: 1;
  width: 100%;
  gap: clamp(1px, calc(13vw * (100 / var(--siteBasis))), calc(13px * var(--siteMax) / var(--siteBasis)));
  order: 2;
}
@media (min-width: 768px) {
  .teams-archive__grid--cards {
    order: 1;
  }
}
.teams-archive__grid .card {
  position: relative;
  overflow: hidden;
  border-radius: clamp(1px, calc(5vw * (100 / var(--siteBasis))), calc(5px * var(--siteMax) / var(--siteBasis)));
  cursor: pointer;
  width: 100%;
  background: linear-gradient(34.86deg, rgba(140, 78, 159, 0.07) -1.43%, rgba(12, 141, 195, 0.07) 96.87%);
  transition: color 0.3s ease;
  margin-bottom: clamp(1px, calc(13vw * (100 / var(--siteBasis))), calc(13px * var(--siteMax) / var(--siteBasis)));
}
.teams-archive__grid .card__details {
  max-width: clamp(1px, calc(424vw * (100 / var(--siteBasis))), calc(424px * var(--siteMax) / var(--siteBasis)));
}
.teams-archive__grid .card__details p {
  --fontSize: 11;
  line-height: 135%;
  margin-bottom: clamp(1px, calc(30vw * (100 / var(--siteBasis))), calc(30px * var(--siteMax) / var(--siteBasis)));
}
@media (min-width: 768px) {
  .teams-archive__grid .card__details p {
    --fontSize: 12;
  }
}
@media (min-width: 768px) {
  .teams-archive__grid .card__details p {
    --fontSize: 12;
    line-height: 135%;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .teams-archive__grid .card__details p {
    --fontSize: 14;
  }
}
.teams-archive__grid .card__details_heading {
  gap: clamp(1px, calc(23vw * (100 / var(--siteBasis))), calc(23px * var(--siteMax) / var(--siteBasis)));
}
.teams-archive__grid .card__details_heading h3 {
  font-family: "Noto Serif", serif;
  font-weight: 600;
  --fontSize: 18;
  line-height: 125%;
}
@media (min-width: 768px) {
  .teams-archive__grid .card__details_heading h3 {
    --fontSize: 20;
  }
}
@media (min-width: 768px) {
  .teams-archive__grid .card__details_heading h3 {
    font-family: "Noto Serif", serif;
    font-weight: 600;
    --fontSize: 22;
    line-height: 120%;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .teams-archive__grid .card__details_heading h3 {
    --fontSize: 30;
  }
}
.teams-archive__grid .card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(36.97deg, #8c4e9f 4.93%, #0c8dc3 96.87%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: inherit;
  z-index: 0;
}
.teams-archive__grid .card:hover::before {
  opacity: 1;
}
.teams-archive__grid .card:hover {
  color: #fff;
}
.teams-archive__grid .card:hover .more {
  background: rgba(0, 0, 0, 0.2);
}
.teams-archive__grid .card:hover .pill {
  background: #4d437d;
  color: #f3cbec;
}
.teams-archive__grid .card__container {
  padding: clamp(1px, calc(29vw * (100 / var(--siteBasis))), calc(29px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(33vw * (100 / var(--siteBasis))), calc(33px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(29vw * (100 / var(--siteBasis))), calc(29px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(42vw * (100 / var(--siteBasis))), calc(42px * var(--siteMax) / var(--siteBasis)));
  width: 100%;
  z-index: 1;
  align-content: start;
}
@media (min-width: 768px) {
  .teams-archive__grid .card__container {
    padding: clamp(1px, calc(29vw * (100 / var(--siteBasis))), calc(29px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(33vw * (100 / var(--siteBasis))), calc(33px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(29vw * (100 / var(--siteBasis))), calc(29px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(42vw * (100 / var(--siteBasis))), calc(42px * var(--siteMax) / var(--siteBasis)));
    align-content: center;
  }
}
.teams-archive__grid .card__link {
  text-decoration: none;
  color: inherit;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
}
.teams-archive__grid .card .pill {
  background-color: #fff;
  padding: clamp(1px, calc(7vw * (100 / var(--siteBasis))), calc(7px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(19vw * (100 / var(--siteBasis))), calc(19px * var(--siteMax) / var(--siteBasis)));
  border-radius: clamp(1px, calc(3vw * (100 / var(--siteBasis))), calc(3px * var(--siteMax) / var(--siteBasis)));
  margin-bottom: clamp(1px, calc(17vw * (100 / var(--siteBasis))), calc(17px * var(--siteMax) / var(--siteBasis)));
  display: inline-block;
  position: absolute;
  color: #91217d;
  top: clamp(1px, calc(23vw * (100 / var(--siteBasis))), calc(23px * var(--siteMax) / var(--siteBasis)));
  right: clamp(1px, calc(22.5vw * (100 / var(--siteBasis))), calc(22.5px * var(--siteMax) / var(--siteBasis)));
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media (min-width: 768px) {
  .teams-archive__grid .card .pill {
    position: relative;
    top: auto;
    right: auto;
  }
}
.teams-archive__grid .card .investigator {
  border-radius: 100%;
  overflow: visible;
}
.teams-archive__grid .card .investigator .tooltip {
  visibility: hidden;
  opacity: 0;
  width: -webkit-max-content;
  width: max-content;
  max-width: 200px;
  background-color: #fff;
  color: #91217d;
  text-align: center;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 12px;
  line-height: 1.2;
  position: absolute;
  top: -5%;
  left: 125%;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  z-index: 10;
  border: clamp(1px, calc(2vw * (100 / var(--siteBasis))), calc(2px * var(--siteMax) / var(--siteBasis))) solid #eff4f9;
}
.teams-archive__grid .card .investigator:hover .tooltip {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(-10px);
}
.teams-archive__grid .card .investigator-stack {
  display: flex;
  align-items: center;
  height: clamp(1px, calc(43vw * (100 / var(--siteBasis))), calc(43px * var(--siteMax) / var(--siteBasis)));
}
@media (min-width: 768px) {
  .teams-archive__grid .card .investigator-stack {
    height: clamp(1px, calc(64vw * (100 / var(--siteBasis))), calc(64px * var(--siteMax) / var(--siteBasis)));
  }
}
.teams-archive__grid .card .investigator-stack figure {
  transition: all 100ms ease;
  background: #0c8dc3;
  width: clamp(1px, calc(43vw * (100 / var(--siteBasis))), calc(43px * var(--siteMax) / var(--siteBasis)));
  height: clamp(1px, calc(43vw * (100 / var(--siteBasis))), calc(43px * var(--siteMax) / var(--siteBasis)));
  box-shadow: 0 1.6px 3.47px 0 rgba(73, 95, 202, 0.0509803922), 0 6.4px 6.4px 0 rgba(73, 95, 202, 0.0392156863), 0 14.14px 8.54px 0 rgba(73, 95, 202, 0.031372549), 0 25.35px 10.14px 0 rgba(73, 95, 202, 0.0117647059), 0 39.49px 10.94px 0 rgba(73, 95, 202, 0);
}
@media (min-width: 768px) {
  .teams-archive__grid .card .investigator-stack figure {
    width: clamp(1px, calc(64vw * (100 / var(--siteBasis))), calc(64px * var(--siteMax) / var(--siteBasis)));
    height: clamp(1px, calc(64vw * (100 / var(--siteBasis))), calc(64px * var(--siteMax) / var(--siteBasis)));
  }
}
.teams-archive__grid .card .investigator-stack figure img {
  cursor: pointer;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  border: clamp(1px, calc(2vw * (100 / var(--siteBasis))), calc(2px * var(--siteMax) / var(--siteBasis))) solid #fff;
}
.teams-archive__grid .card .investigator-stack figure:not(:first-child) {
  margin-left: clamp(calc(-15 * (100 / var(--siteBasis)) * 1vw), calc(-15px * var(--siteMax) / var(--siteBasis)), -1px);
}
.teams-archive__grid .card .investigator-stack figure:nth-child(1) {
  z-index: 10;
}
.teams-archive__grid .card .investigator-stack figure:nth-child(2) {
  z-index: 9;
}
.teams-archive__grid .card .investigator-stack figure:nth-child(3) {
  z-index: 8;
}
.teams-archive__grid .card .investigator-stack figure:nth-child(4) {
  z-index: 7;
}
.teams-archive__grid .card .investigator-stack figure:nth-child(5) {
  z-index: 6;
}
.teams-archive__grid .card .investigator-stack figure:nth-child(6) {
  z-index: 5;
}
.teams-archive__grid .card .investigator-stack figure:nth-child(7) {
  z-index: 4;
}
.teams-archive__grid .card .investigator-stack figure:nth-child(8) {
  z-index: 3;
}
.teams-archive__grid .card .investigator-stack figure:nth-child(9) {
  z-index: 2;
}
.teams-archive__grid .card .investigator-stack figure:nth-child(10) {
  z-index: 1;
}
.teams-archive__grid .card .investigator-stack:hover figure img {
  opacity: 0.6;
}
.teams-archive__grid .card .investigator-stack:hover .more {
  opacity: 0.6;
}
.teams-archive__grid .card .investigator-stack figure:hover {
  z-index: 10;
  scale: 1.05;
  box-shadow: 0 1.82px 4.55px 0 rgba(32, 28, 84, 0.2), 0 7.29px 7.29px 0 rgba(32, 28, 84, 0.168627451), 0 17.31px 10.02px 0 rgba(32, 28, 84, 0.1019607843), 0 30.97px 11.84px 0 rgba(32, 28, 84, 0.031372549), 0 48.28px 13.66px 0 rgba(32, 28, 84, 0);
}
.teams-archive__grid .card .investigator-stack figure:hover img {
  opacity: 1;
  z-index: 10;
}
.teams-archive__grid .card .investigator-stack .more:hover {
  opacity: 1;
}
.teams-archive__grid .card .more {
  cursor: pointer;
  transition: background 0.3s ease;
  padding-left: clamp(1px, calc(5vw * (100 / var(--siteBasis))), calc(5px * var(--siteMax) / var(--siteBasis)));
  margin-left: clamp(calc(-15 * (100 / var(--siteBasis)) * 1vw), calc(-15px * var(--siteMax) / var(--siteBasis)), -1px);
  font-weight: 600;
  line-height: 100%;
  text-align: center;
  color: #fff;
  border-radius: 100%;
  width: clamp(1px, calc(38vw * (100 / var(--siteBasis))), calc(38px * var(--siteMax) / var(--siteBasis)));
  height: clamp(1px, calc(38vw * (100 / var(--siteBasis))), calc(38px * var(--siteMax) / var(--siteBasis)));
  background: linear-gradient(130.17deg, #5e1575 20.47%, #0078aa 94.77%), linear-gradient(130.17deg, #8c4e9f 20.47%, #0c8dc3 94.77%);
}
@media (min-width: 768px) {
  .teams-archive__grid .card .more {
    width: clamp(1px, calc(58vw * (100 / var(--siteBasis))), calc(58px * var(--siteMax) / var(--siteBasis)));
    height: clamp(1px, calc(58vw * (100 / var(--siteBasis))), calc(58px * var(--siteMax) / var(--siteBasis)));
  }
}
.teams-archive .searchBarWrap {
  position: relative;
  margin-bottom: clamp(1px, calc(18vw * (100 / var(--siteBasis))), calc(18px * var(--siteMax) / var(--siteBasis)));
  margin-top: clamp(1px, calc(48vw * (100 / var(--siteBasis))), calc(48px * var(--siteMax) / var(--siteBasis)));
}
@media (min-width: 768px) {
  .teams-archive .searchBarWrap {
    grid-area: 1/1/2/5;
    margin-bottom: 0;
  }
}
.teams-archive .searchBarWrap svg {
  width: clamp(1px, calc(21vw * (100 / var(--siteBasis))), calc(21px * var(--siteMax) / var(--siteBasis)));
  display: inline-block;
  position: absolute;
  top: 50%;
  left: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .teams-archive .searchBarWrap svg {
    left: clamp(1px, calc(14vw * (100 / var(--siteBasis))), calc(14px * var(--siteMax) / var(--siteBasis)));
  }
}
.teams-archive .quickSearch {
  width: 100%;
  border: 1px solid #969696;
  border-radius: clamp(1px, calc(100vw * (100 / var(--siteBasis))), calc(100px * var(--siteMax) / var(--siteBasis)));
  padding: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(25vw * (100 / var(--siteBasis))), calc(25px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(60vw * (100 / var(--siteBasis))), calc(60px * var(--siteMax) / var(--siteBasis)));
  -webkit-appearance: none;
  font-family: "Noto Sans", sans-serif;
  background-color: #fff !important;
}
@media (max-width: 767px) {
  .teams-archive .quickSearch {
    padding: clamp(1px, calc(12vw * (100 / var(--siteBasis))), calc(12px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(15vw * (100 / var(--siteBasis))), calc(15px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(12vw * (100 / var(--siteBasis))), calc(12px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis)));
  }
}
.teams-archive .grid--filter {
  cursor: pointer;
  order: 1;
  width: 100%;
  background-color: #fff;
  border: 1px solid #9ea2aa;
  padding: clamp(1px, calc(15vw * (100 / var(--siteBasis))), calc(15px * var(--siteMax) / var(--siteBasis)));
  border-radius: clamp(1px, calc(7vw * (100 / var(--siteBasis))), calc(7px * var(--siteMax) / var(--siteBasis)));
  z-index: 500;
  max-height: clamp(1px, calc(52vw * (100 / var(--siteBasis))), calc(52px * var(--siteMax) / var(--siteBasis)));
  transition: max-height 0.3s ease;
  /* Display CSS arrow to the right of the dropdown text */
}
@media (min-width: 768px) {
  .teams-archive .grid--filter {
    order: 2;
    position: -webkit-sticky;
    position: sticky;
    top: clamp(1px, calc(150vw * (100 / var(--siteBasis))), calc(150px * var(--siteMax) / var(--siteBasis)));
    padding: clamp(1px, calc(28vw * (100 / var(--siteBasis))), calc(28px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(45vw * (100 / var(--siteBasis))), calc(45px * var(--siteMax) / var(--siteBasis)));
    max-height: none;
  }
}
.teams-archive .grid--filter.is-expanded {
  max-height: 100%;
}
.teams-archive .grid--filter_title {
  margin-bottom: clamp(1px, calc(10vw * (100 / var(--siteBasis))), calc(10px * var(--siteMax) / var(--siteBasis)));
}
@media (max-width: 767px) {
  .teams-archive .grid--filter_title {
    margin-bottom: 0;
  }
}
.teams-archive .grid--filter_title p {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .teams-archive .grid--filter_checkboxes {
    margin-top: clamp(1px, calc(25vw * (100 / var(--siteBasis))), calc(25px * var(--siteMax) / var(--siteBasis)));
  }
}
.teams-archive .grid--filter .checkbox-dropdown {
  border: 1px solid #aaa;
  padding: 10px 13px;
  position: relative;
  margin: 0 auto;
  border-radius: clamp(1px, calc(3vw * (100 / var(--siteBasis))), calc(3px * var(--siteMax) / var(--siteBasis)));
  -webkit-user-select: none;
          user-select: none;
  margin-bottom: clamp(1px, calc(10vw * (100 / var(--siteBasis))), calc(10px * var(--siteMax) / var(--siteBasis)));
}
.teams-archive .grid--filter .checkbox-dropdown:hover {
  border-color: #0c8dc3;
  cursor: pointer;
}
.teams-archive .grid--filter .checkbox-dropdown.is-active {
  z-index: 501;
  background-color: #fff;
}
.teams-archive .grid--filter .checkbox-dropdown::after {
  content: "";
  position: absolute;
  right: clamp(1px, calc(10vw * (100 / var(--siteBasis))), calc(10px * var(--siteMax) / var(--siteBasis)));
  top: 50%;
  transform: translateY(-50%);
  width: clamp(1px, calc(10vw * (100 / var(--siteBasis))), calc(10px * var(--siteMax) / var(--siteBasis)));
  height: clamp(1px, calc(10vw * (100 / var(--siteBasis))), calc(10px * var(--siteMax) / var(--siteBasis)));
  background-image: url("/wp-content/themes/crn/img/ui/dropdown-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.teams-archive .grid--filter .checkbox-dropdown-list {
  background-color: #fff;
  border-radius: clamp(1px, calc(5vw * (100 / var(--siteBasis))), calc(5px * var(--siteMax) / var(--siteBasis)));
  z-index: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  /* align the dropdown right below the dropdown text */
  border: 1px solid rgba(0, 0, 0, 0.1019607843);
  left: -1px;
  /* align the dropdown to the left */
  right: -1px;
  /* align the dropdown to the right */
  opacity: 0;
  /* hide the dropdown */
  top: clamp(1px, calc(46vw * (100 / var(--siteBasis))), calc(46px * var(--siteMax) / var(--siteBasis)));
  transition: opacity 0.4s ease-in-out;
  pointer-events: none;
  /* avoid mouse click events inside the dropdown */
}
.teams-archive .grid--filter .checkbox-dropdown-list input {
  pointer-events: none;
}
.teams-archive .grid--filter .is-active .checkbox-dropdown-list {
  opacity: 1;
  pointer-events: auto;
  box-shadow: 0 7px 14px 0 rgba(0, 0, 0, 0.1019607843), 0 26px 26px 0 rgba(0, 0, 0, 0.0901960784), 0 59px 35px 0 rgba(0, 0, 0, 0.0509803922), 0 104px 42px 0 rgba(0, 0, 0, 0.0117647059), 0 163px 46px 0 rgba(0, 0, 0, 0);
}
.teams-archive .grid--filter .checkbox-dropdown-list li label {
  padding: 10px;
  gap: clamp(1px, calc(12vw * (100 / var(--siteBasis))), calc(12px * var(--siteMax) / var(--siteBasis)));
  transition: all 0.2s ease-out;
  cursor: pointer;
  accent-color: #0c8dc3;
  font-weight: 400;
}
.teams-archive .grid--filter .checkbox-dropdown-list li label:hover {
  background-color: #e7f4f9;
}
.teams-archive .grid--filter a {
  color: #0c8dc3;
  text-decoration: none;
  display: block;
}

.highlight-carousel {
  margin-bottom: clamp(1px, calc(70vw * (100 / var(--siteBasis))), calc(70px * var(--siteMax) / var(--siteBasis)));
}
@media (min-width: 768px) {
  .highlight-carousel {
    margin-bottom: clamp(1px, calc(90vw * (100 / var(--siteBasis))), calc(90px * var(--siteMax) / var(--siteBasis)));
  }
}
.highlight-carousel--header {
  margin-bottom: clamp(1px, calc(25vw * (100 / var(--siteBasis))), calc(25px * var(--siteMax) / var(--siteBasis)));
}
.highlight-carousel--header h4 {
  font-weight: 600;
  margin-bottom: 0;
}
.highlight-carousel-prevNext {
  gap: clamp(1px, calc(5vw * (100 / var(--siteBasis))), calc(5px * var(--siteMax) / var(--siteBasis)));
}
.highlight-carousel-prevNext .next,
.highlight-carousel-prevNext .prev {
  border: 2px solid #000;
  height: clamp(1px, calc(37vw * (100 / var(--siteBasis))), calc(37px * var(--siteMax) / var(--siteBasis)));
  width: clamp(1px, calc(37vw * (100 / var(--siteBasis))), calc(37px * var(--siteMax) / var(--siteBasis)));
  border-radius: 100%;
  cursor: pointer;
}
.highlight-carousel-prevNext .next {
  transform: rotate(180deg);
}

.our-team {
  padding-bottom: clamp(1px, calc(120vw * (100 / var(--siteBasis))), calc(120px * var(--siteMax) / var(--siteBasis)));
}
.our-team--teams {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
  margin-bottom: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis)));
}
@media (min-width: 768px) {
  .our-team--teams {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: clamp(1px, calc(60vw * (100 / var(--siteBasis))), calc(60px * var(--siteMax) / var(--siteBasis)));
  }
}

.pagination {
  background: rgba(227, 240, 245, 0.5019607843);
  margin-top: clamp(1px, calc(80vw * (100 / var(--siteBasis))), calc(80px * var(--siteMax) / var(--siteBasis)));
}
@media (min-width: 768px) {
  .pagination {
    margin-top: 0;
  }
}
.pagination a {
  text-decoration: none;
  color: inherit;
  gap: clamp(1px, calc(22vw * (100 / var(--siteBasis))), calc(22px * var(--siteMax) / var(--siteBasis)));
  position: relative;
  padding: clamp(1px, calc(24vw * (100 / var(--siteBasis))), calc(24px * var(--siteMax) / var(--siteBasis))) 0;
}
@media (min-width: 768px) {
  .pagination a {
    padding: clamp(1px, calc(58vw * (100 / var(--siteBasis))), calc(58px * var(--siteMax) / var(--siteBasis))) 0;
  }
}
.pagination a:hover svg {
  transform: translateX(clamp(1px, calc(5vw * (100 / var(--siteBasis))), calc(5px * var(--siteMax) / var(--siteBasis))));
}
.pagination p {
  margin-bottom: clamp(1px, calc(7vw * (100 / var(--siteBasis))), calc(7px * var(--siteMax) / var(--siteBasis)));
}
.pagination h5 {
  color: #0c8dc3;
  margin-bottom: 0;
  font-weight: 600;
  padding-right: clamp(1px, calc(8vw * (100 / var(--siteBasis))), calc(8px * var(--siteMax) / var(--siteBasis)));
}
.pagination svg {
  transition: transform 0.3s ease;
}
.pagination svg path {
  fill: #0c8dc3;
}
.pagination figure {
  border-radius: 100%;
  height: clamp(1px, calc(102vw * (100 / var(--siteBasis))), calc(102px * var(--siteMax) / var(--siteBasis)));
  width: clamp(1px, calc(102vw * (100 / var(--siteBasis))), calc(102px * var(--siteMax) / var(--siteBasis)));
}
.pagination figure img {
  width: 100%;
  height: 100%;
}

.lost {
  position: relative;
  padding: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis))) 0;
  overflow: hidden;
}
.lost .container {
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .lost {
    padding: clamp(1px, calc(80vw * (100 / var(--siteBasis))), calc(80px * var(--siteMax) / var(--siteBasis))) 0;
  }
}
@media (min-width: 768px) {
  .lost__title {
    text-align: center;
  }
}
.lost__title .content {
  max-width: clamp(1px, calc(900vw * (100 / var(--siteBasis))), calc(900px * var(--siteMax) / var(--siteBasis)));
  margin: 0 auto;
}
.lost__title h1 {
  padding-bottom: clamp(1px, calc(10vw * (100 / var(--siteBasis))), calc(10px * var(--siteMax) / var(--siteBasis)));
}
.lost__links {
  margin-top: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis)));
}
@media (min-width: 768px) {
  .lost__links {
    margin-top: clamp(1px, calc(60vw * (100 / var(--siteBasis))), calc(60px * var(--siteMax) / var(--siteBasis)));
  }
}
.lost__list {
  gap: clamp(1px, calc(10vw * (100 / var(--siteBasis))), calc(10px * var(--siteMax) / var(--siteBasis)));
  list-style: none;
  max-width: clamp(1px, calc(1020vw * (100 / var(--siteBasis))), calc(1020px * var(--siteMax) / var(--siteBasis)));
  margin: 0 auto;
}
@media (min-width: 768px) {
  .lost__list {
    gap: clamp(1px, calc(60vw * (100 / var(--siteBasis))), calc(60px * var(--siteMax) / var(--siteBasis)));
  }
}
@media (min-width: 768px) {
  .lost__item {
    flex: 1;
  }
}
@media (max-width: 767px) {
  .lost__item {
    width: 100%;
  }
}
.lost__item:nth-child(1) .lost__card {
  background: var(--Tertiary-ASAP-Gradient-1, linear-gradient(90deg, #8c4e9f 0.22%, #0c8dc3 99.88%));
}
.lost__item:nth-child(2) .lost__card {
  background: var(--Secondary-Asap-Gradient, linear-gradient(90deg, #0c8dc3 0.22%, #62a15a 99.88%));
}
.lost__item:nth-child(3) .lost__card {
  background: var(--Tertiary-Asap-Gradient-2, linear-gradient(90deg, #035c81 0.22%, #0c8dc3 99.88%));
}
.lost__card {
  position: relative;
  display: block;
  padding: clamp(1px, calc(18vw * (100 / var(--siteBasis))), calc(18px * var(--siteMax) / var(--siteBasis)));
  border-radius: clamp(1px, calc(4vw * (100 / var(--siteBasis))), calc(4px * var(--siteMax) / var(--siteBasis)));
  text-align: center;
  text-decoration: none;
}
@media (min-width: 768px) {
  .lost__card {
    padding: clamp(1px, calc(24vw * (100 / var(--siteBasis))), calc(24px * var(--siteMax) / var(--siteBasis)));
    border-radius: clamp(1px, calc(10vw * (100 / var(--siteBasis))), calc(10px * var(--siteMax) / var(--siteBasis)));
  }
}
.lost__card .icon {
  border-radius: 100%;
  background-color: #fff;
}
@media (min-width: 768px) {
  .lost__card .icon {
    margin: 0 auto;
    width: clamp(1px, calc(62vw * (100 / var(--siteBasis))), calc(62px * var(--siteMax) / var(--siteBasis)));
    height: clamp(1px, calc(62vw * (100 / var(--siteBasis))), calc(62px * var(--siteMax) / var(--siteBasis)));
  }
}
@media (max-width: 767px) {
  .lost__card .icon {
    width: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis)));
    height: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis)));
    padding: clamp(1px, calc(10vw * (100 / var(--siteBasis))), calc(10px * var(--siteMax) / var(--siteBasis)));
  }
}
@media (min-width: 768px) {
  .lost__card .info {
    margin-top: clamp(1px, calc(10vw * (100 / var(--siteBasis))), calc(10px * var(--siteMax) / var(--siteBasis)));
  }
}
@media (max-width: 767px) {
  .lost__card .info {
    text-align: left;
    margin-left: clamp(1px, calc(10vw * (100 / var(--siteBasis))), calc(10px * var(--siteMax) / var(--siteBasis)));
  }
}
.lost__card .info small,
.lost__card .info h3 {
  display: block;
  color: #fff;
}
.lost__card .info h3 {
  margin-top: clamp(1px, calc(5vw * (100 / var(--siteBasis))), calc(5px * var(--siteMax) / var(--siteBasis)));
  margin-bottom: 0;
}
.lost__card .arrow {
  position: absolute;
  top: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
  right: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
  transition: opacity 450ms cubic-bezier(0.23, 1, 0.32, 1), transform 450ms cubic-bezier(0.23, 1, 0.32, 1);
  transform: translate(clamp(calc(-5 * (100 / var(--siteBasis)) * 1vw), calc(-5px * var(--siteMax) / var(--siteBasis)), -1px), clamp(1px, calc(5vw * (100 / var(--siteBasis))), calc(5px * var(--siteMax) / var(--siteBasis))));
  opacity: 0;
}
.lost__card:hover .arrow {
  transform: translate(0, 0);
  opacity: 1;
}
@media (max-width: 767px) {
  .lost__card {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
}
.lost__message {
  margin-top: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis)));
  text-align: center;
}
@media (min-width: 768px) {
  .lost__message {
    margin-top: clamp(1px, calc(60vw * (100 / var(--siteBasis))), calc(60px * var(--siteMax) / var(--siteBasis)));
  }
}
.lost__message p {
  --fontSize: 14;
  line-height: 140%;
}
@media (min-width: 768px) {
  .lost__message p {
    --fontSize: 18;
  }
}
.lost__message p a {
  color: inherit;
  text-decoration: underline;
}
.lost__message .btn {
  margin-top: clamp(1px, calc(10vw * (100 / var(--siteBasis))), calc(10px * var(--siteMax) / var(--siteBasis)));
}
@media (min-width: 768px) {
  .lost__message .btn {
    margin-top: clamp(1px, calc(30vw * (100 / var(--siteBasis))), calc(30px * var(--siteMax) / var(--siteBasis)));
  }
}
.lost__bg {
  position: absolute;
  right: -38%;
  bottom: -36%;
  width: clamp(1px, calc(1180vw * (100 / var(--siteBasis))), calc(1180px * var(--siteMax) / var(--siteBasis)));
  z-index: 0;
}

.investigators-archive .two-col-header {
  margin-bottom: clamp(1px, calc(21vw * (100 / var(--siteBasis))), calc(21px * var(--siteMax) / var(--siteBasis)));
}
.investigators-archive .two-col-header h1 {
  max-width: clamp(1px, calc(250vw * (100 / var(--siteBasis))), calc(250px * var(--siteMax) / var(--siteBasis)));
}
@media (min-width: 768px) {
  .investigators-archive .two-col-header h1 {
    max-width: none;
  }
}
.investigators-archive .searchBarWrap {
  position: relative;
}
@media (min-width: 768px) {
  .investigators-archive .searchBarWrap {
    grid-area: 1/1/2/5;
  }
}
.investigators-archive .searchBarWrap svg {
  width: clamp(1px, calc(21vw * (100 / var(--siteBasis))), calc(21px * var(--siteMax) / var(--siteBasis)));
  display: inline-block;
  position: absolute;
  top: 50%;
  left: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .investigators-archive .searchBarWrap svg {
    left: clamp(1px, calc(14vw * (100 / var(--siteBasis))), calc(14px * var(--siteMax) / var(--siteBasis)));
  }
}
.investigators-archive .quickSearch {
  width: 100%;
  border: 1px solid #969696;
  border-radius: clamp(1px, calc(100vw * (100 / var(--siteBasis))), calc(100px * var(--siteMax) / var(--siteBasis)));
  padding: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(25vw * (100 / var(--siteBasis))), calc(25px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(60vw * (100 / var(--siteBasis))), calc(60px * var(--siteMax) / var(--siteBasis)));
  -webkit-appearance: none;
  font-family: "Noto Sans", sans-serif;
  background-color: #fff !important;
}
@media (max-width: 767px) {
  .investigators-archive .quickSearch {
    padding: clamp(1px, calc(12vw * (100 / var(--siteBasis))), calc(12px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(15vw * (100 / var(--siteBasis))), calc(15px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(12vw * (100 / var(--siteBasis))), calc(12px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis)));
  }
}
.investigators-archive__grid {
  gap: clamp(1px, calc(36vw * (100 / var(--siteBasis))), calc(36px * var(--siteMax) / var(--siteBasis)));
  margin-bottom: clamp(1px, calc(155vw * (100 / var(--siteBasis))), calc(155px * var(--siteMax) / var(--siteBasis)));
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  grid-auto-rows: auto;
}
@media (min-width: 768px) {
  .investigators-archive__grid {
    grid-template-columns: 1fr clamp(1px, calc(273vw * (100 / var(--siteBasis))), calc(273px * var(--siteMax) / var(--siteBasis)));
  }
}
.investigators-archive__grid--cards {
  width: 100%;
  order: 2;
}
@media (min-width: 768px) {
  .investigators-archive__grid--cards {
    order: 1;
  }
}
.investigators-archive__grid--cards h2 {
  font-weight: 600;
}
.investigators-archive__grid--filter {
  cursor: pointer;
  order: 1;
  width: 100%;
  background-color: #fff;
  border: 1px solid #9ea2aa;
  padding: clamp(1px, calc(23vw * (100 / var(--siteBasis))), calc(23px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(15vw * (100 / var(--siteBasis))), calc(15px * var(--siteMax) / var(--siteBasis)));
  border-radius: clamp(1px, calc(7vw * (100 / var(--siteBasis))), calc(7px * var(--siteMax) / var(--siteBasis)));
  z-index: 500;
  overflow: hidden;
  max-height: clamp(1px, calc(64vw * (100 / var(--siteBasis))), calc(64px * var(--siteMax) / var(--siteBasis)));
  transition: max-height 0.3s ease;
  /* Display CSS arrow to the right of the dropdown text */
}
@media (min-width: 768px) {
  .investigators-archive__grid--filter {
    order: 2;
    position: -webkit-sticky;
    position: sticky;
    top: clamp(1px, calc(150vw * (100 / var(--siteBasis))), calc(150px * var(--siteMax) / var(--siteBasis)));
    padding: clamp(1px, calc(28vw * (100 / var(--siteBasis))), calc(28px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(17vw * (100 / var(--siteBasis))), calc(17px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
    max-height: none;
  }
}
.investigators-archive__grid--filter.is-expanded {
  max-height: 100%;
}
.investigators-archive__grid--filter_title {
  margin-bottom: clamp(1px, calc(24vw * (100 / var(--siteBasis))), calc(24px * var(--siteMax) / var(--siteBasis)));
}
.investigators-archive__grid--filter_title p {
  margin-bottom: 0;
}
.investigators-archive__grid--filter .checkbox-dropdown {
  border: 1px solid #aaa;
  padding: 10px;
  position: relative;
  margin: 0 auto;
  border-radius: clamp(1px, calc(3vw * (100 / var(--siteBasis))), calc(3px * var(--siteMax) / var(--siteBasis)));
  -webkit-user-select: none;
          user-select: none;
  margin-bottom: clamp(1px, calc(7vw * (100 / var(--siteBasis))), calc(7px * var(--siteMax) / var(--siteBasis)));
}
.investigators-archive__grid--filter .checkbox-dropdown:hover {
  border-color: #0c8dc3;
  cursor: pointer;
}
.investigators-archive__grid--filter .checkbox-dropdown.is-active {
  z-index: 501;
  background-color: #fff;
}
.investigators-archive__grid--filter_browse {
  padding-top: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
}
@media (min-width: 768px) {
  .investigators-archive__grid--filter_browse {
    padding-top: clamp(1px, calc(34vw * (100 / var(--siteBasis))), calc(34px * var(--siteMax) / var(--siteBasis)));
  }
}
.investigators-archive__grid--filter .checkbox-dropdown::after {
  content: url("/wp-content/themes/crn/img/ui/dropdown-arrow.svg");
  height: clamp(1px, calc(10vw * (100 / var(--siteBasis))), calc(10px * var(--siteMax) / var(--siteBasis)));
  position: absolute;
  width: clamp(1px, calc(10vw * (100 / var(--siteBasis))), calc(10px * var(--siteMax) / var(--siteBasis)));
  right: clamp(1px, calc(10vw * (100 / var(--siteBasis))), calc(10px * var(--siteMax) / var(--siteBasis)));
}
.investigators-archive__grid--filter .checkbox-dropdown-list {
  background-color: #fff;
  border-radius: clamp(1px, calc(5vw * (100 / var(--siteBasis))), calc(5px * var(--siteMax) / var(--siteBasis)));
  z-index: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  /* align the dropdown right below the dropdown text */
  border: 1px solid rgba(0, 0, 0, 0.1019607843);
  left: -1px;
  /* align the dropdown to the left */
  right: -1px;
  /* align the dropdown to the right */
  opacity: 0;
  /* hide the dropdown */
  top: clamp(1px, calc(46vw * (100 / var(--siteBasis))), calc(46px * var(--siteMax) / var(--siteBasis)));
  transition: opacity 0.4s ease-in-out;
  pointer-events: none;
  /* avoid mouse click events inside the dropdown */
}
.investigators-archive__grid--filter .checkbox-dropdown-list input {
  pointer-events: none;
}
.investigators-archive__grid--filter .is-active .checkbox-dropdown-list {
  opacity: 1;
  pointer-events: auto;
  box-shadow: 0 7px 14px 0 rgba(0, 0, 0, 0.1019607843), 0 26px 26px 0 rgba(0, 0, 0, 0.0901960784), 0 59px 35px 0 rgba(0, 0, 0, 0.0509803922), 0 104px 42px 0 rgba(0, 0, 0, 0.0117647059), 0 163px 46px 0 rgba(0, 0, 0, 0);
}
.investigators-archive__grid--filter .checkbox-dropdown-list li label {
  padding: 10px;
  gap: clamp(1px, calc(12vw * (100 / var(--siteBasis))), calc(12px * var(--siteMax) / var(--siteBasis)));
  transition: all 0.2s ease-out;
  cursor: pointer;
  accent-color: #0c8dc3;
  font-weight: 400;
}
.investigators-archive__grid--filter .checkbox-dropdown-list li label:hover {
  background-color: #e7f4f9;
}
.investigators-archive__grid--filter a {
  color: #0c8dc3;
  text-decoration: none;
  display: block;
}
.investigators-archive__grid .card {
  position: relative;
  overflow: hidden;
  border-radius: clamp(1px, calc(5vw * (100 / var(--siteBasis))), calc(5px * var(--siteMax) / var(--siteBasis)));
  cursor: pointer;
  text-align: center;
  min-height: clamp(1px, calc(280vw * (100 / var(--siteBasis))), calc(280px * var(--siteMax) / var(--siteBasis)));
  width: calc((100% - 39px) / 4);
  background: linear-gradient(34.86deg, rgba(140, 78, 159, 0.07) -1.43%, rgba(12, 141, 195, 0.07) 96.87%);
  transition: color 0.3s ease;
  margin-bottom: clamp(1px, calc(13vw * (100 / var(--siteBasis))), calc(13px * var(--siteMax) / var(--siteBasis)));
  padding: clamp(1px, calc(22vw * (100 / var(--siteBasis))), calc(22px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(15vw * (100 / var(--siteBasis))), calc(15px * var(--siteMax) / var(--siteBasis)));
}
@media (max-width: 767px) {
  .investigators-archive__grid .card {
    width: calc((100% - 15px) / 2);
  }
}
.investigators-archive__grid .card__headshot {
  border-radius: 100%;
  border: clamp(1px, calc(5vw * (100 / var(--siteBasis))), calc(5px * var(--siteMax) / var(--siteBasis))) solid #fff;
  height: clamp(1px, calc(118vw * (100 / var(--siteBasis))), calc(118px * var(--siteMax) / var(--siteBasis)));
  width: clamp(1px, calc(118vw * (100 / var(--siteBasis))), calc(118px * var(--siteMax) / var(--siteBasis)));
  margin-bottom: clamp(1px, calc(14vw * (100 / var(--siteBasis))), calc(14px * var(--siteMax) / var(--siteBasis)));
}
.investigators-archive__grid .card a {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.investigators-archive__grid .card__details {
  max-width: clamp(1px, calc(424vw * (100 / var(--siteBasis))), calc(424px * var(--siteMax) / var(--siteBasis)));
}
.investigators-archive__grid .card__details p {
  --fontSize: 11;
  line-height: 135%;
  margin-bottom: clamp(1px, calc(30vw * (100 / var(--siteBasis))), calc(30px * var(--siteMax) / var(--siteBasis)));
}
@media (min-width: 768px) {
  .investigators-archive__grid .card__details p {
    --fontSize: 12;
  }
}
@media (min-width: 768px) {
  .investigators-archive__grid .card__details p {
    --fontSize: 12;
    line-height: 135%;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .investigators-archive__grid .card__details p {
    --fontSize: 14;
  }
}
.investigators-archive__grid .card__details_heading {
  gap: clamp(1px, calc(23vw * (100 / var(--siteBasis))), calc(23px * var(--siteMax) / var(--siteBasis)));
}
.investigators-archive__grid .card__details_heading h3 {
  font-family: "Noto Serif", serif;
  font-weight: 600;
  --fontSize: 18;
  line-height: 125%;
}
@media (min-width: 768px) {
  .investigators-archive__grid .card__details_heading h3 {
    --fontSize: 20;
  }
}
@media (min-width: 768px) {
  .investigators-archive__grid .card__details_heading h3 {
    font-family: "Noto Serif", serif;
    font-weight: 600;
    --fontSize: 26;
    line-height: 120%;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .investigators-archive__grid .card__details_heading h3 {
    --fontSize: 38;
  }
}
.investigators-archive__grid .card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(36.97deg, #8c4e9f 4.93%, #0c8dc3 96.87%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: inherit;
  z-index: 0;
}
.investigators-archive__grid .card:hover::before {
  opacity: 1;
}
.investigators-archive__grid .card:hover {
  color: #fff;
}
.investigators-archive__grid .card:hover * {
  color: #fff;
}
.investigators-archive__grid .card:hover figure {
  box-shadow: 0 3.21px 7.22px 0 rgba(0, 0, 0, 0.2), 0 13.65px 13.65px 0 rgba(0, 0, 0, 0.168627451), 0 29.7px 17.66px 0 rgba(0, 0, 0, 0.1019607843), 0 52.98px 20.87px 0 rgba(0, 0, 0, 0.031372549), 0 82.68px 23.28px 0 rgba(0, 0, 0, 0);
}
.investigators-archive__grid .card__container {
  padding: clamp(1px, calc(29vw * (100 / var(--siteBasis))), calc(29px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(33vw * (100 / var(--siteBasis))), calc(33px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(29vw * (100 / var(--siteBasis))), calc(29px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(42vw * (100 / var(--siteBasis))), calc(42px * var(--siteMax) / var(--siteBasis)));
  width: 100%;
  z-index: 1;
  align-content: start;
}
@media (min-width: 768px) {
  .investigators-archive__grid .card__container {
    padding: clamp(1px, calc(29vw * (100 / var(--siteBasis))), calc(29px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(33vw * (100 / var(--siteBasis))), calc(33px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(29vw * (100 / var(--siteBasis))), calc(29px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(42vw * (100 / var(--siteBasis))), calc(42px * var(--siteMax) / var(--siteBasis)));
    align-content: center;
  }
}
.investigators-archive__grid .card__link {
  text-decoration: none;
  color: inherit;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
}
.investigators-archive__grid .card .pill {
  background-color: #fff;
  padding: clamp(1px, calc(7vw * (100 / var(--siteBasis))), calc(7px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(19vw * (100 / var(--siteBasis))), calc(19px * var(--siteMax) / var(--siteBasis)));
  border-radius: clamp(1px, calc(3vw * (100 / var(--siteBasis))), calc(3px * var(--siteMax) / var(--siteBasis)));
  margin-bottom: clamp(1px, calc(17vw * (100 / var(--siteBasis))), calc(17px * var(--siteMax) / var(--siteBasis)));
  display: inline-block;
  position: absolute;
  color: #91217d;
  top: clamp(1px, calc(23vw * (100 / var(--siteBasis))), calc(23px * var(--siteMax) / var(--siteBasis)));
  right: clamp(1px, calc(22.5vw * (100 / var(--siteBasis))), calc(22.5px * var(--siteMax) / var(--siteBasis)));
  white-space: nowrap;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media (min-width: 768px) {
  .investigators-archive__grid .card .pill {
    position: relative;
    top: auto;
    right: auto;
  }
}
.investigators-archive__grid .card .more {
  cursor: pointer;
  transition: background 0.3s ease;
  padding-left: clamp(1px, calc(5vw * (100 / var(--siteBasis))), calc(5px * var(--siteMax) / var(--siteBasis)));
  margin-left: clamp(calc(-15 * (100 / var(--siteBasis)) * 1vw), calc(-15px * var(--siteMax) / var(--siteBasis)), -1px);
  font-weight: 600;
  line-height: 100%;
  text-align: center;
  color: #fff;
  border-radius: 100%;
  width: clamp(1px, calc(38vw * (100 / var(--siteBasis))), calc(38px * var(--siteMax) / var(--siteBasis)));
  height: clamp(1px, calc(38vw * (100 / var(--siteBasis))), calc(38px * var(--siteMax) / var(--siteBasis)));
  background: linear-gradient(130.17deg, #5e1575 20.47%, #0078aa 94.77%), linear-gradient(130.17deg, #8c4e9f 20.47%, #0c8dc3 94.77%);
}
@media (min-width: 768px) {
  .investigators-archive__grid .card .more {
    width: clamp(1px, calc(58vw * (100 / var(--siteBasis))), calc(58px * var(--siteMax) / var(--siteBasis)));
    height: clamp(1px, calc(58vw * (100 / var(--siteBasis))), calc(58px * var(--siteMax) / var(--siteBasis)));
  }
}

.CTA_Bar {
  background-color: #0e1e2a;
  padding-top: clamp(1px, calc(65vw * (100 / var(--siteBasis))), calc(65px * var(--siteMax) / var(--siteBasis)));
  padding-bottom: clamp(1px, calc(65vw * (100 / var(--siteBasis))), calc(65px * var(--siteMax) / var(--siteBasis)));
}
@media (max-width: 767px) {
  .CTA_Bar {
    padding-top: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis)));
    padding-bottom: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis)));
  }
}
.CTA_Bar--inner {
  background: linear-gradient(90deg, #8C4E9F 0%, #4A6FB1 55%, #62A15A 100%);
}
@media (min-width: 768px) {
  .CTA_Bar--inner {
    border-radius: clamp(1px, calc(200vw * (100 / var(--siteBasis))), calc(200px * var(--siteMax) / var(--siteBasis)));
    padding: clamp(1px, calc(18vw * (100 / var(--siteBasis))), calc(18px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(24vw * (100 / var(--siteBasis))), calc(24px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(18vw * (100 / var(--siteBasis))), calc(18px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(64vw * (100 / var(--siteBasis))), calc(64px * var(--siteMax) / var(--siteBasis)));
    gap: clamp(1px, calc(55vw * (100 / var(--siteBasis))), calc(55px * var(--siteMax) / var(--siteBasis)));
  }
}
@media (max-width: 767px) {
  .CTA_Bar--inner {
    border-radius: clamp(1px, calc(15vw * (100 / var(--siteBasis))), calc(15px * var(--siteMax) / var(--siteBasis)));
    padding: clamp(1px, calc(24vw * (100 / var(--siteBasis))), calc(24px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(30vw * (100 / var(--siteBasis))), calc(30px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(34vw * (100 / var(--siteBasis))), calc(34px * var(--siteMax) / var(--siteBasis)));
    gap: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis)));
    align-items: flex-start !important;
    background: linear-gradient(136deg, #8C4E9F 0%, #4A6FB1 55%, #62A15A 100%);
  }
}
.CTA_Bar p {
  font-family: "Noto Serif", serif;
  font-weight: 600;
}
@media (min-width: 768px) {
  .CTA_Bar p {
    --fontSize: 20;
  }
}
@media (max-width: 767px) {
  .CTA_Bar p {
    --fontSize: 18;
  }
}
.CTA_Bar .btn {
  display: inline-block;
  white-space: nowrap;
  border: none;
}
.CTA_Bar .btn:hover {
  background-color: #fff;
  color: #000;
}

.PostTypeGrid {
  padding: clamp(1px, calc(60vw * (100 / var(--siteBasis))), calc(60px * var(--siteMax) / var(--siteBasis))) 0 clamp(1px, calc(120vw * (100 / var(--siteBasis))), calc(120px * var(--siteMax) / var(--siteBasis)));
}
@media (max-width: 767px) {
  .PostTypeGrid {
    padding: clamp(1px, calc(30vw * (100 / var(--siteBasis))), calc(30px * var(--siteMax) / var(--siteBasis))) 0;
  }
}
.PostTypeGrid--inner {
  display: grid;
  gap: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis)));
}
@media (min-width: 768px) {
  .PostTypeGrid--inner {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1px, calc(70vw * (100 / var(--siteBasis))), calc(70px * var(--siteMax) / var(--siteBasis)));
  }
}
.PostTypeGrid--item {
  text-decoration: none;
  color: inherit;
  position: relative;
}
.PostTypeGrid--item-inner {
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) {
  .PostTypeGrid--item:hover:before, .PostTypeGrid--item:hover:after {
    opacity: 1;
  }
  .PostTypeGrid--item:hover .PostTypeGrid--item-arrow {
    background-color: #fff;
  }
  .PostTypeGrid--item:hover .PostTypeGrid--item-arrow svg path {
    fill: #1684BB;
  }
}
.PostTypeGrid--item:before, .PostTypeGrid--item:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  transition: 0.2s;
  opacity: 0;
  border-radius: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis)));
  pointer-events: none;
}
.PostTypeGrid--item:before {
  width: calc(100% + clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis))));
  height: calc(100% + clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis))));
  background-color: #fff;
  z-index: 2;
}
.PostTypeGrid--item:after {
  border-radius: clamp(1px, calc(42vw * (100 / var(--siteBasis))), calc(42px * var(--siteMax) / var(--siteBasis)));
  width: calc(100% + clamp(1px, calc(44vw * (100 / var(--siteBasis))), calc(44px * var(--siteMax) / var(--siteBasis))));
  height: calc(100% + clamp(1px, calc(44vw * (100 / var(--siteBasis))), calc(44px * var(--siteMax) / var(--siteBasis))));
  background: linear-gradient(89.8deg, #8C4E9F 0.22%, #0C8DC3 99.88%);
  box-shadow: 0px 6px 13px 0px rgba(73, 95, 202, 0.0509803922), 0px 24px 24px 0px rgba(73, 95, 202, 0.0392156863), 0px 53px 32px 0px rgba(73, 95, 202, 0.031372549), 0px 95px 38px 0px rgba(73, 95, 202, 0.0117647059), 0px 148px 41px 0px rgba(73, 95, 202, 0);
}
.PostTypeGrid--item-img {
  border-radius: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
  border-bottom-right-radius: 0;
  width: 100%;
  aspect-ratio: 350/223;
  margin-bottom: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
}
@media (max-width: 767px) {
  .PostTypeGrid--item-img {
    border-radius: clamp(1px, calc(15vw * (100 / var(--siteBasis))), calc(15px * var(--siteMax) / var(--siteBasis)));
  }
}
.PostTypeGrid--item-arrow {
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: clamp(1px, calc(92vw * (100 / var(--siteBasis))), calc(92px * var(--siteMax) / var(--siteBasis)));
  height: clamp(1px, calc(63vw * (100 / var(--siteBasis))), calc(63px * var(--siteMax) / var(--siteBasis)));
  background-color: #F1F7FA;
  z-index: 2;
  border-top-left-radius: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
  border-bottom-right-radius: 0;
  transition: 0.1s;
}
@media (max-width: 767px) {
  .PostTypeGrid--item-arrow {
    width: clamp(1px, calc(75vw * (100 / var(--siteBasis))), calc(75px * var(--siteMax) / var(--siteBasis)));
    height: clamp(1px, calc(58vw * (100 / var(--siteBasis))), calc(58px * var(--siteMax) / var(--siteBasis)));
  }
}
.PostTypeGrid--item-arrow svg {
  width: clamp(1px, calc(32vw * (100 / var(--siteBasis))), calc(32px * var(--siteMax) / var(--siteBasis)));
  display: block;
}
.PostTypeGrid--item-arrow svg path {
  fill: #A4BBC6;
}
@media (max-width: 767px) {
  .PostTypeGrid--item-arrow svg {
    width: clamp(1px, calc(26vw * (100 / var(--siteBasis))), calc(26px * var(--siteMax) / var(--siteBasis)));
  }
}
.PostTypeGrid--item-title {
  margin-bottom: clamp(1px, calc(10vw * (100 / var(--siteBasis))), calc(10px * var(--siteMax) / var(--siteBasis))) !important;
  font-weight: 600;
}
.PostTypeGrid--item-date {
  --fontSize: 12;
  color: #303030;
}
.PostTypeGrid--item-blurb {
  --fontSize: 14;
  margin-top: clamp(1px, calc(25vw * (100 / var(--siteBasis))), calc(25px * var(--siteMax) / var(--siteBasis)));
  margin-bottom: clamp(1px, calc(10vw * (100 / var(--siteBasis))), calc(10px * var(--siteMax) / var(--siteBasis)));
  line-height: 1.37em;
  color: #303030;
}
@media (max-width: 767px) {
  .PostTypeGrid--item-blurb {
    margin-top: clamp(1px, calc(15vw * (100 / var(--siteBasis))), calc(15px * var(--siteMax) / var(--siteBasis)));
  }
}

.Stats {
  padding: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis))) 0;
}
@media (min-width: 768px) {
  .Stats--inner {
    display: grid;
    grid-template-columns: repeat(var(--Stats-colCount), 1fr);
    gap: clamp(1px, (var(--Stats-gap)) * 1vw * 100 / var(--siteBasis), (var(--Stats-gap)) * 1px * var(--siteMax) / var(--siteBasis));
  }
}
@media (max-width: 767px) {
  .Stats--inner {
    display: grid;
    grid-template-columns: repeat(var(--Stats-colCountMobile), 1fr);
    gap: clamp(1px, (var(--Stats-gapMobile)) * 1vw * 100 / var(--siteBasis), (var(--Stats-gapMobile)) * 1px * var(--siteMax) / var(--siteBasis));
  }
}
.Stats--item {
  border: 1px solid #CBCBCB;
  border-radius: clamp(1px, calc(12vw * (100 / var(--siteBasis))), calc(12px * var(--siteMax) / var(--siteBasis)));
  text-align: center;
  padding: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(24vw * (100 / var(--siteBasis))), calc(24px * var(--siteMax) / var(--siteBasis)));
  overflow: hidden;
  background: #fff;
}
@media (max-width: 767px) {
  .Stats--item {
    padding: clamp(1px, calc(30vw * (100 / var(--siteBasis))), calc(30px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(10vw * (100 / var(--siteBasis))), calc(10px * var(--siteMax) / var(--siteBasis)));
    border-radius: clamp(1px, calc(6vw * (100 / var(--siteBasis))), calc(6px * var(--siteMax) / var(--siteBasis)));
  }
}
.Stats--item:is(a) {
  text-decoration: none;
  position: relative;
  isolation: isolate;
}
.Stats--item:is(a)::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(114.9deg, #8C4E9F 1.63%, #0C8DC3 96.5%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.Stats--item:is(a):hover {
  border-color: transparent;
}
.Stats--item:is(a):hover::before {
  opacity: 1;
}
.Stats--item:is(a):hover .Stats--item-title span {
  color: #fff;
  background: transparent;
  background-clip: initial;
  -webkit-text-fill-color: initial;
}
.Stats--item:is(a):hover .Stats--item-desc {
  color: #fff;
}
.Stats--item:is(a):hover .Stats--item-desc svg {
  display: inline-block;
}
.Stats--item-desc {
  display: block;
  margin-top: clamp(1px, calc(10vw * (100 / var(--siteBasis))), calc(10px * var(--siteMax) / var(--siteBasis)));
  color: #302c2c;
  --fontSize: 14;
  line-height: 1.35;
}
@media (max-width: 767px) {
  .Stats--item-desc {
    --fontSize: 10;
  }
}
.Stats--item-desc svg {
  display: inline-block;
  width: clamp(1px, calc(12vw * (100 / var(--siteBasis))), calc(12px * var(--siteMax) / var(--siteBasis)));
  margin-left: clamp(1px, calc(3vw * (100 / var(--siteBasis))), calc(3px * var(--siteMax) / var(--siteBasis)));
  vertical-align: middle;
  display: none;
  pointer-events: none;
}
.Stats--item-title {
  --fontSize: 50;
  font-weight: 800;
  font-family: "Noto Serif", serif;
  margin: 0 !important;
  line-height: 1;
}
.Stats--item-title * {
  font-family: "Noto Serif", serif !important;
  font-weight: 800 !important;
}
@media (max-width: 767px) {
  .Stats--item-title {
    --fontSize: 33;
  }
}
.Stats--item-title span {
  background: linear-gradient(89.8deg, #8C4E9F 0.22%, #0C8DC3 99.88%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.Stats .odometer {
  display: inline-block;
  background: linear-gradient(0deg, #8C4E9F 16.67%, #0C8DC3 78.23%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.Stats .odometer * {
  background: inherit;
  -webkit-background-clip: inherit;
  -webkit-text-fill-color: inherit;
  background-clip: inherit;
  text-fill-color: inherit;
}

.hero {
  position: relative;
  width: 100%;
  background-color: #035c81;
}
.hero .container {
  max-width: clamp(1px, calc(790vw * (100 / var(--siteBasis))), calc(790px * var(--siteMax) / var(--siteBasis)));
  text-align: left;
  gap: clamp(1px, calc(10vw * (100 / var(--siteBasis))), calc(10px * var(--siteMax) / var(--siteBasis)));
  position: relative;
  z-index: 1;
  padding-top: clamp(1px, calc(62vw * (100 / var(--siteBasis))), calc(62px * var(--siteMax) / var(--siteBasis)));
  padding-bottom: clamp(1px, calc(155vw * (100 / var(--siteBasis))), calc(155px * var(--siteMax) / var(--siteBasis)));
  padding-inline: 7%;
}
@media (min-width: 768px) {
  .hero .container {
    text-align: center;
    padding-top: clamp(1px, calc(197vw * (100 / var(--siteBasis))), calc(197px * var(--siteMax) / var(--siteBasis)));
    padding-bottom: clamp(1px, calc(230vw * (100 / var(--siteBasis))), calc(230px * var(--siteMax) / var(--siteBasis)));
    padding-inline: 0%;
  }
}
.hero_copy {
  max-width: clamp(1px, calc(690vw * (100 / var(--siteBasis))), calc(690px * var(--siteMax) / var(--siteBasis)));
  line-height: 140%;
  letter-spacing: 0;
  font-weight: 400;
}
@media (min-width: 768px) {
  .hero_copy {
    font-weight: 600;
  }
}
.hero h2 {
  font-weight: 600;
  text-wrap: balance;
}
.hero_scroll {
  bottom: clamp(1px, calc(42vw * (100 / var(--siteBasis))), calc(42px * var(--siteMax) / var(--siteBasis)));
  left: 50%;
  transform: translate(-50%, 0);
}
@media (min-width: 768px) {
  .hero_scroll {
    bottom: clamp(1px, calc(86vw * (100 / var(--siteBasis))), calc(86px * var(--siteMax) / var(--siteBasis)));
  }
}
.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: 0;
}

.TwoColFlex__inner {
  width: 100%;
}
@media (max-width: 767px) {
  .TwoColFlex__inner {
    display: flex;
    flex-direction: column-reverse;
    gap: clamp(1px, calc(35vw * (100 / var(--siteBasis))), calc(35px * var(--siteMax) / var(--siteBasis)));
  }
}
.TwoColFlexContent__heading {
  font-weight: 600;
}
.TwoColFlexContent__heading.gradient-text {
  background: linear-gradient(84.87deg, #5f1776 5.19%, #00567a 96.1%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.TwoColFlexContent__copy a {
  text-decoration: none;
  color: #0c8dc3;
}
.TwoColFlexContent__copy a:hover {
  text-decoration: underline;
}
.TwoColFlex__col--right .wp-block-image {
  margin: 0;
}
.TwoColFlex__col--right .wp-block-image img {
  width: 100%;
}
.TwoColFlex__col--right [class^=wp-block-crn-] > .container {
  max-width: none !important;
  width: 100% !important;
  padding: 0 !important;
}
@media (min-width: 768px) {
  .TwoColFlex__container {
    max-width: clamp(1px, (var(--container-max-width, 1200)) * 1vw * 100 / var(--siteBasis), (var(--container-max-width, 1200)) * 1px * var(--siteMax) / var(--siteBasis));
  }
  .TwoColFlex--reversed .TwoColFlex__inner {
    flex-direction: row-reverse;
  }
  .TwoColFlex__inner {
    display: flex;
    gap: clamp(1px, (var(--gap)) * 1vw * 100 / var(--siteBasis), (var(--gap)) * 1px * var(--siteMax) / var(--siteBasis));
    align-items: center;
  }
  .TwoColFlex__inner.align-top {
    align-items: flex-start;
  }
  .TwoColFlex__inner.align-bottom {
    align-items: flex-end;
  }
  .TwoColFlex__col--align-center {
    display: flex;
    justify-content: center;
  }
  .TwoColFlex__col--align-right {
    display: flex;
    justify-content: flex-end;
  }
  .TwoColFlex__col--left .TwoColFlex__col--inner {
    max-width: clamp(1px, (var(--col-max-width)) * 1vw * 100 / var(--siteBasis), (var(--col-max-width)) * 1px * var(--siteMax) / var(--siteBasis));
  }
  .TwoColFlex__col--right .TwoColFlex__col--inner {
    max-width: clamp(1px, (var(--col-max-width)) * 1vw * 100 / var(--siteBasis), (var(--col-max-width)) * 1px * var(--siteMax) / var(--siteBasis));
  }
  .TwoColFlex--1-3 .TwoColFlex__col--left {
    width: 33.3333%;
  }
  .TwoColFlex--1-3 .TwoColFlex__col--right {
    width: 66.6667%;
  }
  .TwoColFlex--2-3 .TwoColFlex__col--left {
    width: 66.6667%;
  }
  .TwoColFlex--2-3 .TwoColFlex__col--right {
    width: 33.3333%;
  }
  .TwoColFlex--1-2 .TwoColFlex__col--left,
  .TwoColFlex--1-2 .TwoColFlex__col--right {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .TwoColFlex--reversed-mobile .TwoColFlex__inner {
    flex-direction: column;
  }
  .TwoColFlex__inner {
    gap: clamp(1px, (var(--gapOnMobile)) * 1vw * 100 / var(--siteBasis), (var(--gapOnMobile)) * 1px * var(--siteMax) / var(--siteBasis));
  }
}

.TitleRow.layout-left .TitleRow__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.TitleRow.layout-center .TitleRow__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.TitleRow.layout-right .TitleRow__content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}
@media (max-width: 767px) {
  .TitleRow.m-layout-left .TitleRow__content {
    align-items: flex-start;
    text-align: left;
  }
}
@media (max-width: 767px) {
  .TitleRow.m-layout-center .TitleRow__content {
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .TitleRow.m-layout-right .TitleRow__content {
    align-items: flex-end;
    text-align: right;
  }
}
.TitleRow > .container.border-1w-12r-grey {
  border: 1px solid #cbcbcb;
  border-radius: clamp(1px, calc(12vw * (100 / var(--siteBasis))), calc(12px * var(--siteMax) / var(--siteBasis)));
  padding: clamp(1px, calc(45vw * (100 / var(--siteBasis))), calc(45px * var(--siteMax) / var(--siteBasis)));
}
@media (max-width: 767px) {
  .TitleRow > .container.border-1w-12r-grey {
    width: 90%;
    border-radius: clamp(1px, calc(6vw * (100 / var(--siteBasis))), calc(6px * var(--siteMax) / var(--siteBasis)));
    padding: clamp(1px, calc(30vw * (100 / var(--siteBasis))), calc(30px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(24vw * (100 / var(--siteBasis))), calc(24px * var(--siteMax) / var(--siteBasis)));
  }
}
.TitleRow__heading {
  font-weight: 600;
}
@media (min-width: 768px) {
  .TitleRow__heading {
    max-width: clamp(1px, (var(--heading-max-width)) * 1vw * 100 / var(--siteBasis), (var(--heading-max-width)) * 1px * var(--siteMax) / var(--siteBasis));
  }
}
.TitleRow__heading.gradient-text {
  background: linear-gradient(84.87deg, #5f1776 5.19%, #00567a 96.1%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
@media (min-width: 768px) {
  .TitleRow__copy {
    max-width: clamp(1px, (var(--copy-max-width)) * 1vw * 100 / var(--siteBasis), (var(--copy-max-width)) * 1px * var(--siteMax) / var(--siteBasis));
  }
}
@media (min-width: 768px) {
  .TitleRow.is-split > .container {
    display: flex;
    justify-content: space-between;
    gap: clamp(1px, calc(30vw * (100 / var(--siteBasis))), calc(30px * var(--siteMax) / var(--siteBasis)));
  }
}
@media (min-width: 768px) {
  .TitleRow.is-split.layout-center > .container {
    align-items: center;
  }
}
@media (max-width: 767px) {
  .TitleRow__button-col {
    margin-top: clamp(1px, calc(30vw * (100 / var(--siteBasis))), calc(30px * var(--siteMax) / var(--siteBasis)));
  }
  .TitleRow__button-col .TitleRow__button-wrapper {
    display: flex;
    justify-content: flex-start;
  }
}

.CtaButton__wrapper {
  display: flex;
}
.CtaButton__align-center .CtaButton__wrapper {
  justify-content: center;
}
.CtaButton__align-right .CtaButton__wrapper {
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .CtaButton__align-left-mobile .CtaButton__wrapper {
    justify-content: flex-start !important;
  }
}
@media (max-width: 767px) {
  .CtaButton__align-center-mobile .CtaButton__wrapper {
    justify-content: center !important;
  }
}
@media (max-width: 767px) {
  .CtaButton__align-right-mobile .CtaButton__wrapper {
    justify-content: flex-end !important;
  }
}

.ResponsiveImg--BE .responsive-image-editor {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.ResponsiveImg--FE[class^=aspect-ratio-] figure, .ResponsiveImg--FE[class*=" aspect-ratio-"] figure {
  position: relative;
  width: 100%;
}
.ResponsiveImg--FE[class^=aspect-ratio-] figure img, .ResponsiveImg--FE[class*=" aspect-ratio-"] figure img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  object-position: center;
  overflow: hidden;
}
.ResponsiveImg--FE.aspect-ratio-1-1 figure {
  aspect-ratio: 1;
}
.ResponsiveImg--FE.aspect-ratio-16-9 figure {
  aspect-ratio: 1.7777777778;
}
.ResponsiveImg--FE.aspect-ratio-5-4 figure {
  aspect-ratio: 1.25;
}
.ResponsiveImg--FE.aspect-ratio-7-5 figure {
  aspect-ratio: 1.4;
}
.ResponsiveImg--FE.aspect-ratio-4-3 figure {
  aspect-ratio: 1.3333333333;
}
.ResponsiveImg--FE.aspect-ratio-5-3 figure {
  aspect-ratio: 1.6666666667;
}
.ResponsiveImg--FE.aspect-ratio-3-2 figure {
  aspect-ratio: 1.5;
}
.ResponsiveImg--FE.direction-portrait.aspect-ratio-1-1 figure {
  aspect-ratio: 1;
}
.ResponsiveImg--FE.direction-portrait.aspect-ratio-16-9 figure {
  aspect-ratio: 0.5625;
}
.ResponsiveImg--FE.direction-portrait.aspect-ratio-5-4 figure {
  aspect-ratio: 0.8;
}
.ResponsiveImg--FE.direction-portrait.aspect-ratio-7-5 figure {
  aspect-ratio: 0.7142857143;
}
.ResponsiveImg--FE.direction-portrait.aspect-ratio-4-3 figure {
  aspect-ratio: 0.75;
}
.ResponsiveImg--FE.direction-portrait.aspect-ratio-5-3 figure {
  aspect-ratio: 0.6;
}
.ResponsiveImg--FE.direction-portrait.aspect-ratio-3-2 figure {
  aspect-ratio: 0.6666666667;
}

.InvestigatorsScroll.layout-left .InvestigatorsScroll__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.InvestigatorsScroll.layout-center .InvestigatorsScroll__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.InvestigatorsScroll.layout-right .InvestigatorsScroll__content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}
@media (max-width: 767px) {
  .InvestigatorsScroll.m-layout-left .InvestigatorsScroll__content {
    align-items: flex-start;
    text-align: left;
  }
}
@media (max-width: 767px) {
  .InvestigatorsScroll.m-layout-center .InvestigatorsScroll__content {
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .InvestigatorsScroll.m-layout-right .InvestigatorsScroll__content {
    align-items: flex-end;
    text-align: right;
  }
}
.InvestigatorsScroll__heading {
  font-weight: 600;
}
@media (min-width: 768px) {
  .InvestigatorsScroll__heading {
    max-width: clamp(1px, (var(--heading-max-width)) * 1vw * 100 / var(--siteBasis), (var(--heading-max-width)) * 1px * var(--siteMax) / var(--siteBasis));
  }
}
@media (min-width: 768px) {
  .InvestigatorsScroll__copy {
    max-width: clamp(1px, (var(--copy-max-width)) * 1vw * 100 / var(--siteBasis), (var(--copy-max-width)) * 1px * var(--siteMax) / var(--siteBasis));
  }
}
@media (min-width: 768px) {
  .InvestigatorsScroll.is-split > .container {
    display: flex;
    justify-content: space-between;
    gap: clamp(1px, calc(30vw * (100 / var(--siteBasis))), calc(30px * var(--siteMax) / var(--siteBasis)));
  }
}
@media (max-width: 767px) {
  .InvestigatorsScroll__button-col {
    margin-top: clamp(1px, calc(30vw * (100 / var(--siteBasis))), calc(30px * var(--siteMax) / var(--siteBasis)));
  }
  .InvestigatorsScroll__button-col .InvestigatorsScroll__button-wrapper {
    display: flex;
    justify-content: flex-start;
  }
}
.InvestigatorsScroll__tracks {
  margin-bottom: clamp(1px, calc(30vw * (100 / var(--siteBasis))), calc(30px * var(--siteMax) / var(--siteBasis)));
  width: 100vw;
}
@media (min-width: 768px) {
  .InvestigatorsScroll__tracks {
    margin-bottom: clamp(1px, calc(60vw * (100 / var(--siteBasis))), calc(60px * var(--siteMax) / var(--siteBasis)));
  }
}
.InvestigatorsScroll__tracks:hover .InvestigatorsScroll__trackInner {
  animation-play-state: paused;
}
.InvestigatorsScroll__tracks:hover .InvestigatorsScroll__trackInner img:not(:hover) {
  opacity: 0.5;
}
.InvestigatorsScroll__track {
  padding: clamp(1px, calc(4vw * (100 / var(--siteBasis))), calc(4px * var(--siteMax) / var(--siteBasis))) 0;
  white-space: nowrap;
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}
@media (min-width: 768px) {
  .InvestigatorsScroll__track {
    padding: clamp(1px, calc(8vw * (100 / var(--siteBasis))), calc(8px * var(--siteMax) / var(--siteBasis))) 0;
  }
}
.InvestigatorsScroll__trackInner {
  display: inline-block;
}
.InvestigatorsScroll__trackInner.top {
  animation: var(--scroll-duration, 30s) slidesRL infinite linear;
}
.InvestigatorsScroll__trackInner.bottom {
  animation: var(--scroll-duration, 30s) slidesLR infinite linear;
}
.InvestigatorsScroll__profile {
  position: relative;
  display: inline-flex;
}
.InvestigatorsScroll__profile__tooltip {
  visibility: hidden;
  opacity: 0;
  width: -webkit-max-content;
  width: max-content;
  max-width: 200px;
  background-color: #fff;
  color: #cf2fb3;
  text-align: center;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 12px;
  line-height: 1.2;
  position: absolute;
  top: 0;
  left: 70%;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  z-index: 10;
  border: clamp(1px, calc(2vw * (100 / var(--siteBasis))), calc(2px * var(--siteMax) / var(--siteBasis))) solid #eff4f9;
}
.InvestigatorsScroll__profile:hover .InvestigatorsScroll__profile__tooltip {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(-10px);
}
.InvestigatorsScroll img {
  display: inline;
  max-width: none;
  width: clamp(1px, calc(107vw * (100 / var(--siteBasis))), calc(107px * var(--siteMax) / var(--siteBasis)));
  height: clamp(1px, calc(107vw * (100 / var(--siteBasis))), calc(107px * var(--siteMax) / var(--siteBasis)));
  border-radius: 100%;
  margin: 0 clamp(1px, calc(12vw * (100 / var(--siteBasis))), calc(12px * var(--siteMax) / var(--siteBasis)));
  border: clamp(1px, calc(5vw * (100 / var(--siteBasis))), calc(5px * var(--siteMax) / var(--siteBasis))) solid #fff;
  box-shadow: 0 3.59px 7.79px 0 rgba(73, 95, 202, 0.0509803922), 0 14.38px 14.38px 0 rgba(73, 95, 202, 0.0392156863), 0 31.75px 19.17px 0 rgba(73, 95, 202, 0.031372549), 0 56.91px 22.76px 0 rgba(73, 95, 202, 0.0117647059), 0 88.66px 24.56px 0 rgba(73, 95, 202, 0);
  transition: opacity 0.3s ease;
}
.InvestigatorsScroll img:hover {
  animation-play-state: paused;
}
@media (min-width: 768px) {
  .InvestigatorsScroll img {
    width: clamp(1px, calc(150vw * (100 / var(--siteBasis))), calc(150px * var(--siteMax) / var(--siteBasis)));
    height: clamp(1px, calc(150vw * (100 / var(--siteBasis))), calc(150px * var(--siteMax) / var(--siteBasis)));
    margin: 0 clamp(1px, calc(12vw * (100 / var(--siteBasis))), calc(12px * var(--siteMax) / var(--siteBasis)));
  }
}

@keyframes slidesRL {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes slidesLR {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
.StatsTwoColContent--cols {
  display: grid;
  gap: clamp(1px, calc(24vw * (100 / var(--siteBasis))), calc(24px * var(--siteMax) / var(--siteBasis)));
}
@media (min-width: 768px) {
  .StatsTwoColContent--cols {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .StatsTwoColContent--cols {
    gap: clamp(1px, calc(12vw * (100 / var(--siteBasis))), calc(12px * var(--siteMax) / var(--siteBasis)));
  }
}
.StatsTwoColContent--col {
  display: grid;
  gap: clamp(1px, calc(24vw * (100 / var(--siteBasis))), calc(24px * var(--siteMax) / var(--siteBasis)));
}
@media (max-width: 767px) {
  .StatsTwoColContent--col {
    gap: clamp(1px, calc(12vw * (100 / var(--siteBasis))), calc(12px * var(--siteMax) / var(--siteBasis)));
  }
}
.StatsTwoColContent--col-r > div:nth-of-type(1) {
  order: 2;
}
.StatsTwoColContent--col-r > div:nth-of-type(2) {
  order: 1;
}
.StatsTwoColContent--card {
  background: linear-gradient(145.6deg, rgba(140, 78, 159, 0.08) 5.49%, rgba(12, 141, 195, 0.08) 108.56%);
  border-radius: clamp(1px, calc(12vw * (100 / var(--siteBasis))), calc(12px * var(--siteMax) / var(--siteBasis)));
  overflow: hidden;
  padding: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis)));
}
@media (max-width: 767px) {
  .StatsTwoColContent--card {
    border-radius: clamp(1px, calc(6vw * (100 / var(--siteBasis))), calc(6px * var(--siteMax) / var(--siteBasis)));
    gap: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
    padding: clamp(1px, calc(30vw * (100 / var(--siteBasis))), calc(30px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(24vw * (100 / var(--siteBasis))), calc(24px * var(--siteMax) / var(--siteBasis)));
  }
}
.StatsTwoColContent--card:is(a) {
  text-decoration: none;
}
.StatsTwoColContent--card:is(a):hover {
  background: linear-gradient(36.97deg, #8C4E9F 4.93%, #0C8DC3 96.87%);
}
.StatsTwoColContent--card:is(a):hover h3, .StatsTwoColContent--card:is(a):hover p {
  color: #fff;
}
.StatsTwoColContent--card h3 {
  margin-bottom: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
  font-weight: 600;
}
.StatsTwoColContent--card h3, .StatsTwoColContent--card p {
  color: #00202c;
}
.StatsTwoColContent--card-inner {
  display: flex;
  gap: clamp(1px, calc(30vw * (100 / var(--siteBasis))), calc(30px * var(--siteMax) / var(--siteBasis)));
}
@media (min-width: 768px) {
  .StatsTwoColContent--card-inner {
    align-items: center;
  }
}
@media (max-width: 767px) {
  .StatsTwoColContent--card-inner {
    gap: clamp(1px, calc(10vw * (100 / var(--siteBasis))), calc(10px * var(--siteMax) / var(--siteBasis)));
  }
}
.StatsTwoColContent--card-inner > div:nth-of-type(1) {
  width: 60%;
}
@media (max-width: 767px) {
  .StatsTwoColContent--card-inner > div:nth-of-type(1) {
    width: 60%;
  }
}
.StatsTwoColContent--card-inner > div:nth-of-type(2) {
  width: 40%;
}
@media (max-width: 767px) {
  .StatsTwoColContent--card-inner > div:nth-of-type(2) {
    width: 40%;
  }
}
.StatsTwoColContent--card-inner figure {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 100%;
  overflow: hidden;
}
.StatsTwoColContent--stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1px, calc(24vw * (100 / var(--siteBasis))), calc(24px * var(--siteMax) / var(--siteBasis)));
}
@media (max-width: 767px) {
  .StatsTwoColContent--stats {
    gap: clamp(1px, calc(12vw * (100 / var(--siteBasis))), calc(12px * var(--siteMax) / var(--siteBasis)));
  }
}
.StatsTwoColContent--statsBox {
  border: 1px solid #CBCBCB;
  border-radius: clamp(1px, calc(12vw * (100 / var(--siteBasis))), calc(12px * var(--siteMax) / var(--siteBasis)));
  text-align: center;
  padding: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(24vw * (100 / var(--siteBasis))), calc(24px * var(--siteMax) / var(--siteBasis)));
  overflow: hidden;
  position: relative;
}
@media (max-width: 767px) {
  .StatsTwoColContent--statsBox {
    padding: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
    border-radius: clamp(1px, calc(6vw * (100 / var(--siteBasis))), calc(6px * var(--siteMax) / var(--siteBasis)));
  }
}
.StatsTwoColContent--statsBox .svg-arrow {
  display: none;
}
.StatsTwoColContent--statsBox:is(a) {
  color: #302c2c;
  display: block;
  text-decoration: none;
  position: relative;
  isolation: isolate;
}
.StatsTwoColContent--statsBox:is(a) .svg-arrow {
  display: block;
  position: absolute;
  bottom: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
  right: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
  width: clamp(1px, calc(10vw * (100 / var(--siteBasis))), calc(10px * var(--siteMax) / var(--siteBasis)));
  pointer-events: none;
  opacity: 0;
}
@media (max-width: 767px) {
  .StatsTwoColContent--statsBox:is(a) .svg-arrow {
    bottom: clamp(1px, calc(10vw * (100 / var(--siteBasis))), calc(10px * var(--siteMax) / var(--siteBasis)));
    right: clamp(1px, calc(10vw * (100 / var(--siteBasis))), calc(10px * var(--siteMax) / var(--siteBasis)));
  }
}
.StatsTwoColContent--statsBox:is(a)::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(114.9deg, #8C4E9F 1.63%, #0C8DC3 96.5%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.StatsTwoColContent--statsBox:is(a):hover {
  border-color: transparent;
}
.StatsTwoColContent--statsBox:is(a):hover::before {
  opacity: 1;
}
.StatsTwoColContent--statsBox:is(a):hover h3 span {
  background: transparent;
  background-clip: initial;
  -webkit-text-fill-color: initial;
}
.StatsTwoColContent--statsBox:is(a):hover h3 span,
.StatsTwoColContent--statsBox:is(a):hover p {
  color: #fff;
}
.StatsTwoColContent--statsBox:is(a):hover .svg-arrow {
  opacity: 1;
}
.StatsTwoColContent--statsBox h3 {
  --fontSize: 50;
  font-weight: 800;
  font-family: "Noto Serif", serif;
  margin: 0 0 clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis))) 0;
  line-height: 1;
}
@media (max-width: 767px) {
  .StatsTwoColContent--statsBox h3 {
    --fontSize: 32;
    margin: 0 0 clamp(1px, calc(12vw * (100 / var(--siteBasis))), calc(12px * var(--siteMax) / var(--siteBasis))) 0;
  }
}
.StatsTwoColContent--statsBox h3 * {
  font-family: "Noto Serif", serif !important;
  font-weight: 800 !important;
}
.StatsTwoColContent--statsBox h3 span {
  background: linear-gradient(89.8deg, #8C4E9F 0.22%, #0C8DC3 99.88%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.StatsTwoColContent--statsBox p {
  --fontSize: 12;
  line-height: 135%;
  max-width: clamp(1px, calc(167vw * (100 / var(--siteBasis))), calc(167px * var(--siteMax) / var(--siteBasis)));
  margin: 0 auto;
}
@media (min-width: 768px) {
  .StatsTwoColContent--statsBox p {
    --fontSize: 14;
  }
}
@media (max-width: 767px) {
  .StatsTwoColContent--statsBox p {
    --fontSize: 10;
    line-height: 135%;
  }
}
@media (max-width: 767px) and (min-width: 768px) {
  .StatsTwoColContent--statsBox p {
    --fontSize: 11;
  }
}
.StatsTwoColContent--statsBox .odometer {
  display: inline-block;
  background: linear-gradient(89.8deg, #8C4E9F 0.22%, #0C8DC3 99.88%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.StatsTwoColContent--statsBox .odometer * {
  background: inherit;
  -webkit-background-clip: inherit;
  -webkit-text-fill-color: inherit;
  background-clip: inherit;
  text-fill-color: inherit;
}

.GradientGridCard--BE button.components-button {
  position: absolute;
  top: clamp(calc(-15 * (100 / var(--siteBasis)) * 1vw), calc(-15px * var(--siteMax) / var(--siteBasis)), -1px);
  right: clamp(calc(-15 * (100 / var(--siteBasis)) * 1vw), calc(-15px * var(--siteMax) / var(--siteBasis)), -1px);
  min-width: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
  height: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
  padding: 0;
  background: black;
  color: white !important;
  border: none;
  border-radius: 50%;
  font-size: 16px;
  line-height: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.GradientGridCard--grid {
  display: grid;
  grid-template-columns: repeat(var(--GradientGridCard-colCount), 1fr);
  gap: clamp(1px, (var(--GradientGridCard-gap)) * 1vw * 100 / var(--siteBasis), (var(--GradientGridCard-gap)) * 1px * var(--siteMax) / var(--siteBasis));
}
@media (max-width: 767px) {
  .GradientGridCard--grid {
    grid-template-columns: repeat(var(--GradientGridCard-colCountMobile), 1fr);
    gap: clamp(1px, (var(--GradientGridCard-gapMobile)) * 1vw * 100 / var(--siteBasis), (var(--GradientGridCard-gapMobile)) * 1px * var(--siteMax) / var(--siteBasis));
  }
}
.GradientGridCard--grid-item {
  position: relative;
  background: linear-gradient(34.86deg, #8C4E9F -1.43%, #0C8DC3 96.87%);
  border-radius: clamp(1px, calc(5vw * (100 / var(--siteBasis))), calc(5px * var(--siteMax) / var(--siteBasis)));
  padding: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(30vw * (100 / var(--siteBasis))), calc(30px * var(--siteMax) / var(--siteBasis)));
}
@media (min-width: 768px) {
  .GradientGridCard--grid-item-inner {
    padding-left: clamp(1px, calc(35vw * (100 / var(--siteBasis))), calc(35px * var(--siteMax) / var(--siteBasis)));
  }
}
.GradientGridCard--grid-item-inner svg {
  width: clamp(1px, calc(23vw * (100 / var(--siteBasis))), calc(23px * var(--siteMax) / var(--siteBasis)));
  top: 0;
  left: 0;
}
@media (min-width: 768px) {
  .GradientGridCard--grid-item-inner svg {
    position: absolute;
  }
}

.StatsCardSlider .flickity-viewport {
  overflow: hidden;
}
.StatsCardSlider--slide {
  width: 100%;
  margin: 0 50px;
}
.StatsCardSlider .flickity-page-dots {
  position: static;
  margin-top: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
}
@media (max-width: 767px) {
  .StatsCardSlider .flickity-page-dots {
    margin-top: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
  }
}

.IconHighlightGridCard {
  padding-inline: 0;
}
.IconHighlightGridCard--container {
  gap: clamp(1px, (var(--IconHighlightGridCard-gapMobile)) * 1vw * 100 / var(--siteBasis), (var(--IconHighlightGridCard-gapMobile)) * 1px * var(--siteMax) / var(--siteBasis));
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .IconHighlightGridCard--container {
    gap: clamp(1px, (var(--IconHighlightGridCard-gap)) * 1vw * 100 / var(--siteBasis), (var(--IconHighlightGridCard-gap)) * 1px * var(--siteMax) / var(--siteBasis));
    grid-template-columns: repeat(2, 1fr);
  }
}
.IconHighlightGridCard h3 {
  font-weight: 600;
}
.IconHighlightGridCard a {
  text-decoration: none;
  color: #000;
}
.IconHighlightGridCard a:hover {
  box-shadow: 0 20px 40px 0 rgba(0, 0, 0, 0.0509803922);
  transition: box-shadow 350ms cubic-bezier(0.23, 1, 0.32, 1);
}
.IconHighlightGridCard--card {
  border: 1px solid #e5e5e5;
  border-radius: clamp(1px, calc(5vw * (100 / var(--siteBasis))), calc(5px * var(--siteMax) / var(--siteBasis)));
  padding: clamp(1px, calc(30vw * (100 / var(--siteBasis))), calc(30px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(30vw * (100 / var(--siteBasis))), calc(30px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(24vw * (100 / var(--siteBasis))), calc(24px * var(--siteMax) / var(--siteBasis)));
  gap: clamp(1px, calc(12vw * (100 / var(--siteBasis))), calc(12px * var(--siteMax) / var(--siteBasis)));
  background-color: #fff;
}
@media (min-width: 768px) {
  .IconHighlightGridCard--card {
    gap: clamp(1px, calc(24vw * (100 / var(--siteBasis))), calc(24px * var(--siteMax) / var(--siteBasis)));
    padding: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(30vw * (100 / var(--siteBasis))), calc(30px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(38vw * (100 / var(--siteBasis))), calc(38px * var(--siteMax) / var(--siteBasis)));
  }
}
.IconHighlightGridCard--card figure {
  width: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis)));
  position: relative;
}
@media (max-width: 767px) {
  .IconHighlightGridCard--card figure {
    width: clamp(1px, calc(34vw * (100 / var(--siteBasis))), calc(34px * var(--siteMax) / var(--siteBasis)));
  }
}
.IconHighlightGridCard--card figure img {
  display: block;
  width: 100%;
}
.IconHighlightGridCard--card-copy {
  flex: 1;
}
.IconHighlightGridCard--card-copy .title {
  font-weight: 600;
  margin-bottom: clamp(1px, calc(24vw * (100 / var(--siteBasis))), calc(24px * var(--siteMax) / var(--siteBasis)));
}
.IconHighlightGridCard--card-copy .excerpt p {
  --fontSize: 11;
  line-height: 135%;
  font-weight: 400;
}
@media (min-width: 768px) {
  .IconHighlightGridCard--card-copy .excerpt p {
    --fontSize: 12;
  }
}

.WorkingGroupsFilter--container {
  display: grid;
}
@media (min-width: 768px) {
  .WorkingGroupsFilter--container {
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(1px, calc(45vw * (100 / var(--siteBasis))), calc(45px * var(--siteMax) / var(--siteBasis)));
  }
}
@media (max-width: 767px) {
  .WorkingGroupsFilter--container {
    gap: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
  }
}
.WorkingGroupsFilter--searchBarWrap {
  position: relative;
}
@media (min-width: 768px) {
  .WorkingGroupsFilter--searchBarWrap {
    grid-area: 1/1/2/5;
  }
}
.WorkingGroupsFilter--searchBarWrap svg {
  width: clamp(1px, calc(21vw * (100 / var(--siteBasis))), calc(21px * var(--siteMax) / var(--siteBasis)));
  display: inline-block;
  position: absolute;
  top: 50%;
  left: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .WorkingGroupsFilter--searchBarWrap svg {
    left: clamp(1px, calc(14vw * (100 / var(--siteBasis))), calc(14px * var(--siteMax) / var(--siteBasis)));
  }
}
@media (min-width: 768px) {
  .WorkingGroupsFilter--railWrap {
    grid-area: 2/4/3/5;
  }
}
@media (min-width: 768px) {
  .WorkingGroupsFilter--contentWrap {
    grid-area: 2/1/3/4;
  }
}
.WorkingGroupsFilter--quickSearch {
  width: 100%;
  border: 1px solid #969696;
  border-radius: clamp(1px, calc(100vw * (100 / var(--siteBasis))), calc(100px * var(--siteMax) / var(--siteBasis)));
  padding: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(25vw * (100 / var(--siteBasis))), calc(25px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(60vw * (100 / var(--siteBasis))), calc(60px * var(--siteMax) / var(--siteBasis)));
  -webkit-appearance: none;
  font-family: "Noto Sans", sans-serif;
  background-color: #fff !important;
}
@media (max-width: 767px) {
  .WorkingGroupsFilter--quickSearch {
    padding: clamp(1px, calc(12vw * (100 / var(--siteBasis))), calc(12px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(15vw * (100 / var(--siteBasis))), calc(15px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(12vw * (100 / var(--siteBasis))), calc(12px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis)));
  }
}
.WorkingGroupsFilter--rail {
  border: 2px solid #D6DEE1;
  border-radius: clamp(1px, calc(7vw * (100 / var(--siteBasis))), calc(7px * var(--siteMax) / var(--siteBasis)));
  position: -webkit-sticky;
  position: sticky;
  top: calc(var(--headerHeight) + 20px);
}
@media (min-width: 768px) {
  .WorkingGroupsFilter--rail {
    padding: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis))) 15px;
  }
}
.WorkingGroupsFilter--railTitle {
  position: relative;
}
@media (min-width: 768px) {
  .WorkingGroupsFilter--railTitle {
    pointer-events: none;
  }
}
@media (max-width: 767px) {
  .WorkingGroupsFilter--railTitle {
    padding: clamp(1px, calc(15vw * (100 / var(--siteBasis))), calc(15px * var(--siteMax) / var(--siteBasis)));
    cursor: pointer;
    margin-bottom: 0 !important;
  }
  .WorkingGroupsFilter--railTitle:before {
    content: "";
    position: absolute;
    width: clamp(1px, calc(13vw * (100 / var(--siteBasis))), calc(13px * var(--siteMax) / var(--siteBasis)));
    height: clamp(1px, calc(22vw * (100 / var(--siteBasis))), calc(22px * var(--siteMax) / var(--siteBasis)));
    transform: translateY(-50%) rotate(0deg);
    top: 50%;
    right: clamp(1px, calc(15vw * (100 / var(--siteBasis))), calc(15px * var(--siteMax) / var(--siteBasis)));
    background-image: url('data:image/svg+xml,<svg width="13" height="23" viewBox="0 0 13 23" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M3 9.5293L7.00003 13.5293L11 9.5293" stroke="%232B2B2B" stroke-width="1.61791" stroke-linecap="round"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: 0.35s;
    transform-origin: center;
  }
  .WorkingGroupsFilter--railTitle.active ~ .WorkingGroupsFilter--filterBox {
    display: block;
  }
  .WorkingGroupsFilter--railTitle.active:before {
    transform: translateY(-50%) rotate(-180deg);
  }
}
@media (max-width: 767px) {
  .WorkingGroupsFilter--filterBox {
    padding: 0 clamp(1px, calc(15vw * (100 / var(--siteBasis))), calc(15px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
    display: none;
    margin-top: clamp(1px, calc(5vw * (100 / var(--siteBasis))), calc(5px * var(--siteMax) / var(--siteBasis)));
  }
}
.WorkingGroupsFilter--filterControl select {
  width: 100%;
  -webkit-appearance: none;
  border: 1px solid #9EA2AA;
  border-radius: clamp(1px, calc(3vw * (100 / var(--siteBasis))), calc(3px * var(--siteMax) / var(--siteBasis)));
  padding: clamp(1px, calc(12vw * (100 / var(--siteBasis))), calc(12px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(30vw * (100 / var(--siteBasis))), calc(30px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(12vw * (100 / var(--siteBasis))), calc(12px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(15vw * (100 / var(--siteBasis))), calc(15px * var(--siteMax) / var(--siteBasis)));
  margin-bottom: clamp(1px, calc(10vw * (100 / var(--siteBasis))), calc(10px * var(--siteMax) / var(--siteBasis)));
  background-image: url('data:image/svg+xml,<svg width="10" height="9" viewBox="0 0 10 9" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5.38049 8.48828L9.85239 0.742737H0.908601L5.38049 8.48828Z" fill="%230C8DC3"/></svg>');
  background-size: clamp(1px, calc(10vw * (100 / var(--siteBasis))), calc(10px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(10vw * (100 / var(--siteBasis))), calc(10px * var(--siteMax) / var(--siteBasis)));
  background-repeat: no-repeat;
  background-position: calc(100% - clamp(1px, calc(15vw * (100 / var(--siteBasis))), calc(15px * var(--siteMax) / var(--siteBasis)))) center;
  background-color: #fff !important;
  color: #00202C !important;
  font-family: "Noto Sans", sans-serif;
  --fontSize: 14;
  line-height: 140%;
}
@media (min-width: 768px) {
  .WorkingGroupsFilter--filterControl select {
    --fontSize: 16;
  }
}
@media (max-width: 767px) {
  .WorkingGroupsFilter--filterControl select {
    font-size: 14px;
  }
}
.WorkingGroupsFilter--filterControl legend, .WorkingGroupsFilter--filterControl label {
  display: none !important;
}
.WorkingGroupsFilter--browse {
  margin-top: clamp(1px, calc(40vw * (100 / var(--siteBasis))), calc(40px * var(--siteMax) / var(--siteBasis)));
}
@media (max-width: 767px) {
  .WorkingGroupsFilter--browse {
    margin-top: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
  }
}
.WorkingGroupsFilter--browse a {
  display: inline-block;
  color: #0c8dc3;
  text-decoration: none;
  padding: clamp(1px, calc(3vw * (100 / var(--siteBasis))), calc(3px * var(--siteMax) / var(--siteBasis))) 0;
}
.WorkingGroupsFilter--browse a:hover {
  text-decoration: underline;
}
.WorkingGroupsFilter--gridItem {
  width: calc(50% - 25px);
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .WorkingGroupsFilter--gridItem {
    width: 100%;
  }
}
.WorkingGroupsFilter--gridItemInner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  color: inherit;
  background: linear-gradient(99.75deg, rgba(140, 78, 159, 0.08) 12.87%, rgba(12, 141, 195, 0.08) 67.16%);
  width: 100%;
  padding: clamp(1px, calc(25vw * (100 / var(--siteBasis))), calc(25px * var(--siteMax) / var(--siteBasis)));
  position: relative;
  isolation: isolate;
  border-radius: clamp(1px, calc(4vw * (100 / var(--siteBasis))), calc(4px * var(--siteMax) / var(--siteBasis)));
  overflow: hidden;
  height: 100%;
}
@media (max-width: 767px) {
  .WorkingGroupsFilter--gridItemInner {
    padding: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
  }
}
.WorkingGroupsFilter--gridItemInner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(109.9deg, #8C4E9F 17.08%, #0C8DC3 101.61%);
  z-index: -1;
  opacity: 0;
  transition: 0.35s;
}
.WorkingGroupsFilter--gridItem .search-highlight {
  background-color: yellow;
  font-weight: bold;
}
.WorkingGroupsFilter--groupInfo {
  margin-bottom: clamp(1px, calc(20vw * (100 / var(--siteBasis))), calc(20px * var(--siteMax) / var(--siteBasis)));
}
.WorkingGroupsFilter--groupName {
  font-weight: 600;
}
@media (max-width: 767px) {
  .WorkingGroupsFilter--groupName {
    margin-bottom: clamp(1px, calc(8vw * (100 / var(--siteBasis))), calc(8px * var(--siteMax) / var(--siteBasis))) !important;
  }
}
.WorkingGroupsFilter--groupTags {
  gap: clamp(1px, calc(5vw * (100 / var(--siteBasis))), calc(5px * var(--siteMax) / var(--siteBasis)));
}
.WorkingGroupsFilter--groupTag {
  --fontSize: 10;
  display: inline-flex;
  border-radius: clamp(1px, calc(100vw * (100 / var(--siteBasis))), calc(100px * var(--siteMax) / var(--siteBasis)));
  padding: clamp(1px, calc(4vw * (100 / var(--siteBasis))), calc(4px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(12vw * (100 / var(--siteBasis))), calc(12px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(4vw * (100 / var(--siteBasis))), calc(4px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(10vw * (100 / var(--siteBasis))), calc(10px * var(--siteMax) / var(--siteBasis)));
  background-color: #035c81;
  margin: 0 !important;
  color: #fff;
  white-space: nowrap;
  display: inline-flex;
  gap: clamp(1px, calc(5vw * (100 / var(--siteBasis))), calc(5px * var(--siteMax) / var(--siteBasis)));
}
.WorkingGroupsFilter--groupTag span {
  opacity: 0.2;
  color: inherit;
}

.StatsMap__cards {
  display: flex;
  justify-content: center;
  gap: clamp(1px, calc(60vw * (100 / var(--siteBasis))), calc(60px * var(--siteMax) / var(--siteBasis)));
  padding: clamp(1px, calc(45vw * (100 / var(--siteBasis))), calc(45px * var(--siteMax) / var(--siteBasis))) 0 clamp(1px, calc(100vw * (100 / var(--siteBasis))), calc(100px * var(--siteMax) / var(--siteBasis)));
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .StatsMap__cards:before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    width: 2px;
    height: 100%;
    background-image: url("/wp-content/themes/crn/img/ui/dashed-line.svg");
    background-repeat: repeat-y;
    background-size: auto 100%;
  }
}
@media (max-width: 767px) {
  .StatsMap__cards {
    padding: 0 0 clamp(1px, calc(60vw * (100 / var(--siteBasis))), calc(60px * var(--siteMax) / var(--siteBasis)));
    flex-direction: column;
    gap: 20px;
  }
}
.StatsMap__card {
  padding: clamp(1px, calc(25vw * (100 / var(--siteBasis))), calc(25px * var(--siteMax) / var(--siteBasis))) clamp(1px, calc(35vw * (100 / var(--siteBasis))), calc(35px * var(--siteMax) / var(--siteBasis)));
  display: flex;
  gap: clamp(1px, calc(25vw * (100 / var(--siteBasis))), calc(25px * var(--siteMax) / var(--siteBasis)));
  border-radius: clamp(1px, calc(4vw * (100 / var(--siteBasis))), calc(4px * var(--siteMax) / var(--siteBasis)));
  background: linear-gradient(99.75deg, rgba(140, 78, 159, 0.08) 12.87%, rgba(12, 141, 195, 0.08) 67.16%);
}
@media (min-width: 768px) {
  .StatsMap__card {
    width: clamp(1px, calc(482vw * (100 / var(--siteBasis))), calc(482px * var(--siteMax) / var(--siteBasis)));
  }
}
@media (max-width: 767px) {
  .StatsMap__card {
    gap: clamp(1px, calc(16vw * (100 / var(--siteBasis))), calc(16px * var(--siteMax) / var(--siteBasis)));
    padding: clamp(1px, calc(17vw * (100 / var(--siteBasis))), calc(17px * var(--siteMax) / var(--siteBasis)));
  }
}
.StatsMap__card figure {
  width: clamp(1px, calc(62vw * (100 / var(--siteBasis))), calc(62px * var(--siteMax) / var(--siteBasis)));
  height: clamp(1px, calc(62vw * (100 / var(--siteBasis))), calc(62px * var(--siteMax) / var(--siteBasis)));
  border-radius: 100%;
  overflow: hidden;
  box-shadow: 0px 6px 13px 0px rgba(73, 95, 202, 0.0509803922), 0px 24px 24px 0px rgba(73, 95, 202, 0.0392156863), 0px 53px 32px 0px rgba(73, 95, 202, 0.031372549), 0px 95px 38px 0px rgba(73, 95, 202, 0.0117647059), 0px 148px 41px 0px rgba(73, 95, 202, 0);
}
@media (max-width: 767px) {
  .StatsMap__card figure {
    width: clamp(1px, calc(38vw * (100 / var(--siteBasis))), calc(38px * var(--siteMax) / var(--siteBasis)));
    height: clamp(1px, calc(38vw * (100 / var(--siteBasis))), calc(38px * var(--siteMax) / var(--siteBasis)));
  }
}
.StatsMap__card > div {
  flex: 1;
}
.StatsMap__card > div p {
  line-height: 1.4;
}
.StatsMap__main {
  position: relative;
  padding-top: clamp(1px, calc(35vw * (100 / var(--siteBasis))), calc(35px * var(--siteMax) / var(--siteBasis)));
  padding-bottom: clamp(1px, calc(35vw * (100 / var(--siteBasis))), calc(35px * var(--siteMax) / var(--siteBasis)));
}
@media (min-width: 768px) {
  .StatsMap__main {
    padding-top: clamp(1px, calc(240vw * (100 / var(--siteBasis))), calc(240px * var(--siteMax) / var(--siteBasis)));
    padding-bottom: clamp(1px, calc(180vw * (100 / var(--siteBasis))), calc(180px * var(--siteMax) / var(--siteBasis)));
    margin-top: clamp(calc(-50 * (100 / var(--siteBasis)) * 1vw), calc(-50px * var(--siteMax) / var(--siteBasis)), -1px);
  }
}
.StatsMap__main-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .StatsMap__main-bg {
    left: -6%;
    width: 112%;
    max-width: none;
  }
}
.StatsMap__main-bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-position: center;
}
@media (min-width: 768px) {
  .StatsMap__main-bg img {
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .StatsMap__main-bg img {
    object-fit: cover;
  }
}
.StatsMap__stats {
  position: relative;
  z-index: 5;
  max-width: clamp(1px, calc(970vw * (100 / var(--siteBasis))), calc(970px * var(--siteMax) / var(--siteBasis)));
  margin-left: auto;
  margin-right: auto;
}
.StatsMap__stats .container {
  padding: 0 !important;
}
.StatsMap__stats .Stats--item {
  box-shadow: 0px 6px 13px 0px rgba(73, 95, 202, 0.0509803922), 0px 24px 24px 0px rgba(73, 95, 202, 0.0392156863), 0px 53px 32px 0px rgba(73, 95, 202, 0.031372549), 0px 95px 38px 0px rgba(73, 95, 202, 0.0117647059), 0px 148px 41px 0px rgba(73, 95, 202, 0);
}