:root {
  --paragraph-color: #6a6a6a;
  --heading-color: #1d2229;
  --secondary-color: #524ff5;
  --primary-color: #ff000d;
  --white: white;
  --f08307: #1d2229;
  --slate-blue: #f08307;
  --grey-background-color: #f0f0f0;
  --background-black-color: #2c323a;
  --midnight-blue: #192350;
  --azure: #e8f7f8;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

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

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: var(--paragraph-color);
  letter-spacing: .02em;
  font-family: Lato, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
}

h1 {
  color: var(--heading-color);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Inter, sans-serif;
  font-size: 50px;
  font-weight: 800;
  line-height: 1.3;
}

h2 {
  color: var(--heading-color);
  margin-top: 15px;
  margin-bottom: 10px;
  font-family: Inter, sans-serif;
  font-size: 45px;
  font-weight: 800;
  line-height: 1.3;
}

h3 {
  color: var(--heading-color);
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Inter, sans-serif;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.4;
}

h4 {
  color: var(--heading-color);
  margin-top: 15px;
  margin-bottom: 10px;
  font-family: Inter, sans-serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.4;
}

h5 {
  color: var(--heading-color);
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Inter, sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.5;
}

h6 {
  color: var(--heading-color);
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Inter, sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.5;
}

p {
  color: var(--paragraph-color);
  margin-bottom: 10px;
  font-family: Lato, sans-serif;
  font-size: 18px;
  font-weight: 400;
}

a {
  color: var(--heading-color);
  text-decoration: none;
  transition: color .2s;
}

a:hover {
  color: var(--secondary-color);
}

ul, ol {
  margin-top: 15px;
  margin-bottom: 30px;
  padding-left: 40px;
}

li {
  color: var(--paragraph-color);
  padding-top: 7px;
  padding-bottom: 7px;
  font-family: Lato, sans-serif;
  font-size: 20px;
  font-weight: 400;
}

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

blockquote {
  border: 50px solid var(--secondary-color);
  background-color: var(--primary-color);
  color: var(--heading-color);
  text-align: center;
  margin-top: 20px;
  margin-bottom: 40px;
  padding: 100px;
  font-size: 25px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
}

.header-section {
  z-index: 20;
  background-color: var(--white);
  position: sticky;
  top: 0;
}

