:root {
  --primary-clr: white;
  --secondary-clr: #282828;
  --accent-clr: #4169e1;
  --link-clr: #e18b41;
}

::selection {
  background: rgba(225, 140, 65, 0.2);
  color: inherit;
  text-shadow: 0 1px 2px rgba(0,0,0,0.8);  /* stín pro kontrast */
}

::-moz-selection {
  background: rgba(225, 140, 65, 0.2);
  color: inherit;
  text-shadow: 0 1px 2px rgba(0,0,0,0.8);
}

@import url('https://fonts.googleapis.com/css2?family=Baskervville:ital@1&family=Castoro+Titling&family=Libre+Baskerville&display=swap');

* {
  -webkit-font-smoothing: antialiased;
  font-smooth: always;
}

html {
  scroll-behavior: smooth;
}

@font-face {
  font-family: 'Avenir';
  src: url('/fonts/Avenir-Light.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: fallback;
}

p {
  text-wrap: pretty 
}


.baskervville {
  font-family: "Baskervville", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: italic;
}

.castoro-titling-regular {
  font-family: "Castoro Titling", serif;
  font-weight: 400;
  font-style: normal;
}

.libre-baskerville-regular {
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-style: normal;
}

html,
body {
  height: 100%;
}

body {
  max-width: 1728px;
  background: transparent;
  color: var(--secondary-clr);
  font-family: 'Avenir';
  font-size: 16px;
  line-height: 1.5rem;
  margin: auto;
}

/* Zákaz scrollování, když je overlay aktivní */
body.no-scroll {
    overflow: hidden;
}

header {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  z-index: 10;
  padding-top: 80px;
  background-color: transparent;
}

h1,
h2 {
  grid-column: 1 / 5;
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  line-height: clamp(2.7rem, 3.5vw, 4.2rem);
  margin-bottom: 1rem;
}

h1 {
  grid-row: 2 / 3;
  font-size: clamp(2.5rem, 4vw, 4.69rem);
  line-height: clamp(2.7rem, 3.5vw, 4.2rem);
  width: 96%;
  margin: auto;
  margin-top: 70px;
  text-align: center;
  z-index: 100;
}

.hero-dot {
  font-size: clamp(3rem, 5vw, 5rem);
}

.direct {
  font-family: "Baskervville", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: italic;
}

.h1-perex {
  grid-column: 1 / 5;
  grid-row: 3 / 4;
  width: content;
  margin: auto;
  font-family: "Castoro Titling", serif;
  font-weight: 400;
  font-size: 1.15rem;
  font-style: normal;
  text-transform: uppercase;
  color: rgba(0, 0, 0, .6);
  text-align: center;
  margin-bottom: 3.5rem;
  z-index: 100;
}


h3 {
  font-family: 'Avenir';
  font-size: clamp(1.25rem, 1.5vw, 1.5rem);
  font-weight: bold;
}

h4 {
  font-family: "Castoro Titling", serif;
  font-size: 1.4rem;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  margin: 32px 0 0 0;
}

h5 {
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(1.8rem, 1.8vw, 2rem);
  line-height: 1.5rem;
  margin: 0;
  padding: 16px 0;
}

a {
  text-decoration: underline;
  color: var(--link-clr);
}

a:hover {
  text-decoration: none;
}

.upper {
  text-transform: uppercase;
  font-weight: bold;
}

.important {
  font-weight: bold;
  font-size: 1.25rem;
}

.blue {
  display: inline-block;
  font-family: 'Avenir';
  font-weight: bold;
  background-color: rgba(65, 105, 225, 0.8);
  color: var(--primary-clr);
  padding: 4px 14px;
  border-radius: 4px;
  font-size: 2rem;
  line-height: 2.8rem;
  text-transform: uppercase;
  margin-bottom: -16px;
}

main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background-color: white;
  padding-left: 4%;
  padding-right: 4%;
  background-color: #FDFCF8;
  position: relative;
  z-index: 10;
  border-bottom: 1px solid #f4f2ec;
}

section {
  padding: 60px 0;
}

.main_index {
  background-color: white;
  border-bottom: navajowhite;
}


