/*
* @Title: Site - Global - Variables
*/
/* ==========================================================================
	0. PATHS
	========================================================================== */
/* ==========================================================================
1. COLOURS
========================================================================== */
/*  1.1. COLOUR PALETTE
	========================================================================== */
/*  1.2. MAIN, ACCENT AND MUTED
========================================================================== */
/*  1.3. BODY AND LINKS
	========================================================================== */
/*  1.4. GRADIENTS
	========================================================================== */
/*  1.5. NOTIFICATIONS AND BADGES
	========================================================================== */
/*  1.6. SOCIAL MEDIA
	========================================================================== */
/*  1.7. COMMUNITIES (A.K.A ENGAGE)
	========================================================================== */
/* ==========================================================================
	2. TYPOGRAPHY
	========================================================================== */
/*  2.1. FAMILIES
	========================================================================== */
/*  2.2 WEIGHTS
	========================================================================== */
/* ==========================================================================
	3. LAYOUT
	========================================================================== */
/* Options: default, fullscreen */
/* ==========================================================================
	4. ELEMENTS
	========================================================================== */
/* ==========================================================================
	5. TRANSITIONS AND ANIMATIONS
	========================================================================== */
/* =========================================================

=== FLUID TYPOGRAPHY WITH CLAMP ===

Clamp takes a min value, a preferred (middle) value, and a max value. The preferred value gets calculated based on the viewport width.
For more information on how this works, please refer to https://css-tricks.com/linearly-scale-font-size-with-css-clamp-based-on-the-viewport
There are many ways to implement the preferred value, but the easiest is using a calculator like this one: https://utopia.fyi/clamp/calculator/?a=360,1280,15%E2%80%9416

=== RECOMMENDED VALUES FOR CALCULATING CLAMP ===

Min viewport width: 360px
Max viewport width: 1280px or your layout wrapper max width
Min font size: font size from mobile design if available, ideally no smaller than 14px for accessibility
Max font size: font size from desktop design

The final clamp units should be converted to rem with a 16px base to allow zooming in the browser.

========================================================= */
.u-text-size-x-small {
  font-size: clamp(0.875rem, 0.875rem + 0vw, 0.875rem);
}

.u-text-size-small {
  font-size: clamp(0.875rem, 0.875rem + 0vw, 0.875rem);
}

.u-text-size-regular {
  font-size: clamp(0.9375rem, 0.913rem + 0.1087vw, 1rem);
}

.u-text-size-large {
  font-size: clamp(1rem, 0.9511rem + 0.2174vw, 1.3rem);
}

.u-text-size-x-large {
  font-size: clamp(1.25rem, 1.1033rem + 0.6522vw, 1.625rem);
}

.u-text-size-xx-large {
  font-size: clamp(1.375rem, 1.0815rem + 1.3043vw, 2.125rem);
}

.u-text-size-xxx-large {
  font-size: clamp(1.875rem, 1.6304rem + 1.087vw, 2.5rem);
}

.u-text-size-ultra-large {
  font-size: clamp(2.875rem, 2.1902rem + 3.0435vw, 4.625rem);
}

:root {
  --text-x-small: clamp(0.875rem, 0.875rem + 0vw, 0.875rem);
  --text-small: clamp(0.875rem, 0.875rem + 0vw, 0.875rem);
  --text-regular: clamp(0.9375rem, 0.913rem + 0.1087vw, 1rem);
  --text-large: clamp(1rem, 0.9511rem + 0.2174vw, 1.3rem);
  --text-x-large: clamp(1.25rem, 1.1033rem + 0.6522vw, 1.625rem);
  --text-xx-large: clamp(1.375rem, 1.0815rem + 1.3043vw, 2.125rem);
  --text-xxx-large: clamp(1.875rem, 1.6304rem + 1.087vw, 2.5rem);
  --text-ultra-large: clamp(2.875rem, 2.1902rem + 3.0435vw, 4.625rem);
}

.wrapper,
.inner, .content__main__search, .top-banner__container, .hero__text {
  width: 85%;
  max-width: 1158px;
  margin-left: auto;
  margin-right: auto;
}

.header__search .header__search--trigger, .p-menu--accordion__trigger, .p-menu--accordion .p-menu__item__submenu-toggle__button, .p-menu--dropdown .p-menu__item__submenu-toggle {
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  cursor: pointer;
  border-radius: 0;
  padding: 0;
  margin: 0;
}
.header__search .header__search--trigger:hover, .p-menu--accordion__trigger:hover, .p-menu--accordion .p-menu__item__submenu-toggle__button:hover, .p-menu--dropdown .p-menu__item__submenu-toggle:hover {
  background: transparent;
}

.p-menu--accordion, .p-menu--accordion .p-menu__item__submenu, .p-menu--dropdown, .p-menu--dropdown .p-menu__item__submenu, .ck-check-list, .ck-buttons-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

a:not([class]), .p-menu--accordion .p-menu__item__link,
.p-menu--accordion .p-menu__item__text, .p-menu--accordion .p-menu__item__submenu__item__link,
.p-menu--accordion .p-menu__item__submenu__item__text, .p-menu--dropdown .p-menu__item__link,
.p-menu--dropdown .p-menu__item__submenu__item__link {
  color: inherit;
  text-decoration: none;
}

/*
* @Title: Site - Global - Animations
* @Version: 1-2-0
*
*/
/*
* @Title: Site - Global - Animations
* @Version: 1-2-0
*
*/
@-webkit-keyframes scroll-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@keyframes scroll-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.p-animate-y, .header.p-animate-content .header__cta a[class], .header.p-animate-content .header__navigation ul li {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-animation: scroll-in 0.85s forwards;
          animation: scroll-in 0.85s forwards;
}

.p-animate-opacity {
  opacity: 0;
  -webkit-animation: fade-in 0.85s forwards;
          animation: fade-in 0.85s forwards;
}

