/* ===================================================================
 *  Marathon Travel — Consolidated Stylesheet
 *  (replaces base.css + vendor.css + main.css)
 *  ------------------------------------------------------------------
 *  TOC:
 *  # variables
 *  # normalize (trimmed)
 *  # base setup
 *  # grid
 *  # helpers
 *  # typography
 *  # buttons
 *  # preloader
 *  # site header
 *  # intro (slider, dots, content, counter, notify, social)
 *  # info section (tabs, contact, copyright, go top)
 *  # slide legends
 *  # ESPA co-funding strip
 * =================================================================== */


/* ===================================================================
 * # variables
 * ------------------------------------------------------------------- */
:root {
  --color-accent: #8dc63f;
  --color-accent-light: #a5e946;
  --color-link-hover: #33648a;
  --color-text: #000000;
  --color-muted: #646464;
  --color-border: #e0e0e0;
  --color-bg-soft: #efefef;
  --font-sans: "Gothic A1", sans-serif;
  --font-serif: "DM Serif Display", serif;
  --font-legend: "Playfair Display", serif;
  --text-shadow-strong:
    0 0 10px rgba(0, 0, 0, 0.8),
    0 2px 4px rgba(0, 0, 0, 0.6),
    0 4px 8px rgba(0, 0, 0, 0.4),
    0 6px 12px rgba(0, 0, 0, 0.2);
}


/* ===================================================================
 * # normalize (trimmed from normalize.css v8.0.1, MIT)
 * ------------------------------------------------------------------- */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

