html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after,
q::before, q::after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.subtitle {
  text-align: left;
  font-size: 3.5rem;
  font-family: "BBH Bogle", sans-serif;
  font-weight: 500;
}

.paragraph {
  color: #181818;
  font-family: "Fira Sans", sans-serif;
  font-size: 1.25rem;
  line-height: 22px;
}

.underline {
  text-decoration: underline;
  color: #fab571;
  font-weight: 700;
}
.underline svg {
  width: 20px;
  height: 20px;
  margin-bottom: -3px;
}
.underline svg path {
  stroke: #fab571;
  stroke-width: 2px;
}

/**
 * This file contains the animations used on the website:
 * 1. Scroll-based animations for elements that appear when entering the viewport
 * 2. Animated scroll down indicator
 */
/**
 * Scroll-triggered animations
 * -----------------------------
 * Allows elements to appear with a smooth animation when
 * they enter the viewport. The .scrolled class is added via JavaScript
 * when the element becomes visible.
 */
.scroll-container .js-scroll {
  opacity: 0;
  transform: translateY(20px);
}
.scroll-container .js-scroll.scrolled {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 500ms ease;
}
.scroll-container .js-scroll.scrolled.slideup {
  transition: opacity 500ms ease, transform 500ms ease;
}

/**
 * Scroll down indicator
 * -----------------------------------
 * Displays animated arrows that indicate to the user they should scroll down
 * to see more content.
 * 
 * Based on code by Mike Wagz (https://codepen.io/mikewagz/pen/PGXqOg)
 * Licensed under the MIT License
 */
.scroll-down-indicator {
  display: block;
  margin: 0 auto;
  opacity: 0.5;
  width: 1rem;
  position: absolute;
  bottom: 0;
  left: 49%;
  bottom: 12.5%;
}
@media (min-width: 768px) {
  .scroll-down-indicator {
    bottom: 10%;
    left: 49.25%;
  }
}

.scroll-down-indicator:before,
.scroll-down-indicator:after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  transform: rotate(45deg);
  border-bottom: 4px solid #ffffff;
  border-right: 4px solid #ffffff;
}

