/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *




 */

#submit-loading {
  display: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  text-align: center;
  background: rgba(0, 0, 0, .4);
  margin: 0;
  padding: 0;
  z-index: 9999;    
}

#submit-loading div {
  opacity: 25%;
}

p:empty {
  height: 0!important;
  padding: 0!important;
  margin: 0!important;
  width: 0!important;
}
/*
 * Cookie Consent Module — ws_consent.css
 * =======================================
 * All classes prefixed .ws-consent-* to avoid colliding with client themes.
 *
 * Overridable CSS custom properties:
 *   --ws-consent-banner-bg           (banner background color)
 *   --ws-consent-banner-color        (banner text color)
 *   --ws-consent-banner-link-color   (banner link color)
 *   --ws-consent-header-bg           (modal header background)
 *   --ws-consent-header-color        (modal header text color)
 *   --ws-consent-header-link-color   (modal header link color)
 *   --ws-consent-header-border-color (modal header border color)
 *   --ws-consent-body-bg             (modal body background color)
 *   --ws-consent-body-color          (modal body text color)
 *   --ws-consent-body-link-color     (modal body link color)
 *   --ws-consent-accent              (buttons, toggle on-state, focus rings)
 *
 * Override in your site stylesheet:
 *   :root {
 *     --ws-consent-accent: #e63946;
 *     --ws-consent-bg: #fdf6ec;
 *     etc...
 *   }
 *
 * Responsive layout:
 *   Desktop (>640px) — banner is a bottom-bar spanning full viewport width
 *   Mobile  (≤640px) — banner is a bottom-sheet card with rounded top corners
 */

/* ── Default Theme Variables ──────────────────────────────────────── */
:root {
  --ws-consent-accent: #2563eb;
  --ws-consent-preference-button-nudge-amount: 1rem;

  --ws-consent-banner-bg: #fff;
  --ws-consent-banner-color: #000;
  --ws-consent-banner-link-color: #2563eb;
  --ws-consent-header-bg: #fff;
  --ws-consent-header-color: #000;
  --ws-consent-header-link-color: #6b7280;
  --ws-consent-header-border-color: var(--ws-consent-accent);
  --ws-consent-body-bg: #fff;
  --ws-consent-body-color: #000;
  --ws-consent-body-link-color: #2563eb;
  --ws-consent-preference-button-bg: #2563eb;
  --ws-consent-preference-button-color: #fff;
}

/* ── Reset / scoping ──────────────────────────────────────────────── */
.ws-consent-banner,
.ws-consent-modal,
.ws-consent-banner *,
.ws-consent-modal * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.ws-consent-banner,
.ws-consent-modal {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: #1a1a2e;
}

/* Shield child elements from bare site selectors (e.g. `p { font-size: 16px }`).
   :where() zeroes the element specificity so our own .ws-consent-* rules still win. */
.ws-consent-banner :where(p, a, h1, h2, h3, h4, span, li, ul, ol),
.ws-consent-modal :where(p, a, h1, h2, h3, h4, span, li, ul, ol) {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  letter-spacing: normal;
  text-transform: none;
  font-weight: normal;
  text-decoration: none;
}

/* ── Screenreader-only ────────────────────────────────────────────── */
.ws-consent-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ═══════════════════════════════════════════════════════════════════ */
/* BANNER — first-visit bottom bar / bottom sheet                     */
/* ═══════════════════════════════════════════════════════════════════ */
.ws-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: var(--ws-consent-banner-bg, #fff);
  box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.1);
}
.ws-consent-banner[hidden] {
  display: none !important;
}