.btn_reservation {
  grid-column: 1 / 5;
  grid-row: 4 / 5;
  justify-self: center;
  width: 280px;
  background-image: radial-gradient(circle at center, #4169E1 0%, #2B49A6 55%, #2B49A6 100%);
  background-size: 300% 300%; 
  color: white;
  font-size: 1.125rem;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  animation: randomMove 20s infinite alternate ease-in-out;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  z-index: 400;
}

.btn_reservation a {
  display: block;
  padding: 0;
  color: white;
  text-decoration: none;
  text-align: left;
  position: relative;
  z-index: 2;
}

@keyframes randomMove {
  0% {
    background-position: 0% 0%;
  }
  25% {
    background-position: 100% 30%;
  }
  50% {
    background-position: 20% 100%;
  }
  75% {
    background-position: 80% 40%;
  }
  100% {
    background-position: 0% 0%;
  }
}

@media (hover: hover) {
  .btn_reservation:hover {
    background-image: linear-gradient(-15deg, var(--accent-clr), var(--accent-clr));
    box-shadow: rgb(9, 33, 105) 0px 12px 70px 4px;
    transform: translateY(-8px) scale(1.06) rotate(-1deg);
  }

  /* Animace textu pod tlačítkem jen na desktopu */
  .btn_reservation:hover ~ .available {
    animation: fadeSlideOut 1s ease forwards;
  }

  .btn_reservation:hover .btn-arrow {
    transform: translateX(24px);
  }
}

.btn_reservation a {
  color: white !important;
  text-decoration: none;
}

.btn-content {
  display: block;
  padding: 24px 65px
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  position: relative;
  transition: transform 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.btn-arrow img {
  padding-bottom: 3px;
  padding-left: 16px;
}

.available {
  grid-column: 1 / 5;
  grid-row: 5 / 6;
  margin-top: 1rem;
  font-size: 1rem;
  text-align: center;
  z-index: 1;
  opacity: 0;
  animation: fadeSlideIn 1s ease forwards;
  animation-delay: 1.5s;
}

.available svg {
  padding-right: 10px;
}

.header_hero-perex {
  grid-column: 1 / 5;
  grid-row: 6 / 7;
  padding-top: 64px;
  padding-bottom: 64px;
  padding-left: 8%;
  padding-right: 8%;
  max-width: 540px;
  text-align: center;
  font-size: 1.15rem;
  line-height: 1.5rem;
  margin: auto;
  z-index: 1;
}

.offer-summary p {
  font-family: "Castoro Titling", serif;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
}

#icon-social_site {
  width: 56px;
  padding-top: 24px;
}


.available-line {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  width: 100%;
  height: 16px;
}

.available-line_scope {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  width: 100%;
  height: 16px;
  background-color: #F3F3F3;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
}

.available-line_actual {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  height: 16px;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
}

.offer-available .description {
  font-size: 1.1rem;
}

.info-time {
  padding-top: 24px;
}

.charity {
  display: flex;
  flex-direction: row;
  padding-top: 40px;
}

#charityPercent {
  align-self: stretch;
  font-size: 2.6rem;
  font-weight: bold;
  padding: 12px 0 8px 16px;
  margin-right: 16px;
  color: var(--accent-clr);
}

.charity p {
  margin: 0;
  padding: 0;
}


/* ------------------ */
/* end "about me" section index */


/* start main section index */
/* ------------------ */
.our-project,
.individual-approach,
.deadline,
.offer,
.reference,
.lets-create,
.fast-menu,
.below-the-line {
  grid-column: 1 / 5;
  z-index: 2;
  background-color: white;
}

.deadline {
  z-index: 1;
}

.our-project,
.individual-approach {
  text-align: center;
  background-color: white;
}

.our-project {
  padding-top: 24px;
  border-top: 2px solid var(--accent-clr);
  margin-top: 60px;
}

.individual-approach {
  padding-top: 64px;
  border-bottom: 1px solid rgba(0, 0, 0, .05);
  gap: 40px
}

.content-left p:first-child,
.content-right p:first-child {
  font-size: 1.25rem;
  text-transform: uppercase;
  color: rgba(0, 0, 0, .9);
}

.content-left, .content-right, .ux-details, #corporate {
  padding: 40px 24px;
  background-color: rgba(239, 239, 239, 0.2);
  margin-bottom: 0;
  border: 1px solid rgb(232, 235, 235);
  border-radius: 12px;
}

.content-left {
  margin-bottom: 24px;
}

/* start "about me" section index */
/* ------------------ */
.ux-content {
  padding-bottom: 40px;
}

