/* stylelint-disable-next-line wrap-rem-on-px/wrap-rem-on-px */
:root {
  --primary-font: "Montserrat", serif;
  --secondary-font: "Nombre Sans", sans-serif ;
  --tertiary-font: "Inter", sans-serif;
}

@font-face {
  font-family: "Montserrat";
  src: url("../../css/fonts/Montserrat-SemiBold.woff2") format("woff2"), url("../../css/fonts/Montserrat-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../../css/fonts/Montserrat-Regular.woff2") format("woff2"), url("../../css/fonts/Montserrat-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../../css/fonts/Montserrat-Black.woff2") format("woff2"), url("../../css/fonts/Montserrat-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nombre Sans";
  src: url("../../css/fonts/NombreSans-Bold.woff2") format("woff2"), url("../../css/fonts/NombreSans-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nombre Sans";
  src: url("../../css/fonts/NombreSans-Black.woff2") format("woff2"), url("../../css/fonts/NombreSans-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
/* ===================================
   Brand Palette
=================================== */
:root {
  --black: #000;
  --white: #fff;
  --primary-blue-dark: #024482;
  --primary-blue-light: #C8EBFF;
  --primary-blue: #025FD8;
  --primary-cream: #FFFCEE;
  --pink: #FFC7F5;
  --yellow: #FBE546;
  --orange: #FF9F32;
  --red: #FF5F2D;
  --green: #8CE202;
  --base-light: #FFFCEE;
  --base-lighter: #FFFCEE;
}

/* stylelint-disable-next-line wrap-rem-on-px/wrap-rem-on-px */
/* stylelint-disable wrap-rem-on-px/wrap-rem-on-px */
/* stylelint-enable wrap-rem-on-px/wrap-rem-on-px */
/*
USAGE:
font-size: fluid(12, 62); : from rem(12)@380px to  rem(62)@1440px
gap: fluid(10, 33, 992);  : from rem(10)@991px to  rem(33)@1440px
margin-right: fluid(32, 65, 320, 2560);  : from rem(32)@320px to  rem(65)@2560px
*/
/*
AUTOFILL

USAGE:
@include mixin.autofill(background-color, text-color);
@include mixin.autofill;

Note: Call this mixin in the wrapper or container to where you intend to manipulate the
      default chrome autofill styles for input, textarea and select elements.
*/
/* stylelint-disable */
/* stylelint-enable */
.l-mobile-body-xl {
  font-family: var(--secondary-font);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 140%;
}

@media screen and (min-width:1199px) {
  .l-desktop-body-xl {
    font-family: var(--secondary-font);
    font-size: 2.25rem;
    font-weight: 400;
    line-height: 140%;
  }
}
.l-mobile-body-l {
  font-family: var(--primary-font);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 130%;
}

.l-desktop-body-l {
  font-family: var(--primary-font);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 130%;
}

.l-mobile-body-m {
  font-family: var(--primary-font);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 140%;
}

.l-desktop-body-m {
  font-family: var(--primary-font);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 140%;
}

.l-mobile-body-s {
  font-family: var(--primary-font);
  font-size: 1rem;
  font-weight: 400;
  line-height: 120%;
}

.l-desktop-body-s {
  font-family: var(--primary-font);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 140%;
}

.l-desktop-body-xs {
  font-family: var(--primary-font);
  font-size: 1rem;
  font-weight: 700;
  line-height: 120%;
}

.l-desktop-body-xxs {
  font-family: var(--primary-font);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 120%;
}

.l-desktop-eyebrow-l {
  font-family: var(--primary-font);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 100%;
  text-decoration: uppercase;
}

.l-desktop-eyebrow-m {
  font-family: var(--primary-font);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 110%;
  text-decoration: uppercase;
}

.l-mobile-eyebrow-s {
  font-family: var(--tertiary-font);
  font-size: 1rem;
  font-weight: 500;
  line-height: 150%;
  text-decoration: uppercase;
}

.l-desktop-eyebrow-s {
  font-family: var(--primary-font);
  font-size: 1rem;
  font-weight: 500;
  line-height: 110%;
}

:root {
  --u-size-tiny: 0.25rem;
  --u-size-2x-tiny: 0.5rem;
  --u-size-3x-tiny: 0.75rem;
  --u-size-small: 1rem;
  --u-size-medium: 1.5rem;
  --u-size-2x-medium: 2rem;
  --u-size-large: 3rem;
  --u-size-2x-large: 4rem;
  --u-size-3x-large: 6rem;
  --u-size-huge: 8rem;
  --u-size-2x-huge: 12rem;
  --u-size-3x-huge: 16rem;
}

/* stylelint-disable */
*,
::before,
::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

hr {
  height: 0;
  color: inherit;
}

abbr[title] {
  text-decoration: underline dotted;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  border-color: inherit;
  text-indent: 0;
}

button,
input,
optgroup,
select,
textarea {
  margin: 0;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

:-moz-focusring {
  outline: 1px dotted ButtonText;
}

:-moz-ui-invalid {
  box-shadow: none;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

summary {
  display: list-item;
}

address {
  font-style: normal;
}

[hidden] {
  display: none !important;
}

input {
  appearance: none;
}

input,
textarea,
select {
  backdrop-filter: unset;
}

a,
button {
  cursor: pointer;
}

a.is-unclickable {
  cursor: default;
}

/* stylelint-enable */
html,
body {
  min-width: 20rem;
  background-color: var(--white);
  color: var(--base);
  font-family: var(--primary-font);
  font-size: 1rem;
  word-break: break-word;
}
html *,
body * {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  text-size-adjust: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.25rem;
  font-family: var(--secondary-font);
  font-weight: 700;
}

h1,
.l-h1 {
  font-size: 3rem;
  line-height: 112%;
  letter-spacing: -0.06rem;
}
@media screen and (min-width:1199px) {
  h1,
  .l-h1 {
    font-size: 5rem;
    letter-spacing: -0.1rem;
  }
}

h2,
.l-h2 {
  font-size: 2.5rem;
  line-height: 112%;
  letter-spacing: -0.025rem;
}
@media screen and (min-width:1199px) {
  h2,
  .l-h2 {
    font-size: 4rem;
    letter-spacing: -0.04rem;
  }
}

h3,
.l-h3 {
  font-size: 2rem;
  line-height: 128%;
  letter-spacing: -0.02rem;
}
@media screen and (min-width:1199px) {
  h3,
  .l-h3 {
    font-size: 3rem;
    letter-spacing: -0.03rem;
  }
}

h4,
.l-h4 {
  font-size: 1.75rem;
  line-height: 128%;
}
@media screen and (min-width:1199px) {
  h4,
  .l-h4 {
    font-size: 2rem;
  }
}

h5,
.l-h5 {
  font-size: 1.25rem;
  line-height: 128%;
  font-weight: 600;
  font-family: var(--primary-font);
}
@media screen and (min-width:1199px) {
  h5,
  .l-h5 {
    font-size: 1.5rem;
  }
}

h6,
.l-h6 {
  font-size: 0.875rem;
  line-height: 120%;
  font-weight: 900;
  letter-spacing: 0.0175rem;
  font-family: var(--primary-font);
  text-transform: uppercase;
}
@media screen and (min-width:1199px) {
  h6,
  .l-h6 {
    font-size: 1rem;
    letter-spacing: 0.02rem;
  }
}

ul,
ol {
  padding: 0;
  margin: 0;
}
ul li,
ol li {
  font-size: clamp(1rem, 0vw + 1rem, 1rem);
  list-style-position: inside;
}

ol li {
  list-style: decimal;
}

p,
.l-text-regular {
  font-size: 1rem;
  font-weight: 400;
  line-height: 144%;
  letter-spacing: -0.01rem;
}
@media screen and (min-width:1199px) {
  p,
  .l-text-regular {
    font-size: 1.125rem;
    letter-spacing: -0.01125rem;
  }
}
p,
.l-text-regular {
  margin: 0 0 1.25rem;
}
p:last-of-type,
.l-text-regular:last-of-type {
  margin: 0;
}
p:empty,
.l-text-regular:empty {
  display: none;
}

.l-text {
  font-family: var(--primary-font);
  font-weight: 400;
  line-height: 144%;
}
.l-text--large {
  font-size: 1.25rem;
  letter-spacing: -0.0125rem;
}
@media screen and (min-width:1199px) {
  .l-text--large {
    font-size: 1.5rem;
    letter-spacing: -0.015rem;
  }
}
.l-text--small {
  font-size: 0.875rem;
}
@media screen and (min-width:1199px) {
  .l-text--small {
    font-size: 1rem;
  }
}

big {
  font-family: var(--primary-font);
  font-weight: 400;
  line-height: 144%;
  font-size: 1.25rem;
  letter-spacing: -0.0125rem;
}
@media screen and (min-width:1199px) {
  big {
    font-size: 1.5rem;
    letter-spacing: -0.015rem;
  }
}

small {
  font-family: var(--primary-font);
  font-weight: 400;
  line-height: 144%;
  font-size: 0.875rem;
}
@media screen and (min-width:1199px) {
  small {
    font-size: 1rem;
  }
}

a {
  color: inherit;
  text-decoration-color: inherit;
  text-decoration-style: solid;
  text-decoration-thickness: 0.0625rem;
  text-underline-offset: 0.125rem;
  transition: all 0.3s ease-in-out;
}
a:active {
  color: var(--primary);
  text-decoration-color: inherit;
}
a:hover {
  color: var(--primary);
  text-decoration-color: transparent;
}
a:focus {
  outline: 0.125rem solid var(--primary);
  outline-offset: 0.125rem;
}
a:focus-visible {
  outline: 0.125rem solid var(--primary);
  outline-offset: 0.125rem;
}
a:focus:not(:focus-visible) {
  outline: none;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  width: 0.0625rem;
  height: 0.0625rem;
  padding: 0;
  border: 0;
  margin: -0.0625rem;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  z-index: 10000;
  top: -2.5rem;
  left: 0;
  padding: 0.5rem 1rem;
  background: var(--primary);
  color: var(--neutral-white);
  text-decoration: none;
}
.skip-link:focus {
  top: 0;
}

button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 0.125rem solid var(--primary);
  outline-offset: 0.125rem;
}
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 0.125rem solid var(--primary);
  outline-offset: 0.125rem;
}
button:focus:not(:focus-visible),
input:focus:not(:focus-visible),
select:focus:not(:focus-visible),
textarea:focus:not(:focus-visible) {
  outline: none;
}

.generic {
  --text-color: var(--primary-blue-dark);
  --hover-color: var(--primary-blue);
}
.generic h1,
.generic h2,
.generic h3,
.generic h4,
.generic h5,
.generic h6 {
  margin: 0 0 1rem;
  color: var(--text-color);
}
.generic header {
  margin-bottom: 2rem;
}
.generic p,
.generic address,
.generic hr,
.generic pre,
.generic code {
  margin-bottom: 1.45rem;
}
.generic li {
  margin-bottom: clamp(0.7rem, 0.7619vw + 0.514285625rem, 1.2rem);
}
.generic p,
.generic li {
  color: var(--text-color);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 144%;
}
.generic p:last-of-type,
.generic li:last-of-type {
  margin: 0;
}
.generic p:empty,
.generic li:empty {
  display: none;
}
.generic b,
.generic strong {
  font-weight: 700;
}
.generic time {
  color: var(--text-color);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.009375rem;
  line-height: 144%;
}
.generic ul {
  margin: clamp(1.2rem, 0.60952vw + 1.05142875rem, 1.6rem) 0;
}
.generic ul li {
  position: relative;
  padding-left: 1.4375rem;
  list-style: none;
}
@media screen and (min-width:1199px) {
  .generic ul li {
    padding-left: 1.875rem;
  }
}
.generic ul li::before {
  position: absolute;
  top: 0.7rem;
  left: 0.725rem;
  display: block;
  width: 0.15rem;
  height: 0.15rem;
  border-radius: 50%;
  background-color: var(--text-color);
  content: "";
}
@media screen and (min-width:1199px) {
  .generic ul li::before {
    top: 1.2rem;
    left: 0.925rem;
    width: 0.1875rem;
    height: 0.1875rem;
  }
}
.generic ol {
  padding-left: 1.625rem;
  margin: 2rem 0;
}
.generic ol li {
  list-style: unset;
}
.generic ol li::marker {
  padding-right: 0.625rem;
  font-weight: 600;
}
.generic blockquote {
  position: relative;
  padding: 1.5rem;
  border-radius: 0.3125rem;
  margin: 2rem 0;
  background-color: rgba(163, 208, 150, 0.2);
  color: var(--text-color);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 144%;
}
@media screen and (min-width:991px) {
  .generic blockquote {
    margin-left: clamp(4rem, 4.28571vw + 2.955356875rem, 6.8125rem);
  }
}
.generic blockquote::before {
  position: absolute;
  top: 0;
  left: -5.3125rem;
  display: none;
  width: 3.5625rem;
  height: 3.25rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='61' height='56' viewBox='0 0 61 56' fill='none'%3E%3Cpath d='M57.9834 0.890625C58.3787 0.890665 58.8719 0.973676 59.249 1.35352C59.6247 1.73189 59.706 2.22459 59.7061 2.61914V12.082C59.706 12.4766 59.6247 12.9692 59.249 13.3477C58.8718 13.7275 58.3787 13.8105 57.9834 13.8105C55.6592 13.8105 53.9023 14.7737 52.6875 16.6045C51.4466 18.4747 50.7342 21.314 50.7275 25.0908H57.9834C58.3786 25.0909 58.8719 25.1731 59.249 25.5527C59.6248 25.9313 59.7061 26.4247 59.7061 26.8193V52.9453C59.706 53.3399 59.6247 53.8326 59.249 54.2109C58.8719 54.5908 58.3787 54.6738 57.9834 54.6738H37.5312C37.1359 54.6738 36.6419 54.5909 36.2646 54.2109C35.8892 53.8326 35.8087 53.3397 35.8086 52.9453V26.9863C35.8087 19.3942 37.5891 13.164 41.2227 8.28418C44.8428 3.30982 50.5523 0.890625 57.9834 0.890625ZM24.8711 12.082C24.871 12.5438 24.7347 13.0358 24.3271 13.3916C23.9429 13.727 23.4641 13.8105 23.0654 13.8105C20.7412 13.8105 18.9854 14.7737 17.7705 16.6045C16.5295 18.4747 15.8163 21.3138 15.8096 25.0908H23.0654C23.473 25.0908 23.9422 25.1785 24.3184 25.5303C24.6809 25.8695 24.809 26.3187 24.8623 26.6943L24.8711 26.7568V52.9453C24.871 53.4071 24.7347 53.8991 24.3271 54.2549C23.9429 54.5903 23.4641 54.6738 23.0654 54.6738H2.69629C2.28883 54.6738 1.81934 54.586 1.44336 54.2344C1.08086 53.8953 0.953706 53.4459 0.900391 53.0703L0.890625 53.0078V26.9863C0.890689 19.3943 2.67119 13.164 6.30469 8.28418C9.9248 3.30974 15.6343 0.890625 23.0654 0.890625C23.4729 0.890629 23.9423 0.978414 24.3184 1.33008C24.681 1.6692 24.809 2.11849 24.8623 2.49414L24.8711 2.55664V12.082Z' stroke='%2300A400' stroke-width='1.78226'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 3.5625rem 3.25rem;
  content: "";
}
@media screen and (min-width:991px) {
  .generic blockquote::before {
    display: block;
  }
}
.generic iframe,
.generic figure,
.generic video {
  margin-bottom: 2rem;
}
.generic iframe img,
.generic figure img,
.generic video img {
  max-width: 100%;
  background-color: var(--neutral-gray);
}
.generic iframe figcaption,
.generic figure figcaption,
.generic video figcaption {
  margin-top: 0.3125rem;
  color: var(--text-color);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.009375rem;
  line-height: 144%;
}
.generic iframe {
  width: 100%;
  border: none;
  aspect-ratio: 16/9;
}
.generic ul + h2,
.generic p + h2 {
  margin-top: clamp(2.5rem, 4.57143vw + 1.385714375rem, 5.5rem);
}
.generic p + h1,
.generic p + h3,
.generic p + h4,
.generic p + h5,
.generic p + h6 {
  margin-top: 2rem;
}
.generic code {
  display: block;
  max-height: 18.75rem;
  padding: 1.25rem;
  border-radius: 0.375rem;
  background-color: var(--neutral-gray);
  overflow-x: auto;
  white-space: pre;
}
.generic--image-text p {
  font-size: 1rem;
}
@media screen and (min-width:1199px) {
  .generic--image-text p {
    font-size: 1.125rem;
  }
}
.generic--image-text p:last-of-type {
  margin-bottom: var(--u-size-large);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
.u-text-color-blue-dark {
  color: var(--primary);
}

.u-text-color-blue {
  color: var(--secondary);
}

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

.u-text-color-cream {
  color: var(--cream);
}

.u-bg-blue-dark {
  background-color: var(--primary);
}

.u-bg-blue {
  background-color: var(--secondary);
}

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

.u-bg-pink-64 {
  background-color: rgb(var(--pink)/0.64);
}

.u-bg-yellow-64 {
  background-color: rgb(var(--yellow)/0.64);
}

.u-bg-orange-64 {
  background-color: rgb(var(--orange)/0.64);
}

.u-bg-red-48 {
  background-color: rgb(var(--red)/0.48);
}

.u-bg-green-48 {
  background-color: rgb(var(--green)/0.48);
}

.u-radius-none {
  border-radius: 0;
}

.u-radius-main {
  border-radius: var(--u-size-3x-tiny);
}

.u-radius-round {
  border-radius: 100vw;
}

.ss.header {
  position: relative;
  background: transparent;
}
.ss.header .header__wrap {
  display: flex;
  align-items: center;
  gap: var(--u-size-small);
  padding: var(--u-size-small) 0;
  min-height: 4.5rem;
}
@media screen and (min-width:1199px) {
  .ss.header .header__wrap {
    min-height: 7.6875rem;
  }
}
.ss.header .header__brand {
  display: inline-block;
  width: 100%;
  max-width: 8.0625rem;
  margin-left: calc(var(--u-size-tiny) / 2);
  margin-top: var(--u-size-2x-tiny);
}
@media screen and (min-width:1024px) {
  .ss.header .header__brand {
    max-width: 12.125rem;
    margin: 0;
  }
}
.ss.header .header__brand img {
  width: 100%;
}
.ss.header .header__block {
  display: flex;
  align-items: center;
  position: absolute;
}
@media screen and (min-width:1199px) {
  .ss.header .header__block {
    flex: 1;
    position: relative;
  }
}
.ss.header .header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
}
@media screen and (max-width:1198px) {
  .ss.header .header__actions {
    display: none;
  }
}
.ss.header .header__search {
  display: flex;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  margin-left: var(--u-size-medium);
}
@media screen and (width <= 389px) {
  .ss.header .header__search {
    margin-left: var(--u-size-3x-tiny);
  }
}
@media screen and (min-width:1199px) {
  .ss.header .header__search {
    margin-left: var(--u-size-medium);
    display: none;
  }
}
.ss.header .header__search button svg path {
  stroke: var(--primary-blue-dark);
}
.ss.header .header__nav {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0.9375rem 1.25rem 1.25rem;
  background: var(--white);
  overflow-y: auto;
  transform: translateX(-100%);
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width:768px) {
  .ss.header .header__nav {
    padding: 1.25rem 2.5rem;
  }
}
@media screen and (min-width:1199px) {
  .ss.header .header__nav {
    position: static;
    z-index: unset;
    width: auto;
    height: auto;
    padding: 0;
    background: transparent;
    opacity: 1;
    overflow-y: visible;
    transform: translateY(0);
  }
}
.ss.header .header__nav .header__close {
  display: flex;
  width: max-content;
  align-items: center;
  padding: var(--u-size-3x-tiny) 0;
  color: var(--primary);
  font-family: var(--secondary-font);
  font-size: 1rem;
  font-weight: 500;
  gap: var(--u-size-2x-tiny);
}
@media screen and (min-width:1199px) {
  .ss.header .header__nav .header__close {
    display: none;
  }
}
.ss.header .header__nav > ul {
  margin-top: var(--u-size-2x-medium);
}
@media screen and (min-width:1199px) {
  .ss.header .header__nav > ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 0;
    gap: var(--u-size-small) 1.25rem;
  }
}
@media screen and (min-width:1320px) {
  .ss.header .header__nav > ul {
    gap: var(--u-size-2x-medium);
  }
}
.ss.header .header__nav > ul a {
  display: block;
  color: var(--primary-blue-dark);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02rem;
  line-height: 110%;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 900;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width:1199px) {
  .ss.header .header__nav > ul a {
    font-size: 0.75rem;
  }
}
.ss.header .header__nav > ul a:hover {
  color: var(--primary-blue-dark);
}
.ss.header .header__nav > ul a.active {
  color: var(--primary-blue-dark);
  font-weight: 600;
}
.ss.header .header__nav > ul > li {
  margin-bottom: 0;
  list-style: none;
}
.ss.header .header__nav > ul > li:last-of-type > a {
  padding-right: 0;
}
@media screen and (min-width:1199px) {
  .ss.header .header__nav > ul > li:last-of-type .sub-menu {
    right: 0;
    left: unset;
  }
}
.ss.header .header__nav > ul > li > a {
  position: relative;
  padding: var(--u-size-small) 0;
  border-bottom: 0.0625rem solid var(--primary);
}
@media screen and (min-width:1199px) {
  .ss.header .header__nav > ul > li > a {
    padding: var(--u-size-2x-tiny) var(--u-size-tiny);
    border-bottom: 0.0625rem solid transparent;
  }
}
.ss.header .header__nav > ul > li > a::before {
  transition: all 0.3s ease-in-out;
  position: absolute;
  bottom: 0.40625rem;
  left: 50%;
  display: none;
  width: calc(100% - 0.5rem);
  height: 0.125rem;
  background: var(--primary-blue-dark);
  content: "";
  transform: translateX(-50%);
}
@media screen and (min-width:1199px) {
  .ss.header .header__nav > ul > li > a::before {
    display: block;
    opacity: 0;
    visibility: hidden;
  }
}
.ss.header .header__nav > ul > li > a.active {
  border-bottom-color: var(--primary-blue-dark);
}
@media screen and (min-width:1199px) {
  .ss.header .header__nav > ul > li > a:hover {
    border-bottom-color: transparent;
  }
  .ss.header .header__nav > ul > li > a:hover::before {
    opacity: 1;
    visibility: visible;
  }
}
.ss.header .header__nav > ul > li.current-menu-item > a {
  position: relative;
  color: var(--primary-blue-dark);
}
@media screen and (min-width:1199px) {
  .ss.header .header__nav > ul > li.current-menu-item > a::before {
    opacity: 1;
    visibility: visible;
  }
}
.ss.header .header__nav > ul > li.has-dropdown {
  position: relative;
}
.ss.header .header__nav > ul > li.has-dropdown .dropdown-header {
  position: relative;
  z-index: 1;
  display: flex;
  padding: 0;
  border-bottom: 0.0625rem solid var(--primary-blue-dark);
}
@media screen and (min-width:1199px) {
  .ss.header .header__nav > ul > li.has-dropdown .dropdown-header {
    width: max-content;
    padding: 0;
    border-bottom: 0.0625rem solid transparent;
  }
}
.ss.header .header__nav > ul > li.has-dropdown .dropdown-header.active {
  border-bottom-color: var(--primary);
}
.ss.header .header__nav > ul > li.has-dropdown .dropdown-header .dropdown-link {
  flex: 1;
  padding: 1.25rem 0;
  border: none;
  color: var(--primary-blue-dark);
  letter-spacing: 0.03rem;
  line-height: 100%;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width:1199px) {
  .ss.header .header__nav > ul > li.has-dropdown .dropdown-header .dropdown-link {
    max-width: max-content;
    flex: 1 0 auto;
    padding: 0;
    letter-spacing: normal;
  }
}
.ss.header .header__nav > ul > li.has-dropdown .dropdown-header .dropdown-link.active {
  color: var(--primary-blue-dark);
  font-weight: 600;
}
.ss.header .header__nav > ul > li.has-dropdown .dropdown-header .dropdown-toggle {
  display: flex;
  max-width: 100%;
  height: auto;
  align-items: center;
  justify-content: flex-end;
  padding: var(--u-size-small) var(--u-size-tiny) var(--u-size-small) var(--u-size-2x-tiny);
  border: none;
  background: transparent;
  cursor: pointer;
}
@media screen and (min-width:1199px) {
  .ss.header .header__nav > ul > li.has-dropdown .dropdown-header .dropdown-toggle {
    padding: 0 0 0 var(--u-size-3x-tiny);
  }
}
.ss.header .header__nav > ul > li.has-dropdown .dropdown-header .dropdown-toggle .dropdown-arrow {
  display: block;
  width: 0.75rem;
  height: 0.375rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1.41 -2.67029e-05L6 4.57997L10.59 -2.67029e-05L12 1.40997L6 7.40997L0 1.40997L1.41 -2.67029e-05Z' fill='%23024482'/%3E%3C/svg%3E");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 0.3s ease-in-out;
}
.ss.header .header__nav > ul > li.has-dropdown .dropdown-header .dropdown-toggle[aria-expanded=true] .dropdown-arrow {
  transform: rotate(180deg);
}
.ss.header .header__nav > ul > li.has-dropdown::before {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 2.5rem;
  background: transparent;
  content: "";
}
.ss.header .header__nav > ul > li.has-dropdown .dropdown-link::after {
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  display: none;
  width: 100%;
  height: 0.125rem;
  background: var(--primary-blue-dark);
  content: "";
  opacity: 0;
  visibility: hidden;
}
@media screen and (min-width:1199px) {
  .ss.header .header__nav > ul > li.has-dropdown .dropdown-link::after {
    display: block;
  }
}
@media screen and (min-width:1199px) {
  .ss.header .header__nav > ul > li.has-dropdown:hover::before {
    display: block;
  }
  .ss.header .header__nav > ul > li.has-dropdown:hover .dropdown-header .dropdown-toggle .dropdown-arrow {
    transform: rotate(180deg);
  }
  .ss.header .header__nav > ul > li.has-dropdown:hover .sub-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
  .ss.header .header__nav > ul > li.has-dropdown:hover .dropdown-link {
    color: var(--primary-blue-dark);
  }
  .ss.header .header__nav > ul > li.has-dropdown:hover .dropdown-link::after {
    opacity: 1;
    visibility: visible;
  }
}
.ss.header .header__nav > ul > li.has-dropdown.current-menu-item .dropdown-link {
  position: relative;
  color: var(--primary-blue-dark);
}
.ss.header .header__nav > ul > li.has-dropdown.current-menu-item .dropdown-link::before {
  position: absolute;
  bottom: -0.375rem;
  left: 0;
  display: none;
  width: 100%;
  height: 0.125rem;
  background: var(--primary-blue-dark);
  content: "";
}
@media screen and (min-width:1199px) {
  .ss.header .header__nav > ul > li.has-dropdown.current-menu-item .dropdown-link::before {
    display: block;
  }
}
@media screen and (min-width:1199px) {
  .ss.header .header__nav > ul > li.has-dropdown.current-page-ancestor .dropdown-link {
    border-bottom-color: transparent;
  }
  .ss.header .header__nav > ul > li.has-dropdown.current-page-ancestor .dropdown-link::after {
    position: absolute;
    bottom: -0.5625rem;
    left: 0;
    display: block;
    width: 100%;
    height: 0.125rem;
    background: var(--primary-blue-dark);
    content: "";
  }
}
.ss.header .header__nav > ul > li .sub-menu {
  display: none;
  width: 100%;
  padding: var(--u-size-small) var(--u-size-2x-tiny);
  opacity: 0;
  transition: opacity 0.1s ease-in-out, transform 0.2s ease-in-out, visibility 0.3s ease-in-out;
  visibility: hidden;
}
@media screen and (min-width:1199px) {
  .ss.header .header__nav > ul > li .sub-menu {
    position: absolute;
    z-index: 10;
    top: calc(100% + 0.5rem);
    left: 0;
    display: block;
    min-width: 12.5rem;
    padding: var(--u-size-small);
    background: var(--white);
    box-shadow: 0 0 0.5rem 0 rgba(0, 0, 0, 0.1);
    transform: translateY(-5%);
  }
}
.ss.header .header__nav > ul > li .sub-menu li {
  margin-bottom: var(--u-size-small);
  list-style: none;
}
.ss.header .header__nav > ul > li .sub-menu li:last-child {
  margin-bottom: 0;
}
@media screen and (min-width:1199px) {
  .ss.header .header__nav > ul > li .sub-menu li a {
    width: max-content;
    max-width: 100%;
    border-bottom: 0.125rem solid transparent;
    line-height: 120%;
    text-decoration: underline 0.125rem solid transparent;
    text-underline-offset: 0.25rem;
  }
}
@media screen and (min-width:1199px) {
  .ss.header .header__nav > ul > li .sub-menu li a:hover {
    text-decoration-color: var(--primary-blue-dark);
  }
}
.ss.header .header__nav > ul > li .sub-menu li.current-menu-item a {
  border-bottom-color: var(--primary-blue-dark);
  color: var(--primary-blue-dark);
}
.ss.header .header__nav > ul > li .sub-menu[aria-hidden=false] {
  display: block;
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
@media screen and (max-width:990px) {
  .ss.header .header__nav > ul > li.has-dropdown:has(.dropdown-toggle[aria-expanded=true]) .sub-menu, .ss.header .header__nav > ul > li.has-dropdown.is-open .sub-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
  .ss.header .header__nav > ul > li.has-dropdown:has(.dropdown-toggle[aria-expanded=true]) .dropdown-arrow, .ss.header .header__nav > ul > li.has-dropdown.is-open .dropdown-arrow {
    transform: rotate(180deg);
  }
}
.ss.header .header__search-block {
  display: none;
}
.ss.header .header__hamburger {
  display: flex;
  width: var(--u-size-2x-medium);
  height: var(--u-size-2x-medium);
  flex-direction: column;
  justify-content: space-between;
  padding: var(--u-size-2x-tiny) var(--u-size-tiny);
  cursor: pointer;
}
@media screen and (min-width:1199px) {
  .ss.header .header__hamburger {
    display: none;
  }
}
.ss.header .header__hamburger span {
  display: block;
  width: 100%;
  height: 0.125rem;
  background: var(--primary-blue-dark);
  transition: all 0.2s ease-in-out;
}
.ss.header .header__hamburger span.visually-hidden {
  width: 0;
  height: 0;
  word-wrap: normal;
}
.ss.header.is-open .header__nav {
  transform: translateX(0);
}

body:has(.header.is-open) {
  overflow: hidden;
}

.ss.site-search {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  width: 100%;
  height: 100svh;
  overflow: auto;
  max-width: 35.75rem;
  padding: var(--u-size-2x-medium) var(--u-size-medium);
  background: var(--white);
  box-shadow: -0.125rem 0 0.75rem 0 rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width:991px) {
  .ss.site-search {
    padding: var(--u-size-2x-medium) var(--u-size-2x-medium);
  }
}
.ss.site-search .site-search__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--u-size-small);
  margin-bottom: var(--u-size-medium);
}
.ss.site-search .site-search__header h3 {
  font-size: 2rem;
  color: var(--primary-blue-dark);
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 100%;
}
.ss.site-search .site-search__header button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
  font-size: 0;
  line-height: 0;
  transition: all 0.3s ease-in-out;
}
.ss.site-search .site-search__header button:hover, .ss.site-search .site-search__header button:focus {
  opacity: 0.7;
  color: var(--primary-blue-dark);
  outline: none;
}
.ss.site-search .site-search__form form {
  position: relative;
}
.ss.site-search .site-search__form input {
  padding: var(--u-size-3x-tiny) var(--u-size-large) var(--u-size-3x-tiny) var(--u-size-large);
  border-radius: 0.625rem;
  border: 0.0625rem solid var(--primary-blue-dark);
  background: var(--white);
  width: 100%;
  color: var(--primary-blue-dark);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.ss.site-search .site-search__form input::placeholder {
  color: var(--black);
  opacity: 0.8;
}
.ss.site-search .site-search__form i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0;
  line-height: 0;
  z-index: 1;
}
.ss.site-search .site-search__form button {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-size: 1rem;
  line-height: 100%;
  letter-spacing: 0.02em;
  font-weight: 400;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.ss.site-search .site-search__form button:hover {
  opacity: 0.7;
}
.ss.site-search .site-search__results {
  width: 100%;
  padding: var(--u-size-medium) 0;
}
@media screen and (min-width:991px) {
  .ss.site-search .site-search__results {
    padding: var(--u-size-2x-large) 0;
  }
}
.ss.site-search .site-search__results ul li {
  margin-bottom: var(--u-size-medium);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ss.site-search .site-search__results ul li:last-child {
  margin-bottom: 0;
}
.ss.site-search .site-search__results .search-result--no-results {
  padding-top: var(--u-size-2x-large);
}
@media screen and (min-width:991px) {
  .ss.site-search .site-search__results .search-result--no-results {
    padding-top: var(--u-size-huge);
  }
}
.ss.site-search .site-search__footer {
  margin-top: var(--u-size-medium);
}
@media screen and (min-width:991px) {
  .ss.site-search .site-search__footer {
    margin-top: 0;
  }
}
.ss.site-search .site-search__footer a {
  color: var(--primary-blue-dark);
  font-size: 1rem;
  line-height: 100%;
  letter-spacing: 0.02em;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  position: relative;
}
.ss.site-search .site-search__footer a i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  line-height: 0;
  flex-shrink: 0;
}
.ss.site-search .site-search__footer a::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  background: transparent;
  transition: all 0.3s ease-in-out;
}
.ss.site-search .site-search__footer a:hover {
  color: var(--primary-cream);
}
.ss.site-search .site-search__footer a:hover::after {
  background: var(--primary-cream);
}
.ss.site-search .search-result--error {
  background-color: transparent;
  border: none;
  outline: none;
}
.ss.site-search.is-open {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}
.ss.site-search .site-search__results-count {
  color: var(--primary-blue-dark);
  font-size: 1rem;
  font-weight: 400;
  line-height: 100%;
  margin-bottom: var(--u-size-small);
}
@media screen and (min-width:991px) {
  .ss.site-search .site-search__results-count {
    margin-bottom: 0;
  }
}
.ss.site-search.site-search--lg {
  position: relative;
  z-index: 1;
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
  width: 100%;
  height: auto;
  min-height: 60dvh;
  min-height: 60svh;
  overflow: auto;
  max-width: 100%;
  padding: var(--u-size-2x-medium) 0 var(--u-size-2x-large);
  background: transparent;
  box-shadow: none;
}
@media screen and (min-width:991px) {
  .ss.site-search.site-search--lg {
    padding: var(--u-size-2x-large) 0 var(--u-size-3x-large);
  }
}
.ss.site-search.site-search--lg .site-search__header {
  margin-bottom: var(--u-size-2x-medium);
  justify-content: center;
}
.ss.site-search.site-search--lg .site-search__header h1,
.ss.site-search.site-search--lg .site-search__header h2,
.ss.site-search.site-search--lg .site-search__header .site-search__title {
  color: var(--primary-blue-dark);
  text-align: center;
  font-size: 2.375rem;
  line-height: 100%;
  margin: 0;
}
@media screen and (min-width:991px) {
  .ss.site-search.site-search--lg .site-search__header h1,
  .ss.site-search.site-search--lg .site-search__header h2,
  .ss.site-search.site-search--lg .site-search__header .site-search__title {
    line-height: 1.1;
    letter-spacing: normal;
  }
}
.ss.site-search.site-search--lg .site-search__form {
  margin-bottom: var(--u-size-2x-medium);
}
@media screen and (min-width:991px) {
  .ss.site-search.site-search--lg .site-search__form {
    margin-bottom: var(--u-size-2x-large);
  }
}
.ss.site-search.site-search--lg .site-search__form input {
  padding: var(--u-size-2x-tiny) var(--u-size-large) var(--u-size-2x-tiny) var(--u-size-medium);
}
.ss.site-search.site-search--lg .site-search__results {
  padding-top: var(--u-size-medium);
}
@media screen and (min-width:991px) {
  .ss.site-search.site-search--lg .site-search__results {
    padding-bottom: 0;
    padding-top: var(--u-size-2x-large);
  }
}
.ss.site-search.site-search--lg .site-search__results ul li {
  margin-bottom: 0;
  padding: var(--u-size-large) 0 var(--u-size-2x-medium);
  border-bottom: 0.0625rem solid rgba(201, 179, 155, 0.4);
}
@media screen and (min-width:991px) {
  .ss.site-search.site-search--lg .site-search__results ul li {
    padding: var(--u-size-2x-medium) 0 var(--u-size-2x-medium);
  }
}
.ss.site-search.site-search--lg .site-search__results ul li:first-child {
  padding-top: 0;
}
.ss.site-search.site-search--lg .site-search__results ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.ss.site-search.site-search--lg .no-results.not-found {
  padding: var(--u-size-2x-large) 0 var(--u-size-2x-large);
}
@media screen and (min-width:991px) {
  .ss.site-search.site-search--lg .no-results.not-found {
    padding: 0;
  }
}
.ss.site-search.site-search--lg .no-results.not-found .page-content {
  max-width: 18.75rem;
  margin: 0 auto;
}
@media screen and (min-width:768px) {
  .ss.site-search.site-search--lg .no-results.not-found .page-content {
    max-width: 100%;
  }
}
.ss.site-search.site-search--lg .no-results.not-found h2 {
  color: var(--primary-blue-dark);
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.03rem;
  margin-bottom: var(--u-size-small);
}
@media screen and (min-width:991px) {
  .ss.site-search.site-search--lg .no-results.not-found h2 {
    letter-spacing: -0.035rem;
    font-size: 1.75rem;
  }
}
.ss.site-search.site-search--lg .no-results.not-found p {
  color: var(--primary-blue-dark);
  text-align: center;
  font-size: rem918;
  line-height: 140%;
  margin-bottom: 0;
}
@media screen and (min-width:991px) {
  .ss.site-search.site-search--lg .no-results.not-found p {
    line-height: 1.5;
    font-size: 1.25rem;
  }
}

.search-result--loading {
  text-align: center;
  padding: var(--u-size-2x-medium);
}
.search-result--loading p, .search-result--error p {
  margin: 0;
  color: var(--black);
}
.search-result--error {
  background-color: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
}
.search-result--error p {
  color: #dc2626;
}

/* Loading spinner */
.search-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin: 0 auto;
}
.search-loader .search-loader__spinner {
  width: 32px;
  height: 32px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #00A400;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Error state */
/* Clear button styling */
#site-search-clear {
  background: none;
  border: none;
  color: var(--black);
  cursor: pointer;
  font-size: 0.875rem;
  padding: 0.5rem;
  transition: color 0.2s ease;
}
#site-search-clear:hover, #site-search-clear:focus {
  color: var(--primary-blue-dark);
  outline: none;
}

