:root {
  --blue: #19103b;
  --white: white;
  --gold: #c18b4f;
  --gray: #dce1dd;
  --black: black;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

body {
  color: var(--blue);
  font-family: Plus Jakarta Sans, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 38px;
  font-weight: 700;
  line-height: 44px;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
}

h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
}

p {
  margin-bottom: 0;
}

.h1 {
  letter-spacing: 0;
  font-size: 6rem;
  font-weight: 700;
  line-height: 100%;
}

.h1.white {
  color: var(--white);
}

.text-style {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: column;
  padding: 0;
  display: flex;
}

.style-guide-info-text {
  color: #0000004d;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}

.h2 {
  letter-spacing: 0;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 100%;
  position: sticky;
  top: 8rem;
}

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

.h2.text-white {
  color: var(--white);
}

.h3 {
  letter-spacing: 0;
  font-size: 3rem;
  font-weight: 700;
  line-height: 100%;
}

.h3.text-white {
  color: var(--white);
}

.h4 {
  letter-spacing: 0;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 130%;
}

.h4.text-medium {
  font-weight: 500;
}

.h4.text-white {
  color: var(--white);
}

.h5 {
  letter-spacing: 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 130%;
}

.h6 {
  letter-spacing: 0;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 130%;
}

.h6.text-white {
  color: var(--white);
}

.h6.text-white.text-center, .h6.text-center {
  text-align: center;
}

.text-24 {
  letter-spacing: 0;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 150%;
}

.text-24.white, .text-24.text-white {
  color: var(--white);
}

.text-20 {
  letter-spacing: 0;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 150%;
}

.text-20.text-white {
  color: var(--white);
}

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

.text-20.text-center.semibold, .text-20.bold {
  font-weight: 700;
}

.text-18 {
  letter-spacing: 0;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 140%;
}

.text-18.text-gold, .text-18.link {
  color: var(--gold);
}

.text-18.link:hover {
  color: #e5a55e;
}

.text-18.link.text-purple {
  color: var(--blue);
  text-decoration: none;
  transition: all .2s;
}

.text-18.link.text-purple:hover {
  text-decoration: underline;
}

.text-18.link.dark {
  color: var(--blue);
}

.text-16 {
  letter-spacing: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 160%;
}

.text-16.text-white {
  color: var(--white);
}

.text-16.text-white.opacity {
  opacity: .6;
}

.text-16.text-brown {
  color: var(--gold);
}

.text-14 {
  letter-spacing: 0;
  font-size: .875rem;
  font-weight: 400;
  line-height: 170%;
}

.text-14.text-white {
  color: var(--white);
}

.text-12 {
  letter-spacing: 0;
  font-size: .75rem;
  font-weight: 400;
  line-height: 150%;
}

.text-10 {
  letter-spacing: 0;
  font-size: .625rem;
  font-weight: 400;
  line-height: 160%;
}

.text-styles-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  padding: 0;
  display: flex;
}

.style-guide-heading {
  color: #000c;
  letter-spacing: -.02em;
  width: 100%;
  max-width: 340px;
  font-size: 42px;
  font-weight: 700;
  line-height: 64px;
}

.styles-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  border: 0 solid #dcdcdc;
  border-top-width: 1px;
  flex-direction: row;
  justify-content: center;
  padding: 24px;
  display: flex;
}

.section {
  background-color: var(--white);
  width: 100%;
  height: 100%;
}

.section.hero {
  background-color: var(--blue);
  height: 100vh;
  min-height: 100vh;
}

.section.services {
  background-color: var(--gray);
}

.section.coach {
  background-color: var(--blue);
}

.section.testimonials {
  background-color: #f9f9f9;
}

.section.pricing {
  background-color: var(--gray);
}

.section.cta, .section.footer {
  background-color: var(--blue);
}

.page-padding {
  padding: 8rem;
  position: relative;
}

.page-padding.footer {
  padding: 1rem;
}

.container {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.about_content_right, .about_content_left {
  flex: 1;
}

.about-wrapper {
  grid-column-gap: 8rem;
  grid-row-gap: 8rem;
}

.about_image {
  border-radius: 1rem;
}

.about_image-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: flex-start;
  align-items: flex-start;
}

.about_image-wrapper.second {
  justify-content: flex-end;
  align-items: flex-start;
}