.scroll-down-indicator:before {
  animation: down-arrow-before 2.6s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

.scroll-down-indicator:after {
  animation: down-arrow-after 2.6s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

/**
 * @keyframes animation definitions
 * ----------------------------------
 * Control the movement and opacity of the arrows
 */
@keyframes down-arrow-before {
  50% {
    transform: rotate(45deg) translate(70%, 70%);
  }
  100% {
    transform: rotate(45deg) translate(70%, 70%);
  }
}
@keyframes down-arrow-after {
  50% {
    transform: rotate(45deg) translate(110%, 110%);
    opacity: 0;
  }
  51% {
    transform: rotate(45deg) translate(-130%, -130%);
  }
  100% {
    transform: rotate(45deg) translate(-70%, -70%);
    opacity: 1;
  }
}
.target {
  scroll-margin-top: 60px;
}

.no-select {
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE10+/Edge */
  user-select: none;
}

.js_license_information {
  position: absolute;
  right: 25px;
  color: white;
}

.button {
  font-family: "Fira Sans", sans-serif;
  font-weight: 600;
  text-decoration: none;
}

.button--primary,
.button--disabled,
.button--secondary,
.button--tertiary {
  display: inline-flex;
  align-items: center;
  padding: 1rem 1rem 1rem 1.2rem;
  background-color: #fab571;
  color: #181818;
  border: none;
  border-radius: 15px;
  font-size: 1rem;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.button--primary svg,
.button--disabled svg,
.button--secondary svg,
.button--tertiary svg {
  margin: 0 3px 0 8px;
  width: 25px;
  height: 25px;
}
.button--primary svg path,
.button--disabled svg path,
.button--secondary svg path,
.button--tertiary svg path {
  stroke: #181818;
  stroke-width: 2px;
}

.button--primary {
  font-weight: 400;
}

.button--disabled {
  cursor: not-allowed;
  opacity: 0.4;
}

.button--secondary {
  padding: 0.8rem 1rem;
  background-color: #181818;
  color: #ffffff;
}
.button--secondary svg path {
  stroke: #ffffff;
}

.button--tertiary {
  padding: 0.9rem 1.7rem;
  background-color: #fab571;
  border: 2px solid #fab571;
  color: #181818;
  border-radius: 45px;
  transition: all 0.3s ease;
  opacity: 0.9;
}
.button--tertiary svg path {
  stroke: #181818;
}
.button--tertiary:hover {
  padding: 1rem 2.5rem;
}

.card.highlight {
  transform: scale(1.1);
  z-index: 2;
  border: 1px solid #fab571;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
}
.card.highlight:hover {
  transform: scale(1.1) translateY(-5px);
}
@media (max-width: 767px) {
  .card.highlight {
    transform: scale(1);
    margin: 1rem 0;
    border: 2px solid #fab571;
  }
  .card.highlight:hover {
    transform: translateY(-5px);
  }
}

.card {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  position: relative;
  overflow: hidden;
  font-family: "Fira Sans", sans-serif;
}
.card:hover {
  transform: translateY(-5px);
}
.card__icon {
  position: absolute;
  bottom: -23px;
  right: -23px;
  opacity: 0.1;
  z-index: 0;
}
.card__icon svg {
  width: 8rem;
  height: 8rem;
  transition: transform 0.4s ease, opacity 0.4s ease;
  color: inherit;
}
.card__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.5rem;
  width: 100%;
  text-align: left;
}
.card__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
}
.card__desc, .card__paragraph {
  font-family: "Fira Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  margin-top: 5px;
  text-align: left;
  position: relative;
  z-index: 1;
}
.card__number {
  font-size: 3rem;
  font-weight: 900;
  color: #fab571;
  line-height: 1;
  margin-bottom: 1rem;
}
.card--light {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: rgba(149, 157, 165, 0.1) 0px 8px 24px;
}
.card--light:hover {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 12px 30px;
  border: 1px solid #fab571;
}
.card--light .card__title {
  color: #181818;
}
.card--light .card__title::after {
  background-color: #f58f80;
}
.card--light .card__desc,
.card--light .card__paragraph {
  color: #4b4b4b;
}
.card--dark {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
}
.card--dark:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #fab571;
}
.card--dark .card__title {
  color: #fab571;
}
.card--dark .card__title::after {
  background-color: #fdd796;
}
.card--dark .card__desc,
.card--dark .card__paragraph {
  color: rgba(255, 255, 255, 0.8);
}

.divider {
  display: block;
  width: 100px;
  height: 3px;
  background-color: #fab571;
  margin: 1.5rem 0;
  border-radius: 2px;
}

.in_construction {
  display: flex;
  align-items: center;
  position: fixed;
  bottom: 0;
  width: 100%;
  height: auto;
  padding: 1rem 0.5rem;
  background-color: yellow;
  color: black;
  z-index: 999;
}
.in_construction span {
  margin-left: 0.5rem;
}

