/* stylelint-disable no-descending-specificity */
/* stylelint-disable */
/* stylelint-disable */
a.button,
button,
.button {
  font-family: var(--body-font-family);
  font-size: var(--text-size-regular);
  line-height: var(--heading-line-height);
  display: inline-block;
  text-decoration: none;
  border: 1px solid transparent;
  padding: 7px var(--spacing-small);
  text-align: center;
  font-style: normal;
  font-weight: 400;
  cursor: pointer;
  color: var(--fixed-dark-grey);
  background-color: var(--fixed-brand-yellow);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  border-radius: var(--border-radius);
  gap: var(--spacing-xsmall);
  position: relative;
}
@media (min-width: 1024px) {
  a.button,
  button,
  .button {
    border-radius: clamp(var(--border-radius), 1.5vw, 42px);
  }
}
a.button:hover,
button:hover,
.button:hover {
  background-color: var(--dark-grey);
  color: var(--yellow-dark);
}
a.button.primary,
button.primary,
.button.primary {
  float: left;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
a.button.primary::before,
button.primary::before,
.button.primary::before {
  content: "";
  mask-image: url("/icons/arrow-right.svg");
  width: 24px;
  height: 24px;
  background-color: var(--fixed-dark-grey);
}
a.button.primary:hover::before,
button.primary:hover::before,
.button.primary:hover::before {
  background-color: var(--yellow-dark);
}
a.button.secondary,
button.secondary,
.button.secondary {
  background-color: unset;
  border: 1px solid;
  color: inherit;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
a.button.secondary:hover,
button.secondary:hover,
.button.secondary:hover {
  opacity: 0.5;
}
a.button.light-grey,
button.light-grey,
.button.light-grey {
  background: var(--light-grey);
  color: var(--fixed-dark-grey);
}
a.button.light-grey:hover, a.button.light-grey:focus-visible, a.button.light-grey:focus,
button.light-grey:hover,
button.light-grey:focus-visible,
button.light-grey:focus,
.button.light-grey:hover,
.button.light-grey:focus-visible,
.button.light-grey:focus {
  background-color: var(--fixed-dark-grey);
  color: var(--fixed-white);
}
a.button.small,
button.small,
.button.small {
  font-size: var(--text-size-xsmall);
  padding: 3px 12px;
}
@media (min-width: 1024px) {
  a.button.small,
  button.small,
  .button.small {
    font-size: clamp(14px, 0.7vw, 18px);
  }
}
a.button.arrow-right,
button.arrow-right,
.button.arrow-right {
  float: left;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: unset;
  width: fit-content;
  border: 1px solid;
  color: inherit;
}
a.button.arrow-right::after,
button.arrow-right::after,
.button.arrow-right::after {
  content: "";
  mask-image: url("/icons/arrow-right.svg");
  width: 24px;
  height: 24px;
  background-color: var(--dark-grey);
}
a.button.arrow-right:hover::after,
button.arrow-right:hover::after,
.button.arrow-right:hover::after {
  background-color: var(--brand-grey);
}
a.button.arrow-right:focus::after, a.button.arrow-right:hover,
button.arrow-right:focus::after,
button.arrow-right:hover,
.button.arrow-right:focus::after,
.button.arrow-right:hover {
  color: var(--brand-grey);
}
a.button.arrow-down,
button.arrow-down,
.button.arrow-down {
  float: right;
  display: inline-flex;
  color: inherit;
  background-color: unset;
  border: 1px solid;
  justify-content: space-between;
  flex-shrink: 0;
  width: fit-content;
}
a.button.arrow-down::after,
button.arrow-down::after,
.button.arrow-down::after {
  content: "";
  mask-image: url("../icons/arrow-down.svg");
  width: 24px;
  height: 24px;
  background-color: var(--dark-grey);
}
a.button.arrow-down:hover::after,
button.arrow-down:hover::after,
.button.arrow-down:hover::after {
  background-color: var(--brand-grey);
}
a.button.arrow-down:focus::after, a.button.arrow-down:hover,
button.arrow-down:focus::after,
button.arrow-down:hover,
.button.arrow-down:focus::after,
.button.arrow-down:hover {
  color: var(--brand-grey);
}
a.button__category-pill,
button__category-pill,
.button__category-pill {
  font-family: var(--body-strong-font-family);
  float: right;
  display: inline-flex;
  background: var(--light-grey);
  color: var(--fixed-dark-grey);
  padding: 4px 16px;
  height: 40px;
  border: 2px solid transparent;
  line-height: var(--body-line-height);
  width: fit-content;
}
a.button__category-pill::after,
button__category-pill::after,
.button__category-pill::after {
  content: attr(data-count);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--fixed-dark-grey);
  font-size: var(--text-size-xxsmall);
  height: 24px;
  width: 24px;
}
a.button__category-pill:hover,
button__category-pill:hover,
.button__category-pill:hover {
  background-color: var(--fixed-dark-grey);
  color: var(--fixed-white);
}
a.button__category-pill:hover::after,
button__category-pill:hover::after,
.button__category-pill:hover::after {
  border: 2px solid var(--fixed-white);
}
a.button__category-pill--active,
button__category-pill--active,
.button__category-pill--active {
  background-color: var(--dark-grey);
  color: var(--white);
}
a.button__category-pill--active::after,
button__category-pill--active::after,
.button__category-pill--active::after {
  border: 2px solid var(--white);
}

button:disabled,
button:disabled:hover {
  background-color: var(--white);
  cursor: unset;
}

.default-content-wrapper .button-container a {
  text-decoration: none;
}

/*
  * Adds the styles for an animated 'X' button to the element.
  * Exact positioning should be defined in the corresponding element, based on each use-case.
  * @param $pathToButton: the path as url(...) from where the asset should be loaded
 */
/*
  * Hides the default 'X' button added by the Chromium-based browsers on input[type="search"] and makes the input look regular.
*/
.navigation {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  padding: var(--spacing-large);
  background-color: var(--white);
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}
@media (min-width: 1024px) {
  .navigation {
    width: 486px;
    left: unset;
  }
}
.navigation--active {
  opacity: 1;
  visibility: visible;
}
.navigation__overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}
.navigation__overlay--active {
  opacity: 1;
  visibility: visible;
}
.navigation__header {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  justify-content: space-between;
  padding-bottom: var(--spacing-medium);
}
.navigation__controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
}
.navigation__top-items {
  grid-column: 2/4;
  display: flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  margin: 0;
  padding: 0;
}
.navigation__top-item {
  list-style: none;
}
.navigation__top-item--access {
  display: none;
}
.navigation__language {
  --language-width: 80px;
  --language-height: 40px;
  --language-padding-top: 3px;
  --language-padding-left: 4px;
  --language-option-margin: 1px;
  --thumbnail-size: 32px;
  --thumbnail-translate: 0px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: var(--language-width);
  height: var(--language-height);
  margin: 0;
  padding: 0;
  list-style: none;
  border-radius: 100px;
  background-color: var(--light-grey);
  border: 1px solid var(--shadow-stroke);
  overflow: hidden;
}
.dark-mode .navigation__language {
  background-color: var(--light-dark-grey);
}
.navigation__language::before {
  content: "";
  position: absolute;
  top: var(--language-padding-top);
  left: var(--language-padding-left);
  width: var(--thumbnail-size);
  height: var(--thumbnail-size);
  border-radius: 100px;
  z-index: 1;
  background-color: var(--fixed-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease;
  transform: translateX(var(--thumbnail-translate));
}
.dark-mode .navigation__language::before {
  background-color: var(--white);
}
.navigation__language:has(.navigation__language-option:last-child.navigation__language-option--active) {
  --thumbnail-translate: calc(var(--language-width) - (2 * var(--language-padding-left)) - var(--thumbnail-size) - 1.5px);
}
.navigation__language-option {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  font-family: var(--heading-font-family), sans-serif;
  font-size: var(--text-size-xsmall);
  line-height: 1;
  color: var(--dark-grey);
  margin-left: var(--language-option-margin);
}
.navigation__language-option--active {
  color: var(--dark-grey);
}
.navigation__search {
  margin: 8px 0 18px;
  position: relative;
  z-index: 10;
}
.navigation__search:has(.navigation__search-suggestions--visible) ~ .navigation__items {
  visibility: hidden;
}
.navigation__search:has(.navigation__search-suggestions--visible) ~ .navigation__items * {
  visibility: hidden;
}
.navigation__search-form {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border-radius: 100px;
  background: var(--light-gray-searchfield);
  border: 1px solid var(--brand-grey);
}
.dark-mode .navigation__search-form {
  border: 1px solid var(--input-field-border-dark);
}
.navigation__search-form:focus-within {
  outline: 2px solid var(--fixed-brand-yellow);
  outline-offset: 4px;
}
.navigation__search-form-delete {
  opacity: 0;
}
.navigation__search-form--filled .navigation__search-form-delete {
  position: absolute;
  width: 40px;
  height: 40px;
  cursor: pointer;
  top: 0;
  right: 10px;
  opacity: 1;
}
.navigation__search-form--filled .navigation__search-form-delete::before {
  content: "";
  mask-image: url("../../icons/close-sidebar.svg");
  background-color: var(--dark-grey);
  mask-size: contain;
  mask-repeat: no-repeat;
  width: 14px;
  height: 14px;
  position: absolute;
  top: 45%;
  left: 40%;
  transition: transform 300ms ease;
}
.navigation__search-form--filled .navigation__search-form-delete:hover::before {
  transform: rotate(90deg);
}
.navigation__search-icon {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.navigation__search-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--light-dark-grey);
  stroke-width: 2;
}
.navigation__search-input {
  -webkit-appearance: textfield;
  appearance: textfield;
  flex: 1;
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font-family: var(--body-font-family);
  font-size: var(--text-size-small);
  color: var(--dark-grey);
}
.navigation__search-input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}
.navigation__search-input::-webkit-search-decoration {
  display: none;
}
.navigation__search-input::-webkit-search-results-button {
  display: none;
}
.navigation__search-input::-webkit-search-results-decoration {
  display: none;
}
.navigation__search-input::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}
.navigation__search-input::-webkit-search-decoration, .navigation__search-input::-webkit-search-cancel-button {
  margin: 0;
}
.navigation__search-input::placeholder {
  color: var(--brand-grey);
}
.navigation__search-suggestions {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  max-height: 320px;
  overflow-y: auto;
  width: 100%;
  z-index: 20;
}
.navigation__search-suggestions--visible {
  display: block;
}
.navigation__search-suggestions ul {
  padding: var(--spacing-xsmall);
  margin: 0;
  list-style: none;
}
.navigation__search-suggestions li {
  list-style: none;
}
.navigation__search-suggestions-title {
  padding: var(--spacing-small) var(--spacing-xsmall) 0;
  font-size: var(--text-size-small);
  font-weight: var(--medium-font-weight);
  color: var(--brand-grey);
}
.dark-mode .navigation__search-suggestions-title {
  color: var(--brand-grey);
}
.navigation__search-suggestion-item {
  margin: 0;
}
.navigation__search-suggestion-link {
  display: block;
  padding: var(--spacing-xsmall);
  border-radius: 8px;
  text-decoration: none;
  color: var(--dark-grey);
}
.navigation__search-suggestion-link mark {
  background-color: var(--fixed-brand-yellow);
  color: var(--fixed-dark-grey);
}
.navigation__search-suggestion-link:hover {
  background: var(--light-grey);
}
.dark-mode .navigation__search-suggestion-link {
  color: var(--fixed-white);
}
.dark-mode .navigation__search-suggestion-link:hover {
  background: var(--light-dark-grey);
}
.navigation__items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: var(--spacing-small) 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 1024px) {
  .navigation__items {
    width: 115%;
    margin-left: calc(var(--spacing-large) * -1);
  }
}
.navigation__submenu {
  position: relative;
  margin: 0 0 0 var(--spacing-small);
  padding: 0 0 0 28px;
  list-style: none;
}
.navigation__submenu::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--shadow-stroke-inset);
}
.dark-mode .navigation__submenu::before {
  background: var(--light-dark-grey);
}
.navigation__submenu-counter {
  display: flex;
  width: 40px;
  height: 40px;
  padding: var(--spacing-xxsmall);
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 64px;
  background: var(--light-grey);
  overflow: hidden;
  color: var(--dark-grey);
  text-overflow: ellipsis;
  font-size: var(--text-size-small);
  font-weight: var(--light-font-weight);
}
.dark-mode .navigation__submenu-counter {
  background: var(--light-dark-grey);
}
.navigation__submenu-toggle {
  grid-column: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 100px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--dark-grey);
}
.navigation__submenu-toggle svg {
  width: 60px;
  height: 60px;
  fill: currentColor;
}
.navigation__submenu-item {
  --submenu-inset: 12px;
}
.navigation__submenu-item > a {
  display: block;
  padding: 10px var(--submenu-inset);
  margin: 0 calc(-1 * var(--submenu-inset));
  border-radius: 10px;
  font-size: var(--heading-font-size-s);
  line-height: 1.4;
  text-decoration: none;
  color: var(--light-dark-grey);
}
.dark-mode .navigation__submenu-item > a {
  color: var(--dark-grey);
}
.navigation__submenu-item > a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--fixed-white), 0 0 0 4px var(--dark-grey);
}
.navigation__submenu-item > a:hover {
  background: var(--light-grey);
}
.dark-mode .navigation__submenu-item > a:hover {
  background: var(--light-dark-grey);
}
.navigation__submenu-item--active > a {
  background: var(--light-grey);
  color: var(--dark-grey);
}
.dark-mode .navigation__submenu-item--active > a {
  background: var(--light-dark-grey);
}
.navigation__item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  column-gap: 12px;
  font-size: var(--heading-font-size-m);
  line-height: var(--heading-line-height);
  padding: 4px var(--spacing-large);
  margin: 0 -2px;
  border-radius: 8px;
}
.navigation__item--expanded .navigation__submenu-toggle {
  transform: rotate(180deg);
}
.navigation__item > a {
  display: block;
  text-decoration: none;
  color: var(--dark-grey);
}
.dark-mode .navigation__item > a {
  color: var(--dark-grey);
}
.navigation__item--active {
  background: var(--light-grey);
}
.dark-mode .navigation__item--active {
  background: var(--light-dark-grey);
}
.navigation__item:hover {
  background: var(--light-grey);
}
.dark-mode .navigation__item:hover {
  background: var(--light-dark-grey);
}
.navigation__bottom-bar {
  margin-top: auto;
  display: flex;
  align-items: center;
  align-self: stretch;
  gap: var(--spacing-small);
}
@media (min-width: 1024px) {
  .navigation__bottom-bar {
    padding-right: 70px;
  }
}
.navigation__social-list {
  display: flex;
  gap: var(--spacing-xsmall);
  height: 35px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.navigation__contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 40px;
}
.navigation__contact svg {
  display: block;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}