a {
  background-color: transparent;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

textarea {
  overflow: auto;
}

[hidden] {
  display: none;
}


/* ===================================================================
 * # base setup
 * ------------------------------------------------------------------- */
html {
  font-size: 62.5%;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  font-weight: normal;
  line-height: 1;
  word-wrap: break-word;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

svg,
img,
video,
embed,
iframe,
object {
  max-width: 100%;
  height: auto;
}

div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

p {
  font-size: inherit;
  text-rendering: optimizeLegibility;
}

em,
i {
  font-style: italic;
  line-height: inherit;
}

strong,
b {
  font-weight: bold;
  line-height: inherit;
}

ol,
ul {
  list-style: none;
}

li {
  display: block;
}

a {
  text-decoration: none;
  line-height: inherit;
}

a img {
  border: none;
}

fieldset {
  margin: 0;
  padding: 0;
  border: none;
}

input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
  appearance: none;
  -webkit-appearance: none;
}


/* ===================================================================
 * # grid
 *   Breakpoints are MAX-WIDTH based: they apply to that breakpoint
 *   and all below it. Columns without a width share space equally.
 * ------------------------------------------------------------------- */
.row {
  width: 89%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-flow: row wrap;
}

.row .row {
  width: auto;
  max-width: none;
  margin-left: -20px;
  margin-right: -20px;
}

.column {
  flex: 1 1 0%;
  padding: 0 20px;
}

.collapse > .column,
.column.collapse {
  padding: 0;
}

/* large screen column widths */
.large-1 { flex: 0 0 8.33333%; max-width: 8.33333%; }
.large-2 { flex: 0 0 16.66667%; max-width: 16.66667%; }
.large-3 { flex: 0 0 25%; max-width: 25%; }
.large-4 { flex: 0 0 33.33333%; max-width: 33.33333%; }
.large-5 { flex: 0 0 41.66667%; max-width: 41.66667%; }
.large-6,
.large-half { flex: 0 0 50%; max-width: 50%; }
.large-7 { flex: 0 0 58.33333%; max-width: 58.33333%; }
.large-8 { flex: 0 0 66.66667%; max-width: 66.66667%; }
.large-9 { flex: 0 0 75%; max-width: 75%; }
.large-10 { flex: 0 0 83.33333%; max-width: 83.33333%; }
.large-11 { flex: 0 0 91.66667%; max-width: 91.66667%; }
.large-12,
.large-full { flex: 0 0 100%; max-width: 100%; }

/* block grids — equally-sized columns defined at row level */
.block-large-1-4 > .column { flex: 0 0 25%; max-width: 25%; }
.block-large-1-3 > .column { flex: 0 0 33.33333%; max-width: 33.33333%; }
.block-large-1-2 > .column { flex: 0 0 50%; max-width: 50%; }
.block-large-full > .column { flex: 0 0 100%; max-width: 100%; }

/* medium screens */
@media screen and (max-width: 1200px) {
  .row .row {
    margin-left: -16px;
    margin-right: -16px;
  }

  .column {
    padding: 0 16px;
  }

  .medium-1 { flex: 0 0 8.33333%; max-width: 8.33333%; }
  .medium-2 { flex: 0 0 16.66667%; max-width: 16.66667%; }
  .medium-3 { flex: 0 0 25%; max-width: 25%; }
  .medium-4 { flex: 0 0 33.33333%; max-width: 33.33333%; }
  .medium-5 { flex: 0 0 41.66667%; max-width: 41.66667%; }
  .medium-6,
  .medium-half { flex: 0 0 50%; max-width: 50%; }
  .medium-7 { flex: 0 0 58.33333%; max-width: 58.33333%; }
  .medium-8 { flex: 0 0 66.66667%; max-width: 66.66667%; }
  .medium-9 { flex: 0 0 75%; max-width: 75%; }
  .medium-10 { flex: 0 0 83.33333%; max-width: 83.33333%; }
  .medium-11 { flex: 0 0 91.66667%; max-width: 91.66667%; }
  .medium-12,
  .medium-full { flex: 0 0 100%; max-width: 100%; }

  .block-medium-1-4 > .column { flex: 0 0 25%; max-width: 25%; }
  .block-medium-1-3 > .column { flex: 0 0 33.33333%; max-width: 33.33333%; }
  .block-medium-1-2 > .column { flex: 0 0 50%; max-width: 50%; }
  .block-medium-full > .column { flex: 0 0 100%; max-width: 100%; }
}

/* tablets */
@media screen and (max-width: 800px) {
  .tab-1 { flex: 0 0 8.33333%; max-width: 8.33333%; }
  .tab-2 { flex: 0 0 16.66667%; max-width: 16.66667%; }
  .tab-3 { flex: 0 0 25%; max-width: 25%; }
  .tab-4 { flex: 0 0 33.33333%; max-width: 33.33333%; }
  .tab-5 { flex: 0 0 41.66667%; max-width: 41.66667%; }
  .tab-6,
  .tab-half { flex: 0 0 50%; max-width: 50%; }
  .tab-7 { flex: 0 0 58.33333%; max-width: 58.33333%; }
  .tab-8 { flex: 0 0 66.66667%; max-width: 66.66667%; }
  .tab-9 { flex: 0 0 75%; max-width: 75%; }
  .tab-10 { flex: 0 0 83.33333%; max-width: 83.33333%; }
  .tab-11 { flex: 0 0 91.66667%; max-width: 91.66667%; }
  .tab-12,
  .tab-full { flex: 0 0 100%; max-width: 100%; }

  .block-tab-1-4 > .column { flex: 0 0 25%; max-width: 25%; }
  .block-tab-1-3 > .column { flex: 0 0 33.33333%; max-width: 33.33333%; }
  .block-tab-1-2 > .column { flex: 0 0 50%; max-width: 50%; }
  .block-tab-full > .column { flex: 0 0 100%; max-width: 100%; }

  .hide-on-tablet {
    display: none;
  }
}

/* mobile devices */
@media screen and (max-width: 600px) {
  .row {
    width: 100%;
    padding-left: 25px;
    padding-right: 25px;
  }

  .row .row {
    margin-left: -10px;
    margin-right: -10px;
    padding-left: 0;
    padding-right: 0;
  }

  .column {
    padding: 0 10px;
  }

  .mob-6,
  .mob-half { flex: 0 0 50%; max-width: 50%; }
  .mob-12,
  .mob-full { flex: 0 0 100%; max-width: 100%; }

  .block-mob-1-2 > .column { flex: 0 0 50%; max-width: 50%; }
  .block-mob-full > .column { flex: 0 0 100%; max-width: 100%; }

  .hide-on-mobile {
    display: none;
  }
}

/* small mobile devices <= 400px */
@media screen and (max-width: 400px) {
  .row {
    padding-left: 22px;
    padding-right: 22px;
  }

  .row .row {
    margin-left: 0;
    margin-right: 0;
  }

  .column {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
  }
}


/* ===================================================================
 * # helpers
 * ------------------------------------------------------------------- */
.is-hidden {
  display: none;
}

.is-invisible {
  visibility: hidden;
}

.h-full-width {
  width: 100%;
}

.h-text-center {
  text-align: center;
}

.h-text-left {
  text-align: left;
}

.h-text-right {
  text-align: right;
}

.h-add-bottom {
  margin-bottom: 3.2rem !important;
}

.h-remove-bottom {
  margin-bottom: 0;
}


/* ===================================================================
 * # typography
 * ------------------------------------------------------------------- */
html {
  font-size: 10px;
}

@media screen and (max-width: 400px) {
  html {
    font-size: 9.5px;
  }
}

html,
body {
  height: 100%;
}

body {
  background: #ffffff;
  font-family: var(--font-sans);
  font-size: 1.8rem;
  font-style: normal;
  line-height: 1.778;
  color: var(--color-text);
  position: relative;
}

a {
  color: var(--color-accent);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

a:hover,
a:focus,
a:active {
  color: var(--color-link-hover);
}

a:hover,
a:active {
  outline: 0;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-style: normal;
  color: var(--color-text);
  font-variant-ligatures: common-ligatures;
  text-rendering: optimizeLegibility;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4 {
  margin-top: 6rem;
  margin-bottom: 1.6rem;
}

h5, .h5,
h6, .h6 {
  margin-top: 4.8rem;
  margin-bottom: 1.2rem;
}

h1, .h1 {
  font-size: 3.6rem;
  line-height: 1.222;
}

h2, .h2 {
  font-size: 3.2rem;
  line-height: 1.25;
}

h3, .h3 {
  font-size: 2.4rem;
  line-height: 1.167;
}

h4, .h4 {
  font-size: 2.1rem;
  line-height: 1.333;
}

h5, .h5 {
  font-size: 1.8rem;
  line-height: 1.333;
}

h6, .h6 {
  font-size: 1.6rem;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: .3rem;
}

@media screen and (max-width: 600px) {
  h1, .h1,
  h2, .h2,
  h3, .h3,
  h4, .h4 {
    margin-top: 5.6rem;
  }

  h1, .h1 {
    font-size: 3.3rem;
  }

  h5, .h5,
  h6, .h6 {
    margin-top: 4.4rem;
    margin-bottom: 0.8rem;
  }
}

p img {
  margin: 0;
}

p.lead {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.846;
  margin-bottom: 3.6rem;
  color: var(--color-text);
}

em,
i,
strong,
b {
  font-size: inherit;
  line-height: inherit;
  font-family: var(--font-sans);
}

small {
  font-size: 1.2rem;
  line-height: inherit;
}

hr {
  border: solid var(--color-border);
  border-width: 1px 0 0;
  clear: both;
  margin: 8rem 0 9.6rem;
  height: 0;
}

/* lists */
ol {
  list-style: decimal;
}

ul {
  list-style: disc;
}

li {
  display: list-item;
}

ol,
ul {
  margin-left: 1.6rem;
}

ul li {
  padding-left: .4rem;
}

ul ul,
ul ol,
ol ol,
ol ul {
  margin: .8rem 0 .8rem 1.6rem;
}

ul.disc li {
  display: list-item;
  list-style: none;
  padding: 0 0 0 .8rem;
  position: relative;
}

ul.disc li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  position: absolute;
  left: -16px;
  top: 11px;
  vertical-align: middle;
}

/* spacing */
button,
.btn {
  margin-bottom: 1.6rem;
}

input,
textarea,
select,
pre,
blockquote,
figure,
table,
p,
ul,
ol,
dl,
form {
  margin-bottom: 3.2rem;
}


/* ===================================================================
 * # buttons
 * ------------------------------------------------------------------- */
.btn,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: .6rem;
  height: 6rem;
  line-height: 5.6rem;
  padding: 0 3.2rem;
  margin: 0 .4rem 1.6rem 0;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  transition: all .3s ease-in-out;
  border-radius: 4px;
  background-color: #272727;
  border: 0.2rem solid #272727;
}

.btn:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.btn:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
  outline: 0;
}