/* Desktop: full-width bottom bar, horizontal layout */
.ws-consent-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
}
.ws-consent-banner__text {
  flex: 1 1 auto;
  min-width: 0;
}
.ws-consent-banner__desc {
  color: var(--ws-consent-banner-color, #3a3a4e);
}
.ws-consent-banner__desc a {
  color: var(--ws-consent-banner-link-color, #2563eb);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.ws-consent-banner__desc a:hover {
  opacity: 0.8;
}
.ws-consent-banner__desc a:focus-visible {
  outline: 2px solid var(--ws-consent-accent);
  outline-offset: 2px;
}
.ws-consent-banner__actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

/* Mobile: bottom-sheet style */
@media (max-width: 992px) {
  .ws-consent-banner {
    border-radius: 14px 14px 0 0;
  }
  .ws-consent-banner__inner {
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem 1rem;
    gap: 1rem;
  }
  .ws-consent-banner__actions {
    flex-direction: column;
  }
}

/* ═══════════════════════════════════════════════════════════════════ */
/* OVERLAY                                                            */
/* ═══════════════════════════════════════════════════════════════════ */
.ws-consent-overlay {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: rgba(0, 0, 0, 0.45);
}
.ws-consent-overlay[hidden] {
  display: none !important;
}

/* ═══════════════════════════════════════════════════════════════════ */
/* MODAL — category toggles                                           */
/* ═══════════════════════════════════════════════════════════════════ */
.ws-consent-modal {
  position: fixed;
  inset: 0;
  z-index: 100001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.ws-consent-modal[hidden] {
  display: none !important;
}
.ws-consent-modal__inner {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: 85vh;
  overflow-y: auto;
  background: var(--ws-consent-body-bg);
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
  /* padding: 1.5rem; */
}

.ws-consent-modal__content {
  padding: 1.5rem;
  padding-top: 1rem;
}

/* Header */
.ws-consent-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid var(--ws-consent-header-border-color, #2563eb);
  background-color: var(--ws-consent-header-bg, #fff);
}
.ws-consent-modal__title {
  font-family: inherit;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ws-consent-header-color, #1a1a2e);
}
.ws-consent-modal__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  border-radius: 6px;
  color: var(--ws-consent-header-link-color, #6b7280);
  cursor: pointer;
  transition: background 0.15s;
}
.ws-consent-modal__close:hover {
  background: #f0f0f5;
  color: #1a1a2e;
}
.ws-consent-modal__close:focus-visible {
  outline: 2px solid var(--ws-consent-accent);
  outline-offset: 2px;
}

/* Description */
.ws-consent-modal__desc {
  font-family: inherit;
  color: var(--ws-consent-body-color, #3a3a4e);
  margin-bottom: 1rem;
}
.ws-consent-modal__desc a {
  color: var(--ws-consent-body-link-color, #2563eb);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.ws-consent-modal__desc a:hover {
  opacity: 0.8;
}
.ws-consent-modal__desc a:focus-visible {
  outline: 2px solid var(--ws-consent-body-link-color, #2563eb);
  outline-offset: 2px;
}

/* Modal actions */
.ws-consent-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

/* Mobile modal: bottom-sheet */
@media (max-width: 640px) {
  .ws-consent-modal {
    align-items: flex-end;
    padding: 0;
  }
  .ws-consent-modal__inner {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 14px 14px 0 0;
    /* padding: 1.25rem 1rem; */
  }
  .ws-consent-modal__actions {
    flex-direction: column;
  }
}

/* ═══════════════════════════════════════════════════════════════════ */
/* CATEGORIES + TOGGLES                                               */
/* ═══════════════════════════════════════════════════════════════════ */
.ws-consent-categories {
  border: none;
}
.ws-consent-category {
  border-top: 1px solid #e5e7eb;
  padding: 0.75rem 0;
}
.ws-consent-category:last-child {
  border-bottom: 1px solid #e5e7eb;
}
.ws-consent-category__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ws-consent-category__name {
  font-weight: 600;
  color: #1a1a2e;
}
.ws-consent-category__desc {
  margin-top: 0.3rem;
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.45;
}
.ws-consent-category__badge {
  font-size: 0.7rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Toggle switch */
.ws-consent-toggle {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
}
.ws-consent-toggle input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.ws-consent-toggle__track {
  display: inline-flex;
  align-items: center;
  width: 38px;
  height: 22px;
  background: #cbd5e1;
  border-radius: 11px;
  padding: 2px;
  transition: background 0.2s;
  flex-shrink: 0;
}
.ws-consent-toggle__thumb {
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}
/* Checked */
.ws-consent-toggle input:checked + .ws-consent-toggle__track {
  background: var(--ws-consent-accent, #2563eb);
}
.ws-consent-toggle input:checked + .ws-consent-toggle__track .ws-consent-toggle__thumb {
  transform: translateX(16px);
}
/* Disabled (necessary) */
.ws-consent-toggle input:disabled + .ws-consent-toggle__track {
  background: #94a3b8;
  cursor: not-allowed;
}
/* Focus ring (T-4) */
.ws-consent-toggle input:focus-visible + .ws-consent-toggle__track {
  outline: 2px solid var(--ws-consent-accent, #2563eb);
  outline-offset: 2px;
}

/* ═══════════════════════════════════════════════════════════════════ */
/* BUTTONS                                                            */
/* ═══════════════════════════════════════════════════════════════════ */
.ws-consent-btn {
  flex: 1 1 0;
  min-width: 150px;
  padding: 0.6rem 1rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: background 0.15s, transform 0.1s;
}
.ws-consent-btn:active {
  transform: scale(0.97);
}
.ws-consent-btn:focus-visible {
  outline: 2px solid var(--ws-consent-accent, #2563eb);
  outline-offset: 2px;
}

/* QC-3: Reject all & Accept all — identical visual weight */
.ws-consent-btn--primary {
  background: #1a1a2e;
  color: #ffffff;
}
.ws-consent-btn--primary:hover {
  background: #2a2a40;
}

/* Customize / secondary */
.ws-consent-btn--secondary {
  background: #f0f0f5;
  color: #1a1a2e;
  border: 1px solid #d0d0da;
}
.ws-consent-btn--secondary:hover {
  background: #e4e4ec;
}

/* Save my choices — accent-coloured */
.ws-consent-btn--accent {
  background: var(--ws-consent-accent, #2563eb);
  color: #ffffff;
}
.ws-consent-btn--accent:hover {
  filter: brightness(0.9);
}

/* ═══════════════════════════════════════════════════════════════════ */
/* PRIVACY POLICY MODAL                                                */
/* ═══════════════════════════════════════════════════════════════════ */
.ws-consent-privacy__inner {
  max-width: 720px;
}
.ws-consent-privacy__body {
  font-family: inherit;
  color: #3a3a4e;
  line-height: 1.65;
}
.ws-consent-modal .ws-consent-privacy__body {
  max-height: 60vh;
  overflow-y: auto;
  padding-right: 0.5rem;
}
.ws-consent-privacy__body h1,
.ws-consent-privacy__body h2,
.ws-consent-privacy__body h3,
.ws-consent-privacy__body h4 {
  font-family: inherit;
  color: #1a1a2e;
  font-weight: 700;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}
.ws-consent-privacy__body h1 { font-size: 1.5rem; }
.ws-consent-privacy__body h2 { font-size: 1.1rem; }
.ws-consent-privacy__body h3 { font-size: 1rem; }
.ws-consent-privacy__body h4 { font-size: 0.9375rem; }
.ws-consent-privacy__body p {
  margin-bottom: 0.75rem;
}
.ws-consent-privacy__body address {
  margin-bottom: 1rem;
}
.ws-consent-privacy__body ul,
.ws-consent-privacy__body ol {
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
}
.ws-consent-privacy__body li {
  margin-bottom: 0.25rem;
}
.ws-consent-privacy__body address p {
  margin-bottom: 0;
}
.ws-consent-privacy__body a {
  color: var(--ws-consent-body-link-color);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.ws-consent-privacy__body a:hover {
  opacity: 0.8;
}
@media (max-width: 640px) {
  .ws-consent-privacy__inner {
    max-width: 100%;
  }
}

/* ═══════════════════════════════════════════════════════════════════ */
/* BLOCKED ELEMENT PARTIAL                                             */
/* ═══════════════════════════════════════════════════════════════════ */
.ws-consent-form-blocked button {
  color: var(--ws-consent-preference-button-color, #FFF);
  background-color: var(--ws-consent-preference-button-bg, #2563eb);
}

.ws-consent-form-blocked a {
  color: var(--ws-consent-body-link-color);
  display: inline-block;
  padding: 5px;
}


/* ═══════════════════════════════════════════════════════════════════ */
/* FOOTER LINK (QC-4 persistent re-access)                             */
/* ═══════════════════════════════════════════════════════════════════ */
.ws-consent-footer-link {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--ws-consent-preference-button-bg, #2563eb);
  color: var(--ws-consent-preference-button-color, #fff);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 2rem;
  font-size: 0.8125rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: opacity 0.15s, box-shadow 0.15s, bottom 0.15s;
}
.ws-consent-footer-link:hover {
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
.ws-consent-footer-link:focus-visible {
  outline: 2px solid var(--ws-consent-accent, #2563eb);
  outline-offset: 2px;
  color: #fff;
}
.ws-consent-footer-link--nudge {
  bottom: var(--ws-consent-preference-button-nudge-amount, 1rem);
}
.ws-consent-footer-link__icon {
  flex-shrink: 0;
}
.ws-consent-last-modified {
  margin: 0;
  margin-top: 0.75rem;
}


/* ═══════════════════════════════════════════════════════════════════ */
/* REDUCED MOTION                                                     */
/* ═══════════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .ws-consent-toggle__track,
  .ws-consent-toggle__thumb,
  .ws-consent-btn,
  .ws-consent-modal__close,
  .ws-consent-footer-link {
    transition: none;
  }
}
/* ------------------- */
/*        setup        */
/* ------------------- */
:root{
    --light-green: #A2E784;
    --green: #5AB035;
    --light-blue: #6CD6FF;
    --light-blue-2: #DCF1F9;
    --blue: #2397C4;
    --black: #181D27;
    --grey: #929292;
    --txt-color: #535862;
    --dark-teal: #395C6B;
    --century-old: century-old-style-std, serif;
    --roboto: "Roboto", sans-serif;

    --ws-consent-accent: var(--green);
    --ws-consent-banner-bg: var(--dark-teal);
    --ws-consent-banner-color: #FFF;
    --ws-consent-banner-link-color: #FFF;
    --ws-consent-header-bg: var(--dark-teal);
    --ws-consent-header-color: #FFF;
    --ws-consent-header-link-color: #FFF;
    --ws-consent-body-bg: #fff;
    --ws-consent-body-color: #000;
    --ws-consent-body-link-color: #2563eb;
    --ws-consent-preference-button-bg: var(--green);
    --ws-consent-preference-button-color: var(--black);
}
body{
    background-color: var(--milk);
}
body *{
    font-family: var(--roboto);
}
body a{
    text-decoration: none;
}
.mw-280{
    max-width: 280px;
}
.mw-480{
    max-width: 480px;
}
.mw-576{
    max-width: 576px;
}
.mw-lg-576{
    width: 100%;;
}
.mw-668{
    max-width: 688px;
}
.mw-768{
    max-width: 768px;
}
.mw-lg-768{
    width: 100%;
}
.mw-991{
    width: 100%;
    max-width: 991px;
}
.mw-1024{
    width: 100%;
    max-width: 1024px;
}
.row-gap-64{
    row-gap: 64px;
}
h1,h2,h3,h4,h5{
    margin-bottom: 0;
}
.section-p{
    padding-top: 64px;
    padding-bottom: 64px;
}
.single-p{
    padding-bottom: 64px;
}
.bg-teal{
    background-color: var(--dark-teal);
}
.bg-light-blue-2{
    background-color: var(--light-blue-2);
}
.fc-white{
    color: #ffffff !important;
}

/* section titles */
.section-title h2{
    font-size: 30px;
    font-weight: 700;
    line-height: 38px;
    margin-bottom: 24px;
}
/* section titles */
.rich-text h2{
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 18px;
}
.section-title p,
.section-title ul,
.section-content p,
.section-content ul,
.rich-text p,
.rich-text ul{
    color: var(--txt-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.section-title .section-link,
.section-content .section-link,
.rich-text .section-link{
    color: var(--primary);
}
.section-title p a,
.section-content p a,
.rich-text p a{
    text-decoration: underline 2px transparent;
    transition: text-decoration-color 0.2s ease;
}
.section-title p a:hover,
.section-content p a:hover,
.rich-text p a:hover{
    text-decoration: underline 2px var(--dark-teal);
}

/* large image container */
.large-img-container {
    width: 100%;
    max-width: 576px;
    height: 240px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
.large-img-container img {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    object-fit: cover;
    position: relative;
}

/* small image container */
.small-img-container {
    width: 100%;
    max-width: 576px;
    height: 240px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 16px;
    position: relative;
}
.small-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

/* full width image */
.full-width-img{
    width: 100%;
    max-width: 1216px;
    height: 100%;
    max-height: 200px;
}
.full-width-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
    overflow: hidden;
}
.full-width-img figcaption{
    color: var(--dark-teal);
    font-size: 16px;
    font-weight: 700;
    margin-left: 16px;
    margin-top: 12px;
}

/* Skip to main content */
.skip-to-main-content {
    position: absolute;
    left: -9999px;
    z-index: 9999;
    padding: 1em;
    background-color: black;
    color: #fff;
    opacity: 0;
}
.skip-to-main-content:focus {
    left: 50%;
    top: 1%;
    transform: translateX(-50%);
    opacity: 1;
    border: 1px solid red;
}

/* buttons */
.jhk-btn-green{
    padding: 12px 18px;
    border-radius: 8px;
    border: 1px solid var(--light-green);
    background-color: var(--green);
    color: var(--black);
    font-weight: 600;
    white-space: nowrap;
}
.btn:first-child:active,
.jhk-btn-green:hover,
.jhk-btn-green:focus-visible{
    border: 1px solid var(--green);
    background-color: var(--light-green);
}
.jhk-btn-teal{
    padding: 12px 18px;
    border-radius: 8px;
    border: 1px solid var(--blue);
    background-color: var(--dark-teal);
    color: #ffffff;
    font-weight: 600;
    white-space: nowrap;
}
.jhk-btn-teal:hover,
.jhk-btn-teal:focus-visible{
    border: 1px solid var(--blue);
    background-color: var(--light-blue);
    color: var(--black);
}

.section-divider{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.section-divider div{
    height: 1px;
    background-color: #E9EAEB;
    width: 100%;
    max-width: 1300px;
    padding: 0px 32px;
    align-self: center;
}


/* navigation bar */
.navbar-brand{
    display: flex;
    flex-direction: row;
    column-gap: 8px;
}
.navbar-brand span{
    display: block;
    font-family: var(--century-old);
    font-weight: 700;
    font-size: 18px;
    color: #ffffff;
}
.navbar-brand small{
    font-size: 12px;
    font-weight: 400;
    font-family: var(--century-old);
    color: #ffffff;
}
.navbar-brand img{
    width: 72px;
    object-fit: contain;
}
.jhk-nav .navbar{
    background-color: var(--dark-teal);
    padding: 18px 0;
}
.jhk-nav .offcanvas{
    background-color: var(--dark-teal);
}
.jhk-nav .navbar-nav{
    column-gap: 8px;
}
.jhk-nav .nav-link{
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    opacity: 1;
    -webkit-box-shadow: inset 0px 0px 0px 0px #fff;
    box-shadow: inset 0px 0px 0px 0px #fff;
    transition: box-shadow 0.2s ease;
}
.navbar-nav .nav-link.active,
.jhk-nav .nav-link:hover{
    -webkit-box-shadow: inset 0px -4px 0px -1px #fff;
    box-shadow: inset 0px -4px 0px -1px #fff;
}
.jhk-nav .nav-link:focus-visible{
    outline: var(--light-blue-2) auto 1px
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show{
    color: #ffffff;
}
.dropdown-item.active,
.dropdown-item:active{
    background-color: var(--dark-teal);
}
.jhk-nav .navbar-toggler{
    color: #ffffff;
    padding: 10px;
    border-color: #ffffff;
}
/* lang switch */
.lang-toggle{
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 8px;
}
.lang-toggle span{
    color: #ffffff;
}
.lang-switch {
    display: flex;
    flex-direction: row;
    column-gap: 1px;
    background-color: var(--light-green);
    border-radius: 8px;
    justify-content: center;
    border: 1px solid var(--light-green);
}
.lang-switch a {
    background-color: var(--light-green);
    padding: 5px 8px;
    color: var(--primary);
    font-weight: 400;
    font-size: 12px;
    transition: background-color 0.2s ease;
}
.lang-switch a:hover,
.lang-switch:focus-visible {
    background-color: var(--green);
    color: var(--black);
}
.lang-switch a.active {
    background-color: var(--green);
    color: var(--black);
    font-weight: 700;
}
.lang-switch a:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}
.lang-switch a:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}
.offcanvas-header .btn-close{
    background-image: none;
    color: #ffffff;
    font-size: 18px;
    opacity: 1;
}
.offcanvas.show .nav-item .dropdown-menu{
    background-color: transparent;
    border: none;
}
.offcanvas.show .nav-item .dropdown-menu .dropdown-item{
    color: #fff;
}

/* -------------- */
/*    homepage    */
/* -------------- */
.home-banner{
    background-color: var(--light-blue-2);
    padding-top: 78px;
    display: flex;
    flex-direction: column;
}
/*.home-banner > div:first-child{*/
/*    padding: 48px 0;*/
/*}*/
.home-banner img{
    max-height: 400;
    width: 100%;
    object-fit: cover;
}
.home-banner h1{
    font-size: 36px;
    line-height: 44px;
    font-weight: 900;
    margin-bottom: 16px;
}
.home-banner p{
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    margin-bottom: 32px;
}
.foundation-numbers{
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}
.foundation-numbers div{
    width: 100%;
    max-width: 280px;
    text-align: center;
}
.foundation-numbers img{
    width: 100%;
    object-fit: contain;
}
.foundation-numbers h3{
    color: var(--blue);
    font-size: 56px;
    font-weight: 900;
    line-height: 64px;
    letter-spacing: -1.2px;
    margin-bottom: 16px;
}
.foundation-numbers span{
    display: block;
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
}
.foundation-numbers p{
    color: var(--txt-color);
    font-size: 16px;
    line-height: 24px;
}

.home-quick-link{
    background-color: var(--light-green);
    width: 100%;
    max-width: 390px;
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    border-radius: 24px;
    transition: background-color 0.2s ease;
    padding: 16px;
    margin-left: auto;
    margin-right: auto;
}
.home-quick-link:hover,
.home-quick-link:focus-visible{
    background-color: var(--light-blue);
}
.home-quick-link img{
    width: 100%;
    /* height: 440px; */
    height: 340px;
    border-radius: 16px;
    object-fit: cover;
}
.home-quick-link h3{
    color: var(--black);
    text-align: center;
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
}
/* CTA */
.txt-cta{
    /* align-items: center; */
    background-color: var(--light-blue-2);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 40px 24px;
    /* text-align: center; */
    width: 100%;
}

/* -------------- */
/*     footer     */
/* -------------- */
footer{
    padding-top: 64px;
    padding-bottom: 48px;
}
.footer-logo{
    width: 100%;
    max-width: 280px;
    display: block;
}
.footer-logo img{
    width: 100%;
    object-fit: contain;
}
footer h5{
    color: var(--light-green);
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 16px;
}
footer .footer-nav-item ul{
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}
footer .footer-nav-item li a{
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}
.footer-end{
    margin-top: 32px;
}
.footer-end *{
    color: #ffffff;
}
.footer-end p{
    font-family: var(--century-old);
    font-size: 20px;
    font-weight: 700;
}
.footer-end > div div{
    font-size: 16px;
    font-weight: 400;
}

/* -------------- */
/* subpage banner */
/* -------------- */
.subpage-banner{
    padding-top: 142px;
    background-color: var(--light-blue-2);
    padding-bottom: 64px;
}
.subpage-banner h1{
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    line-height: 38px;
}

/* about us board of governors */
.user-info{
    gap: 24px;
}
.user-info img{
    width: 240px;
    height: 240px;
    aspect-ratio: 1/1;
    margin-left: auto;
    margin-right: auto;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    object-fit: cover;
}
.user-info h2{
    color: var(--black);
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
}
.user-info span{
    color: var(--dark-teal);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.user-info .bio-text{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    align-self: stretch;
    overflow: hidden;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--txt-color);
    margin-top: 12px;
}
.user-info .read-more-btn{
    color: var(--dark-teal);
    font-weight: 700;
    text-decoration: underline 2px transparent;
    transition: text-decoration-color 0.2s ease;
    margin-top: 12px;
}
.user-info .read-more-btn:hover,
.user-info .read-more-btn:focus-visible{
    text-decoration: underline 2px var(--dark-teal);
}
.user-info .read-more-btn i{
    display: inline;
}
.user-modal .modal-header{
    background-color: var(--dark-teal);
}
.user-modal .btn-close{
    color: #ffffff;
    background-image: none;
    transition: opacity 0.2s ease;
}
.user-modal h5{
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
}
.user-modal small{
    font-size: 16px;
    color: var(--dark-teal);
    line-height: 24px;
}
.user-modal .modal-body div{
    padding-top: 16px;
    color: var(--txt-color);
    font-size: 16px;
    line-height: 24px;
}
.highlighted-title h2{
    color: var(--dark-teal);
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    line-height: 38px;
    letter-spacing: -0.96px;
}

/* ---------------- */
/*    recipients    */
/* ---------------- */
.recipient-table{
    display: flex;
    flex-direction: column;
}
.recipient-table .head{
    background-color: var(--dark-teal);
    text-align: center;
    padding: 16px 24px;
}
.recipient-table .head h2{
    color: #ffffff;
    font-size: 18px;
    line-height: 28px;
}
.recipient-table .body {
    display: grid;
    gap: 0;
    /* border: 1px solid #dee2e6; */
}
.recipient-item {
    padding: 15px;
    border: 0.5px solid #dee2e6;
    font-size: 16px;
    color: var(--black);
    transition: background-color 0.2s ease;
}
.recipient-table .recipient-item:hover{
    background-color: var(--light-blue-2);
}
.recipient-table .body {
    grid-template-columns: repeat(1, 1fr);
}
.recipient-item:nth-child(odd) {
    background-color: #f8f9fa;
}

/* ------------------- */
/*  application pages  */
/* ------------------- */
.application-info-item{
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 480px;
}
.application-info-item .number{
    width: 48px;
    height: 48px;
    align-content: center;
    border-radius: 28px;
    border: 4px solid rgba(108, 214, 255, 0.20);
    background: rgba(108, 214, 255, 0.70);
    -webkit-box-shadow: 0px 0px 0px 4px rgba(108, 214, 255, 0.20);
    box-shadow: 0px 0px 0px 4px rgba(108, 214, 255, 0.20);
    font-weight: 700;
    font-size: 18px;
}
.application-info-item h3{
    color: var(--black);
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
}
.application-info-item p{
    font-size: 16px;
    line-height: 24px;
    color: var(--txt-color);
}
.application-info-item p a{
    text-decoration: underline;
    color: var(--txt-color);
    font-weight: 600;
}
/* ---------------- */
.choice-screen h2{
    color: var(--dark-teal);
    font-size: 24px;
    line-height: 32px;
}
.choice-screen div{
    margin-top: 24px;
}
.bursary-award-form p{
    color: var(--txt-color);
}
.form-label{
    color: #344054;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
}
input.form-control{
    padding: 10px 14px;
}
input.form-control:focus,
textarea.form-control:focus,
.form-select:focus{
    border-color: var(--blue);
    box-shadow: 0 0 0 4px var(--light-blue-2);
}
.btn-link{
    color: var(--dark-teal);
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    text-decoration-color: transparent;
    transition: text-decoration 0.2s ease;
    text-decoration-thickness: 2px;
}
.btn-link:hover{
    color: var(--dark-teal);
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    text-decoration-color: var(--dark-teal);
}
.bursary-award-form h3{
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    color: var(--dark-teal);
}

/* ---------------- */
/*     faq page     */
/* ---------------- */
.faq-section .accordion{
    border: none;
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}
.faq-section .accordion-item{
    border: none;
}
.faq-section .accordion-item:not(:first-child){
    border-top: 1px solid #EAECF0;
}
.faq-section .accordion-item:first-of-type>.accordion-header .accordion-button,
.accordion-item:last-of-type>.accordion-header .accordion-button.collapsed{
    border-radius: 12px;
}
.faq-section .accordion-item h2 button{
    color: var(--black);
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    border-radius: 12px;
    margin-top: 12px;
    display: flex;
    column-gap: 16px;
}
.faq-section .accordion-button:not(.collapsed){
    background-color: transparent;
    box-shadow: none;
}
.faq-section .accordion-body{
    color: var(--txt-color);
    font-size: 18px;
    line-height: 28px;
}
.faq-section .accordion-body a{
    color: var(--txt-color);
    text-decoration: underline;
    font-weight: 600;
}
.faq-section .accordion-button.collapsed:hover{
    background-color: var(--light-blue-2);
}
.faq-section .accordion-button:focus{
    box-shadow: 0 0 0 4px var(--light-blue-2);
}

/* ---------------- */
/*   contact page   */
/* ---------------- */
.contact-item{
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    justify-content: center;
    text-align: center;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}
.contact-item .icon{
    width: 48px;
    height: 48px;
    align-content: center;
    border-radius: 28px;
    border: 4px solid rgba(108, 214, 255, 0.20);
    background: rgba(108, 214, 255, 0.70);
    -webkit-box-shadow: 0px 0px 0px 4px rgba(108, 214, 255, 0.20);
    box-shadow: 0px 0px 0px 4px rgba(108, 214, 255, 0.20);
    font-weight: 700;
    font-size: 20px;
    margin-left: auto;
    margin-right: auto;
}
.contact-item h2{
    color: var(--black);
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    margin-bottom: 20px;
}
.contact-item .content{
    color: var(--txt-color);
}
.contact-item .content a{
    color: var(--txt-color);
    text-decoration: underline;
    transition: color 0.2s ease;
}
.contact-item .content a:hover{
    color: var(--blue);
}
.contact-item .content ul{
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
.form-label{
    margin-bottom: 6px;
}
.form-label span{
    color: red;
    display: inline-block;
}
textarea.form-control{
    height: 135px;
    resize: none;
}


.form-control.is-invalid,
.form-select.is-invalid {
    border-color: #dc3545;
    background-color: rgba(220, 53, 69, 0.05);
}

.form-control.is-invalid:focus,
.form-select.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.15);
}

/* cookie banner */
.cookie-banner{
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background-color: var(--dark-teal);
    transform: translateY(100%);
    transition: transform 0.35s ease;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
}
.cookie-banner-visible{
    transform: translateY(0);
}
.cookie-banner-hidden{
    transform: translateY(100%);
}
.cookie-banner-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 0;
}
.cookie-banner-text{
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.5;
}
.cookie-banner-actions{
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}
.cookie-banner-btn{
    padding: 10px 20px;
    font-size: 0.9rem;
}
@media (max-width: 767px){
    .cookie-banner-inner{
        flex-direction: column;
        text-align: center;
    }
    .cookie-banner-actions{
        width: 100%;
        justify-content: center;
    }
}

/* home banner updates */
.home-banner{
    padding-top: 155px;
    padding-bottom: 64px;
    img{
        max-height: 520px;
        margin-top: 64px;
        border-radius: 16px;
    }
}
@media screen and (min-width: 375px) {

}
/* Phablet */
@media screen and (min-width: 425px) {
    /* large image container */
    .large-img-container {
        height: 320px;
    }
    /* small image container */
    .small-img-container {
        height: 320px;
    }
    /* full width image */
    .full-width-img{
        max-height: 320px;
    }
}
@media screen and (max-width: 575px) {
}
@media screen and (min-width: 576px) {
    .home-quick-link{
        padding: 24px;
    }
    /* small image container */
    .small-img-container {
        height: 400px;
    }
}

/* Tablet */
@media screen and (min-width: 768px) {
    .section-p{
        padding-top: 96px;
        padding-bottom: 96px;
    }
    .section-p h2{
        font-size: 36px;
        line-height: 44px;
    }
    .single-p{
        padding-bottom: 96px;
    }
    .section-title h2{
        font-size: 36px;
        line-height: 44px;
    }
    .rich-text h2{
        font-size: 30px;
        line-height: 38px;
        margin-bottom: 24px;
    }
    .section-title p,
    .section-title ul,
    .section-content p,
    .section-content ul,
    .rich-text p,
    .rich-text ul{
        font-size: 18px;
        line-height: 28px;
    }

    .section-title h2{
        font-size: 36px;
        line-height: 44px;
    }
    .section-title p,
    .section-title ul,
    .section-content p,
    .section-content ul,
    .rich-text p{
        font-size: 18px;
        line-height: 28px;
    }

    /* large image container */
    .large-img-container {
        height: 400px;
    }

    /* CTA */
    .txt-cta{
        padding: 64px;
    }

    /* subpage banner */
    .subpage-banner h1{
        font-size: 48px;
        line-height: 60px;
    }

    /* full width image */
    .full-width-img{
        max-height: 380px;
    }

    /* user info bio */
    .user-info h2{
        font-size: 18px;
        line-height: 28px;
    }

    /* scholarship */
    .highlighted-title h2{
        font-size: 36px;
        line-height: 44px;
    }

    /* all recipients */
    .recipient-table .body {
        grid-template-columns: repeat(2, 1fr);
    }
    .recipient-item:nth-child(even), .recipient-item:nth-child(odd) {
        background: transparent;
    }
    .recipient-item:nth-child(4n),
    .recipient-item:nth-child(4n-1) {
        background-color: #f8f9fa;
    }

    /* application pages */
    .choice-screen h2{
        color: var(--dark-teal);
        font-size: 32px;
        line-height: 40px;
    }

    /* faq page */
    .faq-section .accordion-item h2 button{
        font-size: 24px;
        line-height: 38px;
    }

    .contact-item h2{
        font-size: 18px;
        line-height: 28px;
    }
}


/* Laptop */
@media screen and (min-width: 992px) {
    .mw-lg-576{
        max-width: 576px;
    }
    .mw-lg-768{
        max-width: 768px;
    }

    /* homepage */

    .home-quick-link{
        padding: 16px;
    }

    /* large image container */
    .large-img-container {
        height: 654px;
    }

    /* subpage banner */
    .subpage-banner{
        padding-top: 172px;
        padding-bottom: 96px;
    }

    /* full width image */
    .full-width-img{
        max-height: 480px;
    }

    /* all recipients */
    .recipient-table .body{
        grid-template-columns: repeat(3, 1fr);
    }
    .recipient-item:nth-child(odd), .recipient-item:nth-child(even){
        background: transparent;
    }
    .recipient-item:nth-child(6n),
    .recipient-item:nth-child(6n-1),
    .recipient-item:nth-child(6n-2){
        background-color: #f8f9fa;
    }
}

/* Small screen */
@media screen and (min-width: 1200px) {

    .home-banner h1{
        font-size: 56px;
        line-height: 64px;
    }
    .home-quick-link{
        padding: 24px;
    }
    .home-quick-link img{
        height: 440px;
    }

    /* full width image */
    .full-width-img{
        max-height: 560px;
    }

    /* scholarship */
    .highlighted-title h2{
        font-size: 48px;
        line-height: 60px;
    }

    /* all recipients */
    .recipient-table .body{
        grid-template-columns: repeat(4, 1fr);
    }
    .recipient-item:nth-child(n){
        background: transparent;
    }
    .recipient-item:nth-child(8n),
    .recipient-item:nth-child(8n-1),
    .recipient-item:nth-child(8n-2),
    .recipient-item:nth-child(8n-3){
        background-color: #f8f9fa;
    }
}

/* Large screen */
@media screen and (min-width: 1400px) {
    .home-quick-link h3{
        font-size: 24px;
        line-height: 32px;
    }
}
/* ultra large */
@media screen and (min-width:1536px) {
}
