@font-face {
  font-family: 'Heebo';
  src: url('./fonts/Heebo-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Heebo';
  src: url('./fonts/Heebo-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Yantramanav';
  src: url('./fonts/Yantramanav-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/**
 Normalize / Reset styles
 */
*,
::before,
::after {
  box-sizing: border-box;
}


:where(ul, ol):where([class]) {
  padding-left: 0;
}


body,
:where(blockquote, figure):where([class]) {
  margin: 0;
}


:where(h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  ul,
  ol,
  dl):where([class]) {
  margin-block: 0;
}

:where(dd[class]) {
  margin-left: 0;
}

:where(fieldset[class]) {
  margin-left: 0;
  padding: 0;
  border: none;
}

:where(ul[class]) {
  list-style: none;
}

:where(address[class]) {
  font-style: normal;
}

p {
  --paragraphMarginBottom: 24px;

  margin-block: 0;
}

p:where(:not([class]):not(:last-child)) {
  margin-bottom: var(--paragraphMarginBottom);
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
textarea,
select,
button {
  font: inherit;
}

html {
  height: 100%;
  scrollbar-gutter: stable;
}

html,
:has(:target) {
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  line-height: 1.5;
}

a:where([class]) {
  display: inline-flex;
}

button,
label {
  cursor: pointer;
}

:where([fill]:not([fill="none"],
    [fill^="url"])) {
  fill: currentColor;
}

:where([stroke]:not([stroke="none"],
    [stroke^="url"])) {
  stroke: currentColor;
}

svg * {
  transition-property: fill, stroke;
}

:where(table) {
  border-collapse: collapse;
  border-color: currentColor;
}

@media (prefers-reduced-motion: reduce) {

  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Normalise/Reset end__________________________________________________________
__________________________________________________________ */



:root {
  --colour-dark: #000000;
  --colour-dark-alternate: #131619;
  --colour-light: #FFFFFF;
  --colour-dark-grey: #404040;
  --colour-light-grey: #C4C4C4;
  --colour-orange: #ae6312;

  --border-radius: 30px;
  --border: 1px solid var(--colour-light);

  --font-family-base: 'Heebo', sans-serif;
  --font-family-accent: 'Yantramanav', sans-serif;

  --input-height: 54px;

  --container-width: 1300px;
  --container-padding-x: 15px;

  --transition-duration: 0.2s;

  --header-height: 90px;

}


body {
  font-family: var(--font-family-base);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  background-color: var(--colour-dark);
  color: var(--colour-light-grey);
}

a,
button,
input,
output,
textarea,
svg * {
  transition-duration: var(--transition-duration);
}

a {
  color: var(--colour-light);
}

a:hover {
  color: var(--colour-light-grey);
}

p {
  margin-block: 0;
}

p:not([class]):not(:last-child) {
  margin-bottom: 24px;
}

.container {
  max-width: calc(var(--container-width) + var(--container-padding-x) *2);
  margin-inline: auto;
  padding-inline: var(--container-padding-x);
}

.container-wide {
  max-width: 1920;
  margin-inline: auto;
}


.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  clip-path: inset(100%) !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  text-transform: uppercase;
  color: var(--colour-light);
}


/* BUTTON */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-inline: 26px;
  height: 38px;
  font-weight: 700;
  font-size: 12px;
  line-height: 2;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  white-space: nowrap;
  background-color: var(--colour-light);
  border: none;
  border-radius: var(--border-radius);
  text-decoration: none;
}

.button:hover {
  background-color: var(--colour-orange);
}

.button.button-transparent {
  position: relative;
  height: var(--input-height);
  /* padding-left: 31px; */
  padding-right: 80px;
  background-color: transparent;
  border: var(--border);
  color: var(--colour-light);
}

.button.button-transparent::after {
  content: '';
  position: absolute;
  right: 0;
  height: 100%;
  aspect-ratio: 1;
  background: url(./icons/arrow-top-right.svg) center/70% no-repeat;
  border: var(--border);
  border-radius: 50%;
}

.button.button-transparent:hover {
  color: var(--colour-dark);
  background-color: var(--colour-orange);
}

.button.button-transparent:hover::after {
  border: 1px solid var(--colour-dark);
  filter: invert(1);
}


.button.button-black-transparent {
  position: relative;
  height: var(--input-height);
  padding-left: 31px;
  padding-right: 80px;
  background-color: transparent;
  border: var(--border);
  color: var(--colour-light);
}

.button.button-black-transparent::after {
  content: '';
  position: absolute;
  right: 0;
  height: 100%;
  aspect-ratio: 1;
  background: url(./icons/arrow-top-right.svg) center/70% no-repeat;
  border: var(--border);
  border-radius: 50%;
}

.button.button-black-transparent:hover {
  color: var(--colour-light);
  background-color: var(--colour-dark);
}


/* HEADER */

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 20px;
  min-height: var(--header-height);
  padding-inline: 32px;
  background-color: var(--colour-dark-alternate);

}

.header-logo {
  flex-shrink: 0;
}

.header-menu-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 50px;
}

.header-menu-link {
  display: inline-flex;
  align-items: center;
  column-gap: 7px;
  height: var(--header-height);
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.2px
}


.header-menu-link.is-current::after {
  content: "";
  width: 5px;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: currentColor;
}

.header-actions {
  display: flex;
  column-gap: 39px;
}

.header-burger-button {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 4px;
  width: 40px;
  aspect-ratio: 1;
  padding-left: 8px;
  color: var(--colour-light);
  background-color: transparent;
  border: var(--border);
  border-radius: 50%;
}

.header-burger-button:hover {
  color: var(--colour-light-grey);
  border-color: currentColor;
}

.header-burger-button-line {
  width: 6px;
  height: 1px;
  background-color: currentColor;
  box-shadow: 16px 0px 0px 0px currentColor;
}

/* BANNER */

.banner {
  display: flex;
  flex-direction: column;
  padding: 36px 70px;
  color: var(--colour-light);
  background-color: var(--colour-dark-alternate);
}

.banner-body {
  text-transform: uppercase;
}


.banner-info {
  display: flex;
  align-items: end;
  font-size: clamp(16px, 1.56vw, 30px);
  line-height: 1.27;
  font-weight: 700;
}

.banner-info::before {
  content: '';
  width: clamp(60px, 10.1vw, 194px);
  aspect-ratio: 1;
  margin-right: 30px;
  background: url(./icons/bold-arrow-down-right.svg) center/contain no-repeat;
}


.banner-title {
  font-size: min(18.75vw, 360px);
  line-height: 1;
  color: var(--colour-orange);

}

.banner-pagination-list {
  display: flex;
  justify-content: center;
}

.banner-pagination-item {
  display: flex;
}

/* PAGINATION BUTTONS -- NEED JS!*/
.banner-pagination-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 7px;
  background-color: transparent;
  border: none;

}

.banner-pagination-button::after {
  content: '';
  width: 10px;
  aspect-ratio: 1;
  border: var(--border);
  border-radius: 50%;
  transition-duration: var(--transition-duration);
}


.banner-pagination-button.is-current::after {
  background-color: var(--colour-light);
}

.banner-pagination-button:not(is-current):hover::after {
  border-color: var(--colour-light-grey)
}

/* MOTIVATION SECTION */

.motivation-item:nth-child(even) {
  background-color: var(--colour-orange);
}

.motivation-item:nth-child(even) .motivation-card {
  flex-direction: row-reverse;
}

.motivation-card-image {
  margin-block: -60px;
}

.motivation-card-body {
  padding-left: 35px;
}

.motivation-card {
  display: flex;
  justify-content: start;
  align-items: center;
  column-gap: clamp(30px, 10.42vw, 200px);
}

.title-medium {
  font-size: clamp(20px 2.08vw 40px);
  line-height: 1.3;
}

.motivation-card-description {
  max-width: 400px;
}

.motivation-card-description:not(:last-child) {
  margin-bottom: 37px;
}

.motivation-card-title:not(:last-child) {
  margin-bottom: 14px;
}



.backdrop-title {
  position: relative;
  z-index: 2;

}

.backdrop-title::before {
  content: '';
  display: block;
  position: absolute;
  right: calc(100% + 8px);
  width: 26px;
  aspect-ratio: 1;
  background: url('./icons/plus.svg') center/contain no-repeat;
}

.backdrop-title::after {
  content: attr(data-title);
  position: absolute;
  z-index: -1;
  top: -0.3em;
  left: -0.6em;
  font-size: 2.8em;
  font-family: var(--font-family-accent);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 0.5px var(--colour-light-grey);
  text-stroke: 0.5px var(--colour-light-grey);

}

/* TRAINING SECTION */

.training-types {
  position: relative;
  padding-top: 70px;
  padding-bottom: 120px;
  background-color: var(--colour-dark);
}

.training-types-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 60px;
}