.btn--small,
button.btn--small {
  height: 5.6rem !important;
  line-height: 5.2rem !important;
}

.btn--stroke,
button.btn--stroke {
  background: transparent !important;
  border: 0.2rem solid #000000;
  color: #000000;
}

.btn--stroke:hover,
button.btn--stroke:hover {
  background: #000000 !important;
  border: 0.2rem solid #000000;
  color: #ffffff;
}


/* ===================================================================
 * # preloader
 * ------------------------------------------------------------------- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #1d1d1d;
  z-index: 500;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  transition: opacity .8s ease;
}

#preloader.fade-out {
  opacity: 0;
}

.no-js #preloader {
  display: none;
}

#loader {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 6px;
  padding: 0;
  display: inline-block;
  transform: translate3d(-50%, -50%, 0);
}

#loader > div {
  content: "";
  background: #ffffff;
  width: 6px;
  height: 6px;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
}

#loader > div:nth-of-type(1) {
  left: 15px;
}

#loader > div:nth-of-type(3) {
  left: -15px;
}

.dots-fade > div {
  animation: dots-fade 1.6s infinite ease;
  animation-delay: 0.4s;
}

.dots-fade > div:nth-of-type(1) {
  animation-delay: 0.8s;
}

.dots-fade > div:nth-of-type(3) {
  animation-delay: 0s;
}

@keyframes dots-fade {
  0% { opacity: 1; }
  40% { opacity: 0.2; }
  80% { opacity: 1; }
}


/* ===================================================================
 * # site header
 * ------------------------------------------------------------------- */
