@keyframes glow {
  from {
    text-shadow: 5px 5px 0 #fff;
  }
  to {
    text-shadow: 5px 5px 0 #71d8c0;
  }
}
body {
  font-family: "Aeonik";
}

/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 2. Remove default margin */
* {
  margin: 0;
}

/* 3. Enable keyword animations */
@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
body {
  /* 4. Add accessible line-height */
  line-height: 1.5;
  /* 5. Improve text rendering */
  -webkit-font-smoothing: antialiased;
}

/* 6. Improve media defaults */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* 7. Inherit fonts for form controls */
input,
button,
textarea,
select {
  font: inherit;
}

/* 8. Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/* 9. Improve line wrapping */
p {
  text-wrap: pretty;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}

/*
  10. Create a root stacking context
*/
#root,
#__next {
  isolation: isolate;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

a {
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  max-width: 100%;
}

.container {
  max-width: 1314px;
}

.section-pad {
  padding: 100px 0;
}

.navbar-toggler .navbar-toggler-line {
  border-radius: 2px;
  width: 25px;
  height: 2px;
  background-color: #3c3c3c;
  display: block;
  margin: 6px 0;
  transition: all 0.3s ease;
}
.navbar-toggler[aria-expanded=true] .navbar-toggler-line:first-child {
  transform: translateY(8px) rotate(45deg);
}
.navbar-toggler[aria-expanded=true] .navbar-toggler-line:nth-child(2) {
  opacity: 0;
}
.navbar-toggler[aria-expanded=true] .navbar-toggler-line:last-child {
  transform: translateY(-8px) rotate(-45deg);
}

.navbar-toggler:focus {
  box-shadow: none;
}

.highlight-text {
  font-size: 19px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 711;
  font-family: "Cooper Hewitt Bold";
  padding: 8px 16px;
  background-color: #71d8c0;
  display: inline-block;
}

.region.region-content {
  padding: 0;
}

.navbar {
  position: relative;
  z-index: 2;
  padding: 17px 0;
  background-color: #ffffff;
}
.navbar .navbar-brand {
  padding: 0;
}
.navbar .navbar-brand img {
  height: 80px;
  margin-right: 0;
}
.navbar .navbar-brand span {
  font-family: "Raleway ExtraBold";
  font-size: 35px;
  color: #3c3c3c;
}
.navbar .navbar-brand span.navbar-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar .navbar-brand span.navbar-brand-logo span:first-of-type {
  display: inline-block;
  width: 80px;
}
.navbar .navbar-collapse {
  justify-content: flex-end;
}
.navbar .navbar-nav {
  gap: 32px;
  align-items: center;
}
.navbar .navbar-nav .nav-link {
  font-size: 16px;
  text-transform: uppercase;
  color: #3c3c3c;
  padding: 14px 8px;
  transition: color 0.3s ease;
}
.navbar .navbar-nav .nav-link:hover, .navbar .navbar-nav .nav-link.active {
  color: #346d60;
}
.navbar .navbar-nav .nav-item {
  position: relative;
}
.navbar .navbar-nav .nav-item:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  top: 0;
  right: -16px;
  background-color: #707070;
}
.navbar .navbar-nav .nav-item:last-child::before {
  display: none;
}
.navbar .navbar-nav .nav-btn .nav-link {
  filter: drop-shadow(0px 15px 17.5px rgba(0, 0, 0, 0.16));
  background-color: #3c3c3c;
  color: #ffffff;
  text-align: center;
  padding: 14px 50px;
}

.hero-section {
  position: relative;
  overflow: hidden;
  margin-top: -65px;
  height: calc(100vh - 198px);
}
.hero-section video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-section .hero-btn {
  position: absolute;
  top: auto;
  left: calc(50% - 110px);
  bottom: 140px;
}
.hero-section .hero-btn:before {
  width: 30%;
}

.hero-text {
  display: block;
  margin: 0 auto;
  z-index: 1;
  position: relative;
  width: 100%;
  max-width: 1017px;
  padding: 16px 16px 12px;
}
.hero-text h1 {
  font-family: "Cooper Hewitt Light";
  letter-spacing: 0px;
  text-shadow: 5px 5px 0 #71d8c0;
  line-height: 100%;
  font-size: 76px;
  text-transform: uppercase;
  color: #060404;
  font-weight: 300;
}
.hero-text p {
  font-size: 26px;
  line-height: 41px;
  color: #3c3c3c;
}

.btn-primary {
  background-color: transparent;
  border: 0;
  border-radius: 0;
}
.btn-primary:disabled, .btn-primary:hover, .btn-primary:active {
  background-color: transparent !important;
}

.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 15px 20px;
  font-size: 20px;
  line-height: 24px;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  overflow: hidden;
  white-space: nowrap;
}
.btn-primary span {
  z-index: 1;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-primary span svg {
  transform: translateY(1px);
}
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -20px;
  height: 100%;
  width: 45%;
  background: #71d8c0;
  transform-origin: left center;
  transform: skewX(-15deg);
  transition: width 0.3s ease;
  z-index: 0;
}
.btn-primary:hover::before {
  width: 120%;
}
.btn-primary:active::before {
  width: 120%;
}
.btn-primary.black-text {
  color: #3c3c3c;
}

.brand-moto p {
  font-size: 19px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 711;
  font-family: "Cooper Hewitt Bold";
  padding: 12px;
  background-color: #71d8c0;
  display: inline-block;
  line-height: 1;
}
.brand-moto h2 {
  font-size: 71px;
  text-transform: uppercase;
  color: #3c3c3c;
  font-weight: 300;
  font-family: "Cooper Hewitt Light";
  max-width: 900px;
  margin: 0 auto;
}

.hash-title {
  font-size: 110px;
  text-transform: uppercase;
  color: #ebf0f0;
  font-weight: 300;
  font-family: "Cooper Hewitt Light";
}

.programs-sec .hash-title {
  margin-bottom: -26px;
}
.programs-sec .programs-images {
  position: relative;
  padding-right: 130px;
  padding-bottom: 147px;
}
.programs-sec .programs-images .prog-sm-img {
  max-width: 294px;
  position: absolute;
  bottom: 0;
  right: 0;
}
.programs-sec .programs-links {
  padding-left: 8px;
  list-style: none;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 992px) {
  .programs-sec .programs-links {
    padding-left: 0;
  }
}
.programs-sec .programs-links li:not(:last-child) {
  margin-bottom: 16px;
}
.programs-sec .programs-links li a {
  font-size: 40px;
  text-transform: uppercase;
  color: #3c3c3c;
  font-weight: bold;
  font-family: "Cooper Hewitt Bold";
  align-items: center;
  gap: 12px;
  line-height: 55px;
  transition: 0.4s all;
  position: relative;
}
@media screen and (max-width: 991px) {
  .programs-sec .programs-links li a {
    line-height: 1.2;
  }
}
.programs-sec .programs-links li a::before, .programs-sec .programs-links li a::after {
  content: "";
  position: absolute;
  width: 34px;
  height: 34px;
  right: -45px;
  bottom: 10px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1199px) {
  .programs-sec .programs-links li a::before, .programs-sec .programs-links li a::after {
    bottom: 4px;
  }
}
@media screen and (max-width: 991px) {
  .programs-sec .programs-links li a::before, .programs-sec .programs-links li a::after {
    transform: scale(0.75);
    bottom: 0;
    right: -40px;
  }
}
.programs-sec .programs-links li a::before {
  background-image: url("../images/green-arrow.png");
}
.programs-sec .programs-links li a::after {
  opacity: 1;
  background-image: url("../images/black-arrow.png");
}
.programs-sec .programs-links li a:hover {
  color: #71d8c0;
}
.programs-sec .programs-links li a:hover::before, .programs-sec .programs-links li a:hover::after {
  right: -54px;
}
.programs-sec .programs-links li a:hover::after {
  opacity: 0;
}