.ux-details {
  background-color: white;
  margin-bottom: 160px;
}

.ux-header {
  font-size: 1.125rem;
  padding: 16px 32px;
  margin: 32px 16px;
  background-color: rgb(248, 248, 248);
  border: 2px solid var(--secondary-clr);
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
}

.ux-header strong {
  text-transform: uppercase;
}

.important-block {
  grid-column: 1 / 13;
  width: 100%;
  margin-top: 40px;
  margin-bottom: 100px;
  text-align: left;
}

.content-right {
  margin-top: 24px;
}

.important-block h2 {
  color: rgba(0, 0, 0, .9);
  margin-top: 0;
  padding-bottom: 32px;
  width: 100%;
  text-align: left !important;
}

.how-content {
  grid-column: 1 / 13;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-column: 3 / 7;
  grid-row: 1 / 2;
  z-index: 1;
}


#corporate {
  grid-column: 1 / 13;
  grid-row: 2 / 3;
  margin: 0;
  height: max-content;
}


.how-content p {
  font-size: 1.15rem;
}

#start {
  font-family: 'Avenir';
  text-transform: uppercase;
  font-weight: bold;
  color: white;
  padding-bottom: 20px;
}



.kick-block {
  grid-column: 1 / 13;
  background: linear-gradient(48deg, rgb(156, 179, 128) 0%, rgb(191, 205, 169) 100%);
  padding: 24px 24px 80px 24px;
  border-radius: 16px;
  margin-bottom: 32px;
}

.how-content h4 {
  color: white;
  text-transform: none;
  padding-bottom: 40px;

}

.direct-kickoff {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: max-content;
  padding: 8px;           
  background-color: rgb(241, 243, 244);
  color: rgb(32, 32, 32);
  font-size: 1rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.direct-kickoff a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  gap: inherit;
  padding-left: 12px;
}

@media (hover: hover) {
  .direct-kickoff:hover {
    background-color: rgb(224, 231, 238);
    transform: translateY(2px) scale(0.99);
  }

  .direct-kickoff:hover img {
    transform: translateY(1px);
  }

  .download-wrapper:hover .download-hover-box {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    animation: bounceIn 0.45s ease;
  }
}