/* Hide footer initially */
.site-search__footer {
  display: none;
}

.ss.footer {
  padding: var(--u-size-2x-large) 0 var(--u-size-large);
  background-color: var(--primary-blue-dark);
}
@media screen and (min-width:1199px) {
  .ss.footer {
    padding: var(--u-size-3x-large) 0;
  }
}
@media screen and (min-width:1199px) {
  .ss.footer .footer__brand {
    grid-area: brand;
  }
}
.ss.footer .footer__logo img {
  width: 100%;
  max-width: 25rem;
}
.ss.footer .footer__grid {
  display: flex;
  flex-direction: column;
  row-gap: var(--u-size-2x-medium);
}
@media screen and (min-width:1199px) {
  .ss.footer .footer__grid {
    display: grid;
    grid-template-columns: 19.625rem auto;
    column-gap: var(--u-size-large);
    grid-template-areas: "brand newsletter" "social nav";
  }
}
@media screen and (min-width:1320px) {
  .ss.footer .footer__grid {
    column-gap: var(--u-size-huge);
  }
}
@media screen and (min-width:1199px) {
  .ss.footer .footer__social {
    grid-area: social;
  }
}
.ss.footer .footer__social ul {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: var(--u-size-small);
  gap: 1.5rem;
  list-style: none;
}
@media screen and (min-width:1199px) {
  .ss.footer .footer__social ul {
    justify-content: flex-start;
    padding-bottom: var(--u-size-2x-medium);
  }
}
.ss.footer .footer__social a {
  transition: all 0.3s ease-in-out;
  color: var(--primary-cream);
}
@media screen and (min-width:1199px) {
  .ss.footer .footer__social a:hover {
    opacity: 0.7;
  }
}
.ss.footer .footer__description {
  text-align: center;
}
@media screen and (min-width:1199px) {
  .ss.footer .footer__description {
    text-align: left;
  }
}
.ss.footer .footer__description p {
  color: var(--primary-cream);
  font-size: 0.75rem;
  line-height: 144%;
  letter-spacing: normal;
}
.ss.footer .footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 calc(-1 * var(--u-size-2x-tiny));
  row-gap: var(--u-size-2x-medium);
}
@media screen and (min-width:1199px) {
  .ss.footer .footer__nav {
    grid-area: nav;
    justify-content: flex-end;
    padding-top: var(--u-size-3x-tiny);
  }
}
.ss.footer .footer__nav h5 {
  margin-bottom: calc(var(--u-size-small) - 2px);
  color: var(--primary-cream);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.03rem;
  line-height: 86%;
  text-transform: uppercase;
}
.ss.footer .footer__nav nav {
  padding: 0 var(--u-size-2x-tiny);
}
@media screen and (min-width:768px) {
  .ss.footer .footer__nav nav {
    flex-basis: 50%;
    max-width: 50%;
  }
}
@media screen and (min-width:991px) {
  .ss.footer .footer__nav nav {
    flex-basis: 25%;
    max-width: 25%;
  }
}
.ss.footer .footer__nav ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.25rem;
  list-style: none;
}
.ss.footer .footer__nav li,
.ss.footer .footer__nav a {
  display: block;
  text-decoration: none;
}
.ss.footer .footer__nav a {
  text-decoration: underline solid transparent 0.0625rem;
  text-underline-offset: 0.1875rem;
  font-size: 0.875rem;
  color: var(--primary-cream);
  line-height: 144%;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width:1199px) {
  .ss.footer .footer__nav a:hover {
    text-decoration-color: var(--neutral-white);
  }
}
.ss.footer .footer__newsletter {
  border: 0.0625rem solid var(--primary-cream);
  padding: 0 var(--u-size-2x-tiny) var(--u-size-2x-tiny);
}
@media screen and (min-width:991px) {
  .ss.footer .footer__newsletter {
    padding: var(--u-size-2x-tiny);
  }
}
@media screen and (min-width:1199px) {
  .ss.footer .footer__newsletter {
    grid-area: newsletter;
  }
}
@media screen and (min-width:991px) {
  .ss.footer .newsletter-form__wrapper {
    display: flex;
    align-items: center;
    gap: var(--u-size-small);
  }
}
.ss.footer .newsletter-form__input {
  background-color: transparent;
  color: var(--primary-cream);
  padding: var(--u-size-medium) 0;
  text-align: center;
  font-size: 0.875rem;
  line-height: 120%;
  letter-spacing: 0.0175rem;
}
.ss.footer .newsletter-form__input::placeholder {
  color: var(--primary-cream);
}
@media screen and (min-width:991px) {
  .ss.footer .newsletter-form__input {
    padding: var(--u-size-3x-tiny) 0;
  }
}
@media screen and (min-width:1199px) {
  .ss.footer .newsletter-form__input {
    text-align: left;
    padding: var(--u-size-3x-tiny) var(--u-size-small);
    font-size: 1rem;
    letter-spacing: 0.02rem;
  }
}
.ss.footer .newsletter-form__button {
  width: 100%;
}
@media screen and (min-width:991px) {
  .ss.footer .newsletter-form__button {
    min-width: 11.875rem;
    flex-shrink: 0;
    width: auto;
  }
}