.s-header {
  z-index: 100;
  width: 100%;
  height: 8rem;
  position: fixed;
  top: 0;
  left: 0;
  background: transparent;
  pointer-events: none;
}

.s-header a,
.s-header img {
  pointer-events: auto;
}

.header-logo {
  z-index: 101;
  display: inline-block;
  margin: 0;
  padding: 0;
  transition: all .3s;
  transform: translate3d(0, -50%, 0);
  position: absolute;
  left: 8rem;
  top: 50%;
}

.header-logo a {
  display: block;
  padding: 0;
  outline: 0;
  border: none;
}

.header-logo img {
  max-width: 350px;
  height: auto;
  width: 100%;
  transition: all 0.5s ease;
  /* dark halo so the white logo stays visible over white sections */
  filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 6px rgba(0, 0, 0, 0.35));
}

.header-logo:hover img {
  filter: brightness(1.15) drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
  transform: scale(1.03);
}

/* ESPA co-funding emblem (EU Reg. 2021/1060 Annex IX — visible without
 * scrolling). White backing box keeps it legible over dark slides. */
.header-espa {
  z-index: 101;
  transform: translate3d(0, -50%, 0);
  position: absolute;
  top: 50%;
  right: 8rem;
  background: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 3px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.header-espa img {
  display: block;
  height: 4.6rem;
  width: auto;
  max-width: min(46vw, 42rem);
  object-fit: contain;
}

/* responsive: header */
@media screen and (max-width: 1100px) {
  .header-logo {
    left: 4rem;
  }

  .header-espa {
    right: 4rem;
  }
}

@media screen and (max-width: 800px) {
  .header-logo img {
    width: 30rem;
  }

  .header-espa img {
    height: 4rem;
  }
}

@media screen and (max-width: 640px) {
  .header-logo img {
    width: 24rem;
  }

  .header-espa {
    right: 3rem;
  }

  .header-espa img {
    height: 3.4rem;
  }
}

@media screen and (max-width: 500px) {
  .header-logo {
    left: 2.4rem;
  }

  .header-logo img {
    width: 16rem;
  }

  .header-espa {
    right: 2.4rem;
  }

  .header-espa img {
    height: 3rem;
  }
}

@media screen and (max-width: 400px) {
  .header-logo img {
    width: 12rem;
  }

  .header-espa {
    right: 2rem;
    padding: 0.4rem 0.8rem;
  }

  .header-espa img {
    height: 2.6rem;
    max-width: 52vw;
  }
}


/* ===================================================================
 * # language toggle (EL/EN)
 *   Fixed pill; the label shows the language you switch TO.
 * ------------------------------------------------------------------- */
.lang-toggle {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 400;
  width: 4.4rem;
  height: 4.4rem;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(0, 0, 0, 0.45);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.lang-toggle:hover {
  background: rgba(0, 0, 0, 0.8);
  border-color: #ffffff;
}

.lang-toggle:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}


/* ===================================================================
 * # intro
 * ------------------------------------------------------------------- */
.s-intro {
  width: 100%;
  height: 100vh;
  height: 100dvh;       /* stable on mobile browsers with dynamic UI chrome */
  min-height: 56rem;
  background-color: #000000;
  overflow: hidden;
  position: relative;
}

/* slider — plain crossfade, no library */
.intro-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.intro-slider-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  opacity: 0;
  z-index: 0;
  transition: opacity 1.2s ease;
}