.form-control {
  transition: all 0.3s ease;
}
.form-control:focus {
  box-shadow: none;
  border-color: #71d8c0 !important;
}
.form-controlselect {
  appearance: none;
  background: url("../images/arrow-down.png") no-repeat right center;
}

footer {
  background-color: #3c3c3c;
  padding: 60px 0;
  border-top: 12px solid #71d8c0;
}
footer a,
footer p,
footer h4,
footer h3 {
  color: #ffffff;
  font-size: 19px;
  display: block;
}
footer .footer-logo {
  font-family: "Raleway ExtraBold";
  font-size: 35px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
@media screen and (max-width: 991px) {
  footer .footer-logo {
    justify-content: center;
  }
}
footer .footer-logo img {
  margin-bottom: 0 !important;
}
footer .footer-logo span:first-of-type {
  display: inline-block;
  width: 80px;
}
@media screen and (max-width: 991px) {
  footer .region-footer-first {
    margin-bottom: 40px;
  }
  footer .region-footer-second {
    margin: 50px 0 70px 0;
  }
  footer .footer-timings {
    margin-bottom: 70px;
  }
}
footer .region-footer-second a {
  transition: color 0.3s ease;
}
footer .region-footer-second a:hover {
  color: #71d8c0;
}
footer .footer-menu li {
  text-transform: uppercase;
}
footer .footer-menu li:not(:last-child) {
  margin-bottom: 12px;
}
footer .footer-logo-block img {
  margin-bottom: 16px;
  max-height: 80px;
}
footer .footer-timings h4 {
  margin-top: 12px;
}
footer .webform-submission-form {
  display: flex;
  flex-direction: column;
  align-items: end;
}
footer .webform-submission-form ::placeholder {
  color: #fff;
  opacity: 1; /* Firefox */
}
footer .webform-submission-form ::-ms-input-placeholder { /* Edge 12 -18 */
  color: #fff;
}
footer .webform-submission-form .webform-confirmation {
  width: 100%;
  color: #fff;
  margin-top: 30px;
}
footer .webform-submission-form .form-control {
  font-size: 19px;
  color: #ffffff;
  border: 0;
  border-bottom: 1px solid #ffffff;
  padding: 18px 15px;
  border-radius: 0;
  background: transparent;
}
footer .webform-submission-form .form-item,
footer .webform-submission-form .form-actions {
  margin-top: 26px;
  margin-bottom: 26px;
}
@media screen and (max-width: 991px) {
  footer .webform-submission-form .form-item {
    min-width: 50%;
    margin: 26px auto;
  }
}
footer .webform-submission-form .form-actions {
  display: inline-block;
  position: relative;
  margin-top: 0;
  overflow: hidden;
}
footer .webform-submission-form .form-actions::after {
  width: 19px;
  height: 19px;
  content: "";
  background-image: url("../images/btn-white-arrow.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translate(0%, -40%);
}
footer .webform-submission-form .form-actions::before {
  content: "";
  position: absolute;
  top: 0;
  left: -20px;
  height: 100%;
  width: 45%;
  background: #71d8c0;
  transform-origin: left center;
  transform: skewX(-15deg);
  transition: width 0.3s ease;
  z-index: 0;
}
footer .webform-submission-form .form-actions:hover::before {
  width: 120%;
}
footer .webform-submission-form .webform-button--submit {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 15px 48px 15px 20px;
  font-size: 20px;
  line-height: 24px;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  overflow: hidden;
  white-space: nowrap;
}
footer .webform-submission-form .alert-error {
  display: none;
}
footer .webform-submission-form .form-item--error-message {
  color: #fff;
  margin: 4px 0 0;
}
footer .webform-submission-form .form-item--error-message::before {
  vertical-align: middle;
  margin-top: -3px;
}
footer .webform-submission-form .form-item--error-message strong {
  font-weight: 400 !important;
}
footer .social-links a {
  position: relative;
}
footer .social-links a .social-link-img {
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
  margin-bottom: 0;
}
footer .social-links a .social-link-img-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  filter: brightness(0) invert(1);
}
footer .social-links a:hover .social-link-img-hover {
  opacity: 1;
  visibility: visible;
}
footer .region-footer-third p {
  margin-bottom: 18px;
  line-height: 1;
}
footer .region-footer-third p:last-of-type {
  margin-top: 21px;
}

.copywrite {
  padding: 15px 0 13px 0;
  background-color: #71d8c0;
}
@media screen and (min-width: 992px) {
  .copywrite {
    padding: 30px 0 26px 0;
  }
}
.copywrite p {
  font-size: 19px;
  font-weight: bold;
  color: #3c3c3c;
  font-family: "Cooper Hewitt Bold";
  line-height: 1;
}

@media screen and (max-width: 1199px) {
  .membership-sec {
    padding-right: 12px;
    padding-left: 12px;
  }
  .hero-text {
    max-width: 850px;
  }
  .hero-text p {
    font-size: 22px;
  }
  .hero-section .hero-btn {
    bottom: 15%;
  }
  .single-membership .content {
    padding: 40px 40px;
  }
  .programs-sec .programs-links li a {
    font-size: 32px;
  }
}
@media screen and (max-width: 991px) {
  .hash-title {
    font-size: 80px;
  }
  .hero-text {
    max-width: 700px;
  }
  .hero-text h1 {
    font-size: 60px;
  }
  .hero-text p {
    font-size: 18px;
    line-height: 24px;
  }
  .navbar .navbar-nav {
    gap: 0;
  }
  .navbar .navbar-nav .nav-item {
    width: 100%;
    border-bottom: 1px solid #3c3c3c;
  }
  .navbar .navbar-nav .nav-item:before {
    display: none;
  }
  .navbar .navbar-nav .nav-link {
    width: 100%;
    text-align: center;
  }
  .brand-moto h2 {
    font-size: 55px;
  }
  .programs-sec .programs-links {
    margin-top: 30px;
  }
  .section-pad {
    padding: 60px 0;
  }
  .membership-sec {
    padding-right: 12px;
    padding-left: 12px;
  }
  .single-membership.prime {
    margin: 30px 0;
  }
  .footer-menu {
    margin: 24px 0;
  }
  .footer-timings {
    margin: 0 0 24px;
  }
}
@media screen and (max-width: 991px) {
  .navbar .navbar-brand img {
    height: 50px;
  }
  .navbar .navbar-brand span.navbar-brand-logo span:first-of-type {
    width: 50px;
  }
  .hero-text {
    max-width: 80%;
  }
  .hero-text h1 {
    font-size: 40px;
    text-shadow: 3px 3px 0 #71d8c0;
  }
  .hero-text p {
    font-size: 16px;
    line-height: 20px;
  }
  .brand-moto h2 {
    font-size: 27px;
  }
  .hash-title {
    font-size: 46px;
  }
  .programs-sec .hash-title {
    margin-bottom: -10px;
  }
  .programs-sec .programs-images {
    padding-right: 0;
    padding-bottom: 0;
  }
  .programs-sec .programs-images .prog-sm-img {
    display: none;
  }
  .programs-sec .programs-links li a {
    font-size: 24px;
  }
  .programs-sec .programs-links li a img {
    max-width: 24px;
  }
  .single-membership .content {
    padding: 40px;
  }
  .single-membership .content h3 {
    font-size: 17px;
  }
  .single-membership .content h2 {
    font-size: 40px;
    margin-bottom: 12px;
  }
  .single-membership .content ul {
    font-size: 17px;
    margin-bottom: 16px;
  }
  .btn-primary {
    padding: 12px 20px;
    font-size: 18px;
    line-height: 24px;
  }
  .footer-menu {
    margin: 30px 0;
  }
  .footer-timings {
    margin: 0 0 30px;
  }
  footer {
    text-align: center;
  }
  footer .footer-logo-block img {
    margin: 0 auto 16px;
  }
  footer .footer-logo-block .social-links {
    justify-content: center;
  }
  footer .webform-submission-form .form-actions {
    margin: 0 auto;
  }
}
.contact-block-section {
  border-top: 32px solid #71d8c0;
}
.contact-block-section img {
  max-height: 780px;
  width: 100%;
  object-fit: cover;
  object-position: top;
}
.contact-block-section .contact-block-content {
  margin-top: -50%;
}
.contact-block-section .contact-block-content h2 {
  text-align: right;
  font-family: "Cooper Hewitt Light";
  line-height: 100%;
  font-size: 56px;
  font-weight: 300;
  letter-spacing: 0px;
  color: #ffffff;
  text-transform: uppercase;
  opacity: 1;
  text-wrap: inherit;
  max-width: 1056px;
  margin: 0 0 0 auto;
}
.contact-block-section .contact-block-content .contact-form-wrap {
  padding: 24px 50px 60px;
  background-color: #ffffff;
  z-index: 1;
  position: relative;
  max-width: 813px;
  margin-right: 0;
  margin-left: auto;
}
.contact-block-section .contact-block-content .contact-form-wrap .form-control {
  font-size: 19px;
  color: #2b2d36;
  border: 0;
  border-bottom: 1px solid #707070;
  padding: 18px 15px;
  border-radius: 0;
}
.contact-block-section .contact-block-content .contact-form-wrap textarea {
  height: 114px;
}
.contact-block-section .contact-block-content .contact-form-wrap .form-item,
.contact-block-section .contact-block-content .contact-form-wrap .form-actions {
  margin-top: 26px;
  margin-bottom: 26px;
}
.contact-block-section .contact-block-content .contact-form-wrap .form-actions {
  display: inline-block;
  position: relative;
  margin-top: 0;
  overflow: hidden;
}
.contact-block-section .contact-block-content .contact-form-wrap .form-actions::after {
  width: 19px;
  height: 19px;
  content: "";
  background-image: url("../images/btn-black-arrow.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translate(0%, -40%);
}
.contact-block-section .contact-block-content .contact-form-wrap .form-actions::before {
  content: "";
  position: absolute;
  top: 0;
  left: -20px;
  height: 100%;
  width: 45%;
  background: #71d8c0;
  transform-origin: left center;
  transform: skewX(-15deg);
  transition: width 0.3s ease;
  z-index: 0;
}
.contact-block-section .contact-block-content .contact-form-wrap .form-actions:hover::before {
  width: 120%;
}
.contact-block-section .contact-block-content .contact-form-wrap .webform-button--submit {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 15px 48px 15px 20px;
  font-size: 20px;
  line-height: 24px;
  text-transform: uppercase;
  color: #3c3c3c;
  text-decoration: none;
  overflow: hidden;
  white-space: nowrap;
}

.jointeam-content .green-block-wrap {
  position: relative;
  padding-bottom: 40px;
}
.jointeam-content .green-block-wrap::before {
  background-color: #71d8c0;
  position: absolute;
  content: "";
  width: 100%;
  bottom: 0;
  z-index: 0;
  left: 0;
  top: 54px;
}
.jointeam-content .green-block-wrap .green-content {
  max-width: 850px;
  z-index: 1;
  position: relative;
}
.jointeam-content .green-block-wrap .green-content .hash-title {
  text-shadow: -4px -4px 0 #71d8c0;
}
.jointeam-content .green-block-wrap .green-content p {
  font-size: 30px;
  line-height: 38px;
  color: #3c3c3c;
  padding-right: 0;
}
.jointeam-content .jointeam-form {
  position: relative;
}
.jointeam-content .jointeam-form .form-control {
  font-size: 19px;
  color: #2b2d36;
  border: 0;
  border-bottom: 1px solid #707070;
  padding: 18px 15px;
  border-radius: 0;
}
.jointeam-content .jointeam-form .webform-submission-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0px 40px;
  max-width: 750px;
}
.jointeam-content .jointeam-form .webform-submission-form .form-type-select, .jointeam-content .jointeam-form .webform-submission-form #ajax-wrapper {
  grid-column: 1/-1;
}
.jointeam-content .jointeam-form .webform-submission-form .alert-dismissible {
  margin-top: 15px;
  grid-column: 1/-1;
}
.jointeam-content .jointeam-form .form-actions {
  display: inline-block;
  position: relative;
  overflow: hidden;
  grid-column: 2;
  justify-self: end;
  align-self: center;
}
.jointeam-content .jointeam-form .form-actions::after {
  width: 19px;
  height: 19px;
  content: "";
  background-image: url("../images/btn-black-arrow.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translate(0%, -40%);
}
.jointeam-content .jointeam-form .form-actions::before {
  content: "";
  position: absolute;
  top: 0;
  left: -20px;
  height: 100%;
  width: 45%;
  background: #71d8c0;
  transform-origin: left center;
  transform: skewX(-15deg);
  transition: width 0.3s ease;
  z-index: 0;
}
.jointeam-content .jointeam-form .form-actions:hover::before {
  width: 120%;
}
.jointeam-content .jointeam-form .webform-button--submit {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 15px 48px 15px 20px;
  font-size: 20px;
  line-height: 24px;
  text-transform: uppercase;
  color: #3c3c3c;
  text-decoration: none;
  overflow: hidden;
  white-space: nowrap;
}
.jointeam-content .jointeam-form .js-form-type-select + [id^=ajax-wrapper] {
  grid-column: 1/-1;
}
.jointeam-content .jointeam-form .js-form-item span.file {
  background: #FBF9F6;
  border: 1px solid #E1E1E1;
  height: 251px;
  width: 100%;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.jointeam-content .jointeam-form .js-form-item span.file a {
  color: #3c3c3c;
}
.jointeam-content .jointeam-form .js-form-item .file + input.btn-primary {
  display: block;
  background-color: #3c3c3c;
  color: #ffffff;
}
.jointeam-content .jointeam-form .js-form-item .file + input.btn-primary:hover {
  background-color: #71d8c0;
  color: #ffffff;
}

.jointeam-section {
  overflow: hidden;
}
.jointeam-section #block-ton-pilates-joinus {
  padding: 180px 0 140px;
  position: relative;
}
.jointeam-section #block-ton-pilates-joinus .gymgirl {
  position: absolute;
  bottom: 0;
  right: 0;
  top: auto;
}
.jointeam-section #block-ton-pilates-joinus .gymgirl img {
  max-width: 90%;
  margin: 0 0 0 auto;
}

