:root {
  --white-texts: whitesmoke;
  --black-2: #1d1d1d;
  --coral: #f8772d;
  --chocolate: #f06c4f;
  --button-light: #e9e9e9;
  --light-salmon: #ff8f4f;
  --white-cards: #fdfdfd;
  --section-light-grey: #cfcfcf;
  --chocolate-2: #f4d8c8;
  --black: #050505;
}

.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 {
  background-color: var(--white-texts);
  color: var(--black-2);
  letter-spacing: 1px;
  font-family: Exo, sans-serif;
  font-size: 18px;
  line-height: 1.7;
}

h1 {
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Oswald, sans-serif;
  font-size: 70px;
  font-weight: 700;
  line-height: 1.1;
}

h2 {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Oswald, sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
}

h3 {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
}

h4 {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.7;
}

p {
  margin-bottom: 0;
}

a {
  color: var(--coral);
  text-decoration: none;
}

.page-wrapper {
  overflow: visible;
}

.navbar_component {
  z-index: 3;
  background-color: #00000094;
  padding-top: 10px;
  padding-bottom: 10px;
  position: absolute;
  inset: 0% 0% auto;
}

.section-home-hero {
  position: relative;
}

.section-home-hero._1 {
  display: none;
}

.page-padding {
  padding-left: 20px;
  padding-right: 20px;
}

.navbar_container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1250px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

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

.hero-slider_master-wrapper {
  z-index: 2;
  color: var(--white-texts);
  background-image: url('../images/Landing-Banner--Gym--1.png');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: contain;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding-top: 140px;
  padding-bottom: 100px;
  display: flex;
}

.hero-slider_component {
  background-color: #0000;
  height: 700px;
  position: relative;
}

.hero-slider_slide {
  color: #fff;
  background-image: url('../images/Landing-Banner--Gym--1.png');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: contain;
}

.hero-slider_hidden-arrow {
  display: none;
}

.hero-slider_custom-nav {
  justify-content: flex-end;
  max-width: 1250px;
  height: 60px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 25px;
  display: none;
}