.hero_bg_gold {
  background-color: var(--gold);
  width: 50%;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.container-fluid {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.container-fluid.hero {
  max-width: 120rem;
  height: 100%;
}

.hero_content_left {
  flex: 0 auto;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  width: 50%;
  padding: 8rem;
  position: relative;
}

.hero_content_right {
  background-color: var(--gold);
  flex: none;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  width: 50%;
  padding: 4rem;
  overflow: hidden;
}

.hero_content_left-text {
  z-index: 1;
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  position: relative;
}

.hero_content_right_circle {
  aspect-ratio: 1;
  border-radius: 62.4375rem;
  flex: none;
  width: 100%;
}

.hero_content_right_circle.white {
  background-color: var(--white);
}

.hero_content_right_circle.purple {
  background-color: var(--blue);
}

.hero_content_right_circle.image {
  background-image: url('../images/H6_Hero.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.button {
  border-radius: 62.4375rem;
  justify-content: center;
  align-items: center;
  padding: 1rem 2rem;
  font-size: 1.25rem;
  line-height: 140%;
  display: flex;
}

.button.primary {
  background-color: var(--gold);
  color: var(--blue);
  border-radius: 999px;
  font-weight: 500;
  transition: all .2s;
}

.button.primary:hover {
  background-color: #e5a55e;
}

.button.primary.icon-only {
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  padding-left: 1rem;
  padding-right: 1rem;
  position: fixed;
  inset: 3% 3% auto auto;
}

.button.secondary {
  border: .0625rem solid var(--white);
  background-color: #0000;
  transition: all .2s;
}

.button.secondary:hover {
  background-color: #ffffff14;
}

.hero_content_left_buttons-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
}

.about_content-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
}

.services-wrapper {
  grid-column-gap: 8rem;
  grid-row-gap: 8rem;
  justify-content: flex-start;
  align-items: center;
}

.services_accordion-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
}

.services_headline-wrapper {
  justify-content: center;
  align-items: flex-start;
  width: 100%;
}

.about_content_center {
  flex: 0 auto;
}

.grid-1-column {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.grid-1-column.gap-row-0 {
  grid-row-gap: 0px;
}

.accordion-spacer {
  min-height: 16px;
}

.accordion-btn-line {
  background-color: #211f54;
  border-radius: 20px;
  width: 18px;
  height: 2px;
  position: absolute;
}

.accordion-btn-line.v2 {
  width: 28px;
}

.accordion-item-wrapper {
  border-style: solid;
  border-width: 1px;
  border-color: var(--blue) #eff0f6;
  cursor: pointer;
  transform-style: preserve-3d;
  border-radius: 24px;
  width: 100%;
  padding: 48px 64px;
  transition: transform .3s;
  display: flex;
  box-shadow: 0 2px 12px #14142b14;
}

.accordion-item-wrapper:hover {
  transform: scale3d(.96, .96, 1.01);
}

.accordion-item-wrapper.v2 {
  box-shadow: none;
  border-width: 0 0 1px;
  border-radius: 0;
  justify-content: space-between;
  margin-bottom: -1px;
  padding: 2.5rem 0;
}

.accordion-item-wrapper.v2:hover {
  transform: translate(8px);
}

.acordion-body {
  width: 100%;
  overflow: hidden;
}

.accordion-title {
  margin-bottom: 0;
  font-size: 2.5rem;
  line-height: 130%;
}

.accordion-content-wrapper {
  flex-direction: column;
  justify-content: center;
  display: flex;
}

.accordion-side {
  margin-right: 24px;
}

.accordion-side.right-side {
  margin-left: 24px;
  margin-right: 0;
}

.accordion-icon-wrapper {
  justify-content: center;
  align-items: center;
  width: 3.25rem;
  min-width: 3.25rem;
  height: 3.25rem;
  min-height: 3.25rem;
  display: flex;
}

.accordion-header {
  align-items: center;
  display: flex;
}

.mg-bottom-0 {
  margin-bottom: 0;
  font-size: 1.125rem;
  line-height: 150%;
}

.coach-wrapper {
  grid-column-gap: 8rem;
  grid-row-gap: 8rem;
}

.coach_content-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
}

.coach_grid-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
}

.coach_grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  place-items: start center;
  width: 100%;
}

.image-2 {
  width: 100%;
  height: 100%;
}