.training-types-item {
  --trainingTypesBgrndIconSize: 80px;


  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 32px;
  padding-top: var(--trainingTypesBgrndIconSize);
  background: url('./icons/transparent-arrow-bottom-left.svg') 100% 0/var(--trainingTypesBgrndIconSize) no-repeat;
}

.training-types-image {
  width: 150px;
  height: 140px;
  object-fit: contain;
}


.training-types-item-title {
  font-size: 16px;

}

/* JOIN US SECTION  */

.join-us {
  background-color: var(--colour-dark-alternate);
}

.join-us-body {
  padding-bottom: 150px;
}

.join-us-title {
  position: relative;
  font-size: clamp(64px, 9.37vw, 180px);
  line-height: 1;
  text-align: center;
  margin-top: -0.4em;
}

.join-us-title::after {
  content: '';
  height: 0.7em;
  margin-left: 0.14em;
  aspect-ratio: 1;
  display: inline-block;
  background: url('./icons/bold-arrow-down-right.svg') center/contain no-repeat;
  scale: 1 -1;

}

.join-us-form-header:not(:last-child) {
  margin-bottom: 52px;
}

.join-us-form-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 7px;
}

.title-big {
  font-size: clamp(24px, 3.12vw, 60px);
}

.backdrop-title.centered::after {
  top: -0.25em;
  left: 50%;
  translate: -50% 0;
}

