@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap");
img:not([width]) {
  width: 100%;
}

.flex {
  display: flex;
}
.flex.column {
  flex-direction: column;
}
.flex-desktop {
  display: flex;
}
@media screen and (max-width: 768px) {
  .flex-desktop {
    flex-direction: column;
  }
}

.wrap {
  flex-wrap: wrap;
}

.just-start {
  justify-self: flex-start;
}

.just-middle {
  justify-self: center;
}

@media screen and (min-width: 768px) {
  .just-end {
    justify-self: flex-end;
  }
}

.just-initial {
  justify-self: initial;
}

.align-top {
  align-self: flex-start;
}

.align-middle {
  align-self: center;
}

.align-bottom {
  align-self: flex-end;
}

.align-initial {
  align-self: initial;
}

.bg-center {
  background-position: center;
}

.bg-bottom {
  background-position: bottom;
}

.desktop {
  display: none;
}
@media screen and (min-width: 450px) {
  .desktop {
    display: block;
  }
  .desktop.flex {
    display: flex;
  }
}

table.desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  table.desktop {
    display: table;
  }
}

.mobile {
  display: block;
}
.mobile.flex {
  display: flex;
}
@media screen and (min-width: 450px) {
  .mobile {
    display: none;
  }
  .mobile.flex {
    display: none;
  }
}

table.mobile {
  display: table;
}
@media screen and (min-width: 768px) {
  table.mobile {
    display: none;
  }
}

.footnote:not(.text-center).sup {
  position: relative;
}
.footnote:not(.text-center).sup sup:first-of-type {
  position: absolute;
  width: 10px;
  text-align: right;
  display: block;
  left: -10px;
  top: 5px;
}

.footnote.asterisk:not(.text-center) span:first-of-type {
  left: -4px;
}
.footnote + .footnote {
  margin-top: calc(var(--space-xs) * -1);
}

.asterisk:not(.text-center) {
  position: relative;
}
.asterisk:not(.text-center) span:first-of-type {
  position: absolute;
  left: -4px;
}
@media screen and (min-width: 768px) {
  .asterisk:not(.text-center) span:first-of-type {
    left: -7px;
  }
}

.small-caps {
  text-transform: uppercase;
  font-size: 80%;
}

.radius-full {
  border-radius: var(--radius-full);
}

.radius {
  border-radius: var(--radius);
}

.gap-xl {
  gap: var(--gap-xl);
}

.gap-lg {
  gap: var(--gap-lg);
}

.gap-md {
  gap: var(--gap-md);
}

.gap-sm {
  gap: var(--gap-sm);
}

.gap-xs {
  gap: var(--gap-xs);
}

.website-width {
  max-width: var(--website-width);
}

.width-xl {
  max-width: var(--width-xl);
}

.width-lg {
  max-width: var(--width-lg);
}

.width-md {
  max-width: var(--width-md);
}

.width-sm {
  max-width: var(--width-sm);
}

.width-xs {
  max-width: var(--width-xs);
}

.website-width,
.width-xl,
.width-lg,
.width-md,
.width-sm,
.width-xs {
  width: 100%;
}
.website-width.center,
.width-xl.center,
.width-lg.center,
.width-md.center,
.width-sm.center,
.width-xs.center {
  margin-left: auto;
  margin-right: auto;
}

.bg-copy {
  background-color: var(--copy);
}

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

.bg-teal {
  background-color: var(--teal);
}

.teal {
  color: var(--teal);
}

.bg-lightTeal {
  background-color: var(--lightTeal);
}

.lightTeal {
  color: var(--lightTeal);
}

.bg-cyan {
  background-color: var(--cyan);
}

.cyan {
  color: var(--cyan);
}

.bg-orange {
  background-color: var(--orange);
}

.orange {
  color: var(--orange);
}

.bg-red {
  background-color: var(--red);
}

.red {
  color: var(--red);
}

.bg-yellow {
  background-color: var(--yellow);
}

.yellow {
  color: var(--yellow);
}

.bg-black {
  background-color: var(--black);
}

.black {
  color: var(--black);
}

.bg-darkGrey {
  background-color: var(--darkGrey);
}

.darkGrey {
  color: var(--darkGrey);
}

.bg-grey {
  background-color: var(--grey);
}

.grey {
  color: var(--grey);
}

.bg-lightGrey {
  background-color: var(--lightGrey);
}

.lightGrey {
  color: var(--lightGrey);
}

.bg-white {
  background-color: var(--white);
}

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