/* bounce animation */
@keyframes bounceIn {
    0% {
        transform: translateY(-12px) scale(0.95);
    }
    60% {
        transform: translateY(4px) scale(1.02);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}


.direct-kickoff:active {
    transform: scale(0.98);
}

.direct-kickoff img {
  width: 16px;
  height: 16px;
  background-color: var(--secondary-clr);
  padding: 8px;
  margin-left: 8px;
  border-radius: 999px;
  box-shadow: rgba(100, 100, 111, 0.3) 0px 7px 29px 0px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}



.download-wrapper {
    position: relative;
    display: inline-block;
    height: 72px;
}

  .download-hover-box {
    display: none;
    position: absolute;
    top: calc(100% - 2px);
    left: 0;
    width: 400px;
    padding: 16px 24px;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    background: #ccfbdf;
    color: var(--secondary-clr);
    opacity: 0;
    transform: translateY(-10px) scale(0.95);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

/* start "offer" section index */
/* ------------------ */
.offer {
  display: flex;
  flex-direction: column;
  gap: 40px;
  background-image: linear-gradient(-15deg, #F7F1E7, #F3F4F1);
  margin-left: -4%;
  margin-right: -4%;
  padding-left: 4%;
  padding-right: 4%;
  padding-top: 88px;
  padding-bottom: 88px;
}

.offer article {
  background-color: white;
  padding: 40px 24px;
}

.implementation-period, .implementation-period-info, .lessons-price {
  position: relative;
  display: inline-block;
  top: -4px;
  font-size: .75rem;
  font-weight: 400 !important;
  padding: 2px 10px 0cqh 10px;
  background: rgba(216, 205, 197, 0.3);
  border: 1px solid rgba(216, 205, 197, 0.4);
  border-radius: 10px;
  margin-left: 16px;
}

.implementation-period-info {
  margin-left: 0 !important;
}

.price-block {
  font-family: "Libre Baskerville";
  text-transform: uppercase;
  font-size: 1.125rem;
  padding: 32px 0 32px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price-line {
  height: 2px;
  border-top: 1px solid rgba(0, 0, 0, 0.25);
  width: 50%;
}

.price-perex {
  text-transform: none;
  font-size: 1rem;
  color: rgba(0, 0, 0, .7);

}

.tooltip-content {
    position: absolute;
    bottom: 130%;
    left: 50%;
    transform: translateX(-50%);
    width: 260px;
    background-color: #222; 
    color: #eee;
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    font-size: .95rem;
    line-height: 1.15rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.tooltip-content b {
    font-weight: 700;
    color: #fff;
}

.tooltip-trigger:hover .tooltip-content {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 768px) {
    .tooltip-content {
        width: 80vw; 
        max-width: 280px;
        font-size: 1rem;
    }

    .tooltip-trigger {
        -webkit-tap-highlight-color: transparent;
        user-select: none;
    }
}


.offer-summary {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 16px 0;
}

.offer-summary_small {
  text-transform: none;
  color: rgba(0, 0, 0, .7);
}

.gratis {
  font-family: 'Avenir';
  color: var(--primary-clr);
  text-transform: none;
  text-align: left;
  width: max-content;
  padding: 16px 32px;
  margin-left: -16px;
  background-image: linear-gradient(45deg, #50A977, #448655);
  border-radius: 0;
  opacity: 0.6;
  transform: scale(0.9);
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
  will-change: opacity, transform;
}

.gratis.fade-in {
  opacity: 1;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  -moz-transition: opacity 0.8s ease-out, -moz-transform 0.8s ease-out;
  -ms-transition: opacity 0.8s ease-out, -ms-transform 0.8s ease-out;
  -o-transition: opacity 0.8s ease-out, -o-transform 0.8s ease-out;
}

.gratis .price-perex {
  color: white;
}

.next-hour {
  padding-left: 16px;
  margin: 0;
}

.half {
  font-size: 2rem;
  display: block;
  font-weight: bold;
  padding: 16px 0 8px 0;
  text-shadow: 3px 1px 8px rgba(0, 0, 0, 0.25);
}

.booking-offer p {
  margin-top: 8px;
}

.booking-offer #giftHourlyRate {
  font-size: 1.25rem;
}

#giftHourlyRate {
  text-transform: uppercase;
  text-shadow: 3px 1px 8px rgba(0, 0, 0, 0.25);
}

#available-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

#available-box .available {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

#available-box .available {
  text-align: left;
}

.available-content .percent {
  font-family: "Castoro Titling", serif;
  font-size: 1.125rem;
  font-weight: bold;
}

.available-line {
  grid-row: 2 / 3;
}

.available-content .percent-content {
  font-size: 1.125rem;
  padding-right: 8px;
}

.offer-summary img {
  width: 24px;
  height: 24px;
  padding-right: 16px;
}

.offer-summary p {
  margin: 0;
  padding-top: 8px;
  text-align: left;
}

.start-today {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 17px;
  margin-top: 40px !important;
  margin-left: 0;
  width: 100%;
  color: white;
  background-image: linear-gradient(95deg, var(--accent-clr), #00238A);
  border: 2px solid var(--accent-clr);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  cursor: pointer;
}

@media (hover: hover) {
  .start-today:hover {
    border: 2px solid rgba(0, 0, 0, .55);
    background-color: white;
    background-image: none;
    color: var(--secondary-clr);
  }

  .start-today:hover span {
    transform: translateX(-24px);
  }

  .start-today:hover::after {
    opacity: 1;
    transform: translateX(0);
  }
}

.btn_reservation:active,
.start-today:active {
  transform: scale(0.96);
  transition: transform 0.1s ease;
}

.start-today span {
  display: inline-flex;
  align-items: center;
  padding-left: 20%;
  transition: transform 0.4s ease;
  -webkit-transition: transform 0.4s ease;
  -moz-transition: transform 0.4s ease;
  -ms-transition: transform 0.4s ease;
  -o-transition: transform 0.4s ease;
}

.start-today::after {
  content: "→";
  opacity: 0;
  transform: translateX(16px);
  margin-left: 24px;
  transition: opacity 0.4s ease, transform 0.4s ease;
  -webkit-transition: opacity 0.4s ease, transform 0.4s ease;
  -moz-transition: opacity 0.4s ease, transform 0.4s ease;
  -ms-transition: opacity 0.4s ease, transform 0.4s ease;
  -o-transition: opacity 0.4s ease, transform 0.4s ease;
}


/* end main section index */
/* ------------------ */



/* --- START PARALLAX --- */
.parallax-wrapper {
  grid-column: 1 / 13;
  height: 55vh;
    background: linear-gradient(
        to right,
        #ffffff 0%,
        #dedede20 50%,
        #ffffff 100%
    );
  overflow: hidden;
}

#bookingForm,
#submitDiv,
#formSuccess {
  position: relative;
  z-index: 10;
}

.footer-contacts {
  position: relative;
  background: #4F5461;
  color: white !important;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.offer {
  position: relative;
  min-height: 80vh;
  z-index: 2;
}

.footer-contacts p {
  padding: 0;
  margin: 0
}

.after-inner {
  color: white;
  text-align: right;
  font-size: 1rem;
  padding-right: 16px;
  width: 85%;
  padding-bottom: 160px;
}

#stickyText, #stickyTextTwo {
  grid-column: 1 / 5;
  display: none;
  font-family: "Libre Baskerville";
  position: fixed;
  top: 30vh;
  left: 50%;
  transform: translateX(-50%);
  font-size: 3rem;
  line-height: 3.15rem;
  font-weight: 400;
  color: var(--secondary-clr);
  z-index: 1;
  text-align: left;
  will-change: transform, opacity;
}

#stickyText img {
  width: 40px;
}

/* --- END PARALLAX --- */



/* --- START REFERENCE --- */
.reference {
  display: flex;
  flex-direction: column;
  gap: 64px;
  border-top: 1px solid rgba(0, 0, 0, .05);
}

.reference-perex {
  padding-left: 4%;
  padding-right: 4%;
}

.reference-perex p {
  margin: 0;
}

.reference-block {
  background-color: #FFFEFC;
  border-radius: 40px;
  border: 2px dashed black;
  padding: 24px;
}

.timeout {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}

.timeout img {
  width: 32px;
}

.timeout p {
  border-left: 1px solid rgba(0, 0, 0, .25);
  padding-left: 24px;
}

.reference-content {
  justify-content: flex-start
}

.chips ul {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  list-style: none;
  gap: 8px;
  padding: 0;
}

.chips li {
  width: fit-content;
  padding: 12px 24px;
  background-color: #F7F1E7;
  border-radius: 32px;
}

.reference-detail_link {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding-top: 24px;
  margin-top: 32px;
  border-top: 1px dashed black;
}

.reference-detail_link a {
  font-size: 1.25rem;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: bold;
  color: var(--secondary-clr) !important;
}

.reference-detail_link img {
  width: 43px;
  padding: 0 0 0 16px;
}

.reference-description {
  padding: 32px 0;
}

/* --- END REFERENCE --- */



/* --- START LETS CREATE */
.lets-create {
  display: flex;
  flex-direction: column;
  padding-bottom: 40px;
  padding-left: 8%;
  padding-right: 8%;
}

.lets-create img {
  width: 80% !important;
  padding-top: 32px;
  height: auto;
}

.lets-create a {
  font-family: "Libre Baskerville", serif;
  font-size: 1.563rem;
  text-decoration: none;
  color: var(--secondary-clr) !important;
  font-weight: bold;
}

.mail_lets-create,
.phone_lets-create {
  padding-top: 24px;
}

.btn_lets-create {
  background-color: var(--accent-clr);
  color: white;
  font-weight: bold;
  font-size: 1.125rem;
  height: 64px;
  width: fit-content;
  padding: 0 40px;
  margin-top: 48px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  transition: opacity 0.6s ease, transform 0.6s ease;
  -webkit-transition: opacity 0.6s ease, transform 0.6s ease;
  -moz-transition: opacity 0.6s ease, transform 0.6s ease;
  -ms-transition: opacity 0.6s ease, transform 0.6s ease;
  -o-transition: opacity 0.6s ease, transform 0.6s ease;
  border: none;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
}

@media (hover: hover) {
  .btn_lets-create:hover {
    transform: translateY(-4px);
    box-shadow: var(--accent-clr) 0px 10px 31px -20px, var(--accent-clr) 0px 10px 30px -20px;
  }

  .btn_lets-create:hover::after {
    transform: translateX(24px);
  }

  .fast-menu nav li:hover span {
    transform: translateX(16px);
  }

  .fast-menu nav li:hover::before {
    opacity: 1;
    transform: translateX(24px);
  }
}

.btn_lets-create::after {
  content: "→";
  opacity: 1;
  font-weight: 400;
  padding-right: 16px;
  transform: translateX(16px);
  -webkit-transform: translateX(16px);
  -moz-transform: translateX(16px);
  -ms-transform: translateX(16px);
  -o-transform: translateX(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  -webkit-transition: opacity 0.4s ease, transform 0.4s ease;
  -moz-transition: opacity 0.4s ease, transform 0.4s ease;
  -ms-transition: opacity 0.4s ease, transform 0.4s ease;
  -o-transition: opacity 0.4s ease, transform 0.4s ease;
}






/* --- END LETS CREATE */



/* --- START FOOTER --- */

/* --- start fast menu */
.fast-menu {
  display: flex;
  flex-direction: column;
  padding-top: 80px;
  padding-left: 8%;
  padding-right: 8%;
}

.fast-menu p {
  text-transform: uppercase;
}

.fast-menu nav {
  width: 100%;
  padding-top: 0;
}

.fast-menu nav ul {
  display: flex;
  flex-direction: column;
  padding: 0;
  padding-bottom: 80px;
  margin: 0;
  gap: 24px;
}

.fast-menu nav li {
  width: 100%;
  position: relative;
  display: inline-flex;
  align-items: start;
  justify-content: start;
  overflow: hidden;
  cursor: pointer;
}

.fast-menu a {
  font-weight: bold;
  color: var(--secondary-clr);
  text-decoration: none;
}

.fast-menu nav li span {
  display: inline-flex;
  align-items: center;
  transition: transform 0.4s ease;
  -webkit-transition: transform 0.4s ease;
  -moz-transition: transform 0.4s ease;
  -ms-transition: transform 0.4s ease;
  -o-transition: transform 0.4s ease;
}

.fast-menu nav li::before {
  content: "";
  background: url(/images/icon/footer-menu_arrow.svg);
  background-repeat: no-repeat;
  width: 50px;
  height: 24px;
  margin-top: 4px;
  opacity: 0;
  transform: translateX(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  -webkit-transition: opacity 0.4s ease, transform 0.4s ease;
  -moz-transition: opacity 0.4s ease, transform 0.4s ease;
  -ms-transition: opacity 0.4s ease, transform 0.4s ease;
  -o-transition: opacity 0.4s ease, transform 0.4s ease;
}

/* --- end fast menu */



/* --- start below the line */
.below-the-line {
  font-size: 0.75rem;
  border-top: 1px solid rgba(0, 0, 0, .5);
  padding-top: 40px;
  padding-left: 4%;
  padding-right: 4%;
}

.notes {
  max-width: 640px;
  margin: auto;
  padding-bottom: 40px;
}

sup {
  padding: 6px 8px 4px 8px;
  font-size: .625rem;
  line-height: 1rem;
  vertical-align: super;
  background-color: rgba(0, 0, 0, .05);
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  z-index: 5;
}

.must-have_information {
  display: grid;
  grid-template-columns: 1fr;
  grid-row: auto;
  gap: 24px;
  max-width: 680px;
  margin: auto;
  color: rgb(40, 40, 40) !important;
  font-style: normal;
  border: 1px solid rgb(232, 235, 235);
  border-radius: 12px;
  padding: 16px;
  margin-top: 40px;
}

.legal, .verification {
  padding: 16px;
  background-color: white;
  border: 1px solid rgb(232, 235, 235);
  border-radius: 8px;
}

.legal p {
  margin: 0 !important;
}

.legal p:last-child {
  padding-top: 16px;
}

.billing {
  font-size: .9rem;
  text-transform: uppercase;
  font-weight: bold;
}

.cookies {
  grid-template-columns: 1fr;
  padding-top: 24px;
  padding-bottom: 40px;
  max-width: 640px;
  margin: auto;
}

.cookies a {
  font-weight: bold;
}

.cookies p:last-child {
  text-transform: uppercase;
  font-weight: bold;
  text-align: left;
}

/* --- end below the line */

.footer-sign {
  display: flex;
  flex-direction: column;
  max-width: 680px;
  gap: 24px;
  text-align: center;
  margin: auto;
  margin-top: 16px;
  margin-bottom: 80px;
  padding: 16px;
  border: 1px solid rgb(232, 235, 235);
  border-radius: 12px;
  color: rgb(40, 40, 40) !important;
  font-size: 12px !important;
}

.footer-copy {
  padding: 16px 0 16px 16px;
  border: 1px solid rgb(232, 235, 235);
  border-radius: 16px;
  text-align: left;
  margin: 0 !important;
}

.footer-copy p {
  margin: 0 !important;
}


.footer-sign img {
  width: 100%;
  max-width: 224px;
  margin: auto;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
}

.footer-ai {
  text-align: left;
}

.footer-update {
  grid-column: 1 / 3;
  border-top: 1px dashed rgb(232, 235, 235);
}

.footer-update p {
  margin: 12px 0 !important;  
}

.contacts-sign p:first-child,
.contacts-sign p:last-of-type {
  color: white;
  padding-bottom: 16px;
}

.footer-sign summary {
  cursor: pointer;
}

.why-human-design {
  font-size: 0.75rem !important;
  max-width: 500px;
}

/* --- END FOOTER --- */





/* --- START COOKIES PAGE --- */
/* --- - - - - - - - --- */
.cookies_content,
.cookies_accepted-block {
  grid-column: 1 / 5;
  margin-left: 8%;
  margin-right: 8%;
}

.cookies_accepted-block {
  padding-bottom: 80px;
}

.cookies_accepted-block li {
  padding-bottom: 16px;
}

/* --- END COOKIES PAGE --- */
/* --- - - - - - - - --- */





/* --- START GDPR PAGE --- */
/* --- - - - - - - - --- */
.successfuly-sent_line {
  grid-column: 1 / 5;
  padding-left: 8%;
  padding-right: 8%;
  width: 50%;
  border-top: 1px dashed black;
  margin: auto;
  margin-top: 64px;
}




/* --- END GDPR PAGE --- */
/* --- - - - - - - - --- */





/* --- START 404 PAGE --- */
/* --- - - - - - - - --- */
#error-page {
  padding-left: 8%;
  padding-right: 8%;
  padding-bottom: 80px;
}

#error-page h2 {
  grid-column: 1 / 5;
  font-size: clamp(4rem, 6vw, 6rem);
  line-height: clamp(3rem, 5rem, 7.5rem);
  text-align: center;
}

#error-page h4, #error-page ul, .error-links {
  grid-column: 1 / 5;
}

#error-page ul li {
  padding: 8px 0;
  list-style: none;
}