.section.section--bottom-pattern > .ss, .section.section--b-radius > .ss {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 2.5rem 2.5rem;
}
@media screen and (min-width:991px) {
  .section.section--bottom-pattern > .ss, .section.section--b-radius > .ss {
    border-radius: 0 0 3.75rem 3.75rem;
  }
}

picture {
  display: block;
}

.section.section--b-radius {
  background-color: var(--curve-bg-color);
}
.section.section--blue, .section.is-light-blue {
  background-color: var(--secondary-light-300);
}
.section.section--bottom-pattern {
  position: relative;
  padding-bottom: 3.75rem;
}
@media screen and (min-width:991px) {
  .section.section--bottom-pattern {
    padding-bottom: 7.5rem;
  }
}
.section.section--bottom-pattern > .ss {
  background-color: var(--curve-bg-color);
}
.section.section--bottom-pattern::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 7.0625rem;
  background-image: var(--background-pattern-url);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
}
@media screen and (min-width:991px) {
  .section.section--bottom-pattern::before {
    height: 13.5rem;
  }
}
.section.section--underlined {
  position: relative;
}
.section.section--underlined::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: calc(100% - 2.5rem);
  height: 0.0625rem;
  background-color: var(--tertiary-200);
  content: "";
  transform: translateX(-50%);
}
@media screen and (min-width:768px) {
  .section.section--underlined::after {
    width: calc(100% - 5rem);
  }
}
@media screen and (min-width:1199px) {
  .section.section--underlined::after {
    width: calc(100% - 7.5rem);
    max-width: 82.5rem;
  }
}