/* outgoing slide stays visible underneath while the next fades in */
.intro-slider-img.is-prev {
  opacity: 1;
  z-index: 1;
  transition: none;
}

.intro-slider-img.active {
  opacity: 1;
  z-index: 2;
}

/* dots */
.slider-dots {
  position: absolute;
  bottom: 2.4rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 10;
}

.slider-dots li {
  display: block;
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dots li.active {
  background-color: #ffffff;
  transform: scale(1.2);
}

@media screen and (max-width: 800px) {
  .slider-dots {
    display: none;
  }
}

/* intro content */
.intro-content {
  z-index: 5;
  height: 100%;
  padding-top: 20vh;
  padding-bottom: 24rem;
  align-items: center;
  position: relative;
  text-shadow: var(--text-shadow-strong);
}

.intro-content__text .intro-kicker {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 3.4rem;
  line-height: 2rem;
  text-transform: uppercase;
  letter-spacing: .3em;
  color: #ffffff;
  padding-left: .6rem;
  margin-top: 0;
  margin-bottom: .8rem;
  position: relative;
}

.intro-content__text .intro-kicker::before {
  content: "";
  display: block;
  width: 7.2rem;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.15);
  position: absolute;
  top: 1rem;
  right: calc(100% + 2.8rem);
}

.intro-content__text h1 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(3.6rem, 2rem + 3.2vw, 8rem);
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: normal;
  margin-top: 0;
  margin-bottom: .8rem;
}

/* intro content bottom */
.intro-content__bottom {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-end;
  position: absolute;
  left: 20px;
  bottom: 9.6rem;
}

/* counter */
.intro-content__counter-wrap {
  margin-right: 1rem;
}

.intro-content__counter-wrap .counter-title {
  margin-top: 0;
  margin-bottom: 2.8rem;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(2.4rem, 1.6rem + 1vw, 3.6rem);
  line-height: 1.25;
  color: #ffffff;
}

.counter {
  display: flex;
  flex-flow: row wrap;
  font-weight: 600;
  font-size: 3.2rem;
  line-height: 1;
  color: #ffffff;
  margin-bottom: 0;
}

.counter__time {
  margin-top: 1.2rem;
  margin-right: 6px;
}

.counter span {
  font-weight: 400;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.4);
  position: relative;
  left: -2px;
}

/* notify button */
.intro-content__notify button {
  z-index: 2;
  font-size: 1rem;
  margin: 0;
  height: 5.6rem !important;
  line-height: 5.4rem !important;
  border: 1px solid #ffffff !important;
  color: #ffffff;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.intro-content__notify button svg {
  fill: #ffffff;
  height: 1rem;
  width: 1rem;
  margin-left: .4rem;
}

.intro-content__notify button::before {
  z-index: -1;
  content: "";
  height: 100%;
  width: 0;
  background-color: #ffffff;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: absolute;
  top: 0;
  left: 0;
}

.intro-content__notify button:hover {
  color: #000000;
}

.intro-content__notify button:hover svg {
  fill: #000000;
}

.intro-content__notify button:hover::before {
  width: 100%;
}

/* intro social */
.intro-social {
  z-index: 6;
  list-style: none;
  font-size: 23px;
  line-height: 1.6rem;
  margin: 0;
  padding-bottom: 9.6rem;
  width: auto;
  text-align: center;
  position: absolute;
  right: 8rem;
  bottom: 0;
}

.intro-social a {
  color: rgba(255, 255, 255, 0.6);
}

.intro-social a:hover,
.intro-social a:focus,
.intro-social a:active {
  color: #ffffff;
}

.intro-social li {
  display: block;
  padding-left: 0;
  margin-bottom: 1.6rem;
}