.image-credit {
  font-size: 0.75rem;
  color: rgba(24, 24, 24, 0.6);
  text-align: center;
  margin-top: 0.5rem;
  font-family: "Fira Sans", sans-serif;
  font-style: italic;
}
@media (min-width: 768px) {
  .image-credit {
    position: relative;
    left: 1.5rem;
  }
}
.image-credit a {
  color: rgba(24, 24, 24, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}
.image-credit a:hover {
  color: #fab571;
  text-decoration: underline;
}

.image-credit--dark {
  color: rgba(255, 255, 255, 0.6);
}
.image-credit--dark a {
  color: rgba(255, 255, 255, 0.7);
}
.image-credit--dark a:hover {
  color: #fab571;
}

.footer {
  background-color: #ffffff;
  padding: 2.3rem 2.5rem 5.3rem 2.5rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
  color: #181818;
  margin-top: auto;
}
.footer__title {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  min-height: 3rem;
  text-align: center;
  font-family: "BBH Bogle", sans-serif;
  font-size: clamp(3rem, 5vw, 12rem);
  margin-inline: auto;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
@media (min-width: 992px) {
  .footer__title {
    font-size: 3.5rem;
  }
}
@media (min-width: 768px) {
  .footer {
    padding: 5% 13%;
  }
}
.footer .subtitle {
  text-align: center;
  color: #181818;
  margin-bottom: 2rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}
.footer .sr-only {
  margin: 0.9rem 0 0 0;
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.footer__form {
  display: flex;
  flex-direction: column;
  margin: 1rem 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.footer__form input,
.footer__form textarea,
.footer__form .footer__input,
.footer__form .footer__textarea {
  margin: 0.5rem 0 1.5rem 0;
  padding: 0.8rem 0;
  border: none;
  border-radius: 0;
  background: none;
  color: #181818;
  font-size: 1.125rem;
  width: 100%;
  font-family: "Fira Sans", sans-serif;
  position: relative;
  border-bottom: 1px solid rgba(24, 24, 24, 0.2);
  background-image: linear-gradient(#fab571, #fab571);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  transition: background-size 320ms cubic-bezier(0.2, 0.9, 0.3, 1), border-color 220ms ease;
}
.footer__form input::placeholder,
.footer__form textarea::placeholder,
.footer__form .footer__input::placeholder,
.footer__form .footer__textarea::placeholder {
  color: rgba(24, 24, 24, 0.5);
  font-family: "Fira Sans", sans-serif;
}
.footer__form input:focus, .footer__form input:focus-visible,
.footer__form textarea:focus,
.footer__form textarea:focus-visible,
.footer__form .footer__input:focus,
.footer__form .footer__input:focus-visible,
.footer__form .footer__textarea:focus,
.footer__form .footer__textarea:focus-visible {
  outline: none;
  background-size: 100% 2px;
  border-bottom-color: transparent;
}
.footer__form input:not(:placeholder-shown),
.footer__form textarea:not(:placeholder-shown),
.footer__form .footer__input:not(:placeholder-shown),
.footer__form .footer__textarea:not(:placeholder-shown) {
  background-size: 100% 2px;
}
.footer__form-actions {
  margin: 1rem 0 2rem 0;
}
.footer__form-actions button {
  background-color: #181818;
  color: #ffffff;
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.2s, background-color 0.2s;
}
.footer__form-actions button:hover {
  background-color: #fab571;
  transform: translateX(1px);
}
.footer__form-actions button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.footer__form-actions button svg {
  width: 1.2em;
  height: 1.2em;
}
.footer__form-actions button svg path {
  stroke: #ffffff;
  stroke-width: 2px;
}
.footer__form-note {
  font-size: 1rem;
  color: rgba(24, 24, 24, 0.6);
  margin-top: 0;
}
.footer__form-note a {
  color: #fab571;
  text-decoration: none;
}
.footer__form-note a:hover {
  text-decoration: underline;
}
.footer__form-note svg {
  display: inline-block;
  vertical-align: middle;
  width: 1em;
  height: 1em;
  margin-left: 2px;
}
.footer__contact-info {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__email-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  color: #181818;
  text-decoration: none;
  font-size: 1.125rem;
  border-radius: 50px;
  background-color: rgba(24, 24, 24, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer__email-link:hover {
  background-color: rgba(250, 181, 113, 0.15);
  color: #fab571;
}
.footer__email-link:focus-visible {
  outline: 2px solid #fab571;
  outline-offset: 2px;
}
.footer__email-icon {
  width: 1.25em;
  height: 1.25em;
  flex-shrink: 0;
  fill: currentColor;
  transition: transform 0.3s ease;
}
.footer__email-text {
  font-weight: 500;
  letter-spacing: 0.02em;
}
.footer__bottom {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(24, 24, 24, 0.1);
}
.footer__social-section {
  text-align: center;
  margin-bottom: 2rem;
}
.footer__social-title {
  color: #181818;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}
.footer__social-media {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__social-item {
  list-style: none;
}
.footer__social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.75rem;
  color: #181818;
  text-decoration: none;
  background-color: rgba(24, 24, 24, 0.05);
  border: 2px solid transparent;
  border-radius: 50px;
  font-weight: 600;
  font-family: "Fira Sans", sans-serif;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer__social-link svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.footer__social-link:hover {
  background-color: #fab571;
  color: #ffffff;
  border-color: #fab571;
}
.footer__social-link:focus-visible {
  outline: 2px solid #fab571;
  outline-offset: 3px;
}
.footer__social-text {
  font-size: 1.125rem;
  letter-spacing: 0.02em;
}
.footer__legal {
  text-align: center;
  margin-top: 1.5rem;
  list-style: none;
  padding: 0;
}
.footer__legal li {
  margin-bottom: 0.8rem;
  list-style: none;
}
.footer__legal-link {
  color: rgba(24, 24, 24, 0.6);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s ease;
}
.footer__legal-link:hover {
  color: #181818;
  text-decoration: underline;
}

/* 
 * Header Component - Main navigation bar
 * ---------------------------------------------------
 * This file defines the structure, layout and responsive
 * behaviors of the site's navigation bar.
 */
.header {
  background-color: #181818;
  position: fixed; /* Fixes the header at the top of the window */
  top: 0rem;
  left: 0;
  width: 100%;
  color: #ffffff;
  z-index: 1000; /* Ensures the header is above other elements */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: border-radius 0.1s ease-in-out;
  font-family: "Fira Sans", sans-serif;
}
@media (min-width: 768px) {
  .header {
    top: 0;
  }
}
.header__nav {
  position: relative;
  display: flex;
  justify-content: space-between; /* Distributes elements at start and end */
  align-items: center;
  padding: 10px 5%;
}
@media (min-width: 768px) {
  .header__nav {
    margin-left: 2%;
    margin-right: 2%;
  }
}
.header__nav {
  /* 
   * Language selection menu
   * --------------------------
   * Button that controls the opening of the language dropdown menu
   */
}
.header__nav-langmenu {
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
}
.header__nav-langmenu .arrow {
  transition: transform 0.3s ease; /* Rotation animation for the arrow icon */
}
.header__nav {
  /* 
   * Site logo 
   * ------------
   * Contains the logo image and possibly the site name
   */
}
.header__nav-logo {
  display: flex;
  align-items: center;
  padding: 5px;
  font-size: 24px;
  font-weight: bold;
}
.header__nav-logo .header__logo-img {
  width: 35px;
  height: auto;
  filter: brightness(0) saturate(100%) invert(100%) sepia(98%) saturate(0%) hue-rotate(307deg) brightness(102%) contrast(102%);
}
@media (min-width: 992px) {
  .header__nav-logo .header__logo-img {
    width: 50px; /* Slightly larger logo on large screens */
    cursor: pointer;
  }
}
.header__nav {
  /* 
   * Main navigation list 
   * ----------------------------
   * On mobile it displays as a dropdown menu,
   * on desktop as a horizontal bar
   */
}
.header__nav-list {
  background-color: #181818;
  overflow: hidden;
  position: absolute; /* On mobile, absolute positioning for dropdown */
  left: 0;
  top: 30px;
  z-index: -1;
  width: 100%;
  border-radius: 0;
  max-height: 0vh; /* Initially hidden (height 0) */
  padding: 2rem 0 0 0;
  opacity: 1;
  transition: all 0.3s ease; /* Smooth transition to show/hide */
  /* On large screens, displays as horizontal bar */
}
@media (min-width: 992px) {
  .header__nav-list {
    position: static;
    opacity: 1;
    display: flex;
    flex-direction: row;
    max-height: none;
    height: auto;
    padding: 0;
    overflow: visible;
    box-shadow: 0px 12px 20px -10px rgba(149, 157, 165, 0);
    width: auto;
  }
}
@media (min-width: 768px) {
  .header__nav-list {
    padding: 0;
    z-index: 1;
  }
}
.header__nav {
  /* 
   * Language dropdown list 
   * --------------------------
   * Initially hidden, displays when clicking the language button
   */
}
.header__nav-langlist {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0);
  max-height: 0rem; /* Initially hidden */
  opacity: 0;
  overflow: hidden;
  /* Transitions for various effects when showing/hiding */
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease-in-out, border-radius 0.5s ease;
  padding: 0.1rem;
  margin-top: 5px;
  /* Language list items */
}
.header__nav-langlist .header__nav-langitem {
  margin-top: 0px;
  margin: 10px;
  cursor: pointer;
}
.header__nav-langlist {
  /* On large screens, the language menu is a positioned dropdown */
}
@media (min-width: 992px) {
  .header__nav-langlist {
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease-in-out, border-radius 5s ease, box-shadow 1s ease;
    opacity: 0;
    margin-top: 0px;
    overflow: hidden;
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 3.3rem;
    right: -25px; /* Adjusted positioning */
    max-height: 0px;
    padding: 0.1rem;
    background-color: #181818;
    box-shadow: 0px 12px 20px -10px rgba(149, 157, 165, 0);
    border-radius: 15px;
  }
}
@media (min-width: 992px) {
  .header__nav-langlist {
    margin: 0 12%;
  }
}
.header__nav {
  /* 
   * Navigation and language items
   * -------------------------------
   * Style for navigation links and language options
   */
}
.header__nav-item, .header__nav-lang {
  margin: 1rem;
  cursor: pointer;
}
.header__nav-item a, .header__nav-lang a {
  display: block;
  width: 100vw; /* Full width on mobile */
  text-decoration: none;
  color: inherit;
  opacity: 0; /* Initially invisible on mobile (until activation) */
  transition: opacity 0.3s ease;
}
.header__nav-item, .header__nav-lang {
  /* Specific styles for large screens */
}
@media (min-width: 992px) {
  .header__nav-item a, .header__nav-lang a {
    width: 100%;
    opacity: 1; /* Visible on desktop */
  }
  .header__nav-item, .header__nav-lang {
    font-size: 1.25rem;
    display: inline-block;
    position: relative;
    /* Animated underline effect on hover */
  }
  .header__nav-item::after, .header__nav-lang::after {
    content: "";
    position: absolute;
    width: 100%;
    transform: scaleX(0); /* Initially scale 0 (invisible) */
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #fab571;
    transition: transform 0.25s ease-out;
  }
}
.header__nav {
  /* 
   * Hamburger menu button
   * -----------------------
   * Only visible on mobile, controls the opening of the main menu
   */
}
.header__nav-burguer {
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
  /* Hidden on large screens */
}
@media (min-width: 992px) {
  .header__nav-burguer {
    display: none;
  }
}
.header__nav {
  /* Hamburger menu lines */
}
@media (max-width: 1399px) {
  .header__nav-burguer-line {
    display: block;
    width: 30px;
    height: 2px;
    margin: 5px 0;
    transition: all 0.3s ease; /* For animation when transforming to X */
    background-color: #ffffff;
  }
}

/*
 * ACTIVE STATES
 * --------------
 * These styles are applied via JavaScript to control
 * the different interaction states of the menus
 */
/* Animation of hamburger button to X shape when active */
@media (max-width: 991px) {
  .header__nav-burguer--active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px); /* Diagonal line \ */
  }
  .header__nav-burguer--active span:nth-child(2) {
    opacity: 0; /* Hides middle line */
  }
  .header__nav-burguer--active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px); /* Diagonal line / */
  }
}

/* 
 * Expands max-height to show menus
 * when active (burger and lang)
 */
.header__nav--active,
.header__nav-langlist--active {
  max-height: 13rem;
}

/* Makes links visible when mobile menu is active */
.header__nav--active {
  box-shadow: 0 15px 25px -10px rgba(0, 0, 0, 0.15);
}
@media (min-width: 992px) {
  .header__nav--active {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0);
  }
}
.header__nav--active a {
  opacity: 1;
}

/* Additional adjustments for language menu when active */
.header__nav-langlist--active {
  max-height: 7rem;
  opacity: 1;
  overflow: none; /* Note: should be 'visible' or 'auto', 'none' is not valid */
}
@media (min-width: 992px) {
  .header__nav-langlist--active {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }
}

/* 
 * Style for active/selected navigation item
 * Shows accent color and animated bottom line
 */
.item--active a {
  color: #fab571;
}
.item--active::after {
  transform: scaleX(1); /* Shows expanded bottom line */
}

/* 
 * Arrow rotation when language menu is active
 * to visually indicate open/closed state
 */
.header__nav-langmenu--active .arrow {
  transform: rotate(180deg); /* Rotates arrow upward */
}

html,
.body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  scroll-behavior: smooth;
}

.body {
  background-color: #ffffff;
  flex: 1;
  display: flex;
  flex-direction: column;
  opacity: 0;
}

.main__intro {
  padding: 1rem;
  padding-top: 2rem;
}
@media (max-width: 991px) {
  .main__intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.main__intro {
  color: #ffffff;
  min-height: 100vh;
  position: relative;
  bottom: 3rem;
  background-image: url("../../assets/images/background.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.main__intro::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, rgba(65, 91, 138, 0.85) 0%, rgba(65, 91, 138, 0.7) 50%, rgba(65, 91, 138, 0.3) 100%);
}
.main__intro-name, .main__intro-subtitle, .main__intro-donate, .main__intro-salutation-container, .main__intro-logo {
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .main__intro {
    padding-top: 17%;
    min-height: 80vh;
    padding-left: 10%;
    padding-right: 10%;
  }
}
.main__intro-logo-name-container {
  display: flex;
  flex-direction: row;
}
@media (min-width: 992px) {
  .main__intro-logo-name-container {
    padding: 0 25%;
  }
}
.main__intro-logo {
  width: 30vw;
  flex: 1;
  position: relative;
  bottom: 0px;
}
@media (min-width: 992px) {
  .main__intro-logo {
    width: 15vw;
  }
}
.main__intro-name {
  margin-top: 0.1rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  font-weight: 400;
  font-family: "BBH Bogle", sans-serif;
  text-align: left;
  font-size: clamp(2.7rem, 10vw, 5rem);
  word-wrap: break-word;
  hyphens: auto;
  padding: 0 1rem;
  color: #ffffff;
  flex: 1;
}
@media (min-width: 992px) {
  .main__intro-name {
    font-size: 6.5rem;
  }
}
.main__intro-subtitle {
  margin-top: 1rem;
  margin-bottom: 1rem;
  min-height: 3rem;
  text-align: center;
  font-family: "Fira Sans", sans-serif;
  line-height: 1.4;
  font-size: 1.125rem;
  max-width: 800px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  font-weight: 400;
}
@media (min-width: 992px) {
  .main__intro-subtitle {
    font-size: 1.75rem;
  }
}
.main__intro-donate {
  display: flex;
  justify-content: center;
  align-items: center;
}
.main__intro-donate a {
  text-decoration: none;
}
.main__intro-donate .paragraph {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 400;
  text-decoration: none;
}
.main .about-us {
  padding: 2.3rem 2.5rem 5.3rem 2.5rem;
  font-family: "Fira Sans", sans-serif;
  font-size: 1.75rem;
  background-color: #ffffff;
}
.main .about-us .subtitle {
  text-align: center;
  margin: 2rem 2rem 1.3rem 2rem;
  color: #f58f80;
}
.main .about-us .paragraph {
  text-align: center;
  margin-bottom: 0.8rem;
  color: #181818;
}
.main .about-us .divider {
  display: none;
}
.main .about-us .underline {
  color: #f58f80;
}
@media (min-width: 768px) {
  .main .about-us {
    padding-left: 13%;
    padding-right: 13%;
    padding-bottom: 0px;
    padding-top: 3%;
  }
  .main .about-us .divider {
    display: block;
    background-color: #f58f80;
  }
  .main .about-us .subtitle {
    margin: 2rem 2rem 1.3rem 0rem;
    text-align: left;
  }
  .main .about-us .paragraph {
    text-align: left;
  }
}
@media (min-width: 768px) {
  .main .about-us__intro p {
    width: 60%;
    margin: 0 0 1rem 0;
  }
}
.main .about-us__media {
  gap: 3rem;
}
@media (min-width: 768px) {
  .main .about-us__media {
    display: flex;
    flex-direction: row-reverse;
    gap: 0;
    height: 15rem;
  }
}
.main .about-us__media p {
  margin-bottom: 3rem;
  text-align: left;
}
@media (min-width: 992px) {
  .main .about-us__media p {
    line-height: 25px;
    width: 60%;
    margin: 0;
  }
}
.main .about-us__media figure img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 4px 3px 17px -11px rgba(0, 0, 0, 0.2);
}
@media (min-width: 768px) {
  .main .about-us__media figure img {
    width: 380px;
    height: 450px;
  }
}
.main .about-us__media figure {
  display: block;
  margin: 3rem auto;
}
@media (min-width: 768px) {
  .main .about-us__media figure {
    width: 324px;
    height: 450px;
    position: relative;
    bottom: 20rem;
    left: 2rem;
    margin: 0 auto;
  }
}
.main .mission {
  padding: 2.3rem 2.5rem 5.3rem 2.5rem;
  font-family: "Fira Sans", sans-serif;
  font-size: 1.75rem;
  background-color: #2c3e50;
  color: #ffffff;
}
.main .mission .subtitle {
  text-align: center;
  margin-bottom: 2rem;
  color: #ffffff;
}
@media (min-width: 768px) {
  .main .mission .subtitle {
    text-align: right;
  }
}
.main .mission .paragraph {
  text-align: center;
  color: #ffffff;
}
@media (min-width: 768px) {
  .main .mission .paragraph {
    text-align: right;
  }
}
.main .mission .subtitle,
.main .mission .underline {
  color: #fab571;
}
.main .mission .divider {
  display: none;
  background-color: #fab571;
}
@media (min-width: 768px) {
  .main .mission {
    padding-left: 13%;
    padding-right: 13%;
    padding-bottom: 5px;
    padding-top: 8%;
  }
  .main .mission .divider {
    display: block;
    margin-left: auto;
    margin-right: 0;
  }
}
@media (min-width: 768px) {
  .main .mission__intro p {
    width: 60%;
    margin: 0 0 1rem 0;
    margin-left: auto;
    text-align: right;
  }
}
.main .mission__intro p {
  color: #ffffff;
}
.main .mission__media {
  gap: 3rem;
}
@media (min-width: 768px) {
  .main .mission__media {
    display: flex;
    flex-direction: row;
    gap: 0;
    height: 17rem;
  }
}
.main .mission__media p {
  margin-bottom: 3rem;
  text-align: left;
}
@media (min-width: 992px) {
  .main .mission__media p {
    line-height: 25px;
    width: 60%;
    margin: 0;
  }
}
.main .mission__media figure img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 4px 3px 17px -11px rgba(0, 0, 0, 0.2);
}
@media (min-width: 768px) {
  .main .mission__media figure img {
    width: 380px;
    height: 450px;
  }
}
.main .mission__media figure {
  display: block;
  margin: 3rem auto;
}
@media (min-width: 768px) {
  .main .mission__media figure {
    width: 324px;
    height: 450px;
    position: relative;
    bottom: 15rem;
    right: 6rem;
    margin: 0 auto;
  }
}
.main .our-approach {
  padding: 2.3rem 2.5rem 5.3rem 2.5rem;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .main .our-approach {
    padding: 7% 13%;
    padding-bottom: 13.25%;
  }
}
.main .our-approach__subtitle {
  text-align: center;
  margin-bottom: 1rem;
  color: #181818;
}
.main .our-approach__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.main .how-to-help {
  padding: 2.3rem 2.5rem 5.3rem 2.5rem;
  padding-top: 4rem;
  padding-bottom: 8rem;
  background-color: #2c3e50;
  color: #ffffff;
}
@media (min-width: 768px) {
  .main .how-to-help {
    padding: 4rem 13% 13.25% 13%;
  }
}
.main .how-to-help__subtitle {
  text-align: center;
  margin-bottom: 1rem;
  margin-top: 3rem;
  color: #ffffff;
}
.main .how-to-help__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

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