.header-menu-wrap {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.header-content-wrap {
  margin-left: 30px;
  margin-right: 30px;
}

.navbar {
  z-index: auto;
  background-color: #0000;
  padding-top: 20px;
  padding-bottom: 20px;
  position: sticky;
  top: 0;
}

.nav-link {
  color: var(--heading-color);
  text-align: center;
  flex: 0 auto;
  width: auto;
  padding-left: 18px;
  padding-right: 18px;
  font-family: Lato, sans-serif;
  font-size: 15px;
  font-weight: 400;
  transition: color .2s;
}

.nav-link:hover {
  color: var(--slate-blue);
  text-align: center;
}

.nav-link.w--current {
  color: var(--f08307);
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
}

.nav-link.w--current:hover {
  color: var(--slate-blue);
}

.nav-link.dropdown-nav-link {
  padding-left: 23px;
  padding-right: 0;
}

.dropdown-toggle {
  margin-right: 0;
  padding-left: 2px;
  padding-right: 45px;
}

.dropdown-list {
  background-color: var(--grey-background-color);
}

.dropdown-list.w--open {
  background-color: #fff;
  padding-top: 10px;
  padding-bottom: 20px;
  padding-left: 10px;
  box-shadow: 1px 3px 6px #00000029;
}

.dropdown-link {
  color: var(--heading-color);
  font-family: Lato, sans-serif;
  font-size: 15px;
  font-weight: 400;
  transition: color .2s;
}

.dropdown-link:hover {
  color: var(--slate-blue);
}

.dropdown-link.w--current {
  color: var(--secondary-color);
  font-size: 18px;
}

.banner-title-section {
  background-color: var(--heading-color);
  background-image: url('../images/style-guide-bg.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  margin-left: 30px;
  margin-right: 30px;
  padding-top: 100px;
  padding-bottom: 100px;
}

.banner-title-wrap {
  text-align: center;
  justify-content: center;
  align-items: center;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
}

.typography-section {
  padding-top: 30px;
  padding-bottom: 30px;
}

.container {
  max-width: 100%;
  padding-top: 0;
  padding-left: 30px;
  padding-right: 30px;
}

.styleguide-content-wrap {
  width: 80%;
  margin-top: 30px;
}

.paragraph-section {
  padding-top: 30px;
  padding-bottom: 30px;
}

.styleguide-section-title {
  color: var(--secondary-color);
  font-size: 36px;
}

.list-section {
  padding-top: 30px;
  padding-bottom: 20px;
}

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

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

.color-item {
  text-align: center;
  margin-bottom: 10px;
}

.color-box {
  background-color: var(--primary-color);
  width: 100%;
  height: 190px;
}

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

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

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

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

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

.color-code {
  text-transform: uppercase;
  margin-top: 10px;
  font-size: 22px;
  font-weight: 600;
}

.blockquote-section {
  padding-top: 30px;
  padding-bottom: 30px;
}

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

.button {
  border: 2px solid var(--primary-color);
  background-color: var(--primary-color);
  color: var(--heading-color);
  margin-top: 10px;
  margin-bottom: 10px;
  margin-right: 10px;
  padding: 17px 45px;
  font-family: Lato, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  transition: border-color .2s, color .2s, background-color .2s;
}

.button:hover {
  color: var(--heading-color);
  background-color: #0000;
}

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

.button.hero-main-button:hover {
  color: var(--primary-color);
}

.button-large {
  border: 2px solid var(--primary-color);
  background-color: var(--primary-color);
  color: var(--heading-color);
  margin-top: 10px;
  margin-bottom: 10px;
  margin-right: 10px;
  padding: 17px 60px;
  font-family: Lato, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  transition: border-color .2s, background-color .2s, color .2s;
}

.button-large:hover {
  color: var(--heading-color);
  background-color: #0000;
}

.button-large.error-button {
  margin-top: 30px;
}

.style-button-wrap {
  background-color: #0000;
  margin-bottom: 20px;
}

.black-button {
  border: 2px solid var(--slate-blue);
  background-color: var(--white);
  color: var(--slate-blue);
  margin-top: 10px;
  margin-bottom: 10px;
  margin-right: 10px;
  padding: 17px 45px;
  font-family: Lato, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  transition: border-color .2s, background-color .2s, color .2s;
}

.black-button:hover {
  background-color: var(--slate-blue);
  color: var(--white);
}

.black-button.hover-white:hover {
  border-color: var(--white);
  color: var(--white);
}

.black-button-large {
  border: 2px solid var(--heading-color);
  background-color: var(--heading-color);
  color: #fff;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-right: 10px;
  padding: 17px 60px;
  font-family: Lato, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  transition: background-color .2s, border-color .2s, color .2s;
}

.black-button-large:hover {
  color: var(--heading-color);
  background-color: #0000;
}

.black-button-large.password-button {
  margin-top: 0;
  margin-right: 0;
}

.transparent-button {
  border: 2px solid var(--grey-background-color);
  color: var(--heading-color);
  background-color: #0000;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-right: 10px;
  padding: 17px 45px;
  font-family: Lato, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  transition: border-color .2s, color .2s, background-color .2s;
}

.transparent-button:hover {
  border-color: var(--grey-background-color);
  background-color: var(--grey-background-color);
  color: var(--heading-color);
}

.transparent-button.header-button {
  border-color: var(--slate-blue);
  background-color: var(--slate-blue);
  color: var(--white);
  margin-right: 10px;
  padding: 10px 20px;
  font-size: 15px;
}

.transparent-button.header-button:hover {
  background-color: var(--white);
  color: var(--slate-blue);
}

.transparent-button.hero-second-button {
  color: var(--white);
}

.transparent-button.hero-second-button:hover {
  color: var(--heading-color);
}

.transparent-button.blog-listing-button {
  background-color: var(--white);
}

.transparent-button.blog-listing-button:hover {
  border-color: var(--primary-color);
  background-color: var(--primary-color);
}

.transparent-button-large {
  border: 2px solid var(--grey-background-color);
  color: var(--heading-color);
  background-color: #0000;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-right: 10px;
  padding: 17px 60px;
  font-family: Lato, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  transition: background-color .2s, border-color .2s, color .2s;
}

.transparent-button-large:hover {
  background-color: var(--grey-background-color);
}

.footer-section {
  background-color: var(--heading-color);
  text-align: center;
  margin-left: 30px;
  margin-right: 30px;
  padding: 60px 10px;
}

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

.footer-widget {
  text-align: center;
  margin-bottom: 0;
}

.footer-content {
  color: var(--white);
  text-transform: capitalize;
  margin: 20px 10px;
}

.footer-contact-wrap {
  background-color: var(--background-black-color);
  border: 1px solid #485059;
  margin-top: 45px;
  padding: 30px 30px 20px;
}

.footer-contact-link-wrap {
  flex-direction: column;
  margin-bottom: 15px;
  display: flex;
}

.footer-link-title {
  color: var(--primary-color);
  margin-right: 10px;
  font-weight: 700;
}

.footer-link {
  color: #bcbcbc;
  margin-right: 20px;
  font-family: Lato, sans-serif;
  font-weight: 400;
  text-decoration: none;
  transition: color .2s;
}

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

.footer-utility-widget {
  text-align: left;
  width: 200px;
}

.widget-title {
  color: var(--white);
  letter-spacing: .04em;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
}

.footer-page-link {
  color: #bcbcbc;
  padding-bottom: 5px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  transition: color .2s;
  display: block;
}

.footer-page-link:hover {
  color: var(--primary-color);
}

.subscribe-form-flex {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: flex-start;
  padding-top: 7px;
  display: flex;
}

.subscribe-form-input-wrapper {
  text-align: left;
  width: 100%;
}

.subscribe-form-input {
  background-color: var(--background-black-color);
  color: #bcbcbc;
  border: 1px solid #485059;
  width: 100%;
  min-height: 65px;
  margin-bottom: 10px;
  padding-left: 30px;
  font-family: Lato, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.5;
}

.subscribe-form-input::placeholder {
  color: #bcbcbc;
  font-family: Lato, sans-serif;
  font-size: 22px;
  font-weight: 400;
}

.footer-social-link {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 20px;
}

.bottom-to-top-wrap {
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.bottom-to-top-link {
  border: 1px solid #485059;
  border-radius: 1100px;
  justify-content: center;
  align-items: center;
  width: 57px;
  min-width: 57px;
  height: 57px;
  min-height: 57px;
  transition: background-color .2s, border-color .2s;
  display: flex;
}

.bottom-to-top-link:hover {
  border-bottom-color: var(--secondary-color);
  background-color: var(--secondary-color);
}

.footer-border-wrap {
  background-color: #485059;
  width: 100%;
  height: 1px;
  margin-right: 20px;
}

.header-logo-wrap {
  flex: 0 auto;
}

.header-menu-button {
  flex: 0 auto;
  justify-content: space-between;
  display: flex;
}

.nav-menu {
  background-color: #fff;
  align-items: center;
  width: 20%;
  margin-right: 15px;
  display: flex;
  left: 970px;
}

.banner-title-border-text {
  opacity: .56;
  color: var(--heading-color);
  text-transform: capitalize;
  text-shadow: 0 1px 0 var(--white);
  margin-top: 0;
  font-size: 62px;
  line-height: 1.3;
  display: block;
  position: absolute;
  inset: 0%;
}

.banner-title-text {
  z-index: 2;
  color: var(--white);
  text-transform: capitalize;
  font-size: 60px;
  line-height: 1.3;
  display: block;
  position: relative;
}

.copyright-section {
  padding-top: 40px;
  padding-bottom: 30px;
}

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

.instagram-wrap {
  background-image: url('../images/tanrenimage0404.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  margin-left: 30px;
  margin-right: 30px;
}

.instgram-link-wrap {
  justify-content: center;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

.instagram-heading {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
  padding-right: 10px;
  font-size: 36px;
  font-weight: 700;
}

.instagram-link {
  color: var(--white);
  font-family: Inter, sans-serif;
  font-size: 36px;
  font-weight: 700;
  text-decoration: underline;
}

.instagram-link:hover {
  color: var(--primary-color);
}

.hero-section {
  margin-left: 30px;
  margin-right: 30px;
}

.hero-slider {
  background-color: #0000;
  height: 100%;
}

.hero-slider-mask {
  height: 500px;
}

.hero-slider-item {
  background-color: var(--heading-color);
  background-image: url('../images/tanren_main_1440.png');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  height: 200px;
  padding-top: 100px;
  padding-bottom: 100px;
}

.hero-slider-item.slider-two {
  background-image: url('../images/hero-image-2.jpg');
  height: 100%;
}

.hero-slider-item.slider-three {
  background-image: url('../images/hero-image-3.jpg');
}

.hero-slider-content {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.hero-title {
  color: var(--white);
  text-align: center;
  text-transform: capitalize;
  text-shadow: -4px -2px 5px #000;
  margin-bottom: 5px;
  font-size: 30px;
  line-height: 1.2;
}

.hero-slide-button-wrap {
  text-align: center;
  padding-top: 10px;
}

.slide-nav {
  background-color: #0000;
  margin-top: 10px;
  display: none;
  position: relative;
}

.right-arrow {
  z-index: 1;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin-right: 10px;
  display: flex;
}

.left-arrow {
  z-index: 1;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin-left: 10px;
  display: flex;
}

.about-section {
  margin-top: 0;
  padding-top: 40px;
  padding-bottom: 60px;
}

.about-grid {
  grid-column-gap: 45px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1.75fr;
  align-items: stretch;
}

.section-title-area {
  text-align: center;
  margin-bottom: 20px;
}

.section-title-area.section-left-align {
  text-align: center;
  margin-bottom: 60px;
  padding-top: 20px;
}

.section-subtitle {
  color: var(--heading-color);
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1px solid #0000;
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 22px;
  font-weight: 600;
}

.section-subtitle.white-subtitle {
  color: var(--white);
}

.section-subtitle.primary-color-subtitle {
  color: var(--primary-color);
}

.section-title {
  color: var(--slate-blue);
  text-transform: capitalize;
  width: auto;
  margin-top: -10px;
  margin-bottom: 10px;
  font-size: 50px;
  font-weight: 700;
}

.section-title.white-section-title {
  color: var(--white);
}

.section-title-content {
  color: var(--paragraph-color);
  font-size: 15px;
}

.section-title-content.white-section-title-content {
  color: var(--white);
}

.about-image-wrap {
  text-align: center;
  background-image: url('../images/about-round-layer.png');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: auto;
}

.about-item-wrap {
  float: none;
  text-align: left;
  object-fit: fill;
  padding-top: 0;
  display: block;
  position: static;
}

.about-item {
  border-top: 2px solid var(--slate-blue);
  border-left: 2px none var(--slate-blue);
  background-color: var(--grey-background-color);
  justify-content: space-between;
  align-items: center;
  width: 60%;
  margin-bottom: 25px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 30px;
  display: flex;
}

.about-item-content {
  flex: 0 auto;
  margin-right: 40px;
  padding-left: 0;
}

.about-item-content.about-second-content {
  margin-right: 40px;
  padding-left: 0;
}

.about-item-image {
  flex: none;
}

.about-item-title {
  color: var(--heading-color);
  margin-top: 10px;
  font-size: 23px;
  font-weight: 700;
}

.about-point-content {
  margin-bottom: 0;
  font-size: 18px;
}

.about-main-image-wrap {
  text-align: center;
  margin-top: 200px;
  display: inline-block;
  position: relative;
}

.white-button {
  border: 2px solid var(--slate-blue);
  background-color: var(--white);
  color: var(--slate-blue);
  padding: 17px 45px;
  font-size: 22px;
  font-weight: 400;
  transition: background-color .2s, border-color .2s, color .2s;
}

.white-button:hover {
  border-color: var(--slate-blue);
  background-color: var(--slate-blue);
  color: var(--white);
}

.about-button-wrap {
  position: absolute;
  inset: auto auto 4% 5%;
}

.training-type-section {
  padding-top: 0;
  padding-bottom: 100px;
}

.training-type-wrap {
  border-top: 1px solid #d2d2d2;
  border-bottom: 1px solid #d2d2d2;
  padding-top: 40px;
  padding-bottom: 40px;
}

.training-type-grid {
  grid-column-gap: 30px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

.training-type-item {
  background-color: var(--grey-background-color);
  align-items: center;
  padding: 10px;
  display: flex;
}

.training-type-icon-wrap {
  background-color: var(--heading-color);
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  display: flex;
}

.training-type-title {
  color: var(--heading-color);
  margin-bottom: 0;
  padding-left: 20px;
  font-size: 22px;
  font-weight: 400;
}

.training-type-count {
  color: var(--white);
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 22px;
  font-weight: 600;
}

.training-review-wrap {
  align-items: center;
  display: flex;
}

.training-review-text-wrap {
  padding-left: 10px;
}

.review-text {
  color: var(--heading-color);
  margin-bottom: 0;
  font-size: 22px;
  font-weight: 400;
}

.testimonial-section {
  background-image: url('../images/testimonial-text-bg.png');
  background-position: 0 82%;
  background-repeat: no-repeat;
  background-size: auto;
  margin-bottom: 40px;
  padding-top: 100px;
  padding-bottom: 20px;
}

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

.testimonial-item {
  background-color: var(--grey-background-color);
  width: 60%;
  margin-left: 0;
  margin-right: 30px;
  padding: 30px;
  overflow: hidden;
}

.testimonial-item-wrap {
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.testimonial-image-wrap {
  width: 80%;
  position: relative;
}

.testimonial-content-wrap {
  border-left: 1px solid var(--paragraph-color);
  margin-left: 20px;
  padding-left: 30px;
}

.testimonial-image {
  border-radius: 100px;
}

.testimonial-quote-wrap {
  background-color: var(--secondary-color);
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  display: flex;
  position: absolute;
  inset: 0% auto auto 0%;
}

.client-name {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}

.client-designation {
  color: var(--heading-color);
  margin-bottom: 5px;
  font-size: 18px;
}

.testimonial-slider-nav {
  position: relative;
}

.testimonial-content {
  margin-top: 5px;
  margin-bottom: 0;
}

.slider-arrow-icon {
  color: var(--white);
}

.testimonial-right-arrow {
  z-index: 2;
  background-color: var(--heading-color);
  border-radius: 100px;
  width: 80px;
  height: 80px;
  margin-top: 60px;
  margin-left: 220px;
  margin-right: 0;
  transition: background-color .2s;
  display: inline-block;
  position: relative;
}

.testimonial-right-arrow:hover {
  background-color: var(--secondary-color);
}

.testimonial-left-arrow {
  z-index: 2;
  background-color: var(--heading-color);
  border-radius: 100px;
  width: 80px;
  height: 80px;
  margin-top: 60px;
  margin-left: 0;
  margin-right: 220px;
  transition: background-color .2s;
  display: inline-block;
  position: relative;
}

.testimonial-left-arrow:hover {
  background-color: var(--secondary-color);
}

.facility-section {
  background-color: var(--secondary-color);
  padding-top: 100px;
  padding-bottom: 80px;
  position: relative;
}

.facility-grid {
  grid-column-gap: 30px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: .5fr;
  align-items: stretch;
}

.facility-video-link {
  background-color: var(--primary-color);
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5px;
  transition: background-color .2s, color .2s;
  display: flex;
}

.facility-video-link:hover {
  background-color: var(--white);
}

.facility-video-link-wrap {
  background-image: url('../images/facility-men-image.jpg');
  background-position: 50%;
  background-size: cover;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 700px;
  margin-top: 60px;
  display: flex;
  position: relative;
}

.facility-large-text-image {
  display: none;
  position: absolute;
  inset: auto auto 18% -13%;
}

.facility-item {
  border-bottom: 1px solid var(--white);
  margin-top: 20px;
  margin-bottom: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.facility-title-wrap {
  background-color: var(--heading-color);
  justify-content: flex-start;
  align-items: center;
  padding: 15px 30px 15px 20px;
  display: flex;
}

.facility-title {
  color: var(--white);
  text-transform: capitalize;
  margin-bottom: 0;
  padding-left: 10px;
  line-height: 1.1;
  display: inline-block;
}

.facility-content {
  color: var(--white);
}

.facility-title-area {
  margin-bottom: 10px;
  display: inline-block;
}

.pricing-section {
  background-image: url('../images/plan-text.svg');
  background-position: 100% 5%;
  background-repeat: no-repeat;
  background-size: auto;
  padding-top: 100px;
  padding-bottom: 80px;
}

.pricing-grid {
  grid-column-gap: 30px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  margin-top: 40px;
}

.pricing-item {
  background-color: #f9f9f9;
  padding: 30px 20px 40px;
}

.pricing-title-wrap {
  justify-content: center;
  padding-bottom: 35px;
  display: flex;
}

.pricing-title {
  margin-top: 10px;
  padding-left: 20px;
  font-size: 33px;
  font-weight: 700;
}

.pricing-price-wrap {
  text-align: center;
  border-top: 1px solid #d3d3d3;
  border-bottom: 1px solid #d3d3d3;
  padding-top: 20px;
  padding-bottom: 30px;
}

.pricing-price {
  font-size: 26px;
  font-weight: 600;
}

.pricing-offer {
  background-color: var(--white);
  color: var(--heading-color);
  padding: 10px 25px;
  font-size: 18px;
  font-weight: 700;
  display: inline-block;
}

.pricing-offer.highlight-offer {
  background-color: var(--primary-color);
}

.pricing-item-list-wrap {
  text-align: center;
  margin-top: 40px;
  padding-bottom: 5px;
}

.pricing-list-detail {
  text-transform: capitalize;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 400;
}

.pricing-list-detail.pricing-highlight-text {
  color: var(--secondary-color);
  font-weight: 700;
}

.pricing-button-wrap {
  text-align: center;
  margin-top: 20px;
}

.pricing-bold-text {
  color: var(--heading-color);
  font-weight: 700;
}

.about-banner-title-section {
  background-image: url('../images/about-banner-image.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  margin-left: 40px;
  margin-right: 40px;
  padding-top: 100px;
  padding-bottom: 100px;
}

.about-intro-section {
  padding-bottom: 0;
  position: relative;
  top: 0;
}

.about-intro-wrap {
  background-color: var(--white);
  width: 100%;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px;
}

.about-intro-grid {
  grid-column-gap: 30px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
  align-items: stretch;
}

.about-intro-image {
  grid-column-gap: 40px;
  grid-row-gap: 16px;
  grid-template-columns: .45fr 1fr;
  width: 100%;
}

.intro-section {
  background-image: url('../images/story-text.svg');
  background-position: 100% 2%;
  background-repeat: no-repeat;
  background-size: auto;
  padding-bottom: 100px;
}

.intro-grid {
  grid-column-gap: 30px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
}

.story-item {
  background-color: var(--grey-background-color);
  flex-direction: column;
  justify-content: center;
  height: 465px;
  padding: 30px;
  display: flex;
}

.story-item.story-second-item {
  background-image: url('../images/story-item-bg-image-1.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: flex-end;
  margin-top: 20px;
  margin-bottom: 40px;
}

.story-item.story-third-item {
  background-color: var(--primary-color);
  height: 250px;
}

.story-title {
  font-size: 30px;
  font-weight: 700;
}

.story-title.white-story-title {
  color: var(--white);
}

.story-image-wrap {
  margin-top: 30px;
  margin-bottom: 20px;
}

.story-item-wrap {
  padding-top: 30px;
}

.white-story-content {
  color: var(--white);
}

.video-wrap-section {
  background-image: url('../images/video-bg.jpg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 100px;
  padding-bottom: 100px;
  overflow: hidden;
}

.video-wrap {
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.video-lightbox-link {
  border: 2px solid var(--white);
  border-radius: 200px;
  justify-content: center;
  align-items: center;
  width: 200px;
  min-width: 200px;
  height: 200px;
  min-height: 200px;
  margin-left: 0;
  margin-right: 0;
  padding-left: 10px;
  transition: border-color .2s, background-color .2s, color .2s;
  display: flex;
}

.video-lightbox-link:hover {
  border-color: var(--secondary-color);
  background-color: var(--secondary-color);
}

.our-values-section {
  background-color: var(--heading-color);
  padding-top: 100px;
  padding-bottom: 100px;
}

.our-values-title-grid {
  grid-column-gap: 30px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  align-items: stretch;
}

.our-values-grid {
  grid-column-gap: 40px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 30px;
}

.our-value-item {
  background-color: var(--background-black-color);
  border: 1px solid #485059;
  padding: 50px 40px 40px;
}

.our-value-title {
  color: var(--white);
  text-transform: capitalize;
  font-size: 24px;
  font-weight: 700;
}

.our-value-content {
  color: #bcbcbc;
  font-size: 20px;
}

.counter-section {
  padding-bottom: 100px;
}

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

.counter-item {
  text-align: center;
  border: 1px solid #d2d2d2;
  padding-top: 40px;
  padding-bottom: 60px;
}

.counter-value {
  margin-bottom: 0;
  font-size: 60px;
  font-style: italic;
  font-weight: 800;
}

.counter-title {
  color: var(--heading-color);
  font-size: 22px;
  font-weight: 700;
}

.join-club-section {
  background-image: url('../images/classes-cta-bg.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 100px;
  padding-top: 100px;
  padding-bottom: 100px;
}

.join-club-wrap {
  text-align: center;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}

.contact-form-section {
  background-image: url('../images/contact-text.svg');
  background-position: 0 7%;
  background-repeat: no-repeat;
  background-size: auto;
  padding-top: 120px;
  padding-bottom: 80px;
}

.contact-form-grid {
  grid-column-gap: 50px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  align-items: center;
}

.contact-form-area {
  background-color: #f9f9f9;
  padding: 40px;
}

.open-hours-title {
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 600;
  display: inline-block;
}

.open-hours-list-wrap {
  margin-top: 20px;
  display: block;
}

.open-hours-list {
  align-items: center;
  margin-bottom: 10px;
  display: flex;
}

.open-hours-day {
  color: var(--heading-color);
  text-transform: capitalize;
  font-size: 20px;
  font-weight: 700;
}

.open-hours-time {
  text-transform: uppercase;
  padding-left: 10px;
  font-size: 20px;
}

.open-hours-title-wrap {
  border-bottom: 1px solid #d3d3d3;
  margin-bottom: 10px;
  display: inline-block;
}

.input-field {
  color: var(--paragraph-color);
  background-color: #0000;
  border-bottom: 1px solid #d3d3d3;
  min-height: 65px;
  margin-bottom: 25px;
  padding-left: 20px;
  font-family: Lato, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.5;
}

.input-field::placeholder {
  color: var(--paragraph-color);
  font-family: Lato, sans-serif;
  font-size: 22px;
  font-weight: 400;
}

.input-field.text-area {
  color: var(--paragraph-color);
  min-height: 150px;
  font-family: Lato, sans-serif;
  font-size: 22px;
  font-weight: 400;
}

.input-field.text-area::placeholder {
  color: var(--paragraph-color);
  font-family: Lato, sans-serif;
  font-size: 22px;
  font-weight: 400;
}

.input-field.half-width {
  width: 48%;
}

.contact-form-title {
  font-family: Inter, sans-serif;
  font-size: 36px;
  font-weight: 700;
}

.contact-form-subtitle {
  color: var(--secondary-color);
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 500;
}

.contact-form-block {
  margin-top: 40px;
}

.contact-info-section {
  background-image: url('../images/contact-info-bg.jpg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 120px;
  padding-bottom: 120px;
}

.contact-info-grid {
  grid-column-gap: 15px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.contact-info-item {
  background-color: var(--primary-color);
  text-align: center;
  border-right-style: none;
  padding: 75px 60px 70px;
}

.contact-info-item.last-info-child {
  border-right-style: none;
}

.contact-info-icon-wrap {
  background-color: var(--heading-color);
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 53px;
  height: 53px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.contact-info-title {
  font-size: 30px;
  font-weight: 600;
}

.contact-info-divider {
  background-color: var(--heading-color);
  width: 70px;
  height: 5px;
  margin: 20px auto;
}

.contact-info-content {
  color: var(--background-black-color);
  margin-bottom: 15px;
}

.contact-info-link {
  color: var(--heading-color);
  font-weight: 700;
}

.contact-info-address {
  color: var(--heading-color);
  margin-bottom: 0;
  font-weight: 700;
}

.bmi-section {
  background-image: url('../images/bmi-text.svg');
  background-position: 100% 16%;
  background-repeat: no-repeat;
  background-size: auto;
  padding-top: 120px;
  padding-bottom: 100px;
}

.bmi-grid {
  grid-column-gap: 45px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
}

.form-input-wrap {
  justify-content: space-between;
  display: flex;
}

.bmi-values-area {
  margin-top: 40px;
}

.bmi-values-list {
  justify-content: space-around;
  display: flex;
}

.bmi-values-item {
  background-color: var(--heading-color);
  text-align: center;
  border: 1px solid #353a40;
  flex: 1;
  padding-top: 30px;
  padding-bottom: 30px;
}

.bmi-title {
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 0;
}

.bmi-value {
  color: var(--white);
  text-transform: capitalize;
  margin-bottom: 0;
}

.bmi-status {
  color: var(--white);
  margin-bottom: 0;
}

.bmi-status.underweight {
  color: #f8c800;
}

.bmi-status.healthy {
  color: #a1f65e;
}

.bmi-status.overweight {
  color: #ffa24b;
}

.bmi-status.obese {
  color: #ff4b4b;
}

.cta-section {
  background-color: var(--secondary-color);
  margin-bottom: 100px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.cta-grid {
  grid-column-gap: 10px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.cta-title {
  color: var(--white);
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 33px;
  font-weight: 700;
  line-height: 1.5;
}

.cta-subscribe-form-flex {
  flex-direction: row;
  flex: 1;
  justify-content: center;
  align-items: flex-end;
  display: flex;
}

.cta-subscribe-form-wrapper {
  text-align: left;
}

.cta-subscribe-form-input {
  color: var(--white);
  background-color: #0000;
  border: 1px #000;
  min-height: 65px;
  margin-bottom: 0;
  font-size: 22px;
}

.cta-subscribe-form-input::placeholder {
  color: var(--white);
  font-size: 22px;
}

.cta-form-block {
  border: 1px solid var(--white);
  justify-content: space-between;
  align-items: center;
  width: 80%;
  padding-left: 10px;
  display: flex;
}

.cta-form-area {
  margin-bottom: 0;
}

.changelog-section {
  background-image: url('../images/changelog-text.svg');
  background-position: 100% 7%;
  background-repeat: no-repeat;
  background-size: auto;
  padding-top: 120px;
  padding-bottom: 120px;
}

.changelog-content-area {
  text-align: center;
}

.changelog-content-wrap {
  text-align: center;
  background-color: #f9f9f9;
  width: 100%;
  margin-top: 20px;
  padding: 100px 140px 120px;
  display: inline-block;
}

.changelog-version {
  color: var(--secondary-color);
  font-size: 30px;
  font-weight: 700;
}

.licenses-section {
  background-image: url('../images/licenses-text.svg');
  background-position: 100% 7%;
  background-repeat: no-repeat;
  background-size: auto;
  padding-top: 100px;
  padding-bottom: 80px;
}

.license-item {
  margin-bottom: 30px;
  padding-top: 30px;
}

.license-content-area {
  border-bottom: 1px solid #afafaf;
  margin-left: 100px;
  padding-top: 30px;
  padding-bottom: 60px;
}

.license-link-wrap {
  align-items: center;
  padding-top: 10px;
  display: flex;
}

.license-website-name {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 25px;
  font-weight: 700;
}

.license-website-link {
  padding-left: 10px;
  font-size: 22px;
}

.license-link-lists {
  margin-bottom: 20px;
}

.image-live-link {
  font-size: 22px;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.utility-page-form {
  background-color: #f9f9f9;
  flex-direction: column;
  align-items: stretch;
  width: 90%;
  padding: 100px 130px;
  display: flex;
}

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

.password-content {
  color: var(--secondary-color);
  font-family: Inter, sans-serif;
  font-weight: 500;
}

.protected-title {
  font-size: 40px;
  font-weight: 700;
}

.password-title-wrap {
  padding-bottom: 30px;
}

.error-section {
  text-align: center;
  padding-top: 130px;
  padding-bottom: 140px;
}

.error-page-content-wrap {
  margin-top: 35px;
}

.schedule-section {
  background-image: url('../images/shedule-text.svg');
  background-position: 100% 11%;
  background-repeat: no-repeat;
  background-size: auto;
  padding-top: 140px;
  padding-bottom: 120px;
}

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

.schedule-day-grid {
  background-color: var(--background-black-color);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}

.schedule-day-item {
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
}

.schedule-day-name {
  color: var(--white);
  margin-bottom: 0;
  font-weight: 700;
}

.schedule-workout-grid {
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  background-color: var(--background-black-color);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  place-content: stretch;
  place-items: stretch stretch;
}

.schedule-workout-item {
  border: 1px solid var(--heading-color);
  background-color: var(--background-black-color);
  text-align: center;
  justify-content: center;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 22px;
}

.schedule-workout-item.workout-timing {
  display: flex;
}

.schedule-time {
  color: var(--white);
  margin-bottom: 0;
}

.schedule-workout-name {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 22px;
}

.workout-time, .workout-trainer-name {
  color: var(--white);
}

.working-section {
  background-color: var(--heading-color);
  padding-top: 100px;
  padding-bottom: 100px;
}

.working-table-wrap {
  display: block;
}

.working-day-grid {
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  background-color: var(--background-black-color);
  grid-template-rows: auto;
  grid-template-columns: .6fr .6fr 1fr .6fr;
}

.working-day-title {
  color: var(--white);
  text-align: center;
  border: 1px solid #50555b;
  margin-bottom: 0;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 19px;
}

.working-item-grid {
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: .6fr .6fr 1fr .6fr;
}

.working-time-item {
  text-align: center;
  border: 1px solid #50555b;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.working-time-text {
  color: var(--white);
  text-transform: capitalize;
  margin-bottom: 0;
  font-size: 18px;
}

.working-type-text {
  color: #a1f65e;
  text-transform: capitalize;
  margin-bottom: 0;
  font-size: 18px;
}

.working-type-text.advanced-working {
  color: #ff4b4b;
}

.working-type-text.intermediate-working {
  color: #ffa24b;
}

.workout-name {
  color: var(--white);
  margin-bottom: 0;
  font-size: 17px;
  font-weight: 700;
}

.workout-trainer-image {
  border-radius: 100px;
}

.working-trainer-wrap {
  justify-content: center;
  align-items: center;
  display: flex;
}

.workout-trainer {
  color: var(--white);
  margin-bottom: 0;
  padding-left: 10px;
  font-size: 18px;
}

.workout-tabs {
  text-align: center;
  margin-top: 40px;
}

.working-tabs-content {
  margin-top: 20px;
}

.blog-section {
  background-image: url('../images/blog-text.svg');
  background-position: 100% 14%;
  background-repeat: no-repeat;
  background-size: auto;
  padding-top: 120px;
  padding-bottom: 120px;
}

.blog-section.related-posts {
  background-image: url('../images/related-text.svg');
  background-repeat: no-repeat;
  background-size: auto;
}

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

.blog-item {
  z-index: 2;
  background-color: var(--white);
  border: 1px solid #d2d2d2;
  padding: 40px;
  transition: box-shadow .2s;
  position: relative;
}

.blog-item:hover {
  z-index: 4;
  box-shadow: 0 0 15px 3px #1d222933;
}

.blog-meta-wrap {
  padding-top: 24px;
  padding-bottom: 24px;
}

.blog-date {
  color: var(--secondary-color);
  margin-bottom: 0;
  display: inline-block;
}

.blog-category-link {
  background-color: #f3f3f3;
  margin-left: 20px;
  padding: 5px 15px 7px;
  display: inline-block;
}

.blog-category-link.blog-single-category {
  margin-top: 10px;
  margin-left: 0;
  padding-bottom: 7px;
}

.blog-category-link.blog-listing-category {
  background-color: var(--white);
}

.blog-title {
  text-transform: capitalize;
  font-family: Inter, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  display: block;
}

.blog-author-wrap {
  justify-content: flex-start;
  align-items: center;
  margin-top: 25px;
  display: flex;
}

.blog-author-image {
  border-radius: 100px;
  width: 56px;
  height: 56px;
}

.blog-author-name {
  color: var(--heading-color);
  margin-bottom: 0;
  padding-left: 20px;
  font-weight: 400;
  transition: color .2s;
}

.blog-author-name:hover {
  color: var(--secondary-color);
}

.blog-collection-item {
  padding-left: 0;
  padding-right: 0;
}

.blog-single-section {
  border-top: 1px solid #d2d2d2;
  padding-bottom: 80px;
}

.blog-single-wrap {
  padding-top: 80px;
}

.blog-single-top-wrap {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
  display: flex;
}

.blog-single-title {
  text-transform: capitalize;
  font-size: 40px;
  font-weight: 700;
}

.blog-single-image {
  width: 100%;
}

.blog-single-content {
  max-width: 100%;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
}

.blog-single-author-section {
  background-color: #f9f9f9;
  padding-top: 80px;
  padding-bottom: 80px;
}

.author-wrap {
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.blog-single-author-image {
  border-radius: 100px;
}

.blog-single-author-name {
  margin-top: 20px;
  margin-bottom: 0;
  font-size: 25px;
  font-weight: 600;
}

.blog-author-designation {
  color: var(--heading-color);
  font-size: 18px;
}

.author-social-wrap {
  margin-top: 25px;
}

.author-social-link {
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
}

.blog-author-content {
  color: var(--heading-color);
  margin-top: 15px;
  font-size: 22px;
  font-style: italic;
}

.global-page-section {
  padding: 100px 10px;
}

.global-banner-title {
  background-image: url('../images/global-banner-bg.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  margin-left: 30px;
  margin-right: 30px;
  padding-top: 100px;
  padding-bottom: 100px;
}

.global-page-title-wrap {
  justify-content: center;
  display: flex;
}

.global-page-title-area {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.banner-value-title {
  color: var(--primary-color);
  padding-left: 20px;
  font-size: 60px;
}

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

.trainers-section.home-trainers-section {
  padding-top: 40px;
}

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

.trainer-item {
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.trainer-image {
  width: 100%;
}

.trainer-content-area {
  background-color: var(--heading-color);
  color: var(--heading-color);
  padding: 40px 35px;
  display: block;
  position: relative;
  overflow: hidden;
}

.trainer-name {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 24px;
  font-weight: 600;
}

.trainer-name:hover {
  color: var(--primary-color);
}

.trainer-special-section {
  border-top: 1px solid #49505a;
  margin-top: 15px;
  padding-top: 15px;
}

.special-text {
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 700;
}

.special-content {
  color: #bcbcbc;
}

.trainer-social-wrap {
  margin-top: 20px;
}

.trainer-social-link-block {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 20px;
}

.trainer-listing-link-block {
  width: 100%;
}

.trainer-banner-title-area {
  background-image: url('../images/trainer-banner-bg.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  margin-left: 30px;
  margin-right: 30px;
  padding-top: 100px;
  padding-bottom: 100px;
}

.trainer-single-section {
  padding-top: 120px;
  padding-bottom: 100px;
}

.trainer-single-grid {
  grid-column-gap: 20px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
}

.trainer-single-image {
  width: 100%;
}

.trainer-title-wrap {
  margin-top: 40px;
}

.trainer-single-name {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.1;
}

.trainer-single-designation {
  color: var(--secondary-color);
  margin-top: 0;
  font-size: 20px;
  font-weight: 600;
}

.trainer-contact-wrap {
  margin-top: 30px;
}

.trainer-content-link-item {
  align-items: center;
  margin-bottom: 15px;
  display: flex;
}

.trainer-contact-title {
  color: var(--heading-color);
  margin-bottom: 0;
  font-weight: 700;
}

.trainer-contact-link {
  color: var(--paragraph-color);
  padding-left: 10px;
  font-size: 18px;
}

.trainer-contact-text {
  margin-bottom: 0;
  padding-left: 10px;
}

.trainer-single-social-wrap {
  margin-top: 20px;
}

.personal-detail-title {
  margin-top: 0;
  font-size: 45px;
  font-weight: 700;
}

.trainer-collection-item {
  padding-left: 15px;
  padding-right: 15px;
}

.join-team-section {
  background-image: url('../images/trainer-cta.jpg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 100px;
  padding-bottom: 100px;
}

.join-team-grid {
  grid-column-gap: 100px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  align-items: center;
}

.join-team-address {
  color: var(--white);
  margin-bottom: 0;
  padding-top: 30px;
}

.join-team-link {
  color: var(--white);
}

.join-team-link:hover {
  color: var(--primary-color);
}

.video-class-section {
  background-color: var(--heading-color);
  margin-bottom: 100px;
  padding-top: 100px;
  padding-bottom: 100px;
}

.video-class-area {
  text-align: center;
  background-image: url('../images/video-calss-image.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
  height: 540px;
  margin-top: 40px;
  display: flex;
}

.video-class-link {
  border: 2px solid var(--grey-background-color);
  background-color: #0000;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 150px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  transition: border-color .2s, background-color .2s, color .2s;
  display: flex;
}

.video-class-link:hover {
  border-color: var(--heading-color);
  background-color: var(--heading-color);
}

.video-class-button-wrap {
  text-align: center;
  margin-top: 80px;
}

.classes-section {
  background-image: url('../images/classes-text.svg');
  background-position: 100% 8%;
  background-repeat: no-repeat;
  background-size: auto;
  padding-top: 140px;
  padding-bottom: 60px;
}

.classes-content-wrap {
  margin-top: 40px;
}

.class-item {
  margin-bottom: 60px;
}

.class-title {
  text-transform: capitalize;
  margin-bottom: 5px;
  font-family: Inter, sans-serif;
  font-size: 28px;
  font-weight: 700;
  display: inline-block;
}

.class-readmore-link {
  color: var(--secondary-color);
  font-family: Lato, sans-serif;
  font-size: 20px;
  font-weight: 400;
}

.class-readmore-link:hover {
  color: var(--heading-color);
}

.class-listing-image {
  width: 100%;
}

.class-listing-content {
  margin-top: 20px;
}

.classes-collection-item {
  padding-left: 15px;
  padding-right: 15px;
}

.classes-single-title-area {
  background-image: url('../images/class-title-bg.jpg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  margin-left: 30px;
  margin-right: 30px;
  padding-top: 120px;
  padding-bottom: 120px;
}

.class-single-section {
  padding-top: 100px;
  padding-bottom: 40px;
}

.class-grid {
  grid-column-gap: 30px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 2.25fr 1fr;
  align-items: start;
}

.class-detail-wrap {
  background-color: #f9f9f9;
  padding: 40px 20px;
}

.class-meta-wrap {
  align-items: center;
  margin-top: 50px;
  display: flex;
}

.class-date {
  color: var(--secondary-color);
}

.class-category {
  color: var(--heading-color);
  background-color: #f3f3f3;
  margin-left: 20px;
  padding: 5px 15px 7px;
}

.class-detail-title {
  font-size: 28px;
  font-weight: 700;
}

.class-detail-area {
  margin-top: 40px;
  margin-bottom: 40px;
}

.class-detail-item {
  margin-bottom: 20px;
  display: flex;
}

.class-detail-content {
  color: var(--heading-color);
  margin-left: 10px;
  font-weight: 700;
}

.class-video-section {
  padding-bottom: 100px;
}

.class-video-wrap {
  background-image: url('../images/class-video-bg.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
  height: 500px;
  display: flex;
}

.class-video-lightbox {
  border: 2px solid var(--white);
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 144px;
  height: 144px;
  padding-left: 5px;
  transition: background-color .2s, border-color .2s, color .2s;
  display: flex;
}

.class-video-lightbox:hover {
  border-color: var(--secondary-color);
  background-color: var(--secondary-color);
}

.blog-list-section {
  background-image: url('../images/blog-text.svg');
  background-position: 100% 7%;
  background-repeat: no-repeat;
  background-size: auto;
  padding-top: 40px;
  padding-bottom: 100px;
}

.blog-list-wrap {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.blog-list-item {
  background-color: var(--grey-background-color);
  padding: 40px 30px 40px 40px;
  position: relative;
}

.blog-listing-content {
  margin-top: 10px;
  margin-bottom: 30px;
  padding-right: 0;
}

.blog-listing-overlay {
  z-index: 1;
  background-color: #f9f9f9;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0%;
}

.blog-listing-content-wrap {
  z-index: 2;
  padding-right: 140px;
  position: relative;
}

.blog-listing-collection {
  margin-bottom: 20px;
}

.success-message {
  background-color: var(--primary-color);
  color: var(--heading-color);
}

.error-message {
  color: var(--heading-color);
  text-align: center;
  margin-top: 20px;
  padding: 20px;
}

.menu-button {
  background-color: var(--midnight-blue);
  flex: 0 auto;
  margin-left: 20px;
}

.menu-button.w--open {
  background-color: var(--secondary-color);
}

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

.facility-image, .facility-our-image {
  display: none;
}

.home-classes-section {
  background-color: var(--white);
  padding-top: 60px;
  padding-bottom: 0;
}

.home-classes-grid {
  grid-template-rows: auto;
}

.moving-wrap {
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.moving-content {
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  width: 240%;
  display: flex;
}

.moving-content-area {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-direction: row;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  width: 50%;
  padding-right: 0;
  display: flex;
  overflow: visible;
}

.moving-text {
  color: var(--white);
  text-align: left;
  letter-spacing: .4em;
  text-transform: uppercase;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 35px;
  font-weight: 700;
}

.moving-text.fitness-text {
  color: var(--slate-blue);
}

.moving-section {
  background-color: var(--midnight-blue);
  width: auto;
  padding-top: 15px;
  padding-bottom: 5px;
}

.workout-tab-link {
  color: #878787;
  background-color: #0000;
  padding-left: 40px;
  padding-right: 40px;
}

.workout-tab-link:hover {
  color: var(--primary-color);
}

.workout-tab-link.w--current {
  color: var(--primary-color);
  background-color: #0000;
}

.trainer-name-wrap {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.trainer-rating-wrap {
  align-items: center;
  display: flex;
}

.start-rating-number {
  color: var(--white);
  margin-bottom: 0;
  margin-right: 5px;
}

.input-field-white {
  color: var(--white);
  background-color: #0000;
  height: 65px;
  margin-bottom: 25px;
  padding-left: 20px;
  font-family: Lato, sans-serif;
  font-size: 22px;
  font-weight: 400;
}

.input-field-white::placeholder {
  color: var(--white);
  font-size: 22px;
}

.input-field-white.half-width {
  width: 48%;
}

.input-field-white.text-area {
  height: 150px;
}

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

.faq-content-area {
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}

.accordion-item {
  background-color: #fff;
  border-bottom: 1px solid #d3d3d3;
  width: 100%;
  margin-bottom: 0;
  padding-right: 40px;
  overflow: hidden;
}

.accordion-toggle {
  align-items: center;
  height: 80px;
  padding-left: 0;
  display: flex;
}

.accordion-toggle.w--open {
  padding-left: 0;
  font-weight: 400;
}

.accordion-icon {
  margin-right: 0;
}

.accordion-question {
  border-radius: 20px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

.accordion-dropdown-list {
  position: static;
}

.accordion-dropdown-list.w--open {
  background-color: #0000;
  display: block;
}

.faq-content {
  margin-bottom: 20px;
  font-size: 20px;
}

.header-bottom-to-top-wrap {
  height: 0;
}

.more-template-badge {
  z-index: 999;
  margin-bottom: 10px;
  position: fixed;
  inset: auto 0% 30px auto;
}

.buy-template-badge {
  z-index: 999;
  position: fixed;
  inset: auto 0% 5px auto;
}

.hero-title-copy {
  color: var(--white);
  text-align: center;
  text-transform: capitalize;
  text-shadow: -4px -2px 5px #000;
  text-align: center;
  text-transform: capitalize;
  margin-top: 5px;
  font-size: 50px;
  line-height: 1.2;
}

.hero-title-copy-copy {
  color: var(--white);
  text-align: center;
  text-transform: capitalize;
  text-shadow: 5px 0 5px #000;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 100px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.2;
}

.about-item-title-copy, .about-item-title-copy-copy, .about-item-title-copy-copy, .about-item-title-copy-copy, .about-item-title-copy-copy, .about-item-title-copy-copy-copy, .about-item-title-copy-copy-copy, .about-item-title-copy-copy-copy, .about-item-title-copy-copy-copy, .about-item-title-copy-copy-copy-copy, .about-item-title-copy-copy-copy-copy, .about-item-title-copy-copy-copy-copy {
  color: var(--slate-blue);
  margin-top: 10px;
  font-size: 23px;
  font-weight: 700;
}

.about-item-title-copy-copy-copy-copy, .about-item-title-copy-copy-copy-copy-copy {
  color: var(--slate-blue);
  margin-top: 10px;
  font-size: 15px;
  font-weight: 700;
}

.about-item-title-copy-copy-copy-copy-copy {
  color: var(--slate-blue);
  margin-top: 10px;
  font-size: 12px;
  font-weight: 700;
}

.button-2 {
  border: 1px solid var(--slate-blue);
  background-color: var(--slate-blue);
  color: var(--white);
  text-align: center;
  width: 200px;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
  display: block;
}

.button-2:hover {
  background-color: var(--white);
  color: var(--slate-blue);
}

.container-2 {
  max-width: 8%;
}

.hero-slider-item-copy {
  background-color: var(--heading-color);
  background-image: url('../images/attractive-young-woman-and-her-trainer-running-on-treadmill-in-gym0404.jpg');
  background-position: 50% 40%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  padding-top: 100px;
  padding-bottom: 100px;
}

.hero-slider-item-copy.slider-two {
  background-image: url('../images/hero-image-2.jpg');
  height: 100%;
}

.hero-slider-item-copy.slider-three {
  background-image: url('../images/hero-image-3.jpg');
}

.button-3 {
  background-color: #0000;
  font-size: 15px;
}

.button-3:hover {
  color: var(--slate-blue);
}

.button-4 {
  background-color: #0000;
  font-size: 15px;
}

.button-4:hover {
  color: var(--slate-blue);
}

.button-5 {
  background-color: #0000;
  font-size: 15px;
}

.button-5:hover {
  color: var(--slate-blue);
}

.button-6 {
  background-color: #0000;
  font-size: 15px;
}

.button-6:hover {
  color: var(--slate-blue);
}

.button-7 {
  background-color: #0000;
  font-size: 15px;
}

.button-7:hover {
  color: var(--slate-blue);
}

.button-8 {
  background-color: #0000;
  font-size: 15px;
}

.button-8:hover {
  color: var(--slate-blue);
}

.button-9 {
  background-color: #0000;
  font-size: 15px;
}

.button-9:hover {
  color: var(--slate-blue);
}

.button-10 {
  display: inline-block;
}

.text-block {
  color: var(--white);
  font-size: 15px;
}

.text-block-2 {
  color: var(--white);
  cursor: none;
  font-size: 40px;
}

.container-3 {
  background-color: var(--white);
  color: var(--white);
  max-width: 95%;
  height: 1px;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 0;
}

.text-block-3 {
  color: var(--white);
  margin-bottom: 20px;
  margin-left: 10px;
  margin-right: 10px;
  font-size: 12px;
}

.text-block-4 {
  text-align: center;
  width: auto;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 15px;
}

.text-block-5 {
  text-align: center;
  margin-bottom: 0;
  font-size: 18px;
}

.column {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0;
  background-size: auto;
  height: 250px;
}

.column-2 {
  height: 250px;
}

.text-block-6 {
  text-align: center;
  font-size: 40px;
  display: block;
}

.text-block-7 {
  text-align: center;
  font-size: 40px;
}

.link-block {
  background-image: url('../images/trainer-cta.jpg');
  background-position: 0 0;
  background-size: 960px;
}

.team-slider {
  background-color: #f5f7fa;
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

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

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

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

.team-slider-wrapper {
  background-color: #0000;
  height: auto;
  margin-top: 50px;
}

.team-slide-wrapper {
  width: 30%;
  margin-right: 5%;
}

.team-block {
  background-color: #fff;
  padding-bottom: 24px;
}

.team-member-image-two {
  margin-bottom: 18px;
}

.team-block-info {
  flex-direction: column;
  align-items: flex-start;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
}

.team-member-name-two {
  margin-bottom: 12px;
  font-weight: 600;
}

.team-member-text {
  margin-bottom: 20px;
}

.text-link-arrow {
  color: #1a1b1f;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  display: flex;
}

.arrow-embed {
  margin-left: 2px;
  display: flex;
}

.team-slider-arrow {
  display: none;
}

.team-slider-nav {
  margin-top: 24px;
  font-size: 10px;
  position: static;
  bottom: -60px;
}

.hero-heading-right {
  border-style: none solid solid;
  border-width: 1px;
  border-color: var(--midnight-blue) transparent transparent;
  color: var(--slate-blue);
  background-color: #1923501a;
  padding: 40px 30px;
  position: relative;
}

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

.hero-split {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 46%;
  display: flex;
}

.shadow-two {
  max-width: 110%;
  box-shadow: 0 4px 24px #96a3b514;
}

.margin-bottom-24px {
  margin-bottom: 24px;
  font-size: 14px;
}

.button-primary {
  border: 1px solid var(--slate-blue);
  background-color: var(--slate-blue);
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 25px;
  font-size: 18px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary:hover {
  background-color: var(--white);
  color: var(--slate-blue);
}

.button-primary:active {
  background-color: #43464d;
}

.heading {
  font-size: 30px;
  font-weight: 700;
}

.hero-subscribe-left {
  color: var(--slate-blue);
  background-color: #f083071a;
  border-bottom: 1px solid #e4ebf3;
  padding: 0 30px 40px;
  position: relative;
}

.hero-split-2 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 46%;
  display: flex;
}

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

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

.hero-form-input {
  color: #1a1b1f;
  border: 1px solid #d1d6db;
  width: 240px;
  height: auto;
  margin-bottom: 0;
  margin-right: 9px;
  padding: 5px 16px;
  font-size: 14px;
  line-height: 20px;
  transition: all .2s;
}

.hero-form-input:hover, .hero-form-input:focus {
  border-color: #76879d;
}

.hero-form-input::placeholder {
  color: #1a1b1fcc;
}

.text-block-8 {
  color: var(--heading-color);
  text-align: right;
  font-size: 12px;
}

.button-11 {
  border: 1px solid var(--slate-blue);
  background-color: var(--slate-blue);
  text-align: center;
  width: 200px;
  margin-top: 10px;
  padding-top: 3px;
  padding-bottom: 3px;
  font-size: 15px;
}

.button-11:hover {
  background-color: var(--white);
  color: var(--slate-blue);
}

.container-5 {
  background-color: var(--azure);
  max-width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
}

.hero-heading-right-2 {
  background-color: #0000;
  border: 1px solid #0000;
  padding: 0 30px;
  position: relative;
}

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

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

.hero-split-3 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 46%;
  display: flex;
}

.shadow-two-2 {
  box-shadow: 0 4px 24px #96a3b514;
}

.margin-bottom-24px-2 {
  color: var(--paragraph-color);
  margin-bottom: 24px;
  font-size: 18px;
}

.button-primary-2 {
  border: 1px solid var(--slate-blue);
  background-color: var(--slate-blue);
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 25px;
  font-size: 18px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary-2:hover {
  background-color: var(--white);
  color: var(--slate-blue);
}

.button-primary-2:active {
  background-color: #43464d;
}

.instagram-wrap-2 {
  background-image: url('../images/tanrenimage0404.jpg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  margin-left: 30px;
  margin-right: 30px;
}

.instagram-heading-2 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  padding-right: 10px;
  font-size: 36px;
  font-weight: 700;
}

.instagram-link-2 {
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 36px;
  font-weight: 700;
  text-decoration: underline;
}

.instagram-link-2:hover {
  color: #a1f65e;
}

.container-5-copy {
  background-color: var(--azure);
  border: 1px #000;
  max-width: 100%;
  padding-top: 40px;
  padding-bottom: 50px;
  display: block;
}

.section-title-copy {
  color: var(--slate-blue);
  text-transform: capitalize;
  width: auto;
  margin-top: -10px;
  margin-bottom: 10px;
  font-size: 50px;
  font-weight: 700;
}

.section-title-copy.white-section-title {
  color: var(--white);
}

.button-primary-2-copy {
  border: 1px solid var(--slate-blue);
  background-color: var(--slate-blue);
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 25px;
  font-size: 18px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary-2-copy:hover {
  background-color: var(--white);
  color: var(--slate-blue);
}

.button-primary-2-copy:active {
  background-color: #43464d;
}

.title {
  color: var(--heading-color);
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1px solid #0000;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 22px;
  font-weight: 600;
}

.title.white-subtitle {
  color: var(--white);
}

.title.primary-color-subtitle {
  color: var(--primary-color);
}

.section-title-content-copy {
  color: var(--paragraph-color);
  margin-bottom: 10px;
  margin-left: 20px;
  margin-right: 20px;
  font-size: 20px;
}

.section-title-content-copy.white-section-title-content {
  color: var(--white);
}

.section-title-area-copy.section-left-align {
  text-align: center;
  margin-bottom: 30px;
}

.nav-link-copy {
  color: var(--heading-color);
  text-align: center;
  padding-left: 18px;
  padding-right: 18px;
  font-family: Lato, sans-serif;
  font-size: 15px;
  font-weight: 400;
  transition: color .2s;
}

.nav-link-copy:hover {
  color: var(--slate-blue);
  text-align: center;
}

.nav-link-copy.w--current {
  color: var(--f08307);
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
}

.nav-link-copy.w--current:hover {
  color: var(--slate-blue);
}

.nav-link-copy.dropdown-nav-link {
  padding-left: 23px;
  padding-right: 0;
}

.container-7 {
  max-width: 100%;
  margin-top: 20px;
  margin-bottom: 40px;
  padding-left: 100px;
  padding-right: 100px;
}

.div-block {
  background-image: none;
  background-position: 50% 100%;
  background-size: cover;
  height: 150px;
}

.div-block-copy {
  background-image: url('../images/tanren_benner_1200.png');
  background-position: 50% 100%;
  background-size: cover;
  height: 150px;
}

.div-block-2 {
  background-color: var(--slate-blue);
  width: 50px;
  height: 6px;
  display: inline-block;
}

.div-block-3 {
  background-color: var(--f08307);
  height: 1px;
  margin-bottom: 40px;
  margin-left: 140px;
  margin-right: 140px;
  padding-left: 0;
  padding-right: 0;
}

.div-block-4 {
  border-top: 1px solid var(--paragraph-color);
  width: auto;
  height: 1px;
  margin-bottom: 60px;
  margin-left: 140px;
  margin-right: 140px;
  display: block;
}

.container-8 {
  max-width: 100%;
}

.div-block-5, .div-block-5-copy {
  background-image: url('../images/tanren_main_1440.png');
  background-position: 50% 0;
  background-size: cover;
  height: 530px;
}

.div-block-5-copy-copy {
  background-image: url('../images/tanren_main_1440.png');
  background-position: 50% 0;
  background-size: cover;
  width: 100%;
  max-width: 100%;
  height: 530px;
  max-height: 100%;
  margin-left: 0;
  margin-right: 0;
}

.container-copy {
  max-width: 100%;
  margin-bottom: 60px;
  padding-top: 0;
  padding-left: 30px;
  padding-right: 30px;
  display: block;
}

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

.team-slider-2 {
  background-color: #f5f7fa;
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

.container-9 {
  border: 1px #000;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  display: block;
}

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

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

.team-slider-wrapper-2 {
  background-color: #0000;
  height: auto;
  margin-top: 40px;
  display: block;
}

.team-slide-wrapper-2 {
  width: 45%;
  margin-left: 28px;
  margin-right: 2%;
}

.team-block-2 {
  background-color: #fff;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 0;
  display: block;
}

.team-member-image-two-2 {
  max-width: 100%;
  margin-bottom: 18px;
}

.team-block-info-2 {
  flex-direction: column;
  align-items: center;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
}

.team-member-name-two-2 {
  margin-bottom: 12px;
  font-size: 25px;
  font-weight: 600;
}

.team-member-text-2 {
  margin-bottom: 20px;
  font-size: 18px;
}

.text-link-arrow-2 {
  color: #1a1b1f;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  display: flex;
}

.arrow-embed-2 {
  margin-left: 2px;
  display: flex;
}

.team-slider-arrow-2 {
  display: none;
}

.team-slider-nav-2 {
  margin-top: 0;
  font-size: 10px;
  position: static;
  bottom: -60px;
}

.hero-heading-left {
  background-color: #f5f7fa;
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

.hero-wrapper-3 {
  background-color: #0000;
  border-bottom: 1px #000;
  justify-content: center;
  align-items: flex-start;
  max-width: 100%;
  margin-top: 0;
  margin-bottom: 60px;
  margin-left: auto;
  padding-top: 0;
  padding-left: 0;
  display: flex;
}

.hero-split-4 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 50%;
  max-width: 50%;
  margin-left: 0;
  display: flex;
}

.margin-bottom-24px-3 {
  color: #6a6a6a;
  text-align: left;
  margin-bottom: 24px;
  font-size: 18px;
}

.button-primary-3 {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary-3:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary-3:active {
  background-color: #43464d;
}

.shadow-two-3 {
  width: 300px;
  max-width: 100%;
  margin-top: 10px;
  margin-left: 40px;
  box-shadow: 0 4px 24px #96a3b514;
}

.hero-heading-right-3 {
  background-color: #f5f7fa;
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

.hero-wrapper-4 {
  justify-content: space-between;
  align-items: center;
  padding-top: 0;
  display: flex;
}

.heading-2 {
  text-align: center;
  width: 100%;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
}

.heading-3 {
  text-align: left;
}

.container-9-copy {
  border: 1px #000;
  border-bottom-style: solid;
  width: 100%;
  max-width: 820px;
  height: 1px;
  margin: 40px auto;
  padding-top: 0;
}

.sec-detail {
  color: var(--paragraph-color);
  text-align: center;
  margin-bottom: 40px;
  font-size: 18px;
}

.sec-detail.white-section-title-content {
  color: var(--white);
}

.section-copy {
  padding-top: 40px;
  padding-bottom: 40px;
}

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

.mask {
  float: none;
}

.menu-title {
  color: var(--white);
  text-align: center;
  -webkit-text-stroke-color: var(--white);
  background-color: #f0830780;
  width: 100%;
  max-width: none;
  margin-bottom: 10px;
  padding: 5px 0 5px 10px;
  font-size: 15px;
  font-weight: 700;
}

.div-block6 {
  background-image: url('../images/chiropractic1440.png');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  height: 270px;
}

.button-12 {
  float: none;
  border: 1px solid var(--slate-blue);
  background-color: var(--slate-blue);
  text-align: center;
  min-width: auto;
  max-width: 450px;
  min-height: auto;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
  display: block;
  position: static;
}

.button-12:hover {
  background-color: var(--white);
  color: var(--slate-blue);
  -webkit-text-stroke-color: var(--slate-blue);
}

.button-13 {
  text-align: center;
  mix-blend-mode: normal;
  background-color: #4051b5;
  background-image: linear-gradient(to right, #4051b5, #24cff1);
  width: auto;
  min-width: auto;
  max-width: 500px;
  min-height: auto;
  max-height: none;
  margin-top: auto;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 20px;
  transition: all .2s;
  display: block;
}

.button-13:hover {
  color: #fff;
  background-color: #24cff1;
  background-image: none;
}

.pricing-overview {
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 60px;
  position: relative;
}

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

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

.pricing-description {
  text-align: center;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-grid-2 {
  grid-column-gap: 51px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: stretch;
  margin-top: 50px;
  display: grid;
}

.pricing-card-three {
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.pricing-image {
  object-fit: cover;
  width: 200px;
  height: 150px;
  margin-bottom: 16px;
}

.pricing-card-text {
  margin-bottom: 20px;
  font-size: 15px;
}

.text-link-arrow-3 {
  color: #1a1b1f;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  display: flex;
}

.arrow-embed-3 {
  margin-left: 2px;
  display: flex;
}

.heading-4, .heading-5, .heading-6, .heading-7 {
  font-size: 25px;
}

.section-2 {
  height: 300px;
}

.text-block-9 {
  text-align: center;
  height: 100%;
  max-height: none;
  margin: auto;
  padding-top: 140px;
  display: block;
}

.title-english {
  color: var(--slate-blue);
  text-transform: capitalize;
  width: auto;
  margin-top: -10px;
  margin-bottom: 20px;
  font-size: 50px;
  font-weight: 700;
}

.title-english.white-section-title {
  color: var(--white);
}

.section-title-area-copy.section-left-align {
  text-align: center;
  background-color: #0000;
  margin-bottom: 10px;
  padding-top: 0;
}

.map {
  margin-bottom: 60px;
}

.section-title-area-copy {
  text-align: center;
  margin-bottom: 20px;
}

.section-title-area-copy.section-left-align {
  text-align: center;
  margin-bottom: 20px;
  padding-top: 60px;
}

.admission-title {
  color: var(--slate-blue);
  text-transform: capitalize;
  width: auto;
  margin-top: -10px;
  margin-bottom: 40px;
  font-size: 50px;
  font-weight: 700;
}

.admission-title.white-section-title {
  color: var(--white);
}

.team-slider-nav-2-copy {
  margin-top: 0;
  font-size: 10px;
  position: static;
  bottom: -60px;
}

.slider {
  color: #0000;
  background-color: #0000;
  height: 100%;
  display: flex;
}

.slide {
  float: left;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.icon, .icon-2 {
  margin-top: 240px;
}

.section-title-content-copy-copy {
  color: var(--paragraph-color);
  text-align: left;
  max-width: 800px;
  margin: 40px 20px 10px;
  padding-left: 0;
  font-size: 18px;
}

.link, .link-2 {
  color: var(--slate-blue);
}

.section-title-content-copy-copy {
  color: var(--paragraph-color);
  margin-bottom: 10px;
  margin-left: 20px;
  margin-right: 20px;
  font-size: 20px;
}

.section-title-content-copy-copy.white-section-title-content {
  color: var(--white);
}

.price2 {
  color: var(--f08307);
  margin-bottom: 10px;
  margin-left: 20px;
  margin-right: 20px;
  font-family: Inter, sans-serif;
  font-size: 30px;
  font-weight: 700;
}

.price2.white-section-title-content {
  color: var(--white);
}

.section-title-content-copy-copy-copy {
  color: var(--paragraph-color);
  margin: 40px 20px 10px;
  padding-left: 0;
  font-size: 18px;
}

.price {
  color: var(--paragraph-color);
  text-align: left;
  max-width: 800px;
  margin: 40px 20px 10px;
  padding-left: 0;
  font-size: 18px;
  display: inline-block;
}

.price.white-section-title-content {
  color: var(--white);
}

.section-title-content-copy-copy-copy {
  color: var(--paragraph-color);
  text-align: left;
  max-width: 800px;
  margin: 40px 20px 10px;
  padding-left: 0;
  font-size: 18px;
}

.section-title-content-copy-copy-copy.white-section-title-content {
  color: var(--white);
}

.section-title-content-copy-copy-copy-copy {
  color: var(--paragraph-color);
  text-align: left;
  max-width: 800px;
  margin: 40px 20px 10px;
  padding-left: 0;
  font-size: 18px;
}

.section-title-content-copy-copy-copy-copy.white-section-title-content {
  color: var(--white);
}

.section-title-content-copy-copy-copy-copy-copy {
  color: var(--paragraph-color);
  text-align: left;
  max-width: 800px;
  margin: 40px 20px 10px;
  padding-left: 0;
  font-size: 18px;
}

.section-title-content-copy-copy-copy-copy-copy.white-section-title-content {
  color: var(--white);
}

.admission {
  color: var(--paragraph-color);
  text-align: left;
  max-width: 800px;
  margin: 0 20px 10px;
  padding-left: 0;
  font-size: 18px;
  display: inline-block;
}

.admission.white-section-title-content {
  color: var(--white);
}

.price-title {
  color: var(--slate-blue);
  text-transform: capitalize;
  width: auto;
  margin-top: -10px;
  margin-bottom: 40px;
  font-size: 50px;
  font-weight: 700;
}

.price-title.white-section-title {
  color: var(--white);
}

.hero-heading-right-4 {
  background-color: #0000;
  border: 1px solid #0000;
  padding: 40px 30px 0;
  position: relative;
}

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

.hero-wrapper-5 {
  justify-content: space-around;
  align-items: center;
  margin-bottom: 40px;
  display: flex;
}

.hero-split-5 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 65%;
  display: flex;
}

.shadow-two-4 {
  max-width: 50%;
  box-shadow: 0 4px 24px #96a3b514;
}

.margin-bottom-24px-4 {
  text-align: center;
  margin-top: 24px;
  margin-bottom: 24px;
  line-height: 1;
}

.button-primary-4 {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary-4:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary-4:active {
  background-color: #43464d;
}

.heading-8 {
  text-align: left;
  font-size: 20px;
}

.bold-text, .bold-text-2, .bold-text-3 {
  font-size: 25px;
}

.link-3 {
  color: var(--slate-blue);
}

.image-5, .image-6, .image-7 {
  max-width: 20%;
}

.button-12-copy {
  float: none;
  border: 1px solid var(--slate-blue);
  background-color: var(--slate-blue);
  text-align: center;
  min-width: auto;
  max-width: 450px;
  min-height: auto;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  font-size: 30px;
  display: block;
  position: static;
}

.html-embed {
  text-align: left;
  max-width: none;
  margin: 40px auto 0;
  padding-left: 0;
  display: inline-block;
}

.button-12-copy-copy {
  float: none;
  border: 1px solid var(--slate-blue);
  background-color: var(--slate-blue);
  text-align: center;
  min-width: auto;
  max-width: 450px;
  min-height: auto;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  font-size: 30px;
  display: block;
  position: static;
}

.button-12-copy-copy {
  float: none;
  border: 1px solid var(--slate-blue);
  background-color: var(--slate-blue);
  text-align: center;
  min-width: auto;
  max-width: 450px;
  min-height: auto;
  margin: 60px auto;
  font-size: 30px;
  display: block;
  position: static;
}

.button-12-copy-copy:hover {
  background-color: var(--white);
  color: var(--slate-blue);
  -webkit-text-stroke-color: var(--slate-blue);
}

.button-12-copy-copy-copy {
  float: none;
  border: 1px solid var(--slate-blue);
  background-color: var(--slate-blue);
  text-align: center;
  min-width: auto;
  max-width: 450px;
  min-height: auto;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  font-size: 30px;
  display: block;
  position: static;
}

.button-12-copy-copy-copy:hover {
  background-color: var(--white);
  color: var(--slate-blue);
  -webkit-text-stroke-color: var(--slate-blue);
}

.link-4 {
  color: var(--slate-blue);
}

.hero-stack-copy-copy {
  background-color: #0000;
  border: 1px #000;
  padding: 30px;
  display: block;
  position: relative;
}

.columns-2 {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.tanrenq4 {
  clear: none;
  border: 1px solid var(--slate-blue);
  background-color: var(--slate-blue);
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  align-self: flex-start;
  width: 100%;
  margin-top: 5px;
  margin-left: auto;
  margin-right: auto;
  padding: 12px 25px;
  font-size: 18px;
  line-height: 20px;
  transition: all .2s;
}

.tanrenq4:hover {
  background-color: var(--white);
  color: var(--slate-blue);
  background-image: none;
}

.tanrenq4:active {
  background-color: #43464d;
}

.button-primary-2-copy-copy-copy {
  clear: none;
  background-color: var(--slate-blue);
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  align-self: flex-start;
  width: 100%;
  margin-top: 5px;
  margin-left: auto;
  margin-right: auto;
  padding: 12px 25px;
  font-size: 18px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary-2-copy-copy-copy:hover {
  color: #fff;
  background-color: #24cff1;
  background-image: none;
}

.button-primary-2-copy-copy-copy:active {
  background-color: #43464d;
}

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

.button-primary-2-copy-copy-copy-copy {
  clear: none;
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #4051b5;
  align-self: flex-start;
  width: 100%;
  margin-top: 5px;
  margin-left: auto;
  margin-right: auto;
  padding: 12px 25px;
  font-size: 18px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary-2-copy-copy-copy-copy:hover {
  color: #fff;
  background-color: #24cff1;
  background-image: none;
}

.button-primary-2-copy-copy-copy-copy:active {
  background-color: #43464d;
}

.merit1 {
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.columns-3 {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.tanrenq3 {
  clear: none;
  border: 1px solid var(--slate-blue);
  background-color: var(--slate-blue);
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  align-self: flex-start;
  width: 100%;
  margin-top: 5px;
  margin-left: auto;
  margin-right: auto;
  padding: 12px 25px;
  font-size: 18px;
  line-height: 20px;
  transition: all .2s;
}

.tanrenq3:hover {
  background-color: var(--white);
  color: var(--slate-blue);
  background-image: none;
}

.tanrenq3:active {
  background-color: #43464d;
}

.tanrenq5 {
  clear: none;
  border: 1px solid var(--slate-blue);
  background-color: var(--slate-blue);
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  align-self: flex-start;
  width: 100%;
  margin-top: 5px;
  margin-left: auto;
  margin-right: auto;
  padding: 12px 25px;
  font-size: 18px;
  line-height: 20px;
  transition: all .2s;
}

.tanrenq5:hover {
  background-color: var(--white);
  color: var(--slate-blue);
  background-image: none;
}

.tanrenq5:active {
  background-color: #43464d;
}

.tanrenq6 {
  clear: none;
  border: 1px solid var(--slate-blue);
  background-color: var(--slate-blue);
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  align-self: flex-start;
  width: 100%;
  margin-top: 5px;
  margin-left: auto;
  margin-right: auto;
  padding: 12px 25px;
  font-size: 18px;
  line-height: 20px;
  transition: all .2s;
}

.tanrenq6:hover {
  background-color: var(--white);
  color: var(--slate-blue);
  background-image: none;
}

.tanrenq6:active {
  background-color: #43464d;
}

.tanrenq2 {
  clear: none;
  border: 1px solid var(--slate-blue);
  background-color: var(--slate-blue);
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  align-self: flex-start;
  width: 100%;
  margin-top: 5px;
  margin-left: auto;
  margin-right: auto;
  padding: 12px 25px;
  font-size: 18px;
  line-height: 20px;
  transition: all .2s;
}

.tanrenq2:hover {
  background-color: var(--white);
  color: var(--slate-blue);
  background-image: none;
}

.tanrenq2:active {
  background-color: #43464d;
}

.tanrenq1 {
  clear: none;
  border: 1px solid var(--slate-blue);
  background-color: var(--slate-blue);
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  align-self: flex-start;
  width: 100%;
  margin-top: 5px;
  margin-left: auto;
  margin-right: auto;
  padding: 12px 25px;
  font-size: 18px;
  line-height: 20px;
  transition: all .2s;
}

.tanrenq1:hover {
  background-color: var(--white);
  color: var(--slate-blue);
  background-image: none;
}

.tanrenq1:active {
  background-color: #43464d;
}

.waribiki-a {
  color: var(--paragraph-color);
  text-align: left;
  max-width: 100%;
  margin: 20px 0 0;
  padding-left: 0;
  font-size: 16px;
  display: block;
}

.waribiki-a.white-section-title-content {
  color: var(--white);
}

.waribiki-q {
  color: var(--f08307);
  text-align: left;
  max-width: 100%;
  margin: 0 0 10px;
  padding-left: 0;
  font-size: 20px;
  display: block;
}

.waribiki-q.white-section-title-content {
  color: var(--white);
}

.link-5, .link-6 {
  color: var(--slate-blue);
}

.link-7 {
  color: var(--slate-blue);
}

.hero-stack-copy-copy-copy {
  background-color: #f083070d;
  border: 1px #000;
  padding: 30px;
  display: block;
  position: relative;
}

.hero-stack-copy-copy-copy-copy, .qnamenu {
  background-color: #0000;
  border: 1px #000;
  padding: 30px;
  display: block;
  position: relative;
}

.q1 {
  background-color: #f0830799;
  border: 1px #000;
  padding: 10px 30px;
  display: block;
  position: relative;
}

.text-block-10 {
  color: var(--white);
  font-size: 25px;
}

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

.q1title {
  background-color: #f5f7fa;
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

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

.hero-wrapper-two {
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.margin-bottom-24px-5 {
  margin-bottom: 24px;
}

.button-primary-5 {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary-5:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary-5:active {
  background-color: #43464d;
}

.bold-text-10 {
  color: #4051b5;
}

.heading-10 {
  letter-spacing: 0;
  text-transform: none;
  white-space: normal;
}

.heading-6-copy {
  color: #4051b5;
  letter-spacing: 0;
  text-transform: none;
  white-space: normal;
  border-bottom: 3px solid #4051b5;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 28px;
  font-style: italic;
  line-height: 30px;
}

.hero-image-2-copy {
  width: 100%;
  margin-top: 50px;
}

.hero-image-2-copy.shadow-two {
  background-color: #fff;
  background-image: none;
  margin-top: 0;
}

.margin-bottom-24px-2-copy-copy-copy-copy-copy {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 10px;
}

.margin-bottom-24px-2-copy-copy-copy-copy-copy-2 {
  text-align: center;
  margin-top: 24px;
  margin-bottom: 24px;
}

.hero-image-2-copy-copy {
  width: 100%;
  margin-top: 50px;
}

.hero-image-2-copy-copy.shadow-two {
  background-color: #fff;
  background-image: none;
  margin-top: 0;
}

.margin-bottom-24px-6 {
  color: #333;
  text-align: center;
  margin-top: 35px;
  margin-bottom: 5px;
  font-weight: 400;
}

.q2section {
  text-align: center;
  margin-bottom: 20px;
}

.q2section.section-left-align {
  text-align: center;
  margin-bottom: 60px;
  padding-top: 0;
}

.q1main {
  background-color: #f0830799;
  border: 1px #000;
  padding: 10px 30px;
  display: block;
  position: relative;
}

._1section-copy {
  text-align: center;
  margin-bottom: 20px;
}

._1section-copy.section-left-align {
  text-align: center;
  margin-bottom: 60px;
  padding-top: 0;
}

.link-8 {
  color: var(--slate-blue);
}

.q1section {
  text-align: center;
  margin-bottom: 20px;
}

.q1section.section-left-align {
  text-align: center;
  margin-bottom: 60px;
  padding-top: 0;
}

.q3section {
  text-align: center;
  margin-bottom: 20px;
}

.q3section.section-left-align {
  text-align: center;
  margin-bottom: 60px;
  padding-top: 0;
}

.link-9 {
  color: var(--slate-blue);
}

.q4section {
  text-align: center;
  margin-bottom: 20px;
}

.q4section.section-left-align {
  text-align: center;
  margin-bottom: 60px;
  padding-top: 0;
}

.q5section {
  text-align: center;
  margin-bottom: 20px;
}

.q5section.section-left-align {
  text-align: center;
  margin-bottom: 60px;
  padding-top: 0;
}

.link-10 {
  color: var(--slate-blue);
}

.q6section {
  text-align: center;
  margin-bottom: 20px;
}

.q6section.section-left-align {
  text-align: center;
  margin-bottom: 60px;
  padding-top: 0;
}

.button-12-copy {
  float: none;
  border: 1px solid var(--slate-blue);
  background-color: var(--slate-blue);
  text-align: center;
  min-width: auto;
  max-width: 510px;
  min-height: auto;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
  font-size: 20px;
  font-weight: 400;
  display: block;
  position: static;
}

.button-12-copy:hover {
  background-color: var(--white);
  color: var(--slate-blue);
  -webkit-text-stroke-color: var(--slate-blue);
}

.link-block-2 {
  background-image: url('../images/tanren_benner_1200.png');
  background-position: 50%;
  background-size: cover;
  background-attachment: scroll;
  min-width: 0;
  height: 150px;
  display: block;
}

.heading-11 {
  text-align: right;
  margin-top: 0;
  margin-bottom: 5px;
  font-family: Lato, sans-serif;
  font-size: 12px;
  font-weight: 400;
}

.heading-12 {
  color: var(--white);
  margin-top: 20px;
  margin-bottom: 20px;
  font-family: Lato, sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.link-11, .link-12 {
  color: var(--slate-blue);
}

.team-slider-3 {
  background-color: #f5f7fa;
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

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

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

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

.team-slider-wrapper-3 {
  background-color: #0000;
  height: auto;
  margin-top: 50px;
}

.team-slide-wrapper-3 {
  width: 30%;
  margin-right: 5%;
}

.team-block-3 {
  background-color: #fff;
  padding-bottom: 24px;
}

.team-member-image-two-3 {
  margin-bottom: 18px;
}

.team-block-info-3 {
  flex-direction: column;
  align-items: flex-start;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
}

.team-member-name-two-3 {
  margin-bottom: 12px;
  font-weight: 600;
}

.team-member-text-3 {
  margin-bottom: 20px;
}

.text-link-arrow-4 {
  color: #1a1b1f;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  display: flex;
}

.arrow-embed-4 {
  margin-left: 2px;
  display: flex;
}

.team-slider-arrow-3 {
  display: none;
}

.team-slider-nav-3 {
  margin-top: 24px;
  font-size: 10px;
  position: static;
  bottom: -60px;
}

.column-3 {
  justify-content: center;
  padding-left: 50px;
  padding-right: 50px;
  display: block;
}

.column-4, .column-5 {
  justify-content: center;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.text-block-12 {
  text-align: left;
  padding-left: 0;
  font-size: 30px;
}

.image-8 {
  width: auto;
  height: auto;
}

.team-circles {
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

.team-grid {
  grid-column-gap: 64px;
  grid-row-gap: 56px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 50px;
  display: grid;
}

.team-card {
  text-align: center;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  line-height: 22px;
  display: flex;
}

.team-member-image {
  object-fit: cover;
  border-radius: 0%;
  width: 270px;
  height: 270px;
  margin-bottom: 24px;
}

.team-member-name {
  margin-bottom: 6px;
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
}

.team-member-position {
  margin-bottom: 24px;
}

.hero-heading-right-4-copy {
  background-color: #0000;
  border: 1px solid #0000;
  padding: 40px 30px 60px;
  position: relative;
}

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

.trainers-section-copy.home-trainers-section {
  padding-top: 40px;
}

.div-block-5-copy-copy-copy-copy {
  background-image: url('../images/gymmain1440.png');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  height: 270px;
}

.features-table {
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

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

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

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

.comparison-table {
  flex-direction: column;
  margin-top: 50px;
  display: flex;
}

.comparison-row-main {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: #f5f7fa;
  border-bottom: 1px solid #e4ebf3;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 24px;
  padding-bottom: 24px;
  display: grid;
}

.comparison-title {
  margin-bottom: 0;
  margin-left: 24px;
}

.comparison-row {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-bottom: 1px solid #e4ebf3;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 24px;
  padding-bottom: 24px;
  display: grid;
}

.comparison-negative {
  background-image: url('../images/');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: auto;
  margin-left: 24px;
  padding-left: 40px;
}

.comparison-positive {
  background-image: url('../images/');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: auto;
  margin-left: 24px;
  padding-left: 40px;
}

.grid {
  grid-template-columns: minmax(200px, .5fr) 4.5fr;
}

.text-span {
  -webkit-text-stroke-color: #f12606;
}

.text-span-2 {
  color: red;
}

.text-span-3, .text-span-4 {
  color: #f08307;
}

.navbar-no-shadow-container {
  z-index: 5;
  background-color: #0000;
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
}

.container-regular {
  width: 100%;
  max-width: 1260px;
  min-height: 30px;
  margin-left: auto;
  margin-right: auto;
}

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

.nav-menu-2 {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-left: 0;
  display: flex;
}

.nav-link-2 {
  color: #1a1b1f;
  letter-spacing: .25px;
  margin-left: 5px;
  margin-right: 5px;
  padding: 5px 10px;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
}

.nav-link-2:hover {
  color: #1a1b1fbf;
}

.nav-link-2:focus-visible, .nav-link-2[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.nav-dropdown {
  margin-left: 5px;
  margin-right: 5px;
}

.nav-dropdown-toggle {
  letter-spacing: .25px;
  padding: 5px 30px 5px 10px;
  font-size: 14px;
  line-height: 20px;
}

.nav-dropdown-toggle:hover {
  color: #1a1b1fbf;
}

.nav-dropdown-toggle:focus-visible, .nav-dropdown-toggle[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-icon {
  margin-right: 10px;
}

.nav-dropdown-list {
  background-color: #fff;
  border-radius: 12px;
}

.nav-dropdown-list.w--open {
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-dropdown-link {
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 14px;
}

.nav-dropdown-link:focus-visible, .nav-dropdown-link[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-button-wrapper {
  margin-left: 120px;
}

.button-primary-6 {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary-6:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary-6:active {
  background-color: #43464d;
}

.container-17 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  display: flex;
}

.mv {
  position: static;
  right: 0;
}

.image-12 {
  position: absolute;
  right: 100px;
}

.section-3 {
  background-image: url('../images/tanren_main_1440.png');
  background-position: 0 0;
  background-size: cover;
  background-attachment: scroll;
}

.mainimage {
  width: 80%;
  max-width: none;
  position: static;
  right: 0;
}

.paragraph {
  color: var(--primary-color);
}

.hero-stack-copy-copy-copy-copy-copy {
  background-color: #f083070d;
  border: 1px #000;
  padding: 30px;
  display: block;
  position: relative;
}

.container-copy-copy {
  max-width: 100%;
  margin-bottom: 60px;
  padding-top: 0;
  padding-left: 30px;
  padding-right: 30px;
  display: block;
}

.sec-detail-copy {
  color: var(--slate-blue);
  text-align: center;
  margin-bottom: 0;
  font-size: 30px;
}

.sec-detail-copy-copy {
  color: var(--paragraph-color);
  text-align: center;
  margin-bottom: 0;
  font-size: 36px;
}

.sec-detail-copy-copy.white-section-title-content {
  color: var(--white);
}

.bold-text-11 {
  color: var(--slate-blue);
}

.transparent-button-copy-copy {
  border: 2px solid var(--grey-background-color);
  color: var(--heading-color);
  background-color: #0000;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-right: 10px;
  padding: 17px 45px;
  font-family: Lato, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  transition: border-color .2s, color .2s, background-color .2s;
}

.transparent-button-copy-copy:hover {
  border-color: var(--grey-background-color);
  background-color: var(--grey-background-color);
  color: var(--heading-color);
}

.transparent-button-copy-copy.header-button {
  border-color: var(--slate-blue);
  background-color: var(--slate-blue);
  color: var(--white);
  margin-bottom: 40px;
  margin-left: 10px;
  margin-right: 0;
  padding: 10px 30px;
  font-size: 15px;
}

.transparent-button-copy-copy.header-button:hover {
  background-color: var(--white);
  color: var(--slate-blue);
}

.transparent-button-copy-copy.hero-second-button {
  color: var(--white);
}

.transparent-button-copy-copy.hero-second-button:hover {
  color: var(--heading-color);
}

.transparent-button-copy-copy.blog-listing-button {
  background-color: var(--white);
}

.transparent-button-copy-copy.blog-listing-button:hover {
  border-color: var(--primary-color);
  background-color: var(--primary-color);
}

.transparent-button-copy {
  border: 2px solid var(--grey-background-color);
  color: var(--heading-color);
  background-color: #0000;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-right: 10px;
  padding: 17px 45px;
  font-family: Lato, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  transition: border-color .2s, color .2s, background-color .2s;
}

.transparent-button-copy:hover {
  border-color: var(--grey-background-color);
  background-color: var(--grey-background-color);
  color: var(--heading-color);
}

.transparent-button-copy.header-button {
  border-color: var(--slate-blue);
  background-color: var(--slate-blue);
  color: var(--white);
  margin-right: 10px;
  padding: 10px 20px;
  font-size: 15px;
}

.transparent-button-copy.header-button:hover {
  background-color: var(--white);
  color: var(--slate-blue);
}

.transparent-button-copy.hero-second-button {
  color: var(--white);
}

.transparent-button-copy.hero-second-button:hover {
  color: var(--heading-color);
}

.transparent-button-copy.blog-listing-button {
  background-color: var(--white);
}

.transparent-button-copy.blog-listing-button:hover {
  border-color: var(--primary-color);
  background-color: var(--primary-color);
}

.div-block6-copy, .div-block6-sports {
  background-image: url('../images/maintemain1440.png');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  height: 270px;
}

.div-block-7 {
  background-image: url('../images/sports_reha1440.png');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.div-block6-copy-copy, .div-block6-copy-copy-copy, .div-block6-copy-copy-copy-copy {
  background-image: url('../images/traffic-accident-treatment.png');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  height: 270px;
}

.div-block6-chiro, .div-block6-elderly {
  background-image: url('../images/maintemain1440.png');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  height: 270px;
}

.div-block6-traffic {
  background-image: url('../images/traffic-accident-treatment.png');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  height: 270px;
}

.div-block6-chiro-copy {
  background-image: url('../images/chiro1440.png');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  height: 270px;
}

.div-block6-sports-copy {
  background-image: url('../images/sports1440.png');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  height: 270px;
}

.div-block6-elderly-copy {
  background-image: url('../images/elderly1440.png');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  height: 270px;
}

.div-block6-traffic-copy {
  background-image: url('../images/traffic-accident-treatment.png');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  height: 270px;
}

.div-block6-traffic-copy-copy {
  background-image: url('../images/maintemain1440.png');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  height: 270px;
}

.div-block6-traffic-copy-copy-copy, .div-block6-traffic-copy-copy-copy-copy {
  background-image: url('../images/traffic1440.png');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  height: 270px;
}

.div-block-8 {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  width: 100%;
}

.hero-wrapper-3-copy {
  background-color: #0000;
  border-bottom: 1px #000;
  justify-content: center;
  align-items: flex-start;
  max-width: 100%;
  margin-bottom: 99px;
  margin-left: auto;
  padding-top: 0;
  padding-left: 0;
  display: flex;
}

.hero-wrapper-3-copy-copy {
  background-color: #0000;
  border-bottom: 1px #000;
  flex-flow: row;
  justify-content: center;
  align-items: flex-start;
  max-width: 100%;
  margin-bottom: 45px;
  margin-left: auto;
  padding-top: 0;
  padding-left: 0;
  display: flex;
}

.sec-detail2 {
  color: var(--paragraph-color);
  text-align: center;
  margin-bottom: 40px;
  font-size: 16px;
}

.sec-detail2.white-section-title-content {
  color: var(--white);
}

.sec-detail-2 {
  color: var(--paragraph-color);
  text-align: center;
  margin-bottom: 40px;
  font-size: 18px;
}

.sec-detail-2.white-section-title-content {
  color: var(--white);
}

.sec-detail-copy {
  color: var(--heading-color);
  text-align: center;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 25px;
  font-weight: 700;
}

.sec-detail-copy.white-section-title-content {
  color: var(--white);
}

.heading-2-copy-copy {
  background-color: var(--paragraph-color);
  color: var(--white);
  text-align: center;
  -webkit-text-stroke-color: var(--white);
  width: 100%;
  max-width: none;
  margin-bottom: 10px;
  padding: 5px 0 5px 10px;
  font-size: 15px;
  font-weight: 600;
}

.hero-wrapper-3-copy {
  background-color: #0000;
  border-bottom: 1px #000;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  margin-top: 0;
  margin-bottom: 99px;
  margin-left: auto;
  padding-top: 0;
  padding-left: 0;
  display: flex;
}

.hero-wrapper-3-copy-copy {
  background-color: #0000;
  border-bottom: 1px #000;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  margin-top: 0;
  margin-bottom: 20px;
  margin-left: auto;
  padding-top: 0;
  padding-left: 0;
  display: flex;
}

.hero-split-4-copy, .hero-split-4-copy-copy, .hero-split-4-copy-copy-copy, .hero-split-4-copy-copy-copy-copy, .hero-split-4-copy-copy-copy-copy-copy {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 50%;
  display: flex;
}

.hero-split-4-copy-copy-copy-copy-copy-copy {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 50%;
  max-width: 50%;
  display: flex;
}

.hero-wrapper-3-copy-copy-copy {
  background-color: #0000;
  border-bottom: 1px #000;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  margin-top: 0;
  margin-bottom: 20px;
  margin-left: auto;
  padding-top: 0;
  padding-left: 0;
  display: flex;
}

.container-18 {
  margin-top: 70px;
  margin-bottom: 60px;
}

.section-title-area-copy-copy {
  text-align: center;
  margin-bottom: 20px;
}

.section-title-area-copy-copy.section-left-align {
  text-align: center;
  background-color: #0000;
  margin-bottom: 10px;
  padding-top: 0;
}

.menu-title-copy {
  color: var(--white);
  text-align: center;
  -webkit-text-stroke-color: var(--white);
  background-color: #f0830780;
  width: 100%;
  max-width: none;
  margin-bottom: 10px;
  padding: 5px 0 5px 10px;
  font-size: 20px;
  font-weight: 700;
}

.howtouse-title-copy, .menu-title-copy {
  color: var(--white);
  text-align: center;
  -webkit-text-stroke-color: var(--white);
  background-color: #f0830780;
  width: 100%;
  max-width: none;
  margin-bottom: 10px;
  padding: 5px 0 5px 10px;
  font-size: 15px;
  font-weight: 700;
}

.menu-title-copy-copy {
  border-top: 1px solid var(--slate-blue);
  border-bottom: 1px solid var(--slate-blue);
  color: var(--white);
  text-align: center;
  -webkit-text-stroke-color: var(--white);
  background-color: #f08307;
  width: 100%;
  max-width: none;
  margin-bottom: 5px;
  padding: 5px 0 5px 10px;
  font-size: 20px;
  font-weight: 600;
}

.heading-2-copy {
  text-align: left;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.3;
}

.menu-title-copy-copy-copy {
  border-top: 1px solid var(--slate-blue);
  border-bottom: 1px solid var(--slate-blue);
  color: var(--slate-blue);
  text-align: center;
  -webkit-text-stroke-color: var(--white);
  background-color: #fff;
  width: 100%;
  max-width: none;
  margin-top: 0;
  margin-bottom: 10px;
  padding: 5px 0 5px 10px;
  font-size: 20px;
  font-weight: 700;
}

.text-block-15 {
  text-align: left;
}

.text-block-16 {
  width: 100%;
  max-width: 100%;
}

.heading-2-copy, .heading-2-copy-copy, .heading-2-copy-copy-copy {
  text-align: center;
  width: 100%;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
}

.heading-2-copy, .heading-2-copy-copy {
  text-align: center;
  width: 100%;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
}

.heading-2-copy, .heading-2-copy-copy {
  text-align: center;
  width: 100%;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
}

.heading-2-copy, .heading-2-copy-copy {
  text-align: center;
  width: 100%;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
}

.heading-2-copy, .heading-2-copy-copy, .heading-2-copy-copy-copy {
  text-align: center;
  width: 100%;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
}

.heading-2-copy-copy-copy-copy {
  text-align: left;
  width: 100%;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
}

.heading-2-copy, .heading-2-copy-copy {
  text-align: center;
  width: 100%;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
}

.heading-2-copy, .heading-2-copy-copy {
  text-align: center;
  width: 100%;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
}

.heading-2-copy, .heading-2-copy-copy {
  text-align: center;
  width: 100%;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
}

.heading-2-copy, .heading-2-copy-copy {
  text-align: center;
  width: 100%;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
}

.heading-2-copy, .heading-2-copy-copy {
  text-align: center;
  width: 100%;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
}

.heading-2-copy-copy-copy {
  text-align: left;
  width: 100%;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
}

.heading-2-copy, .heading-2-copy-copy, .heading-2-copy-copy-copy, .heading-2-copy-copy-copy-copy, .heading-2-copy-copy-copy-copy-copy, .heading-2-copy-copy-copy-copy-copy-copy {
  text-align: center;
  width: 100%;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
}

.hero-split-4-copy {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 50%;
  max-width: 50%;
  display: flex;
}

.heading-2-copy-copy-copy-copy-copy {
  text-align: left;
  width: 100%;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
}

.hero-split-4-copy-copy {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 50%;
  max-width: 35%;
  display: flex;
}

.hero-split-4-copy, .hero-split-4-copy-copy, .hero-split-4-copy, .hero-split-4-copy-copy, .hero-split-4-copy, .hero-split-4-copy-copy, .hero-split-4-copy, .hero-split-4-copy-copy {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 50%;
  max-width: 50%;
  margin-left: 0;
  display: flex;
}

.hero-split-4-copy-copy {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 50%;
  max-width: 50%;
  display: flex;
}

.hero-split-4-copy-copy-copy {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 50%;
  max-width: 35%;
  display: flex;
}

.hero-split-4-copy-copy {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 50%;
  max-width: 50%;
  display: flex;
}

.hero-split-4-copy-copy-copy {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 50%;
  display: flex;
}

.hero-split-4-copy-copy-copy-copy {
  flex-flow: row;
  justify-content: center;
  align-items: flex-start;
  max-width: 50%;
  display: flex;
}

.heading-2-copy-copy-copy-copy-copy-copy-copy, .heading-2-copy-copy-copy-copy-copy-copy-copy-copy, .heading-2-copy-copy-copy-copy-copy-copy-copy-copy-copy, .heading-2-copy-copy-copy-copy-copy-copy-copy-copy-copy-copy, .heading-2-copy-copy-copy-copy-copy-copy-copy-copy-copy-copy-copy, .kidkickboxing {
  text-align: center;
  width: 100%;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
}

.kidkickboxing-copy {
  text-align: left;
  width: 100%;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
}

.hero-wrapper-3-copy-copy-copy, .hero-wrapper-3-copy-copy-copy-copy {
  background-color: #0000;
  border-bottom: 1px #000;
  flex-flow: row;
  justify-content: center;
  align-items: flex-start;
  max-width: 100%;
  margin-bottom: 45px;
  margin-left: auto;
  padding-top: 0;
  padding-left: 0;
  display: flex;
}

.hero-split-4-copy-copy {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 50%;
  display: flex;
}

@media screen and (min-width: 1280px) {
  p {
    font-size: 20px;
  }

  blockquote {
    border-width: 50px;
    padding: 100px;
  }

  .header-section {
    z-index: 20;
    position: sticky;
    top: 0;
  }

  .navbar {
    z-index: auto;
    padding-top: 20px;
    padding-bottom: 20px;
    position: sticky;
    top: 0;
  }

  .nav-link {
    width: auto;
    margin-left: 20px;
    margin-right: 20px;
  }

  .nav-link.w--current {
    padding-left: 30px;
    padding-right: 30px;
    font-size: 15px;
  }

  .banner-title-section {
    margin-left: 40px;
    margin-right: 40px;
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .container {
    max-width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }

  .black-button {
    border-color: var(--slate-blue);
    background-color: var(--white);
    color: var(--slate-blue);
  }

  .black-button:hover {
    background-color: var(--slate-blue);
    color: var(--white);
  }

  .transparent-button.header-button {
    background-color: var(--slate-blue);
    color: var(--white);
    margin-right: 10px;
    padding: 10px 35px;
    display: inline-block;
  }

  .transparent-button.header-button:hover {
    background-color: var(--white);
    color: var(--slate-blue);
  }

  .footer-section {
    padding: 60px 20px 80px;
  }

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

  .footer-widget {
    margin-bottom: 0;
  }

  .footer-contact-link-wrap {
    justify-content: flex-start;
    align-items: stretch;
    margin-bottom: 10px;
    display: flex;
  }

  .nav-menu {
    background-color: #fff;
    width: auto;
    margin-right: 0;
    left: auto;
  }

  .banner-title-border-text {
    font-size: 82px;
  }

  .banner-title-text {
    font-size: 80px;
  }

  .copyright-section {
    padding-top: 40px;
    padding-bottom: 30px;
  }

  .instagram-wrap {
    margin-left: 30px;
    margin-right: 30px;
  }

  .instagram-heading, .instagram-link {
    font-size: 45px;
  }

  .hero-slider-item {
    background-position: 50% 80%;
    padding-top: 140px;
    padding-bottom: 140px;
  }

  .hero-slider-content {
    max-width: 67%;
  }

  .hero-title {
    font-size: 30px;
  }

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

  .about-grid {
    grid-column-gap: 45px;
    grid-row-gap: 16px;
    grid-template-columns: 1fr 1fr;
    align-content: stretch;
    align-items: stretch;
  }

  .section-title-area.section-left-align {
    text-align: center;
    display: block;
  }

  .section-subtitle {
    letter-spacing: 0;
    font-size: 20px;
  }

  .section-subtitle.primary-color-subtitle {
    font-size: 20px;
  }

  .section-title {
    color: var(--slate-blue);
    letter-spacing: .1em;
    font-family: Inter, sans-serif;
    font-size: 45px;
  }

  .section-title.white-section-title {
    font-size: 45px;
  }

  .section-title-content {
    font-size: 20px;
  }

  .about-item {
    border-top: 2px solid var(--slate-blue);
    border-left: 2px none var(--slate-blue);
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 250px;
    margin-bottom: 25px;
    padding: 40px 20px;
    display: flex;
  }

  .about-item-content {
    padding-left: 0;
  }

  .about-item-content.about-second-content {
    margin-right: 40px;
    padding-left: 0;
  }

  .about-item-title {
    color: var(--heading-color);
    font-size: 20px;
  }

  .white-button {
    border-color: var(--slate-blue);
    color: var(--slate-blue);
  }

  .white-button:hover {
    border-color: var(--slate-blue);
    background-color: var(--slate-blue);
  }

  .training-type-section {
    padding-bottom: 120px;
  }

  .training-type-wrap {
    padding-top: 40px;
    padding-bottom: 40px;
  }

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

  .testimonial-section {
    background-position: 0 80%;
    margin-bottom: 20px;
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .testimonial-item {
    width: 56%;
    margin-right: 40px;
    padding: 40px;
  }

  .client-name {
    font-size: 25px;
  }

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

  .facility-grid {
    grid-column-gap: 100px;
    grid-row-gap: 16px;
    grid-template-columns: .75fr 1fr;
  }

  .facility-large-text-image {
    display: inline-block;
    bottom: 18%;
    left: -18%;
  }

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

  .pricing-grid {
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 40px;
  }

  .pricing-item {
    padding: 40px 40px 50px;
  }

  .pricing-title-wrap {
    justify-content: flex-start;
    align-items: stretch;
  }

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

  .pricing-price {
    font-size: 30px;
  }

  .pricing-offer, .pricing-list-detail {
    font-size: 20px;
  }

  .about-banner-title-section {
    margin-left: 40px;
    margin-right: 40px;
    padding-top: 100px;
    padding-bottom: 220px;
  }

  .about-intro-section {
    top: -120px;
  }

  .about-intro-wrap {
    width: 1000px;
    margin-bottom: 0;
  }

  .about-intro-grid {
    grid-template-columns: .45fr 1fr;
  }

  .intro-section {
    background-position: 100% 2%;
    padding-bottom: 120px;
  }

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

  .story-item {
    height: 465px;
    padding: 45px;
  }

  .story-item.story-second-item {
    height: 465px;
    margin-bottom: 40px;
    padding: 45px;
  }

  .story-item.story-third-item {
    height: 250px;
    padding: 45px;
  }

  .video-wrap-section {
    padding-top: 140px;
    padding-bottom: 140px;
  }

  .video-wrap {
    align-items: center;
  }

  .video-lightbox-link {
    width: 260px;
    min-width: 260px;
    height: 260px;
    min-height: 260px;
    margin-left: 40px;
    margin-right: 40px;
  }

  .our-values-section {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .our-value-item {
    padding: 50px 40px 20px;
  }

  .our-value-title {
    font-size: 28px;
  }

  .our-value-content {
    font-size: 22px;
  }

  .counter-section {
    padding-bottom: 120px;
  }

  .counter-item {
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .counter-value {
    font-size: 60px;
  }

  .counter-title {
    font-size: 23px;
  }

  .join-club-section {
    margin-bottom: 120px;
    padding-top: 120px;
    padding-bottom: 120px;
  }

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

  .contact-form-area {
    padding: 40px 60px;
  }

  .contact-form-title {
    font-size: 40px;
  }

  .contact-form-subtitle {
    font-size: 20px;
  }

  .contact-info-section {
    padding-top: 140px;
    padding-bottom: 140px;
  }

  .contact-info-item {
    padding: 75px 60px 70px;
  }

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

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

  .cta-grid {
    grid-column-gap: 50px;
    grid-row-gap: 16px;
    grid-template-columns: .75fr 1fr;
  }

  .cta-title {
    font-size: 30px;
    line-height: 1.5;
  }

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

  .changelog-content-wrap {
    width: 900px;
    padding: 100px 140px 120px;
  }

  .license-content-area {
    margin-left: 100px;
    padding-top: 30px;
    padding-bottom: 90px;
  }

  .utility-page-form {
    width: 90%;
  }

  .protected-section {
    padding-top: 120px;
    padding-bottom: 110px;
  }

  .error-section {
    padding-top: 110px;
    padding-bottom: 120px;
  }

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

  .schedule-workout-item.workout-timing {
    padding-top: 30px;
    padding-bottom: 22px;
  }

  .schedule-workout-name {
    font-size: 22px;
  }

  .workout-time, .workout-trainer-name {
    font-size: 18px;
  }

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

  .working-day-grid {
    grid-template-columns: .6fr .6fr 1fr .6fr;
  }

  .working-day-title {
    padding-top: 30px;
    padding-bottom: 30px;
    font-size: 20px;
  }

  .working-time-item {
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 20px;
    display: flex;
  }

  .working-type-text, .workout-name {
    font-size: 20px;
  }

  .blog-section {
    padding-top: 120px;
  }

  .blog-title {
    font-size: 26px;
  }

  .blog-author-wrap {
    margin-top: 30px;
  }

  .blog-single-wrap {
    padding-top: 80px;
  }

  .blog-single-top-wrap {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 50px;
  }

  .blog-single-title {
    font-size: 45px;
  }

  .blog-single-author-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .blog-author-content {
    font-size: 25px;
  }

  .global-page-section {
    padding: 120px 0;
  }

  .global-banner-title {
    margin-left: 30px;
    margin-right: 30px;
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .banner-value-title {
    font-size: 80px;
  }

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

  .trainers-section.home-trainers-section {
    padding-bottom: 120px;
  }

  .trainer-item {
    margin-bottom: 60px;
  }

  .trainer-content-area {
    padding: 40px;
  }

  .trainer-name {
    font-size: 25px;
  }

  .trainer-special-section {
    margin-top: 20px;
    padding-top: 20px;
  }

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

  .special-content {
    font-size: 18px;
  }

  .trainer-social-wrap {
    margin-top: 28px;
  }

  .trainer-banner-title-area {
    margin-left: 30px;
    margin-right: 30px;
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .trainer-single-section {
    padding-top: 120px;
    padding-bottom: 100px;
  }

  .trainer-single-grid {
    grid-column-gap: 50px;
    grid-row-gap: 16px;
  }

  .trainer-content-link-item {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }

  .trainer-contact-title, .trainer-contact-link {
    font-size: 20px;
  }

  .join-team-section {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .join-team-grid {
    grid-column-gap: 100px;
    grid-row-gap: 16px;
    grid-template-columns: 1fr 1fr;
  }

  .video-class-section {
    margin-bottom: 120px;
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .video-class-area {
    height: 600px;
  }

  .classes-section {
    padding-top: 160px;
    padding-bottom: 40px;
  }

  .class-title {
    font-size: 30px;
  }

  .class-readmore-link {
    font-size: 22px;
  }

  .classes-single-title-area {
    margin-left: 30px;
    margin-right: 30px;
  }

  .class-single-section {
    padding-top: 100px;
    padding-bottom: 40px;
  }

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

  .class-detail-wrap {
    padding: 50px 40px 60px;
  }

  .class-detail-title {
    font-size: 30px;
  }

  .class-detail-content {
    font-size: 20px;
  }

  .class-video-section {
    padding-bottom: 100px;
  }

  .class-video-wrap {
    background-size: cover;
    height: 550px;
  }

  .blog-list-section {
    background-position: 100% 1%;
    padding-top: 40px;
    padding-bottom: 120px;
  }

  .blog-list-wrap {
    width: 900px;
  }

  .blog-listing-content-wrap {
    padding-right: 40px;
  }

  .menu-button.w--open {
    background-color: var(--secondary-color);
  }

  .facility-image, .facility-our-image {
    display: block;
  }

  .class-single-image {
    width: 100%;
  }

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

  .moving-content {
    width: 240%;
  }

  .moving-text {
    color: var(--white);
    font-family: Inter, sans-serif;
    font-size: 34px;
  }

  .moving-section {
    background-color: var(--heading-color);
  }

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

  .hero-title-copy {
    font-size: 50px;
  }

  .hero-title-copy-copy {
    color: var(--slate-blue);
    font-size: 100px;
  }

  .about-item-title-copy, .about-item-title-copy-copy, .about-item-title-copy-copy, .about-item-title-copy-copy, .about-item-title-copy-copy, .about-item-title-copy-copy-copy, .about-item-title-copy-copy-copy, .about-item-title-copy-copy-copy {
    color: var(--slate-blue);
    font-size: 20px;
  }

  .about-item-title-copy-copy-copy, .about-item-title-copy-copy-copy-copy {
    color: var(--slate-blue);
    font-size: 15px;
  }

  .about-item-title-copy-copy-copy-copy-copy {
    color: var(--slate-blue);
    font-size: 12px;
  }

  .button-2 {
    border: 1px solid var(--slate-blue);
    background-color: var(--slate-blue);
    color: var(--white);
    text-align: center;
    width: 200px;
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
    display: block;
  }

  .button-2:hover {
    border: 1px solid var(--slate-blue);
    background-color: var(--white);
    color: var(--slate-blue);
  }

  .hero-slider-item-copy {
    background-position: 50% 80%;
    padding-top: 140px;
    padding-bottom: 140px;
  }

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

  .instagram-wrap-2 {
    margin-left: 30px;
    margin-right: 30px;
  }

  .instagram-heading-2, .instagram-link-2 {
    font-size: 45px;
  }

  .section-title-copy {
    color: var(--slate-blue);
    letter-spacing: .1em;
    font-family: Inter, sans-serif;
    font-size: 45px;
  }

  .section-title-copy.white-section-title {
    font-size: 45px;
  }

  .title {
    letter-spacing: 0;
    font-size: 20px;
  }

  .title.primary-color-subtitle, .section-title-content-copy {
    font-size: 20px;
  }

  .section-title-area-copy.section-left-align {
    text-align: center;
    text-align: center;
    display: block;
  }

  .nav-link-copy.w--current {
    padding-left: 30px;
    padding-right: 30px;
    font-size: 15px;
  }

  .container-7 {
    max-width: 100%;
    margin-top: 20px;
    margin-bottom: 40px;
    padding-left: 100px;
    padding-right: 100px;
  }

  .div-block-5-copy-copy {
    height: 530px;
  }

  .container-copy {
    max-width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }

  .container-9 {
    margin-left: auto;
  }

  .hero-wrapper-3 {
    padding-left: 0;
  }

  .hero-split-4 {
    flex: 0 auto;
    max-width: 46%;
  }

  .shadow-two-3 {
    margin-top: 10px;
  }

  .heading-2 {
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .sec-detail {
    font-size: 20px;
  }

  .title-english {
    color: var(--slate-blue);
    letter-spacing: .1em;
    font-family: Inter, sans-serif;
    font-size: 45px;
  }

  .title-english.white-section-title {
    font-size: 45px;
  }

  .map {
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .section-title-area-copy.section-left-align {
    text-align: center;
    display: block;
  }

  .admission-title {
    color: var(--slate-blue);
    letter-spacing: .1em;
    font-family: Inter, sans-serif;
    font-size: 45px;
  }

  .admission-title.white-section-title {
    font-size: 45px;
  }

  .section-title-content-copy-copy, .price2, .section-title-content-copy-copy-copy, .price, .section-title-content-copy-copy-copy, .section-title-content-copy-copy-copy-copy, .section-title-content-copy-copy-copy-copy-copy, .admission {
    font-size: 20px;
  }

  .price-title {
    color: var(--slate-blue);
    letter-spacing: .1em;
    font-family: Inter, sans-serif;
    font-size: 45px;
  }

  .price-title.white-section-title {
    font-size: 45px;
  }

  .margin-bottom-24px-4 {
    text-align: center;
    margin-top: 24px;
    font-size: 18px;
    line-height: 1;
  }

  .waribiki-a, .waribiki-q, .text-block-10 {
    font-size: 20px;
  }

  .q2section.section-left-align, ._1section-copy.section-left-align, .q1section.section-left-align, .q3section.section-left-align, .q4section.section-left-align, .q5section.section-left-align, .q6section.section-left-align {
    text-align: center;
    display: block;
  }

  .heading-11 {
    margin-bottom: 5px;
  }

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

  .trainers-section-copy.home-trainers-section {
    padding-bottom: 120px;
  }

  .div-block-5-copy-copy-copy-copy {
    background-image: url('../images/gymmain1440.png');
  }

  .container-17 {
    text-align: left;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    width: auto;
    max-width: 100%;
    height: auto;
    display: flex;
  }

  .mainimage {
    width: 80%;
    max-width: 100%;
    height: auto;
  }

  .container-copy-copy {
    max-width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }

  .sec-detail-copy, .sec-detail-copy-copy {
    font-size: 20px;
  }

  .transparent-button-copy-copy.header-button {
    background-color: var(--slate-blue);
    color: var(--white);
    margin-bottom: 40px;
    margin-left: 10px;
    margin-right: 0;
    padding: 10px 35px;
    display: inline-block;
  }

  .transparent-button-copy-copy.header-button:hover {
    background-color: var(--white);
    color: var(--slate-blue);
  }

  .transparent-button-copy.header-button {
    background-color: var(--slate-blue);
    color: var(--white);
    margin-right: 10px;
    padding: 10px 35px;
    display: inline-block;
  }

  .transparent-button-copy.header-button:hover {
    background-color: var(--white);
    color: var(--slate-blue);
  }

  .div-block-8 {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    width: 100%;
  }

  .hero-wrapper-3-copy {
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 45px;
    padding-left: 0;
  }

  .hero-wrapper-3-copy-copy {
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 45px;
    padding-left: 0;
  }

  .hero-split-4-copy {
    flex: 0 auto;
    width: 50%;
    max-width: 46%;
  }

  .sec-detail2, .sec-detail-2 {
    font-size: 20px;
  }

  .sec-detail-copy {
    font-size: 25px;
  }

  .hero-wrapper-3-copy, .hero-wrapper-3-copy-copy {
    padding-left: 0;
  }

  .hero-wrapper-3-copy-copy {
    margin-bottom: 30px;
    padding-left: 0;
  }

  .hero-split-4-copy, .hero-split-4-copy-copy, .hero-split-4-copy-copy-copy, .hero-split-4-copy-copy-copy-copy, .hero-split-4-copy-copy-copy-copy-copy, .hero-split-4-copy-copy-copy-copy-copy-copy {
    flex: 0 auto;
    max-width: 46%;
  }

  .hero-wrapper-3-copy-copy-copy {
    padding-left: 0;
  }

  .section-title-area-copy-copy.section-left-align {
    text-align: center;
    display: block;
  }

  .menu-title-copy-copy, .menu-title-copy-copy-copy {
    font-size: 20px;
  }

  .heading-2-copy, .heading-2-copy-copy, .heading-2-copy-copy-copy, .heading-2-copy-copy-copy-copy, .heading-2-copy-copy-copy-copy-copy, .heading-2-copy-copy-copy-copy-copy-copy {
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .hero-split-4-copy, .hero-split-4-copy-copy {
    flex: 0 auto;
    width: 32%;
    max-width: 46%;
  }

  .hero-split-4-copy-copy, .hero-split-4-copy, .hero-split-4-copy, .hero-split-4-copy, .hero-split-4-copy, .hero-split-4-copy, .hero-split-4-copy, .hero-split-4-copy-copy, .hero-split-4-copy, .hero-split-4-copy-copy, .hero-split-4-copy, .hero-split-4-copy-copy, .hero-split-4-copy, .hero-split-4-copy-copy, .hero-split-4-copy-copy, .hero-split-4-copy-copy {
    flex: 0 auto;
    max-width: 46%;
  }

  .hero-split-4-copy-copy-copy {
    flex: 0 auto;
    width: 32%;
    max-width: 46%;
  }

  .hero-split-4-copy-copy, .hero-split-4-copy-copy-copy, .hero-split-4-copy-copy-copy-copy {
    flex: 0 auto;
    max-width: 46%;
  }

  .heading-2-copy-copy-copy-copy-copy-copy-copy, .heading-2-copy-copy-copy-copy-copy-copy-copy-copy {
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .heading-2-copy-copy-copy-copy-copy-copy-copy-copy-copy, .heading-2-copy-copy-copy-copy-copy-copy-copy-copy-copy-copy, .heading-2-copy-copy-copy-copy-copy-copy-copy-copy-copy-copy-copy, .kidkickboxing, .kidkickboxing-copy {
    text-align: left;
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .hero-wrapper-3-copy-copy-copy, .hero-wrapper-3-copy-copy-copy-copy {
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 45px;
    padding-left: 0;
  }

  .hero-split-4-copy-copy {
    flex: 0 auto;
    width: 50%;
    max-width: 46%;
  }
}

@media screen and (min-width: 1440px) {
  .header-section {
    z-index: 20;
    position: sticky;
  }

  .header-content-wrap {
    margin-left: 40px;
    margin-right: 40px;
  }

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

  .nav-link {
    padding: 20px 0;
    font-size: 18px;
  }

  .nav-link.w--current {
    color: var(--f08307);
    padding-left: 20px;
    padding-right: 20px;
    font-size: 18px;
  }

  .banner-title-section {
    margin-left: 40px;
    margin-right: 40px;
    padding-top: 150px;
    padding-bottom: 150px;
  }

  .typography-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .container {
    max-width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }

  .paragraph-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .list-section {
    padding-top: 40px;
    padding-bottom: 20px;
  }

  .color-section {
    padding-top: 120px;
    padding-bottom: 40px;
  }

  .blockquote-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .button-section {
    padding-top: 40px;
    padding-bottom: 120px;
  }

  .black-button {
    border-color: var(--slate-blue);
    background-color: var(--white);
    color: var(--slate-blue);
  }

  .black-button:hover {
    background-color: var(--slate-blue);
    color: var(--white);
  }

  .transparent-button.header-button {
    background-color: var(--slate-blue);
    color: var(--white);
    padding-left: 35px;
    padding-right: 35px;
    font-size: 15px;
  }

  .transparent-button.header-button:hover {
    background-color: var(--white);
    color: var(--slate-blue);
  }

  .footer-section {
    margin-left: 40px;
    margin-right: 40px;
    padding: 60px 60px 100px;
    display: block;
  }

  .footer-grid {
    grid-template-columns: 1.25fr .75fr .25fr;
  }

  .footer-widget {
    display: block;
  }

  .footer-utility-widget {
    text-align: center;
    justify-content: center;
    width: auto;
    display: block;
  }

  .footer-page-link {
    display: block;
  }

  .header-menu-button {
    align-items: center;
  }

  .nav-menu {
    background-color: #fff;
    width: 20%;
    margin-right: 35px;
    left: auto;
  }

  .banner-title-border-text {
    font-size: 82px;
  }

  .banner-title-text {
    font-size: 80px;
  }

  .copyright-section {
    padding-top: 40px;
    padding-bottom: 30px;
  }

  .instagram-wrap {
    margin-left: 40px;
    margin-right: 40px;
  }

  .instgram-link-wrap {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 100px;
    display: flex;
  }

  .instagram-heading, .instagram-link {
    font-size: 45px;
  }

  .hero-section {
    margin-left: 40px;
    margin-right: 40px;
  }

  .hero-slider-mask {
    height: 550px;
  }

  .hero-slider-item {
    background-color: #0000;
    background-image: url('../images/tanren_main_1440.png');
    background-position: 50%;
    background-attachment: scroll;
    min-height: 800px;
    padding-top: 140px;
    padding-bottom: 140px;
  }

  .hero-slider-content {
    max-width: 62%;
  }

  .hero-title {
    font-size: 30px;
  }

  .about-section {
    background-image: none;
    margin-top: 0;
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .about-grid {
    margin-top: 40px;
    margin-bottom: 0;
  }

  .section-title-area.section-left-align {
    margin-top: 0;
    margin-bottom: 40px;
  }

  .section-subtitle {
    color: var(--heading-color);
    border: 1px #0000;
  }

  .section-title {
    color: var(--slate-blue);
    letter-spacing: .02em;
    margin-top: -10px;
    font-size: 60px;
    font-weight: 800;
  }

  .section-title-content {
    color: var(--paragraph-color);
    font-size: 18px;
  }

  .about-item {
    border-top: 2px solid var(--slate-blue);
    border-left: 2px none var(--slate-blue);
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 250px;
    margin-bottom: 25px;
    padding: 40px 30px;
    display: flex;
  }

  .about-item-content {
    padding-left: 0;
  }

  .about-item-content.about-second-content {
    margin-right: 40px;
    padding-left: 0;
  }

  .about-item-title {
    color: var(--heading-color);
    font-size: 23px;
  }

  .white-button {
    border-color: var(--slate-blue);
    color: var(--slate-blue);
  }

  .white-button:hover {
    border-color: var(--slate-blue);
    background-color: var(--slate-blue);
  }

  .training-type-section {
    padding-top: 0;
    padding-bottom: 140px;
  }

  .testimonial-section {
    background-position: 0 80%;
    margin-bottom: 20px;
    padding-top: 140px;
    padding-bottom: 60px;
  }

  .testimonial-item {
    width: 50%;
    margin-right: 40px;
    padding: 40px;
  }

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

  .facility-large-text-image {
    left: -13%;
  }

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

  .pricing-item {
    padding: 40px 40px 50px;
  }

  .about-banner-title-section {
    margin-left: 40px;
    margin-right: 40px;
  }

  .about-intro-section {
    top: -140px;
  }

  .about-intro-wrap {
    width: 1000px;
    margin-bottom: 0;
  }

  .intro-section {
    padding-bottom: 140px;
  }

  .video-wrap-section {
    padding-top: 140px;
    padding-bottom: 140px;
  }

  .video-wrap {
    align-items: center;
  }

  .our-values-section {
    padding-top: 140px;
    padding-bottom: 140px;
  }

  .our-value-item {
    padding: 70px 60px 60px;
  }

  .our-value-title {
    font-size: 30px;
  }

  .our-value-content {
    font-size: 22px;
  }

  .counter-section {
    padding-bottom: 140px;
  }

  .counter-item {
    padding-top: 60px;
    padding-bottom: 80px;
  }

  .counter-value {
    font-size: 80px;
  }

  .counter-title {
    font-size: 25px;
  }

  .join-club-section {
    margin-bottom: 140px;
    padding-top: 140px;
    padding-bottom: 140px;
  }

  .join-club-wrap {
    width: 50%;
  }

  .contact-form-section {
    padding-top: 160px;
    padding-bottom: 160px;
  }

  .contact-info-section {
    padding-top: 180px;
    padding-bottom: 180px;
  }

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

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

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

  .changelog-section {
    padding-top: 160px;
    padding-bottom: 160px;
  }

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

  .license-item {
    margin-bottom: 60px;
    padding-top: 30px;
  }

  .license-content-area {
    margin-left: 220px;
    padding-top: 30px;
    padding-bottom: 90px;
  }

  .utility-page-form {
    width: 1000px;
    padding: 100px 130px;
  }

  .protected-section {
    padding-top: 140px;
    padding-bottom: 130px;
  }

  .error-section {
    padding-top: 130px;
    padding-bottom: 140px;
  }

  .schedule-section {
    padding-top: 160px;
    padding-bottom: 140px;
  }

  .schedule-day-item {
    padding-top: 30px;
    padding-bottom: 30px;
    font-size: 20px;
  }

  .schedule-day-name {
    font-size: 20px;
  }

  .schedule-workout-item, .schedule-workout-item.workout-timing, .schedule-workout-item.empty-workout-item {
    padding-top: 30px;
    padding-bottom: 22px;
  }

  .schedule-workout-name {
    font-size: 25px;
  }

  .workout-time, .workout-trainer-name {
    font-size: 20px;
  }

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

  .working-tabs-content {
    margin-top: 30px;
  }

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

  .blog-item {
    padding: 40px;
  }

  .blog-date, .blog-category-link {
    font-size: 20px;
  }

  .blog-title {
    font-size: 28px;
  }

  .blog-author-wrap {
    margin-top: 25px;
  }

  .blog-author-name {
    font-size: 20px;
  }

  .blog-single-section {
    padding-bottom: 80px;
  }

  .blog-single-top-wrap {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
  }

  .blog-single-content {
    max-width: 930px;
  }

  .blog-single-author-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .global-page-section {
    padding-top: 140px;
    padding-bottom: 140px;
  }

  .global-banner-title {
    margin-left: 40px;
    margin-right: 40px;
  }

  .trainers-section {
    padding-top: 140px;
    padding-bottom: 160px;
  }

  .trainers-section.home-trainers-section {
    padding-bottom: 140px;
  }

  .trainer-content-area {
    padding: 40px 45px;
  }

  .special-content {
    font-size: 20px;
  }

  .trainer-banner-title-area {
    margin-left: 40px;
    margin-right: 40px;
    padding-top: 150px;
    padding-bottom: 150px;
  }

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

  .trainer-single-grid {
    grid-column-gap: 50px;
    grid-row-gap: 16px;
  }

  .trainer-single-name {
    font-size: 30px;
  }

  .trainer-single-designation {
    font-size: 20px;
  }

  .join-team-section {
    padding-top: 140px;
    padding-bottom: 140px;
  }

  .video-class-section {
    margin-bottom: 140px;
    padding-top: 140px;
    padding-bottom: 140px;
  }

  .video-class-area {
    height: 600px;
  }

  .video-class-button-wrap {
    margin-top: 80px;
  }

  .classes-section {
    padding-top: 180px;
    padding-bottom: 80px;
  }

  .class-title {
    font-size: 30px;
  }

  .class-readmore-link {
    font-size: 22px;
  }

  .classes-single-title-area {
    margin-left: 40px;
    margin-right: 40px;
    padding-top: 150px;
    padding-bottom: 150px;
  }

  .class-single-section {
    padding-top: 120px;
  }

  .class-video-section {
    padding-bottom: 120px;
  }

  .class-video-wrap {
    background-size: cover;
    height: 600px;
  }

  .blog-list-section {
    background-position: 100% 2%;
    padding-top: 60px;
    padding-bottom: 140px;
  }

  .blog-list-item {
    margin-bottom: 0;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .blog-listing-content-wrap {
    padding-right: 40px;
  }

  .home-classes-section {
    background-image: none;
    border: 1px solid #0000;
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .moving-content {
    width: 270%;
  }

  .moving-content-area {
    flex: 1;
    margin-left: auto;
    margin-right: auto;
    padding-left: 60px;
  }

  .moving-text {
    letter-spacing: .3em;
    font-size: 55px;
  }

  .moving-text.fitness-text {
    color: var(--slate-blue);
  }

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

  .hero-title-copy {
    font-size: 50px;
  }

  .hero-title-copy-copy {
    color: var(--white);
    font-size: 100px;
  }

  .about-item-title-copy {
    color: var(--slate-blue);
    font-size: 23px;
  }

  .about-item-title-copy-copy, .about-item-title-copy-copy-copy, .about-item-title-copy-copy-copy, .about-item-title-copy-copy-copy, .about-item-title-copy-copy-copy, .about-item-title-copy-copy-copy-copy, .about-item-title-copy-copy-copy-copy, .about-item-title-copy-copy-copy-copy, .about-item-title-copy-copy-copy-copy, .about-item-title-copy-copy-copy-copy-copy, .about-item-title-copy-copy-copy-copy-copy, .about-item-title-copy-copy-copy-copy-copy {
    color: var(--slate-blue);
    font-size: 15px;
  }

  .about-item-title-copy-copy-copy-copy-copy {
    color: var(--slate-blue);
    font-size: 12px;
  }

  .hero-slider-item-copy {
    background-color: #0000;
    background-image: url('../images/tanren_photo0330.jpg');
    background-position: 50%;
    background-size: cover;
    background-attachment: scroll;
    min-height: 500px;
    padding-top: 140px;
    padding-bottom: 140px;
  }

  .container-3 {
    max-width: 98%;
    padding-left: 0;
  }

  .margin-bottom-24px {
    font-size: 14px;
  }

  .text-block-8 {
    color: var(--heading-color);
    text-align: right;
    font-size: 14px;
  }

  .button-11 {
    border: 1px solid var(--slate-blue);
    background-color: var(--slate-blue);
    text-align: center;
    width: 200px;
    margin-top: 10px;
    padding-top: 3px;
    padding-bottom: 3px;
    font-size: 16px;
  }

  .button-11:hover {
    background-color: var(--white);
    color: var(--slate-blue);
  }

  .container-5 {
    background-color: var(--azure);
    max-width: 100%;
    margin-top: 60px;
    margin-bottom: 0;
    padding: 40px 40px 20px;
  }

  .hero-heading-right-2 {
    color: #0000;
    background-color: #0000;
    border: 1px solid #0000;
    padding-top: 0;
    padding-bottom: 40px;
  }

  .hero-wrapper-2 {
    justify-content: space-between;
  }

  .margin-bottom-24px-2 {
    color: var(--paragraph-color);
  }

  .button-primary-2 {
    border: 1px solid var(--slate-blue);
    background-color: var(--slate-blue);
    letter-spacing: 0;
    font-size: 18px;
  }

  .button-primary-2:hover {
    background-color: var(--white);
    color: var(--slate-blue);
  }

  .instagram-wrap-2 {
    background-image: url('../images/tanrenimage0404.jpg');
    margin-left: 40px;
    margin-right: 40px;
  }

  .instagram-heading-2 {
    padding-left: 10px;
    font-size: 45px;
  }

  .instagram-link-2 {
    font-size: 45px;
  }

  .container-5-copy {
    background-color: var(--azure);
    max-width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    padding: 40px 40px 20px;
  }

  .section-title-copy {
    color: var(--slate-blue);
    letter-spacing: .02em;
    margin-top: -10px;
    font-size: 60px;
    font-weight: 800;
  }

  .button-primary-2-copy {
    border: 1px solid var(--slate-blue);
    background-color: var(--slate-blue);
    letter-spacing: 0;
    font-size: 18px;
  }

  .button-primary-2-copy:hover {
    background-color: var(--white);
    color: var(--slate-blue);
  }

  .title {
    color: var(--heading-color);
    border: 1px #0000;
  }

  .section-title-content-copy {
    color: var(--paragraph-color);
    font-size: 20px;
  }

  .nav-link-copy {
    padding: 20px 10px;
    font-size: 18px;
  }

  .nav-link-copy.w--current {
    color: var(--f08307);
    padding-left: 10px;
    padding-right: 10px;
    font-size: 18px;
  }

  .container-7 {
    max-width: 100%;
    margin-top: 20px;
    margin-bottom: 40px;
    padding-left: 100px;
    padding-right: 100px;
  }

  .div-block {
    background-image: none;
    background-position: 50% 100%;
    background-size: cover;
    height: 150px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .div-block-copy {
    background-image: url('../images/tanren_benner_1200.png');
    background-position: 50% 100%;
    background-size: cover;
    height: 200px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .container-8 {
    max-width: 100%;
  }

  .div-block-5-copy, .div-block-5-copy-copy {
    height: 600px;
  }

  .container-copy {
    max-width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }

  .section {
    padding-bottom: 60px;
  }

  .hero-wrapper-3 {
    margin-left: 0;
  }

  .shadow-two-3 {
    width: 500px;
    max-width: 100%;
    margin-top: 10px;
  }

  .sec-detail {
    color: var(--paragraph-color);
    font-size: 18px;
  }

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

  .div-block6 {
    height: 300px;
  }

  .title-english {
    color: var(--slate-blue);
    letter-spacing: .02em;
    margin-top: -10px;
    font-size: 60px;
    font-weight: 800;
  }

  .section-title-area-copy.section-left-align {
    margin-top: 0;
    margin-bottom: 60px;
  }

  .admission-title {
    color: var(--slate-blue);
    letter-spacing: .02em;
    margin-top: -10px;
    font-size: 60px;
    font-weight: 800;
  }

  .section-title-content-copy-copy {
    color: var(--paragraph-color);
    font-size: 20px;
  }

  .price2 {
    color: var(--paragraph-color);
    font-size: 30px;
  }

  .section-title-content-copy-copy-copy, .price, .section-title-content-copy-copy-copy, .section-title-content-copy-copy-copy-copy, .section-title-content-copy-copy-copy-copy-copy, .admission {
    color: var(--paragraph-color);
    font-size: 18px;
  }

  .price-title {
    color: var(--slate-blue);
    letter-spacing: .02em;
    margin-top: -10px;
    font-size: 60px;
    font-weight: 800;
  }

  .margin-bottom-24px-4 {
    text-align: center;
    margin-top: 24px;
    font-size: 18px;
    line-height: 1;
  }

  .waribiki-a {
    color: var(--paragraph-color);
    font-size: 16px;
  }

  .waribiki-q {
    color: var(--f08307);
    font-size: 20px;
  }

  .q2section.section-left-align, ._1section-copy.section-left-align, .q1section.section-left-align, .q3section.section-left-align, .q4section.section-left-align, .q5section.section-left-align, .q6section.section-left-align {
    margin-top: 0;
    margin-bottom: 60px;
  }

  .heading-11 {
    margin-bottom: 5px;
  }

  .team-member-image {
    width: 270px;
    height: 270px;
    max-height: none;
  }

  .trainers-section-copy {
    padding-top: 140px;
    padding-bottom: 40px;
  }

  .trainers-section-copy.home-trainers-section {
    padding-bottom: 140px;
  }

  .div-block-5-copy-copy-copy-copy {
    height: 300px;
  }

  .container-17 {
    justify-content: flex-start;
    align-items: center;
    width: auto;
    max-width: 100%;
    display: flex;
  }

  .mainimage {
    width: 80%;
    max-width: none;
  }

  .container-copy-copy {
    max-width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }

  .sec-detail-copy, .sec-detail-copy-copy {
    color: var(--paragraph-color);
    font-size: 18px;
  }

  .transparent-button-copy.header-button {
    background-color: var(--slate-blue);
    color: var(--white);
    margin-right: 10px;
    padding-left: 40px;
    padding-right: 40px;
    font-size: 15px;
  }

  .transparent-button-copy-copy.header-button {
    background-color: var(--slate-blue);
    color: var(--white);
    margin-bottom: 40px;
    padding-left: 35px;
    padding-right: 35px;
    font-size: 15px;
  }

  .transparent-button-copy-copy.header-button:hover {
    background-color: var(--white);
    color: var(--slate-blue);
  }

  .transparent-button-copy.header-button {
    background-color: var(--slate-blue);
    color: var(--white);
    padding-left: 35px;
    padding-right: 35px;
    font-size: 15px;
  }

  .transparent-button-copy.header-button:hover {
    background-color: var(--white);
    color: var(--slate-blue);
  }

  .div-block6-copy, .div-block6-sports, .div-block6-copy-copy, .div-block6-copy-copy, .div-block6-copy-copy-copy, .div-block6-copy-copy, .div-block6-copy-copy-copy, .div-block6-copy-copy-copy-copy, .div-block6-chiro, .div-block6-elderly, .div-block6-traffic, .div-block6-chiro-copy, .div-block6-sports-copy, .div-block6-elderly-copy, .div-block6-traffic-copy, .div-block6-traffic-copy-copy, .div-block6-traffic-copy-copy-copy, .div-block6-traffic-copy-copy-copy-copy {
    height: 300px;
  }

  .div-block-8 {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    width: 100%;
  }

  .hero-wrapper-3-copy, .hero-wrapper-3-copy-copy {
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 45px;
  }

  .sec-detail2, .sec-detail-2 {
    color: var(--paragraph-color);
    font-size: 18px;
  }

  .sec-detail-copy {
    color: var(--heading-color);
    font-size: 25px;
  }

  .hero-wrapper-3-copy-copy {
    margin-bottom: 20px;
  }

  .section-title-area-copy-copy.section-left-align {
    margin-top: 0;
    margin-bottom: 40px;
  }

  .menu-title-copy-copy, .menu-title-copy-copy-copy {
    font-size: 20px;
  }

  .hero-split-4-copy {
    width: 32%;
  }

  .hero-split-4-copy-copy, .hero-split-4-copy-copy-copy {
    width: 32%;
    max-width: 50%;
  }

  .hero-split-4-copy-copy-copy-copy {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .hero-wrapper-3-copy-copy-copy, .hero-wrapper-3-copy-copy-copy-copy {
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 45px;
  }

  .hero-split-4-copy-copy {
    width: 100%;
  }
}

@media screen and (min-width: 1920px) {
  .header-section {
    z-index: 20;
    position: sticky;
  }

  .header-content-wrap {
    margin-left: 100px;
    margin-right: 100px;
  }

  .nav-link {
    width: auto;
    margin-right: 20px;
  }

  .banner-title-section {
    margin-left: 100px;
    margin-right: 100px;
    padding-top: 150px;
    padding-bottom: 150px;
  }

  .banner-title-wrap {
    max-width: 60%;
  }

  .container {
    max-width: 1400px;
    padding-left: 0;
    padding-right: 0;
  }

  .black-button {
    border-color: var(--slate-blue);
    background-color: var(--white);
    color: var(--slate-blue);
  }

  .black-button:hover {
    background-color: var(--slate-blue);
    color: var(--white);
  }

  .transparent-button.header-button {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 10px;
    padding: 10px 35px;
    font-size: 15px;
  }

  .footer-section {
    margin-left: 100px;
    margin-right: 100px;
    padding-top: 60px;
    padding-bottom: 60px;
  }

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

  .footer-utility-widget {
    text-align: center;
    margin-top: 40px;
  }

  .header-button-wrap {
    flex: 0 auto;
    align-self: auto;
  }

  .nav-menu {
    background-color: #fff;
    flex-flow: row;
    justify-content: flex-end;
    align-items: center;
    width: 20%;
    margin-right: 0;
    position: absolute;
    left: 1380px;
  }

  .banner-title-border-text {
    font-size: 82px;
    line-height: 1.3;
  }

  .banner-title-text {
    line-height: 1.3;
  }

  .instagram-wrap, .hero-section {
    margin-left: 100px;
    margin-right: 100px;
  }

  .hero-slider-mask {
    height: 800px;
  }

  .hero-slider-item {
    background-image: url('../images/tanren_main_1440.png');
    background-position: 50% 55%;
    min-height: 200px;
    padding-top: 140px;
    padding-bottom: 140px;
  }

  .hero-title {
    font-size: 30px;
  }

  .about-section {
    background-image: none;
    margin-top: 100px;
    padding-top: 20px;
  }

  .section-title {
    color: var(--slate-blue);
  }

  .about-item {
    color: var(--paragraph-color);
    height: 250px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .about-item-content, .about-item-content.about-second-content {
    padding-left: 0;
  }

  .about-item-title {
    color: var(--heading-color);
    font-size: 24px;
  }

  .white-button {
    color: var(--slate-blue);
  }

  .white-button:hover {
    border-color: var(--slate-blue);
    background-color: var(--slate-blue);
  }

  .testimonial-item {
    width: 43%;
    margin-right: 40px;
    padding: 50px 40px 40px;
  }

  .testimonial-image-wrap {
    width: 80%;
  }

  .facility-grid {
    grid-column-gap: 100px;
    grid-row-gap: 16px;
  }

  .facility-large-text-image {
    left: 0%;
  }

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

  .about-banner-title-section {
    margin-left: 100px;
    margin-right: 100px;
    padding-top: 150px;
    padding-bottom: 190px;
  }

  .about-intro-section {
    top: -100px;
  }

  .about-intro-wrap {
    margin-bottom: 0;
    padding: 40px;
  }

  .about-intro-grid {
    grid-column-gap: 0px;
    grid-row-gap: 16px;
    grid-template-columns: .5fr 1fr;
  }

  .about-intro-image {
    grid-column-gap: 40px;
    grid-row-gap: 16px;
    grid-template-columns: .45fr 1fr;
    width: 100%;
  }

  .intro-grid {
    grid-column-gap: 30px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
  }

  .video-wrap {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .join-club-section {
    margin-bottom: 140px;
  }

  .join-club-wrap {
    width: 40%;
  }

  .contact-form-section {
    margin-top: 0;
    padding-top: 180px;
    padding-bottom: 140px;
  }

  .contact-info-section {
    padding-top: 200px;
    padding-bottom: 200px;
  }

  .protected-section {
    padding-top: 140px;
    padding-bottom: 130px;
  }

  .error-section {
    padding-top: 130px;
    padding-bottom: 140px;
  }

  .schedule-section {
    padding-top: 160px;
    padding-bottom: 160px;
  }

  .blog-section {
    padding-top: 160px;
    padding-bottom: 140px;
  }

  .blog-single-wrap {
    padding-top: 100px;
  }

  .blog-single-top-wrap {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .blog-single-content {
    max-width: 930px;
    margin-top: 60px;
  }

  .blog-single-author-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .global-banner-title {
    margin-left: 100px;
    margin-right: 100px;
    padding-top: 150px;
    padding-bottom: 150px;
  }

  .trainers-section {
    padding-bottom: 140px;
  }

  .trainer-banner-title-area {
    margin-left: 100px;
    margin-right: 100px;
  }

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

  .trainer-single-grid {
    grid-column-gap: 50px;
    grid-row-gap: 16px;
    grid-template-columns: .5fr 1fr;
  }

  .join-team-section {
    padding-top: 140px;
    padding-bottom: 140px;
  }

  .classes-single-title-area {
    margin-left: 100px;
    margin-right: 100px;
    padding-top: 150px;
    padding-bottom: 150px;
  }

  .class-single-section {
    padding-top: 140px;
    padding-bottom: 40px;
  }

  .class-video-section {
    padding-bottom: 140px;
  }

  .blog-list-section {
    background-position: 100% 2%;
  }

  .blog-listing-content-wrap {
    padding-right: 40px;
  }

  .facility-image, .facility-our-image {
    flex: none;
  }

  .home-classes-section {
    background-image: none;
    margin-top: 0;
    padding-top: 60px;
    padding-bottom: 100px;
  }

  .moving-content {
    width: 245%;
  }

  .moving-content-area {
    margin-right: 0;
    padding-right: 0;
  }

  .moving-text {
    font-size: 60px;
  }

  .moving-text.fitness-text {
    color: var(--slate-blue);
  }

  .workout-tab-link {
    padding-left: 40px;
  }

  .faq-content-area {
    padding-top: 20px;
  }

  .accordion-question {
    font-weight: 600;
  }

  .hero-title-copy {
    font-size: 50px;
  }

  .hero-title-copy-copy {
    color: var(--white);
    font-size: 100px;
  }

  .about-item-title-copy, .about-item-title-copy-copy, .about-item-title-copy-copy, .about-item-title-copy-copy, .about-item-title-copy-copy, .about-item-title-copy-copy-copy, .about-item-title-copy-copy-copy, .about-item-title-copy-copy-copy, .about-item-title-copy-copy-copy, .about-item-title-copy-copy-copy-copy, .about-item-title-copy-copy-copy-copy, .about-item-title-copy-copy-copy-copy, .about-item-title-copy-copy-copy-copy, .about-item-title-copy-copy-copy-copy-copy {
    color: var(--slate-blue);
    font-size: 15px;
  }

  .about-item-title-copy-copy-copy-copy-copy {
    color: var(--slate-blue);
    font-size: 12px;
  }

  .hero-slider-item-copy {
    background-image: url('../images/tanren_photo0330.jpg');
    background-position: 50% 55%;
    min-height: 200px;
    padding-top: 140px;
    padding-bottom: 140px;
  }

  .container-3 {
    max-width: 98%;
  }

  .instagram-wrap-2 {
    margin-left: 100px;
    margin-right: 100px;
  }

  .section-title-copy {
    color: var(--slate-blue);
  }

  .container-7 {
    padding-left: 220px;
    padding-right: 220px;
  }

  .div-block-copy {
    background-image: url('../images/tanren_benner_1200.png');
    height: 250px;
    margin-left: 0;
    padding-left: 0;
  }

  .container-8 {
    max-width: 100%;
  }

  .div-block-5-copy, .div-block-5-copy-copy {
    height: 900px;
  }

  .container-copy {
    max-width: 1400px;
    padding-left: 0;
    padding-right: 0;
  }

  .team-member-text-2 {
    font-size: 18px;
  }

  .hero-wrapper-3 {
    margin-bottom: 40px;
  }

  .hero-split-4 {
    flex-flow: column;
    width: 50808400000000%;
    max-width: 55%;
    display: flex;
  }

  .margin-bottom-24px-3 {
    font-size: 18px;
  }

  .shadow-two-3 {
    width: 260px;
    margin-top: 10px;
  }

  .heading-2 {
    max-width: none;
    margin-top: 10px;
  }

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

  .div-block6 {
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    height: 420px;
  }

  .title-english, .admission-title {
    color: var(--slate-blue);
  }

  .price2 {
    font-size: 30px;
  }

  .price-title {
    color: var(--slate-blue);
  }

  .margin-bottom-24px-4 {
    margin-top: 24px;
    font-size: 18px;
    line-height: 1;
  }

  .button-12-copy {
    margin-top: 40px;
    font-size: 25px;
  }

  .link-block-2 {
    background-position: 50%;
    background-size: cover;
    background-attachment: scroll;
    min-width: 0;
    height: 200px;
    display: block;
  }

  .heading-11 {
    margin-top: 0;
    margin-bottom: 10px;
  }

  .trainers-section-copy {
    padding-bottom: 140px;
  }

  .div-block-5-copy-copy-copy-copy {
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    height: 420px;
  }

  .image-9 {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .image-10 {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    display: inline-block;
  }

  .container-17 {
    justify-content: flex-start;
    align-items: center;
    max-width: none;
    max-height: none;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    display: flex;
  }

  .image-11 {
    max-width: 100%;
    max-height: 100%;
    display: block;
  }

  .text-block-13 {
    font-family: Changa One, Impact, sans-serif;
    font-size: 200px;
  }

  .text-block-14 {
    font-family: Changa One, Impact, sans-serif;
    font-size: 100px;
  }

  .mv {
    max-width: 100%;
    max-height: 100%;
    display: block;
  }

  .image-12 {
    inset: auto 400px auto auto;
  }

  .mainimage {
    width: 80%;
    max-width: none;
    max-height: none;
    display: block;
  }

  .container-copy-copy {
    max-width: 1400px;
    padding-left: 0;
    padding-right: 0;
  }

  .button-14 {
    margin-right: 40px;
  }

  .transparent-button-copy.header-button {
    margin-bottom: 40px;
    margin-right: 20px;
    padding: 10px 40px;
    font-size: 15px;
  }

  .transparent-button-copy-copy.header-button {
    margin-bottom: 40px;
    margin-right: 10px;
    padding: 10px 35px;
    font-size: 15px;
  }

  .transparent-button-copy.header-button {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 10px;
    padding: 10px 35px;
    font-size: 15px;
  }

  .div-block6-copy {
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    height: 420px;
  }

  .div-block6-sports, .div-block6-copy-copy {
    background-image: url('../images/sports1440.png');
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    height: 420px;
  }

  .div-block6-copy-copy-copy {
    background-image: url('../images/elderly1440.png');
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    height: 420px;
  }

  .div-block6-copy-copy, .div-block6-copy-copy-copy {
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    height: 420px;
  }

  .div-block6-copy-copy-copy-copy {
    background-image: url('../images/traffic1440.png');
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    height: 420px;
  }

  .div-block6-chiro {
    background-image: url('../images/chiro1440.png');
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    height: 420px;
  }

  .div-block6-elderly {
    background-image: url('../images/elderly1440.png');
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    height: 420px;
  }

  .div-block6-traffic {
    background-image: url('../images/traffic1440.png');
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    height: 420px;
  }

  .div-block6-chiro-copy {
    background-image: url('../images/chiro1440.png');
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    height: 420px;
  }

  .div-block6-sports-copy {
    background-image: url('../images/sports1440.png');
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    height: 420px;
  }

  .div-block6-elderly-copy {
    background-image: url('../images/elderly1440.png');
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    height: 420px;
  }

  .div-block6-traffic-copy {
    background-image: url('../images/traffic1440.png');
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    height: 420px;
  }

  .div-block6-traffic-copy-copy, .div-block6-traffic-copy-copy-copy {
    background-image: url('../images/elderly1440.png');
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    height: 420px;
  }

  .div-block6-traffic-copy-copy-copy-copy {
    background-image: url('../images/traffic1440.png');
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    height: 420px;
  }

  .div-block-8 {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    width: 100%;
  }

  .div-block-9 {
    border: 1px solid #000;
    width: 100%;
    height: 1px;
    min-height: 0;
  }

  .hero-wrapper-3-copy {
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 40px;
  }

  .hero-wrapper-3-copy-copy {
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 40px;
  }

  .heading-2-copy-copy {
    margin-bottom: 10px;
  }

  .hero-wrapper-3-copy, .hero-wrapper-3-copy-copy {
    margin-bottom: 40px;
  }

  .hero-wrapper-3-copy-copy {
    margin-bottom: 30px;
  }

  .hero-split-4-copy, .hero-split-4-copy-copy, .hero-split-4-copy-copy-copy, .hero-split-4-copy-copy-copy-copy, .hero-split-4-copy-copy-copy-copy-copy {
    flex-flow: column;
    width: auto;
    max-width: 46%;
    display: flex;
  }

  .hero-split-4-copy-copy-copy-copy-copy-copy {
    flex-flow: column;
    width: 55%;
    max-width: none;
    display: flex;
  }

  .hero-wrapper-3-copy-copy-copy {
    margin-bottom: 40px;
  }

  .menu-title-copy, .howtouse-title-copy, .menu-title-copy {
    margin-bottom: 20px;
  }

  .menu-title-copy-copy {
    margin-bottom: 10px;
    font-size: 20px;
  }

  .menu-title-copy-copy-copy {
    margin-bottom: 20px;
    font-size: 20px;
  }

  .heading-2-copy, .heading-2-copy-copy, .heading-2-copy-copy-copy, .heading-2-copy-copy-copy-copy, .heading-2-copy, .heading-2-copy-copy, .heading-2-copy-copy-copy, .heading-2-copy, .heading-2-copy-copy, .heading-2-copy-copy-copy, .heading-2-copy, .heading-2-copy-copy, .heading-2-copy-copy-copy, .heading-2-copy, .heading-2-copy-copy, .heading-2-copy-copy-copy, .heading-2-copy-copy-copy-copy, .heading-2-copy, .heading-2-copy-copy, .heading-2-copy-copy-copy, .heading-2-copy, .heading-2-copy-copy, .heading-2-copy-copy-copy, .heading-2-copy, .heading-2-copy-copy, .heading-2-copy-copy-copy, .heading-2-copy, .heading-2-copy-copy, .heading-2-copy-copy-copy, .heading-2-copy, .heading-2-copy-copy, .heading-2-copy-copy-copy {
    max-width: none;
  }

  .heading-2-copy, .heading-2-copy-copy, .heading-2-copy-copy-copy, .heading-2-copy-copy-copy-copy, .heading-2-copy-copy-copy-copy-copy {
    max-width: none;
    margin-top: 10px;
  }

  .heading-2-copy-copy-copy-copy-copy-copy {
    text-align: left;
    max-width: none;
    margin-top: 10px;
  }

  .heading-2-copy-copy-copy-copy-copy {
    max-width: none;
  }

  .hero-split-4-copy, .hero-split-4-copy-copy, .hero-split-4-copy, .hero-split-4-copy-copy, .hero-split-4-copy, .hero-split-4-copy-copy, .hero-split-4-copy, .hero-split-4-copy-copy {
    flex-flow: column;
    width: 50808400000000%;
    max-width: 55%;
    display: flex;
  }

  .hero-split-4-copy-copy, .hero-split-4-copy-copy-copy, .hero-split-4-copy-copy {
    flex-flow: column;
    width: auto;
    max-width: 55%;
    display: flex;
  }

  .hero-split-4-copy-copy-copy-copy {
    flex-flow: column;
    width: auto;
    max-width: 46%;
    display: flex;
  }

  .heading-2-copy-copy-copy-copy-copy-copy-copy, .heading-2-copy-copy-copy-copy-copy-copy-copy-copy, .heading-2-copy-copy-copy-copy-copy-copy-copy-copy-copy, .heading-2-copy-copy-copy-copy-copy-copy-copy-copy-copy-copy, .heading-2-copy-copy-copy-copy-copy-copy-copy-copy-copy-copy-copy, .kidkickboxing, .kidkickboxing-copy {
    text-align: left;
    max-width: none;
    margin-top: 10px;
  }

  .hero-wrapper-3-copy-copy-copy, .hero-wrapper-3-copy-copy-copy-copy {
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 40px;
  }

  .hero-split-4-copy-copy {
    flex-flow: column;
    width: auto;
    max-width: 46%;
    display: flex;
  }
}

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

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 30px;
  }

  blockquote {
    border-width: 30px;
    padding: 80px 60px;
    font-size: 22px;
  }

  .header-section {
    position: sticky;
    top: 0;
  }

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

  .nav-link {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .nav-link.dropdown-nav-link {
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 18px;
  }

  .dropdown-toggle {
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 0;
  }

  .dropdown-list {
    position: relative;
  }

  .dropdown-list.w--open {
    background-color: var(--grey-background-color);
    box-shadow: none;
    padding-bottom: 10px;
  }

  .banner-title-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .container {
    padding-left: 30px;
  }

  .styleguide-content-wrap {
    width: 100%;
  }

  .color-section {
    padding-top: 80px;
  }

  .color-box {
    height: 150px;
  }

  .color-code {
    font-size: 20px;
  }

  .transparent-button.header-button {
    margin-right: 20px;
  }

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

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

  .footer-contact-wrap {
    margin-top: 20px;
  }

  .widget-title {
    margin-bottom: 20px;
    font-size: 23px;
  }

  .footer-page-link {
    padding-bottom: 15px;
  }

  .footer-subscribe-widget {
    margin-top: 20px;
  }

  .header-menu-button {
    align-items: center;
  }

  .nav-menu {
    z-index: 9;
    background-color: var(--grey-background-color);
    width: 40%;
    margin-right: 0;
    padding-top: 10px;
    padding-bottom: 20px;
    left: 430px;
  }

  .banner-title-border-text {
    display: none;
  }

  .banner-title-text {
    font-size: 50px;
  }

  .copyright-section {
    padding-top: 30px;
    padding-bottom: 20px;
  }

  .hero-slider-mask {
    height: 294px;
  }

  .hero-slider-item {
    background-position: 50% 0;
    background-size: cover;
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .hero-title {
    font-size: 30px;
    line-height: 1.5;
  }

  .about-section {
    background-image: none;
    background-repeat: repeat;
    background-size: auto;
    margin-top: 0;
    padding-top: 40px;
  }

  .about-grid {
    display: block;
  }

  .section-subtitle {
    font-size: 17px;
  }

  .section-title {
    margin-top: 0;
    font-size: 32px;
  }

  .about-item {
    width: 100%;
  }

  .about-item-content {
    padding-left: 0;
  }

  .about-item-content.about-second-content {
    margin-right: 40px;
    padding-left: 0;
  }

  .about-item-title {
    color: var(--heading-color);
  }

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

  .testimonial-section {
    background-image: none;
    background-repeat: repeat;
    background-size: auto;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .testimonial-slider {
    height: auto;
  }

  .testimonial-item {
    width: 100%;
  }

  .testimonial-item-wrap {
    align-items: center;
  }

  .facility-grid {
    display: block;
  }

  .facility-title-wrap {
    padding-top: 15px;
  }

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

  .about-banner-title-section {
    margin-left: 30px;
    margin-right: 30px;
  }

  .about-intro-wrap {
    padding-left: 0;
    padding-right: 0;
  }

  .intro-grid, .our-values-grid {
    grid-template-columns: 1fr;
  }

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

  .join-club-wrap {
    width: 100%;
  }

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

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

  .contact-info-grid {
    grid-column-gap: 0px;
    grid-row-gap: 16px;
    grid-template-columns: 1fr;
  }

  .bmi-grid {
    grid-column-gap: 16px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

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

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

  .cta-subscribe-form-flex {
    justify-content: center;
    align-items: center;
  }

  .changelog-content-wrap {
    padding-top: 80px;
    padding-bottom: 100px;
  }

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

  .license-content-area {
    margin-left: 0;
    padding-bottom: 40px;
  }

  .utility-page-form {
    padding: 60px;
  }

  .password-content {
    font-size: 18px;
  }

  .protected-title {
    font-size: 36px;
  }

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

  .schedule-section {
    background-image: none;
    background-repeat: repeat;
    background-size: auto;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .schedule-wrap {
    overflow: scroll;
  }

  .schedule-day-grid {
    min-width: 1200px;
  }

  .schedule-day-item {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .schedule-day-name {
    font-size: 17px;
  }

  .schedule-workout-grid {
    min-width: 1200px;
  }

  .schedule-workout-item, .schedule-workout-item.workout-timing {
    padding-top: 25px;
    padding-bottom: 17px;
  }

  .schedule-workout-name {
    font-size: 20px;
  }

  .workout-time, .workout-trainer-name {
    font-size: 17px;
  }

  .working-day-grid, .working-item-grid {
    min-width: 1200px;
  }

  .working-tab-content {
    overflow: scroll;
  }

  .blog-item {
    padding: 20px;
  }

  .blog-category-link {
    margin-top: 10px;
    margin-left: 20px;
  }

  .blog-title {
    font-size: 20px;
  }

  .blog-single-section {
    padding-bottom: 60px;
  }

  .blog-single-wrap {
    padding-top: 60px;
  }

  .blog-single-top-wrap {
    margin-bottom: 40px;
  }

  .blog-single-title {
    font-size: 37px;
  }

  .blog-single-content {
    margin-top: 40px;
  }

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

  .blog-author-content {
    font-size: 20px;
  }

  .global-page-section {
    padding: 80px 10px;
  }

  .global-banner-title {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .banner-value-title {
    font-size: 50px;
  }

  .trainer-content-area {
    padding: 20px;
  }

  .trainer-name {
    font-size: 22px;
  }

  .special-content {
    font-size: 16px;
  }

  .trainer-single-section {
    padding-top: 100px;
  }

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

  .trainer-single-content-wrap {
    margin-top: 20px;
  }

  .personal-detail-title {
    font-size: 40px;
  }

  .trainer-collection-item {
    padding-left: 10px;
    padding-right: 10px;
  }

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

  .join-team-form-wrap {
    margin-top: 40px;
  }

  .join-team-address {
    padding-top: 10px;
  }

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

  .class-title {
    font-size: 26px;
  }

  .classes-collection-item {
    padding-left: 10px;
    padding-right: 10px;
  }

  .classes-single-title-area {
    padding-top: 100px;
    padding-bottom: 100px;
  }

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

  .class-detail-wrap {
    padding-left: 40px;
  }

  .class-video-wrap {
    height: 450px;
  }

  .blog-list-section {
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
  }

  .blog-listing-content-wrap {
    padding-right: 0;
  }

  .menu-button {
    background-color: var(--midnight-blue);
    padding-top: 20px;
    padding-bottom: 20px;
  }

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

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

  .story-image {
    width: 100%;
  }

  .home-classes-section {
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
    padding-bottom: 40px;
  }

  .moving-content-area {
    justify-content: space-between;
  }

  .moving-text {
    padding-left: 0;
    font-size: 20px;
  }

  .moving-section {
    padding-top: 15px;
  }

  .workout-tab-link:hover {
    color: var(--primary-color);
  }

  .faq-content-area {
    max-width: 100%;
  }

  .accordion-question {
    font-size: 22px;
  }

  .faq-content {
    font-size: 17px;
  }

  .hero-title-copy {
    font-size: 40px;
    line-height: 1.5;
  }

  .hero-title-copy-copy {
    font-size: 80px;
    line-height: 1;
  }

  .about-item-title-copy, .about-item-title-copy-copy, .about-item-title-copy-copy, .about-item-title-copy-copy, .about-item-title-copy-copy, .about-item-title-copy-copy-copy, .about-item-title-copy-copy-copy, .about-item-title-copy-copy-copy, .about-item-title-copy-copy-copy, .about-item-title-copy-copy-copy-copy, .about-item-title-copy-copy-copy-copy, .about-item-title-copy-copy-copy-copy, .about-item-title-copy-copy-copy-copy, .about-item-title-copy-copy-copy-copy-copy, .about-item-title-copy-copy-copy-copy-copy, .about-item-title-copy-copy-copy-copy-copy, .about-item-title-copy-copy-copy-copy-copy {
    color: var(--slate-blue);
  }

  .image-3, .image-4 {
    max-width: 80%;
  }

  .hero-slider-item-copy {
    background-position: 65% 100%;
    background-size: cover;
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .container-3 {
    max-width: 95%;
  }

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

  .team-slide-wrapper {
    width: 47%;
    margin-right: 6%;
  }

  .hero-wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: -40px;
  }

  .hero-split {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .shadow-two {
    max-width: 100%;
  }

  .button-primary {
    border-color: var(--slate-blue);
  }

  .hero-split-2 {
    max-width: 100%;
    margin-bottom: 40px;
  }

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

  .hero-wrapper-2 {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: -40px;
  }

  .hero-split-3 {
    align-self: center;
    max-width: 100%;
    margin-bottom: 40px;
  }

  .button-primary-2 {
    align-self: center;
  }

  .instagram-wrap-2 {
    background-image: url('../images/tanrenimage0404.jpg');
  }

  .section-title-copy {
    margin-top: 0;
    font-size: 32px;
  }

  .title {
    font-size: 17px;
  }

  .nav-link-copy {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .nav-link-copy.dropdown-nav-link {
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 18px;
  }

  .container-7 {
    padding-left: 110px;
    padding-right: 110px;
  }

  .div-block-copy {
    background-image: url('../images/tanren_benner_320.png');
    background-position: 50%;
    background-size: cover;
    height: 350px;
  }

  .div-block-5-copy, .div-block-5-copy-copy {
    height: 320px;
  }

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

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

  .team-slide-wrapper-2 {
    width: 47%;
    margin-left: 0;
    margin-right: 6%;
  }

  .hero-wrapper-3 {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 60px;
  }

  .hero-split-4 {
    align-items: center;
    width: 100%;
    max-width: 80%;
    margin-bottom: 0;
    margin-left: 0;
  }

  .margin-bottom-24px-3 {
    margin-bottom: 24px;
  }

  .shadow-two-3 {
    margin-left: 0;
  }

  .hero-wrapper-4 {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: -40px;
  }

  .heading-2 {
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 20px;
  }

  .container-9-copy, .container-10 {
    max-width: 728px;
  }

  .menu-title {
    text-align: center;
    margin-bottom: 10px;
  }

  .div-block6 {
    background-size: cover;
    height: 180px;
  }

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

  .pricing-grid-2 {
    grid-column-gap: 30px;
  }

  .title-english, .admission-title {
    margin-top: 0;
    font-size: 32px;
  }

  .icon, .icon-2 {
    margin-top: 180px;
  }

  .section-title-content-copy-copy, .section-title-content-copy-copy-copy {
    margin-left: 40px;
    margin-right: 40px;
  }

  .price {
    max-width: 600px;
    margin-left: 40px;
    margin-right: 40px;
  }

  .section-title-content-copy-copy-copy, .section-title-content-copy-copy-copy-copy, .section-title-content-copy-copy-copy-copy-copy {
    margin-left: 40px;
    margin-right: 40px;
  }

  .admission {
    max-width: 600px;
    margin-left: 40px;
    margin-right: 40px;
  }

  .price-title {
    margin-top: 0;
    font-size: 32px;
  }

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

  .hero-wrapper-5 {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: -40px;
  }

  .hero-split-5 {
    align-self: auto;
    align-items: center;
    max-width: 100%;
    margin-bottom: 40px;
    display: flex;
  }

  .margin-bottom-24px-4 {
    line-height: 1.5;
  }

  .image-5, .image-6, .image-7 {
    align-self: center;
  }

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

  .waribiki-a, .waribiki-q {
    max-width: 600px;
    margin-left: 40px;
    margin-right: 40px;
  }

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

  .link-block-2 {
    background-image: url('../images/tanren_benner_320.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-attachment: scroll;
    min-width: 0;
    height: 400px;
    display: block;
  }

  .heading-11 {
    margin-bottom: 10px;
  }

  .heading-12 {
    font-size: 15px;
  }

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

  .team-slide-wrapper-3 {
    width: 47%;
    margin-right: 6%;
  }

  .team-grid {
    grid-column-gap: 40px;
  }

  .team-member-image {
    width: 190px;
    height: 190px;
  }

  .div-block-5-copy-copy-copy-copy {
    background-size: cover;
    height: 180px;
  }

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

  .nav-menu-wrapper {
    background-color: #0000;
  }

  .nav-menu-2 {
    background-color: #fff;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    padding-left: 0;
    display: flex;
  }

  .nav-link-2 {
    padding-left: 5px;
    padding-right: 5px;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: absolute;
  }

  .nav-button-wrapper {
    width: 100%;
    margin-left: 0;
  }

  .menu-button-2 {
    padding: 12px;
  }

  .menu-button-2.w--open {
    color: #fff;
    background-color: #a6b1bf;
  }

  .mainimage {
    width: 100%;
    max-width: none;
  }

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

  .transparent-button-copy-copy.header-button {
    margin-left: 0;
    margin-right: 0;
  }

  .transparent-button-copy.header-button {
    margin-right: 20px;
  }

  .div-block6-copy, .div-block6-sports, .div-block6-copy-copy, .div-block6-copy-copy, .div-block6-copy-copy-copy, .div-block6-copy-copy, .div-block6-copy-copy-copy, .div-block6-copy-copy-copy-copy, .div-block6-chiro, .div-block6-elderly, .div-block6-traffic, .div-block6-chiro-copy, .div-block6-sports-copy, .div-block6-elderly-copy, .div-block6-traffic-copy, .div-block6-traffic-copy-copy, .div-block6-traffic-copy-copy-copy, .div-block6-traffic-copy-copy-copy-copy {
    background-size: cover;
    height: 180px;
  }

  .div-block-8 {
    width: 80%;
    margin-bottom: 24px;
  }

  .sec-detail-copy {
    font-size: 20px;
  }

  .heading-2-copy-copy {
    text-align: center;
    margin-top: 0;
    margin-bottom: 10px;
  }

  .hero-wrapper-3-copy, .hero-wrapper-3-copy-copy {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 60px;
  }

  .hero-wrapper-3-copy-copy {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 20px;
  }

  .hero-split-4-copy, .hero-split-4-copy-copy, .hero-split-4-copy-copy-copy, .hero-split-4-copy-copy-copy-copy, .hero-split-4-copy-copy-copy-copy-copy {
    align-items: center;
    max-width: 100%;
    margin-bottom: 0;
  }

  .hero-split-4-copy-copy-copy-copy-copy-copy {
    align-items: center;
    width: 100%;
    max-width: 80%;
    margin-bottom: 0;
  }

  .hero-wrapper-3-copy-copy-copy {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    max-width: 100%;
    margin-bottom: 20px;
  }

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

  .menu-title-copy, .howtouse-title-copy, .menu-title-copy {
    text-align: center;
    margin-bottom: 10px;
  }

  .menu-title-copy-copy {
    text-align: center;
    margin-bottom: 0;
  }

  .menu-title-copy-copy-copy {
    text-align: center;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 20px;
  }

  .heading-2-copy, .heading-2-copy-copy, .heading-2-copy-copy-copy, .heading-2-copy-copy-copy-copy, .heading-2-copy, .heading-2-copy-copy, .heading-2-copy-copy-copy, .heading-2-copy, .heading-2-copy-copy, .heading-2-copy-copy-copy, .heading-2-copy, .heading-2-copy-copy, .heading-2-copy-copy-copy, .heading-2-copy, .heading-2-copy-copy, .heading-2-copy-copy-copy, .heading-2-copy-copy-copy-copy, .heading-2-copy, .heading-2-copy-copy, .heading-2-copy-copy-copy, .heading-2-copy, .heading-2-copy-copy, .heading-2-copy-copy-copy, .heading-2-copy, .heading-2-copy-copy, .heading-2-copy-copy-copy, .heading-2-copy, .heading-2-copy-copy, .heading-2-copy-copy-copy, .heading-2-copy, .heading-2-copy-copy, .heading-2-copy-copy-copy {
    font-size: 20px;
  }

  .heading-2-copy, .heading-2-copy-copy, .heading-2-copy-copy-copy, .heading-2-copy-copy-copy-copy, .heading-2-copy-copy-copy-copy-copy, .heading-2-copy-copy-copy-copy-copy-copy {
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 20px;
  }

  .hero-split-4-copy {
    align-items: center;
    width: 100%;
    max-width: 80%;
    margin-bottom: 0;
  }

  .heading-2-copy-copy-copy-copy-copy {
    font-size: 20px;
  }

  .hero-split-4-copy-copy {
    align-items: center;
    width: 100%;
    max-width: 80%;
    margin-bottom: 0;
  }

  .hero-split-4-copy, .hero-split-4-copy-copy, .hero-split-4-copy, .hero-split-4-copy-copy, .hero-split-4-copy, .hero-split-4-copy-copy, .hero-split-4-copy, .hero-split-4-copy-copy {
    align-items: center;
    width: 100%;
    max-width: 80%;
    margin-bottom: 0;
    margin-left: 0;
  }

  .hero-split-4-copy-copy, .hero-split-4-copy-copy-copy, .hero-split-4-copy-copy-copy, .hero-split-4-copy-copy-copy, .hero-split-4-copy-copy-copy, .hero-split-4-copy-copy {
    align-items: center;
    width: 100%;
    max-width: 80%;
    margin-bottom: 0;
  }

  .hero-split-4-copy-copy-copy, .hero-split-4-copy-copy-copy-copy {
    align-items: center;
    max-width: 100%;
    margin-bottom: 40px;
  }

  .heading-2-copy-copy-copy-copy-copy-copy-copy, .heading-2-copy-copy-copy-copy-copy-copy-copy-copy, .heading-2-copy-copy-copy-copy-copy-copy-copy-copy-copy, .heading-2-copy-copy-copy-copy-copy-copy-copy-copy-copy-copy, .heading-2-copy-copy-copy-copy-copy-copy-copy-copy-copy-copy-copy, .kidkickboxing {
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 20px;
  }

  .kidkickboxing-copy {
    text-align: left;
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 20px;
  }

  .hero-wrapper-3-copy-copy-copy, .hero-wrapper-3-copy-copy-copy-copy {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 20px;
  }

  .hero-split-4-copy-copy {
    align-items: center;
    max-width: 100%;
    margin-bottom: 40px;
  }
}

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

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 30px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 26px;
  }

  ul, ol {
    padding-left: 20px;
  }

  li {
    font-size: 18px;
  }

  blockquote {
    padding: 60px 40px;
    font-size: 20px;
  }

  .header-section {
    position: relative;
    top: 0;
  }

  .header-menu-wrap {
    flex-direction: column;
    align-items: stretch;
  }

  .banner-title-section {
    margin-left: 0;
    margin-right: 0;
  }

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

  .styleguide-section-title {
    font-size: 32px;
  }

  .list-section {
    padding-top: 20px;
    padding-bottom: 10px;
  }

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

  .button.hero-main-button {
    font-size: 20px;
    line-height: 1.2;
  }

  .transparent-button.header-button {
    padding-left: 40px;
    padding-right: 40px;
  }

  .transparent-button.hero-second-button, .transparent-button.blog-listing-button {
    font-size: 20px;
  }

  .footer-section {
    padding-left: 0;
    padding-right: 0;
  }

  .footer-contact-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .footer-page-link {
    padding-bottom: 10px;
  }

  .header-logo-wrap {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .header-menu-button {
    margin-top: 10px;
  }

  .nav-menu {
    background-color: var(--white);
    width: 100%;
    left: auto;
  }

  .banner-title-text {
    font-size: 40px;
  }

  .instagram-heading, .instagram-link {
    font-size: 30px;
  }

  .hero-slider, .hero-slider-mask {
    height: 100%;
  }

  .hero-slider-item {
    background-position: 60% 65%;
    background-size: 800px;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .hero-slider-item.slider-three {
    height: 100%;
  }

  .hero-title {
    font-size: 20px;
  }

  .right-arrow {
    margin-right: auto;
  }

  .left-arrow {
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 0;
  }

  .about-section {
    margin-top: 0;
    padding-top: 40px;
  }

  .section-title-area.section-left-align {
    margin-bottom: 40px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .section-title {
    margin-top: 0;
    font-size: 30px;
  }

  .section-title-content {
    text-align: center;
  }

  .about-image-wrap {
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
  }

  .about-item {
    text-align: center;
    flex-direction: column;
    align-items: center;
    height: auto;
    padding-top: 20px;
  }

  .about-item-content {
    margin-right: 0;
    padding-bottom: 20px;
    padding-left: 0;
  }

  .about-item-content.about-second-content {
    margin-right: 0;
    padding-top: 20px;
    padding-left: 0;
  }

  .about-item-title {
    color: var(--heading-color);
  }

  .about-point-content {
    text-align: left;
    font-size: 14px;
  }

  .about-main-image-wrap {
    margin-top: 40px;
  }

  .training-type-item {
    margin-bottom: 5px;
    padding: 15px;
  }

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

  .testimonial-item-wrap {
    flex-direction: column;
  }

  .testimonial-image-wrap {
    width: 100%;
  }

  .testimonial-content-wrap {
    border-left-style: none;
    margin-left: 0;
    padding-top: 20px;
    padding-left: 0;
  }

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

  .testimonial-right-arrow {
    display: none;
    position: absolute;
    inset: auto 0% -8% auto;
  }

  .testimonial-left-arrow {
    display: none;
    position: absolute;
    inset: auto auto -8% 0%;
  }

  .facility-title-wrap {
    padding-bottom: 15px;
  }

  .facility-title {
    font-size: 16px;
  }

  .pricing-title {
    font-size: 30px;
  }

  .pricing-price {
    font-size: 24px;
  }

  .about-banner-title-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .story-item {
    height: 390px;
  }

  .story-item.story-second-item {
    height: 320px;
  }

  .video-wrap-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .video-lightbox-link {
    width: 150px;
    min-width: 150px;
    height: 150px;
    min-height: 150px;
  }

  .our-values-title-grid {
    grid-template-columns: 1fr;
  }

  .our-value-title {
    font-size: 22px;
  }

  .counter-value {
    font-size: 50px;
  }

  .counter-title {
    font-size: 20px;
  }

  .contact-form-area {
    padding-top: 20px;
    padding-bottom: 30px;
  }

  .input-field, .input-field::placeholder {
    font-size: 20px;
  }

  .input-field.half-width {
    width: 100%;
  }

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

  .contact-info-item {
    padding: 60px 40px;
  }

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

  .form-input-wrap {
    flex-direction: column;
  }

  .bmi-values-item {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .bmi-title, .bmi-value {
    font-size: 17px;
  }

  .cta-title {
    font-size: 30px;
  }

  .cta-subscribe-form-flex {
    flex-direction: row;
  }

  .cta-form-block {
    width: 100%;
  }

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

  .changelog-content-wrap {
    padding-left: 40px;
    padding-right: 40px;
  }

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

  .license-content-area {
    padding-top: 0;
  }

  .license-website-name {
    font-size: 22px;
  }

  .license-website-link, .image-live-link {
    font-size: 20px;
  }

  .utility-page-form {
    padding: 40px;
  }

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

  .error-section, .blog-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

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

  .blog-date {
    display: block;
  }

  .blog-category-link {
    margin-top: 20px;
    margin-left: 0;
    font-size: 18px;
  }

  .blog-title {
    font-size: 26px;
  }

  .blog-single-title {
    font-size: 32px;
  }

  .global-banner-title {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .global-page-title-area {
    flex-direction: column;
  }

  .banner-value-title {
    margin-top: 0;
    font-size: 40px;
  }

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

  .trainer-content-area {
    padding: 30px;
  }

  .special-content {
    font-size: 17px;
  }

  .trainer-banner-title-area, .trainer-single-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .personal-detail-title {
    font-size: 36px;
  }

  .video-class-section {
    margin-bottom: 60px;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .video-class-area {
    height: 400px;
  }

  .video-class-button-wrap {
    margin-top: 60px;
  }

  .classes-single-title-area {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .class-single-section {
    padding-top: 80px;
  }

  .class-meta-wrap {
    margin-top: 40px;
  }

  .class-detail-area {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .class-video-section {
    padding-bottom: 80px;
  }

  .class-video-wrap {
    height: 350px;
  }

  .class-video-lightbox {
    width: 120px;
    height: 120px;
  }

  .blog-listing-content-wrap {
    padding-right: 40px;
  }

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

  .home-classes-grid {
    grid-column-gap: 16px;
    grid-row-gap: 0px;
    grid-template-columns: 1fr;
  }

  .moving-content {
    width: 240%;
  }

  .moving-content-area {
    flex: none;
    justify-content: space-between;
    width: 49%;
  }

  .moving-text {
    letter-spacing: .2em;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 15px;
  }

  .moving-text.fitness-text {
    color: var(--slate-blue);
  }

  .workout-tab-link {
    padding-left: 20px;
    padding-right: 20px;
  }

  .input-field-white, .input-field-white::placeholder {
    font-size: 20px;
  }

  .input-field-white.half-width {
    width: 100%;
  }

  .accordion-item {
    padding-right: 20px;
  }

  .accordion-toggle {
    font-size: 19px;
  }

  .accordion-question {
    white-space: break-spaces;
    font-size: 20px;
  }

  .faq-content {
    font-size: 17px;
  }

  .hero-title-copy {
    font-size: 30px;
  }

  .hero-title-copy-copy {
    font-size: 50px;
  }

  .about-item-title-copy, .about-item-title-copy-copy, .about-item-title-copy-copy, .about-item-title-copy-copy, .about-item-title-copy-copy, .about-item-title-copy-copy-copy, .about-item-title-copy-copy-copy, .about-item-title-copy-copy-copy, .about-item-title-copy-copy-copy, .about-item-title-copy-copy-copy-copy, .about-item-title-copy-copy-copy-copy, .about-item-title-copy-copy-copy-copy, .about-item-title-copy-copy-copy-copy, .about-item-title-copy-copy-copy-copy-copy, .about-item-title-copy-copy-copy-copy-copy, .about-item-title-copy-copy-copy-copy-copy, .about-item-title-copy-copy-copy-copy-copy {
    color: var(--slate-blue);
  }

  .image-2 {
    margin-left: 0;
    margin-right: 0;
  }

  .image-3, .image-4 {
    max-width: 80%;
  }

  .hero-slider-item-copy {
    background-position: 60% 55%;
    background-size: 650px;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .hero-slider-item-copy.slider-three {
    height: 100%;
  }

  .text-block-2 {
    cursor: none;
  }

  .text-block-6, .text-block-7 {
    font-size: 30px;
  }

  .team-slider {
    padding: 60px 15px;
  }

  .hero-heading-right {
    padding: 20px 30px 60px;
  }

  .hero-split {
    text-align: left;
    align-self: auto;
    align-items: center;
  }

  .button-primary {
    border-color: var(--slate-blue);
  }

  .hero-subscribe-left {
    padding: 60px 15px;
  }

  .text-block-8 {
    margin-bottom: 10px;
  }

  .container-5 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-heading-right-2 {
    padding: 0 15px;
  }

  .hero-split-3 {
    align-items: center;
  }

  .button-primary-2 {
    border-color: var(--slate-blue);
    background-color: var(--slate-blue);
  }

  .button-primary-2:hover {
    color: var(--slate-blue);
  }

  .instagram-wrap-2 {
    background-image: url('../images/tanrenimage0404.jpg');
  }

  .instagram-heading-2 {
    align-items: flex-start;
    font-size: 25px;
    display: block;
  }

  .instagram-link-2 {
    font-size: 25px;
  }

  .container-5-copy {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-title-copy {
    margin-top: 0;
    font-size: 30px;
  }

  .title {
    font-size: 16px;
  }

  .section-title-content-copy {
    text-align: center;
  }

  .container-7 {
    padding-left: 60px;
    padding-right: 60px;
  }

  .div-block-copy {
    background-image: url('../images/tanren_benner_320.png');
    background-size: cover;
    height: 250px;
  }

  .div-block-4 {
    margin-left: 20px;
    margin-right: 20px;
  }

  .div-block-5-copy, .div-block-5-copy-copy {
    height: 237px;
  }

  .section {
    padding-top: 20px;
  }

  .team-slider-2, .hero-heading-left {
    padding: 60px 15px;
  }

  .hero-split-4 {
    width: 100%;
    margin-bottom: 0;
  }

  .margin-bottom-24px-3 {
    margin-bottom: 24px;
  }

  .hero-heading-right-3 {
    padding: 60px 15px;
  }

  .heading-2 {
    font-size: 20px;
  }

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

  .menu-title {
    margin-bottom: 10px;
  }

  .div-block6 {
    height: 120px;
  }

  .pricing-overview {
    padding: 60px 15px;
  }

  .text-block-9 {
    font-size: 15px;
  }

  .title-english {
    margin-top: 0;
    font-size: 30px;
  }

  .section-title-area-copy.section-left-align {
    margin-bottom: 40px;
    padding-top: 40px;
  }

  .admission-title {
    margin-top: 0;
    font-size: 30px;
  }

  .icon, .icon-2 {
    margin-top: 120px;
  }

  .section-title-content-copy-copy {
    text-align: center;
    text-align: center;
  }

  .price2, .section-title-content-copy-copy-copy {
    text-align: center;
  }

  .price {
    text-align: left;
    max-width: 500px;
  }

  .section-title-content-copy-copy-copy, .section-title-content-copy-copy-copy-copy, .section-title-content-copy-copy-copy-copy-copy {
    text-align: center;
  }

  .admission {
    text-align: left;
    max-width: 500px;
  }

  .price-title {
    margin-top: 0;
    font-size: 30px;
  }

  .hero-heading-right-4 {
    padding: 60px 15px;
  }

  .margin-bottom-24px-4 {
    margin-top: 20px;
    line-height: 1.5;
  }

  .bold-text-3 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: inline;
  }

  .image-5, .image-6, .image-7 {
    align-self: center;
    margin-bottom: 10px;
  }

  .hero-stack-copy-copy {
    padding: 60px 15px;
  }

  .tanrenq4, .tanrenq3, .tanrenq5, .tanrenq6, .tanrenq2, .tanrenq1 {
    width: 60%;
  }

  .waribiki-a, .waribiki-q {
    text-align: left;
    max-width: 500px;
  }

  .hero-stack-copy-copy-copy, .hero-stack-copy-copy-copy-copy, .hero-stack-copy-copy-copy-copy {
    padding: 60px 15px;
  }

  .qnamenu {
    padding: 20px 15px;
  }

  .q1 {
    padding: 10px 15px;
  }

  .q1title {
    padding: 60px 15px;
  }

  .q2section.section-left-align {
    margin-bottom: 40px;
    padding-top: 40px;
  }

  .q1main {
    padding: 10px 15px;
  }

  ._1section-copy.section-left-align, .q1section.section-left-align, .q3section.section-left-align, .q4section.section-left-align, .q5section.section-left-align, .q6section.section-left-align {
    margin-bottom: 40px;
    padding-top: 40px;
  }

  .button-12-copy {
    font-size: 20px;
    font-weight: 400;
  }

  .heading-11 {
    text-align: left;
    margin-bottom: 20px;
  }

  .heading-12 {
    font-size: 15px;
  }

  .team-slider-3, .team-circles {
    padding: 60px 15px;
  }

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

  .hero-heading-right-4-copy {
    padding: 60px 15px;
  }

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

  .div-block-5-copy-copy-copy-copy {
    height: 120px;
  }

  .features-table {
    padding: 60px 15px;
  }

  .navbar-brand {
    padding-left: 0;
  }

  .nav-menu-2 {
    flex-direction: column;
    padding-bottom: 30px;
    padding-left: 0;
  }

  .nav-link-2 {
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .nav-dropdown {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .nav-dropdown-toggle {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-dropdown-list.shadow-three {
    box-shadow: 0 8px 50px #0000000d;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: relative;
  }

  .nav-dropdown-list.shadow-three.mobile-shadow-hide {
    box-shadow: none;
  }

  .mobile-margin-top-10 {
    margin-top: 10px;
  }

  .mainimage {
    max-width: 100%;
  }

  .hero-stack-copy-copy-copy-copy-copy {
    padding: 60px 15px;
  }

  .sec-detail-copy, .sec-detail-copy-copy {
    text-align: center;
  }

  .transparent-button-copy.hero-second-button, .transparent-button-copy.blog-listing-button {
    font-size: 20px;
  }

  .transparent-button-copy.hero-second-button, .transparent-button-copy.blog-listing-button {
    font-size: 20px;
  }

  .transparent-button-copy-copy.header-button {
    margin-right: 0;
    padding-left: 35px;
    padding-right: 35px;
  }

  .transparent-button-copy-copy.hero-second-button, .transparent-button-copy-copy.blog-listing-button {
    font-size: 20px;
  }

  .transparent-button-copy.header-button {
    padding-left: 40px;
    padding-right: 40px;
  }

  .transparent-button-copy.hero-second-button, .transparent-button-copy.blog-listing-button {
    font-size: 20px;
  }

  .div-block6-copy, .div-block6-sports, .div-block6-copy-copy, .div-block6-copy-copy, .div-block6-copy-copy-copy, .div-block6-copy-copy, .div-block6-copy-copy-copy, .div-block6-copy-copy-copy-copy, .div-block6-chiro, .div-block6-elderly, .div-block6-traffic, .div-block6-chiro-copy, .div-block6-sports-copy, .div-block6-elderly-copy, .div-block6-traffic-copy, .div-block6-traffic-copy-copy, .div-block6-traffic-copy-copy-copy, .div-block6-traffic-copy-copy-copy-copy {
    height: 120px;
  }

  .div-block-8 {
    width: 100%;
    margin-bottom: 24px;
  }

  .sec-detail2, .sec-detail-2 {
    text-align: center;
  }

  .sec-detail-copy {
    text-align: center;
    font-size: 20px;
  }

  .section-title-area-copy-copy.section-left-align {
    margin-bottom: 40px;
  }

  .heading-2-copy-copy {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 14px;
  }

  .hero-wrapper-3-copy-copy {
    margin-bottom: 20px;
  }

  .hero-split-4-copy, .hero-split-4-copy-copy, .hero-split-4-copy-copy-copy, .hero-split-4-copy-copy-copy-copy, .hero-split-4-copy-copy-copy-copy-copy {
    margin-bottom: 0;
  }

  .hero-split-4-copy-copy-copy-copy-copy-copy {
    width: 100%;
    margin-bottom: 0;
  }

  .hero-wrapper-3-copy-copy-copy {
    margin-bottom: 20px;
  }

  .container-18, .section-title-area-copy-copy.section-left-align {
    margin-bottom: 40px;
  }

  .menu-title-copy, .howtouse-title-copy, .menu-title-copy {
    margin-bottom: 10px;
  }

  .menu-title-copy-copy {
    margin-bottom: 0;
    font-size: 20px;
  }

  .menu-title-copy-copy-copy {
    margin-bottom: 10px;
  }

  .heading-2-copy, .heading-2-copy-copy, .heading-2-copy-copy-copy, .heading-2-copy-copy-copy-copy, .heading-2-copy, .heading-2-copy-copy, .heading-2-copy-copy-copy, .heading-2-copy, .heading-2-copy-copy, .heading-2-copy-copy-copy, .heading-2-copy, .heading-2-copy-copy, .heading-2-copy-copy-copy, .heading-2-copy, .heading-2-copy-copy, .heading-2-copy-copy-copy, .heading-2-copy-copy-copy-copy, .heading-2-copy, .heading-2-copy-copy, .heading-2-copy-copy-copy, .heading-2-copy, .heading-2-copy-copy, .heading-2-copy-copy-copy, .heading-2-copy, .heading-2-copy-copy, .heading-2-copy-copy-copy, .heading-2-copy, .heading-2-copy-copy, .heading-2-copy-copy-copy, .heading-2-copy, .heading-2-copy-copy, .heading-2-copy-copy-copy, .heading-2-copy, .heading-2-copy-copy, .heading-2-copy-copy-copy, .heading-2-copy-copy-copy-copy, .heading-2-copy-copy-copy-copy-copy, .heading-2-copy-copy-copy-copy-copy-copy {
    font-size: 20px;
  }

  .hero-split-4-copy {
    width: 100%;
    margin-bottom: 0;
  }

  .heading-2-copy-copy-copy-copy-copy {
    font-size: 20px;
  }

  .hero-split-4-copy-copy, .hero-split-4-copy, .hero-split-4-copy, .hero-split-4-copy, .hero-split-4-copy, .hero-split-4-copy, .hero-split-4-copy, .hero-split-4-copy-copy, .hero-split-4-copy, .hero-split-4-copy-copy, .hero-split-4-copy, .hero-split-4-copy-copy, .hero-split-4-copy, .hero-split-4-copy-copy, .hero-split-4-copy-copy, .hero-split-4-copy-copy-copy, .hero-split-4-copy-copy-copy, .hero-split-4-copy-copy-copy, .hero-split-4-copy-copy-copy, .hero-split-4-copy-copy {
    width: 100%;
    margin-bottom: 0;
  }

  .heading-2-copy-copy-copy-copy-copy-copy-copy, .heading-2-copy-copy-copy-copy-copy-copy-copy-copy, .heading-2-copy-copy-copy-copy-copy-copy-copy-copy-copy, .heading-2-copy-copy-copy-copy-copy-copy-copy-copy-copy-copy, .heading-2-copy-copy-copy-copy-copy-copy-copy-copy-copy-copy-copy, .kidkickboxing, .kidkickboxing-copy {
    font-size: 20px;
  }

  .hero-split-4-copy-copy {
    margin-bottom: 10px;
  }
}

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

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 24px;
  }

  h5 {
    font-size: 22px;
  }

  h6 {
    font-size: 20px;
  }

  p, li {
    font-size: 17px;
  }

  blockquote {
    border-width: 10px;
    padding: 40px 20px;
    font-size: 18px;
  }

  .header-section {
    position: relative;
    top: 0;
  }

  .header-content-wrap {
    margin-left: 20px;
    margin-right: 20px;
  }

  .nav-link {
    flex: 0 auto;
    align-self: auto;
    width: 85%;
    margin-left: 20px;
    margin-right: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    position: relative;
  }

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

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

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

  .button {
    font-size: 20px;
  }

  .button.hero-main-button {
    padding-left: 33px;
    padding-right: 33px;
  }

  .button-large, .black-button, .black-button-large, .transparent-button {
    font-size: 20px;
  }

  .transparent-button.header-button {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
    padding: 5px 35px;
    font-size: 12px;
  }

  .transparent-button.blog-listing-button {
    font-size: 18px;
  }

  .transparent-button-large {
    font-size: 20px;
  }

  .footer-section {
    margin-left: 0;
    margin-right: 0;
  }

  .footer-page-link {
    font-size: 18px;
  }

  .subscribe-form-input-wrapper {
    flex: 1;
    align-self: stretch;
  }

  .subscribe-form-input {
    width: 100%;
  }

  .bottom-to-top-wrap {
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
  }

  .bottom-to-top-link {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-border-wrap {
    margin-bottom: 20px;
    margin-right: 0;
    padding-bottom: 0;
  }

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

  .banner-title-text {
    font-size: 30px;
  }

  .instagram-wrap {
    margin-left: 0;
    margin-right: 0;
  }

  .instgram-link-wrap {
    flex-direction: column;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .instagram-heading, .instagram-link {
    font-size: 28px;
  }

  .hero-section {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-slider-item {
    background-position: 60% 60%;
    background-repeat: no-repeat;
    background-attachment: scroll;
    height: 100%;
    padding: 80px 10px;
  }

  .hero-slider-item.slider-three {
    height: 100%;
  }

  .hero-slider-content {
    max-width: 100%;
  }

  .hero-title {
    font-size: 25px;
  }

  .right-arrow {
    margin-right: 0;
  }

  .left-arrow {
    align-items: center;
    margin-left: 0;
  }

  .about-section {
    margin-top: 0;
    padding-top: 30px;
    padding-bottom: 40px;
  }

  .section-title-area.section-left-align {
    margin-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-title {
    margin-top: 0;
    font-size: 35px;
    line-height: 1;
  }

  .section-title.white-section-title {
    font-size: 28px;
  }

  .section-title-content {
    text-align: left;
  }

  .about-item {
    padding-top: 20px;
  }

  .about-item-content, .about-item-content.about-second-content {
    margin-right: 0;
  }

  .about-item-title {
    color: var(--heading-color);
    font-size: 20px;
  }

  .about-point-content {
    text-align: left;
    font-size: 14px;
  }

  .white-button, .training-type-title {
    font-size: 20px;
  }

  .testimonial-section {
    padding-bottom: 40px;
  }

  .facility-title-wrap {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .facility-title {
    font-size: 14px;
  }

  .pricing-title {
    font-size: 26px;
  }

  .pricing-offer {
    font-size: 17px;
  }

  .about-banner-title-section {
    margin-left: 0;
    margin-right: 0;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .about-intro-grid {
    grid-template-columns: 1fr;
    display: block;
  }

  .about-intro-image {
    margin-top: 20px;
  }

  .story-item {
    padding-left: 20px;
    padding-right: 20px;
  }

  .story-item.story-third-item {
    height: 300px;
  }

  .story-title {
    margin-top: 15px;
    font-size: 26px;
  }

  .our-values-section {
    padding-top: 80px;
  }

  .our-value-item {
    padding: 30px 20px 20px;
  }

  .our-value-content {
    font-size: 18px;
  }

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

  .join-club-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .contact-form-area {
    padding-left: 20px;
    padding-right: 20px;
  }

  .open-hours-list {
    flex-direction: column;
    align-items: flex-start;
  }

  .open-hours-day {
    margin-bottom: 0;
  }

  .open-hours-time {
    padding-left: 0;
    font-size: 18px;
  }

  .input-field, .input-field::placeholder, .input-field.text-area, .input-field.text-area::placeholder {
    font-size: 18px;
  }

  .contact-form-title {
    font-size: 24px;
  }

  .contact-form-subtitle {
    font-size: 17px;
  }

  .contact-info-section {
    margin-bottom: 80px;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .contact-info-title {
    margin-bottom: 0;
    font-size: 24px;
  }

  .bmi-values-list {
    flex-direction: column;
  }

  .bmi-title, .bmi-value, .bmi-status.underweight {
    font-size: 15px;
  }

  .cta-title {
    font-size: 26px;
  }

  .cta-subscribe-form-wrapper {
    text-align: center;
    flex: 1;
    align-self: stretch;
  }

  .cta-subscribe-form-input {
    text-align: center;
    width: 100%;
  }

  .cta-form-block {
    flex-direction: column;
    padding-left: 0;
  }

  .changelog-section {
    padding-bottom: 80px;
  }

  .changelog-content-wrap {
    padding: 40px 20px;
  }

  .changelog-version {
    font-size: 27px;
  }

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

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

  .password-content {
    font-size: 17px;
  }

  .protected-title {
    font-size: 31px;
  }

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

  .schedule-day-name {
    font-size: 16px;
  }

  .schedule-workout-item, .schedule-workout-item.workout-timing, .schedule-workout-item.empty-workout-item {
    padding-top: 20px;
    padding-bottom: 12px;
  }

  .schedule-time {
    font-size: 16px;
  }

  .schedule-workout-name {
    font-size: 18px;
  }

  .workout-time, .workout-trainer-name, .working-time-text {
    font-size: 16px;
  }

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

  .blog-title {
    font-size: 22px;
  }

  .blog-single-section {
    padding-bottom: 40px;
  }

  .blog-single-title {
    font-size: 25px;
  }

  .blog-single-author-section {
    margin-bottom: 80px;
  }

  .blog-single-author-name {
    font-size: 24px;
  }

  .blog-author-content {
    font-size: 18px;
  }

  .global-page-section {
    padding-top: 60px;
  }

  .global-banner-title {
    margin-left: 0;
    margin-right: 0;
  }

  .banner-value-title {
    font-size: 30px;
  }

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

  .trainer-banner-title-area {
    margin-left: 0;
    margin-right: 0;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .trainer-single-section {
    padding-top: 70px;
  }

  .trainer-single-name {
    font-size: 28px;
  }

  .trainer-single-designation {
    font-size: 18px;
  }

  .trainer-content-link-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .trainer-contact-link, .trainer-contact-text {
    padding-left: 0;
  }

  .personal-detail-title {
    font-size: 30px;
  }

  .trainer-collection-item {
    padding-left: 0;
    padding-right: 0;
  }

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

  .video-class-area {
    height: 330px;
  }

  .video-class-button-wrap {
    margin-top: 40px;
  }

  .classes-section {
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
    padding-top: 80px;
  }

  .classes-single-title-area {
    margin-left: 0;
    margin-right: 0;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .class-single-section {
    padding-top: 60px;
  }

  .class-detail-wrap {
    padding-top: 20px;
    padding-bottom: 30px;
    padding-left: 20px;
  }

  .blog-listing-content-wrap {
    padding-right: 20px;
  }

  .menu-button {
    background-color: var(--midnight-blue);
    -webkit-text-fill-color: inherit;
    background-clip: border-box;
  }

  .table-tabs-menu {
    text-align: center;
    display: inline;
  }

  .moving-content {
    width: 370%;
  }

  .moving-content-area {
    flex-direction: row;
    display: flex;
  }

  .moving-text {
    text-align: center;
    font-size: 14px;
  }

  .workout-tab-link {
    text-align: center;
  }

  .accordion-item {
    padding-right: 15px;
    overflow: visible;
  }

  .accordion-toggle.w--open {
    height: 80px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .accordion-icon {
    margin-right: 0;
  }

  .accordion-question {
    font-size: 18px;
  }

  .faq-content {
    font-size: 16px;
  }

  .hero-title-copy {
    font-size: 25px;
  }

  .hero-title-copy-copy {
    font-size: 35px;
  }

  .about-item-title-copy, .about-item-title-copy-copy, .about-item-title-copy-copy, .about-item-title-copy-copy, .about-item-title-copy-copy, .about-item-title-copy-copy-copy, .about-item-title-copy-copy-copy, .about-item-title-copy-copy-copy, .about-item-title-copy-copy-copy, .about-item-title-copy-copy-copy-copy, .about-item-title-copy-copy-copy-copy, .about-item-title-copy-copy-copy-copy, .about-item-title-copy-copy-copy-copy, .about-item-title-copy-copy-copy-copy-copy, .about-item-title-copy-copy-copy-copy-copy, .about-item-title-copy-copy-copy-copy-copy {
    color: var(--slate-blue);
    font-size: 20px;
  }

  .about-item-title-copy-copy-copy-copy-copy {
    color: var(--slate-blue);
    font-size: 12px;
  }

  .image-3, .image-4 {
    max-width: 50%;
  }

  .hero-slider-item-copy {
    background-position: 60% 60%;
    background-repeat: no-repeat;
    background-attachment: scroll;
    height: 100%;
    padding: 80px 10px;
  }

  .hero-slider-item-copy {
    background-position: 50% 60%;
    background-repeat: no-repeat;
    background-size: 550px;
    background-attachment: scroll;
    height: 100%;
    padding: 80px 10px;
  }

  .hero-slider-item-copy.slider-three {
    height: 100%;
  }

  .text-block-2 {
    font-size: 30px;
  }

  .text-block-5 {
    font-size: 14px;
  }

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

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

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

  .hero-heading-right {
    padding-left: 30px;
    padding-right: 30px;
  }

  .hero-split {
    align-items: center;
  }

  .button-primary {
    border-color: var(--slate-blue);
  }

  .heading {
    font-size: 30px;
  }

  .hero-form {
    align-self: stretch;
    margin-bottom: 15px;
  }

  .hero-form-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-form-input {
    width: 100%;
    height: 48px;
    margin-bottom: 10px;
  }

  .container-5 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .hero-heading-right-2 {
    padding-top: 20px;
    padding-bottom: 20px;
  }

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

  .margin-bottom-24px-2 {
    font-size: 14px;
  }

  .button-primary-2 {
    font-size: 15px;
  }

  .instagram-wrap-2 {
    background-image: url('../images/tanrenimage0404.jpg');
    margin-left: 0;
    margin-right: 0;
  }

  .instagram-heading-2, .instagram-link-2 {
    font-size: 28px;
  }

  .container-5-copy {
    padding-left: 10px;
    padding-right: 10px;
  }

  .section-title-copy {
    margin-top: 0;
    font-size: 35px;
    line-height: 1;
  }

  .section-title-copy.white-section-title {
    font-size: 28px;
  }

  .button-primary-2-copy {
    font-size: 15px;
  }

  .section-title-content-copy {
    text-align: center;
    font-size: 14px;
  }

  .container-7 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .div-block-copy {
    background-image: url('../images/tanren_benner_320.png');
    background-size: cover;
    height: 200px;
  }

  .div-block-5-copy-copy {
    background-image: url('../images/tanren_main_500.png');
    width: 100%;
    height: 100%;
    min-height: 0%;
    max-height: 0%;
    padding-bottom: 384px;
    overflow: visible;
  }

  .container-copy {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section {
    padding-top: 10px;
  }

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

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

  .team-slide-wrapper-2 {
    width: 100%;
    margin-left: 0;
    margin-right: 0%;
  }

  .team-block-2 {
    padding-bottom: 0;
  }

  .team-member-text-2 {
    font-size: 14px;
  }

  .team-slider-nav-2 {
    line-height: 2;
  }

  .hero-wrapper-3 {
    margin-bottom: 40px;
  }

  .hero-split-4 {
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
  }

  .margin-bottom-24px-3 {
    margin-bottom: 24px;
    font-size: 14px;
  }

  .heading-2 {
    font-size: 14px;
  }

  .container-9-copy {
    max-width: none;
  }

  .sec-detail {
    text-align: center;
    font-size: 14px;
  }

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

  .menu-title {
    margin-bottom: 10px;
  }

  .div-block6 {
    background-image: url('../images/maintemain500.png');
    height: 260px;
  }

  .button-12 {
    margin-top: 20px;
    font-size: 12px;
  }

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

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

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

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

  .text-block-9 {
    padding-top: 120px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .title-english {
    margin-top: 0;
    font-size: 35px;
    line-height: 1;
  }

  .title-english.white-section-title {
    font-size: 28px;
  }

  .section-title-area-copy.section-left-align {
    margin-bottom: 40px;
    padding-top: 40px;
    padding-left: 0;
    padding-right: 0;
  }

  .admission-title {
    margin-top: 0;
    font-size: 35px;
    line-height: 1;
  }

  .admission-title.white-section-title {
    font-size: 28px;
  }

  .team-slider-nav-2-copy {
    line-height: 2;
  }

  .icon {
    width: 50%;
    max-width: none;
    height: 10%;
    max-height: none;
    margin-top: 60px;
    margin-right: 10px;
  }

  .icon-2 {
    margin-top: 60px;
    margin-left: 10px;
  }

  .section-title-content-copy-copy {
    text-align: left;
    text-align: center;
    margin-left: 10px;
    margin-right: 10px;
    font-size: 14px;
  }

  .price2 {
    text-align: center;
    font-size: 18px;
  }

  .section-title-content-copy-copy-copy, .price, .section-title-content-copy-copy-copy, .section-title-content-copy-copy-copy-copy, .section-title-content-copy-copy-copy-copy-copy, .admission {
    text-align: left;
    margin-left: 10px;
    margin-right: 10px;
    font-size: 14px;
  }

  .price-title {
    margin-top: 0;
    font-size: 35px;
    line-height: 1;
  }

  .price-title.white-section-title {
    font-size: 28px;
  }

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

  .margin-bottom-24px-4 {
    margin-top: 0;
    font-size: 14px;
  }

  .image-5, .image-6, .image-7 {
    align-self: center;
    max-width: 30%;
  }

  .button-12-copy, .button-12-copy-copy {
    margin-top: 20px;
    font-size: 12px;
  }

  .button-12-copy-copy {
    margin-top: 20px;
    margin-left: 20px;
    margin-right: 20px;
    font-size: 12px;
  }

  .button-12-copy-copy-copy {
    margin-top: 20px;
    font-size: 18px;
  }

  .tanrenq4 {
    letter-spacing: 0;
    width: 80%;
    font-size: 14px;
  }

  .button-primary-2-copy-copy-copy {
    letter-spacing: 0;
    font-size: 14px;
  }

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

  .button-primary-2-copy-copy-copy-copy {
    letter-spacing: 0;
    text-indent: 0;
    font-size: 14px;
  }

  .heading-9 {
    font-size: 28px;
    line-height: 35px;
  }

  .tanrenq3, .tanrenq5, .tanrenq6 {
    letter-spacing: 0;
    width: 80%;
    font-size: 14px;
  }

  .tanrenq2 {
    letter-spacing: 0;
    text-indent: 0;
    width: 80%;
    font-size: 14px;
  }

  .tanrenq1 {
    letter-spacing: 0;
    width: 80%;
    font-size: 14px;
  }

  .waribiki-a {
    text-align: left;
    margin-left: 10px;
    margin-right: 10px;
    font-size: 14px;
  }

  .waribiki-q {
    text-align: left;
    margin-left: 10px;
    margin-right: 10px;
    font-size: 16px;
  }

  .qnamenu {
    padding-top: 20px;
    padding-bottom: 20px;
  }

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

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

  .heading-10 {
    font-size: 28px;
    line-height: 35px;
  }

  .heading-6-copy {
    font-size: 23px;
  }

  .hero-image-2-copy.shadow-two, .hero-image-2-copy-copy.shadow-two {
    max-width: 100%;
  }

  .q2section.section-left-align {
    margin-bottom: 40px;
    padding-top: 40px;
    padding-left: 0;
    padding-right: 0;
  }

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

  ._1section-copy.section-left-align, .q1section.section-left-align, .q3section.section-left-align, .q4section.section-left-align, .q5section.section-left-align, .q6section.section-left-align {
    margin-bottom: 40px;
    padding-top: 40px;
    padding-left: 0;
    padding-right: 0;
  }

  .button-12-copy {
    margin-top: 10px;
    font-size: 16px;
  }

  .link-block-2 {
    background-repeat: no-repeat;
    background-size: contain;
    background-attachment: scroll;
    height: 230px;
  }

  .heading-11 {
    margin-bottom: 10px;
  }

  .heading-12 {
    font-size: 12px;
  }

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

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

  .team-slide-wrapper-3 {
    width: 100%;
    margin-right: 0%;
  }

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

  .trainers-section-copy {
    padding-top: 40px;
    padding-bottom: 10px;
  }

  .div-block-5-copy-copy-copy-copy {
    background-image: url('../images/gymmain500.png');
    height: 260px;
  }

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

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

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

  .comparison-title {
    margin-left: 10px;
  }

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

  .comparison-negative {
    background-position: 0 5px;
    background-size: 14px;
    margin-left: 10px;
    padding-left: 20px;
  }

  .comparison-positive {
    background-position: 0 4px;
    background-size: 16px;
    margin-left: 10px;
    padding-left: 20px;
  }

  .nav-menu-2 {
    flex-direction: column;
  }

  .nav-button-wrapper {
    width: auto;
  }

  .container-17 {
    max-width: 100%;
  }

  .mv {
    background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
    background-position: 0 0;
    background-size: auto;
    position: static;
  }

  .div-block-6 {
    background-image: url('../images/tanren_main_500.png');
    background-position: 0 0;
    background-size: cover;
  }

  .mainimage {
    background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
    background-position: 0 0;
    background-size: auto;
    max-width: 100%;
    position: static;
  }

  .div-block6-copy {
    background-image: url('../images/traffic-accident-treatment.png');
    background-position: 50%;
    background-repeat: no-repeat;
    border-radius: 0;
    height: 72px;
  }

  .container-copy-copy {
    padding-left: 20px;
    padding-right: 20px;
  }

  .sec-detail-copy, .sec-detail-copy-copy {
    text-align: center;
    font-size: 14px;
  }

  .transparent-button-copy.header-button {
    margin-bottom: 5px;
    margin-right: 0;
    padding: 5px 41px;
    font-size: 12px;
  }

  .transparent-button-copy-copy {
    font-size: 20px;
  }

  .transparent-button-copy-copy.header-button {
    margin-top: 10px;
    margin-bottom: 40px;
    margin-right: 0;
    padding: 5px 35px;
    font-size: 12px;
  }

  .transparent-button-copy-copy.blog-listing-button {
    font-size: 18px;
  }

  .transparent-button-copy {
    font-size: 20px;
  }

  .transparent-button-copy.header-button {
    margin: 0;
    padding: 5px 41px;
    font-size: 12px;
  }

  .transparent-button-copy.blog-listing-button {
    font-size: 18px;
  }

  .div-block6-copy, .div-block6-sports, .div-block6-copy-copy, .div-block6-copy-copy, .div-block6-copy-copy-copy {
    background-image: url('../images/maintemain500.png');
    height: 260px;
  }

  .div-block6-copy-copy, .div-block6-copy-copy-copy, .div-block6-copy-copy-copy-copy {
    background-image: url('../images/traffic-accident-treatment.png');
    background-position: 50%;
    background-repeat: no-repeat;
    border-radius: 0;
    height: 72px;
  }

  .div-block6-chiro, .div-block6-elderly {
    background-image: url('../images/maintemain500.png');
    height: 260px;
  }

  .div-block6-traffic {
    background-image: url('../images/traffic-accident-treatment.png');
    background-position: 50%;
    background-repeat: no-repeat;
    border-radius: 0;
    height: 72px;
  }

  .div-block6-chiro-copy {
    background-image: url('../images/chiro500.png');
    height: 260px;
  }

  .div-block6-sports-copy {
    background-image: url('../images/sports500.png');
    height: 260px;
  }

  .div-block6-elderly-copy {
    background-image: url('../images/elderly500.png');
    height: 260px;
  }

  .div-block6-traffic-copy {
    background-image: url('../images/traffic500.png');
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    border-radius: 0;
    height: 72px;
  }

  .div-block6-traffic-copy-copy, .div-block6-traffic-copy-copy-copy, .div-block6-traffic-copy-copy-copy-copy {
    background-image: url('../images/traffic500.png');
    height: 260px;
  }

  .div-block-8 {
    width: 100%;
    margin-bottom: 24px;
  }

  .sec-detail2, .sec-detail-2 {
    text-align: center;
    font-size: 14px;
  }

  .sec-detail-copy {
    text-align: center;
    font-size: 18px;
  }

  .heading-2-copy-copy {
    background-color: var(--paragraph-color);
    margin-top: 0;
    margin-bottom: 10px;
    padding-right: 10px;
    font-size: 14px;
  }

  .hero-wrapper-3-copy {
    margin-bottom: 40px;
  }

  .hero-wrapper-3-copy-copy {
    margin-bottom: 20px;
  }

  .hero-split-4-copy, .hero-split-4-copy-copy, .hero-split-4-copy-copy-copy, .hero-split-4-copy-copy-copy-copy, .hero-split-4-copy-copy-copy-copy-copy {
    margin-bottom: 0;
  }

  .hero-split-4-copy-copy-copy-copy-copy-copy {
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
  }

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

  .section-title-area-copy-copy.section-left-align {
    margin-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .menu-title-copy, .howtouse-title-copy, .menu-title-copy {
    margin-bottom: 10px;
  }

  .menu-title-copy-copy {
    margin-bottom: 0;
    font-size: 14px;
  }

  .menu-title-copy-copy-copy {
    margin-bottom: 10px;
    font-size: 14px;
  }

  .heading-2-copy, .heading-2-copy-copy, .heading-2-copy-copy-copy, .heading-2-copy-copy-copy-copy, .heading-2-copy, .heading-2-copy-copy, .heading-2-copy-copy-copy, .heading-2-copy, .heading-2-copy-copy, .heading-2-copy-copy-copy, .heading-2-copy, .heading-2-copy-copy, .heading-2-copy-copy-copy, .heading-2-copy, .heading-2-copy-copy, .heading-2-copy-copy-copy, .heading-2-copy-copy-copy-copy, .heading-2-copy, .heading-2-copy-copy, .heading-2-copy-copy-copy, .heading-2-copy, .heading-2-copy-copy, .heading-2-copy-copy-copy, .heading-2-copy, .heading-2-copy-copy, .heading-2-copy-copy-copy, .heading-2-copy, .heading-2-copy-copy, .heading-2-copy-copy-copy, .heading-2-copy, .heading-2-copy-copy, .heading-2-copy-copy-copy, .heading-2-copy, .heading-2-copy-copy, .heading-2-copy-copy-copy, .heading-2-copy-copy-copy-copy, .heading-2-copy-copy-copy-copy-copy, .heading-2-copy-copy-copy-copy-copy-copy {
    font-size: 14px;
  }

  .hero-split-4-copy {
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
  }

  .heading-2-copy-copy-copy-copy-copy {
    font-size: 14px;
  }

  .hero-split-4-copy-copy, .hero-split-4-copy, .hero-split-4-copy, .hero-split-4-copy, .hero-split-4-copy, .hero-split-4-copy, .hero-split-4-copy, .hero-split-4-copy-copy, .hero-split-4-copy, .hero-split-4-copy-copy, .hero-split-4-copy, .hero-split-4-copy-copy, .hero-split-4-copy, .hero-split-4-copy-copy, .hero-split-4-copy-copy, .hero-split-4-copy-copy-copy, .hero-split-4-copy-copy-copy, .hero-split-4-copy-copy-copy, .hero-split-4-copy-copy-copy, .hero-split-4-copy-copy {
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
  }

  .hero-split-4-copy-copy-copy, .hero-split-4-copy-copy-copy-copy {
    margin-bottom: 0;
  }

  .heading-2-copy-copy-copy-copy-copy-copy-copy, .heading-2-copy-copy-copy-copy-copy-copy-copy-copy, .heading-2-copy-copy-copy-copy-copy-copy-copy-copy-copy, .heading-2-copy-copy-copy-copy-copy-copy-copy-copy-copy-copy, .heading-2-copy-copy-copy-copy-copy-copy-copy-copy-copy-copy-copy, .kidkickboxing, .kidkickboxing-copy {
    font-size: 14px;
  }

  .hero-wrapper-3-copy-copy-copy, .hero-wrapper-3-copy-copy-copy-copy {
    margin-bottom: 10px;
  }

  .hero-split-4-copy-copy {
    margin-bottom: 20px;
  }
}

#w-node-_1e7f1a24-66bd-bfae-71c8-5bd7eccc0ca7-84ee8197, #w-node-_59efc9c0-da80-2b29-5af5-46c1d1dd5d0b-84ee81f0, #w-node-_8f32eab5-adcd-8c82-47dd-976f34a1ee98-84ee81f0, #w-node-_53c2bc4c-0efc-ed1b-e659-5c8d82474b80-84ee81f2, #w-node-d97f1332-fafc-011e-0c74-d27fa86df82f-84ee81f2, #w-node-_990390cb-87a1-6da8-ad34-1945238866c0-84ee81f2, #w-node-c0b3c614-817b-76c1-26f8-aebfb554b6c5-84ee81f2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_560bb0f0-91b7-2765-4eb9-af92a3e3e591-84ee81f2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-b2808a25-7de2-4a9a-6e20-9426029741c5-84ee81f6, #w-node-b2808a25-7de2-4a9a-6e20-9426029741d0-84ee81f6, #w-node-b2808a25-7de2-4a9a-6e20-9426029741da-84ee81f6, #w-node-b2808a25-7de2-4a9a-6e20-9426029741e4-84ee81f6, #w-node-b2808a25-7de2-4a9a-6e20-9426029741ee-84ee81f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (min-width: 1920px) {
  #w-node-_59efc9c0-da80-2b29-5af5-46c1d1dd5d0b-84ee81f0, #w-node-_8f32eab5-adcd-8c82-47dd-976f34a1ee98-84ee81f0 {
    justify-self: stretch;
  }
}

@media screen and (min-width: 1440px) {
  #w-node-b2808a25-7de2-4a9a-6e20-9426029741d0-84ee81f6, #w-node-b2808a25-7de2-4a9a-6e20-9426029741da-84ee81f6 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_560bb0f0-91b7-2765-4eb9-af92a3e3e591-84ee81f2 {
    justify-self: start;
  }
}