.bg-overlay {
  background-blend-mode: normal, multiply;
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.has-video {
  background: transparent;
}

body {
  font-family: "Instrument Sans", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
p {
  margin: 0;
  color: var(--copy);
}

h1,
.heading1 {
  font-size: var(--font-h1);
  font-weight: 700;
  line-height: 100%;
}

h2,
.heading2 {
  font-size: var(--font-h2);
  font-weight: 700;
  line-height: 120%;
}

h3,
.heading3 {
  font-size: var(--font-h3);
  font-weight: 700;
  line-height: 125%;
}

h4,
.heading4 {
  font-size: var(--font-h4);
  font-weight: 600;
  line-height: 120%;
}

p,
li,
td,
.heading-copy {
  font-size: var(--font-copy);
  font-weight: 400;
  line-height: 120%;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-weight: 700;
}
.eyebrow span {
  text-transform: lowercase;
}

.footnote {
  font-size: var(--font-footnote);
}

strong,
b {
  font-size: inherit;
  font-weight: 700;
}
strong strong,
strong b,
b strong,
b b {
  font-weight: 900;
}

a {
  font-size: inherit;
  color: inherit;
  text-decoration: underline;
}
@media (hover: hover) {
  a:hover {
    text-decoration: none;
  }
}
a[href^="tel:"] {
  text-decoration: none;
}
@media (hover: hover) {
  a[href^="tel:"]:hover {
    text-decoration: underline;
  }
}

sup {
  font-size: 0.55em;
  line-height: 0;
}
.btn sup {
  margin-top: -8px;
}

ul,
ol {
  margin: 0;
  padding: 0;
}
ul li,
ol li {
  color: var(--copy);
}

ul ul {
  list-style-type: disc;
}

ol {
  display: inline;
  list-style-position: inside;
}
ol li {
  display: inline list-item;
}
ol li::marker {
  font-weight: 600;
}

.content a:not(.btn) {
  color: var(--blue);
  font-weight: 700;
  overflow-wrap: break-word;
}
.content ul {
  list-style: none;
  padding-left: 0;
}
.content li {
  margin-top: var(--gap-xs);
  display: flex;
  align-items: flex-start;
}
.content li::before {
  content: "▪";
  margin: 0 var(--gap-xs);
  font-size: var(--font-footnote);
}
.content h2:not(.heading4) + p,
.content .heading2 + p {
  margin-top: var(--space-sm);
}
.content h2 + h3,
.content h2 + .heading3 {
  margin-top: var(--space-xs);
}
.content p + h3,
.content p + .heading3 {
  margin-top: var(--space-sm);
}
.content ul + h3,
.content ul + h4,
.content ul + .heading3,
.content ul + .heading4 {
  margin-top: var(--space-md);
}

button,
input,
select,
a {
  -webkit-appearance: none;
}
button:focus, button:focus-visible,
input:focus,
input:focus-visible,
select:focus,
select:focus-visible,
a:focus,
a:focus-visible {
  outline: 2px solid var(--teal);
}

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

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

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

@media screen and (max-width: 768px) {
  .text-left-mobile {
    text-align: left;
  }
  .text-left-mobile.footnote.sup {
    position: relative;
  }
  .text-left-mobile.footnote.sup sup:first-of-type {
    position: absolute;
    width: 10px;
    text-align: right;
    display: block;
    left: -10px;
    top: 5px;
  }
  .text-left-mobile.asterisk {
    position: relative;
  }
  .text-left-mobile.asterisk span:first-of-type {
    position: absolute;
    left: -7px;
  }
}
@media screen and (max-width: 768px) {
  .text-center-mobile {
    text-align: center;
  }
}
main {
  overflow: hidden;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  position: relative;
  min-height: 100%;
  overflow: inherit;
  margin: 0 auto;
}

body {
  background-color: var(--white);
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body.fixed {
  overflow: hidden;
}

main {
  overflow: hidden;
  margin-bottom: calc(-1 * var(--footer-height));
}

section {
  background-size: cover;
  position: relative;
}
section:has(.fade-in-out) * {
  color: inherit;
}

.container,
.grid {
  margin: 0 auto;
  width: 90vw;
  max-width: var(--website-width);
}
@media screen and (max-width: 992px) {
  .container,
  .grid {
    width: calc(100% - 48px);
  }
  .container .container,
  .grid .container {
    width: 100%;
  }
}

.full-width-container {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
@media screen and (max-width: 992px) {
  .full-width-container .container {
    width: calc(100% - 48px);
  }
}

.content {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.has-video {
  position: relative;
}
.has-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: -1;
}

::placeholder {
  color: rgba(0, 0, 0, 0.5);
  font-style: italic;
}

input, select, textarea {
  border: 1px solid var(--lightGrey);
}

input:not([type=radio]):not([type=submit]),
select {
  box-sizing: border-box;
  width: 100%;
  font-size: var(--font-small);
  border-radius: 5px;
  height: 50px;
  padding: 0 0 0 var(--gap-sm);
}

input[type=radio] {
  -webkit-appearance: radio;
}

select {
  background-color: var(--white);
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("../icon/caret.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) center;
  background-size: 14px 8px;
  padding-right: 30px;
}

label,
legend {
  font-size: var(--font-small);
  font-weight: 700;
  color: var(--copy);
  display: block;
  margin: 0 0 var(--gap-sm) 0;
}

fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}

textarea {
  width: 100%;
  border-color: rgba(0, 0, 0, 0.5);
}

.custom-form-required span,
label span {
  color: var(--alert);
}

.gfield_radio {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-md);
  min-height: 50px;
}
.gfield_radio > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap-xs);
}
.gfield_radio label {
  margin-bottom: 0;
  font-weight: 500;
}

.gform_fields {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  column-gap: var(--gap-sm);
  row-gap: var(--space-sm);
  padding: var(--space-xs);
}
@media screen and (min-width: 768px) {
  .gform_fields {
    padding: var(--space-md);
  }
}

.gfield {
  width: 100%;
}

.gfield--width-half {
  flex: 0 0 100%;
}
@media screen and (min-width: 768px) {
  .gfield--width-half {
    flex: 0 0 calc(50% - var(--gap-sm) / 2);
  }
}

.gfield_description {
  font-size: var(--font-small);
}

.gform_footer {
  display: flex;
  justify-content: flex-end;
  padding: var(--space-md) var(--space-xs);
}
@media screen and (min-width: 768px) {
  .gform_footer {
    padding: var(--space-md);
  }
}

.gfield_error input,
.gfield_error select,
.gfield_error textarea {
  border-color: var(--alert);
  background-color: #FEEFEF;
}
.gfield_error input::placeholder,
.gfield_error select::placeholder,
.gfield_error textarea::placeholder {
  color: var(--alert);
}

.validation_message {
  color: var(--alert);
  font-style: italic;
  font-weight: 400;
  position: relative;
  top: 5px;
}

.gform_submission_error.hide_summary {
  display: none;
}

.gform_confirmation_message {
  background-color: var(--white);
}

.table-content {
  max-width: 900px;
  width: 95%;
  margin: 0 auto;
}
.table-content .heading3 span {
  font-weight: 500;
}
.table-content table {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
}
.table-content table.mobile {
  table-layout: auto;
}
.table-content th,
.table-content td {
  padding: 4px;
  color: var(--tableBlue);
}
@media screen and (min-width: 768px) {
  .table-content th,
  .table-content td {
    padding: var(--space-xs);
  }
}
.table-content th:first-of-type {
  text-align: left;
}
.table-content td {
  width: auto;
}
.table-content td:not(:first-of-type) {
  text-align: center;
}
.table-content td:first-of-type {
  min-width: 105px;
  font-weight: 600;
}

.back-to-top {
  margin-left: auto;
}

footer {
  border-top: 5px solid var(--teal);
  padding: var(--space-md) 0 var(--space-lg);
}
footer hr {
  height: 1px;
}

@media screen and (min-width: 768px) {
  .social-navigation {
    margin-left: var(--space-xl);
  }
}
.social-navigation img {
  width: 40px;
}

.footer-logo {
  margin: 0 auto 0 0;
}
.footer-logo img {
  display: block;
  max-width: 300px;
}

.footer-top-menu,
.footer-menu {
  list-style: none;
}
.footer-top-menu > li,
.footer-menu > li {
  font-size: var(--font-small);
}
.footer-top-menu a,
.footer-menu a {
  text-decoration: none;
  display: block;
}
@media (hover: hover) {
  .footer-top-menu a:hover,
  .footer-menu a:hover {
    text-decoration: underline;
  }
}

.footer-top-menu {
  flex-direction: column;
  justify-content: space-between;
  gap: var(--gap-sm);
}
@media screen and (min-width: 768px) {
  .footer-top-menu {
    flex-direction: row;
  }
}
.footer-top-menu .sub-menu {
  display: none;
}
@media screen and (min-width: 768px) {
  .footer-top-menu .sub-menu {
    display: flex;
  }
}
.footer-top-menu > li > a {
  padding-bottom: var(--gap-xs);
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .footer-top-menu > li > a {
    pointer-events: none;
  }
}
.footer-top-menu ul {
  list-style: none;
  flex-direction: column;
  gap: var(--gap-xs);
}
.footer-top-menu ul li {
  font-size: var(--font-footnote);
}

.footer-bottom {
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .footer-navigation {
    order: -1;
    flex: 1 1 100%;
    border-bottom: 1px solid var(--copy);
    margin-bottom: var(--gap-xl);
    padding-bottom: var(--space-sm);
  }
  .footer-navigation ul {
    flex-direction: column;
    gap: var(--gap-sm);
  }
}
#hamburger {
  display: none;
}

