@font-face {
  font-family: "Archivo Narrow";
  src: url("../fonts/ArchivoNarrow-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: block;
}

: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;
  --gold-text: #cca95e;
  --blue-text: #033f85;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 140px;
}

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);
}

.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;
}

.main-nav a {
  padding: 8px 0;
  font-size: 18px;
  font-weight: 300;
  text-decoration: none;
  white-space: nowrap;
}

.main-nav a:first-child::after {
  position: absolute;
  top: 19px;
  left: 133px;
  display: block;
  width: 7px;
  height: 5px;
  margin: 0;
  background: var(--blue);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
}

.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 .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;
}

.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) 0%,
    var(--e-global-color-secondary) 100%
  );
}

.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;
}

.booking-button {
  position: absolute;
  right: 0;
  bottom: 19px;
  height: 46px;
  min-height: 0;
  width: 220px;
  min-height: 46px;
  padding: 0 8px 0 24px;
  justify-content: space-between;
  box-shadow: 0 8px 20px rgb(213 162 28 / 24%);
  font-size: 25px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .4px;
  -webkit-text-stroke: .25px currentColor;
}

.booking-button span {
  position: relative;
  width: 28px;
  height: 28px;
  border: 3px solid var(--blue);
  border-radius: 50%;
  box-shadow: inset 0 0 0 .35px var(--blue);
  flex: 0 0 28px;
  color: transparent;
  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: var(--blue);
  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 .4s ease;
  pointer-events: none;
}

.slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mentor-copy {
  position: absolute;
  top: 99px;
  left: 22px;
  color: #033f85;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 40px;
  font-weight: 900;
  line-height: 44.67px;
  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;
}

.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-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: inherit;
  font-size: 18px;
  font-weight: 600;
  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;
}

.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: 10%; left: 69%; }
.marker-miskolc { top: 28%; left: 43%; }
.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);
  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 a:first-child::after {
    display: none;
  }

  .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: 760px) {
  html {
    scroll-padding-top: 76px;
  }

  .header-inner {
    grid-template-columns: 120px 1fr auto;
    gap: 10px;
    min-height: 76px;
  }

  .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: auto;
    min-width: 0;
    padding: 9px 12px;
    font-size: 13px;
  }

  .booking-button span {
    display: none;
  }

  .menu-toggle {
    grid-column: 3;
  }

  .hero {
    padding: 18px 0 42px;
  }

  .slides {
    border-radius: 0;
  }

  .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: 17px;
  }

  .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;
  }
}

@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: 1fr;
  }
}

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