@font-face {
  font-family: "Archivo Narrow";
  src: url("../fonts/ArchivoNarrow-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: block;
}

@font-face {
  font-family: "Jost";
  src: url("../fonts/Jost-500-latin-ext.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Jost";
  src: url("../fonts/Jost-500-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --blue: #033f85;
  --blue-deep: #003e78;
  --blue-soft: #d4effc;
  --cyan: #12a8c0;
  --yellow: #cca95e;
  --cream: #f5eed4;
  --ink: #033f85;
  --white: #fff;
  --shadow: 0 18px 50px rgb(2 56 104 / 13%);
  --e-global-color-85ec8f2: #f5eed4;
  --e-global-color-secondary: #cca95e;
  --e-global-color-c15509b: #289aaf;
  --e-global-color-primary: #033f85;
  --e-global-color-text: #1b242f;
  --e-global-color-accent: #f9b030;
  --e-global-color-692305c: #fff;
  --e-global-color-d743aa4: #f1f4f6;
  --e-global-color-94a361c: #e5e6e8;
  --e-global-color-f5db1d3: #f9b030;
  --e-global-color-eb8a03f: #1e69bf;
  --e-global-color-190e127: #d4effc;
  --e-global-color-aa77d7f: #a4b6cb;
  --e-global-color-b08dc46: #003153;
  --e-global-color-49e9603: #00315340;
  --e-global-color-f9628ed: #d3c790;
  --e-global-color-9bea5e5: #ddc38a;
  --e-global-color-6b908e9: #e3dcb9;
  --e-global-color-fe163ce: #f4eac4;
  --e-global-color-fa42249: #8a733f;
  --e-global-color-42171a2: #c5e3ef;
  --gold-text: #cca95e;
  --blue-text: #033f85;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 140px;
}

html.page-loading {
  background: var(--e-global-color-190e127);
}

html.page-loading body {
  overflow: hidden;
}

html.page-loading body > * {
  visibility: hidden;
}

html.page-loading body::before {
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: var(--e-global-color-190e127);
  content: "";
  visibility: visible;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f5eed4;
  font-family: "Archivo Narrow", Arial, sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 100;
  top: 8px;
  left: 8px;
  width: auto;
  height: auto;
  padding: 10px 16px;
  clip: auto;
  background: var(--white);
}

.scroll-progress-button {
  position: fixed;
  z-index: 40;
  right: max(30px, env(safe-area-inset-right));
  bottom: max(90px, calc(env(safe-area-inset-bottom) + 20px));
  width: 50px;
  height: 50px;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 50%;
  background: transparent;
  box-shadow: inset 0 0 0 2px rgb(0 0 0 / 10%);
  color: #55534f;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100px);
  transition: color .2s linear, opacity .2s linear, transform .2s linear, visibility 0s linear .2s;
}

.scroll-progress-button.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition-delay: 0s;
}

.scroll-progress-button:hover {
  color: var(--blue);
}

.scroll-progress-button:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.scroll-progress-button__ring,
.scroll-progress-button__arrow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.scroll-progress-button__ring {
  transform: rotate(-90deg);
}

.scroll-progress-button__ring circle {
  fill: var(--white);
  stroke: var(--e-global-color-accent);
  stroke-width: 4;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 10ms linear;
}

.scroll-progress-button__arrow {
  inset: 15px;
  width: 20px;
  height: 20px;
  transform: translateY(-2px);
}

.scroll-progress-button__arrow path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 480px) {
  .scroll-progress-button {
    right: max(20px, env(safe-area-inset-right));
    bottom: max(80px, calc(env(safe-area-inset-bottom) + 20px));
  }
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  width: min(100%, 1300px);
  margin: 0 auto;
  background: var(--blue-soft);
}

.header-inner {
  position: relative;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 29px;
  align-items: center;
  max-width: 1100px;
  height: 140px;
  margin: 0 auto;
  padding: 20px 0 64px;
}

.brand {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  width: 140px;
  text-decoration: none;
  transform: translateY(1px);
}

.brand img {
  width: 138px;
  height: auto;
  margin-left: 1px;
}

.brand-name {
  color: var(--blue);
  font-size: 35px;
  font-weight: 900;
  line-height: .78;
  letter-spacing: -2px;
}

.brand-name span,
.brand-sub {
  color: var(--yellow);
}

.brand-sub {
  margin: 7px 0 0 2px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 2px;
}

.brand-smile {
  position: absolute;
  right: 0;
  bottom: 1px;
  width: 39px;
  height: 15px;
  border-bottom: 6px solid var(--blue);
  border-radius: 0 0 50% 50%;
  transform: rotate(4deg);
}

.main-nav {
  position: relative;
  top: 1px;
  display: flex;
  gap: 42px;
  align-items: center;
  justify-content: flex-start;
  font-family: "Archivo Narrow", sans-serif;
}

.main-nav a {
  padding: 8px 0;
  font-size: 18px;
  font-weight: 300;
  text-decoration: none;
  white-space: nowrap;
}

.main-nav a:nth-child(1) {
  position: relative;
  left: 2px;
  width: 139.609375px;
  flex: 0 0 139.609375px;
  margin-right: 10px;
}

.main-nav a:nth-child(2) {
  margin-right: -8px;
}

.main-nav a:nth-child(4) {
  margin-right: 2px;
}

.main-nav a:nth-child(5),
.main-nav a:nth-child(6) {
  margin-right: 3px;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--cyan);
}

.main-nav .current {
  color: var(--yellow);
}

.main-nav .active {
  display: inline-flex;
  height: 40px;
  margin-right: -6px;
  padding: 0 10px;
  border: 1px solid var(--blue);
  border-radius: 10px;
  align-items: center;
}

.main-nav .language {
  width: 20px;
  padding: 0;
}

.main-nav .language img {
  width: 20px;
  height: 20px;
}

.nav-centres {
  position: relative;
  display: flex;
  width: 149px;
  flex: 0 0 149px;
  align-items: center;
}

.main-nav .nav-centres > a {
  left: 2px;
  width: auto;
  flex: 1 1 auto;
  margin-right: 0;
}

.main-nav .nav-centres > a::after {
  display: none;
}