.section__body__article:nth-child(1) .p-animate-y, .section__body__article:nth-child(1) .header.p-animate-content .header__cta a[class], .header.p-animate-content .header__cta .section__body__article:nth-child(1) a[class], .section__body__article:nth-child(1) .header.p-animate-content .header__navigation ul li, .header.p-animate-content .header__navigation ul .section__body__article:nth-child(1) li {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.section__body__article:nth-child(2) .p-animate-y, .section__body__article:nth-child(2) .header.p-animate-content .header__cta a[class], .header.p-animate-content .header__cta .section__body__article:nth-child(2) a[class], .section__body__article:nth-child(2) .header.p-animate-content .header__navigation ul li, .header.p-animate-content .header__navigation ul .section__body__article:nth-child(2) li {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.section__body__article:nth-child(3) .p-animate-y, .section__body__article:nth-child(3) .header.p-animate-content .header__cta a[class], .header.p-animate-content .header__cta .section__body__article:nth-child(3) a[class], .section__body__article:nth-child(3) .header.p-animate-content .header__navigation ul li, .header.p-animate-content .header__navigation ul .section__body__article:nth-child(3) li {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.section__body__article:nth-child(4) .p-animate-y, .section__body__article:nth-child(4) .header.p-animate-content .header__cta a[class], .header.p-animate-content .header__cta .section__body__article:nth-child(4) a[class], .section__body__article:nth-child(4) .header.p-animate-content .header__navigation ul li, .header.p-animate-content .header__navigation ul .section__body__article:nth-child(4) li {
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}
.section__body__article:nth-child(5) .p-animate-y, .section__body__article:nth-child(5) .header.p-animate-content .header__cta a[class], .header.p-animate-content .header__cta .section__body__article:nth-child(5) a[class], .section__body__article:nth-child(5) .header.p-animate-content .header__navigation ul li, .header.p-animate-content .header__navigation ul .section__body__article:nth-child(5) li {
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}
.section__body__article:nth-child(6) .p-animate-y, .section__body__article:nth-child(6) .header.p-animate-content .header__cta a[class], .header.p-animate-content .header__cta .section__body__article:nth-child(6) a[class], .section__body__article:nth-child(6) .header.p-animate-content .header__navigation ul li, .header.p-animate-content .header__navigation ul .section__body__article:nth-child(6) li {
  -webkit-animation-delay: 1.7s;
          animation-delay: 1.7s;
}
.section__body__article:nth-child(7) .p-animate-y, .section__body__article:nth-child(7) .header.p-animate-content .header__cta a[class], .header.p-animate-content .header__cta .section__body__article:nth-child(7) a[class], .section__body__article:nth-child(7) .header.p-animate-content .header__navigation ul li, .header.p-animate-content .header__navigation ul .section__body__article:nth-child(7) li {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.section__body__article:nth-child(8) .p-animate-y, .section__body__article:nth-child(8) .header.p-animate-content .header__cta a[class], .header.p-animate-content .header__cta .section__body__article:nth-child(8) a[class], .section__body__article:nth-child(8) .header.p-animate-content .header__navigation ul li, .header.p-animate-content .header__navigation ul .section__body__article:nth-child(8) li {
  -webkit-animation-delay: 2.3s;
          animation-delay: 2.3s;
}
.section__body__article:nth-child(9) .p-animate-y, .section__body__article:nth-child(9) .header.p-animate-content .header__cta a[class], .header.p-animate-content .header__cta .section__body__article:nth-child(9) a[class], .section__body__article:nth-child(9) .header.p-animate-content .header__navigation ul li, .header.p-animate-content .header__navigation ul .section__body__article:nth-child(9) li {
  -webkit-animation-delay: 2.6s;
          animation-delay: 2.6s;
}
.section__body__article:nth-child(10) .p-animate-y, .section__body__article:nth-child(10) .header.p-animate-content .header__cta a[class], .header.p-animate-content .header__cta .section__body__article:nth-child(10) a[class], .section__body__article:nth-child(10) .header.p-animate-content .header__navigation ul li, .header.p-animate-content .header__navigation ul .section__body__article:nth-child(10) li {
  -webkit-animation-delay: 2.9s;
          animation-delay: 2.9s;
}

.header.p-animate-content .header__logo {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}
.header.p-animate-content .header__navigation ul li:nth-child(1) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.header.p-animate-content .header__navigation ul li:nth-child(2) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.header.p-animate-content .header__navigation ul li:nth-child(3) {
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}
.header.p-animate-content .header__navigation ul li:nth-child(4) {
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}
.header.p-animate-content .header__navigation ul li:nth-child(5) {
  -webkit-animation-delay: 1.7s;
          animation-delay: 1.7s;
}
.header.p-animate-content .header__navigation ul li:nth-child(6) {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.header.p-animate-content .header__navigation ul li:nth-child(7) {
  -webkit-animation-delay: 2.3s;
          animation-delay: 2.3s;
}
.header.p-animate-content .header__navigation ul li:nth-child(8) {
  -webkit-animation-delay: 2.6s;
          animation-delay: 2.6s;
}
.header.p-animate-content .header__navigation ul li:nth-child(9) {
  -webkit-animation-delay: 2.9s;
          animation-delay: 2.9s;
}
.header.p-animate-content .header__navigation ul li:nth-child(10) {
  -webkit-animation-delay: 3.2s;
          animation-delay: 3.2s;
}
.header.p-animate-content .header__cta a[class]:nth-child(1) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.header.p-animate-content .header__cta a[class]:nth-child(2) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

.ck-button-solid-steel-blue {
  color: #FFFFFF;
  border: 1px solid #368EAE;
  background: #368EAE;
  display: inline-block;
  font-size: clamp(0.9375rem, 0.913rem + 0.1087vw, 1rem);
  font-weight: 700;
  border-radius: 60px;
  font-family: "acumin-variable", sans-serif;
  -webkit-transition: 0.25s ease-in;
  transition: 0.25s ease-in;
  text-align: center;
  position: relative;
  padding: 10px 30px;
}
.ck-button-solid-steel-blue::after {
  content: "\f061";
  position: absolute;
  right: 15px;
  opacity: 0;
  display: inline-block;
  font-family: "Font Awesome 6 Pro";
  -webkit-transition: 0.25s ease-in;
  transition: 0.25s ease-in;
}
:dir(rtl) .ck-button-solid-steel-blue::after {
  right: auto;
  left: 15px;
}
.ck-button-solid-steel-blue:hover {
  -webkit-padding-start: 20px;
          padding-inline-start: 20px;
  -webkit-padding-end: 40px;
          padding-inline-end: 40px;
  text-decoration: none;
}
.ck-button-solid-steel-blue:hover::after {
  opacity: 1;
}

.ck-button-solid-midnight-navy {
  color: #FFFFFF;
  border: 1px solid #040F35;
  background: #040F35;
  display: inline-block;
  font-size: clamp(0.9375rem, 0.913rem + 0.1087vw, 1rem);
  font-weight: 700;
  border-radius: 60px;
  font-family: "acumin-variable", sans-serif;
  -webkit-transition: 0.25s ease-in;
  transition: 0.25s ease-in;
  text-align: center;
  position: relative;
  padding: 10px 30px;
}
.ck-button-solid-midnight-navy::after {
  content: "\f061";
  position: absolute;
  right: 15px;
  opacity: 0;
  display: inline-block;
  font-family: "Font Awesome 6 Pro";
  -webkit-transition: 0.25s ease-in;
  transition: 0.25s ease-in;
}
:dir(rtl) .ck-button-solid-midnight-navy::after {
  right: auto;
  left: 15px;
}
.ck-button-solid-midnight-navy:hover {
  -webkit-padding-start: 20px;
          padding-inline-start: 20px;
  -webkit-padding-end: 40px;
          padding-inline-end: 40px;
  text-decoration: none;
}
.ck-button-solid-midnight-navy:hover::after {
  opacity: 1;
}

.ck-button-solid-cool-grey {
  color: #000000;
  border: 1px solid #91ACC2;
  background: #91ACC2;
  display: inline-block;
  font-size: clamp(0.9375rem, 0.913rem + 0.1087vw, 1rem);
  font-weight: 700;
  border-radius: 60px;
  font-family: "acumin-variable", sans-serif;
  -webkit-transition: 0.25s ease-in;
  transition: 0.25s ease-in;
  text-align: center;
  position: relative;
  padding: 10px 30px;
}
.ck-button-solid-cool-grey::after {
  content: "\f061";
  position: absolute;
  right: 15px;
  opacity: 0;
  display: inline-block;
  font-family: "Font Awesome 6 Pro";
  -webkit-transition: 0.25s ease-in;
  transition: 0.25s ease-in;
}
:dir(rtl) .ck-button-solid-cool-grey::after {
  right: auto;
  left: 15px;
}
.ck-button-solid-cool-grey:hover {
  -webkit-padding-start: 20px;
          padding-inline-start: 20px;
  -webkit-padding-end: 40px;
          padding-inline-end: 40px;
  text-decoration: none;
}
.ck-button-solid-cool-grey:hover::after {
  opacity: 1;
}

.ck-button-solid-slate-blue {
  color: #000000;
  border: 1px solid #16495C;
  background: #16495C;
  display: inline-block;
  font-size: clamp(0.9375rem, 0.913rem + 0.1087vw, 1rem);
  font-weight: 700;
  border-radius: 60px;
  font-family: "acumin-variable", sans-serif;
  -webkit-transition: 0.25s ease-in;
  transition: 0.25s ease-in;
  text-align: center;
  position: relative;
  padding: 10px 30px;
}
.ck-button-solid-slate-blue::after {
  content: "\f061";
  position: absolute;
  right: 15px;
  opacity: 0;
  display: inline-block;
  font-family: "Font Awesome 6 Pro";
  -webkit-transition: 0.25s ease-in;
  transition: 0.25s ease-in;
}
:dir(rtl) .ck-button-solid-slate-blue::after {
  right: auto;
  left: 15px;
}
.ck-button-solid-slate-blue:hover {
  -webkit-padding-start: 20px;
          padding-inline-start: 20px;
  -webkit-padding-end: 40px;
          padding-inline-end: 40px;
  text-decoration: none;
}
.ck-button-solid-slate-blue:hover::after {
  opacity: 1;
}

.ck-button-solid-silver-green {
  color: #000000;
  border: 1px solid #B7CDD4;
  background: #B7CDD4;
  display: inline-block;
  font-size: clamp(0.9375rem, 0.913rem + 0.1087vw, 1rem);
  font-weight: 700;
  border-radius: 60px;
  font-family: "acumin-variable", sans-serif;
  -webkit-transition: 0.25s ease-in;
  transition: 0.25s ease-in;
  text-align: center;
  position: relative;
  padding: 10px 30px;
}
.ck-button-solid-silver-green::after {
  content: "\f061";
  position: absolute;
  right: 15px;
  opacity: 0;
  display: inline-block;
  font-family: "Font Awesome 6 Pro";
  -webkit-transition: 0.25s ease-in;
  transition: 0.25s ease-in;
}
:dir(rtl) .ck-button-solid-silver-green::after {
  right: auto;
  left: 15px;
}
.ck-button-solid-silver-green:hover {
  -webkit-padding-start: 20px;
          padding-inline-start: 20px;
  -webkit-padding-end: 40px;
          padding-inline-end: 40px;
  text-decoration: none;
}
.ck-button-solid-silver-green:hover::after {
  opacity: 1;
}

.ck-button-solid-white {
  color: #000000;
  border: 1px solid #FFFFFF;
  background: #FFFFFF;
  display: inline-block;
  font-size: clamp(0.9375rem, 0.913rem + 0.1087vw, 1rem);
  font-weight: 700;
  border-radius: 60px;
  font-family: "acumin-variable", sans-serif;
  -webkit-transition: 0.25s ease-in;
  transition: 0.25s ease-in;
  text-align: center;
  position: relative;
  padding: 10px 30px;
}
.ck-button-solid-white::after {
  content: "\f061";
  position: absolute;
  right: 15px;
  opacity: 0;
  display: inline-block;
  font-family: "Font Awesome 6 Pro";
  -webkit-transition: 0.25s ease-in;
  transition: 0.25s ease-in;
}
:dir(rtl) .ck-button-solid-white::after {
  right: auto;
  left: 15px;
}
.ck-button-solid-white:hover {
  -webkit-padding-start: 20px;
          padding-inline-start: 20px;
  -webkit-padding-end: 40px;
          padding-inline-end: 40px;
  text-decoration: none;
}
.ck-button-solid-white:hover::after {
  opacity: 1;
}

.ck-button-solid-black {
  color: #FFFFFF;
  border: 1px solid #000000;
  background: #000000;
  display: inline-block;
  font-size: clamp(0.9375rem, 0.913rem + 0.1087vw, 1rem);
  font-weight: 700;
  border-radius: 60px;
  font-family: "acumin-variable", sans-serif;
  -webkit-transition: 0.25s ease-in;
  transition: 0.25s ease-in;
  text-align: center;
  position: relative;
  padding: 10px 30px;
}
.ck-button-solid-black::after {
  content: "\f061";
  position: absolute;
  right: 15px;
  opacity: 0;
  display: inline-block;
  font-family: "Font Awesome 6 Pro";
  -webkit-transition: 0.25s ease-in;
  transition: 0.25s ease-in;
}
:dir(rtl) .ck-button-solid-black::after {
  right: auto;
  left: 15px;
}
.ck-button-solid-black:hover {
  -webkit-padding-start: 20px;
          padding-inline-start: 20px;
  -webkit-padding-end: 40px;
          padding-inline-end: 40px;
  text-decoration: none;
}
.ck-button-solid-black:hover::after {
  opacity: 1;
}

.ck-button-border-white {
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
  background: transparent;
  display: inline-block;
  font-size: clamp(0.9375rem, 0.913rem + 0.1087vw, 1rem);
  font-weight: 700;
  border-radius: 60px;
  font-family: "acumin-variable", sans-serif;
  -webkit-transition: 0.25s ease-in;
  transition: 0.25s ease-in;
  text-align: center;
  position: relative;
  padding: 10px 30px;
}
.ck-button-border-white::after {
  content: "\f061";
  position: absolute;
  right: 15px;
  opacity: 0;
  display: inline-block;
  font-family: "Font Awesome 6 Pro";
  -webkit-transition: 0.25s ease-in;
  transition: 0.25s ease-in;
}
:dir(rtl) .ck-button-border-white::after {
  right: auto;
  left: 15px;
}
.ck-button-border-white:hover {
  -webkit-padding-start: 20px;
          padding-inline-start: 20px;
  -webkit-padding-end: 40px;
          padding-inline-end: 40px;
  text-decoration: none;
}
.ck-button-border-white:hover::after {
  opacity: 1;
}

.ck-button-border-black {
  color: #000000;
  border: 1px solid #000000;
  background: transparent;
  display: inline-block;
  font-size: clamp(0.9375rem, 0.913rem + 0.1087vw, 1rem);
  font-weight: 700;
  border-radius: 60px;
  font-family: "acumin-variable", sans-serif;
  -webkit-transition: 0.25s ease-in;
  transition: 0.25s ease-in;
  text-align: center;
  position: relative;
  padding: 10px 30px;
}
.ck-button-border-black::after {
  content: "\f061";
  position: absolute;
  right: 15px;
  opacity: 0;
  display: inline-block;
  font-family: "Font Awesome 6 Pro";
  -webkit-transition: 0.25s ease-in;
  transition: 0.25s ease-in;
}
:dir(rtl) .ck-button-border-black::after {
  right: auto;
  left: 15px;
}
.ck-button-border-black:hover {
  -webkit-padding-start: 20px;
          padding-inline-start: 20px;
  -webkit-padding-end: 40px;
          padding-inline-end: 40px;
  text-decoration: none;
}
.ck-button-border-black:hover::after {
  opacity: 1;
}

.ck-headline {
  color: #040F35;
  font-family: "acumin-variable", sans-serif;
}

.ck-intro-text {
  font-weight: 100;
}

.ck-quote {
  color: #040F35;
  font-style: italic;
}

.ck-capital-letter {
  color: #040F35;
  font-family: "acumin-variable", sans-serif;
}

.ck-text-outline {
  -webkit-text-stroke: 2px #FFFFFF;
  color: transparent;
}

.ck-check-list li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
.ck-check-list li:before {
  content: "\f00c";
  font-family: "Font Awesome 6 Pro";
  border: 2px solid #368EAE;
  border-radius: 100%;
  height: 28px;
  width: 28px;
  font-size: 17px;
  color: #368EAE;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.ck-buttons-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}
.ck-buttons-list:has([style*="text-align: center"]) {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.hidden {
  opacity: 0;
  visibility: hidden;
}

.u-text-color-neutral-black {
  color: #000000;
}

.u-link-color-neutral-black {
  color: #000000 !important;
}
.u-link-color-neutral-black:hover {
  color: black !important;
}

.u-border-color-neutral-black {
  border-color: #000000;
}

.u-background-color-neutral-black {
  background: #000000;
}

.u-text-color-neutral-white {
  color: #FFFFFF;
}

.u-link-color-neutral-white {
  color: #FFFFFF !important;
}
.u-link-color-neutral-white:hover {
  color: #d9d9d9 !important;
}

.u-border-color-neutral-white {
  border-color: #FFFFFF;
}

.u-background-color-neutral-white {
  background: #FFFFFF;
}

.u-text-color-neutral-muted {
  color: #ccc;
}

.u-link-color-neutral-muted {
  color: #ccc !important;
}
.u-link-color-neutral-muted:hover {
  color: #a6a6a6 !important;
}

.u-border-color-neutral-muted {
  border-color: #ccc;
}

.u-background-color-neutral-muted {
  background: #ccc;
}

.u-text-color-branding-steel-blue {
  color: #368EAE;
}

.u-link-color-branding-steel-blue {
  color: #368EAE !important;
}
.u-link-color-branding-steel-blue:hover {
  color: #245e74 !important;
}

.u-border-color-branding-steel-blue {
  border-color: #368EAE;
}

.u-background-color-branding-steel-blue {
  background: #368EAE;
}

.u-text-color-branding-midnight-navy {
  color: #040F35;
}

.u-link-color-branding-midnight-navy {
  color: #040F35 !important;
}
.u-link-color-branding-midnight-navy:hover {
  color: black !important;
}

.u-border-color-branding-midnight-navy {
  border-color: #040F35;
}

.u-background-color-branding-midnight-navy {
  background: #040F35;
}

.u-text-color-branding-cool-grey {
  color: #91ACC2;
}

.u-link-color-branding-cool-grey {
  color: #91ACC2 !important;
}
.u-link-color-branding-cool-grey:hover {
  color: #6087a7 !important;
}

.u-border-color-branding-cool-grey {
  border-color: #91ACC2;
}

.u-background-color-branding-cool-grey {
  background: #91ACC2;
}

.u-text-color-branding-slate-blue {
  color: #16495C;
}

.u-link-color-branding-slate-blue {
  color: #16495C !important;
}
.u-link-color-branding-slate-blue:hover {
  color: #07181e !important;
}

.u-border-color-branding-slate-blue {
  border-color: #16495C;
}

.u-background-color-branding-slate-blue {
  background: #16495C;
}

.u-text-color-branding-silver-green {
  color: #B7CDD4;
}

.u-link-color-branding-silver-green {
  color: #B7CDD4 !important;
}
.u-link-color-branding-silver-green:hover {
  color: #87acb7 !important;
}

.u-border-color-branding-silver-green {
  border-color: #B7CDD4;
}

.u-background-color-branding-silver-green {
  background: #B7CDD4;
}

.u-background-color-gradient-one {
  background: -webkit-gradient(linear, left top, right top, from(#368EAE), to(#040F35));
  background: linear-gradient(to right, #368EAE, #040F35);
}

.u-background-color-gradient-two {
  background: linear-gradient(109deg, #000000 0%, #368EAE 64%, #040F35 100%);
}

:root {
  --neutral-black: #000000;
  --neutral-white: #FFFFFF;
  --neutral-muted: #ccc;
  --branding-steel-blue: #368EAE;
  --branding-midnight-navy: #040F35;
  --branding-cool-grey: #91ACC2;
  --branding-slate-blue: #16495C;
  --branding-silver-green: #B7CDD4;
}

.u-text-color-inherit {
  color: inherit;
}

.u-outline-text-white {
  -webkit-text-stroke: 2px #FFFFFF;
  color: transparent;
}

.u-background-overlay {
  position: relative;
}
.u-background-overlay::before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  content: "";
  background-color: #000000;
  opacity: 0.7;
}

.u-background-size-cover {
  background-size: cover;
  background-repeat: no-repeat;
}

.u-background-size-contain {
  background-size: contain;
  background-repeat: no-repeat;
}

.u-background-size-auto {
  background-size: auto;
  background-repeat: no-repeat;
}

.u-background-size-fixed {
  background-attachment: fixed;
}

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

.u-background-position-top {
  background-position: center top;
}

.u-background-position-bottom {
  background-position: center bottom;
}

.u-image-size-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.u-image-position-center {
  -o-object-position: center center;
     object-position: center center;
}

.u-image-position-left {
  -o-object-position: left center;
     object-position: left center;
}

.u-text-left {
  text-align: left !important;
}

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

.u-font-weight-bold {
  font-weight: 700;
}

.u-font-weight-light {
  font-weight: 100;
}

.u-box-shadow {
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.u-border {
  border: 1px solid;
}

.u-flex-align-top {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.u-flex-align-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.u-flex-align-bottom {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.u-inner-padding-medium {
  padding: 30px;
}

.u-inner-padding-large {
  padding: 60px;
}
@media (width >= 1024px) {
  .u-inner-padding-large {
    padding: 90px 60px;
  }
}

.u-image-cover {
  position: absolute;
  width: 100%;
  height: 100%;
}
.u-image-cover img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100% !important;
}

.m-button-primary, input[type=button] {
  color: #FFFFFF;
  border: 1px solid #368EAE;
  background: #368EAE;
  display: inline-block;
  font-size: clamp(0.9375rem, 0.913rem + 0.1087vw, 1rem);
  font-weight: 700;
  border-radius: 60px;
  font-family: "acumin-variable", sans-serif;
  -webkit-transition: 0.25s ease-in;
  transition: 0.25s ease-in;
  text-align: center;
  position: relative;
  padding: 10px 30px;
}
.m-button-primary::after, input[type=button]::after {
  content: "\f061";
  position: absolute;
  right: 15px;
  opacity: 0;
  display: inline-block;
  font-family: "Font Awesome 6 Pro";
  -webkit-transition: 0.25s ease-in;
  transition: 0.25s ease-in;
}
:dir(rtl) .m-button-primary::after, :dir(rtl) input[type=button]::after {
  right: auto;
  left: 15px;
}
.m-button-primary:hover, input[type=button]:hover {
  -webkit-padding-start: 20px;
          padding-inline-start: 20px;
  -webkit-padding-end: 40px;
          padding-inline-end: 40px;
  text-decoration: none;
}
.m-button-primary:hover::after, input[type=button]:hover::after {
  opacity: 1;
}

/* ==========================================================================
   2.0 Forms Buttons 
   ========================================================================== */
@-webkit-keyframes p-button-loading {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes p-button-loading {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.search-index__form__submit,
.button--primary,
.p-button--primary {
  color: #FFFFFF;
  border: 1px solid #368EAE;
  background: #368EAE;
  display: inline-block;
  font-size: clamp(0.9375rem, 0.913rem + 0.1087vw, 1rem);
  font-weight: 700;
  border-radius: 60px;
  font-family: "acumin-variable", sans-serif;
  -webkit-transition: 0.25s ease-in;
  transition: 0.25s ease-in;
  text-align: center;
  position: relative;
  padding: 10px 30px;
}
.search-index__form__submit::after,
.button--primary::after,
.p-button--primary::after {
  content: "\f061";
  position: absolute;
  right: 15px;
  opacity: 0;
  display: inline-block;
  font-family: "Font Awesome 6 Pro";
  -webkit-transition: 0.25s ease-in;
  transition: 0.25s ease-in;
}
:dir(rtl) .search-index__form__submit::after,
:dir(rtl) .button--primary::after,
:dir(rtl) .p-button--primary::after {
  right: auto;
  left: 15px;
}
.search-index__form__submit:hover,
.button--primary:hover,
.p-button--primary:hover {
  -webkit-padding-start: 20px;
          padding-inline-start: 20px;
  -webkit-padding-end: 40px;
          padding-inline-end: 40px;
  text-decoration: none;
}
.search-index__form__submit:hover::after,
.button--primary:hover::after,
.p-button--primary:hover::after {
  opacity: 1;
}

.p-button {
  display: inline-block;
}
.p-button.is-loading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-button.is-loading::after {
  content: "";
  display: inline-block;
  margin-left: 10px;
  height: 1em;
  width: 1em;
  border-radius: 100%;
  position: relative;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-animation: p-button-loading 1.1s infinite linear;
          animation: p-button-loading 1.1s infinite linear;
  border-top: 2px solid rgba(36, 94, 116, 0.2) !important;
  border-right: 2px solid rgba(36, 94, 116, 0.2) !important;
  border-bottom: 2px solid rgba(36, 94, 116, 0.2) !important;
  border-left: 2px solid #245e74 !important;
}

.p-loader--wrapper {
  height: 100vh;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  z-index: 93;
  background: #FFFFFF;
}

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

.p-loader__icon {
  display: inline-block;
  margin-bottom: 0.5em;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 0.5em solid #ccc;
  top: 50%;
  border-right: 0.5em solid #ccc;
  border-bottom: 0.5em solid #ccc;
  border-left: 0.5em solid #368EAE;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  animation: loader 1.1s infinite linear;
  -webkit-animation: loader 1.1s infinite linear;
}

.p-loader__icon,
.p-loader__icon:after {
  border-radius: 50%;
  width: 4em;
  height: 4em;
}

.p-loader__text {
  clear: both;
  display: block;
  color: #FFFFFF;
}

/*== OVERLAY */
.p-loader--overlay {
  -webkit-transition: 0.25s ease-in;
  transition: 0.25s ease-in;
  opacity: 0;
  visibility: hidden;
  z-index: 900;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-left: -75px;
  margin-top: -36.5px;
  background: rgba(0, 0, 0, 0.8);
  padding: 1em;
  border-radius: 30px;
  width: 150px; /* Have to use these weird negative margin values because when using transform we get the nasty sub pixels font rendering */
}

.p-loader--overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.p-loader--overlay .p-loader__icon {
  display: block;
  margin: 0 auto 1em auto;
}

@keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.p-loader-page {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  content: "";
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100vh;
  z-index: 999;
  background-size: cover;
  background-color: #000000;
  font-size: 50px;
  opacity: 1;
  -webkit-transition: 0.25s ease-in;
  transition: 0.25s ease-in;
}
.p-loader-page.p-hide {
  opacity: 0;
  pointer-events: none;
}

.p-menu--dropdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.p-menu--dropdown .p-menu__item,
.p-menu--dropdown .p-menu__item__submenu__item {
  position: relative;
}
.p-menu--dropdown .p-menu__item.has-submenu-open > .p-menu__item__submenu,
.p-menu--dropdown .p-menu__item__submenu__item.has-submenu-open > .p-menu__item__submenu {
  opacity: 1;
  pointer-events: auto;
}
.p-menu--dropdown .p-menu__item__link,
.p-menu--dropdown .p-menu__item__submenu__item__link {
  font-size: clamp(0.875rem, 0.875rem + 0vw, 0.875rem);
  position: relative;
  color: inherit;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  padding: 10px;
}
.p-menu--dropdown .p-menu__item__text,
.p-menu--dropdown .p-menu__item__submenu__item__text {
  font-size: clamp(0.875rem, 0.875rem + 0vw, 0.875rem);
  position: relative;
  color: inherit;
  font-weight: 500;
  padding: 10px;
  padding-right: 25px;
  width: 100%;
}
.p-menu--dropdown .p-menu__item__submenu__item__link {
  width: 100%;
  padding-right: 25px;
  border-radius: 10px;
}
.p-menu--dropdown .p-menu__item__submenu__item__link:hover {
  background: #ccc;
}
.p-menu--dropdown .p-menu__item__submenu-toggle {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 3px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-menu--dropdown .p-menu__item__submenu {
  position: absolute;
  opacity: 0;
  color: #000000;
  -webkit-transition: 0.25s ease-in;
  transition: 0.25s ease-in;
  width: auto;
  min-width: 200px;
  padding-top: 20px;
  pointer-events: none;
}
.p-menu--dropdown .p-menu__item__submenu .p-menu__item__submenu-toggle {
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: rotate(-90deg) translateY(-50%);
          transform: rotate(-90deg) translateY(-50%);
  -webkit-transform-origin: top center;
          transform-origin: top center;
}
.p-menu--dropdown .p-menu__item__submenu--level-1 {
  left: 0;
}
.p-menu--dropdown .p-menu__item__submenu--level-1::before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  content: "";
  top: auto;
  height: calc(100% - 20px);
  background-color: #FFFFFF;
  border-radius: 10px;
}
.p-menu--dropdown .p-menu__item__submenu--level-2 {
  left: 100%;
  top: 0;
  padding-top: 0;
  background-color: #FFFFFF;
  border-radius: 10px;
}

.u-screen-reader-only {
  font-size: 0px;
  opacity: 0;
  pointer-events: none;
}

.p-menu--accordion__trigger {
  display: block;
  margin-left: auto;
  color: #FFFFFF;
  position: relative;
  z-index: 10;
  font-size: 26px;
  border: 1px solid #368EAE;
  border-radius: 100%;
  height: 60px;
  width: 60px;
}
.p-menu--accordion__trigger .inactive-icon {
  display: block;
}
.p-menu--accordion__trigger .active-icon {
  display: none;
}
.p-menu--accordion__trigger.active {
  color: #FFFFFF;
}
.p-menu--accordion__trigger.active .inactive-icon {
  display: none;
}
.p-menu--accordion__trigger.active .active-icon {
  display: block;
}

.p-menu--accordion-menu-wrapper {
  overflow: hidden;
  position: fixed;
  height: 100vh;
  width: 100%;
  left: 100%;
  top: 0;
  background-attachment: fixed;
  background: linear-gradient(109deg, #000000 0%, #368EAE 64%, #040F35 100%);
  -webkit-transition: 0.5s ease-in;
  transition: 0.5s ease-in;
}
.p-menu--accordion-menu-wrapper::before {
  content: "";
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.p-menu--accordion-menu-wrapper.visible {
  left: 0;
}

.p-menu--accordion {
  position: absolute;
  top: auto;
  left: 0;
  bottom: 0;
  height: calc(100% - 100px);
  overflow: auto;
  padding: 30px 7.5%;
  -webkit-transition: 0.5s ease-in;
  transition: 0.5s ease-in;
}
.p-menu--accordion .p-menu__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-menu--accordion .p-menu__item__wrapper-one {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-menu--accordion .p-menu__item__link,
.p-menu--accordion .p-menu__item__text {
  font-size: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 0;
  text-transform: uppercase;
  -webkit-transition: 0.25s ease-in;
  transition: 0.25s ease-in;
  font-weight: 500;
}
.p-menu--accordion .p-menu__item__text {
  cursor: default;
}
.p-menu--accordion .p-menu__item__submenu-toggle {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-left: 20px;
  opacity: 0.5;
}
.p-menu--accordion .p-menu__item__submenu-toggle__button {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.25s ease-in;
  transition: 0.25s ease-in;
  height: 100%;
  width: 100%;
  font-size: 30px;
}
.p-menu--accordion .p-menu__item__submenu-toggle__button.active {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.p-menu--accordion .p-menu__item__submenu {
  margin-left: 20px;
  margin-top: 10px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  -webkit-transition: 0.25s ease-in;
  transition: 0.25s ease-in;
}
.p-menu--accordion .p-menu__item__submenu.visible {
  max-height: 1000px;
  opacity: 1;
  visibility: visible;
}
.p-menu--accordion .p-menu__item__submenu--level-1 {
  margin-top: 0;
}
.p-menu--accordion .p-menu__item__submenu__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 10px;
}
.p-menu--accordion .p-menu__item__submenu__item__wrapper-one {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-menu--accordion .p-menu__item__submenu__item__link,
.p-menu--accordion .p-menu__item__submenu__item__text {
  font-size: 20px;
  display: block;
  -webkit-transition: 0.5s ease-in;
  transition: 0.5s ease-in;
}

@media (width >= 1280px) {
  .menu__item--cta-blue {
    background: #368EAE;
    border-radius: 60px;
    padding: 10px;
  }
  .menu__item--cta-teal {
    background: #040F35;
    border-radius: 60px;
    padding: 10px;
    color: #000000;
  }
  .menu__item--cta-blue .p-menu__item__submenu__item__link::before,
  .menu__item--cta-teal .p-menu__item__submenu__item__link::before {
    content: "\f061";
    font-family: "Font Awesome 6 Pro";
    font-weight: 100;
    margin-inline: 10px;
  }
}
/*
* @Title: Site - Patterns - Search
* @Version: 1-2-0
*
*/
.search-index {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 2em;
}
.search-index .search-index__form {
  margin-top: 2em;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.search-index .search-index__form__input {
  padding: 0.5em 1em;
  width: 180px;
}
.search-index .search-index__form__submit {
  margin-left: 10px;
}
.search-index .search__count {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 1em auto;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  padding: 0 0 20px;
}
.search-index .search__count strong {
  margin: auto 0.5em;
}
.search-index .search__list {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
}
.search-index .search__list__item {
  border-bottom: solid 1px #ccc;
  padding: 0.5em 0;
}
.search-index .search__list__item__title {
  color: #000000;
}
.search-index .search__list__item__title:hover {
  color: #368EAE;
}
.search-index .search-index__pagination {
  margin-top: 2em;
  width: 100%;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}
.search-index .search-index__pagination .pagingTabsTotals {
  float: left;
}
.search-index .search-index__pagination .pagingTabsCarrousel {
  float: right;
}
.search-index .search-index__pagination .pagingTabsCarrousel a {
  float: left;
  display: block;
  text-decoration: none;
  border-radius: 30px;
  background: #ccc;
  padding: 0.25em 0.5em;
  margin-left: 0.5em;
}
.search-index .search-index__pagination .pagingTabsCarrousel a:first-child {
  margin-left: 0;
}
.search-index .search-index__pagination .pagingTabsCarrousel a:hover {
  color: #368EAE;
}
.search-index .search-index__pagination .pagingTabsCarrousel a.selected {
  background-color: #040F35;
  color: #FFFFFF;
  cursor: default;
  pointer-events: none;
}
@media screen and (width: 600px) {
  .search-index .search-index__form__input {
    width: 400px;
  }
}
@media (width >= 1024px) {
  .search-index {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .search-index .search-index__form {
    margin-top: 0;
    margin-left: 2em;
  }
  .search-index .search-index__pagination {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.header {
  position: fixed;
  top: var(--header-banner-offset);
  z-index: 100;
  width: 100vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.header.scrolled {
  background: #000000;
  top: 0;
}

.header__main {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 60px;
  margin-block: 20px;
  padding-inline: 20px;
}

.header__logo {
  max-width: 130px;
  z-index: 20;
}
.header__logo img {
  display: inline-block;
  max-width: 100%;
}

.header__search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}
.header__search .header__search--trigger {
  font-size: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header__search i {
  font-size: 16px;
}
.header__search:hover {
  background: rgba(4, 15, 53, 0.3);
}

.header__language {
  margin-inline: 15px;
  gap: 5px;
}

.header__language--mobile {
  -webkit-margin-start: auto;
          margin-inline-start: auto;
}

.header__language--desktop {
  display: none;
}

.header__search--mobile {
  -webkit-margin-end: 20px;
          margin-inline-end: 20px;
  height: 60px;
  width: 60px;
  z-index: 20;
}
.header__search--mobile i {
  font-size: 23px;
}

.header__search--desktop {
  -webkit-margin-start: 15px;
          margin-inline-start: 15px;
  height: 38px;
  width: 38px;
}

.header__navigation--mobile {
  display: block;
  z-index: 10;
}

.header__navigation--desktop {
  position: relative;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-right: 7.5%;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 1;
  display: none;
}
:dir(rtl) .header__navigation--desktop {
  padding-right: 0;
  padding-left: 7.5%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media (width >= 1280px) {
  .header {
    padding-left: 7.5%;
    border-bottom: none;
  }
  :dir(rtl) .header {
    padding-right: 7.5%;
    padding-left: 0;
  }
  .header__language--mobile,
  .header__navigation--mobile {
    display: none;
  }
  .header__language--desktop,
  .header__navigation--desktop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header__logo {
    max-width: 230px;
    position: absolute;
    top: 20px;
    left: -50px;
    -webkit-transition: -webkit-transform 0.25s ease-in-out;
    transition: -webkit-transform 0.25s ease-in-out;
    transition: transform 0.25s ease-in-out;
    transition: transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
  }
  :dir(rtl) .header__logo {
    left: auto;
    right: -50px;
  }
  .header__logo img {
    width: 230px;
  }
  .header.scrolled {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .header.scrolled .header__main {
    height: 100px;
  }
  .header.scrolled .header__logo {
    -webkit-transform: scale(0.9) translateY(-35%);
            transform: scale(0.9) translateY(-35%);
  }
  .header.scrolled .header__navigation--desktop {
    border-bottom: none;
  }
  .header__main {
    padding-left: 200px;
    padding-right: 0;
    margin-bottom: 0;
  }
  .header__search--mobile {
    display: none;
  }
}
@media (width >= 1440px) {
  .header__logo {
    left: 20px;
  }
  :dir(rtl) .header__logo {
    right: -20px;
  }
  .header__main {
    padding-left: 280px;
  }
  :dir(rtl) .header__main {
    padding-right: 280px;
    padding-left: 0;
  }
}
.hero {
  position: relative;
}

.hero__main {
  padding-block: 100px;
  overflow: hidden;
}

.hero__image::after,
.hero__video::after,
.hero__slider::after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  content: "";
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hero__image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.hero__slider.swiper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero__slider__slide img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.hero__video video.w-video__media {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.hero__video::after {
  z-index: auto;
}

.hero__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  height: 100%;
  margin-top: 60px;
  z-index: 1;
  width: 95%;
}
.hero__text p {
  margin-bottom: 0px;
}

.hero__text__title {
  font-size: clamp(2.0625rem, 0.375rem + 7.5vw, 4.5rem);
  line-height: 1;
  margin-bottom: 0;
}

.hero__text__body {
  font-size: clamp(1.25rem, 1.1033rem + 0.6522vw, 1.625rem);
  margin-top: 30px;
}

.hero__text__ctas {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 30px;
}
.hero__text__ctas > * {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media (max-width: 1200px) {
  .hero__text__title {
    font-size: clamp(2.0625rem, 1.5542rem + 2.259vw, 3.5rem);
  }
}
@media (width >= 768px) {
  .hero__text {
    padding-block: 100px;
  }
}
@media (width >= 1024px) {
  .hero__main {
    height: 100vh;
    padding-block: 0;
  }
  .hero__text {
    padding-block: 0;
  }
  .hero__text__ctas {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (width >= 1600px) {
  .hero__text__title {
    white-space: nowrap;
  }
}
.herologostop,
.herologosbottom {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.herologostop__title,
.herologosbottom__title {
  font-size: clamp(0.9375rem, 0.913rem + 0.1087vw, 1rem);
  color: #FFFFFF;
  text-transform: uppercase;
  padding: 20px 40px 10px;
  margin-bottom: 0;
  word-wrap: break-word;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.herologostop__body,
.herologosbottom__body {
  padding: 0 40px 20px 40px;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.herologostop__body img,
.herologosbottom__body img {
  max-width: 300px;
  max-height: 75px;
}

@media (width >= 768px) {
  .herologostop,
  .herologosbottom {
    position: absolute;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 110px;
    border: 1px solid rgba(255, 255, 255, 0.5);
  }
  :dir(rtl) .herologostop,
  :dir(rtl) .herologosbottom {
    right: auto;
    left: 0;
  }
  .herologostop {
    top: var(--header-offset-height);
    border-bottom-left-radius: 30px;
  }
  .herologosbottom {
    bottom: 0;
    border-top-left-radius: 30px;
  }
  .herologostop__title,
  .herologosbottom__title {
    padding: 30px 35px;
    max-width: 160px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 0;
  }
  .herologostop__body,
  .herologosbottom__body {
    padding: 30px 35px;
  }
  .herologostop__body img,
  .herologosbottom__body img {
    max-width: 370px;
    max-height: none;
  }
}
.hero-subpage {
  position: relative;
  min-height: 425px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  overflow: hidden;
}

.hero-subpage__wrapper {
  position: relative;
  z-index: 1;
}

.hero-subpage__page-title {
  font-size: clamp(2.875rem, 2.1902rem + 3.0435vw, 4.625rem);
  margin-block: 0;
  padding-bottom: 75px;
  text-transform: uppercase;
}

.hero-subpage__graphic {
  position: absolute;
  bottom: 0;
  left: 0;
}

.hero-subpage__graphic--blue-glass {
  max-width: 900px;
}

.hero-subpage__graphic--lights {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left;
     object-position: left;
}

.hero-subpage__img {
  position: absolute;
  inset: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}

.hero-subpage__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  content: "";
  background: rgba(0, 0, 0, 0.7);
}

.top-banner {
  position: relative;
  padding: 5px;
}

.top-banner__content a {
  text-decoration: underline;
}

/*
* @Title: Site - Widgets - Ticker
* @Version: 1-2-0
*
*/
.w-ticker {
  position: relative;
  overflow: hidden;
}
.w-ticker .ticker {
  position: relative;
  width: 100%;
}
.w-ticker .ticker-title {
  display: none !important;
}
.w-ticker .ticker-content {
  left: 0 !important;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}
.w-ticker .ticker-swipe {
  position: absolute;
  bottom: 0;
  background-color: #FFFFFF;
  display: block;
  width: 100%;
  height: 100%;
}
.w-ticker .ticker-swipe span {
  border-bottom: 1px solid;
  height: 100%;
  width: 0.5em;
  display: block;
}
.w-ticker .ticker-controls {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.w-ticker .ticker-controls .jnt-play-pause {
  float: left;
}
.w-ticker .ticker-controls .jnt-play-pause:after {
  content: "\f04c";
  font-family: "Font Awesome 6 Pro";
  cursor: pointer;
}
.w-ticker .ticker-controls .jnt-play-pause:hover:after {
  color: #040F35;
}
.w-ticker .ticker-controls .jnt-play-pause.paused:after {
  content: "\f04b";
}
.w-ticker .ticker-controls .jnt-prev {
  float: left;
  margin-left: 0.5em;
}
.w-ticker .ticker-controls .jnt-prev:after {
  content: "\f04a";
  font-family: "Font Awesome 6 Pro";
  cursor: pointer;
}
.w-ticker .ticker-controls .jnt-prev:hover:after {
  color: #040F35;
}
.w-ticker .ticker-controls .jnt-next {
  float: left;
  margin-left: 0.5em;
}
.w-ticker .ticker-controls .jnt-next:after {
  content: "\f04e";
  font-family: "Font Awesome 6 Pro";
  cursor: pointer;
}
.w-ticker .ticker-controls .jnt-next:hover:after {
  color: #040F35;
}

/*
* @Title: Site - Widgets - Video
* @Version: 1-2-0
*
*/
.w-video {
  width: 100%;
  height: 100%;
}

.w-video__media {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}

/* Base styles */
html {
  scroll-padding-top: var(--header-offset-height);
  scroll-behavior: smooth;
}

html,
body {
  width: 100%;
  height: 100%;
}

body {
  font-family: "acumin-variable", sans-serif;
  line-height: 1.4;
  color: #000000;
  font-size: clamp(0.9375rem, 0.913rem + 0.1087vw, 1rem);
  overflow-x: hidden;
}
@media (width >= 600px) {
  body.has-overlay-blur .site,
  body.has-overlay-blur .communities {
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  body .site {
    -webkit-transition: 0.25s ease-in;
    transition: 0.25s ease-in;
    scroll-behavior: smooth;
  }
}
body:has(.js-menu-accordion.is-visible) {
  overflow: hidden;
}

/* Objects */
embed,
object,
video,
audio,
iframe {
  max-width: 100%;
}

button:focus-visible {
  outline: -webkit-focus-ring-color solid 3px;
  outline-offset: 3px;
}

a {
  text-decoration: none;
}
a:focus-visible {
  outline: -webkit-focus-ring-color solid 3px;
  outline-offset: 3px;
}
a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

a[class^=anchor] {
  margin-top: calc(var(--header-offset-height) * -1);
  padding-top: var(--header-offset-height);
}

/* Typography */
p {
  margin: 0 0 1em 0;
}
p:last-child {
  margin-bottom: 0;
}

img {
  -o-object-fit: contain;
     object-fit: contain;
}

ul {
  list-style: square;
}

h1 {
  margin: 0 0 1em 0;
  padding: 0;
  font-family: "acumin-variable", sans-serif;
  font-weight: 700;
  line-height: 1.3em;
  font-size: clamp(1.875rem, 1.6304rem + 1.087vw, 2.5rem);
}

h2 {
  margin: 0 0 1em 0;
  padding: 0;
  font-family: "acumin-variable", sans-serif;
  font-weight: 700;
  font-size: clamp(1.375rem, 1.0815rem + 1.3043vw, 2.125rem);
  line-height: 1.2;
}

h3 {
  margin: 0 0 1em 0;
  padding: 0;
  font-family: "acumin-variable", sans-serif;
  font-weight: 700;
  font-size: clamp(1.375rem, 1.0815rem + 1.3043vw, 2.125rem);
  line-height: 1.2;
}

h4 {
  margin: 0 0 1em 0;
  padding: 0;
  font-family: "acumin-variable", sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 0.9511rem + 0.2174vw, 1.3rem);
  line-height: 1.2;
}

h5 {
  margin: 0 0 1em 0;
  padding: 0;
  font-family: "acumin-variable", sans-serif;
  font-weight: 700;
  font-size: clamp(0.9375rem, 0.913rem + 0.1087vw, 1rem);
  line-height: 1.2;
}

/* Scrollbar styles */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background-color: #000000;
}

::-webkit-scrollbar-thumb {
  background-color: #040F35;
}

/* Variables */
:root {
  --swiper-theme-color: var(--branding-teal);
  --swiper-navigation-top-offset: 0;
  --swiper-pagination-bullet-width: 35px;
  --swiper-pagination-bullet-height: 5px;
  --swiper-pagination-bullet-size: 14px;
  --swiper-pagination-bullet-inactive-color: var(--neutral-muted);
  --swiper-pagination-bullet-color: var(--branding-teal);
  --swiper-pagination-bullet-border-radius: 10px;
  --swiper-navigation-sides-offset: -70px;
  --swiper-navigation-size: 20px;
  --swiper-scrollbar-drag-bg-color: var(--neutral-white);
  --swiper-pagination-color: var(--branding-teal);
  --swiper-navigation-color: var(--branding-teal);
  --header-height: 60px;
  --mobile-header-height: 80px;
}

.site:has(.p-menu--accordion.visible) {
  overflow: hidden;
}

.content__main__body.is-library {
  margin-block: 40px;
}

.content__main__search {
  margin-top: 40px;
}

.cms__edit-mode {
  display: none !important;
}