.coach_image {
  aspect-ratio: 1;
  width: 100%;
  height: 100%;
}

.coach_circle {
  aspect-ratio: 1;
  border-radius: 62.4375rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.coach_circle.outline {
  border: 1px solid #ffffff52;
}

.coach_circle.fill {
  background-color: #ffffff29;
}

.coach_circle.fill.cta {
  background-color: var(--white);
}

.workshop_content-wrapper {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  flex-flow: column;
}

.workshop-wrapper {
  grid-column-gap: 8rem;
  grid-row-gap: 8rem;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
}

.workshop_content-up, .workshop_content-down {
  flex: 1;
}

.workshop_content-image-wrapper {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  aspect-ratio: 1;
  flex-flow: column;
  width: 100%;
  height: 100%;
}

.image-3 {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 62.4375rem;
  width: 100%;
  height: 100%;
}

.pricing_content-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
}

.pricing_content-left, .pricing_content-right {
  flex: 1;
}

.pricing_cards-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  display: grid;
}

.pricing_card-item {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  background-color: var(--white);
  border-radius: 1rem;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 3rem 1.5rem 2rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.pricing_card-item.purple {
  background-color: var(--blue);
}

.pricing_card-icon {
  width: 3rem;
  height: 3rem;
}

.card-highlight {
  background-color: var(--gold);
  justify-content: center;
  align-items: center;
  padding: .25rem;
  display: flex;
  position: absolute;
  inset: 0% 0% auto;
}

.testimonials-wrapper {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  flex-flow: column;
  display: flex;
}

.testimonials_content_left {
  flex: 1;
  position: relative;
}

.testimonials_content_right {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  flex-flow: column;
  flex: 1;
  display: flex;
}

.testimonials_content-item {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
}

.divider {
  background-color: var(--blue);
  width: 100%;
  height: .0625rem;
}

.text-gold {
  color: var(--gold);
}

.cta_content-up {
  flex: 1;
}

.cta_content-bottom {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  flex-flow: column;
  flex: 1;
  display: flex;
}

.cta_conent-card {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
}

.cta-content-card-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: grid;
}

.cta-wrapper {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  flex-flow: column;
  display: flex;
}

.cta_card-item {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  display: flex;
  position: relative;
  overflow: hidden;
}

.cta_card-item.purple {
  background-color: var(--blue);
}

.cta_card-icon {
  width: 4rem;
  height: 4rem;
}

.cta_card-item-content, .cta_card-item-footer {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
}

.main-wrapper {
  overflow: clip;
}

.footer-wrapper {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  background-color: var(--gold);
  border-radius: 1rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding: 5rem;
  display: flex;
  position: relative;
}

.footer_content-wrapper {
  z-index: 2;
  grid-column-gap: 1rem;
  grid-row-gap: 8rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: start;
  width: 100%;
  max-width: 80rem;
  display: grid;
  position: relative;
}

.flex-block-4 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
}