.aspect-box {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
}
.aspect-box img,
.aspect-box video,
.aspect-box canvas,
.aspect-box iframe,
.aspect-box svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aspect-box::before {
  display: block;
  padding-top: calc(var(--aspect-ratio) * 100%);
  background-color: var(--primary-dark-100);
  content: "";
}

.has-card-link {
  position: relative;
}

.card-link {
  position: absolute;
  z-index: 1;
  overflow: hidden;
  inset: 0;
  text-indent: -624.9375rem;
  white-space: nowrap;
}

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

@media screen and (max-width:990px) {
  .is-desktop {
    display: none;
  }
}

.l-btn {
  transition: all 0.3s ease-in-out;
  font-size: 0.875rem;
  line-height: 86%;
  font-weight: 900;
  font-family: var(--primary-font);
  letter-spacing: 0.0175rem;
  text-transform: uppercase;
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  padding: var(--u-size-small) var(--u-size-2x-medium);
  min-height: 3.625rem;
  border: 0.0625rem solid transparent;
  background-color: var(--primary-blue);
  color: var(--primary-cream);
  cursor: pointer;
  gap: var(--u-size-2x-tiny);
  text-decoration: none;
  text-align: center;
}
@media screen and (min-width:1199px) {
  .l-btn {
    font-size: 1rem;
    min-height: 3.6875rem;
    width: fit-content;
  }
}
.l-btn:hover, .l-btn:focus-visible {
  background-color: var(--primary-blue-dark);
  color: var(--primary-cream);
}
.l-btn--secondary {
  background-color: transparent;
  color: var(--primary-blue);
  border-color: var(--primary-blue);
}
.l-btn--secondary:hover, .l-btn--secondary:focus-visible {
  background-color: var(--primary-blue);
  color: var(--primary-cream);
}
.l-btn[disabled] {
  border-color: var(--primary-blue-light);
  background-color: var(--primary-blue-light);
  color: var(--primary-cream);
  cursor: not-allowed;
}
.l-btn[disabled]:hover, .l-btn[disabled]:focus-visible {
  border-color: var(--primary-blue-light);
  background-color: var(--primary-blue-light);
  color: var(--primary-cream);
}
.l-btn--light {
  background-color: var(--primary-cream);
  color: var(--primary-blue);
}
.l-btn--light:hover, .l-btn--light:focus-visible {
  background-color: var(--primary-blue);
  color: var(--primary-cream);
}