.intro-social li:last-child {
  margin-bottom: 0;
}

.intro-social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.intro-social::before {
  content: '';
  display: block;
  width: 1px;
  height: 7.8rem;
  background-color: rgba(255, 255, 255, 0.4);
  position: absolute;
  left: 50%;
  bottom: 0;
}

/* animate intro content */
html.ss-preload .intro-content__text,
html.ss-preload .intro-content__bottom {
  opacity: 0;
}

html.ss-loaded .intro-content__text {
  animation-name: fadeInLeft;
  animation-duration: 3s;
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  animation-fill-mode: both;
}

html.ss-loaded .intro-content__bottom {
  animation-name: fadeIn;
  animation-duration: 3s;
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  animation-delay: 1.5s;
  animation-fill-mode: both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }
}

/* responsive: intro */
@media screen and (max-width: 1700px) {
  .intro-content {
    max-width: 1200px;
  }
}

@media screen and (max-width: 1600px) {
  .intro-content {
    max-width: 1080px;
  }
}

@media screen and (max-width: 1400px) {
  .intro-content {
    max-width: 900px;
  }
}

@media screen and (max-width: 1200px) {
  .intro-content {
    max-width: 800px;
  }

  .intro-content__bottom {
    left: 16px;
  }
}

@media screen and (max-width: 1100px) {
  .intro-content__text .intro-kicker::before {
    width: 4rem;
  }

  .intro-social {
    right: 4rem;
  }
}

@media screen and (max-width: 1024px) {
  .intro-content {
    max-width: 600px;
  }
}

@media screen and (max-width: 800px) {
  .intro-content {
    max-width: 70vw;
    padding-top: 16rem;
  }

  .intro-content__text .intro-kicker::before {
    display: none;
  }

  .intro-content__text br {
    display: none;
  }

  .intro-content__notify {
    margin-top: 3.6rem;
  }
}

@media screen and (max-width: 700px) {
  .counter {
    font-size: 2.8rem;
  }

  .counter span {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 600px) {
  .intro-content {
    max-width: 80vw;
    padding-bottom: 12rem;
  }

  .intro-content__text .intro-kicker {
    font-size: 1.2rem;
  }

  .intro-content__bottom {
    left: 10px;
    display: block;
    position: static;
    margin-top: 9.6rem;
  }

  .intro-content__counter-wrap {
    margin-right: 0;
  }
}

@media screen and (max-width: 500px) {
  .intro-content {
    max-width: 90vw;
  }

  .intro-content__bottom {
    margin-right: 5rem;
  }

  .intro-social {
    right: 3rem;
  }
}

/* short landscape screens (e.g. phones rotated) — keep hero content
 * reachable instead of overflowing behind the fold */
@media screen and (max-height: 500px) and (orientation: landscape) {
  .intro-content {
    padding-top: 12rem;
    padding-bottom: 4rem;
  }

  .intro-content__bottom {
    bottom: 1.2rem;
  }

  .intro-social {
    display: none;
  }
}


/* ===================================================================
 * # info section
 * ------------------------------------------------------------------- */
.s-info {
  padding-top: 4.5rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
  position: relative;
}

.s-info .vert-line {
  width: 1.5rem;
  height: 20rem;
  position: absolute;
  top: 0;
  right: 8.4rem;
}

.s-info .vert-line::before {
  content: "";
  display: block;
  height: inherit;
  width: 1px;
  background-color: var(--color-accent);
  position: absolute;
  left: 50%;
  top: 0;
}

.s-info::before {
  display: block;
  content: "";
  width: 55%;
  height: 65%;
  background-color: #ffffff;
  opacity: .5;
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  background-image: url(../images/bg-info.jpg);
  position: absolute;
  right: 0;
  bottom: 0;
}

.s-info .tab-title,
.s-info h4 {
  margin-top: 0;
}

.s-info .tab-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 3.6rem;
  line-height: 1.222;
  padding-bottom: 3.6rem;
  margin-bottom: 3.6rem;
  position: relative;
}

.s-info .tab-title::after {
  display: block;
  content: "";
  width: 8rem;
  height: 1px;
  background-color: var(--color-accent);
  position: absolute;
  left: 0;
  bottom: 0;
}

.s-info footer {
  margin-top: 9.6rem;
}

