/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  min-width: 0;
  min-height: 0;
}

/* BODY */
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body, "Barlow", sans-serif);
  background: #fff;
  color: #4e4e4e;
}

/* DESIGN TOKENS */
:root {
  --font-main: "BarlowCondensedBold", sans-serif; 
  --font-body: "Dinpro", sans-serif; 
  --font-menu: "DinproBold", sans-serif; 
  --font-subheading: "Anydore", serif; 

  --color-heading-main: #fff; 
  --color-heading-section: #4e4e4e; 
  --color-heading-accent: #f7008c; 
  --color-heading-hero: #fff; 
  --color-text-light: #fff;
  --color-text-benefits-list: #565656;
  --color-background-accent: #ffb1db;
  --color-accent-secondary: #ff87ce;
  --color-videos-description-background: #31312f;
  --color-background-footer: #8f0a73;
  --color-section-border: #ff4ab3;
  --color-footer-social-border: #941a7d;
  --color-offers-para: #282828;
  --color-offer-list: #838383;
  --color-footer-section-title: #2f2f2f;

  --text-heading-xl: 100px;
  --text-heading-lg: 60px;
  --text-heading-md: 30px;
  --text-heading-sm: 24px;

  --text-body-lg: 20px;
  --text-body-md: 18px;
  --text-body-sm: 16px;
  --text-ui-md: 14px;
  --text-caption: 12px;

  --timetable-elem-gap: 70px;
}

a {
  text-decoration: none;
}

.flex {
  display: flex;
}

.flex--row {
  flex-direction: row;
}

.flex--rowreverse {
  flex-direction: row-reverse;
}

.flex--column {
  flex-direction: column;
}

.flex--center {
  align-items: center;
  justify-content: center;
}

.w-85 {
  width: 85%;
}

.w-100 {
  width: 100%;
}
.relative {
  position: relative;
}

h1 {
  font-family: var(--font-main);
  font-size: var(--text-heading-lg);
  color: var(--color-heading-main);
  text-transform: uppercase;
}

h2 {
  font-size: var(--text-heading-lg);
  font-family: var(--font-main);
  text-transform: uppercase;
  color: var(--color-heading-section);
}

.heading_secondary {
  color: var(--color-heading-hero);
}

.hero__heading-secondary {
  font-family: var(--font-subheading);
  color: var(--color-heading-accent);
  font-weight: 400;
  text-transform: none;
  line-height: var(--text-heading-md);
  font-size: var(--text-heading-md);
}

h3 {
  color: var(--color-heading-accent);
  font-family: var(--font-subheading);
  font-weight: 400;
  font-size: var(--text-heading-md);
  text-transform: none;
}

.hero__heading-tertiary {
  font-family: var(--font-body);
  margin-top: 10px;
  font-weight: 400;
  font-size: var(--text-body-md);
}

/* BEM BUTTONS */
.button {
  width: fit-content;
  border: 0;
  font-family: var(--font-menu);
  text-transform: uppercase;
  border-radius: 30px;
  position: relative;
  cursor: pointer;
}

.button--nav {
  background: var(--color-heading-accent) !important;
  color: var(--color-text-light) !important;
  border: 1px solid var(--color-heading-accent) !important;
  font-size: var(--text-ui-md) !important;
  padding: 10px 30px !important;
  transition: background-color .3s, color .3s, border-color .3s; /* no need for !important */
  text-align: center !important;
  line-height: normal;
}

.button--nav:hover {
  border-color: #000 !important;
  color: #000 !important;
  background: transparent !important;
}


.button--primary {
  background: transparent;
  border: 2px solid var(--color-text-light);
  padding: 10px 50px;
  font-size: var(--text-ui-md);
  color: var(--color-text-light);
  transition: .5s;
}



.button--secondary {
  background: var(--color-background-accent);
  padding: 10px 50px;
  font-size: var(--text-body-md);
  color: var(--color-text-light);
  display: block;
  transition: .5s;
}

.button--secondary:hover, .button--primary:hover {
  transform: translateY(5px) scale(1.1);
}

.mobile__menu-actions .button--nav.button--mobile {
  all: unset;
  display: block;
  width: 170px;
  margin: 0 auto;
  background: var(--color-heading-accent);
  color: var(--color-text-light);
  border: 1px solid var(--color-heading-accent);
  font-size: var(--text-ui-md);
  padding: 10px 30px;
  text-align: center;
  text-transform: uppercase;
  font-family: var(--font-menu);
  border-radius: 30px;
  cursor: pointer;
  transition: .3s;
  line-height: normal;
  position: relative;
  z-index: 9999;
}