.nav-centres-toggle {
  position: relative;
  width: 23px;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-centres-toggle::after {
  position: absolute;
  top: 15px;
  left: 8px;
  width: 8px;
  height: 6px;
  background: var(--blue);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
  transition: transform .18s ease;
}

.nav-centres.is-open .nav-centres-toggle::after {
  transform: rotate(180deg);
}

.nav-centres-menu {
  position: absolute;
  z-index: 80;
  top: 38px;
  left: 0;
  display: none;
  width: 230px;
  padding: 7px 8px;
  border-radius: 5px;
  background: linear-gradient(180deg, #079fba 0%, #00548f 100%);
  box-shadow: 0 15px 35px rgb(0 49 83 / 28%);
}

.nav-centres:hover .nav-centres-menu,
.nav-centres:focus-within .nav-centres-menu,
.nav-centres.is-open .nav-centres-menu {
  display: block;
}

.main-nav .nav-centres-menu a,
.main-nav .nav-centres-menu a:nth-child(n) {
  position: static;
  display: block;
  width: 100%;
  margin: 0;
  padding: 9px 10px;
  border-bottom: 1px solid rgb(255 255 255 / 78%);
  color: var(--white);
  font-family: "Archivo Narrow", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.main-nav .nav-centres-menu a:last-child {
  border-bottom: 0;
}

.main-nav .nav-centres-menu a:hover,
.main-nav .nav-centres-menu a:focus-visible {
  color: var(--blue);
  background: linear-gradient(90deg, var(--cream) 0%, #ddc38a 100%);
  outline: none;
}

.booking-button,
.outline-button {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-weight: 900;
  text-decoration: none;
}

.gold-button {
  background-color: var(--e-global-color-secondary);
  background-image: radial-gradient(
    at top left,
    var(--e-global-color-85ec8f2) 20%,
    var(--e-global-color-secondary) 62%
  );
}

.blue-button {
  color: var(--e-global-color-secondary);
  background-color: var(--e-global-color-primary);
  background-image: linear-gradient(
    90deg,
    var(--e-global-color-primary) 0%,
    var(--e-global-color-eb8a03f) 100%
  );
}

.blue-button:hover,
.blue-button:focus-visible {
  color: var(--e-global-color-secondary);
  background-color: var(--e-global-color-primary);
  background-image: linear-gradient(
    90deg,
    var(--e-global-color-primary) 0%,
    var(--e-global-color-eb8a03f) 100%
  );
}

:where(.gold-button, .blue-button, .global-button, .outline-button, .company-action, .faq-tab) {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

:where(.gold-button, .blue-button, .global-button, .outline-button, .company-action, .faq-tab)::after {
  position: absolute;
  z-index: 5;
  inset-block: 0;
  left: 0;
  width: 50%;
  border-radius: inherit;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgb(255 255 255 / 5%) 28%,
    rgb(255 255 255 / 36%) 50%,
    rgb(255 255 255 / 5%) 72%,
    transparent 100%
  );
  content: "";
  pointer-events: none;
  transform: translateX(-190%) skewX(-18deg);
}

:where(.gold-button, .blue-button, .global-button, .outline-button, .company-action, .faq-tab):hover::after,
:where(.gold-button, .blue-button, .global-button, .outline-button, .company-action, .faq-tab):focus-visible::after {
  animation: button-shine .55s ease-out;
}

@keyframes button-shine {
  from {
    transform: translateX(-190%) skewX(-18deg);
  }

  to {
    transform: translateX(340%) skewX(-18deg);
  }
}

.global-button {
  display: inline-flex;
  gap: 12px;
  min-height: 42px;
  padding: 9px 15px 9px 20px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  color: var(--e-global-color-primary);
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 8px 18px rgb(0 48 102 / 18%);
  transition: transform .2s ease, box-shadow .2s ease;
}

.global-button:hover,
.global-button:focus-visible {
  box-shadow: 0 10px 24px rgb(0 48 102 / 24%);
  transform: translateY(-2px);
}

.global-button-icon {
  font-family: Arial, sans-serif;
  font-size: 27px;
  font-weight: 400;
  line-height: .65;
}

.content-action-button {
  display: inline-flex;
  width: max-content;
  min-height: 48px;
  padding: 14px 15px 14px 25px;
  border-radius: 10px;
  gap: 10px;
  align-items: center;
  justify-content: center;
  color: var(--e-global-color-primary);
  font-family: Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.content-action-button img {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.booking-button {
  position: absolute;
  right: 12px;
  bottom: 21px;
  width: 218px;
  height: 44px;
  min-height: 0;
  padding: 0 7px 0 23px;
  border-radius: 12px;
  justify-content: space-between;
  color: var(--e-global-color-primary);
  background-color: var(--e-global-color-secondary);
  background-image: radial-gradient(
    at top left,
    var(--e-global-color-85ec8f2) 20%,
    var(--e-global-color-secondary) 62%
  );
  box-shadow: 0 4px 10px rgb(213 162 28 / 18%);
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .4px;
  white-space: nowrap;
  -webkit-text-stroke: .25px currentColor;
}

.booking-button:hover,
.booking-button:focus-visible {
  color: var(--e-global-color-primary);
  background-color: var(--e-global-color-secondary);
  background-image: radial-gradient(
    at top left,
    var(--e-global-color-85ec8f2) 20%,
    var(--e-global-color-secondary) 62%
  );
}

:lang(en) .booking-button {
  width: 250px;
  font-size: 22px;
}

.booking-button span {
  position: relative;
  width: 28px;
  height: 28px;
  border: 3px solid currentColor;
  border-radius: 50%;
  box-shadow: inset 0 0 0 .35px currentColor;
  flex: 0 0 28px;
  font-size: 0;
  transform: translateY(-1px);
}

.booking-button span::before,
.booking-button span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  border-radius: 2px;
  background: currentColor;
  content: "";
  transform-origin: 50% 0;
}

.booking-button span::before {
  height: 8px;
  transform: translate(-1px, -8px);
}

.booking-button span::after {
  height: 7px;
  transform: translate(-1px, 0) rotate(-44deg);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  z-index: 2;
  width: min(100%, 1300px);
  margin: 0 auto;
  padding: 0 100px 70px;
  overflow: hidden;
  background: var(--blue-soft);
}

.slider {
  max-width: 1100px;
  margin: 0 auto;
}

.slides {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1100 / 370;
  border-radius: 2px;
  box-shadow: none;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .55s ease;
  pointer-events: none;
}

.slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.slide picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-copy {
  position: absolute;
  z-index: 2;
  font-family: "Arial Black", Arial, sans-serif;
  text-transform: uppercase;
}

.hero-copy-title {
  margin: 0;
  font: inherit;
  line-height: inherit;
}

.hero-copy-line,
.hero-copy-detail {
  opacity: 0;
  transform: translateY(28px);
}

.hero-copy-line {
  display: block;
}

.hero-copy-detail {
  margin: 0;
}

.slide.is-active .hero-copy-line,
.slide.is-active .hero-copy-detail {
  animation: hero-copy-in .72s cubic-bezier(.16, 1, .3, 1) both;
}

.slide.is-active .hero-copy-line:nth-child(1) { animation-delay: .16s; }
.slide.is-active .hero-copy-line:nth-child(2) { animation-delay: .27s; }
.slide.is-active .hero-copy-line:nth-child(3) { animation-delay: .38s; }
.slide.is-active .hero-copy-line:nth-child(4) { animation-delay: .49s; }
.slide.is-active .hero-copy-detail:nth-child(1) { animation-delay: .48s; }
.slide.is-active .hero-copy-detail:nth-child(2) { animation-delay: .59s; }
.slide.is-active .hero-copy-detail:nth-child(3) { animation-delay: .7s; }

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-copy--autumn {
  top: 43px;
  width: 100%;
  color: #a23512;
  font-size: 36px;
  font-weight: 900;
  line-height: 1.06;
  text-align: center;
}

.hero-copy--autumn .hero-copy-details {
  margin-top: 39px;
  color: #f05a0b;
  font-family: Arial, sans-serif;
  font-size: 28px;
  line-height: 1.48;
  text-transform: none;
}

:lang(en) .hero-copy--autumn {
  font-size: 31px;
}

:lang(en) .hero-copy--autumn .hero-copy-details {
  font-size: 26px;
}

.hero-copy--loyalty {
  top: 10px;
  left: 18px;
  width: 64%;
  color: #033f85;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.09;
  letter-spacing: .3px;
  -webkit-text-stroke: .65px currentColor;
}

.hero-copy--loyalty .hero-copy-subtitle {
  margin-top: 38px;
  font-family: Arial, sans-serif;
  font-size: 30px;
  line-height: 1.42;
  -webkit-text-stroke: 0;
}

.hero-copy--loyalty .hero-copy-note {
  margin-top: 23px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  line-height: 1.2;
  text-transform: none;
  -webkit-text-stroke: 0;
}

.hero-copy--new-donor {
  top: 98px;
  left: 19px;
  width: 67%;
  color: #034883;
  font-size: 39px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: .2px;
  -webkit-text-stroke: .55px currentColor;
}

.hero-copy--mentor {
  top: 100px;
  left: 21px;
  width: 64%;
  color: #033f85;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: .3px;
  -webkit-text-stroke: .65px currentColor;
}

.slider-dots {
  display: flex;
  gap: 9px;
  justify-content: center;
  padding: 16px 0 0;
}

.slider-dots button {
  width: 16px;
  height: 16px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #f4eac4;
  box-shadow: 0 2px 6px rgb(0 50 90 / 30%);
  cursor: pointer;
}

.slider-dots button.is-active {
  background: var(--blue);
}

.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 85px 0;
}

.benefits {
  position: relative;
  z-index: 1;
  width: min(100%, 1300px);
  max-width: 1300px;
  margin-top: -1px;
  padding: 68px 100px 47px;
  background: var(--cream);
  scroll-margin-top: 15px;
}

.text-gold {
  color: var(--gold-text) !important;
}

.text-blue {
  color: var(--blue-text) !important;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
}

.benefit-card {
  height: 323px;
  min-height: 0;
  padding: 15px 10px 20px;
  overflow: hidden;
  border-radius: 30px;
  background-color: var(--e-global-color-primary);
  background-image: radial-gradient(
    at top left,
    var(--e-global-color-c15509b) 0%,
    var(--e-global-color-primary) 70%
  );
  color: var(--cream);
  text-align: center;
  box-shadow: none;
}

.benefit-card:nth-child(even) {
  color: var(--blue-text);
  background-color: var(--e-global-color-secondary);
  background-image: radial-gradient(
    at top left,
    var(--e-global-color-85ec8f2) 0%,
    var(--e-global-color-secondary) 100%
  );
}

.benefit-icon {
  width: 70px;
  height: 70px;
  margin: 5px auto 0;
  color: var(--gold-text);
  background: currentColor;
  -webkit-mask: var(--icon) center / contain no-repeat;
  mask: var(--icon) center / contain no-repeat;
}

.icon-safety {
  --icon: url("../images/benefit-safety.svg");
}

.icon-technology {
  --icon: url("../images/benefit-technology.svg");
}

.icon-integrated {
  --icon: url("../images/benefit-integrated.svg");
}

.icon-expertise {
  --icon: url("../images/benefit-expertise.svg");
}

.benefit-card:nth-child(even) .benefit-icon {
  color: var(--blue-text);
}

.benefit-card h2 {
  margin: 8px 0 11px;
  color: inherit;
  font-family: Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  text-transform: uppercase;
}

.benefit-card p {
  margin: 0;
  color: inherit;
  font-family: "Archivo Narrow", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 22.4px;
}

.plasma-steps {
  position: relative;
  z-index: 0;
  width: min(100%, 1300px);
  min-height: 720px;
  margin: 0 auto;
  padding: 101px 100px 114px;
  overflow: hidden;
  background-color: #9ee4f3;
  background-image: url("../images/plasma-steps-background.jpg");
  background-position: center;
  background-size: cover;
}

.plasma-steps-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}

.section-wave {
  position: absolute;
  z-index: 3;
  right: 0;
  left: 0;
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  pointer-events: none;
}

.section-wave-top {
  top: 0;
  transform: translateY(-74%);
}

.section-wave-bottom {
  bottom: 0;
  transform: translateY(74%);
}

.plasma-steps-heading {
  margin: 0 0 35px;
  color: var(--gold-text);
  text-align: center;
  text-transform: uppercase;
}

.plasma-steps-heading h2 {
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: clamp(44px, 4.4vw, 64px);
  font-weight: 900;
  line-height: .9;
  letter-spacing: .5px;
}

.plasma-steps-heading p {
  margin: 12px 0 0;
  font-family: Arial, sans-serif;
  font-size: clamp(23px, 2.35vw, 32px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: .7px;
}

.plasma-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.plasma-step {
  position: relative;
  display: flex;
  min-width: 0;
  padding: 0 29px;
  align-items: center;
  flex-direction: column;
  color: var(--blue-text);
  text-align: center;
}

.plasma-step + .plasma-step {
  border-left: 1.5px solid var(--gold-text);
}

.plasma-step-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 4px;
  object-fit: contain;
}

.plasma-step h3 {
  margin: 0 0 10px;
  color: inherit;
  font-family: Arial, sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.14;
}

.plasma-step h3 span {
  display: block;
  margin-bottom: 2px;
}

.plasma-step > p {
  margin: 0;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.48;
}

.plasma-steps-booking {
  display: inline-flex;
  gap: 9px;
  min-height: 42px;
  margin: 42px 0 0;
  padding: 8px 14px 8px 23px;
  border-radius: 11px;
  align-items: center;
  color: var(--blue-text);
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 8px 18px rgb(0 68 122 / 16%);
}

.plasma-steps-booking span {
  position: relative;
  width: 17px;
  height: 17px;
  border: 2px solid currentColor;
  border-radius: 50%;
  flex: 0 0 17px;
}

.plasma-steps-booking span::before,
.plasma-steps-booking span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.5px;
  border-radius: 2px;
  background: currentColor;
  content: "";
  transform-origin: 50% 0;
}

.plasma-steps-booking span::before {
  height: 5px;
  transform: translate(-.75px, -5px);
}

.plasma-steps-booking span::after {
  height: 4px;
  transform: translate(-.75px, 0) rotate(-45deg);
}

.plasma-steps-booking:hover,
.plasma-steps-booking:focus-visible {
  transform: translateY(-2px);
}

.plasma-facts {
  position: relative;
  z-index: 1;
  width: min(100%, 1300px);
  margin: -71px auto 0;
  padding: 76px 62px 63px;
  background-color: var(--e-global-color-secondary);
  background-image:
    linear-gradient(
      to bottom,
      #e3dcb9 0%,
      rgb(227 220 185 / 0%) 38%,
      transparent 55%,
      var(--e-global-color-secondary) 100%
    ),
    radial-gradient(
      at top left,
      var(--e-global-color-85ec8f2) 29%,
      var(--e-global-color-secondary) 100%
    );
  color: var(--blue-text);
  -webkit-mask-image: url("../images/wave-gold-light.svg"), linear-gradient(#000, #000);
  -webkit-mask-position: center top, center bottom;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% auto, 100% calc(100% - 38px);
  mask-composite: add;
  mask-image: url("../images/wave-gold-light.svg"), linear-gradient(#000, #000);
  mask-position: center top, center bottom;
  mask-repeat: no-repeat;
  mask-size: 100% auto, 100% calc(100% - 50px);
}

.plasma-facts-inner {
  position: relative;
  z-index: 1;
  max-width: 1116px;
  margin: 0 auto;
}

.plasma-facts h2 {
  max-width: 720px;
  margin: 0 0 43px;
  color: var(--gold-text);
  font-family: Arial, sans-serif;
  font-size: clamp(40px, 3.5vw, 46px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: .4px;
  text-transform: uppercase;
}

.plasma-facts-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.plasma-fact {
  min-width: 0;
  padding: 0 20px;
  text-align: center;
}

.plasma-fact:first-child {
  padding-left: 0;
}

.plasma-fact:last-child {
  padding-right: 0;
}

.plasma-fact + .plasma-fact {
  border-left: 1.5px solid var(--blue-text);
}

.plasma-fact h3 {
  min-height: 58px;
  margin: 0;
  padding: 0 5px 9px;
  border-bottom: 1px solid var(--gold-text);
  color: inherit;
  font-family: Arial, sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.14;
}

.plasma-fact > p {
  margin: 0;
  padding: 15px 0 14px;
  border-bottom: 1px solid var(--gold-text);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.48;
}

.plasma-video-section {
  width: min(100%, 1300px);
  margin: 0 auto;
  padding: 40px 100px 32px;
  background: #f5eed4;
}

.plasma-video {
  width: 100%;
  overflow: hidden;
  background: #000;
  box-shadow: 0 12px 30px rgb(0 68 122 / 14%);
  aspect-ratio: 16 / 9;
}

.plasma-video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.about-haema {
  position: relative;
  z-index: 0;
  width: min(100%, 1300px);
  margin: 0 auto;
  padding: 82px 80px 104px;
  overflow: hidden;
  background-color: var(--e-global-color-primary);
  background-image: radial-gradient(
    at top left,
    var(--e-global-color-c15509b) 0%,
    var(--e-global-color-primary) 71%
  );
  color: var(--white);
}

.about-haema-inner {
  position: relative;
  z-index: 2;
  display: grid;
  max-width: 1120px;
  margin: 0 auto;
  grid-template-columns: minmax(0, .98fr) minmax(0, 1.02fr);
  align-items: center;
}

.about-haema-copy {
  min-width: 0;
  padding: 24px 58px 38px 0;
  border-right: 1px solid rgb(0 49 104 / 72%);
}

.about-haema h2 {
  margin: 0 0 12px;
  color: var(--gold-text);
  font-family: Arial, sans-serif;
  font-size: clamp(34px, 3.1vw, 40px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.about-haema p {
  max-width: 510px;
  margin: 0;
  color: var(--e-global-color-85ec8f2);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.43;
}

.about-haema .global-button {
  margin-top: 39px;
}

.about-haema-media {
  min-width: 0;
  padding-left: 59px;
}

.about-haema-media img {
  width: 100%;
  aspect-ratio: 1.93 / 1;
  object-fit: cover;
}

.about-haema-media picture {
  display: block;
  width: 100%;
}

.company-about {
  position: relative;
  width: min(100%, 1300px);
  margin: 0 auto;
  padding: 50px 100px 92px;
  overflow: hidden;
  background: var(--blue-soft);
  color: var(--blue-text);
}

.company-about-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.company-about h1 {
  width: max-content;
  max-width: 100%;
  margin: 0 auto 30px;
  color: var(--gold-text);
  font-family: Arial, sans-serif;
  font-size: 60px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.company-about-copy,
.company-report-copy {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.4;
}

.company-about-copy p {
  margin: 0 0 10px;
}

.company-about-copy ul {
  margin: 0 0 15px;
  padding-left: 26px;
}

.company-about-copy li {
  margin-bottom: 8px;
}

.company-action {
  display: flex;
  gap: 10px;
  width: max-content;
  min-width: 194px;
  min-height: 45px;
  margin: 25px 0 0;
  padding: 10px 15px;
  border: 0;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
}

.company-action-icon {
  display: block;
  width: 34px;
  height: 24px;
  background-color: var(--e-global-color-secondary);
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.company-money-icon {
  height: 22px;
  -webkit-mask-image: url("../images/company-money.svg");
  mask-image: url("../images/company-money.svg");
}

.company-report-icon {
  width: 30px;
  height: 25px;
  -webkit-mask-image: url("../images/company-report.svg");
  mask-image: url("../images/company-report.svg");
}

.company-report-copy {
  margin-top: 24px;
}

.company-report-copy p {
  margin: 0 0 24px;
}

.company-report-qr {
  width: 150px;
  height: 150px;
  margin: 0 auto;
}

.company-report-action {
  min-width: 290px;
  margin-top: 25px;
}

.company-about-wave {
  position: absolute;
  right: 100px;
  bottom: 20px;
  left: 100px;
  width: calc(100% - 200px);
  height: 58px;
  pointer-events: none;
}

.section-heading {
  margin-bottom: 38px;
  text-align: center;
}

.section-heading span,
.eyebrow {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.section-heading h2,
.centres h2 {
  margin: 7px 0 0;
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.05;
}

.testimonials {
  position: relative;
  width: min(100%, 1300px);
  min-height: 510px;
  margin: 0 auto;
  padding: 72px 64px 78px;
  overflow: hidden;
  background: var(--blue-soft);
  color: var(--e-global-color-primary);
}

.testimonials-inner {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: 1170px;
  margin: 0 auto;
  grid-template-columns: 365px minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.testimonials-title {
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: clamp(48px, 4.4vw, 55px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.8px;
  text-align: center;
  text-transform: uppercase;
}

.testimonial-slider {
  min-width: 0;
}

.testimonial-frame {
  position: relative;
  min-height: 322px;
  padding: 38px 85px 34px 70px;
}

.testimonial-stage {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 250px;
  align-items: center;
}

.testimonial-slide {
  margin: 0;
  text-align: center;
}

.testimonial-slide[hidden] {
  display: none;
}

.testimonial-slide blockquote {
  margin: 0;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.4;
}

.testimonial-slide figcaption {
  margin-top: 20px;
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
}

.dbg_brace_svg {
  position: absolute;
  z-index: 1;
  top: 50%;
  display: block;
  width: 34px;
  height: 350px;
  pointer-events: none;
  transform-origin: center;
}

.testimonial-brace-left {
  left: 4px;
  transform: translateY(-50%) scaleX(-1);
}

.testimonial-brace-right {
  right: 45px;
  transform: translateY(-50%);
}

.dbg_brace_composed {
  display: block;
  width: 100%;
  height: 100%;
  fill: var(--e-global-color-primary);
}

.dbg_brace_svg > svg:not(.dbg_brace_composed) {
  display: none;
}

.testimonial-quote-svg {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -17px;
  width: 48px;
  height: 48px;
  transform: translateY(-50%);
}

.testimonial-controls {
  display: grid;
  grid-template-columns: 38px auto 38px;
  gap: 55px;
  width: max-content;
  margin: 4px auto 0;
  align-items: center;
}

.testimonial-arrow {
  position: relative;
  width: 38px;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.testimonial-arrow::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  content: "";
  transform: translate(-50%, -50%);
}

.testimonial-arrow-prev::before {
  border-right: 10px solid var(--e-global-color-secondary);
}

.testimonial-arrow-next::before {
  border-left: 10px solid var(--e-global-color-secondary);
}

.testimonial-arrow:hover,
.testimonial-arrow:focus-visible {
  transform: scale(1.15);
}

.testimonial-dots {
  display: flex;
  gap: 9px;
  align-items: center;
}

.testimonial-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #a9cfe6;
  cursor: pointer;
}

.testimonial-dots button.is-active {
  background: var(--e-global-color-primary);
}

.testimonials-wave-line {
  position: absolute;
  z-index: 0;
  right: 34px;
  bottom: 3px;
  left: 34px;
  display: block;
  width: calc(100% - 68px);
  height: 58px;
  pointer-events: none;
}

.articles-section {
  width: min(100%, 1300px);
  margin: 0 auto;
  padding: 34px 80px 39px;
  background: var(--blue-soft);
  color: var(--e-global-color-primary);
}

.articles-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.articles-section h2 {
  margin: 0 0 42px;
  font-family: Arial, sans-serif;
  font-size: clamp(34px, 3.25vw, 41px);
  font-weight: 500;
  line-height: 1.08;
  text-align: center;
  text-transform: uppercase;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
}

.article-card {
  display: flex;
  min-width: 0;
  min-height: 527px;
  overflow: hidden;
  border-radius: 20px;
  flex-direction: column;
  background-color: var(--e-global-color-primary);
  background-image: radial-gradient(
    at top left,
    var(--e-global-color-c15509b) 0%,
    var(--e-global-color-primary) 71%
  );
}

.article-card-image {
  display: block;
  height: 178px;
  flex: 0 0 178px;
  overflow: hidden;
}

.article-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-card-image picture {
  display: block;
  width: 100%;
  height: 100%;
}

.article-card-content {
  display: flex;
  min-height: 349px;
  padding: 28px 28px 29px;
  align-items: center;
  flex: 1;
  flex-direction: column;
  text-align: center;
}

.article-card h3 {
  min-height: 69px;
  margin: 0 0 20px;
  color: var(--e-global-color-secondary);
  font-family: Arial, sans-serif;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.2;
}

.article-card p {
  margin: 0;
  color: #e5e6e8;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.4;
}

.article-card-button {
  min-height: 37px;
  margin-top: auto;
  padding: 9px 20px;
  font-size: 17px;
  font-weight: 500;
}

.articles-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 34px;
  margin-top: 44px;
  align-items: center;
}

.articles-footer > span {
  height: 1px;
  background: var(--e-global-color-primary);
}

.articles-all-button {
  min-width: 212px;
  min-height: 35px;
  padding: 8px 22px;
  font-size: 17px;
  font-weight: 500;
}

.faq-section {
  position: relative;
  width: min(100%, 1300px);
  margin: 0 auto;
  padding: 35px 100px 102px;
  overflow: hidden;
  color: var(--e-global-color-primary);
  background: var(--e-global-color-85ec8f2);
}

.faq-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

.faq-section h2 {
  margin: 0 0 15px;
  font-family: Arial, sans-serif;
  font-size: clamp(34px, 3.25vw, 42px);
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.faq-tabs {
  display: grid;
  grid-template-columns: 290px 320px minmax(0, 1fr);
  align-items: stretch;
  border-bottom: 1px solid var(--e-global-color-secondary);
}

.faq-tab {
  position: relative;
  display: flex;
  min-height: 65px;
  padding: 15px 35px;
  border: 0;
  align-items: center;
  justify-content: center;
  color: var(--e-global-color-secondary);
  background: transparent;
  font: inherit;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
}

.faq-tab + .faq-tab::before {
  position: absolute;
  top: 0;
  bottom: 10px;
  left: 0;
  width: 1px;
  background: var(--e-global-color-primary);
  content: "";
}

.faq-tab.is-active {
  color: var(--e-global-color-primary);
}

.faq-tab:focus-visible,
.faq-item button:focus-visible {
  outline: 2px solid var(--e-global-color-primary);
  outline-offset: -2px;
}

.faq-panel[hidden] {
  display: none;
}

.faq-list {
  width: 100%;
}

.faq-item {
  border-bottom: 1px solid var(--e-global-color-secondary);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: flex;
  width: 100%;
  min-height: 61px;
  padding: 17px 20px;
  border: 0;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  color: var(--e-global-color-primary);
  background: transparent;
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  text-align: left;
  cursor: pointer;
}

.faq-chevron {
  width: 7px;
  height: 7px;
  margin-right: 1px;
  border-right: 1px solid var(--e-global-color-secondary);
  border-bottom: 1px solid var(--e-global-color-secondary);
  flex: 0 0 7px;
  transform: rotate(45deg);
  transition: transform .2s ease;
}

.faq-item.is-open .faq-chevron {
  transform: translateY(3px) rotate(225deg);
}

.faq-answer {
  height: 0;
  padding: 0 20px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: height .42s ease, padding-bottom .42s ease, opacity .28s ease, visibility 0s linear .42s;
}

.faq-answer[hidden] {
  display: block !important;
}

.faq-item.is-open .faq-answer {
  padding-bottom: 20px;
  opacity: 1;
  visibility: visible;
  transition: height .42s ease, padding-bottom .42s ease, opacity .28s ease .08s, visibility 0s;
}

.faq-answer p {
  margin: 0;
  color: var(--e-global-color-primary);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.4;
}

.faq-footer {
  margin-top: 49px;
  text-align: center;
}

.faq-all-button {
  min-width: 208px;
  min-height: 32px;
  padding: 7px 30px 8px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
}

.faq-bottom-wave {
  z-index: 2;
}

.faq-page .faq-section {
  padding-top: 60px;
  padding-bottom: 72px;
  background: var(--e-global-color-190e127);
}

.faq-page .faq-section h2 {
  margin-bottom: 10px;
}

.faq-page .faq-tabs {
  grid-template-columns: 226px 202px 300px;
  gap: 0;
  padding-bottom: 10px;
  justify-content: center;
  border-bottom-color: var(--e-global-color-primary);
}

.faq-page .faq-tab {
  min-height: 78px;
  padding: 13px 0;
}

.faq-page .faq-tab + .faq-tab::before {
  bottom: 0;
  left: 0;
}

.faq-page .faq-item {
  border-bottom-color: var(--e-global-color-primary);
}

.faq-page .faq-chevron {
  border-right-color: var(--e-global-color-primary);
  border-bottom-color: var(--e-global-color-primary);
}

.faq-page .faq-footer,
.faq-page .faq-bottom-wave {
  display: none;
}

@media (min-width: 1181px) {
  .faq-page .faq-tabs {
    position: relative;
  }

  .faq-page .faq-tab + .faq-tab::before {
    display: none;
  }

  .faq-page .faq-tabs::before,
  .faq-page .faq-tabs::after {
    position: absolute;
    top: 0;
    width: 1px;
    height: 78px;
    background: var(--e-global-color-primary);
    content: "";
    pointer-events: none;
  }

  .faq-page .faq-tabs::before {
    left: calc(50% - 138px);
  }

  .faq-page .faq-tabs::after {
    left: calc(50% + 64px);
  }
}

.plasma-info {
  position: relative;
  z-index: 0;
  width: min(100%, 1300px);
  min-height: 230px;
  margin: 0 auto;
  padding: 20px 100px 54px;
  overflow: hidden;
  color: var(--e-global-color-primary);
  background: #ffb32b;
}

.plasma-info-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 290px 32px minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  max-width: 1100px;
  min-height: 116px;
  margin: 0 auto;
}

.plasma-info h2 {
  margin: 0;
  font-family: "Jost", sans-serif;
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.plasma-info-brace {
  display: block;
  width: 32px;
  height: 106px;
  fill: none;
  stroke: var(--e-global-color-primary);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3px;
}

.plasma-info p {
  margin: 0;
  padding-left: 35px;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.45;
  text-align: center;
}

.plasma-info-wave {
  z-index: 1;
}

.booking-section {
  position: relative;
  z-index: 0;
  width: min(100%, 1300px);
  min-height: 702.266px;
  margin: 0 auto;
  padding: 100px 80px 120px;
  overflow: hidden;
  color: var(--e-global-color-primary);
  background: var(--blue-soft);
}

.booking-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1140px;
  margin: 0 auto;
}

.booking-map {
  position: relative;
  width: 510px;
  height: 318.125px;
  margin: 60px auto 0 0;
}

.booking-map-image {
  width: 510px;
  height: 318.125px;
}

.map-marker {
  position: absolute;
  z-index: 2;
  display: block;
  width: 58px;
  height: 77px;
  text-decoration: none;
  transform: translate(-50%, -50%);
}

.map-marker img {
  width: 58px;
  height: 77px;
  transition: filter .25s ease;
}

.map-marker > span {
  position: absolute;
  z-index: 3;
  bottom: calc(100% + 5px);
  left: 50%;
  min-width: max-content;
  padding: 8px 13px;
  border-radius: 4px;
  color: var(--white);
  background-image: radial-gradient(at 80% 80%, #2ba0b2 0%, #00417e 49%, #003153 79%);
  font-family: "Jost", sans-serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.4;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) scale(0);
  transform-origin: center bottom;
  transition: transform .5s ease, opacity .5s ease;
}

.map-marker:hover,
.map-marker:focus-visible {
  z-index: 4;
  outline: none;
}

.map-marker:hover > span,
.map-marker:focus-visible > span {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.map-marker:focus-visible img {
  filter: drop-shadow(0 0 4px rgb(3 63 133 / 60%));
}

.marker-nagykanizsa { top: 62%; left: 11%; }
.marker-pecs { top: 80%; left: 31%; }
.marker-budapest { top: 28%; left: 43%; }
.marker-miskolc { top: 10%; left: 69%; }
.marker-debrecen { top: 25%; left: 80%; }

.booking-panel {
  min-width: 0;
  height: 482.266px;
  padding: 50px 0 0 60px;
  border-left: 1px solid var(--e-global-color-primary);
}

.booking-heading {
  min-height: 97px;
  text-align: center;
}

.booking-heading h2 {
  margin: 0;
  font-family: "Jost", sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
}

.booking-heading p {
  margin: 0;
  font-family: "Jost", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
}

.booking-choice {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) 213.328px;
  grid-template-rows: 50px 50px;
  column-gap: 10px;
  min-height: 158px;
  padding: 32px 0 26px 30px;
  border-top: 1px solid var(--e-global-color-primary);
  align-items: center;
}

.booking-choice-icon {
  width: 90px;
  height: 95.734px;
  grid-row: 1 / span 2;
  transform: translateY(-2px);
}

.booking-choice > p {
  grid-row: 1;
  grid-column: 2 / 4;
  align-self: center;
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.19;
  transform: none;
}

.booking-choice-button {
  display: inline-flex;
  width: 213.328px;
  min-height: 45px;
  padding: 5px 15px 5px 20px;
  border-radius: 13px;
  gap: 10px;
  align-items: center;
  align-self: start;
  justify-content: center;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
  white-space: nowrap;
  grid-row: 2;
  grid-column: 3;
  box-shadow: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.booking-choice-button:hover,
.booking-choice-button:focus-visible {
  box-shadow: none;
}

.booking-choice-button img {
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
}

.site-footer {
  width: min(100%, 1300px);
  margin: 0 auto;
  color: var(--white);
  background: transparent;
}

.footer-main {
  position: relative;
  overflow: hidden;
  background: radial-gradient(at 80% 80%, #2ba0b2 0%, #00417e 49%, #003153 79%);
}

.footer-wave-overlay {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.footer-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 140px 30px 161px 230px 280px 37px 181px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 116px 0 35px;
  background: transparent;
}

.footer-centres {
  grid-column: 1;
}

.footer-important {
  grid-column: 3;
}

.footer-facebook-group {
  grid-column: 5;
}

.footer-socials {
  grid-column: 7;
}

.footer-inner h2 {
  margin: 0 0 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid #d4effc;
  color: #d4effc;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}

.footer-links,
.footer-facebook-links {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-inner a {
  color: #d4effc;
  font-size: 16px;
  line-height: 1.55;
  text-decoration: none;
}

.footer-inner a:hover,
.footer-inner a:focus-visible {
  color: var(--yellow);
}

.footer-facebook-group {
  display: grid;
  grid-template-columns: 43px 22px 1fr;
  gap: 8px;
  align-items: center;
  margin-top: 2px;
}

.footer-social-icon {
  display: inline-grid;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  place-items: center;
  background: #d4effc;
  flex: 0 0 38px;
}

.footer-social-icon img {
  width: 18px;
  height: 18px;
}

.footer-facebook-icon {
  align-self: center;
}

.footer-brace {
  display: block;
  width: 22px;
  height: 216px;
  filter: brightness(0) invert(1);
  transform: scaleX(-1);
}

.footer-facebook-links {
  gap: 4px;
}

.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-socials > a:not(.footer-brand) {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 600;
}

.footer-brand {
  display: block;
  width: 180px;
  height: 34px;
  margin-top: 1px;
}

.footer-brand img {
  width: 180px;
  height: 34px;
}

.footer-bottom {
  min-height: 171px;
  padding: 55px 30px 30px;
  color: var(--blue);
  background: var(--cream);
  font-size: 14px;
  text-align: center;
}

.footer-legal-links {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.footer-legal-links a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--blue);
  text-decoration: none;
}

.footer-legal-links a:hover,
.footer-legal-links a:focus-visible {
  color: var(--yellow);
}

.footer-legal-links img {
  width: 16px;
  height: 16px;
}

.footer-bottom p {
  margin: 26px 0 0;
}

@media (max-width: 1180px) {
  html {
    scroll-padding-top: 86px;
  }

  .header-inner {
    grid-template-columns: 145px 1fr auto auto;
    min-height: 86px;
    padding: 15px 4%;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 42px;
    padding: 9px;
    border: 0;
    background: transparent;
  }

  .menu-toggle span:not(.sr-only) {
    height: 2px;
    border-radius: 2px;
    background: var(--blue);
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    padding: 20px 4% 26px;
    align-items: flex-start;
    flex-direction: column;
    background: #dcf6ff;
    box-shadow: 0 15px 30px rgb(0 54 100 / 12%);
  }

  .main-nav a:nth-child(n) {
    position: static;
    left: auto;
    width: auto;
    flex: 0 1 auto;
    margin-right: 0;
  }

  .main-nav.is-open {
    display: flex;
  }

  .booking-button {
    position: static;
    grid-column: 3;
  }

  .menu-toggle {
    grid-column: 4;
  }

  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    padding-right: 4%;
    padding-left: 4%;
  }

  .benefits {
    padding-right: 4%;
    padding-left: 4%;
  }

  .plasma-steps {
    padding-right: 4%;
    padding-left: 4%;
  }

  .plasma-facts {
    padding-right: 4%;
    padding-left: 4%;
  }

  .plasma-step {
    padding-right: 2.4vw;
    padding-left: 2.4vw;
  }

  .articles-section {
    padding-right: 4%;
    padding-left: 4%;
  }

  .faq-section {
    padding-right: 4%;
    padding-left: 4%;
  }

  .plasma-info {
    padding-right: 4%;
    padding-left: 4%;
  }

  .faq-tabs {
    grid-template-columns: 26% 30% minmax(0, 1fr);
  }

  .faq-tab {
    padding-right: 18px;
    padding-left: 18px;
  }

  .articles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .article-card {
    min-height: 510px;
  }
}

@media (max-width: 900px) {
  .booking-section {
    min-height: 0;
    padding: 76px 4% 130px;
  }

  .booking-inner {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .booking-map {
    margin: 0 auto;
  }

  .booking-panel {
    padding: 46px 0 0;
    border-top: 1px solid var(--e-global-color-primary);
    border-left: 0;
  }

  .plasma-info-inner {
    grid-template-columns: 220px 28px minmax(0, 1fr);
    gap: 24px;
  }

  .plasma-info h2 {
    font-size: 42px;
  }

  .plasma-info-brace {
    width: 28px;
    height: 98px;
  }

  .plasma-info p {
    padding-left: 0;
  }

  .plasma-facts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 36px;
  }

  .plasma-fact:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .plasma-fact:nth-child(even) {
    padding-right: 0;
  }

  .plasma-fact:nth-child(n + 3) {
    padding-top: 36px;
    border-top: 1.5px solid var(--blue-text);
  }

  .testimonials {
    padding: 86px 38px 76px;
  }

  .testimonials-inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .testimonials-title {
    text-align: center;
  }
}

@media (max-width: 880px) {
  html {
    scroll-padding-top: 76px;
  }

  .header-inner {
    grid-template-columns: 120px 1fr auto;
    gap: 10px;
    height: 80px;
    min-height: 80px;
    padding: 15px 20px;
  }

  .brand,
  .booking-button,
  .menu-toggle {
    grid-row: 1;
  }

  .brand {
    grid-column: 1;
  }

  .brand {
    width: 116px;
  }

  .brand-name {
    font-size: 29px;
  }

  .brand-sub {
    font-size: 12px;
  }

  .brand-smile {
    right: 0;
    width: 32px;
  }

  .booking-button {
    grid-column: 2;
    width: min(165px, 100%);
    height: 36px;
    min-width: 0;
    padding: 0 10px 0 11px;
    border-radius: 4px;
    justify-self: center;
    color: var(--blue-soft);
    background-color: var(--e-global-color-primary);
    background-image: none;
    box-shadow: none;
    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0;
    transform: translate(-6px, 2px);
    -webkit-text-stroke: 0;
  }

  .booking-button:hover,
  .booking-button:focus-visible {
    color: var(--blue-soft);
    background-color: var(--e-global-color-primary);
    background-image: none;
  }

  .booking-button span {
    display: block;
    width: 16px;
    height: 16px;
    border-width: 2px;
    flex-basis: 16px;
  }

  .booking-button span::before {
    width: 1px;
    height: 5px;
    transform: translate(-.5px, -5px);
  }

  .booking-button span::after {
    width: 1px;
    height: 4px;
    transform: translate(-.5px, 0) rotate(-44deg);
  }

  :lang(en) .booking-button {
    width: min(185px, 100%);
    font-size: 15px;
  }

  .menu-toggle {
    grid-column: 3;
  }

  .hero {
    padding: 0;
  }

  .slider {
    position: relative;
  }

  .slides {
    height: 375px;
    aspect-ratio: auto;
    border-radius: 0;
  }

  .slider-dots {
    position: absolute;
    z-index: 4;
    right: 0;
    bottom: 16px;
    left: 0;
    padding: 0;
  }

  .slide picture img {
    object-position: 60% center;
  }

  .slide--autumn picture img {
    object-position: right center;
  }

  .slide--new-donor picture img,
  .slide--mentor picture img {
    object-position: 66% center;
  }

  .hero-copy {
    top: 30px;
    right: auto;
    left: 20px;
    width: min(72%, 480px);
    padding: 14px 12px;
    border-radius: 12px;
    background: linear-gradient(90deg, rgb(255 255 255 / 78%), rgb(255 255 255 / 24%));
    font-size: clamp(20px, 5.8vw, 29px);
    line-height: 1.08;
    letter-spacing: 0;
    -webkit-text-stroke: .2px currentColor;
  }

  .hero-copy--autumn {
    top: 25px;
    left: 4%;
    width: 68%;
    padding: 14px 8px;
    background: rgb(255 249 232 / 68%);
    font-size: clamp(21px, 6.2vw, 29px);
    text-align: left;
  }

  .hero-copy--autumn .hero-copy-details {
    margin-top: 28px;
    font-size: clamp(18px, 5.3vw, 24px);
    line-height: 1.55;
  }

  :lang(en) .hero-copy--autumn {
    font-size: clamp(18px, 5.2vw, 25px);
  }

  :lang(en) .hero-copy--autumn .hero-copy-details {
    font-size: clamp(16px, 4.6vw, 21px);
  }

  .hero-copy--loyalty .hero-copy-subtitle {
    margin-top: 28px;
    font-size: clamp(18px, 5vw, 23px);
    line-height: 1.35;
  }

  .hero-copy--loyalty .hero-copy-note {
    margin-top: 21px;
    font-size: 10px;
    line-height: 1.25;
  }

  .hero-copy--new-donor,
  .hero-copy--mentor {
    top: 48px;
  }

  .section {
    padding: 62px 20px;
  }

  .benefit-grid,
  .centres-inner,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: 225px;
  }

  .plasma-steps {
    min-height: 0;
    padding: 106px 20px 122px;
    background-position: 59% center;
  }

  .section-wave {
    right: 0;
    left: 0;
    width: 100%;
  }

  .section-wave-top {
    transform: translateY(-51%);
  }

  .section-wave-bottom {
    transform: translateY(51%);
  }

  .plasma-steps-heading {
    margin-bottom: 34px;
  }

  .plasma-steps-heading h2 {
    font-size: 42px;
  }

  .plasma-steps-heading p {
    margin-top: 8px;
    font-size: 21px;
    line-height: 1.12;
  }

  .plasma-steps-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .plasma-step {
    max-width: 480px;
    margin: 0 auto;
    padding: 0;
  }

  .plasma-step + .plasma-step {
    padding-top: 34px;
    border-top: 1.5px solid var(--gold-text);
    border-left: 0;
  }

  .plasma-steps-booking {
    margin-top: 25px;
  }

  .plasma-facts {
    margin-top: -35px;
    padding: 52px 20px 60px;
    -webkit-mask-size: 100% auto, 100% calc(100% - 11px);
    mask-size: 100% auto, 100% calc(100% - 11px);
  }

  .plasma-facts h2 {
    margin-bottom: 36px;
    font-size: clamp(30px, 8vw, 32px);
    overflow-wrap: anywhere;
  }

  .plasma-facts-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .plasma-fact:nth-child(n) {
    padding: 0;
    border-left: 0;
  }

  .plasma-fact + .plasma-fact {
    margin-top: 34px;
    padding-top: 34px;
    border-top: 1.5px solid var(--blue-text);
  }

  .plasma-fact h3 {
    min-height: 0;
  }

  .plasma-video-section {
    padding: 32px 20px 28px;
  }

  .about-haema {
    padding: 84px 20px 94px;
  }

  .about-haema-inner {
    grid-template-columns: 1fr;
  }

  .about-haema-copy {
    padding: 0 0 36px;
    border-right: 0;
    border-bottom: 1px solid rgb(0 49 104 / 72%);
  }

  .about-haema h2 {
    font-size: clamp(30px, 9vw, 38px);
    white-space: normal;
  }

  .about-haema p {
    max-width: none;
  }

  .about-haema .global-button {
    margin-top: 28px;
  }

  .about-haema-media {
    padding: 36px 0 0;
  }

  .testimonials {
    min-height: 0;
    padding: 72px 20px 74px;
  }

  .testimonials-title {
    font-size: 44px;
  }

  .testimonial-frame {
    min-height: 430px;
    padding: 32px 37px 28px;
  }

  .testimonial-stage {
    min-height: 360px;
  }

  .testimonial-slide blockquote {
    font-size: 17px;
    line-height: 1.42;
  }

  .testimonial-slide figcaption {
    font-size: 17px;
  }

  .dbg_brace_svg {
    width: 34px;
    height: 350px;
  }

  .testimonial-brace-left {
    left: -8px;
  }

  .testimonial-brace-right {
    right: 24px;
  }

  .testimonial-quote-svg {
    right: -16px;
    width: 34px;
    height: 34px;
  }

  .testimonial-controls {
    gap: 22px;
  }

  .testimonials-wave-line {
    right: 12px;
    left: 12px;
    width: calc(100% - 24px);
  }

  .articles-section {
    padding: 52px 20px 40px;
  }

  .articles-section h2 {
    margin-bottom: 32px;
    font-size: 32px;
  }

  .articles-grid {
    grid-template-columns: 1fr;
  }

  .article-card {
    width: min(100%, 360px);
    min-height: 527px;
    margin: 0 auto;
  }

  .articles-footer {
    gap: 14px;
    margin-top: 36px;
  }

  .articles-all-button {
    min-width: 0;
    font-size: 15px;
    white-space: nowrap;
  }

  .faq-section {
    padding: 46px 20px 94px;
  }

  .faq-section h2 {
    margin-bottom: 28px;
    font-size: 32px;
  }

  .faq-tabs {
    display: flex;
    margin: 0 -20px;
    padding: 0 20px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
  }

  .faq-tab {
    min-width: 220px;
    min-height: 58px;
    padding: 12px 18px;
    flex: 0 0 auto;
    font-size: 21px;
  }

  .faq-tab:last-child {
    min-width: 300px;
  }

  .faq-item button {
    min-height: 57px;
    padding: 15px 4px;
    gap: 16px;
    font-size: 18px;
  }

  .faq-answer {
    padding: 0 24px 0 4px;
  }

  .faq-item.is-open .faq-answer {
    padding-bottom: 19px;
  }

  .faq-answer p {
    font-size: 16px;
  }

.faq-footer {
  margin-top: 38px;
}

  .plasma-info {
    min-height: 0;
    padding: 74px 20px 96px;
  }

  .plasma-info-inner {
    grid-template-columns: 1fr;
    gap: 18px;
    justify-items: center;
    min-height: 0;
  }

  .plasma-info h2 {
    font-size: 42px;
    text-align: center;
  }

  .plasma-info-brace {
    width: 26px;
    height: 82px;
    transform: rotate(90deg);
  }

  .plasma-info p {
    max-width: 560px;
    font-size: 16px;
  }

  .booking-section {
    padding: 72px 20px 112px;
  }

  .booking-map {
    width: min(100%, 513px);
    height: auto;
    aspect-ratio: 513 / 320;
  }

  .booking-map-image {
    width: 100%;
    height: auto;
  }

  .map-marker,
  .map-marker img {
    width: 46px;
    height: 60px;
  }

  .map-marker > span {
    font-size: 16px;
  }

  .booking-heading h2 {
    font-size: 32px;
  }

  .booking-heading p {
    font-size: 18px;
  }

  .booking-choice {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 18px 22px;
    padding: 26px 0;
  }

  .booking-choice-icon {
    width: 82px;
    height: auto;
    grid-row: 1 / span 2;
  }

  .booking-choice > p {
    grid-row: 1;
    grid-column: 2;
    transform: none;
  }

  .booking-choice-button {
    width: auto;
    grid-row: 2;
    grid-column: 2;
    justify-self: start;
    font-size: 21px;
  }

  .centres-inner {
    gap: 20px;
  }

  .centres-map {
    order: -1;
  }

  .footer-inner {
    gap: 32px;
  }

  .footer-legal-links {
    gap: 16px 24px;
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .slides {
    height: 390px;
  }

  .hero-copy--autumn {
    font-size: clamp(20px, 5vw, 25px);
  }

  .hero-copy--autumn .hero-copy-details {
    margin-top: 18px;
    font-size: clamp(17px, 4.4vw, 21px);
    line-height: 1.4;
  }

  :lang(en) .hero-copy--loyalty {
    font-size: clamp(18px, 4.8vw, 23px);
  }

  :lang(en) .hero-copy--loyalty .hero-copy-subtitle {
    margin-top: 18px;
    font-size: clamp(16px, 4.2vw, 20px);
    line-height: 1.25;
  }

  :lang(en) .hero-copy--loyalty .hero-copy-note {
    margin-top: 14px;
    font-size: 9px;
  }
}

@media (max-width: 480px) {
  .slide picture img {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }

  .hero-copy {
    left: 14px;
    width: calc(100% - 28px);
    padding: 12px 10px;
    background: linear-gradient(90deg, rgb(255 255 255 / 86%), rgb(255 255 255 / 35%));
  }

  .hero-copy--autumn {
    left: 4%;
    width: 66%;
  }

  .hero-copy--loyalty {
    width: 78%;
  }

  .hero-copy--new-donor,
  .hero-copy--mentor {
    top: 58px;
    width: 82%;
  }

  .slider-dots {
    display: none;
  }

  .benefits {
    padding: 30px 20px 42px;
  }

  .benefit-card {
    height: auto;
    min-height: 260px;
    padding: 14px 14px 18px;
    border-radius: 22px;
  }

  .benefit-icon {
    width: 58px;
    height: 58px;
    margin-top: 2px;
  }

  .benefit-card h2 {
    margin: 7px 0 8px;
    font-size: 18px;
    line-height: 1.25;
  }

  .benefit-card p {
    font-size: 15px;
    line-height: 1.38;
  }

  .plasma-steps {
    padding: 76px 20px 82px;
  }

  .plasma-steps-heading {
    margin-bottom: 25px;
  }

  .plasma-steps-heading h2 {
    font-size: 32px;
  }

  .plasma-steps-heading p {
    margin-top: 6px;
    font-size: 17px;
  }

  .plasma-steps-grid {
    gap: 22px;
  }

  .plasma-step + .plasma-step {
    padding-top: 22px;
    border-top-width: 1px;
  }

  .plasma-step-icon {
    width: 52px;
    height: 52px;
  }

  .plasma-step h3 {
    margin-bottom: 7px;
    font-size: 20px;
  }

  .plasma-step > p {
    font-size: 15px;
    line-height: 1.4;
  }

  .plasma-steps-booking {
    margin-top: 20px;
  }

  .plasma-facts {
    padding: 45px 20px 48px;
  }

  .plasma-facts h2 {
    margin-bottom: 25px;
    font-size: 27px;
    line-height: 1.08;
  }

  .plasma-fact + .plasma-fact {
    margin-top: 22px;
    padding-top: 22px;
    border-top-width: 1px;
  }

  .plasma-fact h3 {
    padding-bottom: 7px;
    border-bottom: 0;
    font-size: 20px;
  }

  .plasma-fact > p {
    padding: 7px 0 0;
    border-bottom: 0;
    font-size: 15px;
    line-height: 1.4;
  }

  .plasma-video-section {
    padding: 24px 20px;
  }

  .about-haema {
    padding: 56px 20px 62px;
  }

  .about-haema-copy {
    padding-bottom: 26px;
  }

  .about-haema h2 {
    margin-bottom: 9px;
    font-size: 28px;
  }

  .about-haema p {
    font-size: 15px;
    line-height: 1.4;
  }

  .about-haema .global-button {
    margin-top: 20px;
  }

  .about-haema-media {
    padding-top: 26px;
  }

  .testimonials {
    padding: 52px 20px 54px;
  }

  .testimonials-inner {
    gap: 20px;
  }

  .testimonials-title {
    font-size: 32px;
    line-height: 1;
  }

  .testimonial-frame {
    min-height: 278px;
    padding: 18px 12px 14px;
  }

  .testimonial-stage {
    min-height: 238px;
  }

  .testimonial-slide {
    width: 100%;
    margin-inline: auto;
  }

  .testimonial-slide blockquote {
    font-size: 16px;
    line-height: 1.42;
    text-align: center;
  }

  .testimonial-slide figcaption {
    margin-top: 14px;
    font-size: 15px;
    text-align: center;
  }

  .dbg_brace_svg,
  .testimonial-quote-svg {
    display: none;
  }

  .testimonial-controls {
    gap: 16px;
    margin-top: 0;
  }

  .articles-section {
    padding: 40px 20px 34px;
  }

  .articles-section h2 {
    margin-bottom: 24px;
    font-size: 27px;
    line-height: 1.1;
  }

  .articles-grid {
    gap: 14px;
  }

  .article-card {
    min-height: 410px;
    border-radius: 18px;
  }

  .article-card-image {
    height: 150px;
    flex-basis: 150px;
  }

  .article-card-content {
    min-height: 260px;
    padding: 21px 22px 22px;
  }

  .article-card h3 {
    min-height: 0;
    margin-bottom: 12px;
    font-size: 18px;
  }

  .article-card p {
    font-size: 15px;
    line-height: 1.38;
  }

  .article-card-button {
    margin-top: 18px;
    font-size: 15px;
  }

  .articles-footer {
    margin-top: 26px;
  }

  .faq-section {
    padding: 38px 20px 70px;
  }

  .faq-section h2 {
    margin-bottom: 20px;
    font-size: 27px;
    line-height: 1.12;
  }

  .faq-tab {
    min-width: 190px;
    min-height: 52px;
    padding: 10px 14px;
    font-size: 18px;
  }

  .faq-tab:last-child {
    min-width: 260px;
  }

  .faq-item button {
    min-height: 52px;
    padding: 12px 4px;
    gap: 12px;
    font-size: 16px;
    line-height: 1.32;
  }

  .faq-answer p {
    font-size: 15px;
  }

  .faq-footer {
    margin-top: 28px;
  }

  .plasma-info {
    padding: 54px 20px 68px;
  }

  .plasma-info-inner {
    gap: 10px;
  }

  .plasma-info h2 {
    font-size: 30px;
  }

  .plasma-info-brace {
    width: 22px;
    height: 64px;
  }

  .plasma-info p {
    font-size: 15px;
    line-height: 1.4;
  }

  .booking-section {
    padding: 54px 20px 76px;
  }

  .booking-inner {
    gap: 36px;
  }

  .booking-panel {
    padding-top: 32px;
  }

  .booking-heading {
    min-height: 78px;
  }

  .booking-heading h2 {
    font-size: 27px;
  }

  .booking-heading p {
    font-size: 16px;
  }

  .booking-choice {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 12px 16px;
    padding: 21px 0;
  }

  .booking-choice-icon {
    width: 68px;
  }

  .booking-choice > p {
    font-size: 17px;
  }

  .booking-choice-button {
    min-height: 40px;
    padding: 5px 12px;
    font-size: 18px;
  }
}

@media (max-width: 1180px) {
  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 60px;
    padding-inline: 30px;
  }

  .footer-centres,
  .footer-important,
  .footer-facebook-group,
  .footer-socials {
    grid-column: auto;
  }
}

@media (max-width: 700px) {
  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 24px;
  }

  .footer-brand {
    width: calc(200% + 24px);
    height: auto;
    margin-left: calc(-100% - 24px);
  }

  .footer-brand img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 18px;
    padding: 74px 20px 28px;
  }

  .footer-inner h2 {
    margin-bottom: 14px;
    padding-bottom: 9px;
    font-size: 16px;
  }

  .footer-inner a {
    font-size: 14px;
    line-height: 1.35;
  }

  .footer-links,
  .footer-facebook-links {
    gap: 7px;
  }

  .footer-facebook-group {
    grid-template-columns: 34px 14px minmax(0, 1fr);
    gap: 5px;
    align-self: stretch;
  }

  .footer-social-icon {
    width: 34px;
    height: 34px;
  }

  .footer-brace {
    width: 14px;
    height: 100%;
    min-height: 176px;
  }

  .footer-socials {
    gap: 14px;
  }

  .footer-socials > a:not(.footer-brand) {
    gap: 8px;
  }

  .footer-brand {
    width: calc(200% + 18px);
    height: auto;
    margin-top: 8px;
    margin-left: calc(-100% - 18px);
  }

  .footer-brand img {
    width: 100%;
    height: auto;
  }

  .footer-bottom {
    min-height: 0;
    padding: 36px 20px 24px;
  }
}

@media (max-width: 1180px) {
  .company-about {
    padding-right: 4%;
    padding-left: 4%;
  }

  .company-about-wave {
    right: 4%;
    left: 4%;
    width: 92%;
  }
}

@media (max-width: 880px) {
  .company-about {
    padding: 24px 20px 78px;
  }

  .company-about h1 {
    margin-bottom: 28px;
    font-size: 32px;
    line-height: 1.2;
    text-align: center;
  }

  .company-about-copy,
  .company-report-copy {
    font-size: 16px;
  }

  .company-about-wave {
    right: 20px;
    bottom: 12px;
    left: 20px;
    width: calc(100% - 40px);
  }
}

@media (min-width: 881px) and (max-width: 1180px) {
  .site-header,
  #main > section,
  .site-footer {
    width: calc(100% - 16px);
  }

  .header-inner {
    display: grid;
    width: 83.14vw;
    max-width: 1100px;
    height: 10.769vw;
    min-height: 0;
    margin: 0 auto;
    padding: 1.538vw 0 4.923vw;
    grid-template-columns: 11.538vw 1fr;
    gap: 2.231vw;
  }

  .brand {
    width: 10.769vw;
    transform: translateY(.077vw);
  }

  .brand img {
    width: 10.615vw;
    margin-left: .077vw;
  }

  .menu-toggle {
    display: none;
  }

  .main-nav {
    position: relative;
    top: .077vw;
    right: auto;
    left: auto;
    display: flex;
    gap: 3.231vw;
    padding: 0;
    align-items: center;
    flex-direction: row;
    background: transparent;
    box-shadow: none;
  }

  .main-nav a,
  .main-nav a:nth-child(n) {
    position: static;
    width: auto;
    padding: .615vw 0;
    flex: 0 1 auto;
    margin-right: 0;
    font-size: 1.385vw;
  }

  .main-nav a:nth-child(1) {
    position: relative;
    left: .154vw;
    width: 10.739vw;
    flex: 0 0 10.739vw;
    margin-right: .769vw;
  }

  .main-nav a:nth-child(2) {
    margin-right: -.615vw;
  }

  .main-nav a:nth-child(4) {
    margin-right: .154vw;
  }

  .main-nav a:nth-child(5),
  .main-nav a:nth-child(6) {
    margin-right: .231vw;
  }

  .main-nav .active {
    height: 3.077vw;
    margin-right: -.462vw;
    padding: 0 .769vw;
    border-radius: .769vw;
  }

  .main-nav .language,
  .main-nav .language img {
    width: 1.538vw;
    height: 1.538vw;
  }

  .booking-button {
    position: absolute;
    right: 0;
    bottom: 1.462vw;
    width: 16.923vw;
    height: 3.538vw;
    min-height: 0;
    padding: 0 .615vw 0 1.846vw;
    border-radius: .923vw;
    grid-column: auto;
    font-size: 1.923vw;
  }

  :lang(en) .booking-button {
    width: 19.231vw;
    font-size: 1.692vw;
  }

  .booking-button span {
    display: block;
    width: 2.154vw;
    height: 2.154vw;
    border-width: .231vw;
    flex-basis: 2.154vw;
  }

  .booking-button span::before {
    width: .154vw;
    height: .615vw;
    transform: translate(-.077vw, -.615vw);
  }

  .booking-button span::after {
    width: .154vw;
    height: .538vw;
    transform: translate(-.077vw, 0) rotate(-44deg);
  }

  .company-about {
    padding: 3.846vw 7.692vw 6.05vw;
  }

  .company-about-inner {
    max-width: 84.615vw;
  }

  .company-about h1 {
    margin-bottom: 2.308vw;
    font-size: 4.615vw;
    letter-spacing: .18vw;
  }

  .company-about-copy,
  .company-report-copy {
    font-size: 1.308vw;
  }

  .company-about-copy p {
    margin-bottom: .769vw;
  }

  .company-about-copy ul {
    margin-bottom: 1.154vw;
    padding-left: 2vw;
  }

  .company-about-copy li {
    margin-bottom: .615vw;
  }

  .company-action {
    gap: .769vw;
    min-width: 14.923vw;
    min-height: 3.462vw;
    margin-top: 1.923vw;
    padding: .769vw 1.154vw;
    border-radius: .769vw;
    font-size: 1.846vw;
  }

  .company-action:not(.company-report-action) {
    margin-top: 3.62vw;
  }

  .company-action-icon {
    width: 2.615vw;
    height: 1.846vw;
  }

  .company-money-icon {
    width: 2.615vw;
    height: 1.692vw;
  }

  .company-report-icon {
    width: 2.308vw;
    height: 1.923vw;
  }

  .company-report-copy {
    margin-top: 1.846vw;
  }

  .company-report-copy p {
    margin-bottom: 1.846vw;
  }

  .company-report-qr {
    width: 11.538vw;
    height: 11.538vw;
  }

  .company-report-action {
    min-width: 21.95vw;
    margin-top: 1.923vw;
  }

  .company-about-wave {
    right: 3.077vw;
    bottom: 1.538vw;
    left: 3.077vw;
    width: calc(100% - 6.154vw);
    height: 4.462vw;
  }
}

@media (min-width: 881px) and (max-width: 1180px) {
  .nav-centres {
    width: 11.462vw;
    flex: 0 0 11.462vw;
  }

  .main-nav .nav-centres > a,
  .main-nav .nav-centres > a:nth-child(n) {
    left: 0;
    width: auto;
    flex: 1 1 auto;
    margin: 0;
    font-size: 1.385vw;
  }

  .nav-centres-toggle {
    width: 1.769vw;
    height: 2.615vw;
  }

  .nav-centres-toggle::after {
    top: 1.154vw;
    left: .615vw;
    width: .615vw;
    height: .462vw;
  }

  .nav-centres-menu {
    top: 2.923vw;
    width: 17.692vw;
    padding: .538vw .615vw;
  }

  .main-nav .nav-centres-menu a,
  .main-nav .nav-centres-menu a:nth-child(n) {
    padding: .692vw .769vw;
    font-size: 1.154vw;
  }
}

@media (max-width: 880px) {
  .nav-centres {
    width: 100%;
    flex: 0 0 auto;
    flex-wrap: wrap;
  }

  .main-nav .nav-centres > a,
  .main-nav .nav-centres > a:nth-child(n) {
    width: auto;
    flex: 0 1 auto;
  }

  .nav-centres-menu {
    position: static;
    width: 100%;
    margin: 4px 0 8px;
    border-radius: 5px;
  }

  .main-nav .nav-centres-menu a,
  .main-nav .nav-centres-menu a:nth-child(n) {
    padding: 10px 12px;
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