#error-page a {
  color: var(--secondary-clr) !important;
  text-decoration-color: var(--header_green-clr);
}


/* --- END 404 PAGE --- */
/* --- - - - - - - - --- */





/* --- START COOKIES BLOCK & LOGIC */
/* --- - - - - - - - --- */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: .8rem;
  line-height: 1rem;
  background: rgba(250, 251, 255, 1);
  color: var(--secondary-clr);
  border-top: 2px solid var(--accent-clr);
  padding: 20px 0 80px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  width: 100%;
  z-index: 9999;
}

#cookie-banner p,
.cookies-buttons {
  grid-column: 1 / 5;
  margin: 0;
  padding-left: 4%;
  padding-right: 4%;
}

.cookies-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: 92%;
  padding-top: 0;
  padding-left: 4%;
  padding-right: 4%;
  padding-bottom: 16px;
  margin: 0
}

#cookie-banner button {
  padding: 16px 24px;
  text-align: left;
  border: 1px solid var(--accent-clr);
  cursor: pointer;
  border-radius: 8px;
  background: #fff;
  color: var(--secondary-clr);
  width: max-content;
}

#cookie-banner button.active {
  background: #00bfff;
}

.cookies-state {
  padding: 10px 15px;
  width: fit-content;
  cursor: pointer;
  color: black;
  margin-right: 10px;
}