.select-file-wrap {
  background: #FBF9F6;
  border: 1px solid #E1E1E1;
  height: 251px;
  width: 100%;
  padding: 15px;
}
.select-file-wrap .dashborder {
  border: 2px dashed #C2CDDA;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}
.select-file-wrap .dashborder p {
  max-width: 500px;
  text-align: center;
  font-size: 19px;
  line-height: 24px;
  color: #555A6B;
}

@media screen and (max-width: 1750px) {
  .jointeam-section #block-ton-pilates-joinus {
    padding: 180px 0 64px;
  }
  .jointeam-section #block-ton-pilates-joinus .gymgirl {
    max-width: 780px;
  }
  .jointeam-content .jointeam-form .webform-submission-form {
    max-width: 660px;
  }
}
@media screen and (max-width: 1499px) {
  .jointeam-section #block-ton-pilates-joinus {
    padding: 100px 0 64px;
  }
  .jointeam-section #block-ton-pilates-joinus .gymgirl {
    max-width: 680px;
  }
}
@media screen and (max-width: 1300px) {
  .jointeam-section #block-ton-pilates-joinus .gymgirl {
    max-width: 580px;
  }
}
@media screen and (max-width: 1200px) {
  .jointeam-content .green-block-wrap .green-content {
    max-width: 100%;
  }
  .jointeam-section #block-ton-pilates-joinus {
    padding: 100px 0 0;
  }
  .jointeam-section #block-ton-pilates-joinus .gymgirl {
    position: relative;
    max-width: 100%;
  }
  .jointeam-section #block-ton-pilates-joinus .gymgirl img {
    margin: 30px auto 0;
  }
  .jointeam-content .jointeam-form .webform-submission-form {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .jointeam-section .hash-title {
    font-size: 45px;
  }
  .jointeam-section #block-ton-pilates-joinus {
    padding: 80px 0 0;
  }
  .jointeam-section #block-ton-pilates-joinus .gymgirl {
    max-width: 610px;
    position: relative;
  }
  .jointeam-content .green-block-wrap {
    padding-bottom: 24px;
  }
  .jointeam-content .green-block-wrap .green-content p {
    font-size: 24px;
    line-height: 30px;
    padding: 0;
  }
  .jointeam-content .jointeam-form .webform-submission-form {
    display: block;
  }
  .jointeam-content .jointeam-form .form-actions {
    display: inherit;
    margin: 0 auto;
  }
}
.about-us {
  position: relative;
  width: 100%;
  height: calc(100vh - 114px);
  background: url("../images/about-us.png");
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-us__title {
  position: relative;
  font-size: 94px;
  line-height: 96px;
  text-transform: uppercase;
  color: #80dbc4;
  font-weight: 400;
  font-family: "Cooper Hewitt Light";
}
.about-us__title span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}
.about-us__title .about-us__outline {
  color: transparent;
  -webkit-text-stroke: 2px #ffffff;
  -moz-text-stroke: 2px #ffffff;
  z-index: 1;
}
.about-us__title .about-us__outline:last-of-type {
  z-index: 0;
}
.about-us__title .about-us__outline.one {
  margin-top: -55px;
  margin-left: 14px;
}
.about-us__title .about-us__outline.two {
  margin-left: -15px;
  margin-top: 59px;
}
.about-us__title .about-us__filled {
  color: #71d8c0;
  z-index: 2;
}
.about-us .innerheader-text {
  font-family: "Cooper Hewitt Light";
  letter-spacing: 0px;
  text-shadow: 0px -3px 0 #71d8c0;
  line-height: 100%;
  font-size: 35px;
  text-transform: uppercase;
  color: #060404;
  font-weight: 400;
  position: absolute;
  background-color: #ffffff;
  padding: 8px 16px;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  margin: 0 auto;
  width: fit-content;
}