.footer_content-socials-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.footer_content-socials-item {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: var(--blue);
  border-radius: 62.4375rem;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  padding: .5rem;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.footer_content-socials-item:hover {
  background-color: #1f1447;
}

.h6symbol {
  z-index: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.navbar {
  z-index: 998;
  background-color: #0000;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: flex;
  position: fixed;
}

.h6logo {
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.container-2 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border: 1px solid var(--gray);
  background-color: var(--white);
  border-radius: 1rem;
  justify-content: space-between;
  align-items: center;
  max-width: 80rem;
  margin-left: 0;
  margin-right: 0;
  padding: .5rem 1rem;
  display: flex;
  box-shadow: 0 4px 16px #19103b14;
}

.navlink {
  color: var(--blue);
  font-size: 1rem;
  font-weight: 700;
  line-height: 130%;
  transition: all .2s;
}

.navlink:hover, .navlink.w--current {
  color: var(--gold);
}

.nav-menu {
  margin-left: 2rem;
}

.link-block {
  color: var(--blue);
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.trainer-detail {
  z-index: 999;
  background-color: #19103bb3;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  inset: 0%;
  overflow: hidden;
}

.trainer-detail-wrapper {
  background-color: var(--blue);
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 50%;
  max-width: 43.75rem;
  height: 100vh;
  padding: 128px 40px 40px;
  display: flex;
  position: relative;
  overflow: scroll;
}

.flex-block-5 {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
}

.flex-block-6 {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
}

.flex-block-7 {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
}

.text-white {
  color: var(--white);
}

.trainer-detail-socials {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: row;
  display: flex;
}

.trainer_detail_socials-button {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: var(--gold);
  border-radius: 62.4375rem;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  padding: .5rem 1.5rem .5rem .5rem;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.trainer-image {
  width: 10rem;
  height: 10rem;
}

.flex-block-8 {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
}

.trainer-detail-wrapper-tomas-lapos {
  z-index: 999;
  background-color: var(--blue);
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 50%;
  max-width: 43.75rem;
  height: 100vh;
  padding: 128px 40px 40px;
  display: flex;
  position: relative;
  overflow: scroll;
}

.trainer-detail-wrapper-tatiana-tyciakova, .trainer-detail-wrapper-martin-tkac, .trainer-detail-wrapper-richard-marton, .trainer-detail-wrapper-michaela-zubarova, .trainer-detail-wrapper-juraj-mily {
  background-color: var(--blue);
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 50%;
  max-width: 43.75rem;
  height: 100vh;
  padding: 128px 40px 40px;
  display: flex;
  position: relative;
  overflow: scroll;
}

.list {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  flex-flow: column;
  display: flex;
}

.trainer-detaill-tomas-lapos, .trainer-detail--tatiana-tyciakova, .trainer-detail-martin-tkac, .trainer-detail-jakub-zbojan, .trainer-detail--michaela-zubarova, .trainer-detail-juraj-mily {
  z-index: 999;
  background-color: #19103bb3;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  inset: 0%;
  overflow: hidden;
}

.flex-block-9 {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: flex-start;
  align-items: flex-end;
}

.testimonial-slider-small {
  padding: 0;
  position: relative;
}

.container-3 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.centered-heading {
  text-align: center;
  margin-bottom: 16px;
}

.centered-subheading {
  text-align: center;
  max-width: 530px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-slider {
  background-color: #0000;
  height: auto;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-slide-wrapper {
  max-width: 30%;
  margin-right: 2%;
}

.testimonial-card {
  aspect-ratio: 1;
  background-color: #fff;
  border: 1px solid #dce1dd;
  border-radius: 1rem;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2rem;
  display: flex;
}

.testimonial-info {
  align-self: stretch;
  align-items: center;
  margin-top: 24px;
  display: flex;
}

.testimonial-image {
  object-fit: cover;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin-right: 16px;
}

.testimonial-author {
  color: var(--gold);
  margin-bottom: 2px;
}

.tagline {
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 16px;
}

.testimonial-icon-wrapper {
  flex: 1;
  justify-content: flex-end;
  display: flex;
}

.testimonial-slider-left {
  justify-content: center;
  align-items: center;
  width: 40px;
  display: flex;
  left: -70px;
  overflow: visible;
}

.testimonial-slider-left:focus-visible, .testimonial-slider-left[data-wf-focus-visible] {
  outline-offset: 0px;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.arrow-wrapper {
  width: 4rem;
  height: 4rem;
}

.slider-arrow-embed {
  color: #1a1b1f;
  border-radius: 999px;
  overflow: visible;
  box-shadow: 0 2px 5px #0006;
}

.testimonial-slider-right {
  justify-content: center;
  align-items: center;
  width: 40px;
  display: flex;
  right: -70px;
  overflow: visible;
}

.testimonial-slider-right:focus-visible, .testimonial-slider-right[data-wf-focus-visible] {
  outline-offset: 0px;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.testimonial-slide-nav {
  display: none;
}

.mask {
  overflow: visible;
}

.flex-block-10 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
}

.cta_contact-button {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: var(--gold);
  border-radius: 62.4375rem;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  padding: 1rem 2rem;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.cta_contact-button:hover {
  background-color: #1f1447;
}

.cta_contact-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

@media screen and (max-width: 991px) {
  .h1 {
    font-size: 5rem;
  }

  .h1.white.responsive-center {
    text-align: center;
  }

  .h2 {
    font-size: 4rem;
  }

  .h4.mt-80 {
    margin-top: 80px;
  }

  .text-24.white.responsive-center {
    text-align: center;
  }

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

  .section.hero {
    height: 100%;
  }

  .page-padding {
    padding: 6rem 4rem;
  }

  .container-fluid.hero {
    flex-flow: column;
  }

  .hero_content_left {
    width: 100%;
    padding-top: 16rem;
  }

  .hero_content_right {
    width: 100%;
    height: 70vh;
  }

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

  .accordion-spacer {
    min-height: 12px;
  }

  .accordion-item-wrapper {
    padding-left: 40px;
    padding-right: 40px;
  }

  .accordion-item-wrapper.v2:hover {
    transform: translate(0);
  }

  .coach_grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .workshop-wrapper {
    flex-flow: column;
  }

  .pricing_cards-wrapper {
    flex-flow: column;
    grid-template-columns: 1fr 1fr;
    display: flex;
  }

  .testimonials-wrapper {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    flex-flow: column;
  }

  .cta-content-card-wrapper {
    grid-column-gap: 6rem;
    grid-row-gap: 6rem;
    grid-template-columns: 1fr 1fr;
  }

  .footer_content-wrapper {
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
  }

  .navbar {
    padding-left: 1rem;
    padding-right: 1rem;
    position: fixed;
    inset: 0% 0% auto;
  }

  .container-2 {
    flex: 1;
    max-width: 100%;
  }

  .navlink {
    font-size: 1.5rem;
  }

  .nav-menu {
    background-color: var(--white);
    border-radius: 1rem;
    margin-left: 1rem;
    margin-right: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 16px #0003;
  }

  .image-4 {
    position: relative;
  }

  .div-block-2 {
    flex: 1;
  }

  .menu-button {
    background-color: var(--white);
  }

  .menu-button.w--open {
    background-color: var(--blue);
    border-radius: .5rem;
  }

  .trainer-detail-wrapper-tomas-lapos, .trainer-detail-wrapper-tatiana-tyciakova, .trainer-detail-wrapper-martin-tkac, .trainer-detail-wrapper-richard-marton, .trainer-detail-wrapper-michaela-zubarova, .trainer-detail-wrapper-juraj-mily {
    width: 80%;
    max-width: 80%;
  }

  .container-3 {
    max-width: 728px;
  }

  .testimonial-slide-wrapper {
    max-width: 50%;
  }

  .testimonial-slider-left {
    left: -20px;
  }

  .testimonial-slider-right {
    right: -20px;
  }
}

@media screen and (max-width: 767px) {
  .h1 {
    font-size: 4rem;
  }

  .h2 {
    font-size: 3.5rem;
  }

  .h2.responsive-center, .text-24.responsive-center {
    text-align: center;
  }

  .about-wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .about_image-wrapper {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
  }

  .about_image-wrapper.second {
    justify-content: space-between;
    align-items: center;
  }

  .hero_content_left {
    justify-content: center;
    align-items: center;
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .hero_content_right {
    height: 50vh;
  }

  .about_content-wrapper {
    flex-flow: column;
  }

  .services-wrapper {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
  }

  .accordion-item-wrapper {
    padding: 40px 24px;
  }

  .accordion-side {
    margin-right: 16px;
  }

  .accordion-side.right-side {
    margin-left: 16px;
  }

  .coach_content-wrapper, .pricing_content-wrapper {
    flex-flow: column;
  }

  .pricing_cards-wrapper, .cta-content-card-wrapper {
    grid-template-columns: 1fr;
  }

  .navlink {
    padding: 1rem 0;
  }

  .testimonial-slide-wrapper {
    max-width: 100%;
    margin-right: 4%;
  }

  .testimonial-card {
    margin-left: 10px;
    margin-right: 10px;
  }

  .testimonial-slider-left {
    left: -10px;
  }

  .testimonial-slider-right {
    right: -10px;
  }
}

@media screen and (max-width: 479px) {
  .h1 {
    font-size: 3rem;
  }

  .h2 {
    font-size: 2.5rem;
  }

  .h3 {
    font-size: 2rem;
  }

  .h4, .h4.text-medium.responsive {
    font-size: 1.5rem;
  }

  .h5 {
    font-size: 1rem;
  }

  .h6 {
    font-size: .75rem;
  }

  .text-20.quote {
    font-size: 1rem;
  }

  .page-padding {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero_content_left {
    padding: 10rem 2rem 6rem;
  }

  .hero_content_right {
    height: 70vh;
    padding: 0;
  }

  .button {
    align-self: stretch;
  }

  .hero_content_left_buttons-wrapper {
    flex-flow: column;
    justify-content: flex-start;
    align-self: stretch;
    align-items: center;
  }

  .accordion-item-wrapper.v2 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .accordion-title {
    font-size: 1.5rem;
  }

  .coach_grid {
    grid-template-columns: 1fr 1fr;
  }

  .workshop_content-wrapper {
    width: 100%;
  }

  .cta-content-card-wrapper {
    grid-template-columns: 1fr;
  }

  .footer-wrapper {
    padding: 6rem 2rem;
  }

  .h6logo {
    padding-left: 0;
  }

  .container-2 {
    padding-left: 0;
    padding-right: 0;
  }

  .navlink {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }

  .trainer-detail-wrapper-tomas-lapos, .trainer-detail-wrapper-tatiana-tyciakova, .trainer-detail-wrapper-martin-tkac, .trainer-detail-wrapper-richard-marton, .trainer-detail-wrapper-michaela-zubarova, .trainer-detail-wrapper-juraj-mily {
    width: 90%;
    max-width: 90%;
  }

  .container-3 {
    max-width: none;
  }

  .centered-heading {
    margin-bottom: 24px;
  }

  .testimonial-slide-wrapper {
    max-width: 100%;
    margin-right: 0%;
  }

  .testimonial-card {
    margin-left: 10px;
    margin-right: 10px;
  }

  .testimonial-slider-left {
    left: -10px;
  }

  .testimonial-slider-right {
    right: -10px;
  }
}

#w-node-_8874bce3-d595-1e62-2d9f-05c41f32ea24-6714ee65 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_27479799-684e-4fee-d0c8-906bf7eb44b5-6714ee65 {
  grid-area: 1 / 2 / 2 / 3;
  align-self: stretch;
}

#w-node-cefd2232-0ae6-acd5-1fb1-537a544ecf98-6714ee65 {
  grid-area: 1 / 3 / 2 / 4;
  align-self: stretch;
}

#w-node-_4ec279c9-1c84-5cbe-7fd3-3769bc81ce1a-6714ee65 {
  grid-area: 1 / 4 / 2 / 5;
  align-self: stretch;
}

#w-node-_59aac068-f5c4-8301-ac60-d0aa965b320c-6714ee65 {
  grid-area: 2 / 2 / 3 / 3;
  align-self: stretch;
}

#w-node-_12ffbe47-b128-daba-aa55-6b9cddb1597a-6714ee65 {
  grid-area: 2 / 3 / 3 / 4;
  align-self: stretch;
}

#w-node-ed78fabf-73ae-ad8a-4011-f3af8c61ac30-6714ee65 {
  grid-area: 2 / 4 / 3 / 5;
  align-self: stretch;
}

#w-node-e9a50593-4fb5-cd44-b1ad-7ae4dc5ded50-6714ee65 {
  grid-area: 3 / 2 / 4 / 3;
  align-self: stretch;
}

#w-node-_5e3ad5d7-3e93-c3f2-53d6-8a0e1b746fa6-6714ee65 {
  grid-area: 3 / 3 / 4 / 4;
  align-self: stretch;
}

#w-node-_73e8a245-5f38-a1d3-3908-2380acec5d19-6714ee65 {
  grid-area: 4 / 1 / 5 / 2;
}

#w-node-_127d7a0e-b112-b394-118c-27b7edb3885d-6714ee65 {
  grid-area: 4 / 2 / 5 / 3;
  align-self: stretch;
}

#w-node-_38198751-517c-771c-a4fd-8f9820a0ee16-6714ee65 {
  grid-area: 4 / 3 / 5 / 4;
  align-self: stretch;
}

#w-node-c1211c2e-aab4-0fd1-7037-267d07c8edf3-6714ee65 {
  grid-area: 4 / 4 / 5 / 5;
  align-self: stretch;
}

#w-node-_224ea4ea-f246-552f-1cfd-697525782021-6714ee65, #w-node-ad58c297-68a3-81f1-0990-8e77ecf9d81f-6714ee65, #w-node-_9b420060-5ce4-9ffc-612e-e0919d41c2ed-6714ee65 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_2bdbd5ee-c1cf-5670-1e46-00bb290a2984-6714ee65 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}


