:root {
  --1-main-colors--background: var(--3-neutral--neutral-900);
  --font--paragraph: Roboto, sans-serif;
  --1-main-colors--heading: var(--1-main-colors--white);
  --font--heading: Orbitron, sans-serif;
  --1-main-colors--white: whitesmoke;
  --1-main-colors--paragraph: var(--3-neutral--neutral-50);
  --1-main-colors--primary: #1dff07;
  --1-main-colors--secondary: var(--3-neutral--neutral-500);
  --1-main-colors--transparent: rgba(0, 0, 0, 0);
  --5-radius--primary: 4px;
  --3-neutral--neutral-100: #b7b7b9;
  --tertiary: #feff03;
  --1-main-colors--border: var(--3-neutral--neutral-400);
  --5-radius--secondary: 0px;
  --3-neutral--neutral-400: #45464a;
  --3-neutral--neutral-50: #ececf0;
  --3-neutral--neutral-500: #17181d;
  --3-neutral--neutral-300: #646468;
  --3-neutral--neutral-800: #0d0d10;
  --4-box-shadow--color: white;
  --3-neutral--neutral-200: #949597;
  --3-neutral--neutral-600: #15161a;
  --font--icon: "Material Icons", sans-serif;
  --2-primary--primary-500: #03ea04;
  --1-main-colors--black: #000;
  --2-primary--primary-50: #feedf0;
  --2-primary--primary-100: #fcc6d0;
  --2-primary--primary-200: #fbaaba;
  --2-primary--primary-300: #f9839a;
  --2-primary--primary-400: #f86b86;
  --3-neutral--neutral-700: #2e304b;
  --4-box-shadow--shadow-50: white;
  --5-radius--button: 30px;
  --5-radius--gap: 0px;
  --font--social-icon: Icofont, sans-serif;
  --2-primary--primary-600: #e0405f;
  --2-primary--primary-700: #af324a;
  --2-primary--primary-800: #872739;
  --2-primary--primary-900: #671d2c;
  --3-neutral--neutral-900: #0a0a0c;
}

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

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

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

body {
  background-color: var(--1-main-colors--background);
  font-family: var(--font--paragraph);
  color: var(--1-main-colors--heading);
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
}

h1 {
  font-family: var(--font--heading);
  color: var(--1-main-colors--white);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 70px;
  line-height: 86px;
}

h2 {
  font-family: var(--font--heading);
  color: var(--1-main-colors--heading);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 50px;
  font-weight: 600;
  line-height: 1.3;
}

h3 {
  font-family: var(--font--heading);
  color: var(--1-main-colors--heading);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 36px;
  font-weight: 600;
  line-height: 44px;
}

h4 {
  font-family: var(--font--heading);
  color: var(--1-main-colors--heading);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
  line-height: 38px;
}

h5 {
  font-family: var(--font--heading);
  color: var(--1-main-colors--heading);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
}

h6 {
  font-family: var(--font--heading);
  color: var(--1-main-colors--heading);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
}

p {
  font-family: var(--font--paragraph);
  color: var(--1-main-colors--paragraph);
  text-transform: none;
  margin-bottom: 0;
  font-weight: 400;
}

a {
  color: var(--1-main-colors--primary);
  text-decoration: none;
}

img {
  object-fit: cover;
  width: 100%;
  max-width: 100%;
  display: inline-block;
}

label {
  color: var(--1-main-colors--paragraph);
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  display: block;
}

.default-text {
  z-index: 2;
}

.icon {
  text-transform: none;
  font-family: Material Icons Outlined, sans-serif;
}

._3-column-grid {
  grid-column-gap: 30px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-items: center;
  width: 100%;
  display: grid;
}

.primary-button {
  z-index: 3;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border: 1px solid var(--1-main-colors--primary);
  color: var(--1-main-colors--secondary);
  white-space: nowrap;
  justify-content: center;
  align-self: flex-start;
  align-items: center;
  padding: 13px 29px;
  font-weight: 500;
  transition: color .5s ease-out;
  display: flex;
  position: relative;
  overflow: hidden;
}

.primary-button:hover {
  background-color: var(--1-main-colors--transparent);
  color: var(--1-main-colors--white);
}

.primary-button.pricing-button {
  border-radius: var(--5-radius--primary);
  padding: 14px 36px;
}

.primary-button.padding-y-16px {
  padding-top: 16px;
  padding-bottom: 16px;
}

.contents {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  display: flex;
}

.contents._60 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  width: 60%;
  margin-top: -100px;
}