.pricing-bg {
  background-image: url("../images/pricing-bg.png");
}

@media screen and (max-width: 767px) {
  .about-us__title {
    font-size: 42px;
    line-height: 100%;
  }
  .about-us__title .about-us__outline.one {
    margin-top: -24px;
    margin-left: 6px;
  }
  .about-us__title .about-us__outline.two {
    margin-left: -6px;
    margin-top: 24px;
  }
  .about-us {
    height: 350px;
  }
  .about-us:before {
    display: none;
  }
  .about-us .innerheader-text {
    width: 80%;
    font-size: 18px;
  }
}
.about-faq-section {
  padding: 70px 0 100px;
}
.about-faq-section h2 {
  font-size: 56px;
  text-transform: uppercase;
  color: #3c3c3c;
  font-weight: 400;
  font-family: "Cooper Hewitt Light";
  margin: 40px 0;
}
.about-faq-section p {
  font-size: 19px;
  line-height: 26px;
  color: #3c3c3c;
}
.about-faq-section .accordion--content-wrap {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 113px;
}

.accordion {
  border-top: 1px solid #707070;
  margin-top: 30px;
  padding-top: 30px;
}
.accordion .accordion-item {
  border: 0;
  border-bottom: 1px solid #707070;
  border-radius: 0;
  margin-bottom: 30px;
}
.accordion .accordion-item:last-of-type {
  border: 0;
}
.accordion .accordion-header {
  border-radius: 0;
  padding-bottom: 24px;
  margin: 0;
}
.accordion .accordion-button {
  font-size: 34px;
  text-transform: uppercase;
  color: #3c3c3c;
  font-weight: 300;
  font-family: "Cooper Hewitt Light";
  padding: 0;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  box-shadow: none;
}
.accordion .accordion-body {
  padding: 0 0 28px;
  font-size: 19px;
  line-height: 26px;
  color: #3c3c3c;
}

.accordion-button::after {
  background-image: url("../images/plus.png");
  width: 30px;
  height: 30px;
  background-size: contain;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("../images/minus.png");
}