.join-us-form-subtitle {
  font-size: 20px;
  line-height: 1.65;
  text-transform: uppercase;
  color: var(--colour-light);
  text-align: center;
}


.join-us-form-body {
  display: flex;
  justify-content: center;
  column-gap: 20px;
}

.join-us-form-input {
  max-width: 400px;
}

/* JOIN US VIDEO */

.join-us-video-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 150px 30px;
  background: url('./images/join-us-bg.jpg') center/cover no-repeat var(--colour-dark-alternate);
}

.join-us-video {
  width: 100%;
  max-width: 960px;
  height: auto;
}


.join-us-video-play-button {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  column-gap: 4px;
  width: 200px;
  aspect-ratio: 1;
  background-color: transparent;
  border: var(--border);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--colour-light);
}


.join-us-video-play-button.hidden {
  opacity: 0;
  transition: opacity 0.7s ease;
}

.join-us-video-play-button.visible {
  opacity: 1;
  transition: opacity 0.3s ease;
}


.join-us-video-play-button::after {
  content: '';
  width: 26px;
  aspect-ratio: 1;
  background: url('./icons/arrow-top-right.svg') center/contain no-repeat;
}

.join-us-video-play-button:hover {
  color: var(--colour-dark);
  background-color: rgba(255, 188, 53, 0.567);
}

.join-us-video-play-button:hover::after {
  filter: invert(1);
}

/* JOIN US SUBSCRIBE INPUT */