.hero-slider_background-image {
  z-index: -1;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.navbar_link {
  color: var(--white-texts);
  margin-left: 5px;
  margin-right: 5px;
  padding: 10px 15px;
  font-size: 15px;
  font-weight: 400;
  transition: padding .2s;
}

.navbar_link:hover {
  border-right: 1px solid var(--chocolate);
  border-left: 1px solid var(--chocolate);
  color: #fff;
  background-color: #ffffff26;
  padding-left: 25px;
  padding-right: 25px;
  font-weight: 500;
}

.navbar_link:active {
  transform: translate(0, 2px);
}

.navbar_link.w--current {
  color: var(--chocolate);
}

.navbar_brand-logo {
  color: var(--white-texts);
  width: 100px;
  padding-left: 0;
  font-family: Oswald, sans-serif;
  font-size: 40px;
  font-weight: 700;
}

.text-span-orange-plain {
  color: var(--coral);
}

.hero-slider_content-wrapper {
  text-align: left;
  max-width: 800px;
  display: none;
}

.button-wrapper {
  perspective: 1000px;
  perspective-origin: 50%;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  display: flex;
}

.button-wrapper.margin-top-small.left {
  justify-content: flex-start;
  align-items: center;
}

.button-wrapper.btn {
  margin-top: 20px;
}

.button-wrapper.left {
  justify-content: flex-start;
  align-items: center;
}

.button {
  background-color: var(--chocolate);
  background-image: linear-gradient(174deg, var(--chocolate), var(--light-salmon));
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 5px;
  padding: 1.2em 2.5em;
  font-size: 16px;
  font-weight: 600;
  transition: all .2s;
}

.button:hover {
  padding-left: 3.5em;
  padding-right: 3.5em;
}

.button:active {
  transform: translate(0, 2px);
}

.button.translucent-white {
  color: #fff;
  background-color: #ffffff26;
  background-image: none;
}

.button.translucent-white-version2 {
  background-color: var(--button-light);
  color: var(--black-2);
  background-image: none;
}

.button.size-small {
  padding: 1em 2em;
  font-size: 14px;
}

.button.size-small:hover {
  padding-left: 2.5em;
  padding-right: 2.5em;
}

.button.varient-full-lenght {
  width: 100%;
}

.button.c {
  background-color: #f06c4f;
}

.button.s {
  background-color: #f8772d;
  background-image: linear-gradient(#f8772d 30%, #f06c4f);
}

.button.btn {
  padding: .5em 2em;
}

.button.btn:hover {
  padding-left: 2.8em;
  padding-right: 2.8em;
}

.button-divider {
  width: 28px;
}

.section-home-about {
  overflow: hidden;
}

.section-home-about._1 {
  background-color: #eaeaea;
  padding-top: 70px;
}

.padding-vertical-large {
  padding-top: 0;
  padding-bottom: 70px;
}

.layout-2-col {
  grid-column-gap: 7vw;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.layout-2-col.content-right {
  grid-column-gap: 41px;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 50px;
  padding: 5px;
}

.layout-2-col.content-right._1 {
  flex-flow: column;
  grid-template-columns: 1fr;
  justify-content: center;
  align-items: center;
  display: flex;
}

.layout-2-col.content-left {
  grid-template-columns: minmax(500px, 1fr) 1fr;
}

.layout-2-col_content-wrapper {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 75%;
  display: flex;
}

.layout-2-col_image-wrapper {
  border-radius: 5px;
  width: 100%;
  display: none;
  position: relative;
}

.layout-2-col_image {
  object-fit: cover;
  border-radius: 5px;
  width: 100%;
  max-height: 75vh;
  box-shadow: 0 0 120px #0000000d;
}

.image-load-bg-layer {
  z-index: -1;
  background-color: var(--chocolate);
  border-radius: 5px;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: auto 0% 0%;
}

.image-load-bg-layer.sp {
  background-color: var(--coral);
}

.section-subtitle_text {
  text-transform: uppercase;
  margin-top: 3px;
  font-family: Exo, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}

.section-subtitle_component {
  align-items: center;
  margin-bottom: 10px;
  display: flex;
}

.section-subtitle_component.varient-inlined {
  flex-direction: column;
  display: inline-block;
}

.section-subtitle_line {
  transform-origin: 0%;
  background-color: #f46817;
  width: 100px;
  height: 2px;
  margin-left: 10px;
}

.section-subtitle_line.c {
  background-color: #f06c4f;
}

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

.section-home-mission {
  background-color: #e9e9e9f5;
  padding-top: 70px;
  padding-bottom: 70px;
}

.section-divider {
  background-color: #00000012;
  height: 2px;
}

.padding-bottom-large {
  padding-bottom: 0;
}

.background-pattern1 {
  background-color: var(--section-light-grey);
  background-image: linear-gradient(#e9e9e9f5, #e9e9e9f5), url('../images/Bg-Pattern1.svg');
  background-position: 0 0, 0 0;
  background-size: auto, 10%;
  border-top: 2px solid #d9d9d9;
  border-bottom: 2px solid #d9d9d9;
}

.section-home-packages.background-pattern1 {
  background-color: var(--white-cards);
  background-image: none;
  background-position: 0 0;
  border-top-style: none;
  border-bottom-style: none;
  padding-top: 70px;
}

.section-home-packages.background-pattern1.fet {
  background-color: #eaeaea;
  border-top-style: none;
}

.section-home-packages.background-pattern1.fet.cl {
  background-color: #fff;
  padding-top: 0;
  overflow: hidden;
}

.section-home-packages.background-pattern1._1 {
  display: none;
}

.section-header-wrapper {
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 80px;
  display: flex;
}

.section-header-wrapper.centered-pc-tab {
  text-align: center;
  align-items: center;
}

.section-header-wrapper.centered-pc-tab.wi {
  width: 75%;
  margin-left: auto;
  margin-right: auto;
}

.section-header-wrapper.varient-2-col {
  grid-column-gap: 80px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr auto;
  grid-auto-columns: 1fr;
  place-items: end start;
  display: grid;
}

.section-subtitle_line-vertical {
  transform-origin: 50%;
  background-color: #f46817;
  min-width: 100px;
  height: 2px;
  margin-top: 10px;
}

.max-large {
  max-width: 800px;
}

.grid-3-col {
  grid-column-gap: 36px;
  grid-row-gap: 36px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.grid-3-col.align-items-start {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: start;
}

.service-card {
  background-color: #fff;
  border-radius: 5px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 230px;
  min-height: 230px;
  padding: 20px;
  display: flex;
  box-shadow: 0 0 60px #0000001c;
}

.text-size-small {
  font-size: 15px;
}

.text-size-small._1 {
  color: var(--white-texts);
}

.margin-top-small {
  margin-top: 40px;
}

.service-card_icon {
  object-fit: contain;
  border-radius: 5px;
  width: 70px;
  height: 70px;
  margin-bottom: 28px;
}

.section-home-testimonials {
  display: none;
}

.testimonial-slider {
  background-color: #0000;
  height: auto;
}

.testimonial-slider_arrow-left {
  background-color: var(--chocolate-2);
  box-shadow: inset 0 0 0 1px var(--chocolate);
  color: var(--chocolate);
  border-radius: 2px;
  width: 50px;
  height: 50px;
  font-size: 20px;
  font-weight: 500;
  transition: all .2s;
  inset: -80px 65px auto auto;
}

.testimonial-slider_arrow-left:hover {
  background-color: #0000;
  background-image: linear-gradient(to bottom, var(--chocolate), var(--chocolate));
  color: var(--white-texts);
}

.testimonial-slider_arrow-left:active {
  transform: translate(0, 2px);
}

.testimonial-slider_arrow-right {
  background-color: var(--chocolate-2);
  box-shadow: inset 0 0 0 1px var(--chocolate);
  color: var(--chocolate);
  border-radius: 2px;
  width: 50px;
  height: 50px;
  font-size: 20px;
  font-weight: 500;
  transition: all .2s;
  inset: -80px 0% auto auto;
}

.testimonial-slider_arrow-right:hover {
  background-color: #0000;
  background-image: linear-gradient(to bottom, var(--chocolate), var(--chocolate));
  color: var(--white-texts);
}

.testimonial-slider_arrow-right:active {
  transform: translate(0, 2px);
}

.testimonial-slider_slide {
  margin-right: 36px;
}

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

.testimonial-slider_arrow-icon {
  font-weight: 400;
}

.testimonial-slider_mask {
  width: 33.3333vw;
  min-width: 400px;
  margin-left: auto;
  margin-right: auto;
  overflow: visible;
}

.testimonial-slider_content-wrapper {
  z-index: 1;
  background-color: var(--white-cards);
  border-radius: 2px;
  padding: 2em;
  position: relative;
  box-shadow: 0 0 60px #0000000d;
}

.testimonial-slider_customer-wrapper {
  align-items: center;
  margin-top: 50px;
  display: flex;
}

.testimonial-slider_deco-layer {
  z-index: -1;
  opacity: .1;
  filter: grayscale();
  width: 22%;
  position: absolute;
  inset: auto 2% 1% auto;
}

.testimonial-slider_customer-image {
  object-fit: cover;
  border-radius: 50%;
  min-width: 70px;
  min-height: 70px;
  max-height: 70px;
}

.testimonial-slider_customer-name-wrapper {
  margin-left: 15px;
}

.testimonial-slider_customer-name {
  margin-bottom: 0;
}

.text-size-medium {
  font-size: 20px;
}

.section-header-wrapper-centered {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.display-none {
  display: none;
}

.text-size-regular {
  font-size: 18px;
}

.section-home-trainers {
  display: none;
}

.trainer-card {
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 0 60px #0000000d;
}

.trainer-card_image-wrapper {
  align-items: flex-end;
  height: 27em;
  font-size: 1vw;
  display: flex;
  position: relative;
  overflow: hidden;
}

.trainer-card_image {
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
  transition: filter .2s;
}

.trainer-card_image:hover {
  filter: brightness(105%);
}

.trainer-card_content-wrapper {
  background-color: var(--white-cards);
  flex-direction: column;
  justify-content: space-between;
  padding: 1.6em;
  display: flex;
  position: relative;
}

.trainer-card_arrow-wrapper {
  z-index: 0;
  opacity: 0;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin: auto;
  display: flex;
  position: absolute;
  inset: 0%;
}

.trainer-card_arrow {
  color: var(--white-cards);
  font-size: 50px;
  font-weight: 500;
}

.social-media-link_list {
  grid-column-gap: 16px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: auto auto auto;
  grid-auto-columns: 1fr;
  display: grid;
}

.trainer-card_descriptive-text, .social-media-link_descriptive-text {
  display: none;
}

.social-media-link_icon {
  border-radius: 2px;
  width: 48px;
  transition: all .2s;
}

.social-media-link_icon:hover {
  transform: translate(0, -2px);
}

.social-media-link_icon:active {
  transform: translate(0);
}

.trainer-card_social-wrapper {
  flex-direction: column;
  align-items: flex-start;
  margin-top: 35px;
  display: flex;
}

.section-home-blog {
  display: none;
}

.blog-card {
  color: var(--black-2);
  cursor: pointer;
  border-radius: 2px;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  display: flex;
  overflow: hidden;
  box-shadow: 0 0 60px #0000000d;
}

.blog-card_thumbnail-wrapper {
  overflow: hidden;
}

.blog-card_content-wrapper {
  background-color: var(--white-cards);
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  padding: 1.6em;
  display: flex;
  position: relative;
}

.text-weight-bold {
  font-weight: 600;
}

.blog-card_category {
  background-image: linear-gradient(to bottom, var(--chocolate), var(--light-salmon));
  color: var(--white-cards);
  text-transform: uppercase;
  border-radius: 2px;
  margin-bottom: 15px;
  padding: .3em .8em;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
}

.blog-card_thumbnail {
  transition: all .2s;
}

.blog-card_thumbnail:hover {
  filter: brightness(105%);
  transform: scale(1.1);
}

.margin-top-medium {
  margin-top: 80px;
}

.subscribe-form_master-wrapper {
  background-color: #000;
  background-image: linear-gradient(327deg, var(--chocolate), var(--light-salmon)), url('../images/White-Pattern.svg');
  color: var(--white-cards);
  text-align: center;
  background-position: 0 0, 100% 100%;
  background-repeat: repeat, repeat-x;
  background-size: auto, 80%;
  border-radius: 2px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 60px;
  display: flex;
  position: relative;
}

.subscribe-form_block {
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 0 60px #0000000d;
}

.subscribe-form {
  position: relative;
}

.subscribe-form_field {
  border: 0 solid #000;
  min-height: 65px;
  padding-left: 20px;
  padding-right: 20px;
}

.subscribe-form_field::placeholder {
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 14px;
}

.subscribe-form_submit-button {
  background-color: var(--chocolate-2);
  color: var(--chocolate);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
  padding-left: 1.2em;
  padding-right: 1.2em;
  font-size: 16px;
  font-weight: 600;
  transition: all .2s;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.subscribe-form_submit-button:hover {
  padding-left: 1.5em;
  padding-right: 1.5em;
}

.subscribe-form_deco-layer {
  opacity: .05;
  background-image: url('../images/White-Pattern.svg');
  background-position: 0 0;
  background-repeat: repeat;
  background-size: auto;
  position: absolute;
  inset: 0%;
}

.subscribe-form_content-layer {
  z-index: 1;
  position: relative;
}

.section-home-contact.background-pattern1 {
  background-image: linear-gradient(#e9e9e9f5, #e9e9e9f5), url('../images/Bg-Pattern1.svg');
  background-position: 0 0, 0 0;
  background-size: auto, 10%;
  display: none;
}

.contact-link {
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  display: flex;
}

.contact-link_icon {
  width: 35px;
  margin-right: 15px;
}

.margin-top-xsmall {
  margin-top: 15px;
}

.contact-form_block {
  background-color: var(--white-cards);
  border-radius: 2px;
  padding: 40px;
  box-shadow: 0 0 60px #0000000d;
}

.contact-form_field {
  border: 1px solid #1d1d1d3d;
  min-height: 65px;
  margin-bottom: 15px;
  padding-left: 20px;
  padding-right: 20px;
}

.contact-form_field:focus {
  border-color: #f46817;
}

.contact-form_field::placeholder {
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
}

.contact-form_field.text-area-field {
  min-height: 150px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.contact-form_submit-wrapper {
  margin-top: 25px;
}

.footer {
  background-color: #000;
  background-image: linear-gradient(#000000f2, #000000f2), url('../images/64e8987a3125cac6f9e00c3e_muay-thai-gloves.png');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  padding-top: 10px;
  padding-bottom: 10px;
}

.footer_content-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer_content-wrapper.most-bottom {
  border-top: 2px solid #00000012;
  flex-flow: column;
  margin-top: 25px;
  padding-top: 25px;
}

.footer_brand-logo {
  color: var(--black-2);
  width: 100px;
  font-family: Oswald, sans-serif;
  font-size: 40px;
  font-weight: 700;
}

.footer_links-wrapper {
  justify-content: space-between;
  width: 28%;
  display: flex;
}

.footer_links-wrapper.footer_link {
  width: 35%;
}

.footer_link {
  color: var(--black-2);
  margin-left: 25px;
  font-size: 15px;
}

.footer_link:hover {
  color: var(--light-salmon);
}

.footer_link.legals {
  color: var(--light-salmon);
  margin-left: 10px;
  font-size: 15px;
  font-weight: 500;
}

.footer_link.l1 {
  color: var(--white-texts);
}

.subscribe-form_success {
  background-color: var(--white-cards);
  color: var(--black-2);
  font-size: 15px;
}

.subscribe-form_error {
  color: var(--black-2);
  font-size: 15px;
}

.contact-form_success {
  background-color: var(--white-cards);
  background-image: linear-gradient(to bottom, var(--chocolate), var(--light-salmon));
  color: var(--white-cards);
  font-size: 15px;
  font-weight: 500;
}

.contact-form_error {
  color: var(--black-2);
  font-size: 15px;
}

.text-span-orange-grad {
  background-image: linear-gradient(319deg, var(--chocolate), var(--light-salmon));
  color: var(--coral);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-slider_mask {
  z-index: -1;
  position: absolute;
  inset: 0%;
}

.text-span {
  color: #f06c4f;
}

.text-span-2 {
  color: var(--coral);
}

.text-span-3 {
  color: var(--chocolate);
}

.text-span-3._1 {
  color: var(--black-2);
}

.text-span-3._1.c1 {
  color: var(--white-texts);
}

.paragraph {
  text-align: justify;
  margin-top: 20px;
}

.paragraph.join {
  margin-top: 20px;
}

.paragraph.join._1 {
  margin-top: 0;
  padding-left: 10px;
}

.paragraph.l {
  color: var(--white-texts);
}

.heading {
  text-align: center;
}

.text-span-4 {
  color: var(--chocolate);
}

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

.heading-2 {
  font-size: 17px;
  line-height: 27px;
}

.div-block {
  box-shadow: none;
  padding: 10px 0 10px 10px;
}

.paragraph-2, .paragraph-3, .paragraph-4, .paragraph-5 {
  font-size: 15px;
}

.text-span-5, .text-span-6 {
  color: var(--chocolate);
}

.div-block-314293 {
  width: 100%;
}

.paragraph-2295 {
  color: #fff;
  font-size: 15px;
  line-height: 24px;
}

.heading-7529 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 21px;
  line-height: 30px;
}

.text-span-11 {
  color: #000;
  border-radius: 10px;
  padding-left: 20px;
  padding-right: 20px;
}

.div-block-48 {
  background-color: #44347aad;
  border-radius: 10px 10px 175px 175px;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  margin-top: -140px;
  display: none;
}

.bold-text-547 {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
}

.submit-button {
  background-color: #ffffff1c;
  border-radius: 20px;
  width: 125px;
  display: block;
}

.submit-button:hover {
  background-color: #f46607;
}

.heading-7527 {
  color: #000;
  text-align: center;
  font-size: 40px;
}

.field-label-3 {
  color: #fff;
}

.container-19 {
  max-width: 1300px;
}

.div-bpy {
  text-align: center;
  background-image: none;
  background-position: 0 0;
  border-radius: 20px;
  width: 100%;
  margin-right: 0;
}

.div-block-46 {
  text-align: center;
  background-image: none;
  background-position: 0 0;
  background-size: auto;
  border-radius: 20px;
  width: 100%;
  margin-right: 0;
}

.section-215 {
  padding-top: 60px;
  padding-bottom: 20px;
}

.form-block {
  background-color: #000000c7;
  border-radius: 30px;
  flex-flow: row-reverse wrap-reverse;
  justify-content: flex-start;
  align-items: center;
  width: 30%;
  padding: 20px;
}

.form-block.hide {
  display: none;
}

.link-173 {
  font-size: 15px;
  text-decoration: none;
}

.link-170 {
  color: #fff;
  font-size: 15px;
  line-height: 24px;
  text-decoration: none;
}

.footer-link {
  color: #fff;
  width: 100%;
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 15px;
  line-height: 24px;
  text-decoration: none;
}

.footer-link:hover, .footer-link.w--current:hover {
  color: #ee6c4e;
}

.packages {
  background-color: #f0faff;
  padding-top: 60px;
  padding-bottom: 60px;
}

.packages.hide {
  background-color: #f0faff00;
  padding: 100px 20px 0;
}

.dopy {
  text-align: center;
  background-image: none;
  background-position: 0 0;
  background-size: auto;
  border-radius: 20px;
  width: 100%;
  margin-right: 20px;
}

.div-block-314327 {
  justify-content: flex-start;
  align-items: center;
  width: 48%;
  display: flex;
}

.heading-7526 {
  text-align: center;
  font-size: 25px;
}

.image-32859 {
  width: 55px;
}

.text-field {
  border-radius: 15px;
}

.code-embed {
  border-radius: 10px;
  width: 100%;
  padding-top: 40px;
  padding-bottom: 0;
  display: flex;
}

.divy {
  text-align: center;
  background-image: none;
  background-position: 0 0;
  background-size: auto;
  border-radius: 20px;
  width: 100%;
  margin-right: 20px;
}

.div-block-314294 {
  border-radius: 38px;
  flex-flow: column;
  padding-top: 0;
}

.div-block-44 {
  text-align: center;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.tefy {
  border-radius: 15px;
}

.div-block-47 {
  background-color: #f06c4f;
  border-radius: 10px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 20px;
  padding: 0 20px 20px;
  display: block;
}

.div-block-49 {
  padding-bottom: 220px;
  position: relative;
  left: -116px;
}

.div-block-314245 {
  width: 100%;
}

.div-block-45 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-around;
  align-items: center;
  width: 48%;
  margin-bottom: 20px;
  display: flex;
}

.div-block-314328 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.section-216 {
  background-image: url('../images/Landing-Banner--Gym-.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 640px;
  min-height: 640px;
  overflow: hidden;
}

.heading-7533, .heading-7534, .heading-7535, .heading-7536, .heading-7537, .heading-7538, .heading-7539, .heading-7540, .heading-7541, .heading-7542, .heading-7543, .heading-7544 {
  font-size: 17px;
}

.div-block-314329, .div-block-314329.one {
  width: 100px;
}

.div-block-314330 {
  background-color: #fff;
  border-radius: 5px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 500px;
  min-height: 500px;
  padding: 20px;
  display: flex;
  box-shadow: inset 0 0 20px #f77d4f9e;
}

.text-span-12 {
  color: var(--chocolate);
  font-size: 23px;
  font-weight: 700;
}

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

.text-block.address {
  margin-top: 10px;
  font-size: 17px;
}

._1 {
  color: var(--black);
}

.div-bloy {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 20px;
  display: flex;
}

.fp {
  color: #f06c4f;
  margin-top: 0;
  font-size: 23px;
  line-height: 35px;
}

.imagecy {
  width: 30px;
  margin-left: 10px;
  margin-right: 10px;
}

.ipy {
  width: 30px;
  margin-left: 0;
  margin-right: 10px;
}

.div-block-314331 {
  margin-top: 10px;
  display: flex;
}

.div-block-314332 {
  background-color: #fde1d1;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  margin-bottom: 10px;
  display: flex;
}

.image-32860 {
  width: 50px;
}

.image-32860.pe {
  width: 41px;
}

.div-block-314333 {
  background-color: #000;
  height: 128px;
  overflow: hidden;
}

.section-217 {
  background-image: radial-gradient(circle, #0009, #000), url('../images/64e8987a3125cac6f9e00c3e_muay-thai-gloves.png');
  background-position: 0 0, 0 0;
  background-size: auto, auto;
  justify-content: center;
  align-items: center;
  height: 70vh;
  display: none;
}

.div-block-314334 {
  width: 55%;
}

.circle_text {
  color: #e8f2ee;
  text-align: center;
  max-width: 160px;
  font-size: 18px;
  line-height: 23px;
}

.in-circle {
  background-image: linear-gradient(#303030, #242424 53%, #161616);
  border-color: #000;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  position: absolute;
  inset: auto 0% 0%;
}

.in-circle.is6 {
  background-image: linear-gradient(0deg, #ffffff69, #ffffff47 53%, #ffffff1a);
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 200px;
  display: flex;
  position: relative;
  inset: 8vw 0% auto;
  transform: rotate(180deg);
}

.in-circle.is4 {
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  background-image: linear-gradient(#ffffff21, #ffffff1c 23%, #ffffff21 34%, #ffffff26 46%, #ffffff2e 57%, #ffffff36 69%, #ffffff4a 80%, #fff6);
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 200px;
  display: flex;
  position: relative;
  inset: 8vw auto 0%;
  transform: rotate(-175deg);
}

.in-circle.is3 {
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  background-image: linear-gradient(0deg, #fff6, #ffffff40 53%, #ffffff1a);
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 200px;
  display: flex;
  position: relative;
  top: -8vw;
  bottom: 0%;
  right: auto;
}

.in-circle.is5 {
  opacity: 0;
  width: 200px;
  height: 200px;
  position: relative;
  inset: -8vw 0% auto;
}

.in-circle.is3-copy {
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  background-image: linear-gradient(0deg, #ffffff69, #ffffff40 53%, #ffffff1a);
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 200px;
  display: flex;
  position: relative;
  inset: -8vw auto 0%;
  transform: rotate(0);
}

.circle {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  object-fit: fill;
  border: 1px solid #145e4a;
  border-radius: 50%;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 170vw;
  height: 170vw;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 50%;
  display: flex;
  position: absolute;
  top: 290px;
  left: auto;
  transform: rotate(-292deg);
}

.hero-section {
  background-color: #04392d;
  height: 100vh;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.heading-7545 {
  color: #e8f2ee;
  text-align: center;
  min-width: 300px;
  max-width: 500px;
}

.hero_container {
  background-color: #000;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  height: 100vh;
  padding-top: 80px;
  display: flex;
  position: relative;
  overflow: visible;
}

.bottom_text {
  opacity: 0;
  text-align: center;
  width: 400px;
  font-size: 22px;
  line-height: 32px;
  position: absolute;
  bottom: 88px;
  transform: translate(0, 145px);
}

.bottom_text.is3 {
  opacity: 0;
  color: #e8f2ee;
  width: 450px;
  transform: translate(0, 165px);
}

.bottom_text.is2 {
  opacity: 0;
  color: #e8f2ee;
  width: 450px;
  transform: translate(0, 155px);
}

.bottom_text.is1 {
  color: #e8f2ee;
  width: 450px;
  bottom: 100px;
  transform: translate(0, 145px);
}

.hero-section-wrapper {
  height: 400vh;
}

.circle_wrap {
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  width: auto;
  height: 170vw;
  display: flex;
  position: absolute;
  transform: rotate(45deg);
}

.circle_wrap.is4 {
  transform: rotate(315deg);
}

.circle_wrap.is2 {
  flex-flow: column;
  width: auto;
  height: 170vw;
  transform: rotate(-90deg);
}

.scroll-wraper {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  justify-content: center;
  align-items: center;
  height: auto;
  display: flex;
  position: absolute;
  inset: auto 0% 6%;
}

.scroll_text {
  color: #e8f2ee;
  position: static;
}

.heading-7546 {
  color: #e8f2ee;
  text-align: center;
  min-width: 300px;
  max-width: 500px;
}

.hero {
  flex-direction: column;
  align-items: center;
  font-size: 15rem;
  line-height: 1em;
  display: flex;
}

.hero.scroll {
  height: 300vh;
}

.hero.wrap {
  justify-content: center;
  height: 100vh;
  position: sticky;
  top: 0;
}

.track.first {
  margin-left: -200px;
}

.track.text {
  white-space: nowrap;
}

.track.last {
  margin-left: 200px;
}

.track.mask {
  color: #f0f0f0;
  background-image: url('../images/bg.jpg');
  background-position: 0 0;
  background-size: auto;
  border-radius: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 450px;
  height: 450px;
  display: flex;
  position: absolute;
  overflow: hidden;
}

._3d-stage-title {
  color: var(--white-texts);
  text-align: center;
  letter-spacing: -.03em;
  text-transform: uppercase;
  font-size: 6em;
  font-weight: 700;
  line-height: .9em;
}

._3d-stage-title._1 {
  color: var(--chocolate);
}

._3d-subline-wrapper {
  z-index: 3;
  text-align: right;
  max-width: 18em;
  margin-top: 2.6em;
  position: absolute;
  inset: auto 3em 3em auto;
}

._3d-logo-shape-2 {
  z-index: 2;
  filter: blur(1.1em);
  background-image: linear-gradient(to right, #4e00ff 33%, #07ecff);
  border-radius: 100vw;
  width: 100%;
  height: 4em;
  position: absolute;
  inset: 1em auto auto 1em;
}

.container-w3 {
  width: 100%;
  max-width: 60em;
  margin-left: auto;
  margin-right: auto;
}

.container-w3.gutter-outside {
  display: block;
}

.section-3d-scroll {
  z-index: -1;
  color: #fdf06f;
  background-color: #fff;
  width: 100%;
  margin-top: -184px;
  position: relative;
}

.intro-description {
  padding: 2em 4em 1.7em;
}

._3d-showreel-wrapper {
  z-index: 3;
  max-width: 18em;
  position: absolute;
  inset: auto auto 3em 3em;
}

.lottie-play {
  width: 1.5em;
  height: 1.5em;
  margin-left: .2em;
  transform: scale(1.7);
}

._3d-intro-wrapper {
  z-index: 1;
  color: #1a1c20;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: block;
  position: absolute;
  inset: 0 0% 0%;
}

._3d-hand-image-shadow {
  z-index: 0;
  filter: blur(3.5em);
  background-image: linear-gradient(#00000080 65%, #03030340);
  border-radius: 999em;
  width: 14%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: auto 23% 0% 0%;
  transform: rotate(-20deg);
}

._3d-stage-inner {
  perspective: 60em;
  max-width: 110em;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}

._3d-hand-wrapper {
  z-index: 1;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
}

._3d-brand-lottie {
  z-index: 2;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: 0%;
  transform: scale(1.4);
}

._3d-hand-image {
  height: 100%;
  display: none;
}

._3d-brand-outline {
  z-index: 3;
  opacity: 1;
  -webkit-backdrop-filter: blur(.2em);
  backdrop-filter: blur(.2em);
  background-color: #fdf06f26;
  border-radius: 999em;
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0%;
  box-shadow: inset 0 -2px .4em #fdf06f70;
}

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

._3d-content-wrapper {
  z-index: 1;
  perspective: 60px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 60em;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 140px 3em 32vh;
  font-size: 1.3em;
  display: flex;
  position: relative;
}

._3d-preview-background {
  z-index: 0;
  background-image: linear-gradient(#000000ed, #000000ed), url('../images/limited-membership-spots.png');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  border-radius: 1em;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.text-highlight {
  background-color: #fdf06f;
  padding-left: 2px;
  padding-right: 2px;
}

._3d-stage-sticky {
  width: 100%;
  height: 100vh;
  padding-top: 220px;
  position: sticky;
  overflow: hidden;
}

._3d-hand-image-wrapper {
  z-index: 1;
  height: 100%;
  position: absolute;
  top: 0%;
}

._3d-hand-image-wrapper._5 {
  justify-content: center;
  align-items: center;
  width: 850px;
  padding-top: 0;
  display: flex;
  top: 0%;
}

._3d-hand-image-wrapper._2 {
  z-index: 3;
}

._3d-hand-image-wrapper._1 {
  z-index: 2;
}

.title2 {
  letter-spacing: -.03em;
  font-size: 3.4em;
  font-weight: 600;
  line-height: 1.1em;
}

._3d-stage-wrapper {
  perspective: 41em;
  perspective-origin: 50% 100%;
  transform-origin: 50% 0;
  width: 100%;
  max-width: 100%;
  height: 80vh;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  top: -100px;
}

.copy-medium {
  font-size: 1.2em;
  font-weight: 400;
  line-height: 1.45em;
}

._3d-preview-background-glare {
  z-index: 2;
  filter: blur(8em);
  background-color: #ffffff29;
  border-radius: 999em;
  align-items: flex-start;
  width: 59em;
  position: absolute;
  inset: 0% 0% auto auto;
}

._3d-brand-blur-1 {
  z-index: 1;
  opacity: .72;
  filter: blur(1.6em);
  background-color: #ff00eb;
  border-radius: 100vw;
  width: 9em;
  height: 3.3em;
  margin-bottom: 1em;
  margin-left: 4em;
  position: absolute;
  inset: auto auto 0% 0%;
}

._3d-brand-blur-wrapper {
  z-index: 1;
  -webkit-backdrop-filter: blur(.6em);
  backdrop-filter: blur(.6em);
  background-color: #0003;
  background-image: linear-gradient(#38fff700 67%, #38fff730), linear-gradient(#38fff73b, #38fff700 30%), radial-gradient(circle, #38fff700 84%, #38fff78c);
  border-radius: 100vw;
  width: 8em;
  height: 4em;
  padding: 1em 1.4em 1em 1.8em;
  position: relative;
  overflow: hidden;
}

._3d-subline-text {
  font-size: 1.3em;
  font-weight: 500;
  line-height: 1.2em;
}

._3d-brand-wrapper {
  z-index: 3;
  transform-origin: 50% 0;
  position: absolute;
  inset: 3em auto auto 3em;
  transform: perspective(60em);
}

._3d-play-toggle-symbol {
  z-index: 3;
  -webkit-backdrop-filter: blur(.6em);
  backdrop-filter: blur(.6em);
  background-color: #fdf06f33;
  border-radius: 999em;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 3.5em;
  height: 3.5em;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 13px 3em #41200557;
}

._3d-showreel-toggle-wrapper {
  grid-column-gap: .75em;
  align-items: center;
  margin-top: 1.2em;
  display: flex;
}

._3d-hand-inner {
  perspective: 60em;
  perspective-origin: 50%;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 78vh;
  max-height: 55em;
  display: flex;
  position: relative;
}

._3d-stage-title-wrapper._1 {
  display: flex;
}

.tutorial-link {
  color: #fdf06f;
  letter-spacing: .08em;
  text-transform: uppercase;
  background-color: #000;
  border: 2px solid #000;
  border-radius: 999em;
  padding: .8em 4em .7em;
  font-size: .9em;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.tutorial-link:hover {
  color: #000;
  background-color: #0000;
  border-style: dashed;
}

.image-32861 {
  filter: invert();
}

.div-block-314335 {
  border-radius: 5px;
  width: 640px;
  height: 230px;
}

.div-block-314336 {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 50px;
  display: flex;
}

.div-block-314337 {
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.text-block-2 {
  color: #fff;
  padding-left: 20px;
  font-size: 23px;
}

.div-block-314338 {
  justify-content: space-around;
  align-items: center;
  display: flex;
}

.div-block-314339 {
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  display: flex;
}

.div-block-314340 {
  background-color: #fff;
  border-radius: 100px;
  width: 30px;
  height: 30px;
}

.div-block-314341 {
  background-color: #f06c4f;
  border-radius: 100px;
  width: 23px;
  height: 23px;
}

.image-32862 {
  border-radius: 5px;
  width: 100%;
}

.bold-text-548, .bold-text-549, .bold-text-550, .bold-text-551, .bold-text-552 {
  font-weight: 400;
}

.div-block-314342 {
  width: 70%;
  margin-top: 20px;
  display: flex;
}

.div-block-314343 {
  justify-content: flex-start;
  align-items: center;
  width: 40%;
  display: flex;
}

.bold-text-556, .bold-text-557, .bold-text-558, .bold-text-559, .bold-text-560, .bold-text-561, .bold-text-562, .bold-text-563 {
  font-weight: 400;
}

.image-32866, .image-32867, .image-32868 {
  width: 100%;
}

@media screen and (min-width: 1920px) {
  .page-wrapper {
    overflow: hidden;
  }

  .hero-slider_master-wrapper {
    min-height: 950px;
  }

  .layout-2-col {
    grid-column-gap: 100px;
  }

  .testimonial-slider_mask {
    width: auto;
    max-width: 600px;
  }

  .trainer-card_image-wrapper {
    height: 22em;
    font-size: 18px;
  }

  .section-216 {
    background-size: cover;
    height: 750px;
    min-height: 750px;
  }

  .in-circle.is6, .in-circle.is4 {
    top: 5vw;
  }

  .in-circle.is3, .in-circle.is5, .in-circle.is3-copy {
    top: -5vw;
  }

  .circle {
    transform: rotate(0);
  }

  .scroll_text {
    font-size: 19px;
  }
}

@media screen and (max-width: 991px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 40px;
  }

  h3 {
    font-size: 18px;
    line-height: 1.4;
  }

  .page-padding {
    padding-left: 25px;
    padding-right: 25px;
  }

  .hero-slider_master-wrapper {
    min-height: auto;
  }

  .hero-slider_custom-nav {
    padding-left: 25px;
    padding-right: 25px;
  }

  .hero-slider_background-image {
    min-height: 750px;
    max-height: none;
  }

  .navbar_link {
    border-bottom: 2px solid var(--button-light);
    color: var(--black-2);
    text-align: center;
    margin-left: 0;
    margin-right: 0;
    padding-top: 20px;
    padding-bottom: 20px;
    font-weight: 500;
  }

  .navbar_link:hover {
    color: var(--coral);
    border-left-width: 0;
    border-right-width: 0;
    padding-left: 15px;
    padding-right: 15px;
  }

  .navbar_link:active {
    transform: none;
  }

  .button-wrapper {
    margin-top: 50px;
  }

  .button {
    font-size: 15px;
  }

  .button:hover {
    padding-left: 2.5em;
    padding-right: 2.5em;
  }

  .button.size-small:hover {
    padding-left: 2em;
    padding-right: 2em;
  }

  .button-divider {
    width: 20px;
  }

  .section-home-about._1 {
    padding-top: 0;
  }

  .navbar_menu {
    background-color: var(--white-cards);
    background-image: linear-gradient(#fdfdfdf5, #fdfdfdf5), url('../images/Bg-Pattern1.svg');
    background-position: 0 0, 0 0;
    background-size: auto, auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-height: 100vh;
    padding-top: 120px;
    display: flex;
    position: fixed;
    inset: 0% auto auto 0%;
    overflow: auto;
    box-shadow: 7px 7px 60px #0000000d;
  }

  .navbar_menu-button {
    color: #fff;
    padding-right: 0;
  }

  .navbar_menu-button.w--open {
    color: var(--coral);
    background-color: #0000;
  }

  .padding-vertical-large {
    padding-top: 80px;
    padding-bottom: 20px;
  }

  .padding-vertical-large.l {
    padding-top: 0;
  }

  .layout-2-col {
    grid-column-gap: 0vw;
    grid-row-gap: 60px;
    grid-template-columns: 1fr;
  }

  .layout-2-col.content-right, .layout-2-col.content-left {
    grid-template-columns: 1fr;
  }

  .layout-2-col_content-wrapper {
    width: 100%;
    max-width: none;
  }

  .layout-2-col_image {
    max-height: 80vh;
  }

  .padding-bottom-large {
    padding-bottom: 80px;
  }

  .section-home-packages.background-pattern1.fet.cl {
    padding-top: 0;
  }

  .section-header-wrapper {
    margin-bottom: 60px;
  }

  .section-header-wrapper.centered-pc-tab.wi {
    width: 100%;
  }

  .max-large {
    max-width: 600px;
  }

  .grid-3-col {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .grid-3-col.align-items-start {
    grid-template-columns: 1fr 1fr;
  }

  .service-card {
    padding: 1.5em;
  }

  .text-size-small {
    font-size: 14px;
  }

  .margin-top-small {
    margin-top: 36px;
  }

  .service-card_icon {
    width: 60px;
    height: 60px;
    margin-bottom: 24px;
  }

  .testimonial-slider_arrow-left {
    width: 45px;
    height: 45px;
    top: -70px;
    right: 60px;
  }

  .testimonial-slider_arrow-right {
    width: 45px;
    height: 45px;
    top: -70px;
  }

  .testimonial-slider_mask {
    width: 45vw;
  }

  .testimonial-slider_content-wrapper {
    padding: 1.5em;
  }

  .text-size-medium {
    font-size: 18px;
  }

  .trainer-card {
    flex-direction: column;
    height: 100%;
    display: flex;
  }

  .trainer-card_content-wrapper {
    flex: 1;
    padding: 1.5em;
  }

  .social-media-link_list {
    grid-column-gap: 12px;
  }

  .social-media-link_icon {
    width: 36px;
  }

  .blog-card_content-wrapper {
    padding: 1.5em;
  }

  .blog-card_category {
    margin-bottom: 12px;
    font-size: 12px;
  }

  .subscribe-form_master-wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .subscribe-form_field, .contact-form_field {
    min-height: 60px;
  }

  .footer_links-wrapper {
    width: 50%;
  }

  .footer_links-wrapper.footer_link {
    width: 64%;
  }

  .footer_link {
    margin-left: 20px;
    font-size: 14px;
  }

  .footer_link.legals {
    font-size: 14px;
  }

  .home-hero-custom-width {
    max-width: 600px;
  }

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

  .div-block-48 {
    margin-top: -100px;
    display: none;
  }

  .div-bpy, .div-block-46 {
    width: 60%;
    margin-bottom: 60px;
  }

  .section-215 {
    padding-bottom: 0;
  }

  .footer-link {
    text-align: center;
  }

  .dopy {
    width: 60%;
    margin-bottom: 60px;
  }

  .div-block-314327 {
    width: 100%;
  }

  .code-embed {
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .divy {
    width: 60%;
    margin-bottom: 60px;
  }

  .div-block-44 {
    flex-flow: column;
    padding-left: 10px;
    padding-right: 10px;
  }

  .div-block-47 {
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 0;
  }

  .div-block-49 {
    padding-bottom: 200px;
  }

  .div-block-45 {
    flex-flow: column;
    width: 100%;
    display: flex;
  }

  .section-216 {
    background-position: 50%;
    background-size: cover;
    height: 320px;
    min-height: 320px;
  }

  .circle_text {
    max-width: 124px;
    font-size: 14px;
  }

  .in-circle.is6, .in-circle.is4, .in-circle.is3, .in-circle.is5, .in-circle.is3-copy {
    width: 150px;
    height: 150px;
  }

  .scroll_text {
    font-size: 12px;
  }

  .section-3d-scroll {
    height: auto;
    display: none;
  }

  ._3d-intro-wrapper {
    padding-top: 6.5em;
    padding-bottom: 6.5em;
    position: static;
  }

  ._3d-content-wrapper {
    font-size: 1.6vw;
  }

  ._3d-stage-sticky {
    height: auto;
    position: static;
  }

  ._3d-stage-wrapper {
    height: 90vh;
    position: static;
  }

  ._3d-hand-inner {
    width: 90%;
    height: 65vh;
  }

  .div-block-314335 {
    width: 100%;
    height: 300px;
  }

  .div-block-314342 {
    width: 85%;
  }
}

@media screen and (max-width: 767px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 45px;
    line-height: 1.15;
  }

  h2 {
    font-size: 40px;
  }

  .page-padding {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-slider_master-wrapper {
    padding-top: 120px;
    padding-bottom: 140px;
  }

  .hero-slider_custom-nav {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-slider_background-image {
    min-height: 650px;
  }

  .navbar_link {
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 14px;
  }

  .navbar_brand-logo {
    font-size: 36px;
  }

  .button.size-small {
    font-size: 13px;
  }

  .button-divider {
    width: 20px;
  }

  .navbar_menu {
    padding-top: 100px;
  }

  .padding-vertical-large {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .layout-2-col_content-wrapper {
    width: 100%;
  }

  .section-subtitle_text {
    font-size: 15px;
  }

  .padding-bottom-large {
    padding-bottom: 60px;
  }

  .section-header-wrapper {
    margin-bottom: 50px;
  }

  .section-header-wrapper.centered-pc-tab {
    text-align: left;
    align-items: flex-start;
  }

  .section-header-wrapper.centered-pc-tab.wi {
    justify-content: center;
    align-items: center;
  }

  .section-header-wrapper.varient-2-col {
    grid-row-gap: 50px;
    grid-template-columns: auto;
  }

  .section-subtitle_line-vertical {
    transform-origin: 0%;
  }

  .grid-3-col {
    grid-template-columns: 1fr;
  }

  .service-card {
    height: 258px;
    min-height: 258px;
  }

  .testimonial-slider {
    margin-bottom: 70px;
  }

  .testimonial-slider_arrow-left {
    inset: auto auto -70px 0%;
  }

  .testimonial-slider_arrow-right {
    inset: auto auto -70px 60px;
  }

  .testimonial-slider_mask {
    width: auto;
    min-width: auto;
  }

  .testimonial-slider_customer-image {
    min-width: 65px;
    min-height: 65px;
    max-height: 65px;
  }

  .text-size-medium {
    font-size: 17px;
  }

  .trainer-card_image-wrapper {
    height: auto;
  }

  .subscribe-form_master-wrapper {
    padding: 40px;
  }

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

  .footer_links-wrapper {
    width: 70%;
    margin-top: 10px;
  }

  .footer_links-wrapper.footer_link {
    width: 85%;
  }

  .footer_link {
    margin-left: 10px;
    margin-right: 10px;
  }

  .home-hero-custom-width {
    max-width: 450px;
  }

  .paragraph.join._1 {
    padding-left: 0;
  }

  .div-block-48 {
    display: none;
  }

  .div-bpy, .div-block-46 {
    width: 70%;
    margin-bottom: 60px;
    margin-right: 0;
  }

  .section-215 {
    padding-top: 40px;
  }

  .form-block {
    width: 50%;
  }

  .footer-link {
    text-align: center;
    width: 110%;
    font-size: 17px;
  }

  .packages {
    padding-bottom: 60px;
  }

  .packages.hide {
    padding-top: 60px;
  }

  .dopy, .divy {
    width: 70%;
    margin-bottom: 60px;
    margin-right: 0;
  }

  .div-block-45 {
    flex-flow: column;
    margin-bottom: 0;
  }

  .section-216 {
    height: 280px;
    min-height: 280px;
  }

  .in-circle.is6, .in-circle.is4 {
    top: 12vw;
  }

  .in-circle.is3, .in-circle.is3-copy {
    top: -12vw;
  }

  .circle {
    transform: rotate(-292deg);
  }

  .hero {
    font-size: 8rem;
  }

  ._3d-subline-wrapper {
    width: 45%;
    max-width: 16em;
    bottom: 2em;
    right: 2em;
  }

  .intro-description {
    padding-left: 0;
    padding-right: 0;
  }

  ._3d-showreel-wrapper {
    bottom: 2em;
    left: 2em;
  }

  ._3d-hand-image {
    object-fit: contain;
    object-position: 50% 50%;
  }

  .title2 {
    font-size: 2.7em;
  }

  .copy-medium {
    font-size: 1.3em;
    line-height: 1.4em;
  }

  ._3d-brand-blur-wrapper {
    font-size: .8em;
  }

  ._3d-subline-text {
    font-size: 1.1em;
  }

  ._3d-brand-wrapper {
    top: 2em;
    left: 2em;
  }

  ._3d-showreel-toggle-wrapper {
    grid-row-gap: .75em;
    flex-direction: column;
    align-items: flex-start;
  }

  ._3d-hand-inner {
    width: 80%;
    height: 55vh;
  }

  .div-block-314335 {
    background-repeat: no-repeat;
    background-size: contain;
    height: 200px;
  }

  .div-block-314342 {
    width: 100%;
  }
}

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

  .hero-slider_background-image {
    min-height: 100vh;
  }

  .navbar_brand-logo {
    font-size: 32px;
  }

  .button {
    padding: 1em 1.5em;
    font-size: 14px;
  }

  .button:hover {
    padding-left: 1.5em;
    padding-right: 1.5em;
  }

  .button-divider {
    width: 15px;
  }

  .section-home-about._1 {
    padding-top: 50px;
  }

  .padding-vertical-large {
    padding-top: 0;
    padding-bottom: 50px;
  }

  .layout-2-col {
    grid-row-gap: 50px;
  }

  .section-home-packages.background-pattern1 {
    padding-top: 50px;
  }

  .section-home-packages.background-pattern1.fet.cl {
    padding-top: 70px;
  }

  .grid-3-col.align-items-start {
    grid-template-columns: 1fr;
    display: block;
  }

  .service-card {
    height: auto;
    min-height: auto;
    margin-top: 20px;
  }

  .subscribe-form_master-wrapper {
    text-align: left;
    align-items: flex-start;
    padding: 1.5em;
  }

  .subscribe-form_field {
    min-height: 55px;
    font-size: 15px;
  }

  .subscribe-form_submit-button {
    width: 100%;
    min-height: 55px;
    font-size: 15px;
    position: static;
  }

  .subscribe-form_submit-button:hover {
    padding-left: 1.2em;
    padding-right: 1.2em;
  }

  .contact-form_block {
    padding: 1.5em;
  }

  .contact-form_field {
    min-height: 55px;
    font-size: 15px;
  }

  .contact-form_field::placeholder {
    font-size: 13px;
  }

  .footer {
    padding-top: 70px;
  }

  .footer_content-wrapper {
    text-align: center;
    align-items: center;
  }

  .footer_links-wrapper {
    text-align: center;
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .footer_link {
    margin-left: 0;
    margin-right: 0;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .footer_link.legals {
    padding-top: 2px;
    padding-bottom: 2px;
    font-size: 13px;
  }

  .home-hero-custom-width {
    max-width: 280px;
  }

  .paragraph.join._1 {
    padding-left: 0;
    font-size: 11px;
    line-height: 1;
  }

  .heading {
    font-size: 30px;
    line-height: 40px;
  }

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

  .heading-7527 {
    font-size: 30px;
    line-height: 40px;
  }

  .div-bpy, .div-block-46 {
    width: 100%;
    margin-bottom: 20px;
  }

  .section-215 {
    padding-top: 20px;
  }

  .form-block {
    width: 60%;
  }

  .dopy {
    width: 100%;
  }

  .divy {
    width: 100%;
    margin-bottom: 20px;
  }

  .heading-7530, .heading-7531 {
    font-size: 30px;
    line-height: 40px;
  }

  .heading-7532 {
    text-align: center;
    font-size: 30px;
    line-height: 40px;
  }

  .section-216 {
    height: 140px;
    min-height: 140px;
  }

  .div-block-314330 {
    height: auto;
    min-height: auto;
  }

  .div-bloy {
    justify-content: center;
    align-items: center;
    width: 185%;
    padding-left: 0;
  }

  .circle_text {
    max-width: 100px;
    font-size: 11px;
    line-height: 13px;
  }

  .in-circle.is6 {
    width: 110px;
    height: 110px;
    top: 15vw;
  }

  .in-circle.is4 {
    width: 110px;
    height: 111px;
    top: 14vw;
  }

  .in-circle.is3 {
    width: 110px;
    height: 110px;
    top: -15vw;
  }

  .in-circle.is5 {
    width: 115px;
    height: 115px;
  }

  .in-circle.is3-copy {
    width: 115px;
    height: 115px;
    top: -15vw;
  }

  .circle {
    transform: rotate(-112deg);
  }

  .heading-7545 {
    min-width: 0;
    max-width: 267px;
    font-size: 22px;
    line-height: 28px;
  }

  .bottom_text.is3, .bottom_text.is2, .bottom_text.is1 {
    width: 280px;
    font-size: 16px;
    line-height: 20px;
  }

  .scroll-wraper {
    bottom: 4%;
  }

  .heading-7546 {
    min-width: 0;
    max-width: 267px;
    font-size: 22px;
    line-height: 28px;
  }

  .hero {
    font-size: 6rem;
  }

  ._3d-hand-wrapper {
    justify-content: center;
    align-items: center;
  }

  .div-block-314335 {
    height: auto;
    margin-top: 20px;
  }

  .div-block-314342 {
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    display: flex;
  }

  .div-block-314343 {
    justify-content: flex-start;
    align-items: center;
    width: 100%;
  }

  .image-32863, .image-32864, .image-32865 {
    max-width: 70%;
  }

  .div-block-314344, .div-block-314345, .div-block-314346 {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .bold-text-553, .bold-text-554, .bold-text-555 {
    font-size: 16px;
    line-height: 1.7;
  }
}

#w-node-d7274279-fc6f-914f-1c35-d8e76612c907-1e5d38de {
  align-self: center;
}

#w-node-_20d76ae5-e923-705e-42cd-5e4a61342851-1e5d38de {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

@media screen and (max-width: 991px) {
  #w-node-a98f08f9-784f-5248-30f2-2e9d3fbb6dcf-1e5d38de {
    order: -9999;
  }

  #w-node-c3568776-2bd8-c7ff-62ad-088ac84a3c65-1e5d38de, #w-node-_639dc31d-7d1f-af93-9d31-2814f3d4a153-1e5d38de {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