@media (max-width: 991px) {
  .about-faq-section .accordion--content-wrap {
    grid-template-columns: 1fr 300px;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .about-faq-section {
    padding: 50px 0;
  }
  .about-faq-section h2 {
    font-size: 36px;
    margin: 24px 0;
  }
  .about-faq-section .accordion--content-wrap {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .accordion .accordion-button {
    font-size: 22px;
  }
  .accordion .accordion-body {
    font-size: 17px;
  }
}
.contactinfo {
  background-color: #3c3c3c;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.contactinfo h4 {
  font-size: 19px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 400;
  font-family: "Cooper Hewitt Light";
  margin: 12px 0 4px;
}
.contactinfo h5 {
  font-family: "Aeonik Bold";
  font-size: 19px;
  line-height: 26px;
  color: #ffffff;
  font-weight: 300;
}
.contactinfo a {
  font-size: 19px;
  line-height: 26px;
  color: #ffffff;
}

.about-ton {
  position: relative;
  background-color: #fbf9f6;
}
.about-ton:before {
  content: "";
  width: 50%;
  top: 0;
  left: 0;
  height: 100%;
  background-image: url("../images/aboutton.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  position: absolute;
}
.about-ton .about-ton-content {
  padding: 75px 0 45px 50px;
}
.about-ton .about-ton-content h2 {
  font-size: 71px;
  line-height: 79px;
  text-transform: uppercase;
  color: #3c3c3c;
  font-weight: 400;
  font-family: "Cooper Hewitt Light";
}
.about-ton .about-ton-content p {
  font-size: 19px;
  line-height: 26px;
  color: #3c3c3c;
}
.about-ton .about-ton-content h3 {
  margin: 16px 0 28px;
  font-size: 34px;
  text-transform: uppercase;
  color: #3c3c3c;
  font-weight: 300;
  font-family: "Cooper Hewitt Light";
}

@media (max-width: 991px) {
  .about-ton:before {
    display: none;
  }
  .about-ton .about-ton-content {
    padding: 50px;
  }
}
@media (max-width: 767px) {
  .about-ton:before {
    display: none;
  }
  .about-ton .about-ton-content {
    padding: 24px 0;
  }
  .about-ton .about-ton-content h2 {
    font-size: 36px;
    margin: 24px 0 !important;
    line-height: 100%;
  }
  .about-ton .about-ton-content h3 {
    font-size: 28px;
  }
}
.discovery-section {
  padding: 100px 0;
}
.discovery-section .section-title-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: -58px;
}
.discovery-section .discovery-card-content {
  display: flex;
  flex-wrap: wrap;
}
.discovery-section .discovery-card-wrap {
  flex: 0 0 25%;
}
.discovery-section .discovery-card-wrap .discovery-card {
  background: #ffffff;
  border: 1px solid #707070;
  padding: 20px 20px 50px 20px;
}
.discovery-section .discovery-card-wrap .discovery-card img {
  margin-bottom: 52px;
}
.discovery-section .discovery-card-wrap .discovery-card h2 {
  font-size: 26px;
  text-transform: uppercase;
  color: #3c3c3c;
  font-weight: 300;
  font-family: "Cooper Hewitt Light";
  margin-bottom: 16px;
}
.discovery-section .discovery-card-wrap .discovery-card p {
  font-size: 19px;
  line-height: 26px;
  color: #3c3c3c;
}
.discovery-section .discovery-card-wrap .discovery-card.dark-card {
  background-color: #3c3c3c;
}
.discovery-section .discovery-card-wrap .discovery-card.dark-card h2 {
  color: #fff;
}
.discovery-section .discovery-card-wrap .discovery-card.dark-card p {
  color: #fff;
}
.discovery-section .discovery-card-wrap:nth-child(2) {
  margin-top: 100px;
}
.discovery-section .discovery-card-wrap:nth-child(3) {
  margin-top: 200px;
}
.discovery-section .discovery-card-wrap:nth-child(4) {
  margin-top: 100px;
}

@media (max-width: 991px) {
  .discovery-section .discovery-card-wrap {
    flex: 0 0 50%;
  }
}
@media (max-width: 767px) {
  .discovery-section {
    padding: 50px 0;
  }
  .discovery-section .discovery-card-wrap {
    flex: 0 0 100%;
  }
  .discovery-section .discovery-card-wrap:nth-child(2) {
    margin-top: 0;
  }
  .discovery-section .discovery-card-wrap:nth-child(3) {
    margin-top: 0;
  }
  .discovery-section .discovery-card-wrap:nth-child(4) {
    margin-top: 0;
  }
  .discovery-section .section-title-wrap {
    align-items: flex-start;
    margin-bottom: 30px;
    flex-direction: column;
    gap: 24px;
  }
}
.faq-section {
  margin-top: 200px;
  padding-bottom: 150px;
}
.faq-section .accordion {
  border-top: 0;
  margin-top: 40px;
  padding-top: 0;
}
.faq-section .green-title {
  padding: 30px 0;
  position: relative;
}
.faq-section .green-title:before {
  content: "";
  width: 100%;
  height: 50%;
  left: 0;
  bottom: 0;
  background-color: #71d8c0;
  position: absolute;
  z-index: 0;
}
.faq-section .green-title img {
  position: absolute;
  bottom: -30px;
  right: 0;
  width: 524px;
}
@media (max-width: 767px) {
  .faq-section .green-title img {
    padding-bottom: 150px;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0;
  }
}
.faq-section .green-title .accordion--image {
  position: relative;
}
.faq-section .green-title h3 {
  font-size: 75px;
  line-height: 100%;
  text-transform: uppercase;
  color: #ebf0f0;
  font-family: "Cooper Hewitt Light";
  text-shadow: -4px -4px 0 #71d8c0;
  z-index: 1;
  position: relative;
}

@media (max-width: 767px) {
  .faq-section {
    margin-top: 80px;
    padding-bottom: 50px;
    padding-top: 220px;
  }
  .faq-section .green-title:before {
    z-index: 1;
  }
}
.map-section {
  position: relative;
}
.map-section iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.map-section .contactinfo {
  width: 330px;
  z-index: 1;
  position: relative;
  margin-bottom: 130px;
}

@media (max-width: 991px) {
  .map-section iframe {
    position: relative;
    height: 300px;
    margin-bottom: 0;
  }
  .map-section .contactinfo {
    width: 100%;
    margin-bottom: 0;
  }
}
.coming-soon {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .coming-soon {
    min-height: 350px;
  }
}
.contact-form-section {
  margin-top: -130px;
  z-index: 2;
  position: relative;
}
.contact-form-section .contact-form-wrap {
  padding: 24px 50px 60px;
  background-color: #ffffff;
  z-index: 1;
  position: relative;
}
.contact-form-section .contact-form-wrap .form-control {
  font-size: 19px;
  color: #2b2d36;
  border: 0;
  border-bottom: 1px solid #707070;
  padding: 18px 15px;
  border-radius: 0;
}
.contact-form-section .contact-form-wrap textarea {
  height: 114px;
}
.contact-form-section .contact-form-wrap .form-item,
.contact-form-section .contact-form-wrap .form-actions {
  margin-top: 26px;
  margin-bottom: 26px;
}
.contact-form-section .contact-form-wrap .form-actions {
  display: inline-block;
  position: relative;
  margin-top: 0;
  overflow: hidden;
}
.contact-form-section .contact-form-wrap .form-actions::after {
  width: 19px;
  height: 19px;
  content: "";
  background-image: url("../images/btn-black-arrow.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translate(0%, -40%);
}
.contact-form-section .contact-form-wrap .form-actions::before {
  content: "";
  position: absolute;
  top: 0;
  left: -20px;
  height: 100%;
  width: 45%;
  background: #71d8c0;
  transform-origin: left center;
  transform: skewX(-15deg);
  transition: width 0.3s ease;
  z-index: 0;
}
.contact-form-section .contact-form-wrap .form-actions:hover::before {
  width: 120%;
}
.contact-form-section .contact-form-wrap .webform-button--submit {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 15px 48px 15px 20px;
  font-size: 20px;
  line-height: 24px;
  text-transform: uppercase;
  color: #3c3c3c;
  text-decoration: none;
  overflow: hidden;
  white-space: nowrap;
}

.contact-form-img {
  margin: auto;
}

@media screen and (max-width: 767px) {
  .contact-form-section {
    margin-top: 0;
  }
  .contact-form-section .contact-form-wrap {
    padding: 0 12px;
  }
  .contact-block-section .contact-block-content {
    margin-top: 0;
  }
  .contact-block-section .contact-block-content h2 {
    font-size: 32px;
    color: #3c3c3c;
    margin: 24px 0 16px !important;
    text-align: left;
  }
  .contact-block-section .contact-block-content .contact-form-wrap {
    padding: 0;
  }
}
@media screen and (max-width: 991px) {
  .contact-form-section {
    margin-top: 0;
  }
}
.membership-sec .container {
  overflow: hidden;
}
.membership-sec .hash-title {
  margin-bottom: 0;
}
.membership-sec .membership-swipe {
  overflow: inherit;
}
.membership-sec .membership-content-wrap {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 991px) {
  .membership-sec .membership-content-wrap {
    padding-left: 0;
    padding-right: 0;
  }
}
.membership-sec .membership-content-wrap .membership-wrap {
  width: 25%;
}
@media screen and (max-width: 991px) {
  .membership-sec .membership-content-wrap .membership-wrap {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .membership-sec .membership-content-wrap .membership-wrap {
    width: 100%;
  }
  .membership-sec .membership-content-wrap .membership-wrap .single-membership {
    margin-bottom: 24px;
  }
}
.membership-sec .membership-content-wrap .membership-wrap:first-child .prime .single-membership, .membership-sec .membership-content-wrap .membership-wrap:nth-child(3) .prime .single-membership {
  margin-top: 0 !important;
}

.single-membership {
  background-color: #f7f7f7;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.single-membership .image {
  font-size: 0;
  height: 274px;
}
.single-membership .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-membership .content {
  padding: 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.single-membership .content h3 {
  font-family: "Aeonik Bold";
  font-size: 19px;
  text-transform: uppercase;
  color: #3c3c3c;
  font-weight: bold;
}
.single-membership .content h2 {
  font-family: "Aeonik Bold";
  font-size: 46px;
  color: #3c3c3c;
  margin-bottom: 16px;
}
.single-membership .content ul {
  font-size: 19px;
  color: #3c3c3c;
  margin-bottom: 20px;
  flex: 1;
}
.single-membership .content ul li {
  position: relative;
  padding-left: 30px;
}
.single-membership .content ul li:not(:last-child) {
  margin-bottom: 8px;
}
.single-membership .content ul li:before {
  position: absolute;
  left: 0;
  top: 6px;
  content: "";
  background-image: url("../images/black-tick.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 15px;
}
.single-membership .content .btn-primary {
  color: #3c3c3c;
}

.swiper-slide-next .single-membership, .prime .single-membership {
  background-color: #3c3c3c;
  margin-top: -60px;
}
.swiper-slide-next .single-membership h3,
.swiper-slide-next .single-membership h2,
.swiper-slide-next .single-membership ul,
.swiper-slide-next .single-membership .btn-primary, .prime .single-membership h3,
.prime .single-membership h2,
.prime .single-membership ul,
.prime .single-membership .btn-primary {
  color: #ffffff;
}
.swiper-slide-next .single-membership h3 svg polygon,
.swiper-slide-next .single-membership h2 svg polygon,
.swiper-slide-next .single-membership ul svg polygon,
.swiper-slide-next .single-membership .btn-primary svg polygon, .prime .single-membership h3 svg polygon,
.prime .single-membership h2 svg polygon,
.prime .single-membership ul svg polygon,
.prime .single-membership .btn-primary svg polygon {
  fill: #ffffff;
}
.swiper-slide-next .single-membership a .icon-arrow-white, .prime .single-membership a .icon-arrow-white {
  display: block !important;
}
.swiper-slide-next .single-membership a .icon-arrow-black, .prime .single-membership a .icon-arrow-black {
  display: none;
}
.swiper-slide-next .single-membership .content ul li:before, .prime .single-membership .content ul li:before {
  background-image: url("../images/white-tick.png");
}

@media screen and (max-width: 767px) {
  .membership-sec .hash-title {
    margin-bottom: 0;
    font-size: 45px;
  }
  .swiper-slide-next .single-membership, .prime .single-membership {
    margin-top: 0px;
  }
}
@media screen and (max-width: 991px) {
  .paragraph--type--membership .col-lg-12 {
    padding-left: 0;
    padding-right: 0;
  }
}

.paragraph--type--programs {
  overflow-x: hidden;
}

.paragraph--type--hero-banner.price-hero-banner {
  position: relative;
}
.paragraph--type--hero-banner.price-hero-banner::after {
  content: "";
  position: absolute;
  width: 70%;
  height: 50px;
  background-color: #ffffff;
  left: 0;
  bottom: 0;
}

.form-type-webform-document-file .description, .form-type-webform-document-file input {
  display: none;
}

.form-item--error-message {
  margin-top: 5px;
  color: #842029;
}
.form-item--error-message strong {
  font-weight: 400;
}
.form-item--error-message::before {
  transform: translateY(-2px);
}

.alert-error a {
  font-family: "Aeonik Bold";
  color: var(--bs-danger-text-emphasis);
  text-decoration-color: var(--bs-danger-text-emphasis);
  text-decoration: underline;
  text-underline-offset: 5px;
}

select.form-control {
  background-size: 35px;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20640%20640%22%3E%3C!--!Font%20Awesome%20Free%20v7.0.0%20by%20%40fontawesome%20-%20https%3A%2F%2Ffontawesome.com%20License%20-%20https%3A%2F%2Ffontawesome.com%2Flicense%2Ffree%20Copyright%202025%20Fonticons%2C%20Inc.--%3E%3Cpath%20d%3D%22M480%20224C492.9%20224%20504.6%20231.8%20509.6%20243.8C514.6%20255.8%20511.8%20269.5%20502.7%20278.7L342.7%20438.7C330.2%20451.2%20309.9%20451.2%20297.4%20438.7L137.4%20278.7C128.2%20269.5%20125.5%20255.8%20130.5%20243.8C135.5%20231.8%20147.1%20224%20160%20224L480%20224z%22%2F%3E%3C%2Fsvg%3E");
}

.membership-swipe {
  padding-bottom: 80px;
}
@media screen and (max-width: 1023px) {
  .membership-swipe {
    padding-bottom: 60px;
  }
}
.membership-swipe .swiper-button-wrapper {
  height: 60px;
  width: 120px;
  margin: auto;
  position: relative;
  transform: translateY(25px);
}
@media screen and (max-width: 1023px) {
  .membership-swipe .swiper-button-wrapper {
    display: none;
  }
}
.membership-swipe .swiper-button-wrapper .swiper-button-next, .membership-swipe .swiper-button-wrapper .swiper-button-prev {
  width: 40px;
  height: 60px;
  padding: 10px 0;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  inset: 0;
  margin: auto;
}
.membership-swipe .swiper-button-wrapper .swiper-button-next::after, .membership-swipe .swiper-button-wrapper .swiper-button-prev::after {
  color: #71d8c0;
  transition: color 0.3s ease;
}
.membership-swipe .swiper-button-wrapper .swiper-button-next:hover, .membership-swipe .swiper-button-wrapper .swiper-button-prev:hover {
  background-color: #71d8c0;
}
.membership-swipe .swiper-button-wrapper .swiper-button-next:hover::after, .membership-swipe .swiper-button-wrapper .swiper-button-prev:hover::after {
  color: #ffffff;
}
.membership-swipe .swiper-button-wrapper .swiper-button-next {
  right: -45px;
}
.membership-swipe .swiper-button-wrapper .swiper-button-prev {
  left: -45px;
}
.membership-swipe .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #71d8c0;
}

header.header-page-reserve-your-spot {
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  background: transparent !important;
}
header.header-page-reserve-your-spot #navbarSupportedContent {
  display: none !important;
}
header.header-page-reserve-your-spot .navbar {
  background: transparent !important;
}
header.header-page-reserve-your-spot .navbar .navbar-brand span {
  font-family: "Prata", serif;
  font-size: 20px;
}
header.header-page-reserve-your-spot .navbar-toggler {
  display: none !important;
}

.block-reserve-your-spot {
  padding-top: 150px;
  background-image: url("../images/bg-image-reserve-spot.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position-x: 50vw;
  background-size: auto;
  width: 100%;
  position: relative;
}
.block-reserve-your-spot::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/bg-image-1.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1; /* Ensure the overlay is behind the content */
}
@media (max-width: 992px) {
  .block-reserve-your-spot {
    background-image: none;
    padding-top: 100px;
  }
}
.block-reserve-your-spot {
  margin: auto;
}
.block-reserve-your-spot > .container > .row {
  align-items: stretch;
}
.block-reserve-your-spot > .container > .row .col-lg-6:last-child {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
}
.block-reserve-your-spot .form-wrapper-reserve-your-spot {
  box-shadow: 0px 35.63px 70.1px 0px rgba(32, 32, 32, 0.1098039216);
  background: #fff;
  padding: 40px 35px;
}
.block-reserve-your-spot .form-wrapper-reserve-your-spot input#edit-first-name {
  background-image: url("../images/profile.svg");
  background-repeat: no-repeat;
  background-position: left 10px center;
  padding-left: 40px;
}
.block-reserve-your-spot .form-wrapper-reserve-your-spot input#edit-phone {
  background-image: url("../images/phone.svg");
  background-repeat: no-repeat;
  background-position: left 10px center;
  padding-left: 40px;
}
.block-reserve-your-spot .form-wrapper-reserve-your-spot input#edit-email {
  background-image: url("../images/mail.svg");
  background-repeat: no-repeat;
  background-position: left 10px center;
  padding-left: 40px;
}
.block-reserve-your-spot .form-wrapper-reserve-your-spot h2 {
  font-family: "Prata", serif;
}
.block-reserve-your-spot .form-wrapper-reserve-your-spot input[type=text], .block-reserve-your-spot .form-wrapper-reserve-your-spot input[type=email], .block-reserve-your-spot .form-wrapper-reserve-your-spot input[type=tel] {
  background: #F8F8F8;
  border-radius: 12px;
  padding: 20px;
  border: none;
}
.block-reserve-your-spot .form-wrapper-reserve-your-spot input[type=submit] {
  background: #71d8c0;
  color: #ffffff;
  border-radius: 66px;
  font-weight: 400;
  font-size: 25px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: unset;
  display: block;
  width: 100%;
  text-align: center !important;
}
.block-reserve-your-spot .form-wrapper-reserve-your-spot input[type=submit]:hover {
  background: #346d60 !important;
  color: #ffffff;
}
.block-reserve-your-spot .form-wrapper-reserve-your-spot .count-available, .block-reserve-your-spot .form-wrapper-reserve-your-spot .count-max {
  background: #F3F4F1;
  border-radius: 12px;
  padding: 20px;
}
.block-reserve-your-spot p {
  font-family: "Inter", sans-serif;
}
.block-reserve-your-spot h1 {
  font-size: 100px;
  font-weight: normal;
  font-family: "Prata", serif;
  color: #3E4939;
  text-transform: uppercase;
}
.block-reserve-your-spot .box-limited-slots {
  padding: 16px 40px;
  border: 1.5px solid rgba(93, 93, 93, 0.2);
  border-radius: 12px;
  background: #fff;
  margin-top: auto;
}
.block-reserve-your-spot .box-limited-slots h2 {
  font-family: Prata;
  font-weight: 400;
  font-style: Regular;
  font-size: 67.71px;
  line-height: 99px;
  letter-spacing: 0%;
  vertical-align: middle;
}
.block-reserve-your-spot .box-limited-slots h6 {
  font-family: Inter;
  font-weight: 500;
  font-size: 18px;
  line-height: 36.11px;
  letter-spacing: 0px;
  vertical-align: middle;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.block-reserve-your-spot .box-limited-slots .countdown-timer-wrapper {
  display: flex;
  flex-direction: row;
  gap: 10px;
  flex-wrap: wrap;
}
.block-reserve-your-spot .box-limited-slots .countdown-timer-wrapper > div {
  display: flex;
  flex-direction: column;
}
.block-reserve-your-spot .box-limited-slots .countdown-timer-wrapper > div .value {
  font-family: Inter;
  font-weight: 500;
  font-size: 59.69px;
  line-height: 66.71px;
  letter-spacing: -1.05px;
  text-align: center;
  color: #141718;
  background: #F3F4F1;
  width: 114px;
  height: 105px;
  padding: 16px;
  border-radius: 12px;
}
.block-reserve-your-spot .box-limited-slots .countdown-timer-wrapper > div .label {
  font-family: Inter;
  font-weight: 400;
  font-size: 21.07px;
  line-height: 35.11px;
  letter-spacing: 0px;
  text-align: center;
  color: #141718;
}

.marquee-container {
  overflow: hidden;
  width: 100%;
  padding: 40px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 10s linear infinite;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.333%); /* shift by width of one copy */
  }
}