.navigation__top-item:hover svg {
  fill: var(--fixed-brand-yellow);
}

.toggle-switch {
  grid-column: 1;
  --toggle-width: 80px;
  --toggle-height: 40px;
  --toggle-padding-top: 3px;
  --toggle-padding-left: 4px;
  --thumbnail-size: 32px;
  --thumbnail-translate: calc(var(--toggle-width) - (2 * var(--toggle-padding-left)) - var(--thumbnail-size) - 1.5px);
  position: relative;
  display: inline-block;
  width: var(--toggle-width);
  height: var(--toggle-height);
}
.toggle-switch label {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  place-items: center center;
  border-radius: 100px;
  background-color: var(--light-grey);
  border: 1px solid var(--shadow-stroke);
  cursor: pointer;
}
.toggle-switch label::before {
  content: "";
  position: absolute;
  top: var(--toggle-padding-top);
  left: var(--toggle-padding-left);
  width: var(--thumbnail-size);
  height: var(--thumbnail-size);
  border-radius: 100px;
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transform: translateX(0);
  transition: transform 0.25s ease;
}
.dark-mode .toggle-switch label {
  background-color: var(--light-dark-grey);
}
.toggle-switch__icon {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 17px;
  height: 17px;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease;
}
.toggle-switch__icon--sun {
  left: calc(var(--toggle-width) / 4);
  fill: var(--dark-grey);
}
.dark-mode .toggle-switch__icon--sun {
  fill: var(--dark-grey);
}
.toggle-switch__icon--moon {
  left: calc(var(--toggle-width) * 3 / 4 - 1px);
  fill: var(--dark-grey);
}
.dark-mode .toggle-switch__icon--moon {
  fill: var(--dark-grey);
}
.toggle-switch input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  margin: 0;
  cursor: pointer;
}
.toggle-switch input:focus-visible + label {
  outline: 0;
  box-shadow: 0 0 0 2px var(--fixed-white), 0 0 0 4px var(--dark-grey);
  border-radius: 100px;
}
.toggle-switch input:checked + label::before {
  transform: translateX(var(--thumbnail-translate));
}
.toggle-switch input:checked + label .toggle-switch__icon--sun {
  opacity: 0.45;
}
.toggle-switch input:checked + label .toggle-switch__icon--moon {
  opacity: 1;
}
.toggle-switch input:not(:checked) + label .toggle-switch__icon--sun {
  opacity: 1;
}
.toggle-switch input:not(:checked) + label .toggle-switch__icon--moon {
  opacity: 0.45;
}