button {
  display: block;
  padding: 0;
  border: none;
  margin: 0;
  background: none;
  cursor: pointer;
}

form .form-row {
  margin-bottom: 1.25rem;
}
form .form-row:last-child {
  margin-bottom: 0;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
  font-weight: 500;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=search],
input[type=password],
textarea,
select {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 0.0625rem solid var(--primary-200);
  border-radius: 0.5rem;
  backdrop-filter: blur(0.375rem);
  background-color: rgba(255, 255, 255, 0.8);
  font-family: var(--primary-font);
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

.l-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: var(--primary-blue-dark);
  font-size: 1rem;
  font-weight: 400;
  gap: 0.5rem;
  line-height: 144%;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.l-link i {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  font-size: 0;
  line-height: 0;
}
.l-link::after {
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  background: transparent;
  content: "";
  transition: all 0.3s ease-in-out;
}
.l-link:hover {
  color: var(--primary-blue);
}
.l-link:hover::after {
  background: var(--primary-blue);
}

.container {
  padding: 0 var(--u-size-small);
}
@media screen and (min-width:768px) {
  .container {
    padding: 0 var(--u-size-medium);
  }
}
@media screen and (min-width:1199px) {
  .container {
    max-width: 90rem;
    padding: 0 var(--u-size-2x-large);
    margin: 0 auto;
  }
}
.container--md {
  padding: 0 var(--u-size-small);
}
@media screen and (min-width:991px) {
  .container--md {
    padding: 0 var(--u-size-2x-medium);
  }
}
@media screen and (min-width:1199px) {
  .container--sm {
    padding: 0 11.25rem;
  }
}

.section--main {
  padding: var(--u-size-large) 0;
}
@media screen and (min-width:991px) {
  .section--main {
    padding: 3.75rem 0;
  }
}
.section--reduced {
  padding: var(--u-size-large) 0;
}
@media screen and (min-width:991px) {
  .section--reduced {
    padding: var(--u-size-3x-large) 0;
  }
}

/*# sourceMappingURL=main.css.map */