.input {
  width: 100%;
  height: var(--input-height);
  padding-inline: 25px;
  background-color: transparent;
  border: 1px solid var(--colour-light-grey);
  border-radius: var(--border-radius);
  color: var(--colour-light);
}

.input::placeholder,
select.input:invalid {
  color: var(--colour-light-grey);
}

input:hover {
  border-color: var(--colour-light);
}

input:focus {
  outline: none;
  background-color: var(--colour-orange);
  color: var(--colour-dark);
}

.location {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}


/* FIND US MAP - LOCATION SECTION */

.location-body {
  padding: 80px 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: var(--colour-orange);
}

.location-map iframe {
  filter: invert(90%) grayscale(100%) brightness(90%) contrast(120%);
}

.location-title:not(:last-child) {
  margin-bottom: 14px;
}

.location-description {
  max-width: 490px;
}

.location-description:not(:last-child) {
  margin-bottom: 37px;
}

/* FAMILY CAROUSSEL SECTION */

.family {
  background-color: var(--colour-dark-alternate);
}

.family-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 7px;
  text-align: center;
  padding-top: 132px;
  padding-bottom: 62px;
}

.family-description {
  font-size: 20px;
  line-height: 1.65;
  text-transform: uppercase;
  color: var(--colour-light);
  text-align: center;
}

.family-body {
  overflow: hidden;
  position: relative;
  width: 100%;
}

/* Container für die Bilder im Karussell, mit Animation für Endlos-Scrolling */
.carousel-track {
  display: flex;
  column-gap: 26px;
  animation: scroll 25s linear infinite;
  /* Endlose Animation für das Scrolling */
  width: max-content;
}

/* Pausiert die Animation beim Hovern über das Karussell */
.carousel-track:hover {
  animation-play-state: paused;
}

.family-image {
  flex-shrink: 0;
  height: 479px;
  object-fit: cover;
}

/* Keyframes für die Endlos-Scrolling-Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}



.family-body::-webkit-scrollbar {
  display: none;
}

.family-body {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* CALCULATE BMI SECTION */

.calculate {
  background-color: var(--colour-dark-alternate);
  padding-block: 146px;
}

.calculate-inner {
  display: flex;
  align-items: center;
  column-gap: 36px;
}

.calculate-body {
  max-width: 627px;
  flex-grow: 1;
}

.calculate-title:not(:last-child) {
  margin-bottom: 16px;
}

.calculate-description {
  max-width: 385px;
}

.calculate-description:not(:last-child) {
  margin-bottom: 31px;
}


.calculate-form-body {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 15px;
  margin-bottom: 26px;
}

.calculate-form-body:not(:last-child) {
  margin-bottom: 15px;
}

.calculate-actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.calculate-buttons {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.calculate-output {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: var(--input-height);
  padding-inline: 25px;
  background-color: transparent;
  border: var(--border);
  border-radius: var(--border-radius);
  color: var(--colour-orange);
  font-size: 24px;
  font-weight: 700;
}

.calculate-output--placeholder {
  color: var(--colour-light);
  font-weight: 700;
  font-size: 12px;
  line-height: 2;
  letter-spacing: 1.2px;

}

.calculate-input.error {
  border: 2px solid #ff0000;
}

.option {
  background-color: var(--colour-orange);
}

/* Hide the spin buttons in WebKit browsers */
.input::-webkit-outer-spin-button,
.input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Hide spin buttons in Firefox */
.input[type="number"] {
  -moz-appearance: textfield;
}



.calculate-table-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 610px;
}

.calculate-table-wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: var(--colour-orange);
}

.calculate-table {
  position: relative;
  border-collapse: collapse;
}


.calculate-table :is(td, th) {
  padding-right: 30px;
}

.calculate-table :is(td, th):not(:first-child) {
  padding-left: 30px;
}

.calculate-table :is(td, th):not(:last-child) {
  border-right: 1px solid var(--colour-light-grey);
}