.menu-button {
  position: fixed;
  right: 1.5rem;
  top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  cursor: pointer;
  color: var(--fixed-dark-grey);
  z-index: 1001;
  transition: transform 0.3s ease, opacity 0.3s ease;
  /* makes sure the burger menu is hidden when the sidebar is opened in full-width (on mobile & tablet) */
}
.header--dark .menu-button, .dark-mode .menu-button {
  color: var(--brand-grey);
}
.has-overlay .menu-button {
  opacity: 0;
  pointer-events: none;
}
@media (min-width: 1024px) {
  .has-overlay .menu-button {
    opacity: 1;
    pointer-events: auto;
  }
}
.header--dark:not(.dark-mode) .menu-button--active {
  color: var(--fixed-dark-grey);
}
@media (min-width: 1440px) {
  .menu-button {
    right: 2rem;
  }
}
.menu-button span {
  position: absolute;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
}
.menu-button span:nth-child(1) {
  transform: translateY(-6px);
}
.menu-button span:nth-child(2) {
  transform: translateY(0);
}
.menu-button span:nth-child(3) {
  transform: translateY(6px);
}
.menu-button--active span:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}
.menu-button--active span:nth-child(2) {
  opacity: 0;
}
.menu-button--active span:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
}
.header--dark:not(.dark-mode) .menu-button--active:hover {
  color: var(--light-dark-grey);
}
.menu-button:hover {
  color: var(--light-dark-grey);
}
.header--dark .menu-button:hover, .dark-mode .menu-button:hover {
  color: var(--fixed-brand-yellow);
}
.menu-button--hidden:not(.menu-button--active) {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

body.header--light {
  background-color: var(--white);
}

body.header--dark {
  background-color: var(--fixed-dark-grey);
}

.header-wrapper {
  position: sticky;
  z-index: 10;
  top: 0;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
  width: 100%;
  height: var(--header-height-mobile);
}
.header-wrapper--has-partner {
  height: var(--header-height-mobile-adobe);
}
@media (min-width: 768px) {
  .header-wrapper--has-partner {
    height: var(--header-height-tablet-adobe);
  }
}
@media (min-width: 1024px) {
  .header-wrapper--has-partner {
    height: var(--header-height-desktop-adobe);
  }
}
@media (max-width: 1023.98px) {
  .has-overlay .header-wrapper {
    opacity: 0;
    pointer-events: none;
  }
}
.header-wrapper.header--hidden {
  transform: translateY(-100%);
  opacity: 0;
}
.header-wrapper .header {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 1.5rem;
}
.header-wrapper .header__logo-link {
  display: flex;
  align-items: center;
}
.header-wrapper .header__logo-link img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.header-wrapper .header__logo--img {
  display: flex;
  height: 100%;
}
.header-wrapper .header__logo-container {
  width: auto;
  max-width: 154px;
  height: 100%;
  display: flex;
  align-items: center;
}
.header-wrapper .header__svg-container {
  height: 80px;
}
@media (min-width: 768px) {
  .header-wrapper .header__svg-container {
    height: 100px;
  }
}
.header-wrapper .header__svg-container img {
  height: 100%;
}
.header-wrapper .header__right-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 1.5rem;
  width: 70%;
}
@media (min-width: 768px) {
  .header-wrapper .header__right-wrap {
    width: 100%;
  }
}
.header-wrapper .header__right-wrap .header__partner {
  display: flex;
  align-items: center;
  height: 100%;
  min-width: 80px;
  margin-left: 1rem;
  margin-right: 3.5rem;
  width: 70%;
  justify-content: flex-end;
}
@media (min-width: 768px) {
  .header-wrapper .header__right-wrap .header__partner {
    column-gap: 0;
    width: 40%;
  }
}
@media (min-width: 1024px) {
  .header-wrapper .header__right-wrap .header__partner {
    margin-top: 0;
    width: 30%;
  }
}
@media (min-width: 1440px) {
  .header-wrapper .header__right-wrap .header__partner {
    margin-right: 3.5rem;
  }
}
.header-wrapper .header__right-wrap .header__partner svg {
  margin-top: 0.8rem;
  height: 60px;
  width: 100%;
}
@media (min-width: 768px) {
  .header-wrapper .header__right-wrap .header__partner svg {
    margin-top: 0;
    height: 5rem;
  }
}
@media (min-width: 1024px) {
  .header-wrapper .header__right-wrap .header__partner svg {
    height: 6rem;
  }
}
.header-wrapper .header__partners {
  max-height: 50px;
  max-width: 240px;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: end;
}
@media (min-width: 768px) {
  .header-wrapper .header__partners {
    max-width: 200px;
    padding: 0;
  }
}
.header-wrapper .header__partners img {
  width: 90%;
  object-fit: contain;
}
.header-wrapper.header--light {
  background-color: var(--white);
}
.header-wrapper.header--light .header__dark-partner {
  display: none;
}
.header-wrapper.header--light .header__light-partner {
  display: flex;
}
.header-wrapper.header--light .header__menu-button {
  color: var(--dark-grey);
}
.header-wrapper.header--dark {
  background-color: var(--fixed-dark-grey);
}
.header-wrapper.header--dark .header__dark-partner {
  display: flex;
}
.header-wrapper.header--dark .header__light-partner {
  display: none;
}
.header-wrapper.header--dark :focus-visible {
  box-shadow: 0 0 0 0.0625rem var(--fixed-dark-grey), 0 0 0 0.3125rem var(--fixed-white);
}

.dark-mode .header-wrapper.header--light .header__dark-partner, .dark-mode .header-wrapper.header--dark .header__dark-partner {
  display: flex;
}
.dark-mode .header-wrapper.header--light .header__light-partner, .dark-mode .header-wrapper.header--dark .header__light-partner {
  display: none;
}

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