.marquee-track {
  display: flex;
  align-items: center;
}
.marquee-track span {
  white-space: nowrap;
  font-family: "Prata", serif;
  font-size: 67.71px;
  line-height: 99px;
  text-transform: uppercase;
  color: #3E4939;
}
@media (max-width: 768px) {
  .marquee-track span {
    font-size: 40px;
    line-height: 60px;
  }
}
.marquee-track .icon-separator {
  padding: 0 40px;
}

.block-icons-and-text {
  margin-bottom: 70px;
}
.block-icons-and-text .icon {
  margin: auto;
}
.block-icons-and-text h5 {
  font-family: Inter;
  font-weight: 600;
  font-size: 16px;
  line-height: 19.2px;
  letter-spacing: 0.48px;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
}
.block-icons-and-text p {
  font-family: Inter;
  font-weight: 300;
  font-style: Light;
  font-size: 15px;
  line-height: 26px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
}

.block-cards-demo-content .card-custom {
  box-shadow: -11.88px 35.63px 59.38px 0px rgba(31, 29, 85, 0.0509803922);
  padding: 14px 14px 30px 14px;
  border-radius: 24px;
}
.block-cards-demo-content h5 {
  font-family: Inter;
  font-weight: 600;
  font-style: Semi Bold;
  font-size: 20px;
  line-height: 23.75px;
  letter-spacing: 0px;
  border-bottom: 1px dashed rgba(28, 28, 28, 0.2);
  border-width: 2px;
  padding: 25px 0;
  margin-bottom: 25px;
  border-spacing: 8px;
}
.block-cards-demo-content .btn-learn-more {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: Inter;
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0px;
  color: #1C1C1C;
}
.block-cards-demo-content .card-image {
  width: 100%;
}