.calculate-table tbody td {
  border-top: 1px solid var(--colour-light-grey);
}

.calculate-table tbody tr:last-child td:first-child {
  position: relative;
}

.calculate-table tbody tr:last-child td:first-child::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70%;
  height: 1px;
  background-color: var(--colour-light-grey);
}

.calculate-table th {
  padding-block: 20px;
  text-align: left;
  text-transform: uppercase;
  color: var(--colour-light);
}

.calculate-table td {
  padding-block: 14px;
}

.calculate-table tfoot {
  color: var(--colour-light);
}

.calculate-table tfoot td {
  padding-top: 33px;
  padding-bottom: 0;
}


/* FOOTER */

.footer-main {
  padding-top: 140px;
  padding-bottom: 160px;
}

.footer-header {
  display: grid;
  grid-template-columns: 20.77% auto;
  column-gap: 62px;
  align-items: center;
  margin-bottom: 60px;
}

.footer-logo-image {
  height: auto;
}


.footer-body {
  display: grid;
  grid-template-columns: 20.77% repeat(3, 1fr);
  column-gap: 62px;
}

.footer-extra {
  padding-bottom: 15px;
  background-color: var(--colour-dark-alternate);
}


.footer-description {
  font-size: 20px;
  line-height: 1.65;
  text-transform: uppercase;
  text-align: left;
  color: var(--colour-light);
}


.footer-column-title {
  font-size: clamp(18px, 1.15vw, 22px);
  margin-bottom: 15px;
}

.footer-schedule:not(:last-child) {
  margin-bottom: 13px;
}

.footer-address:not(:last-child) {
  font-style: normal;
  margin-bottom: 35px;
}


.footer-column-title.has-arrow::after {
  content: '';
  height: 0.74em;
  margin-left: 0.5em;
  aspect-ratio: 1;
  display: inline-block;
  background: url('./icons/bold-arrow-down-right.svg') center/contain no-repeat;
  scale: -1 1;
}


.footer-subscribe {
  position: relative;
}

.footer-subscribe-button {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  aspect-ratio: 1;
  background: url('./icons/arrow-top-right.svg') center/70% no-repeat;
  border: var(--border);
  border-radius: 50%;
}

.footer-subscribe-button:hover {
  background-color: var(--colour-orange);
}

.footer-subscribe-input {
  padding-right: 70px;
}

.footer-subscribe {
  margin-bottom: 50px;
}

.footer-soc1als-list {
  display: flex;
  column-gap: 18px;
}

.footer-soc1als-link {
  display: flex;
  width: 23px;
  height: auto;
}

svg *[fill] {
  fill: currentColor
}

svg *[stroke] {
  stroke: currentColor
}

svg * {
  transition-property: fill, stroke;
}

.footer-copyright {
  font-size: 14px;
}

.no-scroll {
  overflow: hidden;
}


/* MEDIA */

/* 1919 DESKTOP*/

@media(max-width: 1919px) {
  .motivation-card-image {
    margin-block: -20px;
  }

}


/* 1280 DESKTOP */

@media(max-width: 1280px) {
  .training-types-list {
    grid-template-columns: repeat(3, 1fr);
  }

}


/* 1024 TABLET */

@media(max-width:1024px) {
  .header {
    flex-wrap: wrap;
    row-gap: 10px;
    padding-top: 20px;
  }

  .header-menu {
    order: 1;
    flex-basis: 100%;
  }

  .header-menu-link {
    height: 50px;
  }

  .header,
  .banner {
    padding-inline: 15px;
  }

  .banner {
    row-gap: 10px;
  }

  .motivation-card {
    padding-block: 50px;
  }

  .motivation-card-image {
    max-width: 30%;
    height: auto;
    margin-block: 0;
  }

  .join-us-body {
    padding-bottom: 80px;
  }

  .join-us-title:not(:last-child) {
    margin-bottom: 80px;
  }

  .location {
    display: flex;
    flex-direction: column-reverse;
  }

  .family-image {
    height: 360px;
  }


  .calculate {
    padding-block: 100px;
  }

  .calculate-inner {
    column-gap: 20px;
  }

  .calculate-form-body {
    grid-template-columns: 1fr;
  }

  .calculate-button {
    width: 100%;
  }

  .calculate-table :is(td, th) {
    padding-block: 10px;
  }

  .calculate-table tfoot td {
    padding-top: 10px;
  }

  .footer-main {
    padding-top: 80px;
    padding-bottom: 50px;
  }

  .footer-body {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
  }

  .footer-header {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
  }

}