@media (hover: hover) {
  .cookies-state:hover {
    text-decoration: underline;
  }
}

.cookies-state.active {
  color: var(--accent-clr);
  font-weight: bold;
}

/* --- - - - - - - - --- */
/* --- END COOKIES BLOCK & LOGIC */



/* touch for mobile users */
.btn_reservation:active,
.direct-kickoff:active,
.start-today:active,
.btn_lets-create:active,
#cookie-banner button:active {
  transform: scale(0.95);
  opacity: 0.9;
  transition: transform 0.1s;
}






.available-line {
    width: 100%;
    height: 20px;
    background-color: #eee;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 10px;
}

.available-line_actual {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background-color: #27ae60;
    width: 0;
    transition: width 0.1s ease-out;
}

.available-line_scope {
    display: none;
}











/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
@media (min-width: 1000px) {
  h1 {
    margin-top: 60px;
    width: max-content;
  }

  .h1-perex {
    margin-bottom: 100px;
  }

  .btn_reservation {
    width: 310px;
  }

  .header_hero-perex {
    padding-top: 100px;
    padding-bottom: 120px;
  }

  main {
    grid-template-columns: repeat(12, 1fr);
  }

  .our-project,
  .individual-approach,
  .offer,
  .reference,
  .reference-perex,
  .lets-create,
  footer {
    grid-column: 1 / 13;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
  }

  .our-project h2,
  .individual-approach h2,
  .reference-perex h2 {
    grid-column: 1 / 13;
    text-align: center;
  }

  .our-project {
    gap: 40px;
    text-align: left;
    border-top: none;
    margin-top: 24px;
  }

  .content-left p:first-child,
  .content-right p:first-child {
    font-size: 1.125rem;
  }

  .content-left {
    grid-column: 2 / 7;
  }

  .content-right {
    grid-column: 7 / 12;
    margin-top: 0;
    margin-bottom: 24px;
  }

  .ux-content {
    grid-column: 4 / 10;
    border-bottom: none;
  }

  .ux-header {
    margin: auto;
  }

  #corporate {
    grid-column: 1 / 7;
    grid-row: 1 / 2;
    margin: 0;
    height: max-content;
  }

  .kick-block {
    grid-column: 8 / 12;
    grid-row: 1 / 2;
    margin-bottom: 0;
  }


  .offer article,
  .offer h2 {
    grid-column: 2 / 9;
  }

  .offer article {
    margin-bottom: 40px;
    padding: 80px;
  }

  .offer h2,
  .reference-perex h2 {
    text-align: left;
  }

  .offer-summary {
    width: 85%;
  }

  .start-today {
    width: 260px;
    margin-left: 46%;
  }

  .gratis {
    max-width: 240px;
  }

  .reference-perex h2,
  .reference-perex p,
  .reference-block {
    grid-column: 3 / 11;
  }

  .reference-block {
    padding: 40px;
  }

  .chips ul {
    flex-direction: row;
  }

  .reference-detail_link {
    max-width: 322px;
  }

  .lets-create h2,
  .lets-create p,
  .lets-create div,
  .lets-create button {
    grid-column: 6 / 12;
  }

  .lets-create p {
    margin: -8px 0;
    line-height: 1.25rem;
  }

  .lets-create picture {
    grid-column: 2 / 5;
    grid-row: 1 / 5;
  }

  .lets-create img {
    width: 100% !important;
  }

  .fast-menu {
    grid-column: 2 / 5;
  }

  .fast-menu p {
    padding-left: 40px;
  }

  .fast-menu p,
  .fast-menu nav {
    grid-column: 2 / 5;
  }

  .below-the-line {
    grid-column: 3 / 11;
  }

  #stickyText, #stickyTextTwo {
    font-size: 4.75rem;
    line-height: 4.75rem;
  }

  #stickyText img {
    width: 60px;
  }

  .must-have_information {
    grid-template-columns: 1fr 1fr;
  }

  .footer-sign {
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-template-rows: auto auto;
  }



  /* --- start GDPR page --- */
  .cookies_content,
  .successfuly-sent_line,
  .cookies_accepted-block {
    grid-column: 2 / 12;
  }

  .cookies_accepted-block {
    padding-top: 40px;
  }

  /* --- end GDPR page --- */


  /* --- start 404 page --- */
  #error-page h2 {
    grid-column: 3 / 11;
  }

  #error-page h4, #error-page ul, .error-links {
    grid-column: 4 / 10;
  }


  /* --- end 404 page --- */



  /* --- START COOKIES BLOCK & LOGIC */
  .cookies-buttons {
    justify-content: flex-start;
  }

  #cookie-banner p,
  .cookies-buttons {
    grid-column: 2 / 4;
  }

}

@media (max-width: 1000px) {
  #stickyText, #stickyTextTwo {
    will-change: transform;
    -webkit-backface-visibility: hidden; 
    backface-visibility: hidden; 
  }
}