/* tabs navigation */
.tab-nav {
  margin-bottom: 10px;
}

.tab-nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  font-size: 1.6rem;
  line-height: 6.8rem;
  position: relative;
}

.tab-nav__list li {
  flex-shrink: 0;
  padding: 0;
  border-bottom: 1px solid var(--color-bg-soft);
}

.tab-nav__list a {
  display: block;
  color: rgba(0, 0, 0, 0.5);
  padding: 0 3.2rem;
  position: relative;
}

.tab-nav__list a:hover,
.tab-nav__list a:focus,
.tab-nav__list a:active {
  color: #000000;
}

.tab-nav__list .active a {
  color: #000000;
  background-color: var(--color-bg-soft);
  border-radius: 4px 4px 0 0;
  position: relative;
}

/* layout: tabs nav + "get started" button */
.info-content-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  margin-left: 8vw;
  align-items: start;
}

.tab-nav {
  grid-column: 1;
}

.start-btn {
  grid-column: 3;
  margin-right: 10vw;
}

@media screen and (max-width: 970px) {
  .info-content-row {
    display: flex;
    flex-direction: column-reverse;
    margin-left: clamp(2rem, 8vw, 10rem);
    width: auto;
  }

  .start-btn {
    margin-right: 0;
  }
}

/* tab content */
.tab-content {
  margin-top: 6.4rem;
  padding-right: 25vw;
  position: relative;
}

.tab-content__item {
  display: none;
}

.tab-content__item.active {
  display: block;
  animation: tabFadeIn 0.9s ease;
}

@keyframes tabFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* services listing */
.services-list {
  margin-top: 4rem;
  counter-reset: ctr;
  position: relative;
}

.services-list__item {
  margin-bottom: 2.4rem;
}

.services-list__item-content::before {
  display: block;
  content: counter(ctr, decimal-leading-zero) ".";
  counter-increment: ctr;
  margin-bottom: 2rem;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 1;
  color: var(--color-accent);
}

/* link list */
.link-list {
  list-style: none;
  margin-left: 0;
}

.link-list li {
  padding-left: 0;
}

.link-list a {
  color: #000000;
}

.link-list a:hover,
.link-list a:focus,
.link-list a:active {
  color: var(--color-accent);
}

/* tab contact bottom */
.contact-email {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: clamp(3rem, 1rem + 3.5vw, 6rem);
  font-weight: 700;
  line-height: 1;
  margin: 5.6rem 0 .8rem;
  color: var(--color-accent);
  border-bottom: 1px solid var(--color-bg-soft);
  overflow-wrap: anywhere;
}

.contact-email:hover,
.contact-email:focus {
  color: var(--color-accent);
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}

.contact-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.8;
}

.contact-number a {
  color: #000000;
}

.contact-number a:hover,
.contact-number a:focus {
  color: var(--color-accent);
}

/* copyright */
.ss-copyright {
  z-index: 2;
  position: relative;
  margin-left: 5rem;
}

.ss-copyright span {
  font-size: 1.5rem;
  display: inline-block;
}

.ss-copyright span::after {
  content: "|";
  display: inline-block;
  padding: 0 .8rem 0 1rem;
  color: rgba(0, 0, 0, 0.3);
}

.ss-copyright span:last-child::after {
  display: none;
}

/* go top */
.ss-go-top {
  z-index: 2;
  position: absolute;
  bottom: 7.2rem;
  right: 6.4rem;
}

.ss-go-top a {
  text-decoration: none;
  border: 0 none;
  display: block;
  height: 5.6rem;
  width: 5.6rem;
  line-height: 5.6rem;
  text-align: center;
  background: black;
  color: black;
  border-radius: 50%;
  transition: all .3s;
  position: relative;
}

.ss-go-top a:hover {
  background-color: #254965;
  color: #ffffff;
}

.ss-go-top svg {
  height: 1.2rem;
  width: 1.2rem;
  fill: #ffffff;
  transform: translate3d(-50%, -50%, 0);
  position: absolute;
  top: 50%;
  left: 50%;
}

/* responsive: info */
@media screen and (max-width: 1200px) {
  .tab-content {
    padding-right: 15vw;
  }
}

@media screen and (max-width: 1100px) {
  .s-info .vert-line {
    right: 4.4rem;
  }
}