/* 768 BURGER BUTTON OVER MOBILE*/

@media (min-width: 768px) {
  .header-burger-button {
    display: none;
  }

  .header-close-button {
    display: none;
  }

  .header-book-button {
    padding-inline: 32px;
    height: 48px;
    font-size: 14px;
    letter-spacing: 1.4px;
  }
}

/* 767  MOBILE */

@media(max-width: 767px) {
  .button {
    padding-inline: 18px;
  }

  /* .header {
    padding-top: 10px;
  } */

  .header-logo {
    width: 73px;
    height: auto;
    align-items: start;
  }

  .footer-logo-image {
    width: 150px;
    height: auto;
  }

  /* > MOBILE OVERLAY MENU & CLOSE BUTTON */
  .header-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--colour-dark-alternate);
    z-index: 1000;
    overflow: auto;
    transform: translateY(-100%);
    transition: transform var(--transition-duration) ease-in-out;
  }

  .header-menu.is-open {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(0);
  }

  .header-menu-list {
    flex-direction: column;
    align-items: center;
    row-gap: 30px;
  }

  .header-menu-link {
    font-size: 18px;
    height: auto;
  }

  .header-actions {
    column-gap: 15px;
  }

  .header-close-button {
    position: absolute;
    top: 20px;
    left: 20px;
    background: none;
    border: none;
    color: var(--colour-orange);
    font-size: 50px;
    padding: 0;
    line-height: 1;
  }

  .header-close-button:hover {
    color: var(--colour-orange);
  }

  /* /> MOBILE OVERLAY MENU & CLOSE BUTTON */

  .banner-info {
    margin-bottom: 5px;
  }

  .banner-info::before {
    margin-right: 10px;
  }

  .motivation-card,
  .motivation-item:nth-child(even) .motivation-card {
    flex-direction: column-reverse;
    padding-block: 30px;
    row-gap: 30px;
  }

  .motivation-card-image {
    max-width: 60%;
    height: auto;
  }


  .motivation-card-title:not(:last-child) {
    margin-bottom: 20px;
  }

  .training-types-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .training-types-item {
    --trainingTypesBgrndIconSize: 50px;


    row-gap: 10px;
  }

  .training-types-image {
    max-width: 120px;
  }

  .join-us-video-play-button {
    width: 140px;
  }

  .join-us-title:not(:last-child) {
    margin-bottom: 40px;
  }

  .join-us-form-subtitle {
    font-size: 16px;
  }

  .join-us-form-body {
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
  }

  .location-body {
    padding-block: 40px;
  }

  .location-description:not(:last-child) {
    margin-bottom: 20px;
  }

  .family-image {
    height: 180px;
  }

  .family-header {
    padding-top: 80px;
    padding-bottom: 50px;
  }

  .family-body {
    column-gap: 12px;
  }


  .calculate-inner {
    flex-direction: column;
    row-gap: 30px;
  }

  .calculate-table-wrapper::before {
    display: none;
  }

  .calculate {
    padding-block: 60px;
  }

  .footer-body {
    grid-template-columns: 1fr;

  }

  .footer-main {
    padding-top: 50px;
  }

  .footer-header {
    margin-bottom: 30px;
  }

  .footer-subscribe {
    margin-bottom: 40px;
  }

}