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

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 {
  background-color: #000;
  overflow: hidden;
}

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

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

.page-padding {
  background-color: #000;
  margin-top: -7px;
  padding-top: 30px;
  padding-left: 40px;
  padding-right: 40px;
}

.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: 1250px;
  margin-left: auto;
  margin-right: auto;
}

.hero-slider_master-wrapper {
  z-index: 2;
  min-height: 100vh;
  color: var(--white-texts);
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding-top: 140px;
  padding-bottom: 140px;
  display: flex;
}

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

.hero-slider_slide {
  color: #fff;
}

.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: flex;
}

.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 {
  color: #fff;
  background-color: #ffffff26;
  border-left: 1px solid #ae8446;
  border-right: 1px solid #ae8446;
  padding-left: 25px;
  padding-right: 25px;
  font-weight: 500;
}

.navbar_link:active {
  border-left-color: #ae8446;
  border-right-color: #ae8446;
  transform: translate(0, 2px);
}

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

.text-span-orange-plain {
  color: var(--coral);
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(#8d662e, #bc9050);
  -webkit-background-clip: text;
  background-clip: text;
}

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

.button-wrapper {
  perspective: 1000px;
  perspective-origin: 50%;
  flex-wrap: wrap;
  margin-top: 60px;
  display: flex;
}

.button {
  background-color: var(--chocolate);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background-image: linear-gradient(174deg, #7c5722, #be9252);
  border-radius: 2px;
  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-divider {
  width: 28px;
}

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

.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-template-columns: 1fr minmax(500px, 1fr);
}

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

.layout-2-col_content-wrapper {
  max-width: 500px;
}

.layout-2-col_image-wrapper {
  position: relative;
}

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

.image-load-bg-layer {
  z-index: -1;
  background-color: #9b7339;
  border-radius: 2px;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: auto 0% 0%;
}

.section-subtitle_text {
  color: var(--white-cards);
  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: #b4894b;
  width: 100px;
  height: 2px;
  margin-left: 10px;
}

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

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

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

.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(--black);
}

.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.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: #bc8f50;
  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 {
  align-items: start;
}

.service-card {
  background-color: var(--white-cards);
  background-image: linear-gradient(#b58b4c, #825d27);
  border-radius: 2px;
  flex-direction: column;
  justify-content: space-between;
  padding: 2em;
  display: flex;
  box-shadow: 0 0 60px #0000000d;
}

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

.text-size-small.sad1 {
  color: #000;
}

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

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

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

.testimonial-slider_arrow-left {
  background-color: var(--chocolate-2);
  width: 50px;
  height: 50px;
  box-shadow: inset 0 0 0 1px var(--chocolate);
  color: var(--chocolate);
  border-radius: 2px;
  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);
  width: 50px;
  height: 50px;
  box-shadow: inset 0 0 0 1px var(--chocolate);
  color: var(--chocolate);
  border-radius: 2px;
  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;
}

.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;
}

.blog-card {
  height: 100%;
  color: var(--black-2);
  cursor: pointer;
  border-radius: 2px;
  flex-direction: column;
  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;
}

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