@media screen and (max-width: 1134px) {
  #hamburger {
    display: block;
    padding: 0 var(--gap-sm);
    min-width: 30px;
    height: 30px;
    position: absolute;
    top: 80px;
    right: var(--gap-lg);
    z-index: 999;
    background-color: transparent;
    outline: 0;
    border: 0;
  }
  #hamburger span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: var(--black);
    border-radius: 6px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
  }
  #hamburger span:nth-child(1) {
    top: 0px;
  }
  #hamburger span:nth-child(2), #hamburger span:nth-child(3) {
    top: 10px;
  }
  #hamburger span:nth-child(4) {
    top: 20px;
  }
  #hamburger.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
  }
  #hamburger.open span:nth-child(2) {
    transform: rotate(45deg);
  }
  #hamburger.open span:nth-child(3) {
    transform: rotate(-45deg);
  }
  #hamburger.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
  }
}
header {
  width: 100%;
  z-index: 999;
  position: relative;
  margin: 0 auto;
}
header > .container {
  box-sizing: border-box;
  flex-direction: column;
}
@media screen and (min-width: 768px) and (max-width: 1134px) {
  header > .container {
    min-height: 85px;
  }
}
header._full-width {
  box-shadow: 0 1px 18.6px 0 rgba(0, 0, 0, 0.08);
}
header._full-width > .container {
  width: 100%;
  max-width: 100%;
}
@media screen and (min-width: 1135px) {
  header._full-width > .container .top-menu,
  header._full-width > .container .full-menu {
    width: 95vw;
    max-width: var(--website-width);
    margin: 0 auto;
  }
}
header._sticky {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s;
}
header._sticky.hidden:not(:has(.open)) {
  transform: translateX(-50%) translateY(-100%);
}
header._block .main-menu, header._pill .main-menu {
  max-width: var(--website-width);
  margin-left: auto;
  margin-right: auto;
}
header._block .top-menu,
header._block .full-menu,
header._block .top-drawer div, header._pill .top-menu,
header._pill .full-menu,
header._pill .top-drawer div {
  padding: 0 2.5vw;
}
header._pill {
  border-radius: 0 0 var(--radius) var(--radius);
}
header summary {
  background-color: var(--yellow);
  height: 60px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
header summary p {
  max-width: 95vw;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 auto;
  position: relative;
  padding-right: 25px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  header summary p {
    font-size: var(--font-footnote);
  }
}
header summary p:after {
  position: absolute;
  display: block;
  content: "";
  width: 14px;
  height: 14px;
  top: 50%;
  left: auto;
  right: 0px;
  bottom: auto;
  background-image: url(../icon/plus.svg);
  filter: var(--darkBlue);
  transition: 0.3s;
  transform: rotate(0deg) translateY(-50%);
  transform-origin: top;
}
header .footnote {
  margin-top: 15px;
}
header details[open] summary p:after {
  transform: rotate(45deg) translateY(-50%);
}

.top-drawer {
  min-height: 230px;
  position: absolute;
  background: var(--teal);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
._full-width .top-drawer {
  width: 100%;
}
.top-drawer div {
  margin: auto;
  width: 95vw;
  max-width: var(--website-width);
  padding: var(--space-xs) 0;
  box-sizing: border-box;
}

.top-nav {
  background-color: var(--teal);
  height: 45px;
}

@media screen and (max-width: 1134px) {
  .header-logo {
    margin: 25px 0 -10px var(--gap-sm);
    align-self: flex-start;
  }
}
.header-logo img {
  max-width: var(--header-logo);
  max-height: 55px;
  margin-top: 0;
}

.full-menu {
  align-items: center;
  gap: var(--gap-xl);
}
@media screen and (min-width: 1135px) {
  .full-menu {
    padding: var(--space-xs) 0;
  }
}
@media screen and (min-width: 1135px) {
  .full-menu.left-align {
    justify-content: flex-start;
  }
  .full-menu.center-align {
    justify-content: center;
  }
  .full-menu.right-align {
    justify-content: flex-end;
  }
  .full-menu.space-between {
    justify-content: space-between;
  }
}

@media screen and (max-width: 1134px) {
  .full-menu,
  .main-menu, .main-menu .flex {
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
}

@media screen and (max-width: 1134px) {
  .main-menu {
    height: 0;
    width: 100%;
  }
}
.full-menu.open .main-menu {
  height: initial;
}

.full-menu.open {
  min-height: 100vh;
}
.top-menu {
  height: 100%;
  align-items: center;
  justify-content: flex-end;
  margin-right: var(--gap-md);
}
.top-menu ul {
  list-style: none;
}
.top-menu p, .top-menu a, .top-menu li {
  font-size: var(--font-footnote);
}
.top-menu a {
  text-decoration: none;
  padding: 0 var(--gap-md);
}
@media (hover: hover) {
  .top-menu a:hover {
    text-decoration: underline;
  }
}

.main-menu > ul {
  padding: 0;
  margin: 0 0 0 auto;
  width: 100%;
}
@media screen and (min-width: 1135px) {
  .main-menu > ul {
    gap: var(--gap-lg);
  }
}
.main-menu > ul > li {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 0;
  font-size: var(--font-small);
  padding: 10px;
  text-wrap: nowrap;
}
@media screen and (max-width: 1134px) {
  .main-menu > ul > li {
    font-size: var(--font-h4);
    font-weight: 600;
    padding: 0;
  }
  .main-menu > ul > li.open {
    border-bottom: 0;
  }
}
.main-menu > ul > li:after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 3px;
  top: auto;
  left: 0;
  right: auto;
  bottom: -3px;
  background-color: var(--teal);
  opacity: 0;
  transition: 0.3s;
}
@media (hover: hover) {
  .main-menu > ul > li:hover:after {
    opacity: 1;
  }
}
.main-menu > ul > li > a {
  text-decoration: none;
  position: relative;
}
@media screen and (max-width: 1134px) {
  .main-menu > ul > li > a {
    padding: 0 var(--gap-lg);
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.main-menu > ul > li.menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  width: 13px;
  height: 8px;
  background-image: url(../icon/triangle.svg);
  filter: var(--svg-copy);
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: var(--gap-sm);
  position: relative;
  top: 0;
  left: -2px;
  transition: 0.3s;
}
@media screen and (max-width: 1134px) {
  .main-menu > ul > li.menu-item-has-children > a::after {
    width: 21px;
    height: 13px;
  }
}
.main-menu > ul > li.open.menu-item-has-children {
  background-color: var(--lightTeal);
}
.main-menu > ul > li.open.menu-item-has-children .sub-menu {
  display: block;
}
.main-menu > ul > li.open.menu-item-has-children > a::after {
  transform: rotate(180deg);
}

@media screen and (min-width: 1135px) {
  .main-menu .current-menu-item:after,
  .main-menu .current-menu-parent:after {
    opacity: 1;
  }
}

#overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999999;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}
#overlay[aria-hidden=false] {
  pointer-events: all;
  opacity: 1;
}

.modal-item {
  position: fixed;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--white);
  width: 95vw;
  max-width: 1250px;
  box-sizing: border-box;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  z-index: 99999999;
}
.modal-item[aria-hidden=false] {
  pointer-events: all;
  opacity: 1;
  top: 50%;
}

.modal-content {
  padding: var(--space-sm);
  gap: var(--space-sm);
  align-items: flex-start;
}
@media screen and (max-width: 992px) {
  .modal-content {
    padding: var(--gap-sm);
    gap: var(--gap-sm);
  }
  .modal-content > div {
    height: calc(100svh - 420px);
    overflow: scroll;
  }
}
@media screen and (max-width: 992px) and (max-width: 1200px) {
  .modal-content {
    flex-direction: column;
  }
}
.modal-content img {
  flex: 1 0 420px;
}
@media screen and (max-width: 992px) {
  .modal-content img {
    flex: 1 0 250px;
    max-width: 420px;
    margin: 0 auto;
  }
}
.modal-content .heading4 {
  font-weight: 400;
  margin-top: var(--gap-sm);
}

.close {
  position: absolute;
  cursor: pointer;
  top: 0;
  right: 0;
  height: 40px;
  width: 40px;
  background-color: var(--teal);
  border: 3px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
@media (hover: hover) {
  .close:hover {
    background-color: var(--lightTeal);
  }
}
.close span {
  font-size: 25px;
  height: 35px;
  font-weight: 600;
}

@media screen and (min-width: 1135px) {
  .menu-item-has-children a {
    align-self: flex-end;
  }
}

.main-menu .sub-menu {
  list-style: none;
  display: none;
  background-color: var(--white);
  overflow: hidden;
}
@media screen and (min-width: 1135px) {
  .main-menu .sub-menu {
    width: 235px;
    box-shadow: 12px 14px 0 0 rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 39px;
    left: 0;
    z-index: 9;
  }
}
.main-menu .sub-menu li {
  border-top: 2px solid #D8F8F2;
  position: relative;
  font-size: var(--font-h4);
  padding: var(--gap-sm) 0;
  margin: 0 var(--gap-md);
}
.main-menu .sub-menu li:first-of-type {
  border: 0;
}
@media screen and (min-width: 1135px) {
  .main-menu .sub-menu li {
    font-size: var(--font-small);
    border-width: 1px;
    padding: 0;
    margin: 0;
  }
}
.main-menu .sub-menu a {
  color: var(--copy);
  text-transform: none;
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 0 var(--gap-xs);
}
@media screen and (min-width: 1135px) {
  .main-menu .sub-menu a {
    padding: var(--gap-sm);
  }
}
.main-menu .sub-menu a:after {
  position: absolute;
  display: block;
  content: "";
  width: 18px;
  height: 10px;
  top: auto;
  left: auto;
  right: 15px;
  bottom: 50%;
  background-image: url(../icon/caret.svg);
  background-repeat: no-repeat;
  transform: rotate(-90deg) translateY(-55%);
  transform-origin: bottom;
}
@media (hover: none), screen and (max-width: 1134px) {
  .main-menu .sub-menu a:after {
    width: 18px;
    height: 10px;
    right: 15px;
  }
}
@media screen and (min-width: 1135px) {
  .main-menu .sub-menu a:after {
    width: 11px;
    height: 7px;
    right: 5px;
  }
}
@media (hover: hover) {
  .main-menu .sub-menu a:hover {
    background-color: var(--lightTeal);
    text-decoration: underline;
  }
}

#menu-item-2493 .sub-menu {
  left: -56px;
}

.col-single {
  flex-basis: 100%;
  flex-shrink: 0;
}

.col-double {
  display: grid;
  grid-template-columns: 1fr;
  margin-left: auto;
  margin-right: auto;
}
.col-double:not([class*=width-]) {
  max-width: calc(var(--website-width) / 2);
}
.col-double > div {
  box-sizing: border-box;
}
.col-double > div:has(.img) {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .col-double:not([class*=width-]) {
    max-width: 100%;
  }
  .col-double.md-md {
    grid-template-columns: 1fr 1fr;
  }
  .col-double.lg-sm {
    grid-template-columns: 5fr 3fr;
  }
  .col-double.sm-lg {
    grid-template-columns: 3fr 5fr;
  }
  .col-double.xl-xs {
    grid-template-columns: 4fr 1fr;
  }
  .col-double.xs-xl {
    grid-template-columns: 1fr 4fr;
  }
}

.col-trio {
  display: grid;
  grid-template-columns: 1fr;
  max-width: calc(var(--website-width) / 3);
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 992px) {
  .col-trio {
    max-width: 100%;
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media screen and (max-width: 768px) {
  .reverse-mobile > *:last-child {
    order: -1;
  }
  .center-mobile > div {
    text-align: center;
  }
}
@media screen and (min-width: 992px) {
  .overlap-top,
  .overlap-bottom {
    position: relative;
    z-index: 99;
  }
  .overlap-top {
    transform: translateY(-100px);
  }
  .overlap-bottom {
    transform: translateY(80px);
  }
}
.hero {
  position: relative;
  overflow: hidden;
  background-size: contain;
  background-position: top right;
  background-repeat: no-repeat;
  background-color: #F5FEFD;
  display: flex;
  align-items: flex-end;
  min-height: 260px;
}
@media screen and (min-width: 768px) {
  .hero {
    background-position: center right;
    align-items: center;
    min-height: 200px;
  }
}
@media screen and (min-width: 1200px) {
  .hero {
    min-height: 360px;
  }
}
.hero > .flex {
  padding: var(--space-sm) 30px var(--space-sm) 0;
  height: 100%;
  box-sizing: border-box;
  flex-direction: column;
  gap: var(--space-sm);
}
.hero .btn-container:has(.btn:nth-child(2)) {
  margin-top: var(--space-sm);
  column-gap: var(--space-sm);
  width: 100%;
}
.hero .btn-container:has(.btn:nth-child(2)) .btn {
  min-width: 300px;
}
@media screen and (max-width: 768px) {
  .hero .btn-container:has(.btn:nth-child(2)) .btn {
    width: 100%;
  }
}
.hero.tall {
  background-position: top right;
  background-size: auto 540px;
  min-height: 540px;
}
@media screen and (min-width: 768px) {
  .hero.tall {
    background-color: #fafafa;
    background-position: 60% bottom;
    background-size: cover;
    min-height: 720px;
  }
}
.hero.tall .hero-content {
  max-width: 875px;
}

@media screen and (min-width: 768px) {
  .hero-content {
    max-width: 50%;
  }
}
.hero-content.text-center {
  margin: 0 auto;
}
.hero-content.text-right {
  margin: 0 0 0 auto;
}

.tabs-header {
  display: flex;
  background: var(--white);
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
  border-radius: var(--radius-full);
  height: 50px;
  overflow: hidden;
  position: relative;
}
.tabs-header:before {
  content: " ";
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
  pointer-events: none;
}
.tabs-header:has(.active:first-child):before {
  left: 0;
}
.tabs-header:has(.active:last-child):before {
  left: 50%;
}
.tabs-header:has(.active[data-tab=FAQs]):before {
  background-color: var(--yellow);
}
.tabs-header:has(.active[data-tab=resources]):before {
  background-color: var(--cyan);
}

.tab-button {
  text-align: center;
  border: 0;
  cursor: pointer;
  background: transparent;
  font-family: "proxima-nova", system-ui, sans-serif;
  font-size: var(--font-copy);
  flex: 1 0 50%;
  z-index: 9;
  border-radius: var(--radius-full);
  font-weight: 600;
}

.tab-button.active {
  font-weight: 800;
}

.tab-panel {
  display: none;
  scroll-margin-top: 100px;
}

.tab-panel.active {
  display: block;
}

.tabs-table-header {
  margin: var(--space-xs) 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-lg);
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .tabs-table-header {
    justify-content: space-between;
  }
}

.tab-table-button {
  font-family: "proxima-nova", system-ui, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  min-height: 70px;
  border: 2px solid;
  border-radius: var(--radius-full);
  font-size: var(--font-copy);
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s;
  background-color: transparent;
  line-height: 120%;
  border-color: var(--cyan);
  color: var(--white);
  position: relative;
}
.tab-table-button span {
  width: 310px;
  padding: 0 var(--space-xs);
  box-sizing: border-box;
}
.tab-table-button b {
  font-weight: 900;
}
.tab-table-button:after {
  position: absolute;
  display: block;
  content: "";
  width: 14px;
  height: 14px;
  top: auto;
  left: auto;
  right: 20px;
  bottom: auto;
  background-image: url(../icon/plus.svg);
  filter: var(--svg-white);
  transition: 0.3s;
}
.tab-table-button.active {
  color: var(--darkBlue);
  background-color: var(--cyan);
  transition: 0.3s;
}
.tab-table-button.active:after {
  background-image: url(../icon/minus.svg);
  background-repeat: no-repeat;
  background-position: center;
  filter: var(--svg-darkBlue);
}
@media (hover: hover) {
  .tab-table-button:hover {
    color: var(--darkBlue);
    background-color: var(--cyan);
  }
  .tab-table-button:hover:after {
    filter: var(--svg-darkBlue);
  }
}

.tab-table-content > div {
  display: none;
}
.tab-table-content > div.active {
  display: block;
}

.teal-border {
  border: 3px solid var(--teal);
}
.teal-border.col-single {
  padding: 0 var(--space-sm);
}

.accordion-row {
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid var(--blue);
}
.accordion-row:first-of-type {
  border-top: 1px solid var(--blue);
}

.accordion-title {
  padding: var(--gap-lg);
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: var(--gap-lg);
}
.accordion-title::-webkit-details-marker {
  display: none;
}
@media (hover: hover) {
  .accordion-title {
    cursor: pointer;
  }
}
.accordion-title p:first-of-type {
  font-size: var(--font-h5);
  font-weight: 700;
  color: var(--tableBlue);
}
.accordion-title p:first-of-type:has(+ p) {
  margin-bottom: var(--space-xs);
}
.accordion-title:after {
  content: "";
  display: block;
  background-image: url("../icon/plus.svg");
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-size: contain;
  transition: 0.3s;
  margin-top: 5px;
  flex-shrink: 0;
  filter: var(--svg-tableBlue);
}
[open] .accordion-title:after {
  background-image: url("../icon/minus.svg");
  margin-top: 15px;
}

.accordion-content {
  overflow: hidden;
  transition: 0.3s;
  padding: 0 var(--gap-lg);
}
[open] .accordion-content {
  padding-bottom: var(--space-xs);
}
.accordion-content .footnote {
  position: relative;
  left: 5px;
}

.btn-container {
  display: flex;
}
.content + .btn-container {
  margin-top: var(--space-xs);
}
.btn-container:has(.btn:nth-child(2)) {
  flex-wrap: wrap;
  gap: var(--gap-sm);
}
.text-center .btn-container, .btn-container.center {
  justify-content: center;
}
.text-right .btn-container {
  justify-content: flex-end;
}

.buttons-full .btn {
  width: 100%;
  justify-content: flex-start;
  font-size: 1.15rem;
  text-transform: none;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 175px;
  width: fit-content;
  min-height: 55px;
  padding: 0 var(--gap-lg);
  box-sizing: border-box;
  border: 2px solid;
  font-size: var(--font-copy);
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s;
  background-color: var(--teal);
  border-color: var(--teal);
  color: var(--copy);
  line-height: 120%;
}
.btn span {
  display: contents;
}
.btn.has-icon:after {
  filter: var(--svg-copy);
}
.btn.bg-orange {
  background-color: var(--orange);
  border-color: var(--orange);
}
.btn.bg-red {
  background-color: var(--red);
  border-color: var(--red);
}
.btn.outlined {
  background-color: var(--white);
}
.btn.outlined.has-icon:after {
  filter: var(--svg-teal);
}
.btn.outlined.bg-orange.has-icon:after {
  filter: var(--svg-orange);
}
.btn.outlined.bg-red.has-icon:after {
  filter: var(--svg-red);
}
.btn.outlined:focus, .btn.outlined:focus-visible {
  border-width: 5px;
  outline: 0;
}
@media (hover: hover) {
  .btn:hover {
    background-color: var(--lightTeal);
  }
  .btn:hover.has-icon:after {
    filter: var(--svg-teal);
  }
  .btn:hover.bg-orange {
    background-color: var(--lightOrange);
  }
  .btn:hover.bg-orange.has-icon:after {
    filter: var(--svg-orange);
  }
  .btn:hover.bg-red {
    background-color: var(--lightRed);
  }
  .btn:hover.bg-red.has-icon:after {
    filter: var(--svg-red);
  }
}
.btn.has-icon {
  position: relative;
}
.btn.has-icon:after {
  background-size: contain;
  background-repeat: no-repeat;
  transition: 0.3s;
}
.btn.has-icon:not(.arrowL) {
  padding-right: 50px;
}
.btn.has-icon:not(.arrowL):after {
  position: absolute;
  display: block;
  content: "";
  width: 12px;
  height: 12px;
  top: auto;
  left: auto;
  right: 20px;
  bottom: auto;
}
.btn.external:after {
  background-image: url(../icon/external.svg);
}
.btn.search:after {
  background-image: url(../icon/search.svg);
}
.btn.download:after {
  background-image: url(../icon/download.svg);
}
.btn.arrowR:after {
  background-image: url(../icon/caret.svg);
  transform: rotate(-90deg);
}
.btn.dArrow:after {
  background-image: url(../icon/double-arrow.svg);
}
.btn.arrowL {
  padding-left: 50px;
}
.btn.arrowL:after {
  position: absolute;
  display: block;
  content: "";
  width: 12px;
  height: 12px;
  top: auto;
  left: 20px;
  right: auto;
  bottom: auto;
  background-image: url(../icon/caret.svg);
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(90deg);
}
@media (prefers-contrast: more) {
  .btn {
    background-color: var(--white);
    color: var(--black);
    border-color: var(--black);
  }
  .btn:after {
    filter: none;
  }
}

@media screen and (min-width: 992px) {
  .cta img {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  .cta {
    height: 360px;
    position: relative;
    left: 50%;
    transform: translateX(-54%);
    width: 1600px;
  }
}
@media screen and (min-width: 992px) {
  .cta:before {
    position: absolute;
    display: block;
    content: "";
    width: 780px;
    height: 360px;
    top: 0;
    left: 0;
    right: auto;
    bottom: auto;
    background-image: url(/wp-content/uploads/bg-cta.jpg);
    background-repeat: no-repeat;
  }
}
@media screen and (min-width: 992px) {
  .cta:after {
    position: absolute;
    display: block;
    content: "";
    width: 240px;
    height: 240px;
    top: auto;
    left: 1500px;
    right: auto;
    bottom: 0;
    background-image: url(/wp-content/uploads/bg-cta.jpg);
    background-repeat: no-repeat;
    background-position: -700px -180px;
    background-size: 470%;
  }
}
.cta .content {
  padding: var(--space-sm) 0 var(--space-lg);
}
.cta .content h2:not(.heading4) + p, .cta .content .heading2 + p {
  margin-top: 0;
}
@media screen and (min-width: 992px) {
  .cta .content {
    position: absolute;
    top: 50%;
    left: 930px;
    width: 480px;
    transform: translateY(-50%);
    padding: 0;
  }
}

.cta-square {
  display: none;
  width: 60px;
  height: 60px;
  z-index: 9;
  position: absolute;
  background-color: var(--lightTeal);
}
@media screen and (min-width: 992px) {
  .cta-square {
    display: block;
  }
}

.cta-square1 {
  top: 0px;
  left: 0px;
}

.cta-square2 {
  top: 0px;
  left: 60px;
}

.cta-square3 {
  top: 0px;
  left: 180px;
}

.cta-square4 {
  top: 0px;
  left: 480px;
}

.cta-square5 {
  top: 0px;
  left: 600px;
}

.cta-square6 {
  top: 0px;
  left: 660px;
}

.cta-square7 {
  top: 0px;
  left: 720px;
}

.cta-square8 {
  top: 60px;
  left: 0px;
}

.cta-square9 {
  top: 60px;
  left: 60px;
}

.cta-square10 {
  top: 60px;
  left: 120px;
}

.cta-square11 {
  top: 60px;
  left: 540px;
}

.cta-square12 {
  top: 60px;
  left: 660px;
}

.cta-square13 {
  top: 120px;
  left: 0px;
}

.cta-square14 {
  top: 120px;
  left: 720px;
}

.cta-square15 {
  top: 180px;
  left: 60px;
}

.cta-square16 {
  top: 180px;
  left: 600px;
}

.cta-square17 {
  top: 240px;
  left: 300px;
}

.cta-square18 {
  top: 240px;
  left: 660px;
}

.cta-square19 {
  top: 240px;
  left: 720px;
}

.cta-square20 {
  top: 300px;
  left: 600px;
}

.cta-square21 {
  top: 300px;
  left: 720px;
}

.cta-square22 {
  top: 120px;
  left: 1500px;
}

.cta-square23 {
  top: 120px;
  left: 1560px;
}

.cta-square24 {
  top: 120px;
  left: 1680px;
}

.cta-square25 {
  top: 180px;
  left: 1500px;
}

.cta-square26 {
  top: 180px;
  left: 1560px;
}

.cta-square27 {
  top: 180px;
  left: 1620px;
}

.cta-square28 {
  top: 240px;
  left: 1500px;
}

.cta-square2 {
  background-color: var(--orange);
}

.cta-square10 {
  background-color: var(--teal);
}

.cta-square17 {
  background-color: var(--yellow);
}

.cta-square20 {
  background-color: var(--red);
}

hr {
  position: relative;
  width: 100%;
  height: 8px;
  display: block;
  border: 0;
  margin: 0;
}
hr.orange {
  background-color: var(--lightOrange);
}

.img {
  width: 100%;
}

.fpo {
  width: 100%;
  height: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--grey);
  border-radius: var(--radius);
}
.fpo p {
  font-size: var(--font-h1);
  font-weight: bold;
  color: var(--copy);
}

.spacer.space-xl {
  height: var(--space-xl);
}
.spacer.space-lg {
  height: var(--space-lg);
}
.spacer.space-md {
  height: var(--space-md);
}
.spacer.space-sm {
  height: var(--space-sm);
}
.spacer.space-xs {
  height: var(--space-xs);
}

.video-resource {
  margin-bottom: var(--space-lg);
}
.video-resource > .flex {
  flex-direction: column;
  gap: var(--gap-xl);
}
@media screen and (min-width: 768px) {
  .video-resource > .flex {
    gap: var(--space-md);
    flex-direction: row;
  }
}
.video-resource .content {
  align-self: center;
}
@media screen and (min-width: 768px) {
  .video-resource:nth-of-type(odd) .footnote {
    text-align: right;
  }
  .video-resource:nth-of-type(odd) > .flex {
    flex-direction: row-reverse;
  }
}
.video-resource:last-of-type {
  background-image: url("data:image/svg+xml,%3Csvg width='15' height='15' viewBox='0 0 15 15' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='7.5' cy='7.5' r='3' fill='%2341C6E8'/%3E%3C/svg%3E");
  background-position: bottom;
  background-size: 8px 12px;
  background-repeat: repeat-X;
  background-clip: padding-box;
  padding: 0 0 var(--space-lg);
  margin-bottom: 0;
}
.video-resource .footnote {
  margin-top: var(--space-xs);
}
@media screen and (max-width: 768px) {
  .video-resource .btn {
    width: 100%;
    text-align: center;
    padding: var(--gap-sm) var(--space-sm);
  }
}

.preview-image {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
  max-width: 600px;
}
.preview-image img {
  border-radius: 45px;
  box-shadow: 20px 20px 2px 0 rgba(0, 0, 0, 0.25);
}
.preview-image span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  border: 6px solid var(--white);
  border-radius: var(--radius-full);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #07A8DA;
  font-size: var(--font-h2);
  font-family: system-ui, sans-serif;
}

.transcript {
  position: relative;
  display: flex;
  gap: var(--gap-xs);
}
.transcript::before {
  content: "+";
  color: var(--white);
  font-weight: 700;
  width: 16px;
  height: 16px;
  border: 2px solid var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-references {
  display: flex;
  flex-direction: column;
  gap: var(--gap-xs);
}

.ref-item {
  font-size: var(--font-footnote);
}

.leadership {
  row-gap: var(--space-lg);
  column-gap: var(--space-lg);
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--gap-sm);
}
.card img {
  max-width: 250px;
  margin-bottom: var(--gap-md);
}
.card .heading4 {
  font-weight: 400;
}

.splide__track {
  padding-right: 14px !important;
  padding-bottom: var(--space-sm);
}

.splide__slide {
  background-color: var(--white);
  box-shadow: 12px 14px 0 0 rgba(0, 0, 0, 0.2);
  padding: var(--space-xs);
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm);
}
.splide__slide > a:first-of-type {
  font-size: var(--font-h3);
  font-weight: 700;
  line-height: 125%;
  text-decoration: none;
}

.feed-date {
  font-size: var(--font-small);
}

.rss-button {
  margin-top: auto;
  margin-left: auto;
  text-transform: none;
  min-width: 150px;
}

.splide__arrows {
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 350px;
  z-index: 0;
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 640px) {
  .splide__arrows {
    bottom: -15px;
  }
}
@media screen and (min-width: 1025px) {
  .splide__arrows {
    width: 250px;
  }
}

.splide__arrow {
  width: 55px;
  background: none;
  border: none;
}
.splide__arrow svg {
  filter: var(--svg-red);
}

.splide__arrow--prev svg {
  cursor: pointer;
  transform: rotate(180deg);
}

.splide__pagination {
  z-index: 9;
  max-width: 250px;
  position: relative;
  margin: 0 auto;
}

.splide__pagination__page {
  width: 20px;
  height: 20px;
  border: 3px solid var(--red);
  background: none;
  margin: 20px 10px 0;
  transition: 0.3s;
  cursor: pointer;
}
.splide__pagination__page.is-active {
  background: var(--red);
}
@media (hover: hover) {
  .splide__pagination__page:hover {
    background: var(--red);
  }
}
/*# sourceMappingURL=styles.css.map */