.section-discover-power {
  margin-top: 20px;
  margin-bottom: 70px;
}
.section-discover-power h2 {
  font-family: Prata;
  font-weight: 400;
  font-style: Regular;
  font-size: 50px;
  line-height: 72px;
  letter-spacing: 0%;
}

.webform-submission-ask-your-questions-form input[type=text], .webform-submission-ask-your-questions-form input[type=email] {
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  border-radius: 100px !important;
}
.webform-submission-ask-your-questions-form input[type=text]::placeholder, .webform-submission-ask-your-questions-form input[type=email]::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.webform-submission-ask-your-questions-form input[type=submit] {
  background: #FCFFD8 !important;
  color: #ffffff !important;
  border-radius: 66px !important;
  padding: 20px 40px !important;
  font-family: Inter;
  font-weight: 600;
  font-style: Semi Bold;
  font-size: 18px;
  line-height: 16.8px;
  letter-spacing: 0.7px;
  text-align: center !important;
  display: block;
  text-transform: uppercase;
  color: #3E4939 !important;
  width: 100%;
}
.webform-submission-ask-your-questions-form .form-actions {
  width: 100%;
}
.webform-submission-ask-your-questions-form .form-actions::before {
  display: none !important;
}
.webform-submission-ask-your-questions-form .form-item {
  width: 100%;
  margin-top: 0 !important;
}
.webform-submission-ask-your-questions-form .webform-flexbox {
  margin: 0 !important;
  gap: 20px;
  width: 100%;
}
.webform-submission-ask-your-questions-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  border-radius: 20px !important;
}
.webform-submission-ask-your-questions-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.webform-submission-ask-your-questions-form .webform-flex--container {
  margin: 0 !important;
  gap: 40px !important;
}