.contact-link_icon {
  color: #b08548;
  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 {
  padding-top: 25px;
  padding-bottom: 25px;
}

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

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

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

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

.footer_link:hover {
  color: #af8447;
}

.footer_link.legals {
  color: #b08547;
  font-size: 15px;
  font-weight: 500;
}

.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 {
  color: var(--coral);
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(192deg, #7c5722, #be9252);
  -webkit-background-clip: text;
  background-clip: text;
}

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

.heading-h2 {
  color: #f82323;
  text-align: center;
  font-size: 50px;
  line-height: 50px;
}

.heading-h2.ben {
  color: #000;
  margin-bottom: 20px;
}

.ben-item {
  background-color: #222;
  background-image: linear-gradient(#7c5722, #be9252);
  border-radius: 14px;
  align-items: center;
  width: 50%;
  margin-left: 30px;
  margin-right: 30px;
  padding: 35px 40px;
  display: flex;
}

.bene-p {
  text-align: center;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}

.ben-content {
  flex: 1;
  margin-left: 35px;
}

.ben-group {
  margin-top: 60px;
  display: flex;
}

.ben-head-3 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
  line-height: 20px;
}

.container-2 {
  z-index: 10;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5%;
  padding-right: 5%;
  position: relative;
}

.ben-p {
  color: var(--white-cards);
  font-size: 14px;
  line-height: 24px;
}

.benefits {
  padding-top: 50px;
  padding-bottom: 50px;
}

.heading {
  font-size: 60px;
}

.heading-2, .heading-3, .heading-4 {
  color: var(--white-cards);
}

.div-block-132 {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 16px;
  padding-bottom: 16px;
}

.bbb-wrap-1-7 {
  flex-direction: column;
  flex: 1;
  justify-content: flex-end;
  display: flex;
}

.heading-9 {
  color: #2a3281;
  margin-top: 13px;
  font-size: 3vw;
  line-height: 4vw;
}

.heading-9.ssefd {
  color: #000;
  text-align: left;
  padding-left: 40px;
  font-size: 2.5vw;
}

.heading-8 {
  color: #000;
  text-transform: uppercase;
  font-size: 1.3vw;
}

.heading-8.sssssss {
  text-align: left;
  padding-left: 42px;
}

.bbb-text-9 {
  color: #fff;
  margin-bottom: .5em;
  font-size: 1.6em;
  font-weight: 500;
  line-height: 1em;
}

.div-block-133 {
  height: 5px;
  position: relative;
  top: 68px;
}

.bbb-wrap-1-1 {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.bbb-wrap-9 {
  background-color: #ffffff12;
  border: 1px solid #ffffff1c;
  border-radius: 20px;
  flex-direction: column;
  padding: 1.5em;
  display: flex;
  position: relative;
  box-shadow: 1px 1px 7px #0000000f;
}

.div-block-17 {
  background-color: #f60000;
  border-radius: 20px;
  width: 101px;
  height: 4px;
}

.div-block-17.sdgh {
  margin-left: 42px;
}

.bbb-text-6 {
  color: #fff;
  margin-bottom: .1em;
  font-size: 1.8em;
  font-weight: 700;
  line-height: 1.3em;
}

.bold-text-3 {
  color: #fff;
}

.bbb-wrap-1-2 {
  color: #d90000;
  border-bottom: 1px solid #a9a9a9;
  align-items: flex-start;
  margin-top: 8px;
  margin-bottom: .8em;
  display: flex;
}

.div-block-131 {
  background-color: #000;
  border-top: 5px #e60000;
  margin-top: -15px;
  padding-top: 81px;
  padding-bottom: 109px;
  position: relative;
  overflow: hidden;
}

.bbb-button-2 {
  color: #fff;
  text-transform: uppercase;
  background-color: #d9000000;
  background-image: linear-gradient(#8b642d, #b88c4d);
  border: 2px #d90000;
  border-bottom-color: #d9000000;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  padding: .5em 1em;
  font-size: 1.4em;
  font-weight: 900;
  line-height: 1.3em;
  transition: all .45s;
  display: flex;
}

.bbb-button-2:hover {
  color: #fff;
  background-color: #000;
  border-color: #000;
  transform: translate(4px, -6px);
}

.bbb-wrap-8 {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.div-block-134 {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 16px;
  padding-bottom: 16px;
}

.heading-10 {
  color: #2a3281;
  margin-top: 13px;
  font-size: 3vw;
  line-height: 4vw;
}

.heading-10.ssefd {
  color: #fff;
  text-align: left;
  padding-left: 40px;
  font-size: 2.5vw;
}

.heading-11 {
  color: #000;
  text-transform: uppercase;
  font-size: 1.3vw;
}

.heading-11.sssssss {
  color: #fff;
  text-align: left;
  padding-left: 42px;
}

.div-block-135 {
  height: 5px;
  position: relative;
  top: 68px;
}

.div-block-136 {
  background-color: #f60000;
  border-radius: 20px;
  width: 101px;
  height: 4px;
}

.div-block-136.sdgh {
  background-color: #b38a4b;
  margin-left: 42px;
}

.text-block-67 {
  color: #fff;
  letter-spacing: 1px;
  margin-top: 0;
  padding-left: 0;
  font-family: Montserrat, sans-serif;
  font-size: 11px;
  font-weight: 500;
}

.text-block-67.nsda {
  color: #fff;
  text-align: left;
  text-align: left;
}

.text-span-89 {
  color: #c00001;
}

.bold-text-4 {
  color: #a2793d;
}

.text-span-83 {
  color: #fff;
  letter-spacing: 2px;
  background-color: #0000;
  font-size: 10px;
  text-decoration: none;
}

.text-span-83:hover {
  color: #ff0101;
  background-color: #fff;
}

.heading-91 {
  text-align: center;
  text-transform: uppercase;
  font-size: 31px;
}

.div-block-98 {
  background-color: #fff0;
  width: 100%;
  height: auto;
  margin: -356px auto 0;
  padding: 0 61px 100px;
  display: block;
  overflow: hidden;
}

.text-field-5 {
  color: #000;
  border: 0 solid #0000;
  border-bottom: 1px solid #c9c9c9;
  border-radius: 4px;
  width: 100%;
  margin-bottom: 27px;
  padding-left: 8px;
  padding-right: 8px;
  font-size: 15px;
  font-weight: 500;
}

.text-field-5:active {
  color: #fff;
  border-bottom-color: #0085ff;
}

.text-field-5::placeholder {
  color: #000;
  font-size: 12px;
  font-weight: 500;
}

.div-block-78 {
  background-color: #0e0e0e;
  background-image: linear-gradient(#001525e3, #001525e3), url('../images/adsf.jpg');
  background-position: 0 0, 0 0;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  padding-top: 75px;
  padding-bottom: 122px;
  display: block;
}

.div-block-78.asdae {
  color: #fff;
  text-transform: capitalize;
  background-color: #000;
  background-image: linear-gradient(#000000d9 100%, #fff), url('../images/bodybuilder-engaged-battle-ropes-muscle-600nw-2530505597.webp');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  background-attachment: scroll, scroll;
  width: 100%;
  height: 527px;
  padding-top: 72px;
  padding-bottom: 0;
}

.text-span-82 {
  color: #b38849;
}

.footer-logo-3 {
  width: auto;
  height: auto;
  text-decoration: none;
}

.submit-button-3 {
  color: #000;
  text-transform: uppercase;
  background-color: #fff;
  border-radius: 6px;
  width: 100%;
  margin-top: 24px;
  padding: 10px 31px;
  font-size: 16px;
  font-weight: 500;
}

.footer-company-details {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  width: 100%;
  max-width: 306px;
  display: flex;
}

.div-block-91 {
  padding-top: 0;
}

.footer-legal {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 10px;
  display: flex;
}

.row-13 {
  background-color: #0000;
  border: 0 solid #0000;
  border-radius: 100px;
}

.footer-legal-links-3 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  color: #fff;
  align-items: center;
  display: flex;
}

.paragraph-17 {
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 17px;
  font-size: 30px;
  font-weight: 400;
  text-decoration: none;
}

.success-message-2 {
  color: #fff;
  background-color: #ddd0;
  width: 430px;
  max-width: 100%;
  padding-top: 157px;
  padding-bottom: 114px;
}

.div-block-90 {
  background-color: #ce0f0f;
  border-radius: 0;
  width: 100%;
  max-width: 100%;
  height: 5px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.div-block-90.sgr {
  background-color: #ce0f0f;
  border-radius: 0;
  width: 100%;
  max-width: 100%;
  height: 5px;
}

.div-block-97 {
  z-index: 40000;
  background-color: #024fba00;
  border: 0 solid #000;
  border-radius: 10px;
  width: 940px;
  max-width: 100%;
  height: 700px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
  box-shadow: 0 15px 40px -7px #0000007a;
}

.text-block-63 {
  font-size: 22px;
  font-weight: 900;
}

.footer-legal-link-3 {
  color: #fff;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 400;
  line-height: 20px;
  text-decoration: none;
}

.footer-legal-link-3:hover {
  color: #fff;
}

.footer-legal-link-3.neq {
  color: #c00001;
}

.text-span-57 {
  color: #c2141c;
}

.icon-regular-22 {
  color: #d12120;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  display: flex;
}

.icon-regular-22.new14 {
  color: #d12120;
  width: 20px;
  height: 20px;
  margin-right: 0;
}

.icon-regular-22.new14.neq {
  color: #fff;
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.field-label {
  color: #fff;
  padding-left: 2px;
  padding-right: 8px;
  font-size: 15px;
}

.field-label.kj {
  margin-top: 27px;
}

.form-4 {
  border: 0 solid #0000;
}

.div-block-99 {
  background-color: #fff;
  border-radius: 36px;
  width: 87px;
  height: 5px;
}

.column-53 {
  border: 0 #0000;
  border-bottom-right-radius: 12px;
  padding-left: 0;
  padding-right: 0;
}

.link-block-5 {
  text-decoration: none;
  transition: all .45s;
  display: flex;
}

.link-block-5:hover {
  color: #d61d28;
  transform: translate(3px, -3px);
}

.text-span-90 {
  color: #c00001;
}

.div-block-102 {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  display: block;
}

.div-block-100 {
  background-color: #c2141c;
  background-image: url('../images/YE.png');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 700px;
  padding-top: 42px;
  padding-left: 30px;
  position: relative;
}

.div-block-100.agrrt {
  background-color: #fff;
  background-image: none;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  padding-top: 36px;
}

.div-block-100.yp {
  background-color: #c00000;
  background-image: none;
  border: 0 solid #0000;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  padding-top: 68px;
  padding-left: 5%;
  padding-right: 5%;
}

.textarea-2 {
  color: #000;
  text-transform: capitalize;
  border: 1px solid #c9c9c9;
  border-radius: 4px;
  width: 100%;
  margin-top: 0;
  padding-top: 14px;
  padding-bottom: 23px;
  padding-left: 8px;
  font-size: 15px;
  font-weight: 500;
}

.textarea-2:active {
  border-bottom: 1px solid #0085ff;
}

.textarea-2:focus {
  border-width: 1px;
}

.textarea-2::placeholder {
  color: #000;
  font-size: 12px;
  font-weight: 500;
}

.heading-38 {
  color: #000;
  letter-spacing: 0;
  text-transform: none;
  font-size: 26px;
}

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

.footer-link-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  color: #fff;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1080px;
  display: flex;
}

.text-span-85 {
  color: #c00001;
  text-decoration: none;
  transition: all .2s;
}

.text-span-85:hover {
  color: red;
}

.div-block-137 {
  background-color: #130d2e;
  background-image: linear-gradient(#000000d9 100%, #fff), url('../images/6fee7c_7d1d8f0a7341494491e154ccfce00f7f~mv2_16fee7c_7d1d8f0a7341494491e154ccfce00f7f~mv2.avif');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  border-top: 5px solid red;
  height: auto;
  padding-top: 20px;
  padding-bottom: 0;
  position: relative;
}

.footer-text-link-2 {
  color: #fff;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 400;
  line-height: 23px;
  text-decoration: none;
  transition: color .3s;
}

.footer-text-link-2:hover {
  color: #d61d28;
}

.heading-84 {
  text-transform: capitalize;
  font-size: 38px;
  font-weight: 900;
}

.text-block-53 {
  color: #000;
  width: 290px;
  max-width: 100%;
  margin-top: 2px;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 29px;
}

.footer-grid-large {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 2fr;
  margin-top: 40px;
  margin-bottom: 30px;
}

.divider-gray-200 {
  background-color: #e5e7eb;
  width: 100%;
  height: 1px;
}

.form-block-2 {
  width: auto;
  margin-left: 0;
  margin-right: auto;
  display: block;
}

.link-12 {
  text-decoration: none;
}

.column-regular-7 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-direction: column;
  display: flex;
}

.footer-main {
  grid-column-gap: 72px;
  grid-row-gap: 72px;
  flex-flow: column;
  justify-content: space-between;
  display: flex;
}

.text-block-54 {
  color: #c00001;
  letter-spacing: 1px;
  margin-top: 40px;
  font-size: 34px;
  font-weight: 400;
}

.column-54 {
  padding-left: 0;
  padding-right: 0;
}

.text-span-91 {
  color: #fff;
  letter-spacing: 2px;
  background-color: #0000;
  font-size: 10px;
  text-decoration: none;
}

.text-span-91:hover {
  color: #ff0101;
  background-color: #fff;
}

.heading-92 {
  text-align: center;
  text-transform: uppercase;
  font-size: 31px;
}

.text-block-68 {
  color: #fff;
  letter-spacing: 1px;
  margin-top: 0;
  padding-left: 0;
  font-family: Montserrat, sans-serif;
  font-size: 11px;
  font-weight: 500;
}

.text-block-68.nsda {
  text-align: left;
}

.div-block-138 {
  background-color: #fff0;
  width: 100%;
  height: auto;
  margin: -356px auto 0;
  padding: 0 61px 100px;
  display: block;
  overflow: hidden;
}

.div-block-139 {
  background-color: #0e0e0e;
  background-image: linear-gradient(#001525e3, #001525e3), url('../images/adsf.jpg');
  background-position: 0 0, 0 0;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  padding-top: 75px;
  padding-bottom: 122px;
  display: block;
}

.div-block-139.asdae {
  color: #fff;
  text-transform: capitalize;
  background-color: #000;
  background-image: linear-gradient(#000000d9 100%, #fff), url('../images/bodybuilder-engaged-battle-ropes-muscle-600nw-2530505597.webp');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  background-attachment: scroll, scroll;
  width: 100%;
  height: 527px;
  padding-top: 72px;
  padding-bottom: 0;
}

.div-block-140 {
  padding-top: 0;
}

.div-block-141 {
  background-color: #ce0f0f;
  border-radius: 0;
  width: 100%;
  max-width: 100%;
  height: 5px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.div-block-141.sgr {
  background-color: #ce0f0f;
  border-radius: 0;
  width: 100%;
  max-width: 100%;
  height: 5px;
}

.div-block-142 {
  z-index: 40000;
  background-color: #024fba00;
  border: 0 solid #000;
  border-radius: 10px;
  width: 940px;
  max-width: 100%;
  height: 700px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
  box-shadow: 0 15px 40px -7px #0000007a;
}

.text-block-69 {
  font-size: 22px;
  font-weight: 900;
}

.text-span-92 {
  color: #af8547;
}

.div-block-143 {
  background-color: #fff;
  border-radius: 36px;
  width: 87px;
  height: 5px;
}

.text-span-94 {
  color: #c00001;
}

.div-block-144 {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  display: block;
}

.div-block-145 {
  background-color: #c2141c;
  background-image: url('../images/YE.png');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 700px;
  padding-top: 42px;
  padding-left: 30px;
  position: relative;
}

.div-block-145.agrrt {
  background-color: #fff;
  background-image: none;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  padding-top: 36px;
}

.div-block-145.yp {
  background-color: #c00000;
  background-image: linear-gradient(#ae8446, #997036);
  border: 0 solid #0000;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  padding-top: 68px;
  padding-left: 5%;
  padding-right: 5%;
}

.heading-93 {
  color: #000;
  letter-spacing: 0;
  text-transform: none;
  font-size: 26px;
}

.text-span-95 {
  color: #c00001;
  text-decoration: none;
  transition: all .2s;
}

.text-span-95:hover {
  color: red;
}

.div-block-146 {
  background-color: #130d2e;
  background-image: linear-gradient(#000000d9 100%, #fff), url('../images/6fee7c_7d1d8f0a7341494491e154ccfce00f7f~mv2_16fee7c_7d1d8f0a7341494491e154ccfce00f7f~mv2.avif');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  border-top: 5px solid red;
  height: auto;
  padding-top: 20px;
  padding-bottom: 0;
  position: relative;
}

.heading-94 {
  text-transform: capitalize;
  font-size: 38px;
  font-weight: 900;
}

.text-block-70 {
  color: #c00001;
  letter-spacing: 1px;
  margin-top: 40px;
  font-size: 34px;
  font-weight: 400;
}

.column-55 {
  padding-left: 0;
  padding-right: 0;
}

.div-block-147 {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 16px;
  padding-bottom: 16px;
}

.heading-95 {
  color: #2a3281;
  margin-top: 13px;
  font-size: 3vw;
  line-height: 4vw;
}

.heading-95.ssefd {
  color: #000;
  text-align: left;
  padding-left: 40px;
  font-size: 2.5vw;
}

.heading-95.ssefd.sdnad {
  color: #fff;
  text-transform: uppercase;
  padding-left: 0;
  font-size: 30px;
}

.heading-96 {
  color: #000;
  text-transform: uppercase;
  font-size: 1.3vw;
}

.heading-96.sssssss {
  text-align: left;
  padding-left: 42px;
}

.heading-96.sssssss.sdada {
  padding-left: 0;
}

.div-block-148 {
  height: 5px;
  position: relative;
  top: 68px;
}

.div-block-149 {
  background-color: #f60000;
  border-radius: 20px;
  width: 101px;
  height: 4px;
}

.div-block-149.sdgh {
  margin-left: 42px;
}

.div-block-149.sdgh.sdac {
  background-color: #a3793e;
  margin-left: 0;
}

.bold-text-5 {
  color: #000;
}

.rich-text-block {
  color: #fff;
  font-size: 16px;
  line-height: 22px;
}

.div-block-150 {
  border-top: 5px solid #a2793e;
  padding-top: 150px;
  padding-bottom: 109px;
  position: relative;
  overflow: hidden;
}

.heading-97, .heading-98, .heading-99, .heading-100, .heading-101, .heading-102, .heading-103, .heading-104, .heading-105, .heading-106, .heading-107 {
  font-size: 30px;
}

.div-block-151 {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 16px;
  padding-bottom: 16px;
}

.heading-108 {
  color: #2a3281;
  margin-top: 13px;
  font-size: 3vw;
  line-height: 4vw;
}

.heading-108.ssefd {
  color: #000;
  text-align: left;
  padding-left: 40px;
  font-size: 2.5vw;
}

.heading-108.ssefd.sdnad {
  text-transform: uppercase;
  padding-left: 0;
}

.heading-109 {
  color: #000;
  text-transform: uppercase;
  font-size: 1.3vw;
}

.heading-109.sssssss {
  text-align: left;
  padding-left: 42px;
}

.heading-109.sssssss.sdada {
  padding-left: 0;
}

.div-block-152 {
  height: 5px;
  position: relative;
  top: 68px;
}

.div-block-153 {
  background-color: #f60000;
  border-radius: 20px;
  width: 101px;
  height: 4px;
}

.div-block-153.sdgh {
  margin-left: 42px;
}

.div-block-153.sdgh.sdac {
  background-color: #ca892a;
  margin-left: 0;
}

.bold-text-6 {
  color: #000;
}

.div-block-154 {
  border-top: 5px solid #e60000;
  padding-top: 180px;
  padding-bottom: 109px;
  position: relative;
  overflow: hidden;
}

.heading-110, .heading-111, .heading-112, .heading-113, .heading-114, .heading-115, .heading-116 {
  font-size: 30px;
}

.div-block-155 {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 16px;
  padding-bottom: 16px;
}

.heading-117 {
  color: #2a3281;
  margin-top: 13px;
  font-size: 3vw;
  line-height: 4vw;
}

.heading-117.ssefd {
  color: #000;
  text-align: left;
  padding-left: 40px;
  font-size: 2.5vw;
}

.heading-117.ssefd.sdnad {
  text-transform: uppercase;
  padding-left: 0;
}

.heading-118 {
  color: #000;
  text-transform: uppercase;
  font-size: 1.3vw;
}

.heading-118.sssssss {
  text-align: left;
  padding-left: 42px;
}

.heading-118.sssssss.sdada {
  padding-left: 0;
}

.div-block-156 {
  height: 5px;
  position: relative;
  top: 68px;
}

.div-block-157 {
  background-color: #f60000;
  border-radius: 20px;
  width: 101px;
  height: 4px;
}

.div-block-157.sdgh {
  margin-left: 42px;
}

.div-block-157.sdgh.sdac {
  background-color: #a87f42;
  margin-left: 0;
}

.bold-text-7 {
  color: #000;
}

.div-block-158 {
  border-top: 5px solid #b18749;
  padding-top: 180px;
  padding-bottom: 109px;
  position: relative;
  overflow: hidden;
}

.heading-119, .heading-120, .heading-121, .heading-122, .heading-123, .heading-124, .heading-125, .heading-126, .heading-127, .heading-128, .heading-129, .heading-130, .heading-131 {
  font-size: 30px;
}

.div-block-159 {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 16px;
  padding-bottom: 16px;
}

.heading-132 {
  color: #2a3281;
  margin-top: 13px;
  font-size: 3vw;
  line-height: 4vw;
}

.heading-132.ssefd {
  color: #000;
  text-align: left;
  padding-left: 40px;
  font-size: 2.5vw;
}

.heading-132.ssefd.sdnad {
  text-transform: uppercase;
  padding-left: 0;
}

.heading-133 {
  color: #000;
  text-transform: uppercase;
  font-size: 1.3vw;
}

.heading-133.sssssss {
  text-align: left;
  padding-left: 42px;
}

.heading-133.sssssss.sdada {
  padding-left: 0;
}

.div-block-160 {
  height: 5px;
  position: relative;
  top: 68px;
}

.div-block-161 {
  background-color: #f60000;
  border-radius: 20px;
  width: 101px;
  height: 4px;
}

.div-block-161.sdgh {
  margin-left: 42px;
}

.div-block-161.sdgh.sdac {
  background-color: #a2793d;
  margin-left: 0;
}

.bold-text-8 {
  color: #000;
}

.div-block-162 {
  border-top: 5px solid #a67d40;
  padding-top: 180px;
  padding-bottom: 109px;
  position: relative;
  overflow: hidden;
}

.heading-134, .heading-135, .heading-136, .heading-137, .heading-138, .heading-139, .heading-140, .heading-141, .heading-142, .heading-143, .heading-144, .heading-145, .heading-146, .heading-147, .heading-148, .heading-149, .heading-150, .heading-151, .heading-152 {
  font-size: 30px;
}

.div-block-163 {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 16px;
  padding-bottom: 16px;
}

.heading-153 {
  color: #2a3281;
  margin-top: 13px;
  font-size: 3vw;
  line-height: 4vw;
}

.heading-153.ssefd {
  color: #000;
  text-align: left;
  padding-left: 40px;
  font-size: 2.5vw;
}

.heading-153.ssefd.sdnad {
  text-transform: uppercase;
  padding-left: 0;
}

.heading-154 {
  color: #000;
  text-transform: uppercase;
  font-size: 1.3vw;
}

.heading-154.sssssss {
  text-align: left;
  padding-left: 42px;
}

.heading-154.sssssss.sdada {
  padding-left: 0;
}

.div-block-164 {
  height: 5px;
  position: relative;
  top: 68px;
}

.div-block-165 {
  background-color: #f60000;
  border-radius: 20px;
  width: 101px;
  height: 4px;
}

.div-block-165.sdgh {
  margin-left: 42px;
}

.div-block-165.sdgh.sdac {
  background-color: #a97f42;
  margin-left: 0;
}

.bold-text-9 {
  color: #000;
}

.div-block-166 {
  border-top: 5px solid #ab8144;
  padding-top: 180px;
  padding-bottom: 109px;
  position: relative;
  overflow: hidden;
}

.heading-155, .heading-156, .heading-157, .heading-158, .heading-159, .heading-160, .heading-161, .heading-162 {
  font-size: 30px;
}

.bold-text-10 {
  color: #b18648;
}

.body {
  background-color: var(--black);
}

.heading-163, .paragraph-18, .text-block-71 {
  color: var(--white-cards);
}

.paragraph-19, .paragraph-20 {
  color: #fff;
}

@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;
  }
}

@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;
  }

  .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: 80px;
  }

  .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 {
    max-width: none;
  }

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

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

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

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

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

  .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_link {
    margin-left: 20px;
    font-size: 14px;
  }

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

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

  .ben-item {
    width: 100%;
    margin-bottom: 30px;
    margin-left: 0;
    margin-right: 0;
  }

  .bene-p {
    margin-bottom: 58px;
  }

  .ben-group {
    flex-direction: column;
    margin-top: 0;
  }

  .benefits {
    padding-bottom: 0;
  }

  .heading-9.ssefd {
    margin-bottom: 15px;
    padding-left: 0;
    font-size: 4vw;
  }

  .heading-8 {
    font-size: 1.7vw;
  }

  .heading-8.sssssss {
    padding-left: 0;
  }

  .bbb-wrap-9 {
    padding-left: 1em;
    padding-right: 1em;
  }

  .div-block-17 {
    width: 79px;
  }

  .div-block-17.sdgh {
    margin-left: 0;
  }

  .div-block-131 {
    padding-top: 25px;
    padding-bottom: 71px;
  }

  .bbb-wrap-8 {
    grid-template-columns: 1fr 1fr;
  }

  .heading-10.ssefd {
    margin-bottom: 15px;
    padding-left: 0;
    font-size: 4vw;
  }

  .heading-11 {
    font-size: 1.7vw;
  }

  .heading-11.sssssss {
    padding-left: 0;
  }

  .div-block-136 {
    width: 79px;
  }

  .div-block-136.sdgh {
    margin-left: 0;
  }

  .heading-91 {
    margin-top: 37px;
    font-size: 23px;
  }

  .div-block-98 {
    margin-top: -385px;
  }

  .text-field-5 {
    max-width: 100%;
  }

  .div-block-78.asdae {
    padding-top: 42px;
  }

  .div-block-91 {
    display: block;
  }

  .div-block-100.agrrt {
    padding-left: 16px;
  }

  .div-block-100.yp {
    padding-top: 63px;
    padding-left: 26px;
  }

  .textarea-2 {
    width: 317.328px;
    max-width: 100%;
  }

  .heading-38 {
    width: 290px;
    margin-left: auto;
    margin-right: auto;
    font-size: 23px;
  }

  .footer-link-wrapper {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-direction: row;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .heading-84 {
    font-size: 30px;
  }

  .text-block-53 {
    margin-left: auto;
    margin-right: auto;
    padding-right: 31px;
    font-size: 14px;
    line-height: 25px;
  }

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

  .text-block-54 {
    width: 290px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .heading-92 {
    margin-top: 37px;
    font-size: 23px;
  }

  .div-block-138 {
    margin-top: -385px;
  }

  .div-block-139.asdae {
    padding-top: 42px;
  }

  .div-block-140 {
    display: block;
  }

  .div-block-145.agrrt {
    padding-left: 16px;
  }

  .div-block-145.yp {
    padding-top: 63px;
    padding-left: 26px;
  }

  .heading-93 {
    width: 290px;
    margin-left: auto;
    margin-right: auto;
    font-size: 23px;
  }

  .heading-94 {
    font-size: 30px;
  }

  .text-block-70 {
    width: 290px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .heading-95.ssefd {
    margin-bottom: 15px;
    padding-left: 0;
    font-size: 4vw;
  }

  .heading-96 {
    font-size: 1.7vw;
  }

  .heading-96.sssssss {
    padding-left: 0;
  }

  .div-block-149 {
    width: 79px;
  }

  .div-block-149.sdgh {
    margin-left: 0;
  }

  .div-block-150 {
    padding-top: 25px;
    padding-bottom: 71px;
  }

  .heading-108.ssefd {
    margin-bottom: 15px;
    padding-left: 0;
    font-size: 4vw;
  }

  .heading-109 {
    font-size: 1.7vw;
  }

  .heading-109.sssssss {
    padding-left: 0;
  }

  .div-block-153 {
    width: 79px;
  }

  .div-block-153.sdgh {
    margin-left: 0;
  }

  .div-block-154 {
    padding-top: 25px;
    padding-bottom: 71px;
  }

  .heading-117.ssefd {
    margin-bottom: 15px;
    padding-left: 0;
    font-size: 4vw;
  }

  .heading-118 {
    font-size: 1.7vw;
  }

  .heading-118.sssssss {
    padding-left: 0;
  }

  .div-block-157 {
    width: 79px;
  }

  .div-block-157.sdgh {
    margin-left: 0;
  }

  .div-block-158 {
    padding-top: 25px;
    padding-bottom: 71px;
  }

  .heading-132.ssefd {
    margin-bottom: 15px;
    padding-left: 0;
    font-size: 4vw;
  }

  .heading-133 {
    font-size: 1.7vw;
  }

  .heading-133.sssssss {
    padding-left: 0;
  }

  .div-block-161 {
    width: 79px;
  }

  .div-block-161.sdgh {
    margin-left: 0;
  }

  .div-block-162 {
    padding-top: 25px;
    padding-bottom: 71px;
  }

  .heading-153.ssefd {
    margin-bottom: 15px;
    padding-left: 0;
    font-size: 4vw;
  }

  .heading-154 {
    font-size: 1.7vw;
  }

  .heading-154.sssssss {
    padding-left: 0;
  }

  .div-block-165 {
    width: 79px;
  }

  .div-block-165.sdgh {
    margin-left: 0;
  }

  .div-block-166 {
    padding-top: 25px;
    padding-bottom: 71px;
  }
}

@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: 60px;
    padding-bottom: 60px;
  }

  .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.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;
  }

  .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 {
    margin-top: 10px;
  }

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

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

  .heading-9 {
    letter-spacing: -1px;
    margin-top: 25px;
    font-size: 5.5vw;
  }

  .heading-8 {
    font-size: 2.5vw;
  }

  .bbb-text-9 {
    font-size: 1.7em;
  }

  .bbb-text-6 {
    font-size: 1.3em;
  }

  .div-block-131 {
    padding-bottom: 45px;
  }

  .bbb-button-2 {
    font-size: 1.2em;
  }

  .bbb-wrap-8 {
    grid-template-columns: 1fr 1fr;
  }

  .heading-10 {
    letter-spacing: -1px;
    margin-top: 25px;
    font-size: 5.5vw;
  }

  .heading-11 {
    font-size: 2.5vw;
  }

  .heading-91 {
    letter-spacing: -1px;
    margin-top: 51px;
    font-size: 18px;
  }

  .div-block-98 {
    margin-top: -387px;
    padding-bottom: 1px;
  }

  .div-block-78 {
    padding-bottom: 74px;
  }

  .footer-company-details {
    max-width: none;
  }

  .footer-legal {
    flex-flow: column;
  }

  .form-4 {
    width: 397px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .div-block-100.agrrt {
    text-align: center;
    border-radius: 0;
    height: auto;
    padding-top: 25px;
    padding-bottom: 57px;
    padding-left: 0;
  }

  .div-block-100.yp {
    border-radius: 0;
    margin-bottom: 36px;
    padding-left: 0;
  }

  .textarea-2 {
    width: 317.328px;
    max-width: 100%;
  }

  .heading-38 {
    max-width: 100%;
    font-size: 25px;
  }

  .div-block-137 {
    padding-top: 62px;
    padding-left: 42px;
    padding-right: 42px;
  }

  .text-block-53 {
    margin-left: auto;
    margin-right: auto;
    padding-right: 10px;
    font-size: 16px;
    line-height: 24px;
  }

  .heading-92 {
    letter-spacing: -1px;
    margin-top: 51px;
    font-size: 18px;
  }

  .div-block-138 {
    margin-top: -387px;
    padding-bottom: 1px;
  }

  .div-block-139 {
    padding-bottom: 74px;
  }

  .div-block-145.agrrt {
    text-align: center;
    border-radius: 0;
    height: auto;
    padding-top: 25px;
    padding-bottom: 57px;
    padding-left: 0;
  }

  .div-block-145.yp {
    border-radius: 0;
    margin-bottom: 36px;
    padding-left: 0;
  }

  .heading-93 {
    max-width: 100%;
    font-size: 25px;
  }

  .div-block-146 {
    padding-top: 62px;
    padding-left: 42px;
    padding-right: 42px;
  }

  .heading-95 {
    letter-spacing: -1px;
    margin-top: 25px;
    font-size: 5.5vw;
  }

  .heading-96 {
    font-size: 2.5vw;
  }

  .div-block-150 {
    padding-bottom: 45px;
  }

  .heading-108 {
    letter-spacing: -1px;
    margin-top: 25px;
    font-size: 5.5vw;
  }

  .heading-109 {
    font-size: 2.5vw;
  }

  .div-block-154 {
    padding-bottom: 45px;
  }

  .heading-117 {
    letter-spacing: -1px;
    margin-top: 25px;
    font-size: 5.5vw;
  }

  .heading-118 {
    font-size: 2.5vw;
  }

  .div-block-158 {
    padding-bottom: 45px;
  }

  .heading-132 {
    letter-spacing: -1px;
    margin-top: 25px;
    font-size: 5.5vw;
  }

  .heading-133 {
    font-size: 2.5vw;
  }

  .div-block-162 {
    padding-bottom: 45px;
  }

  .heading-153 {
    letter-spacing: -1px;
    margin-top: 25px;
    font-size: 5.5vw;
  }

  .heading-154 {
    font-size: 2.5vw;
  }

  .div-block-166 {
    padding-bottom: 45px;
  }
}

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

  .navbar_component {
    margin-top: -12px;
    padding-top: 0;
  }

  .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;
  }

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

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

  .text-size-small {
    color: #fff;
  }

  .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_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: none;
  }

  .ben-item {
    padding: 20px;
  }

  .bene-p {
    width: 100%;
  }

  .ben-content {
    margin-left: 20px;
  }

  .ben-head-3 {
    margin-bottom: 10px;
  }

  .ben-p {
    line-height: 20px;
  }

  .ben-icon-img {
    width: 70px;
  }

  .benefits {
    padding-top: 0;
  }

  .heading {
    margin-top: 55px;
    font-size: 44px;
  }

  .heading-9 {
    letter-spacing: -2px;
    margin-top: 22px;
    font-size: 6.7vw;
  }

  .heading-9.ssefd {
    font-size: 10vw;
    line-height: 11vw;
  }

  .heading-8 {
    margin-bottom: 16px;
    font-size: 5vw;
    line-height: 5vw;
  }

  .bbb-text-9 {
    font-size: 2em;
  }

  .div-block-17 {
    width: 61px;
  }

  .bbb-text-6 {
    font-size: 2em;
  }

  .bbb-wrap-1-2 {
    align-items: flex-start;
  }

  .div-block-131 {
    padding-bottom: 108px;
  }

  .bbb-button-2 {
    font-size: 1.3em;
  }

  .bbb-wrap-8 {
    grid-template-columns: 1fr;
  }

  .heading-10 {
    letter-spacing: -2px;
    margin-top: 22px;
    font-size: 6.7vw;
  }

  .heading-10.ssefd {
    font-size: 10vw;
    line-height: 11vw;
  }

  .heading-11 {
    margin-bottom: 16px;
    font-size: 5vw;
    line-height: 5vw;
  }

  .div-block-136 {
    width: 61px;
  }

  .text-block-67 {
    text-align: center;
    font-size: 12px;
  }

  .text-block-67.nsda {
    text-align: center;
    text-align: center;
    font-size: 11px;
    line-height: 17px;
  }

  .heading-91 {
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-top: 69px;
    font-size: 6vw;
    font-weight: 400;
    line-height: 8.5vw;
  }

  .div-block-98 {
    max-width: 100%;
    height: auto;
    margin-top: -375px;
    padding-bottom: 0;
    padding-left: 12px;
    padding-right: 12px;
  }

  .text-field-5 {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .div-block-78 {
    padding-top: 61px;
    padding-bottom: 82px;
  }

  .div-block-78.asdae {
    background-image: none;
    width: 100%;
    max-width: 100%;
    padding-top: 1px;
  }

  .footer-logo-3 {
    display: flex;
  }

  .div-block-91 {
    padding-top: 0;
    display: block;
  }

  .row-13 {
    width: 100%;
  }

  .footer-legal-links-3 {
    grid-column-gap: 7px;
    grid-row-gap: 7px;
    text-align: center;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    place-items: center stretch;
    width: 100%;
    display: flex;
  }

  .paragraph-17 {
    font-size: 23px;
  }

  .success-message-2 {
    padding-top: 128px;
  }

  .div-block-90.sgr {
    background-color: #ce0f0f;
  }

  .div-block-97 {
    width: 100%;
    height: auto;
    box-shadow: none;
    margin-top: -105px;
    padding-top: 42px;
  }

  .text-block-63 {
    font-size: 6vw;
    line-height: 5vw;
  }

  .icon-regular-22 {
    color: #d12120;
    margin-right: 5px;
  }

  .field-label {
    text-align: left;
    width: 317.328px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
  }

  .field-label.kj {
    text-align: left;
    margin-top: 17px;
  }

  .form-4 {
    text-align: center;
    width: 387px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 10px;
    padding-right: 10px;
    display: block;
  }

  .column-53 {
    background-color: #0098ff00;
    height: auto;
  }

  .link-block-5 {
    font-size: 15px;
  }

  .div-block-100 {
    width: 387px;
    max-width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    padding-top: 22px;
    padding-bottom: 42px;
    padding-left: 15px;
    display: block;
  }

  .div-block-100.agrrt {
    background-image: none;
    border: 0 solid #f1f1f1;
    border-radius: 0;
    width: 350px;
    height: auto;
    padding-top: 38px;
    padding-bottom: 32px;
    padding-left: 0;
  }

  .div-block-100.yp {
    border-radius: 0;
    max-width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    padding-top: 50px;
    padding-left: 0;
    padding-right: 0;
    display: block;
  }

  .textarea-2 {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .heading-38 {
    text-align: center;
    letter-spacing: -2px;
    max-width: 100%;
    margin-top: 56px;
    margin-bottom: 3px;
    font-size: 22px;
    font-weight: 500;
  }

  .footer-link-wrapper {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    align-items: flex-start;
    font-size: 15px;
    display: flex;
  }

  .div-block-137 {
    padding: 60px 30px 10px;
  }

  .footer-text-link-2 {
    font-size: 14px;
    font-weight: 400;
  }

  .heading-84 {
    font-size: 5vw;
    line-height: 7vw;
  }

  .text-block-53 {
    text-align: center;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 18px;
    line-height: 27px;
    display: block;
  }

  .footer-grid-large {
    padding-left: 0;
    padding-right: 0;
  }

  .text-block-54 {
    text-align: center;
    width: 100%;
    margin-bottom: 30px;
    padding-bottom: 0;
    padding-left: 0;
  }

  .heading-92 {
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-top: 69px;
    font-size: 10vw;
    font-weight: 400;
    line-height: 8.5vw;
  }

  .text-block-68 {
    text-align: center;
    font-size: 12px;
  }

  .text-block-68.nsda {
    text-align: center;
    font-size: 11px;
    line-height: 17px;
  }

  .div-block-138 {
    max-width: 100%;
    height: auto;
    margin-top: -375px;
    padding-bottom: 0;
    padding-left: 12px;
    padding-right: 12px;
  }

  .div-block-139 {
    padding-top: 61px;
    padding-bottom: 82px;
  }

  .div-block-139.asdae {
    background-image: none;
    width: 100%;
    max-width: 100%;
    padding-top: 1px;
  }

  .div-block-140 {
    padding-top: 0;
    display: block;
  }

  .div-block-141.sgr {
    background-color: #ce0f0f;
  }

  .div-block-142 {
    width: 100%;
    height: auto;
    box-shadow: none;
    margin-top: -105px;
    padding-top: 42px;
  }

  .text-block-69 {
    font-size: 6vw;
    line-height: 5vw;
  }

  .div-block-145 {
    width: 387px;
    max-width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    padding-top: 22px;
    padding-bottom: 42px;
    padding-left: 15px;
    display: block;
  }

  .div-block-145.agrrt {
    background-image: none;
    border: 0 solid #f1f1f1;
    border-radius: 0;
    width: 350px;
    height: auto;
    padding-top: 38px;
    padding-bottom: 32px;
    padding-left: 0;
  }

  .div-block-145.yp {
    border-radius: 0;
    max-width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    padding-top: 50px;
    padding-left: 0;
    padding-right: 0;
    display: block;
  }

  .heading-93 {
    text-align: center;
    letter-spacing: -2px;
    max-width: 100%;
    margin-top: 56px;
    margin-bottom: 3px;
    font-size: 42px;
    font-weight: 500;
  }

  .div-block-146 {
    padding: 60px 30px 10px;
  }

  .heading-94 {
    font-size: 5vw;
    line-height: 7vw;
  }

  .text-block-70 {
    text-align: center;
    width: 100%;
    margin-bottom: 30px;
    padding-bottom: 0;
    padding-left: 0;
  }

  .heading-95 {
    letter-spacing: -2px;
    margin-top: 22px;
    font-size: 6.7vw;
  }

  .heading-95.ssefd {
    font-size: 10vw;
    line-height: 11vw;
  }

  .heading-95.ssefd.sdnad {
    letter-spacing: normal;
    font-size: 5vw;
    line-height: 6vw;
  }

  .heading-96 {
    margin-bottom: 16px;
    font-size: 5vw;
    line-height: 5vw;
  }

  .div-block-149 {
    width: 61px;
  }

  .div-block-150 {
    padding-bottom: 108px;
  }

  .heading-108 {
    letter-spacing: -2px;
    margin-top: 22px;
    font-size: 6.7vw;
  }

  .heading-108.ssefd {
    font-size: 10vw;
    line-height: 11vw;
  }

  .heading-108.ssefd.sdnad {
    letter-spacing: normal;
    font-size: 5vw;
    line-height: 6vw;
  }

  .heading-109 {
    margin-bottom: 16px;
    font-size: 5vw;
    line-height: 5vw;
  }

  .div-block-153 {
    width: 61px;
  }

  .div-block-154 {
    padding-bottom: 108px;
  }

  .heading-117 {
    letter-spacing: -2px;
    margin-top: 22px;
    font-size: 6.7vw;
  }

  .heading-117.ssefd {
    font-size: 10vw;
    line-height: 11vw;
  }

  .heading-117.ssefd.sdnad {
    letter-spacing: normal;
    font-size: 5vw;
    line-height: 6vw;
  }

  .heading-118 {
    margin-bottom: 16px;
    font-size: 5vw;
    line-height: 5vw;
  }

  .div-block-157 {
    width: 61px;
  }

  .div-block-158 {
    padding-bottom: 108px;
  }

  .heading-132 {
    letter-spacing: -2px;
    margin-top: 22px;
    font-size: 6.7vw;
  }

  .heading-132.ssefd {
    font-size: 10vw;
    line-height: 11vw;
  }

  .heading-132.ssefd.sdnad {
    letter-spacing: normal;
    font-size: 5vw;
    line-height: 6vw;
  }

  .heading-133 {
    margin-bottom: 16px;
    font-size: 5vw;
    line-height: 5vw;
  }

  .div-block-161 {
    width: 61px;
  }

  .div-block-162 {
    padding-bottom: 108px;
  }

  .heading-153 {
    letter-spacing: -2px;
    margin-top: 22px;
    font-size: 6.7vw;
  }

  .heading-153.ssefd {
    font-size: 10vw;
    line-height: 11vw;
  }

  .heading-153.ssefd.sdnad {
    letter-spacing: normal;
    font-size: 5vw;
    line-height: 6vw;
  }

  .heading-154 {
    margin-bottom: 16px;
    font-size: 5vw;
    line-height: 5vw;
  }

  .div-block-165 {
    width: 61px;
  }

  .div-block-166 {
    padding-bottom: 108px;
  }
}

#w-node-_2c909c2a-0ccc-0bd9-cd10-c32cf0cebdd4-fb7e143d, #w-node-_2c909c2a-0ccc-0bd9-cd10-c32cf0cebdff-fb7e143d, #w-node-_8e0f0fdd-ebbe-9aa4-c3ed-f8e6a4f03980-fb7e143d, #w-node-_012f1303-0b8a-a480-065d-9eb259fb0b69-fb7e143d, #w-node-_2c909c2a-0ccc-0bd9-cd10-c32cf0cebe0a-fb7e143d, #w-node-_2c909c2a-0ccc-0bd9-cd10-c32cf0cebddf-fb7e143d, #w-node-_425a333f-a6cf-d776-5a11-f5cbdda05856-fb7e143d, #w-node-_2c909c2a-0ccc-0bd9-cd10-c32cf0cebdf4-fb7e143d, #w-node-_91cf4393-4eff-e24d-9e61-e25d373d1c00-fb7e143d, #w-node-_7d7c16cb-cb03-5bd5-a30f-05aa179c43d1-fb7e143d, #w-node-_2c909c2a-0ccc-0bd9-cd10-c32cf0cebe20-fb7e143d, #w-node-_04519041-ec98-6193-eee5-b99e6367372b-fb7e143d, #w-node-_367709d7-9fc3-7e6c-983c-0945620f9bd1-fb7e143d, #w-node-_4eff7033-de50-fe01-abb7-38a333bede26-fb7e143d, #w-node-_81767abd-554e-c09f-6490-dae0f82d2c1e-fb7e143d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-_8323bafc-25e7-b16d-d922-28e16efbd1c5-fb7e143d {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