@media screen and (max-width: 1000px) {
  .tab-content {
    padding-right: 40px;
  }
}

@media screen and (max-width: 800px) {
  .tab-content {
    padding-right: 0;
  }

  .services-list__item-content {
    padding-right: 60px;
  }

  .ss-copyright span {
    display: block;
  }

  .ss-copyright span::after {
    display: none;
  }

  .ss-go-top {
    right: 4rem;
  }
}

@media screen and (max-width: 600px) {
  .s-info {
    padding-top: 5rem;
  }

  .tab-nav__list {
    font-size: 1.5rem;
    line-height: 5.6rem;
  }

  .tab-nav__list a {
    padding: 0 2.2rem;
  }

  .services-list__item-content {
    padding-right: 0;
  }
}

@media screen and (max-width: 500px) {
  .s-info .vert-line {
    display: none;
  }

  .ss-go-top {
    bottom: 8rem;
  }

  .ss-go-top a {
    height: 4.8rem;
    width: 4.8rem;
    line-height: 4.8rem;
  }
}

@media screen and (max-width: 400px) {
  .s-info footer {
    text-align: center;
    position: relative;
    margin-top: 4.8rem;
    padding-top: 6.4rem;
  }

  .ss-copyright {
    margin-left: 0;
  }

  .ss-go-top {
    right: 50%;
    top: 0;
    bottom: auto;
    transform: translate3d(50%, 0, 0);
  }
}


/* ===================================================================
 * # slide legends
 * ------------------------------------------------------------------- */
.slide-legend {
  position: absolute;
  bottom: 20%;
  right: 12rem;
  background: transparent;
  border: none;
  padding: 20px 28px;
  color: white;
  text-align: right;
  opacity: 0;
  transform: translateX(30px);
  transition: all 1.2s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 50;
}

.intro-slider-img.active .slide-legend {
  opacity: 1;
  transform: translateX(0);
}

.slide-legend__title {
  margin: 0 0 8px 0;
  font-family: var(--font-legend);
  font-size: 22px;
  font-weight: 600;
  color: white;
  letter-spacing: -0.01em;
  line-height: 1.2;
  text-shadow: var(--text-shadow-strong);
}

.slide-legend__sub {
  margin: 0;
  font-family: var(--font-legend);
  font-size: 16px;
  font-weight: 400;
  color: white;
  line-height: 1.4;
  letter-spacing: 0.01em;
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.8),
    0 2px 6px rgba(0, 0, 0, 0.4);
}

/* responsive: legends */
@media screen and (max-width: 1800px) {
  .slide-legend {
    right: 10rem;
  }
}

@media screen and (max-width: 1600px) {
  .slide-legend {
    right: 8rem;
  }
}

@media screen and (max-width: 1200px) {
  .slide-legend {
    right: 6rem;
    bottom: 18%;
    padding: 18px 24px;
  }

  .slide-legend__title {
    font-size: 20px;
  }

  .slide-legend__sub {
    font-size: 14px;
  }
}

@media screen and (max-width: 1100px) {
  .slide-legend {
    right: 4rem;
  }
}

@media screen and (max-width: 800px) {
  .slide-legend {
    right: 3rem;
  }

  .intro-slider-img.active .slide-legend {
    transform: translateY(0);
  }

  .slide-legend__title {
    font-size: 18px;
  }

  .slide-legend__sub {
    font-size: 13px;
  }
}

@media screen and (max-width: 600px) {
  .slide-legend {
    bottom: 10%;
    left: 1.5rem;
    right: auto;
    text-align: left;
    padding: 16px 20px;
    transform: translateY(30px);
  }

  .slide-legend__title {
    font-size: 16px;
    margin-bottom: 6px;
    max-width: 240px;
    overflow-wrap: break-word;
  }

  .slide-legend__sub {
    font-size: 12px;
    line-height: 1.3;
    max-width: 32ch;
    overflow-wrap: break-word;
  }
}

@media screen and (max-width: 400px) {
  .slide-legend {
    bottom: 10%;
    left: 1.5rem;
    right: 1.5rem;
    padding: 10px 14px;
  }

  .slide-legend__title {
    font-size: 15px;
  }

  .slide-legend__sub {
    font-size: 11px;
  }
}