.social-block-listing {
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  justify-content: center;
  margin-top: 10px;
}
.social-block-listing li {
  display: inline-block;
  margin: 0 5px;
}
.social-block-listing li a {
  background: #71d8c0;
  color: #ffffff;
  display: flex;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transition: 0.3s all;
  font-size: 25px;
}
.social-block-listing li a:hover {
  background: #346d60;
  text-decoration: none;
}
.social-block-listing li:first-child {
  margin-left: 0;
}

@media (max-width: 1150px) {
  .block-reserve-your-spot .form-wrapper-reserve-your-spot .count-available, .block-reserve-your-spot .form-wrapper-reserve-your-spot .count-max {
    padding: 10px 15px;
    line-height: normal;
  }
}
@media (max-width: 992px) {
  .block-reserve-your-spot h1 {
    font-size: 40px;
    line-height: normal;
    margin-bottom: 20px;
  }
  .block-reserve-your-spot .box-limited-slots h2 {
    font-size: 42px;
    line-height: normal;
  }
  .section-discover-power h2 {
    font-size: 42px;
    line-height: normal;
  }
  .block-reserve-your-spot .box-limited-slots .countdown-timer-wrapper > div .value {
    font-size: 30px;
    width: 70px;
    height: 70px;
    padding: 0;
  }
  .block-icons-and-text .row {
    gap: 20px;
  }
  .block-reserve-your-spot .row {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .marquee-track span {
    font-size: 24px;
  }
  .marquee-track .icon-separator {
    padding: 0 10px;
    width: 40px;
  }
  .block-reserve-your-spot .form-wrapper-reserve-your-spot input[type=text], .block-reserve-your-spot .form-wrapper-reserve-your-spot input[type=email], .block-reserve-your-spot .form-wrapper-reserve-your-spot input[type=tel] {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .block-cards-demo-content .btn-learn-more {
    justify-content: flex-end;
    gap: 20px;
  }
  footer .webform-submission-form .form-control {
    padding: 10px 15px;
    font-size: 16px;
  }
  header.header-page-reserve-your-spot .navbar .navbar-brand span {
    font-size: 18px;
  }
}
@media (max-width: 500px) {
  .block-reserve-your-spot .form-wrapper-reserve-your-spot input[type=submit] {
    font-size: 18px;
  }
  .block-reserve-your-spot .form-wrapper-reserve-your-spot {
    padding: 20px;
  }
  .block-reserve-your-spot .form-wrapper-reserve-your-spot h2 {
    font-size: 22px;
    line-height: normal;
  }
  .block-reserve-your-spot .box-limited-slots h2 {
    font-size: 32px;
  }
  .block-reserve-your-spot .box-limited-slots h6 {
    font-size: 16px;
    line-height: normal;
    margin-top: 20px;
  }
  .block-reserve-your-spot .box-limited-slots {
    padding: 16px 20px;
  }
  .block-reserve-your-spot .box-limited-slots .countdown-timer-wrapper > div .value {
    width: 55px;
    height: 55px;
    line-height: normal;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .block-reserve-your-spot .box-limited-slots .countdown-timer-wrapper > div .label {
    font-size: 14px;
    line-height: normal;
  }
  .block-reserve-your-spot > .container > .row .col-lg-6 {
    padding-right: 20px;
  }
}
@media (max-width: 315px) {
  .block-reserve-your-spot .box-limited-slots .countdown-timer-wrapper > div .value {
    width: 40px;
    height: 40px;
    line-height: normal;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .block-reserve-your-spot .box-limited-slots .countdown-timer-wrapper > div .label {
    font-size: 12px;
  }
}
footer.footer-new {
  border-top: none;
  padding: 0;
  text-align: center;
  background: #383A3E;
}
footer.footer-new .col-lg-4 {
  background: #000;
  padding: 20px;
  height: fit-content;
}
footer.footer-new .col-lg-8 {
  padding: 129px 129px 129px 129px;
}
@media (max-width: 991px) {
  footer.footer-new .col-lg-8 {
    padding: 50px 40px;
  }
}
footer.footer-new h2 {
  font-family: Prata;
  font-weight: 400;
  font-style: Regular;
  font-size: 60px;
  line-height: 91px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #FBFBF9;
}
footer.footer-new p {
  font-weight: 300;
  font-family: "Inter", sans-serif;
}

.section-copywrite-new {
  color: rgba(57, 59, 64, 0.5) !important;
  padding: 49px 40px;
  text-align: center;
  font-family: Inter;
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0px;
}
.section-copywrite-new .right-side {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  gap: 84px;
}
.section-copywrite-new .right-side a {
  color: rgba(57, 59, 64, 0.5) !important;
  text-decoration: none;
}

@media (max-width: 992px) {
  footer.footer-new h2 {
    font-size: 45px;
    line-height: normal;
  }
  .section-copywrite-new {
    padding: 49px 20px;
  }
}
@media (max-width: 768px) {
  footer.footer-new h2 {
    font-size: 45px;
    line-height: normal;
  }
  .section-copywrite-new {
    padding: 49px 20px;
  }
  .section-copywrite-new .inner-content {
    flex-direction: column;
  }
  .section-copywrite-new .right-side {
    margin-top: 20px;
    gap: 20px;
    flex-direction: column;
  }
  footer.footer-new p {
    font-size: 16px;
  }
  footer.footer-new .col-lg-8 {
    padding: 50px 20px;
  }
}
@media (max-width: 600px) {
  footer .webform-submission-form .form-item {
    margin: 14px auto;
  }
  footer.footer-new h2 {
    font-size: 35px;
  }
  .webform-submission-ask-your-questions-form input[type=submit] {
    padding: 12px 20px !important;
    font-size: 16px;
  }
}

/*# sourceMappingURL=style.css.map */