.title-wrapper {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 750px;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.title-wrapper.no-gap {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.mask {
  z-index: 1;
  position: relative;
  overflow: hidden;
}

.mask.related-post {
  border-radius: 2px;
  width: 100%;
  min-width: 150px;
  max-width: 150px;
  height: 100px;
}

.mask.classroom-thumbnail {
  height: 100%;
  min-height: 260px;
}

.heading {
  margin-top: 0;
  margin-bottom: 0;
}

.slider-navigation {
  width: 100%;
  max-width: 135px;
  top: 210px;
  bottom: auto;
  left: -190px;
  right: auto;
}

.gathering-slider-navigation {
  width: 100%;
  max-width: 135px;
  top: -100px;
  bottom: auto;
  left: auto;
  right: 0%;
}

.secondary-button {
  z-index: 2;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  border: 1px solid var(--1-main-colors--white);
  background-color: var(--1-main-colors--transparent);
  color: #fff;
  white-space: nowrap;
  justify-content: center;
  align-items: center;
  padding: 20px 30px;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  transition: color 1s ease-out, background-color .5s cubic-bezier(.25, .46, .45, .94);
  display: flex;
  position: relative;
  overflow: hidden;
}

.secondary-button:hover {
  color: var(--1-main-colors--secondary);
}

.blog-thumbnail {
  aspect-ratio: auto;
  height: 100%;
  transition: transform .7s cubic-bezier(.19, 1, .22, 1);
}

.blog-thumbnail:hover {
  transform: scale(1.1);
}

.blog-body {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  text-align: left;
  flex-direction: column;
  align-items: flex-start;
  padding: 37px 21px 22px;
  display: flex;
}

.blog-body.featured-body {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  padding: 40px 40px 30px;
}

.card-black {
  background-color: var(--1-main-colors--secondary);
  flex-flow: column;
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
}

.blog-card-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  line-height: 32px;
  transition: color .2s;
}

.blog-card-title:hover {
  color: var(--1-main-colors--primary);
}

.banner {
  background-image: url('../images/Rectangle-13.png');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 175px;
  padding-bottom: 150px;
  display: flex;
  position: relative;
}

.breadcrumb-block {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

._48-px-white-heading {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 48px;
  font-weight: 500;
  line-height: 60px;
}

.text-merge {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-wrap: wrap;
  display: flex;
}

.breadcrumb {
  color: var(--3-neutral--neutral-100);
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.breadcrumb.w--current {
  line-height: 26px;
}

.heading-style-box {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  background-color: #efefef;
  width: 100%;
  min-width: 700px;
  max-width: 700px;
  margin-bottom: 40px;
  padding: 50px;
  display: flex;
}

.button-style-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: wrap;
  display: flex;
}

.color-box-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.color-box {
  border: 1px solid var(--1-main-colors--white);
  background-color: #428bca;
  border-radius: 4px;
  width: 140px;
  height: 140px;
}

.color-box.heading-color {
  background-color: var(--1-main-colors--heading);
}

.color-box.secondary-color {
  background-color: var(--1-main-colors--secondary);
}

.color-box.primary-color {
  background-color: var(--1-main-colors--primary);
}

.color-box.background-color {
  background-color: var(--tertiary);
}

.color-box.paragraph-color {
  background-color: var(--1-main-colors--paragraph);
}

.color-box.extra-color {
  background-color: var(--1-main-colors--background);
}

.color-name {
  color: var(--1-main-colors--heading);
  text-transform: uppercase;
  font-weight: 500;
  line-height: 24px;
}

.style-guide-wrapper {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 60px;
  display: flex;
}

.style-guide-title {
  font-family: var(--font--heading);
  color: var(--1-main-colors--heading);
  border-bottom: 3px solid #d9d9d9;
  margin-bottom: 30px;
  padding-bottom: 10px;
  font-size: 36px;
  line-height: 46px;
}

.color-box-grid {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-wrap: wrap;
  margin-bottom: 70px;
  display: flex;
}

.schedule-timing-title {
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}

._12px-gap {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  width: 100%;
  max-width: 420px;
}

._80px-margin-section {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  margin-top: 80px;
  margin-bottom: 80px;
  position: relative;
}

.tags-container {
  grid-column-gap: 7px;
  grid-row-gap: 10px;
  flex-flow: wrap;
  display: flex;
}

.blog-search-field {
  background-color: var(--1-main-colors--secondary);
  color: var(--1-main-colors--white);
  border: 1px #000;
  border-radius: 4px;
  height: 64px;
  margin-bottom: 0;
  padding: 0 14px 0 23px;
  font-weight: 400;
}

.blog-search-field:focus {
  border-color: #b19470;
}

.blog-search-field::placeholder {
  color: var(--1-main-colors--border);
  font-weight: 400;
  line-height: 22px;
}

.search-button {
  color: #666;
  background-color: rgba(56, 152, 236, 0);
  padding: 0;
  font-family: Icofont, sans-serif;
  line-height: 16px;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 14px;
}

.sidebar-title {
  border-bottom: 3px solid var(--3-neutral--neutral-100);
  color: var(--1-main-colors--white);
  padding-bottom: 10px;
  font-size: 20px;
  line-height: 30px;
}

.widget {
  grid-column-gap: 27px;
  grid-row-gap: 27px;
  background-color: var(--1-main-colors--secondary);
  border-radius: 2px;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 30px 40px;
  display: flex;
}

.featured-properties-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  display: flex;
}

.sidebar {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-direction: column;
  width: 35%;
  display: flex;
}

.category-container {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  flex-direction: column;
  display: flex;
}

.search-block {
  flex-direction: row;
  width: 100%;
  margin-bottom: 0;
  display: flex;
  position: relative;
}

.featured-blogs {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  align-items: center;
  display: flex;
}

.featured-image {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform .2s;
}

.featured-image:hover {
  transform: scale(1.1);
}

.post-title {
  color: var(--1-main-colors--paragraph);
  text-transform: none;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  transition: color .4s;
}

.post-title:hover {
  color: var(--1-main-colors--primary);
}

.property-category-block {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  color: var(--3-neutral--neutral-100);
  text-transform: none;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  transition: color .5s, transform .45s;
  display: flex;
}

.property-category-block:hover {
  color: var(--1-main-colors--primary);
  transform: translate(10px);
}

.category {
  font-size: 18px;
  line-height: 28px;
}

.tag-button {
  background-color: var(--1-main-colors--border);
  color: var(--1-main-colors--paragraph);
  text-transform: none;
  border-radius: 2px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 22px;
  transition: background-color .35s ease-out, color .45s;
  display: block;
}

.tag-button:hover {
  background-color: var(--1-main-colors--primary);
  color: var(--1-main-colors--secondary);
  box-shadow: 0 4px 10px rgba(93, 56, 255, .1);
}

.main-block {
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  min-width: 550px;
  max-width: none;
  display: flex;
}

.post-image {
  object-fit: cover;
  border-radius: 5px;
  width: 100%;
  max-width: 870px;
  max-height: 665px;
}

.rich-text-block img {
  border-radius: 10px;
  max-height: 590px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.rich-text-block p {
  max-width: none;
  margin-bottom: 20px;
}

.rich-text-block h4 {
  font-size: 20px;
  font-weight: 400;
  line-height: 34px;
}

.blog-heading {
  margin-top: 0;
  margin-bottom: 25px;
  font-size: 36px;
  line-height: 46px;
}

._18px-paragraph {
  font-size: 18px;
  line-height: 28px;
}

.utility-page-content {
  z-index: 1;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 36rem;
  display: flex;
  position: relative;
}

._404-paragraph {
  color: var(--1-main-colors--paragraph);
  font-weight: 400;
}

._404-sub-heading {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 50px;
}

.utility-page-wrap {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: var(--1-main-colors--background);
  background-image: url('../images/Group_2.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  position: relative;
}

.changelog-section {
  margin-top: 40px;
  margin-bottom: 400px;
  padding-left: 20px;
  padding-right: 20px;
}

.changelog-wrapper {
  grid-row-gap: 10px;
  flex-direction: column;
  display: flex;
}

.version-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
}

.version-description {
  line-height: 28px;
}

.license-main-text {
  color: var(--1-main-colors--paragraph);
  margin-bottom: 60px;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.license-block {
  grid-row-gap: 12px;
  flex-direction: column;
  margin-top: 40px;
  display: flex;
}

.license-wrapper {
  max-width: 555px;
}

.license-link-block {
  grid-row-gap: 6px;
  flex-direction: column;
  display: flex;
}

.license-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
}

.license-paragraph {
  color: var(--1-main-colors--paragraph);
  margin-bottom: 4px;
}

.empty-block {
  border-radius: var(--5-radius--primary);
  background-color: var(--1-main-colors--background);
  color: var(--1-main-colors--white);
  padding: 13px 25px;
}

.nav-list {
  text-decoration: none;
  overflow: hidden;
}

.nav-link {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  color: #fff;
  justify-content: flex-start;
  align-items: center;
  padding: 0;
  font-weight: 500;
  text-decoration: none;
  transition: color .3s ease-out;
  display: flex;
}

.nav-link:hover {
  color: var(--1-main-colors--primary);
}

.submenu-link {
  color: var(--1-main-colors--heading);
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
  transition: transform .25s cubic-bezier(.25, .46, .45, .94), color .35s;
}

.submenu-link:hover {
  color: var(--1-main-colors--primary);
  transform: translate(5px);
}

.submenu-link.w--current {
  color: #ffb700;
}

.container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 60px;
  padding-right: 60px;
  position: relative;
}

.container.hero-container {
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.container.center-align {
  text-align: center;
  align-items: stretch;
  display: flex;
}

.dropdown-options {
  z-index: 2;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 4px;
  padding-top: 40px;
  display: none;
  position: absolute;
  top: 23px;
}

.nav-button-list {
  flex: 1;
  padding-left: 20px;
}

.navbar {
  z-index: 100;
  background-color: var(--1-main-colors--background);
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 0;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.nav-icon-and-text-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.navbar-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.nav-menu {
  grid-column-gap: 30px;
  grid-row-gap: 50px;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
}

.site-logo {
  object-fit: contain;
  max-width: 200px;
}

.menu-button {
  color: #fff;
  background-color: rgba(255, 255, 255, 0);
  padding: 0;
  font-family: Material Icons, sans-serif;
  font-size: 24px;
  line-height: 24px;
}

.menu-button:focus, .menu-button.w--open {
  background-color: rgba(255, 255, 255, 0);
}

.site-logo-wrapper {
  max-width: 200px;
  overflow: hidden;
}

.site-logo-wrapper.w--current {
  width: auto;
  max-width: 20%;
}

.nav-link-dropdown {
  z-index: 1;
  cursor: pointer;
}

.cross-icon {
  display: none;
}

.nav-dropdown-contents-fastfood {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: var(--1-main-colors--secondary);
  flex-flow: column;
  padding: 20px 45px;
  display: flex;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
}

.icon-20px {
  text-transform: none;
  font-family: Material Icons, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
}

.nav-list-for-dropdown {
  text-decoration: none;
}

.lock-image {
  max-width: 200px;
}

.section-60px {
  margin-top: 60px;
  margin-bottom: 60px;
  position: relative;
}

._2-column-block-top {
  grid-column-gap: 40px;
  grid-row-gap: 60px;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.footer-columns {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: .5fr .5fr .75fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  width: 100%;
  display: grid;
}

.footer-block {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.footer-block.newsletter-footer-block {
  max-width: 300px;
}

.footer-block._1st-block {
  width: 100%;
}

.error-message {
  border-radius: var(--5-radius--secondary);
  color: var(--1-main-colors--white);
  text-align: center;
  background-color: #ff2828;
  padding: 20px;
  font-weight: 600;
}

.footer-link {
  color: #e4e4e4;
  text-transform: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  transition: color .2s;
}

.footer-link:hover {
  color: var(--1-main-colors--primary);
}

.newsletter-form-white-bg {
  width: 100%;
  max-width: 340px;
  margin-bottom: 0;
}

.social-icon-transparent {
  color: rgba(247, 253, 254, .5);
  background-color: rgba(0, 0, 0, 0);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  padding: 10px;
  font-family: Icofont, sans-serif;
  font-size: 20px;
  line-height: 20px;
  transition: color .5s ease-in-out, background-color .2s, transform .4s;
  display: flex;
}

.social-icon-transparent:hover {
  color: #fff;
  background-color: #4267b2;
  transform: translate(0, -3px);
}

.social-icon-transparent.pinterest:hover {
  color: #fff;
  background-color: #e60023;
}

.social-icon-transparent.twitter:hover {
  color: #fff;
  background-color: #1da1f2;
}

.social-icon-transparent.linkedin:hover {
  color: #fff;
  background-color: #0077b5;
}

.footer-copyright-text {
  color: var(--3-neutral--neutral-100);
  text-transform: none;
  font-size: 15px;
  font-weight: 300;
  line-height: 28px;
}

.footer-copyright-text.with-hover {
  transition: color .3s;
}

.footer-copyright-text.with-hover:hover {
  color: #fff;
}

.footer-list {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.newsletter-button-wrapper-white {
  grid-column-gap: 13px;
  grid-row-gap: 13px;
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  display: flex;
  position: relative;
}

.space-between-block {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: space-between;
  align-items: center;
  padding-top: 4px;
  padding-bottom: 6px;
  display: flex;
}

.feature-meta {
  color: var(--1-main-colors--white);
  margin-right: 2px;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}

.footer-wrapper {
  grid-column-gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 50px;
  padding-bottom: 40px;
  display: flex;
}

.copyrights-divider {
  color: var(--3-neutral--neutral-100);
}

.copyrights-divider.white {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid var(--3-neutral--neutral-400);
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.horizontal-left-center-15px-gap {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  align-items: center;
  display: flex;
}

.horizontal-left-center-15px-gap.negative-10px {
  margin-left: -10px;
}

.footer-content-wrapper {
  grid-column-gap: 5px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.contact-form-wrapper {
  grid-row-gap: 24px;
  flex-direction: column;
  align-self: stretch;
  display: flex;
}

.footer-paragraph {
  color: #e4e4e4;
  text-transform: none;
  font-weight: 400;
}

.success-message {
  border-radius: var(--5-radius--secondary);
  background-color: var(--1-main-colors--primary);
  color: var(--1-main-colors--secondary);
  width: 100%;
}

.footer {
  border-top: 1px solid var(--1-main-colors--border);
  margin-top: auto;
  overflow: hidden;
}

.absolute-border {
  max-width: 70px;
  max-height: 72px;
  position: absolute;
  top: -16%;
  bottom: auto;
  left: auto;
  right: -42%;
}

.image-wrapper {
  position: relative;
}

._18px-neutral-100 {
  color: var(--3-neutral--neutral-50);
  font-size: 18px;
}

.hero-section-horizontal-stretched {
  z-index: 10;
  background-color: var(--3-neutral--neutral-500);
  flex-flow: row;
  min-height: 840px;
  display: flex;
  position: relative;
}

.hero-video {
  z-index: 1;
  object-fit: contain;
  width: 48%;
  min-height: 840px;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.heading-green-stroke {
  color: var(--1-main-colors--transparent);
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: var(--1-main-colors--primary);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 50px;
  font-weight: 600;
  line-height: 1.3;
}

._80px-title {
  color: var(--1-main-colors--white);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 48px;
  line-height: 1.3;
}

.vertical-left-top {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.vertical-left-top.hero-block {
  width: 50%;
}

.vertical-left-top._30px-gap {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}

.vertical-left-top._10px-gap {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}

.vertical-left-top._40px-gap {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
}

.margin-bottom-12px {
  margin-bottom: 12px;
}

.margin-top-20px-bottom-60px {
  margin-top: 20px;
  margin-bottom: 60px;
}

.hero-social-icons-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: flex-start;
  align-items: center;
  width: 50%;
  position: absolute;
  top: auto;
  bottom: 70px;
  left: 20px;
  right: auto;
}

.social-border-1 {
  background-color: var(--1-main-colors--white);
  width: 100%;
  max-width: 30%;
  height: 1px;
}

.social-border-2 {
  background-color: var(--1-main-colors--white);
  width: 100%;
  max-width: 40%;
  height: 1px;
}

.horizontal-left-top {
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.horizontal-left-top._15px-gap {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  justify-content: flex-start;
  align-items: center;
}

.social-icon-20px-white {
  color: var(--1-main-colors--white);
  justify-content: center;
  align-items: center;
  font-family: Icofont, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
  transition: border-color .4s, color .4s ease-in-out, background-color .2s, transform .4s;
  display: flex;
}

.social-icon-20px-white:hover {
  color: #4267b2;
  border-color: rgba(0, 0, 0, 0);
  transform: translate(0, -3px);
}

.social-icon-20px-white.twitter {
  font-size: 18px;
  line-height: 18px;
}

.social-icon-20px-white.twitter:hover {
  color: #1da1f2;
}

.social-icon-20px-white.pinterest:hover {
  color: #e60023;
}

.social-icon-20px-white.linkedin:hover {
  color: #0077b5;
}

.section {
  margin-top: 0;
  padding-top: 130px;
  padding-bottom: 130px;
}

._20px-primary-title {
  color: var(--1-main-colors--primary);
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}

.page-wrapper {
  overflow: hidden;
}

.double-image-wrapper-15px-gap {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 50%;
  display: flex;
  position: relative;
}

._2-column-block {
  grid-column-gap: 40px;
  grid-row-gap: 60px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

._2-column-block.row-100px-gap {
  grid-row-gap: 100px;
}

._2-column-block.gap-100px {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
}

.margin-top-60px {
  margin-top: 60px;
}

._49-image {
  width: 53%;
}

._49-image.negative-move {
  width: 44%;
  position: relative;
  top: 170px;
}

.margin-top-30px {
  margin-top: 30px;
}

.absolute-card {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  background-color: var(--1-main-colors--secondary);
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding: 32px 18px;
  display: flex;
  position: absolute;
}

._48px-primary-title {
  color: #1dff07;
  font-family: Orbitron, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

._24px-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
}

.slider-animation-wrapper {
  background-color: var(--3-neutral--neutral-400);
  width: 200vw;
  padding-top: 26px;
  padding-bottom: 26px;
  transition: background-color .4s;
}

.slider-animation-wrapper:hover {
  background-color: var(--1-main-colors--secondary);
}

.partners-grid-infinity {
  grid-column-gap: 40px;
  grid-row-gap: 16px;
  white-space: nowrap;
  flex-flow: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  display: flex;
  transform: none;
}

._36px-primary-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 46px;
}

.image-38px {
  max-width: 38px;
}

._36px-primary-title-stroke {
  color: var(--1-main-colors--transparent);
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: var(--1-main-colors--primary);
  font-size: 36px;
  font-weight: 900;
  line-height: 46px;
  transition: color .5s ease-out, -webkit-text-stroke-color .5s;
}

._36px-primary-title-stroke:hover {
  color: var(--1-main-colors--primary);
  -webkit-text-stroke-color: var(--1-main-colors--transparent);
}

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

.width-650px {
  max-width: 650px;
}

.margin-top-13px {
  margin-top: 13px;
}

.portfolio-620px-height-slide {
  z-index: 1;
  border: 1px solid #000;
  position: relative;
  overflow: hidden;
}

.hidden {
  display: none;
}

.slider {
  background-color: rgba(0, 0, 0, 0);
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.slider.static-auto {
  height: auto;
  position: static;
}

.slider.workout-slider {
  padding-top: 50px;
  position: static;
  overflow: hidden;
}

.portfolio-image {
  aspect-ratio: 2 / 3;
  height: 100%;
}

.top-right-navigation {
  z-index: 3;
  border: 1px solid var(--3-neutral--neutral-400);
  background-color: var(--1-main-colors--secondary);
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 50px;
  height: 50px;
  font-size: 20px;
  line-height: 20px;
  transition: background-color .3s;
  display: flex;
  top: -120px;
  bottom: auto;
  left: auto;
  right: 100px;
}

.top-right-navigation:hover {
  border-color: var(--1-main-colors--transparent);
  background-color: var(--1-main-colors--primary);
  color: var(--1-main-colors--secondary);
}

.top-right-navigation.left-arrow {
  right: 160px;
}

.slider-margin {
  margin-bottom: 48px;
}

._48px-primary-title-stroke {
  color: var(--1-main-colors--transparent);
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: var(--1-main-colors--primary);
  font-size: 48px;
  line-height: 56px;
}

.absolute-rotate {
  z-index: 1;
  width: 150%;
  height: 100%;
  position: absolute;
  top: auto;
  bottom: 20px;
  left: 4%;
  right: auto;
  transform: rotate(-90deg);
}

.absolute-black-overlay {
  background-color: rgba(0, 0, 0, .2);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.absolute-hover {
  z-index: 2;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.full-height-image {
  height: 100%;
}

.absolute-hover-text {
  z-index: 1;
  text-align: center;
  width: 100%;
  position: absolute;
  top: auto;
  bottom: 20px;
  left: 0%;
  right: auto;
}

._36px-title {
  color: var(--1-main-colors--white);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 46px;
}

.margin-top-90px {
  margin-top: 90px;
}

.service-card {
  position: relative;
  overflow: hidden;
}

.linear-black {
  background-image: linear-gradient(0deg, #000, rgba(0, 0, 0, .5) 50%, rgba(0, 0, 0, 0));
  width: 100%;
  height: 25%;
  position: absolute;
  bottom: 0;
}

.service-thumbnail {
  aspect-ratio: 2 / 3;
  max-height: 540px;
  transition: transform .5s cubic-bezier(.165, .84, .44, 1);
}

.service-thumbnail:hover {
  transform: scale(1.1);
}

.relative-block {
  width: 100%;
  height: 100%;
  position: relative;
}

.service-body {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  background-image: linear-gradient(0deg, #000, rgba(0, 0, 0, .6) 30%, rgba(0, 0, 0, .4) 70%, rgba(0, 0, 0, 0));
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  height: 40%;
  padding-bottom: 30px;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  position: absolute;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

._20px-title {
  color: var(--1-main-colors--white);
  font-size: 20px;
  line-height: 30px;
}

.absolute-divider {
  background-color: var(--3-neutral--neutral-400);
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.absolute-divider-horizontal {
  background-color: var(--3-neutral--neutral-400);
  width: 1px;
  max-width: 1px;
  height: 100%;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 33%;
  right: auto;
}

.absolute-divider-horizontal.right {
  left: auto;
  right: 33%;
}

.pricing-section {
  background-color: var(--1-main-colors--secondary);
  background-image: url('../images/Group.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 130px;
  padding-bottom: 130px;
}

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

.pricing-card-black {
  border: 1px solid var(--3-neutral--neutral-300);
  background-color: var(--3-neutral--neutral-800);
  color: var(--4-box-shadow--color);
  border-radius: 5px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 36px 32px;
  transition: border-color .4s;
  display: flex;
}

.pricing-card-black:hover {
  border-color: var(--1-main-colors--white);
}

.pricing-feature-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 36px;
  display: flex;
}

.pricing-feature {
  text-transform: none;
  font-weight: 400;
  line-height: 1.4;
}

.outlined-green-button {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  border: 1px solid var(--1-main-colors--primary);
  background-color: var(--1-main-colors--transparent);
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  transition: background-color .5s cubic-bezier(.19, 1, .22, 1);
  display: flex;
}

.outlined-green-button:hover {
  background-color: var(--1-main-colors--primary);
  color: var(--1-main-colors--secondary);
}

.outlined-green-button:focus {
  border-color: var(--1-main-colors--primary);
}

.outlined-green-button:focus-visible {
  border-color: var(--1-main-colors--primary);
}

.outlined-green-button[data-wf-focus-visible] {
  border-color: var(--1-main-colors--primary);
}

.outlined-green-button.w--current {
  align-self: center;
  width: auto;
}

.outlined-green-button.w--current:hover {
  color: var(--1-main-colors--secondary);
  align-self: center;
}

.pricing-block {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: flex-start;
  align-items: flex-end;
  margin-top: 12px;
  margin-bottom: 36px;
  font-size: 15px;
  line-height: 1.2;
}

.price-64px {
  color: var(--1-main-colors--white);
  font-size: 64px;
  font-weight: 700;
  line-height: 60px;
}

.check-icon {
  background-color: var(--1-main-colors--primary);
  color: var(--1-main-colors--background);
  text-transform: none;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  padding: 2px;
  font-family: Material Icons Outlined, sans-serif;
  font-weight: 400;
  display: flex;
}

.margin-right-30px {
  margin-right: 30px;
}

.pricing-mask {
  align-self: stretch;
  width: 35%;
  min-width: 420px;
  height: 100%;
  overflow: visible;
}

.pricing-tab {
  background-color: var(--1-main-colors--transparent);
  color: var(--3-neutral--neutral-100);
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 500;
  transition: background-color .6s cubic-bezier(.215, .61, .355, 1);
}

.pricing-tab.w--current {
  background-color: var(--1-main-colors--primary);
  color: var(--1-main-colors--secondary);
}

.pricing-tab-menu {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

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

.pricing-tab-contents {
  margin-top: 64px;
  overflow: visible;
}

.schedule-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto auto auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}

.time-block {
  border-right: 1px solid var(--3-neutral--neutral-300);
  background-color: var(--3-neutral--neutral-400);
  text-align: center;
  justify-content: center;
  align-items: center;
  padding: 26px 10px;
  display: flex;
}

.time-block.last-block {
  border-right-style: none;
}

.time-block.first-block {
  border-bottom: 1px solid var(--3-neutral--neutral-300);
  min-width: 195px;
}

.schedule-block {
  border-right: 1px solid var(--3-neutral--neutral-400);
  border-bottom: 1px solid var(--3-neutral--neutral-400);
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 52px 10px;
  display: flex;
}

.row-first-block {
  border-right: 1px none var(--3-neutral--neutral-400);
  border-bottom: 1px solid var(--3-neutral--neutral-300);
  background-color: var(--3-neutral--neutral-400);
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 52px 10px;
  display: flex;
}

.row-first-block.no-border {
  border-bottom-style: none;
}

.shedule-tab-menu {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.schedule-link {
  background-color: var(--1-main-colors--transparent);
  color: var(--1-main-colors--white);
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  font-size: 20px;
  line-height: 30px;
  transition: color .4s, background-color .5s;
  display: flex;
}

.schedule-link.w--current {
  background-color: var(--1-main-colors--primary);
  color: var(--1-main-colors--secondary);
}

.feature-block {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.feature-image-80px {
  max-width: 80px;
  margin-bottom: 36px;
}

._4-column {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.bg-text {
  z-index: 1;
  opacity: .1;
  color: var(--1-main-colors--transparent);
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: var(--1-main-colors--white);
  white-space: nowrap;
  font-size: 122px;
  line-height: 200px;
  position: relative;
}

.bg-text._200px-font {
  font-size: 200px;
}

.bg-text._170px-font {
  font-size: 170px;
}

.text-bg-wrapper {
  z-index: -1;
  opacity: 1;
  text-align: center;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  max-height: 200px;
  display: flex;
  position: absolute;
  top: -70px;
}

.text-bg-wrapper.our-mission {
  top: -186px;
  left: 0;
}

.text-bg-wrapper.absolute-0 {
  z-index: 2;
  top: 0;
  left: 0;
}

.text-bg-wrapper.our-service-text {
  top: -80px;
  left: 0;
}

.absolute-text-bottom-color {
  z-index: 2;
  background-image: linear-gradient(0deg, var(--1-main-colors--background), rgba(10, 10, 12, .2) 68%, rgba(10, 10, 12, 0));
  width: 100%;
  height: 50%;
  position: absolute;
  top: 71px;
}

.margin-top-120px {
  margin-top: 120px;
}

.text-size-large {
  max-width: 800px;
  margin-top: 12px;
  margin-bottom: 36px;
  font-size: 24px;
  line-height: 1.4;
}

.cta-section {
  background-color: var(--1-main-colors--secondary);
  background-image: url('../images/Mask-group.png');
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 150px;
  padding-bottom: 150px;
  position: relative;
  overflow: hidden;
}

.absolute-cta-image {
  z-index: 1;
  width: 50%;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.cta-wrapper {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 30rem;
  display: flex;
}

.primary-button-with-arrow {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: #010f1c;
  background-color: #ffb700;
  border: 1px solid #ffb700;
  border-radius: 2px;
  justify-content: center;
  align-items: center;
  padding: 14px 30px;
  font-weight: 500;
  transition: background-color .4s, color .6s ease-out;
  display: flex;
}

.primary-button-with-arrow:hover {
  color: #ffb700;
  background-color: rgba(0, 0, 0, 0);
}

.horizontal-left-stretch-20px-gap-wrap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: stretch;
}

.button-image {
  z-index: 2;
  color: var(--1-main-colors--white);
  max-width: 16px;
  max-height: 16px;
  margin-top: -2px;
}

.full-width {
  width: 100%;
}

.newsletter-image {
  max-width: 600px;
}

.newsletter-content {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  padding-top: 30px;
  padding-bottom: 30px;
}

._48px-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 48px;
  line-height: 56px;
}

.newsletter-gym {
  width: 100%;
  max-width: 450px;
  margin-top: 11px;
  margin-bottom: 0;
}

.newsletter-button-wrapper-center {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.input-transparent-70px {
  border: 1px solid var(--3-neutral--neutral-400);
  background-color: var(--1-main-colors--transparent);
  color: var(--3-neutral--neutral-50);
  min-height: 70px;
  margin-bottom: 0;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 12px;
  font-weight: 400;
}

.input-transparent-70px:focus {
  border-color: var(--3-neutral--neutral-300);
  outline-color: var(--tertiary);
  outline-offset: 2px;
  outline-width: 1px;
  outline-style: solid;
}

.input-transparent-70px:focus-visible {
  border-color: var(--3-neutral--neutral-300);
}

.input-transparent-70px[data-wf-focus-visible] {
  border-color: var(--3-neutral--neutral-300);
}

.input-transparent-70px::placeholder {
  color: var(--3-neutral--neutral-300);
  font-weight: 400;
}

.absolute-right-corner-button {
  color: var(--1-main-colors--primary);
  background-color: rgba(255, 255, 255, 0);
  margin-left: 0;
  padding: 0;
  font-family: Icofont, sans-serif;
  font-size: 19px;
  line-height: 22px;
  transition: color .3s;
  position: absolute;
  bottom: auto;
  left: auto;
  right: 13px;
}

.absolute-right-corner-button:hover {
  color: var(--1-main-colors--white);
}

.newsletter-section {
  background-color: var(--1-main-colors--secondary);
  justify-content: space-between;
  align-items: center;
  padding-left: 120px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.vertical-left-stretch {
  flex-flow: column;
  display: flex;
}

.vertical-left-stretch._20px-gap {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  align-self: stretch;
}

.contact-icon-text-20px {
  grid-column-gap: 20px;
  color: #000;
  justify-content: flex-start;
  align-self: stretch;
  align-items: center;
  display: flex;
}

._24px-svg {
  width: 100%;
  max-width: 24px;
  max-height: 24px;
}

._24px-svg.is-white {
  color: #fff;
  max-width: 20px;
  max-height: 20px;
}

.footer-paragraph-18px {
  color: var(--3-neutral--neutral-200);
  text-transform: none;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.vertical-left-top-6px-gap {
  z-index: 1;
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
  position: relative;
}

._20px-title-neutral-200 {
  color: #e4e4e4;
  text-transform: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}

.vertical-left-top-30px-gap {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.input-transparent-50px {
  border: 1px solid var(--3-neutral--neutral-400);
  background-color: var(--1-main-colors--transparent);
  color: var(--3-neutral--neutral-50);
  min-height: 50px;
  margin-bottom: 0;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 12px;
  font-weight: 400;
}

.input-transparent-50px:focus {
  border: 1px solid var(--3-neutral--neutral-300);
  outline-color: var(--tertiary);
  outline-offset: 2px;
  outline-width: 1px;
  outline-style: solid;
}

.input-transparent-50px:focus-visible {
  border-style: solid;
  border-color: var(--3-neutral--neutral-300);
}

.input-transparent-50px[data-wf-focus-visible] {
  border-style: solid;
  border-color: var(--3-neutral--neutral-300);
}

.input-transparent-50px::placeholder {
  color: var(--3-neutral--neutral-300);
  font-weight: 400;
}

.input-transparent-50px:lang(en) {
  border-color: var(--3-neutral--neutral-300);
}

._25-mask {
  z-index: 1;
  max-width: 25%;
  overflow: visible;
}

.partners-infinity {
  background-color: var(--3-neutral--neutral-600);
  width: 100%;
  margin-top: 120px;
  padding-top: 75px;
  padding-bottom: 75px;
  position: relative;
}

.logo-inifinity-wrapper {
  width: 200vw;
}

.partner-logo-200px {
  object-fit: contain;
  max-width: 200px;
  height: 51px;
  transition: transform .5s cubic-bezier(.175, .885, .32, 1.275);
}

.partner-logo-200px:hover {
  transform: scale(1.1);
}

.margin-bottom-20px {
  margin-bottom: 20px;
}

._50-width-block {
  width: 50%;
}

.space-between-top-align {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 4px;
  padding-bottom: 6px;
  display: flex;
}

._45-width-block {
  width: 45%;
}

._2-column-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.floating-mission-card {
  background-color: var(--3-neutral--neutral-400);
  padding-bottom: 28px;
  padding-left: 23px;
  padding-right: 21px;
  position: absolute;
  top: auto;
  bottom: 30px;
  left: 60px;
  right: auto;
}

.number-80px-stroke {
  color: var(--1-main-colors--transparent);
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: var(--1-main-colors--primary);
  font-size: 80px;
  line-height: 80px;
}

.number-mask-negative-margin {
  margin-top: -31px;
  overflow: hidden;
}

.margin-top-200px {
  margin-top: 200px;
}

.why-choose-section {
  background-color: var(--1-main-colors--secondary);
  background-image: url('../images/Group_1.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 145px;
  padding-bottom: 145px;
}

.margin-bottom-15px {
  margin-bottom: 15px;
}

.on-hover-slider {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.margin-bottom-40px {
  margin-bottom: 40px;
}

.hover-slide {
  width: 25%;
  position: relative;
  overflow: hidden;
}

.portrait-image-min-width-750px {
  aspect-ratio: 2 / 3;
  height: 100%;
  min-height: 750px;
}

._60px-primary-title-stroke-rotate {
  color: var(--1-main-colors--transparent);
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: var(--1-main-colors--primary);
  width: 100%;
  font-size: 60px;
  line-height: 60px;
  position: absolute;
  top: auto;
  bottom: 150px;
  left: -36%;
  right: auto;
  transform: rotate(-90deg);
}

.bottom-black-overlay {
  grid-column-gap: 9px;
  grid-row-gap: 9px;
  background-image: linear-gradient(0deg, #000, rgba(0, 0, 0, .9) 15%, rgba(0, 0, 0, .6) 40%, rgba(0, 0, 0, .4) 70%, rgba(0, 0, 0, 0));
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  height: 40%;
  padding-bottom: 30px;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  position: absolute;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.bottom-black-overlay.team-overlay {
  flex-flow: row;
  justify-content: space-between;
  align-items: flex-end;
  height: 30%;
  padding-bottom: 20px;
  padding-left: 25px;
  padding-right: 20px;
  bottom: -1%;
}

.mask-37 {
  z-index: 0;
  max-width: 37%;
  overflow: visible;
}

._2-block-slider-wrapper {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  justify-content: space-between;
  display: flex;
  position: relative;
}

.slider-contents {
  z-index: 2;
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  background-color: var(--1-main-colors--background);
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 380px;
  padding-bottom: 60px;
  display: flex;
  position: relative;
}

.slider-contents.max-width-500px {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  min-width: 500px;
  max-width: none;
  padding-bottom: 0;
}

.slider-contents.workout-slider {
  background-color: var(--1-main-colors--transparent);
  justify-content: center;
  align-items: flex-start;
  max-width: 420px;
}

._50px-arrow-navigation {
  background-color: var(--1-main-colors--border);
  color: #fff;
  text-transform: none;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  padding: 5px;
  font-family: Material Icons, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
  transition: border .2s, background-color .2s;
  display: flex;
  top: auto;
  bottom: 0;
  left: 0%;
  right: auto;
}

._50px-arrow-navigation:hover {
  background-color: var(--1-main-colors--primary);
  color: var(--1-main-colors--secondary);
}

._50px-arrow-navigation.right-arrow {
  left: 56px;
}

.team-profile-image {
  height: 100%;
  max-height: 480px;
}

.arrow-icon-team {
  border: 1px solid var(--1-main-colors--primary);
  background-color: var(--1-main-colors--primary);
  font-family: var(--font--icon);
  color: var(--1-main-colors--secondary);
  text-transform: none;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 40px;
  height: 40px;
  font-size: 24px;
  font-weight: 400;
  line-height: 24px;
  display: flex;
  transform: rotate(-45deg);
}

.larger-container-for-slider {
  width: 100%;
  max-width: 1640px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 180px;
  position: relative;
  overflow: hidden;
}

.bg-for-slider {
  z-index: 1;
  background-color: var(--1-main-colors--background);
  width: 160px;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.full-height {
  height: 100%;
}

._64px-primary-stroke-title {
  color: var(--1-main-colors--transparent);
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: var(--1-main-colors--primary);
  font-size: 64px;
  line-height: 80px;
}

.portrait-image {
  aspect-ratio: 2 / 3;
}

.margin-top-16px {
  margin-top: 16px;
}

.margin-top-32px {
  margin-top: 32px;
}

.margin-top-7px {
  margin-top: 7px;
}

.counter {
  grid-column-gap: 13px;
  grid-row-gap: 13px;
  color: var(--3-neutral--neutral-50);
  text-transform: none;
  flex-direction: column;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  display: flex;
}

.counter-animation-line {
  border: 1px solid var(--3-neutral--neutral-50);
  border-radius: 10px;
  justify-content: flex-start;
  align-items: center;
  height: 12px;
  padding: 3px;
  display: flex;
  position: relative;
}

.animated-line {
  z-index: 1;
  background-color: var(--1-main-colors--primary);
  border-radius: 10px;
  width: 100%;
  max-width: 96%;
  height: 6px;
  position: absolute;
}

.animated-line._2nd-line {
  max-width: 80%;
}

.animated-line._3rd-line {
  max-width: 90%;
}

.percentage-counter {
  color: var(--1-main-colors--primary);
  justify-content: flex-end;
  font-size: 18px;
  line-height: 28px;
  display: flex;
  position: absolute;
  bottom: 16px;
  left: auto;
  right: 0;
}

.skills-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  align-items: stretch;
  width: 100%;
  margin-top: 40px;
}

.margin-70px {
  margin-top: 70px;
  margin-bottom: 70px;
}

.team-social-link {
  background-color: var(--1-main-colors--border);
  color: var(--3-neutral--neutral-100);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  padding: 10px;
  font-family: Icofont, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
  transition: color .5s ease-in-out, background-color .2s, transform .4s;
  display: flex;
}

.team-social-link:hover {
  color: #fff;
  background-color: #4267b2;
  transform: translate(0, -3px);
}

.team-social-link.pinterest:hover {
  color: #fff;
  background-color: #e60023;
}

.team-social-link.twitter:hover {
  color: #fff;
  background-color: #1da1f2;
}

.team-form-wrapper {
  width: 100%;
  margin-bottom: 0;
}

.team-form {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  margin-top: 40px;
  display: flex;
}

.input-field-transparent-60px {
  border: 1px solid var(--3-neutral--neutral-200);
  background-color: var(--1-main-colors--transparent);
  color: var(--3-neutral--neutral-100);
  min-height: 60px;
  font-weight: 400;
  transition: border-color .4s;
}

.input-field-transparent-60px:focus {
  border-color: var(--2-primary--primary-500);
}

.input-field-transparent-60px.min-height-134px {
  min-height: 134px;
}

.submit-button {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border: 1px solid var(--1-main-colors--primary);
  background-color: var(--1-main-colors--primary);
  color: var(--1-main-colors--secondary);
  white-space: nowrap;
  justify-content: center;
  align-items: center;
  padding: 13px 30px;
  font-weight: 500;
  transition: color .4s ease-out, background-color .5s cubic-bezier(.25, .46, .45, .94);
  display: flex;
  position: relative;
}

.submit-button:hover {
  background-color: var(--1-main-colors--transparent);
  color: var(--1-main-colors--white);
}

.field-inputs-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
}

.icon-block {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: flex-start;
  align-items: flex-start;
}

.input-label {
  color: #f8f9fa;
  text-transform: none;
  margin-bottom: 4px;
  font-size: 16px;
  line-height: 22px;
}

.contact-info-block-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  margin-top: 38px;
}

.contact-icon-wrapper-40px {
  border: 1px solid var(--1-main-colors--primary);
  color: var(--1-main-colors--primary);
  text-transform: none;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 8px;
  font-family: Material Icons Outlined, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
  transition: color .4s cubic-bezier(.25, .46, .45, .94), background-color .2s;
  display: flex;
}

.contact-icon-wrapper-40px:hover {
  background-color: var(--1-main-colors--primary);
  color: var(--1-main-colors--secondary);
}

.cotnact-form {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  background-color: var(--1-main-colors--secondary);
  border-radius: 10px;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  padding: 40px 40px 47px;
  display: flex;
}

.input-field {
  border: 1px solid var(--3-neutral--neutral-300);
  border-radius: var(--5-radius--primary);
  background-color: var(--1-main-colors--transparent);
  color: #cfd3d7;
  min-height: 56px;
  margin-bottom: 0;
  padding: 16px;
}

.input-field.text-area {
  min-height: 120px;
}

.contact-contents {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 577px;
  display: flex;
}

._2px-gap {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
}

.blog-list-card {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  border: 1px solid var(--3-neutral--neutral-400);
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 40px 80px 40px 40px;
  display: flex;
  overflow: hidden;
}

.blog-list-thumbnail {
  aspect-ratio: auto;
  max-width: 267px;
  height: 208px;
  transition: transform .7s cubic-bezier(.19, 1, .22, 1);
}

.blog-list-thumbnail:hover {
  transform: scale(1.1);
}

.blog-list-body {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  text-align: left;
  flex-direction: column;
  align-items: flex-start;
  width: 52%;
  max-width: 618px;
  margin-right: 70px;
  display: flex;
}

.snippet-mask-52px {
  max-height: 52px;
  overflow: hidden;
}

.blog-divider {
  background-color: var(--3-neutral--neutral-300);
  width: 100%;
  height: 1px;
  margin-top: 15px;
  margin-bottom: 7px;
}

.image-20px-contain {
  object-fit: contain;
  max-width: 20px;
}

.blog-text-link {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  border-bottom: 1px solid var(--1-main-colors--transparent);
  text-transform: none;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  font-size: 15px;
  line-height: 25px;
  transition: transform .5s ease-out, border-color .4s;
  display: flex;
}

.blog-text-link:hover {
  border-bottom-color: var(--1-main-colors--primary);
  transform: translate(5px);
}

.blog-divider-featured {
  background-color: var(--3-neutral--neutral-300);
  width: 100%;
  height: 1px;
  margin-top: 6px;
}

._65 {
  width: 65%;
}

.blog-featured-title {
  color: var(--1-main-colors--white);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 46px;
}

.blog-details-container {
  border-radius: var(--5-radius--primary);
  background-color: var(--1-main-colors--secondary);
  overflow: hidden;
}

.padding-40px {
  padding: 40px;
}

.info-block {
  grid-column-gap: 16px;
  grid-row-gap: 6px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 27px;
  font-size: 14px;
  line-height: 24px;
  display: flex;
  position: relative;
}

.author-flex-block {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: flex-start;
  align-items: center;
  margin-right: 10px;
  display: flex;
}

.author-image {
  border: 1px solid #fff;
  border-radius: 50%;
  width: 40px;
  max-width: none;
  height: 40px;
}

.text-merge-wrapper {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  color: #292f36;
  display: flex;
}

.blog-category {
  background-color: var(--1-main-colors--primary);
  color: var(--1-main-colors--secondary);
  padding: 4px 15px;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  transition: background-color .5s;
}

.blog-category:hover {
  background-color: var(--1-main-colors--black);
  color: var(--1-main-colors--white);
}

.neutral-200 {
  color: var(--3-neutral--neutral-200);
}

.neutral-200-link {
  color: var(--3-neutral--neutral-200);
  text-transform: none;
  transition: color .3s;
}

.neutral-200-link:hover {
  color: var(--2-primary--primary-500);
}

.margin-bottom-35px {
  margin-bottom: 35px;
}

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

.pricing-floating-text {
  color: var(--1-main-colors--white);
  font-size: 20px;
  line-height: 30px;
  position: absolute;
  top: 6px;
  left: -120px;
  right: auto;
}

.pricing-floating-text.yearly {
  left: auto;
  right: -100px;
}

.pricing-card-left-align {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  text-align: left;
  background-color: #fff;
  border: 1px solid #b7b7b7;
  border-radius: 10px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 420px;
  padding: 40px 30px 46px 40px;
  display: flex;
  box-shadow: 8px 6px 20px rgba(0, 0, 0, .05);
}

.switch-menu {
  background-color: var(--3-neutral--neutral-300);
  border-radius: 30px;
  max-width: 140px;
  padding: 4px;
  display: flex;
  box-shadow: 0 10px 30px rgba(243, 117, 118, .2);
}

.tabs-content {
  width: 100%;
  padding-top: 70px;
  overflow: visible;
}

.tab-link-pink {
  background-color: rgba(197, 114, 114, 0);
  border-radius: 30px;
  width: 61px;
  height: 36px;
  padding: 0;
  transition: background-color .5s;
}

.tab-link-pink.w--current {
  background-color: var(--1-main-colors--primary);
}

.vertical-center-align {
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.membership-card {
  border: 1px solid var(--1-main-colors--transparent);
  background-color: var(--1-main-colors--secondary);
  color: var(--1-main-colors--paragraph);
  text-align: center;
  border-radius: 5px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 480px;
  padding: 90px 30px 80px;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  transition: border-color .4s;
  display: flex;
  position: relative;
}

.membership-card:hover {
  border-color: var(--1-main-colors--white);
}

.membership-features-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-direction: column;
  margin-bottom: 80px;
  display: flex;
}

.membership-feature {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  border-bottom: 1px solid var(--3-neutral--neutral-300);
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-bottom: 10px;
  padding-left: 30px;
  padding-right: 30px;
  line-height: 36px;
  display: flex;
}

.membership-block {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: flex-start;
  align-items: flex-end;
  margin-top: 24px;
  margin-bottom: 34px;
  font-size: 15px;
  line-height: 24px;
}

.icon-16px {
  text-transform: none;
  font-family: Material Icons Outlined, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
}

.lower-case {
  z-index: 2;
  text-transform: none;
}

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

.membership-discount-tag {
  background-color: var(--3-neutral--neutral-300);
  color: var(--1-main-colors--white);
  border-radius: 4px;
  padding: 10px;
  position: absolute;
  top: 20px;
  bottom: auto;
  left: -6px;
  right: auto;
}

.video-banner {
  position: relative;
}

.video-corner-border {
  z-index: -1;
  border-radius: var(--5-radius--primary);
  background-color: var(--1-main-colors--primary);
  opacity: .9;
  width: 70%;
  height: 40%;
  position: absolute;
  top: auto;
  bottom: -15px;
  left: -15px;
  right: auto;
}

.background-video {
  z-index: 1;
}

.classroom-body {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  text-align: left;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
  padding: 40px 40px 40px 30px;
  display: flex;
}

.margin-top-25px {
  margin-top: 25px;
}

.class-banner {
  background-image: url('../images/4934176_Person_Human_People_1920x1080-1.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: flex-start;
  align-items: flex-end;
  min-height: 740px;
  padding-bottom: 60px;
  display: flex;
  position: relative;
}

.classroom-details-card {
  z-index: 1;
  border-radius: var(--5-radius--primary);
  background-color: var(--1-main-colors--secondary);
  width: 100%;
  max-width: 420px;
  padding: 50px 40px 50px 50px;
  position: absolute;
  top: -600px;
  bottom: auto;
  left: auto;
  right: 0%;
}

.margin-top-12px {
  margin-top: 12px;
}

.classroom-features-wrapper {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  border-bottom: 1px solid var(--3-neutral--neutral-300);
  margin-bottom: 30px;
  padding-top: 30px;
  padding-bottom: 30px;
}

._20px-footer-title {
  color: var(--3-neutral--neutral-50);
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}

.horizontal-left-center-8px-gap {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

._17px-gap {
  grid-column-gap: 17px;
  grid-row-gap: 17px;
}

.margin-30px {
  margin-top: 30px;
  margin-bottom: 30px;
}

.horizontal-left-center-24px-gap {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  align-items: center;
  display: flex;
}

._18px-white-lowercase-text {
  color: var(--1-main-colors--heading);
  text-transform: none;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}

._2-column {
  column-count: 2;
  column-gap: 30px;
  width: 100%;
}

.classroom-images {
  vertical-align: bottom;
  width: 100%;
  margin-bottom: 30px;
}

.margin-top-100px {
  margin-top: 100px;
}

.divider {
  background-color: var(--3-neutral--neutral-300);
  width: 100%;
  height: 1px;
}

.divider.margin-top-60px-bottom-80px {
  margin-top: 60px;
  margin-bottom: 80px;
}

.benefits-list {
  grid-column-gap: 80px;
  grid-row-gap: 20px;
  flex-flow: column wrap;
  justify-content: flex-start;
  width: 100%;
  max-height: 300px;
  margin-top: 38px;
  font-size: 18px;
  line-height: 28px;
}

.classrom-main-block {
  width: 100%;
  max-width: 850px;
}

._404-heading {
  font-size: 200px;
  line-height: 200px;
}

.gallery-container {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.gallery-vertical-block {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  width: 50%;
}

.gallery-horizontal-block {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  width: 100%;
}

.gallery-horizontal-block.show-mobile-only {
  display: none;
}

.gallery-square-image {
  align-self: stretch;
  transition: opacity .4s;
}

.gallery-square-image:hover {
  opacity: .5;
}

.gallery-full-image {
  transition: opacity .4s;
}

.gallery-full-image:hover {
  opacity: .5;
}

.faq-form {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: var(--1-main-colors--secondary);
  border-radius: 10px;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  padding: 45px 55px 55px;
  display: flex;
}

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

.faq-transparent-dropdown {
  z-index: auto;
  text-align: left;
  cursor: pointer;
  border: 1px solid #45464a;
  border-radius: 4px;
  flex-direction: column;
  width: 100%;
  max-width: 750px;
  display: flex;
  position: relative;
}

.dropdown-switch-20px-padding {
  text-transform: none;
  white-space: pre-wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 30px 20px 24px;
  display: flex;
  position: relative;
}

._20px-arrow-icon {
  color: #949597;
  font-family: Material Icons, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
}

.dropdown-contents {
  background-color: rgba(255, 255, 255, 0);
  width: 100%;
  display: block;
  position: static;
  overflow: hidden;
}

.faq-text-gym {
  margin: 10px 60px 32px 45px;
}

.absolute-image-400 {
  z-index: 2;
  width: 60%;
  position: absolute;
  top: auto;
  bottom: -99px;
  left: auto;
  right: -40px;
}

._24px-title-neutral-100 {
  color: var(--3-neutral--neutral-100);
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

.margin-60px {
  margin-top: 60px;
  margin-bottom: 60px;
}

.image-wrapper-45 {
  width: 45%;
  position: relative;
}

._90-image {
  width: 90%;
}

.secondary-section {
  background-color: var(--1-main-colors--secondary);
  margin-top: 200px;
  padding-top: 160px;
  padding-bottom: 180px;
}

.mask-48 {
  max-width: 48%;
  overflow: visible;
}

.service-slide-card {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  border-radius: var(--5-radius--primary);
  background-color: var(--1-main-colors--background);
  flex-flow: column;
  width: 100%;
  padding: 124px 48px 140px 60px;
  display: flex;
  position: relative;
}

.top-left-service-icon-wrapper {
  background-color: var(--1-main-colors--primary);
  border-radius: 100%;
  padding: 23px;
  position: absolute;
  top: -45px;
  bottom: auto;
  left: 60px;
  right: auto;
}

.image-54px {
  max-width: 54px;
}

.button-color {
  z-index: -1;
  background-color: var(--1-main-colors--primary);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.hero-overlay {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

._50-hero-overlay-block {
  z-index: 3;
  background-color: var(--1-main-colors--background);
  width: 50%;
  height: 100%;
  position: relative;
}

.video-corner-border-top-right {
  z-index: -1;
  border-radius: var(--5-radius--primary);
  background-color: var(--1-main-colors--primary);
  opacity: .9;
  width: 70%;
  height: 40%;
  position: absolute;
  top: -15px;
  bottom: auto;
  left: auto;
  right: -15px;
}

.button-color-white {
  z-index: -1;
  background-color: var(--1-main-colors--white);
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.mobile-landscape-weekly {
  display: none;
}

.time-block-mob, .mob-time {
  background-color: var(--3-neutral--neutral-400);
  text-align: center;
  justify-content: center;
  align-items: center;
  padding: 26px 10px;
  display: flex;
}

.pre-heading {
  color: var(--1-main-colors--primary);
  font-family: Orbitron, sans-serif;
  font-weight: 600;
}

.feature-image-30px {
  max-width: 30px;
}

.max-width-medium {
  max-width: 40rem;
}

.icon-small {
  max-width: 18px;
}

.footer-content-wrapper-attribution {
  grid-column-gap: 5px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.img-full-height {
  height: 100%;
}

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

.footer-social-icon {
  max-width: 36px;
}

.social-icon-hero-small {
  max-width: 28px;
  transition: all .25s;
}

.social-icon-hero-small:hover {
  transform: translate(0, 4px);
}

.socal-icon-hero-medium {
  max-width: 50px;
  transition: all .25s;
}

.socal-icon-hero-medium:hover {
  transform: translate(0, 4px);
}

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

.footer-logo {
  object-fit: contain;
  max-width: 160px;
}

.gym80-logo-footer {
  object-fit: contain;
  max-width: 120px;
}

.cta-button-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  display: flex;
}

.cta-link {
  color: var(--4-box-shadow--color);
}

.div-block {
  position: relative;
}

.play-button {
  z-index: 1;
  max-width: 60px;
  position: absolute;
  top: auto;
  bottom: 50%;
  left: 50%;
  right: auto;
  transform: translate(-50%, 50%);
}

.img-full-height-overlay {
  height: 100%;
}

.video-overlay {
  background-color: rgba(0, 0, 0, .54);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.secondary-button-outlined {
  z-index: 3;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border: 1px solid var(--1-main-colors--primary);
  color: var(--1-main-colors--primary);
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0);
  justify-content: center;
  align-self: stretch;
  align-items: center;
  padding: 13px 29px;
  font-weight: 500;
  transition: color .5s ease-out;
  display: flex;
  position: relative;
  overflow: hidden;
}

.secondary-button-outlined:hover {
  background-color: var(--1-main-colors--primary);
  color: var(--1-main-colors--secondary);
}

.secondary-button-outlined.pricing-button {
  border-radius: var(--5-radius--primary);
  padding: 14px 36px;
}

.secondary-button-outlined.padding-y-16px {
  padding-top: 16px;
  padding-bottom: 16px;
}

.code-embed {
  width: 16px;
  height: 19px;
}

.hero-buttons-wrapper {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: column;
  display: flex;
}

.text-block {
  color: var(--1-main-colors--secondary);
}

.form-success {
  background-color: var(--1-main-colors--primary);
  text-transform: none;
  font-weight: 400;
}

.form-error {
  text-transform: none;
  background-color: #7a0000;
  font-weight: 400;
}

._20px-neutral-bold {
  color: var(--3-neutral--neutral-50);
  text-transform: none;
  font-size: 20px;
  font-weight: 500;
}

.social-icon-hero-xsmall {
  max-width: 24px;
  transition: all .25s;
}

.social-icon-hero-xsmall:hover {
  transform: translate(0, 4px);
}

.horizontal-button-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.horizontal-button-wrapper.align-bottom {
  justify-content: space-between;
  align-items: flex-end;
}

.hide {
  display: none;
}

.inputs-row-wrapper {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  margin-bottom: 20px;
  display: flex;
}

.input-wrapper {
  flex: 1;
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 50px;
    line-height: 60px;
  }

  h2 {
    font-size: 48px;
    line-height: 64px;
  }

  h3 {
    font-size: 26px;
    line-height: 30px;
  }

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

  .contents {
    width: 100%;
  }

  .contents._60 {
    width: 100%;
    margin-top: 0;
  }

  .gathering-slider-navigation {
    top: -70px;
  }

  .blog-body {
    width: 100%;
    max-width: none;
    margin-right: 0;
  }

  .card-black {
    flex-flow: column;
  }

  .banner {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .heading-style-box {
    min-width: auto;
  }

  .schedule-timing-title {
    font-size: 16px;
  }

  ._12px-gap {
    width: 100%;
  }

  ._80px-margin-section {
    z-index: 1;
  }

  .sidebar {
    width: 100%;
  }

  .featured-blogs {
    max-width: none;
  }

  .featured-image {
    max-width: 200px;
  }

  .main-block {
    min-width: auto;
  }

  .post-image {
    max-width: 100%;
    max-height: 450px;
  }

  .submenu-link.w--current {
    color: #d01818;
  }

  .container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .container.hero-container {
    z-index: 10;
  }

  .nav-menu-wrapper {
    background-color: #000;
    flex-direction: row;
    min-width: 420px;
  }

  .dropdown-options {
    padding-top: 30px;
    display: none;
    position: static;
  }

  .dropdown-options.w--open {
    z-index: 2;
    position: static;
  }

  .nav-button-list {
    justify-content: center;
    align-items: center;
    padding-left: 0;
  }

  .navbar {
    margin-top: 0;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .nav-menu {
    grid-row-gap: 20px;
    text-align: center;
    flex-flow: column;
    padding-top: 70px;
    padding-bottom: 50px;
  }

  .site-logo {
    max-width: 180px;
  }

  .menu-button {
    z-index: 10;
    color: #fff;
    text-transform: none;
    background-color: rgba(255, 255, 255, 0);
    flex-direction: row;
    padding: 0;
    font-family: Material Icons, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 20px;
    display: block;
  }

  .menu-button.w--open {
    color: #fff;
    background-color: rgba(0, 0, 0, 0);
  }

  .hamburger-icon {
    background-color: rgba(255, 255, 255, 0);
    flex-direction: row;
  }

  .site-logo-wrapper.w--current {
    max-width: 30%;
  }

  .nav-link-dropdown {
    flex-flow: column;
    display: flex;
  }

  .cross-icon {
    z-index: 99999;
    color: var(--1-main-colors--primary);
    -webkit-text-stroke-color: var(--1-main-colors--primary);
    flex-direction: row;
    font-style: normal;
  }

  .nav-dropdown-contents-fastfood {
    padding-left: 40px;
    padding-right: 66px;
  }

  ._2-column-block-top {
    flex-flow: column;
  }

  .footer-columns {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-wrap: wrap;
    grid-template-columns: .5fr .5fr;
  }

  .footer-block {
    width: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .footer-block.newsletter-footer-block {
    border-top: 1px solid var(--1-main-colors--border);
    max-width: none;
  }

  .footer-block._1st-block {
    max-width: none;
  }

  .footer-block.border-top-tablet {
    border-top: 1px solid var(--1-main-colors--border);
  }

  .newsletter-form-white-bg {
    max-width: none;
  }

  .space-between-block {
    flex-flow: column;
  }

  .footer-wrapper {
    border-bottom-color: #c3c3c3;
    flex-wrap: wrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .contact-form-wrapper {
    width: 100%;
  }

  .hero-section-horizontal-stretched {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-flow: column;
    min-height: auto;
  }

  .hero-video {
    opacity: .2;
    width: auto;
    height: 100%;
    min-height: auto;
    position: static;
  }

  .vertical-left-top.hero-block {
    width: 100%;
    padding-top: 120px;
    padding-bottom: 100px;
  }

  .hero-social-icons-wrapper {
    bottom: 20px;
  }

  .double-image-wrapper-15px-gap {
    width: auto;
    max-width: none;
    margin-top: 100px;
  }

  ._2-column-block {
    flex-flow: column;
    align-items: flex-start;
  }

  .top-right-navigation {
    top: -80px;
    right: 20px;
  }

  .top-right-navigation.left-arrow {
    right: 80px;
  }

  .slider-margin {
    margin-bottom: 80px;
  }

  .absolute-divider {
    width: 1px;
    height: 100%;
    top: 0%;
    left: 50%;
  }

  .absolute-divider-horizontal {
    width: 100%;
    height: 1px;
    top: 33%;
    left: 0%;
  }

  .absolute-divider-horizontal.right {
    top: auto;
    bottom: 33%;
    right: 0%;
  }

  .schedule-grid {
    width: 100%;
  }

  .time-block.first-block {
    min-width: 75px;
  }

  .schedule-block {
    padding-top: 30px;
    padding-bottom: 30px;
    font-size: 12px;
    line-height: 20px;
  }

  .row-first-block {
    padding-top: 30px;
    padding-bottom: 30px;
    font-size: 13px;
    line-height: 22px;
  }

  .schedule-tab {
    overflow: auto;
  }

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

  .bg-text {
    font-size: 97px;
    line-height: 150px;
  }

  .bg-text._200px-font {
    font-size: 120px;
    line-height: 120px;
    top: 55px;
  }

  .bg-text._170px-font {
    font-size: 98px;
    top: 41px;
  }

  .text-bg-wrapper {
    top: -100px;
  }

  .text-bg-wrapper.our-service-text {
    top: -128px;
    left: 0;
  }

  .cta-section {
    z-index: 1;
    margin-top: 100px;
    padding-top: 100px;
    padding-bottom: 0;
  }

  .absolute-cta-image {
    width: 100%;
    margin-top: 60px;
    position: static;
  }

  .cta-wrapper {
    width: 100%;
  }

  .newsletter-image {
    max-width: none;
  }

  .newsletter-content {
    padding-left: 50px;
    padding-right: 30px;
  }

  .newsletter-section {
    flex-flow: column;
    padding-top: 60px;
    padding-left: 0;
  }

  ._25-mask {
    max-width: 50%;
  }

  ._50-width-block {
    width: 100%;
  }

  .space-between-top-align {
    flex-flow: column;
  }

  ._45-width-block {
    width: 100%;
  }

  .floating-mission-card {
    bottom: 20px;
    left: 30px;
  }

  .margin-top-200px {
    margin-top: 160px;
  }

  .why-choose-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .portrait-image-min-width-750px {
    min-height: 520px;
  }

  ._60px-primary-title-stroke-rotate {
    bottom: 80px;
    left: -31%;
  }

  ._2-block-slider-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-direction: column;
  }

  .slider-contents {
    margin-top: 0;
  }

  .slider-contents.max-width-500px {
    min-width: auto;
  }

  .slider-contents.workout-slider {
    max-width: none;
  }

  ._50px-arrow-navigation {
    top: 200px;
    bottom: auto;
    left: auto;
    right: 60px;
  }

  ._50px-arrow-navigation.right-arrow {
    left: auto;
    right: 0;
  }

  .team-profile-image {
    max-height: none;
  }

  .bg-for-slider {
    display: none;
  }

  .contact-contents {
    width: 100%;
    max-width: none;
  }

  .blog-list-card {
    text-align: left;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-right: 40px;
  }

  .blog-list-thumbnail {
    max-width: none;
    height: auto;
  }

  .blog-list-body {
    width: 100%;
    max-width: none;
    margin-right: 0;
  }

  ._65, .info-block {
    width: 100%;
  }

  .pricing-card-left-align {
    justify-content: space-between;
  }

  .classroom-body {
    width: 100%;
    max-width: none;
    margin-right: 0;
  }

  .class-banner {
    min-height: 450px;
  }

  .classroom-details-card {
    max-width: none;
    position: static;
  }

  .benefits-list {
    max-height: none;
  }

  .faq-transparent-dropdown {
    align-items: stretch;
    min-width: auto;
  }

  .absolute-image-400 {
    bottom: -50px;
  }

  .image-wrapper-45 {
    width: 100%;
  }

  ._90-image {
    max-width: none;
  }

  .secondary-section {
    padding-top: 120px;
    padding-bottom: 140px;
  }

  .service-slide-card {
    padding-left: 40px;
    padding-right: 40px;
  }

  .text-size-medium {
    margin-bottom: 0;
  }

  .footer-logo {
    max-width: 180px;
  }
}

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

  h2 {
    font-size: 40px;
    line-height: 60px;
  }

  h3 {
    font-size: 24px;
  }

  ._3-column-grid {
    grid-row-gap: 60px;
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: center;
  }

  ._3-column-grid._2-col-in-mobile-lanscape {
    grid-template-columns: 1fr 1fr;
  }

  .slider-navigation {
    top: -56px;
    left: auto;
    right: 0;
  }

  .card-black {
    max-width: none;
  }

  .banner {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .breadcrumb-block {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

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

  .heading-style-box {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    flex-direction: column;
    padding: 30px;
  }

  .color-box-grid {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .schedule-timing-title {
    font-size: 16px;
  }

  ._80px-margin-section {
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .featured-blogs {
    max-width: 480px;
  }

  .post-image {
    max-height: 360px;
  }

  ._404-sub-heading {
    font-size: 26px;
    line-height: 40px;
  }

  .utility-page-wrap {
    justify-content: flex-start;
    padding-top: 35%;
  }

  .changelog-section {
    margin-top: 40px;
    margin-bottom: -40px;
  }

  .container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-left: 26px;
    padding-right: 26px;
  }

  .nav-menu-wrapper {
    z-index: 1;
    min-width: 320px;
  }

  .navbar {
    z-index: 99999;
    max-width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .nav-menu {
    border-radius: 0;
  }

  .site-logo-wrapper {
    padding-left: 0;
  }

  .site-logo-wrapper.w--current {
    max-width: 35%;
  }

  .cross-icon {
    font-style: normal;
    display: none;
  }

  .footer-columns {
    grid-template-columns: .5fr;
  }

  .footer-block {
    width: 100%;
  }

  .footer-wrapper {
    grid-template-columns: 1fr;
    padding-top: 0;
    padding-bottom: 0;
  }

  .footer-bottom {
    grid-row-gap: 10px;
    text-align: center;
    flex-flow: column;
    display: flex;
  }

  .footer-content-wrapper {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-size: 16px;
  }

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

  .heading-green-stroke {
    font-size: 47px;
  }

  ._80px-title {
    font-size: 45px;
  }

  .hero-social-icons-wrapper {
    width: 70%;
  }

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

  .double-image-wrapper-15px-gap {
    margin-top: 60px;
  }

  .slider {
    min-height: auto;
  }

  .top-right-navigation {
    max-width: 50px;
    height: 50px;
    top: -68px;
  }

  ._48px-primary-title-stroke {
    font-size: 36px;
  }

  ._36px-title {
    font-size: 32px;
  }

  .service-body {
    padding-bottom: 15px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .pricing-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .outlined-green-button {
    font-size: 16px;
    line-height: 26px;
  }

  .pricing-tab {
    padding-left: 30px;
    padding-right: 30px;
  }

  .schedule-grid {
    flex-flow: column;
    display: flex;
  }

  .time-block, .time-block.first-block {
    display: none;
  }

  .schedule-block {
    border-right: 1px solid var(--1-main-colors--border);
    border-bottom: 1px solid var(--3-neutral--neutral-300);
    height: 80px;
    font-size: 14px;
  }

  .row-first-block {
    height: 80px;
    font-size: 15px;
  }

  .shedule-tab-menu {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .schedule-link {
    font-size: 18px;
    line-height: 26px;
  }

  .feature-image-80px {
    margin-bottom: 20px;
  }

  ._4-column {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr;
  }

  .bg-text {
    font-size: 80px;
    line-height: 100px;
  }

  .bg-text._200px-font {
    font-size: 75px;
  }

  .bg-text._170px-font {
    font-size: 60px;
    top: 77px;
  }

  .text-bg-wrapper {
    top: -55px;
  }

  .text-bg-wrapper.absolute-0 {
    top: -100px;
  }

  .margin-top-120px {
    margin-top: 60px;
  }

  .cta-section {
    margin-top: 80px;
    margin-bottom: 80px;
    padding-top: 80px;
  }

  .newsletter-content {
    padding-left: 30px;
  }

  ._48px-title {
    font-size: 40px;
  }

  .footer-paragraph-18px {
    text-align: left;
  }

  ._25-mask {
    max-width: 60%;
  }

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

  .on-hover-slider {
    flex-flow: column;
  }

  .margin-bottom-40px {
    margin-bottom: 20px;
  }

  .hover-slide {
    width: 100%;
  }

  .portrait-image-min-width-750px {
    min-height: auto;
  }

  ._60px-primary-title-stroke-rotate {
    font-size: 36px;
    display: none;
  }

  .bottom-black-overlay {
    padding-bottom: 15px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .mask-37 {
    max-width: 48%;
  }

  ._2-block-slider-wrapper {
    margin-right: 0;
  }

  .slider-contents {
    display: flex;
  }

  .slider-contents.workout-slider {
    padding-bottom: 40px;
  }

  ._50px-arrow-navigation {
    top: 130px;
  }

  .larger-container-for-slider {
    padding-top: 80px;
  }

  ._64px-primary-stroke-title {
    font-size: 50px;
    line-height: 70px;
  }

  .blog-list-card {
    max-width: none;
  }

  .blog-featured-title {
    font-size: 24px;
    line-height: 36px;
  }

  .info-block {
    grid-row-gap: 15px;
    flex-direction: column;
    align-items: flex-start;
    font-size: 15px;
  }

  .pricing-card-left-align {
    min-width: auto;
  }

  .tabs-content {
    width: 100%;
  }

  .class-banner {
    min-height: 360px;
  }

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

  .divider.margin-top-60px-bottom-80px {
    margin-top: 50px;
    margin-bottom: 60px;
  }

  .gallery-horizontal-block {
    flex-flow: column;
  }

  .gallery-square-image {
    width: 100%;
  }

  .absolute-image-400 {
    right: -8px;
  }

  .secondary-section {
    padding-top: 90px;
    padding-bottom: 100px;
  }

  .mask-48 {
    max-width: 100%;
  }

  .service-slide-card {
    padding-top: 100px;
    padding-bottom: 90px;
  }

  .schedule-wrapper {
    display: flex;
  }

  .mobile-landscape-weekly {
    flex-flow: column;
    width: 100%;
    max-width: 100px;
    display: flex;
  }

  .time-block-mob {
    border-bottom: 1px solid var(--3-neutral--neutral-300);
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 80px;
    display: flex;
  }

  .mob-time {
    border-right: 1px solid var(--3-neutral--neutral-300);
    border-bottom: 1px solid var(--3-neutral--neutral-300);
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 80px;
    display: flex;
  }

  .week-time {
    flex-flow: column;
    display: flex;
  }

  .footer-content-wrapper-attribution {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-size: 16px;
  }

  .text-size-medium {
    line-height: 40px;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 34px;
    line-height: 50px;
  }

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

  h3 {
    font-size: 22px;
    line-height: 28px;
  }

  h4 {
    font-size: 20px;
    line-height: 28px;
  }

  ._3-column-grid {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  ._3-column-grid._2-col-in-mobile-lanscape {
    grid-template-columns: 1fr;
  }

  .primary-button {
    flex: 1;
    width: 100%;
  }

  .title-wrapper {
    margin-bottom: 36px;
  }

  .mask.related-post {
    max-width: none;
    height: auto;
  }

  .slider-navigation, .gathering-slider-navigation {
    max-width: 110px;
  }

  .blog-thumbnail {
    height: 240px;
  }

  .blog-body {
    padding-top: 30px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .blog-body.featured-body {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    padding-top: 30px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .blog-card-title {
    font-size: 20px;
    line-height: 30px;
  }

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

  .breadcrumb {
    font-size: 15px;
    line-height: 24px;
  }

  .heading-style-box {
    padding: 20px;
  }

  .color-box {
    width: 120px;
    height: 120px;
  }

  .schedule-timing-title {
    font-size: 14px;
  }

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

  .featured-blogs {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .featured-image {
    max-width: none;
  }

  .tag-button {
    font-size: 14px;
    line-height: 22px;
  }

  .post-image {
    width: 100%;
    max-width: 100%;
  }

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

  ._404-sub-heading {
    font-size: 22px;
    line-height: 36px;
  }

  .utility-page-wrap {
    padding-top: 50%;
  }

  .changelog-section {
    margin-bottom: -20px;
  }

  .license-main-text {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 24px;
  }

  .license-title {
    font-size: 18px;
    line-height: 27px;
  }

  .license-paragraph {
    font-size: 14px;
    line-height: 21px;
  }

  .nav-list {
    border-bottom-style: none;
  }

  .nav-link {
    font-size: 14px;
    line-height: 22px;
  }

  .nav-link.w--current {
    padding-top: 0;
    padding-bottom: 0;
  }

  .container {
    align-items: center;
    padding-left: 15px;
    padding-right: 15px;
  }

  .nav-menu-wrapper {
    z-index: 2;
    min-width: 260px;
  }

  .dropdown-options {
    right: -84.7031px;
  }

  .nav-button-list {
    padding-left: 0;
  }

  .navbar {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-icon-and-text-wrapper {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .nav-menu {
    grid-row-gap: 30px;
    flex-direction: column;
    overflow: visible;
  }

  .site-logo {
    max-width: 160px;
    max-height: none;
  }

  .menu-button {
    margin-left: 10px;
  }

  .hamburger-icon {
    background-color: rgba(255, 255, 255, 0);
  }

  .site-logo-wrapper.w--current {
    max-width: 50%;
  }

  .nav-list-for-dropdown {
    border-bottom-style: none;
  }

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

  .footer-block {
    border-bottom: 1px solid var(--1-main-colors--border);
    max-width: none;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .footer-block.newsletter-footer-block {
    border-top-style: none;
    border-bottom-style: none;
  }

  .footer-link {
    font-size: 15px;
  }

  .space-between-block {
    width: 100%;
  }

  .footer-wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .copyrights-divider {
    display: none;
  }

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

  .footer-content-wrapper {
    flex-flow: column;
  }

  .footer-paragraph {
    font-size: 14px;
  }

  .absolute-border {
    top: -24%;
  }

  .heading-green-stroke {
    font-size: 34px;
  }

  ._80px-title {
    font-size: 32px;
  }

  .vertical-left-top.hero-block {
    padding-top: 80px;
  }

  .margin-top-20px-bottom-60px {
    margin-top: 25px;
    margin-bottom: 40px;
  }

  .hero-social-icons-wrapper {
    grid-column-gap: 18px;
    grid-row-gap: 18px;
    width: 100%;
  }

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

  ._49-image {
    width: 100%;
  }

  ._49-image.negative-move {
    display: none;
  }

  .absolute-card {
    max-width: 254px;
    margin-left: auto;
    margin-right: auto;
    top: auto;
    bottom: -50px;
    left: 0%;
    right: 0%;
  }

  .slider-animation-wrapper {
    transform: translate(-100vw);
  }

  .partners-grid-infinity {
    grid-row-gap: 0px;
    grid-template-columns: 1fr 1fr 1fr;
    transform: none;
  }

  .slider {
    transform: none;
  }

  .top-right-navigation {
    right: 20px;
  }

  .top-right-navigation.left-arrow {
    right: 80px;
  }

  ._48px-primary-title-stroke {
    font-size: 40px;
  }

  .absolute-rotate {
    left: 2%;
  }

  ._36px-title {
    font-size: 28px;
    line-height: 40px;
  }

  .margin-top-90px {
    margin-top: 60px;
  }

  ._20px-title {
    font-size: 18px;
    line-height: 28px;
  }

  .absolute-divider, .absolute-divider-horizontal {
    display: none;
  }

  .pricing-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

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

  .pricing-card-black {
    padding: 40px 25px 50px;
  }

  .pricing-feature {
    font-size: 15px;
    line-height: 34px;
  }

  .outlined-green-button {
    align-self: stretch;
    padding: 9px 20px;
    font-size: 15px;
    line-height: 24px;
  }

  .price-64px {
    font-size: 50px;
  }

  .pricing-mask {
    width: 100%;
    min-width: auto;
  }

  .pricing-tab {
    width: 100%;
  }

  .pricing-tab-menu {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .pricing-tab-contents {
    margin-top: 75px;
  }

  .schedule-block {
    height: 70px;
    font-size: 12px;
  }

  .row-first-block {
    height: 70px;
    font-size: 13px;
  }

  .shedule-tab-menu {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .schedule-link {
    padding: 8px 15px;
    font-size: 15px;
    line-height: 24px;
  }

  ._4-column {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    grid-template-columns: 1fr;
  }

  .bg-text {
    font-size: 50px;
    line-height: 70px;
  }

  .bg-text._200px-font {
    font-size: 48px;
  }

  .bg-text._170px-font {
    font-size: 40px;
    top: 96px;
  }

  .text-bg-wrapper {
    top: -35px;
  }

  .text-size-large {
    font-size: 20px;
    line-height: 1.3;
  }

  .cta-section {
    margin-top: 60px;
    margin-bottom: 60px;
    padding-top: 70px;
  }

  .cta-wrapper {
    max-width: none;
  }

  .newsletter-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  ._48px-title {
    font-size: 32px;
    line-height: 44px;
  }

  .newsletter-section {
    padding-top: 30px;
  }

  .footer-paragraph-18px {
    font-size: 14px;
  }

  ._25-mask {
    max-width: 100%;
  }

  .partners-infinity {
    padding-top: 45px;
    padding-bottom: 45px;
  }

  .logo-inifinity-wrapper {
    transform: translate(-100vw);
  }

  .space-between-top-align {
    width: 100%;
  }

  .floating-mission-card {
    padding-bottom: 20px;
    padding-left: 17px;
    padding-right: 17px;
    left: 20px;
  }

  .number-80px-stroke {
    font-size: 60px;
    line-height: 60px;
  }

  .margin-bottom-40px {
    margin-bottom: 12px;
  }

  ._60px-primary-title-stroke-rotate {
    font-size: 40px;
  }

  .mask-37 {
    max-width: 100%;
  }

  ._2-block-slider-wrapper {
    padding-bottom: 60px;
  }

  ._50px-arrow-navigation {
    top: 100px;
  }

  ._64px-primary-stroke-title {
    font-size: 36px;
    line-height: 48px;
  }

  .counter {
    font-size: 14px;
  }

  .percentage-counter {
    font-size: 16px;
    line-height: 120%;
    right: -20px;
  }

  .field-inputs-wrapper {
    flex-direction: column;
  }

  .contact-icon-wrapper-40px {
    width: 30px;
    height: 30px;
    font-size: 18px;
    line-height: 18px;
  }

  .cotnact-form {
    padding: 30px 20px 34px;
  }

  .blog-list-card {
    padding: 20px 14px;
  }

  .blog-list-thumbnail {
    height: 240px;
  }

  .blog-divider {
    margin-top: 8px;
    margin-bottom: 4px;
  }

  .blog-featured-title {
    font-size: 20px;
    line-height: 30px;
  }

  .pricing-floating-text {
    font-size: 15px;
    line-height: 24px;
    left: -82px;
  }

  .pricing-floating-text.yearly {
    right: -65px;
  }

  .pricing-card-left-align {
    padding-left: 25px;
    padding-right: 25px;
  }

  .switch-menu {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .tab-link-pink {
    width: 42px;
    height: 30px;
  }

  .membership-card {
    padding: 70px 20px 60px;
    font-size: 16px;
    line-height: 26px;
  }

  .membership-features-wrapper {
    margin-bottom: 50px;
  }

  .membership-feature {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .classroom-body {
    padding-top: 30px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .class-banner {
    min-height: 280px;
    padding-bottom: 40px;
  }

  .classroom-details-card {
    padding-left: 20px;
    padding-right: 20px;
  }

  ._2-column {
    column-count: 1;
    column-gap: 10px;
  }

  .classroom-images {
    margin-bottom: 20px;
  }

  .margin-top-100px {
    margin-top: 60px;
  }

  .divider.margin-top-60px-bottom-80px {
    margin-top: 30px;
    margin-bottom: 40px;
  }

  .benefits-list {
    font-size: 16px;
    line-height: 26px;
  }

  ._404-heading {
    font-size: 150px;
    line-height: 150px;
  }

  .gallery-container {
    flex-flow: column;
  }

  .gallery-vertical-block {
    width: 100%;
  }

  .gallery-horizontal-block.show-mobile-only {
    display: flex;
  }

  .gallery-horizontal-block.hide-on-mobile {
    display: none;
  }

  .faq-form {
    padding: 30px 20px 34px;
  }

  .faq-transparent-dropdown {
    grid-row-gap: 0px;
    justify-content: center;
    align-items: center;
  }

  .dropdown-switch-20px-padding {
    justify-content: space-between;
    padding: 15px;
  }

  .secondary-section {
    padding-top: 60px;
    padding-bottom: 70px;
  }

  .service-slide-card {
    padding: 90px 30px 80px;
  }

  .top-left-service-icon-wrapper {
    padding: 15px;
    left: 30px;
  }

  .button-color {
    flex: 1;
  }

  .mobile-landscape-weekly {
    max-width: 80px;
  }

  .time-block-mob, .mob-time {
    height: 70px;
  }

  .text-size-medium {
    line-height: 36px;
  }

  .footer-logo {
    max-width: 140px;
    max-height: none;
  }

  .gym80-logo-footer {
    max-width: 100px;
    max-height: none;
  }

  .cta-button-wrapper {
    flex-flow: column;
    align-self: stretch;
  }

  .secondary-button-outlined {
    flex: 1;
    width: 100%;
  }

  .horizontal-button-wrapper.align-bottom {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .inputs-row-wrapper {
    flex-flow: column;
    margin-bottom: 12px;
  }
}

#w-node-_901b11ce-36b2-31bf-dffd-1d53d00b3cbd-6e4f113c, #w-node-_16d464fc-f796-da4c-88b6-cb92c3cc161b-6e4f113c, #w-node-dd7e4d92-fd0c-f336-3318-f2e27004d02b-6e4f113c, #w-node-_73a53562-bf9e-88a2-3533-d41138741e7d-6e4f113c, #w-node-_7872c8f3-e18a-7135-439f-89880aeb408c-6e4f113c, #w-node-_7872c8f3-e18a-7135-439f-89880aeb4090-6e4f113c, #w-node-_7872c8f3-e18a-7135-439f-89880aeb4094-6e4f113c, #w-node-_7872c8f3-e18a-7135-439f-89880aeb4098-6e4f113c, #w-node-f3d2bd98-c442-9223-dca0-662629658e79-b75bd7b0, #w-node-f3d2bd98-c442-9223-dca0-662629658ea3-b75bd7b0, #w-node-f1f2b54f-27fb-5a8f-8736-4400cdf7ee06-6e4f1145, #w-node-f1f2b54f-27fb-5a8f-8736-4400cdf7ee0c-6e4f1145, #w-node-f1f2b54f-27fb-5a8f-8736-4400cdf7ee12-6e4f1145, #w-node-f1f2b54f-27fb-5a8f-8736-4400cdf7ee18-6e4f1145, #w-node-_901b11ce-36b2-31bf-dffd-1d53d00b3cbd-1dcacca2, #w-node-_16d464fc-f796-da4c-88b6-cb92c3cc161b-1dcacca2, #w-node-dd7e4d92-fd0c-f336-3318-f2e27004d02b-1dcacca2, #w-node-_73a53562-bf9e-88a2-3533-d41138741e7d-1dcacca2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-f3d2bd98-c442-9223-dca0-662629658ea3-b75bd7b0 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 767px) {
  #w-node-f3d2bd98-c442-9223-dca0-662629658e79-b75bd7b0, #w-node-f3d2bd98-c442-9223-dca0-662629658e87-b75bd7b0 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}


@font-face {
  font-family: 'Icofont';
  src: url('../fonts/icofont.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}