/* ----------------------------------------------------------------
	Canvas: Landing
-----------------------------------------------------------------*/

/* ----------------------------------------------------------------
	Canvas: Yoga
-----------------------------------------------------------------*/

:root {
  --cnvs-themecolor: #7e9680;
  --cnvs-themecolor-rgb: 126, 150, 128;
  --cnvs-body-font: 'Roboto', sans-serif;
  --cnvs-primary-font: 'Sansita', sans-serif;
  --cnvs-header-height: 70px;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
  }
}

#header .button-link {
  padding: 8px 14px;
  background-color: var(--cnvs-themecolor);
  color: #fff;
  font-size: 13px;
  border-radius: 3px;
  transition: all 0.4s ease;
  margin-right: 5px;
}

.page-title {
  z-index: 1;
}

.hero-diagonal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    to right,
    rgba(var(--cnvs-themecolor-rgb, 126, 150, 128), 1) 30%,
    rgba(var(--cnvs-themecolor-rgb, 126, 150, 128), 0.5) 100%
  );
  -webkit-clip-path: none;
  clip-path: none;
  background-position: center center;
  background-size: cover;
  z-index: 2;
}

.swiper-button-disabled {
  display: none;
}

.slider-arrow-left,
.slider-arrow-right {
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 50%;
  left: 20px;
  right: auto;
}
.slider-arrow-right {
  right: 20px;
  left: auto;
}

.slider-arrow-left i,
.slider-arrow-right i {
  color: var(--cnvs-themecolor);
  text-shadow: none;
  height: 50px;
  line-height: 48px;
  margin: 0;
}

.slider-arrow-right i {
  margin-right: 2px;
}

.feature-box h3 {
  font-size: 20px;
  letter-spacing: 0;
}

.section-img img {
  width: 100%;
  border: 10px solid #fff;
}

.section-yogas .card {
  padding: 35px;
  background-image: url('images/card-wave-2.svg');
  background-repeat: repeat-x;
  background-position: 0% 101%;
  background-size: cover;
  -webkit-background-size: auto;
  -moz-background-size: auto;
  -o-background-size: auto;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border: 0;
  border-top: 6px solid var(--cnvs-themecolor);
}

.testi-content p {
  line-height: 1.95;
  color: rgba(255, 255, 255, 0.7);
  font-style: normal;
}

.play-icon {
  transition: transform 0.3s ease;
}

.play-icon:hover {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}

.play-icon i {
  width: 80px;
  height: 80px;
  line-height: 81px;
  font-size: 28px;
  padding-left: 5px;
  text-align: center;
  border-radius: 50%;
  color: #000;
  background-color: #fff;
  z-index: 2;
  transition: all 0.3s ease;
}

.play-icon:hover i {
  background-color: var(--cnvs-themecolor);
  color: #fff;
}

.owl-carousel .jumbotron {
  height: 400px;
}

.owl-item .jumbotron {
  opacity: 0.5;
  transform: scale(0.95);
  transition: all 0.5s ease;
}

.owl-item .jumbotron-text {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.4s 0.2s ease;
}

.owl-item.active .jumbotron,
.owl-item.active .jumbotron-text {
  opacity: 1;
  transform: scale(1);
}

/* Owl Carousel - Controls - Arrows
-----------------------------------------------------------------*/
#oc-teachers .owl-nav [class*='owl-'] {
  opacity: 1;
  left: 61px !important;
  height: 60px;
  line-height: 60px;
  border: none;
  color: #333;
  background-color: transparent;
  font-size: 28px;
  border-radius: 0;
}

#oc-teachers.owl-nav .owl-next {
  left: auto;
  right: -61px;
}

#oc-teachers .owl-nav .owl-next {
  left: auto !important;
  right: 62px !important;
  border-radius: 0;
}

#oc-teachers .owl-nav [class*='owl-']:hover {
  transform: scale(1.3);
  background-color: transparent !important;
  color: var(--cnvs-themecolor) !important;
}

/* Owl Carousel - Responsive
-----------------------------------------------------------------*/
.device-md #oc-teachers .owl-nav .owl-prev {
  left: 67px !important;
}
.device-md #oc-teachers .owl-nav .owl-next {
  right: 67px !important;
}

.device-sm #oc-teachers .owl-nav .owl-prev,
.device-xs #oc-teachers .owl-nav .owl-prev {
  left: 27px !important;
}

.device-sm #oc-teachers .owl-nav .owl-next,
.device-xs #oc-teachers .owl-nav .owl-next {
  right: 27px !important;
}

.section-schedule .nav-link {
  position: relative;
  padding: 15px 20px;
  font-size: 20px;
  background-color: #fff;
  margin-bottom: 10px;
  box-shadow: 3px 8px 30px 4px rgba(0, 0, 0, 0.1);
  font-family: var(--cnvs-primary-font);
  border-left: 5px solid transparent;
  overflow: hidden;
  color: #444;
  transition: all 0.3s ease;
}

.section-schedule .nav-pills .nav-link.active {
  box-shadow: 3px 8px 30px 4px rgba(0, 0, 0, 0.2);
  border-left-color: var(--cnvs-themecolor);
  background-color: #fff;
  color: var(--cnvs-themecolor);
}

.section-schedule .nav-link::after {
  content: '';
  position: absolute;
  opacity: 0;
  bottom: 0;
  right: 5px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: 100% 90%;
  background-size: 50px 50px;
  transition: all 0.3s linear;
  background-image: url('images/yoga-icons/color/svg/asana_lotus_col.svg');
}

.section-schedule .nav-link.active::after,
.section-schedule .nav-link:hover::after {
  opacity: 0.6;
  background-position: 100% 70%;
}

.schedule-wrap {
  position: relative;
  padding: 30px;
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 3px 8px 30px 4px rgba(0, 0, 0, 0.2);
}

.schedule-wrap::after {
  content: '';
  position: absolute;
  opacity: 0.07;
  bottom: 20px;
  right: 20px;
  width: 200px;
  height: 200px;
  background: #fff url('images/yoga-icons/color/svg/asana_lotus_col.svg')
    no-repeat 100% 100% / 100%;
  z-index: 0;
}

.schedule-wrap:nth-child(2)::after,
.section-schedule .nav-link:nth-child(2)::after {
  background-image: url('images/yoga-icons/color/svg/asana_cobra.svg');
}
.schedule-wrap:nth-child(3)::after,
.section-schedule .nav-link:nth-child(3)::after {
  background-image: url('images/yoga-icons/color/svg/man_well.svg');
}
.schedule-wrap:nth-child(4)::after,
.section-schedule .nav-link:nth-child(4)::after {
  background-image: url('images/yoga-icons/color/svg/mudra_surya.svg');
}
.schedule-wrap:nth-child(5)::after,
.section-schedule .nav-link:nth-child(5)::after {
  background-image: url('images/yoga-icons/color/svg/vishudda_col.svg');
}
.schedule-wrap:nth-child(6)::after,
.section-schedule .nav-link:nth-child(6)::after {
  background-image: url('images/yoga-icons/color/svg/woman_well.svg');
}
.schedule-wrap:nth-child(7)::after,
.section-schedule .nav-link:nth-child(7)::after {
  background-image: url('images/yoga-icons/color/svg/asana_dog_col.svg');
}

.schedule-wrap dt {
  margin-bottom: 10px;
}

.schedule-wrap dt:not(:nth-last-of-type(1)) + dd {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.schedule-wrap dt:nth-last-of-type(1),
.schedule-wrap dt:nth-last-of-type(1) + dd {
  margin-bottom: 0px;
}

.schedule-time,
.schedule-desc {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
}

.schedule-desc small {
  display: block;
  font-size: 13px;
  opacity: 0.5;
  margin-top: 4px;
}

.schedule-teacher {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}

.countdown.countdown-inline {
  display: block;
}

.countdown-row {
  margin: 0;
}

.countdown-section {
  border-left: 0;
  background-color: rgba(255, 255, 255, 0.1);
  color: #888;
  padding: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.countdown-amount {
  font-size: 17px;
  color: #333;
  margin-bottom: 5px;
}

.pricing .btn {
  transform: translateY(50%);
}

.section-price::before {
  content: '';
  position: absolute;
  top: 130px;
  left: -80px;
  width: 500px;
  height: 500px;
  background: url('images/yoga-icons/color/svg/asana_triangle_col.svg')
    no-repeat;
  background-size: 100%;
  border-radius: 50%;
  opacity: 0.06;
}

.text-title {
  position: relative;
  display: block;
  top: 15px;
  text-align: center;
}

.text-title h3 {
  display: inline;
  margin-bottom: 0;
  padding: 0 20px;
  background-color: #fff;
}

.text-title h3 img {
  display: none;
}

.price-features {
  border: 1px solid var(--cnvs-themecolor);
  border-radius: 10px;
}

.price-features > div {
  padding: 60px;
}

.price-features .iconlist li {
  margin-bottom: 10px;
  font-size: 16px;
}

.masonry-thumbs .grid-item {
  display: block;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  padding: 0;
  border-radius: 4px;
}

.masonry-thumbs .grid-item img {
  -webkit-transform: scale(1.05) translateX(-2px) translateY(-2px);
  transform: scale(1.05) translateX(-2px) translateY(-2px);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  padding: 0;
}

.masonry-thumbs .grid-item:hover img {
  -webkit-transform: scale(1.05) translateX(2px) translateY(2px);
  transform: scale(1.05) translateX(2px) translateY(2px);
  -webkit-filter: sepia(0) saturate(1.3);
  filter: sepia(0) saturate(1.3);
  opacity: 0.9;
}

.yoga-video .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -40px;
  margin-left: -40px;
}

#footer > div {
  position: relative;
  z-index: 1;
}

/* Responsive Device more than 992px (.device-md >)
-----------------------------------------------------------------*/
@media (min-width: 992px) {
  .hero-diagonal::before {
    width: 60%;
    -webkit-clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%);
  }

  .section-img {
    display: block;
    position: absolute;
    top: -30px;
    right: 0;
    width: 52%;
    height: 100%;
  }

  .section-img .section-img-sm {
    position: absolute;
    top: auto;
    bottom: -30px;
    left: -40px;
    right: auto;
    width: 360px;
    height: auto;
  }

  .schedule-wrap dt {
    margin-bottom: 20px;
  }

  .text-title h3 img {
    display: inline-block;
    position: relative;
    margin-right: 10px;
    top: -1px;
  }
}

:root {
  --cnvs-themecolor: #3d80e4;
  --cnvs-themecolor-rgb: 61, 128, 228;
  --cnvs-secondary-color: #ff3a33;

  --cnvs-body-font: 'Source Sans Pro', sans-serif;
  --cnvs-primary-font: 'Roboto', sans-serif;
}

#header {
  --cnvs-primary-menu-font-weight: 500;
  --cnvs-primary-menu-font-size: 1rem;
  --cnvs-primary-menu-tt: none;
  --cnvs-primary-menu-ls: 0;
  --cnvs-primary-menu-submenu-font-weight: 400;
  --cnvs-primary-menu-submenu-hover-font-weight: 500;
  --cnvs-primary-menu-submenu-tt: none;
}

#header {
  --cnvs-primary-menu-submenu-font-size: 15px;
  --cnvs-primary-menu-submenu-color: #666;
  --cnvs-primary-menu-submenu-hover-bg: transparent;
}

.is-expanded-menu .menu-container > .menu-item {
  --cnvs-primary-menu-hover-color: #fff !important;
  --cnvs-primary-menu-active-color: #fff !important;
}

* {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.button,
.btn {
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.button:hover,
.btn:hover {
  transform: translateX(-4px);
}

.text-muted {
  color: #9bb0bf !important;
}

.bgsecondary {
  background-color: var(--cnvs-secondary-color, #ff3a33);
}

.sub-menu-container .menu-item > .menu-link i {
  margin-right: 15px;
  color: var(--cnvs-themecolor, #3d80e4);
  font-size: 18px;
}

.sub-menu-container:not(.mega-menu-column),
.mega-menu-content {
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  padding: 15px 18px;
  margin-top: -1px;
}

.slider-element {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide-imgs .iphone-img {
  position: relative;
  z-index: 1;
  width: 330px;
  -webkit-transform: perspective(1400px) rotateY(-20deg) rotateX(10deg)
    rotateZ(6deg) scale(0.8) translateX(50%) translateY(6%);
  transform: perspective(1400px) rotateY(-20deg) rotateX(10deg) rotateZ(6deg)
    scale(0.8) translateX(50%) translateY(6%);
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.slide-imgs:hover .iphone-img {
  -webkit-transform: perspective(1000px) rotateY(0deg) rotateX(0deg)
    rotateZ(0deg) scale(0.95) translateX(40%) translateY(8%);
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) rotateZ(0deg)
    scale(0.95) translateX(40%) translateY(8%);
}

.slide-imgs .card-img {
  position: absolute;
  bottom: 10px;
  left: -90px;
  width: 360px;
  transition: opacity 0.65s cubic-bezier(0.2, 0.7, 0.3, 1);
  z-index: 1;
}

.slider-element {
  z-index: 1;
}

.section-clients {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 45px 0;
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.section-clients img {
  width: 100px;
}

.section-features {
  padding: 120px;
}

.heading-block h2 {
  font-size: 52px;
  line-height: 1.3;
  font-weight: 900;
  letter-spacing: -1px;
}

.heading-block h3 {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
}

.features-items .feature-box .fbox-icon {
  --f-icon-size: 42px;
  position: relative;
  margin-bottom: 34px;
  width: 42px;
  height: 42px;
  width: var(--f-icon-size);
  height: var(--f-icon-size);
}

.features-items .feature-box .fbox-icon i {
  background-color: transparent !important;
  color: var(--cnvs-themecolor, #3d80e4);
  font-size: 42px;
  font-size: var(--f-icon-size);
}

.features-items .fbox-desc h3 {
  font-size: 19px;
  text-transform: none;
  font-weight: 800;
  letter-spacing: 0;
}

.owl-stage-outer {
  padding: 0;
  cursor: grab;
}

.owl-stage {
  cursor: grab;
}

.owl-stage-outer .owl-stage-outer-bg {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-background-size: contain;
  background-size: contain;
  background-image: url('');
  background-repeat: no-repeat;
  background-position: center center;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.owl-item img {
  width: 100%;
  transform: scale(0.85);
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.owl-item.active.center img {
  transform: scale(0.95);
}

.owl-carousel .owl-dots .owl-dot {
  opacity: 0.3;
  margin-top: 40px;
  width: 20px;
  height: 5px;
  border-radius: 4px;
  transition: all 0.3s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.owl-carousel .owl-dots .owl-dot.active {
  width: 50px;
}

.pricing-table .card {
  border-radius: 20px;
  padding: 25px 40px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: -1px -1px;
  background-size: 102% 160px;
  border-color: rgba(255, 255, 255, 0.3);
}

.pricing-table .card h2 {
  font-size: 48px;
}

.pricing-table .card p {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6 !important;
}

.pricing-table .card .iconlist {
  font-size: 15px;
  font-weight: 500;
  color: #888;
  font-family: 'Roboto';
}

.pricing-table .card .iconlist li:not(:last-child) {
  margin-bottom: 7px;
}

.toggle-wrap {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

.toggle {
  padding: 18px 30px;
  margin-bottom: 0;
  background-color: rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: background-color 0.2s ease;
}

.toggle:first-child {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.toggle:last-child {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.toggle:last-child {
  border-bottom: 0;
}

.toggle .togglet {
  font-size: 19px;
  padding-left: 0;
  font-weight: 600;
  color: #f5f5f5;
}

.toggle:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.device-video-wrap {
  position: relative;
}

.device-video-wrap img {
  position: relative;
  margin: 0 auto;
  max-width: 1024px;
}

.device-video-wrap video {
  position: absolute;
  top: 35px;
  left: 33%;
  max-width: 40%;
  z-index: 1;
  transform: translate(-50%);
}

.device-video-wrap::before,
.dotted-bg::before {
  content: '';
  position: absolute;
  display: block;
  top: 40%;
  left: 35%;
  width: 110%;
  height: 120%;
  background-size: 12px 12px;
  background-position: center;
  transform: translate(-50%, -50%);
  background-image: radial-gradient(#3d80e4 14%, transparent 14%);
  -webkit-mask-image: radial-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, 0) 75%);
  mask-image: radial-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, 0) 75%);
  z-index: 0;
}

/* ----------------------------------------------------------------
	Canvas: Tennis
-----------------------------------------------------------------*/
:root {
  --cnvs-themecolor: #2d6a4f;
  --cnvs-themecolor-rgb: 45, 106, 79;
}
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Inter:wght@300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Inter:wght@300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --cnvs-themecolor: #2d6a4f;
  --cnvs-themecolor-rgb: 45, 106, 79;
  --color-dark-green: #1b4332;
  --color-forest: #0d2b20;
  --color-gold: #c9a84c;
  --color-gold-light: #f5edd6;
  --color-cream: #fffdf5;
  --color-text: #1a2e22;
  --color-muted: #5a7566;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}

.section-label::after {
  content: '';
  display: block;
  height: 1px;
  width: 40px;
  margin-top: 6px;
  background: linear-gradient(to right, var(--color-gold), transparent);
}

.section-label.green {
  color: var(--cnvs-themecolor);
}

.section-label.green::after {
  background: linear-gradient(to right, var(--cnvs-themecolor), transparent);
}

.section {
  padding: 96px 0;
}
.section.section-sm {
  padding: 64px 0;
}
.section.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* Transparent header spacing */

/* Hero typography */
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: inline-block;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(201, 168, 76, 0.45);
  padding: 0.35em 1em;
  border-radius: 2px;
  background: rgba(201, 168, 76, 0.08);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: 3.6rem;
  font-weight: 600;
  font-style: italic;
  line-height: 1.15;
  color: #ffffff;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

@media (max-width: 991px) {
  .hero-headline {
    font-size: 2.2rem;
  }
}

.hero-subtext {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto 2.25rem;
}

/* Stat pills */
.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
}

.stat-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-top: 2.5rem;
}

/* Facility image grid */
.facility-img-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
}
.facility-img-stack img {
  width: 100%;
  object-fit: cover;
  border-radius: 6px;
  flex: 1;
}
.facility-img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

/* Facility cards */
.facility-card {
  background: var(--color-cream);
  border-top: 3px solid var(--cnvs-themecolor);
  border-radius: 6px;
  padding: 1.5rem;
  height: 100%;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.facility-card:hover {
  box-shadow: 0 8px 30px rgba(45, 106, 79, 0.14);
  transform: translateY(-3px);
}

.facility-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(45, 106, 79, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--cnvs-themecolor);
  font-size: 1.3rem;
}

/* Coaching cards */
.coach-card {
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid rgba(45, 106, 79, 0.12);
  overflow: hidden;
  height: 100%;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.coach-card:hover {
  box-shadow: 0 10px 36px rgba(45, 106, 79, 0.14);
  transform: translateY(-4px);
}

.coach-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(45, 106, 79, 0.2);
  margin: 1.5rem auto 0.75rem;
  display: block;
}

.accreditation-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cnvs-themecolor);
  background: rgba(45, 106, 79, 0.08);
  border-radius: 100px;
  padding: 0.25em 0.75em;
  margin-bottom: 0.75rem;
}

/* Coaching quote banner */
.coaching-quote-banner {
  background: var(--cnvs-themecolor);
  border-radius: 10px;
  padding: 3.5rem 4rem;
  margin-top: 3rem;
  text-align: center;
}

.coaching-quote-banner blockquote {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 400;
  color: #ffffff;
  margin: 0 auto 1.75rem;
  max-width: 720px;
  line-height: 1.5;
}

/* Pricing cards */
.pricing-card {
  background: var(--color-cream);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem 2rem;
  height: 100%;
  position: relative;
  transition: transform 0.25s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card.featured {
  border-top: 4px solid var(--color-gold);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-gold);
  color: var(--color-forest);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3em 1.2em;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1;
}

.pricing-price sup {
  font-size: 1.4rem;
  font-weight: 600;
  vertical-align: top;
  margin-top: 0.4rem;
  display: inline-block;
}

.pricing-period {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--color-muted);
  font-weight: 400;
}

.pricing-feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.pricing-feature-list li {
  font-size: 0.9rem;
  color: var(--color-text);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(45, 106, 79, 0.08);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.pricing-feature-list li i {
  color: var(--cnvs-themecolor);
  margin-top: 2px;
  flex-shrink: 0;
}

/* Junior program cards */
.junior-program-card {
  background: #ffffff;
  border-radius: 8px;
  border-left: 4px solid;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 12px rgba(45, 106, 79, 0.06);
}

.junior-program-card.red {
  border-left-color: #e63946;
}
.junior-program-card.orange {
  border-left-color: #f4a261;
}
.junior-program-card.green {
  border-left-color: var(--cnvs-themecolor);
}

.program-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 0.5rem;
  vertical-align: middle;
  flex-shrink: 0;
}

.program-dot.red {
  background: #e63946;
}
.program-dot.orange {
  background: #f4a261;
}
.program-dot.green {
  background: var(--cnvs-themecolor);
}

/* Junior stat row */
.junior-stat {
  text-align: center;
  padding: 2rem 1rem;
}

.junior-stat i {
  font-size: 2rem;
  color: var(--cnvs-themecolor);
  margin-bottom: 0.75rem;
  display: block;
}

.junior-stat-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-text);
}

.junior-stat-label {
  font-size: 0.82rem;
  color: var(--color-muted);
  font-weight: 500;
}

/* Tournament timeline */
.tournament-entry {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(45, 106, 79, 0.1);
}

.tournament-entry:last-child {
  border-bottom: none;
}

.date-badge {
  background: var(--cnvs-themecolor);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.4em 0.75em;
  border-radius: 4px;
  white-space: nowrap;
  min-width: 72px;
  text-align: center;
  margin-top: 2px;
  flex-shrink: 0;
}

.tournament-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.2rem;
}

.tournament-meta {
  font-size: 0.82rem;
  color: var(--color-muted);
}

.tournament-register {
  margin-left: auto;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-gold);
  text-decoration: none;
  white-space: nowrap;
  align-self: center;
  flex-shrink: 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.tournament-register:hover {
  border-color: var(--color-gold);
}

/* Trophy board */
.trophy-board {
  background: linear-gradient(145deg, #2c1810 0%, #1a0f09 50%, #2c1810 100%);
  border-radius: 10px;
  padding: 2rem;
  border: 2px solid rgba(201, 168, 76, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(201, 168, 76, 0.2),
    0 8px 32px rgba(0, 0, 0, 0.3);
}

.trophy-board-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-gold);
  text-align: center;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
}

.trophy-entry {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.trophy-entry:last-child {
  border-bottom: none;
}

.trophy-entry i {
  color: var(--color-gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.trophy-event-name {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  min-width: 150px;
}

.trophy-winner {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
}

/* Event cards */
.event-card {
  background: var(--color-cream);
  border: 1px solid rgba(45, 106, 79, 0.15);
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.event-card:hover {
  box-shadow: 0 12px 36px rgba(45, 106, 79, 0.15);
  transform: translateY(-4px);
}

.event-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.event-card-body {
  padding: 1.5rem;
}

.event-date {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cnvs-themecolor);
  margin-bottom: 0.4rem;
}

.event-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

/* Community banner */
.community-banner {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 3rem;
}

.community-banner img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

.community-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(13, 43, 32, 0.82) 0%,
    rgba(13, 43, 32, 0.45) 60%,
    rgba(13, 43, 32, 0.15) 100%
  );
  display: flex;
  align-items: center;
  padding: 0 3.5rem;
}

/* Button overrides */
.btn-gold {
  background: var(--color-gold);
  color: var(--color-forest);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: none;
  padding: 0.85rem 2.2rem;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition:
    background 0.2s,
    transform 0.15s;
}

.btn-gold:hover {
  background: #d4a93a;
  color: var(--color-forest);
  transform: translateY(-1px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--color-gold);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: 2px solid var(--color-gold);
  padding: 0.75rem 2rem;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition:
    background 0.2s,
    color 0.2s;
}

.btn-outline-gold:hover {
  background: var(--color-gold);
  color: var(--color-forest);
}

.btn-green {
  background: var(--cnvs-themecolor);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: none;
  padding: 0.85rem 2.2rem;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition:
    background 0.2s,
    transform 0.15s;
}

.btn-green:hover {
  background: #235540;
  color: #ffffff;
  transform: translateY(-1px);
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --cnvs-themecolor: #2d6a4f;
  --cnvs-themecolor-rgb: 45, 106, 79;
  --color-dark-green: #1b4332;
  --color-forest: #0d2b20;
  --color-gold: #c9a84c;
}

#header {
  --cnvs-primary-menu-font: 'Inter', sans-serif;
  --cnvs-primary-menu-font-weight: 500;
  --cnvs-primary-menu-font-size: 0.875rem;
  --cnvs-primary-menu-tt: none;
  --cnvs-primary-menu-ls: 0.04em;
  --cnvs-primary-menu-hover-color: var(--color-gold);
  --cnvs-header-sticky-bg: #ffffff;
}

.gtc-join-btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-forest);
  background: var(--color-gold);
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s;
  white-space: nowrap;
}

.gtc-join-btn:hover {
  background: #d4a93a;
  color: var(--color-forest);
  transform: translateY(-1px);
}

@keyframes bounce-y {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

.facility-card-item:hover {
  box-shadow: 0 8px 30px rgba(45, 106, 79, 0.14);
  transform: translateY(-3px);
}

#events .ev-card {
  background: #fffdf5;
  border: 1px solid rgba(45, 106, 79, 0.18);
  border-top: 3px solid var(--cnvs-themecolor);
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  transition:
    box-shadow 0.28s ease,
    transform 0.28s ease;
}
#events .ev-card:hover {
  box-shadow: 0 14px 40px rgba(45, 106, 79, 0.16);
  transform: translateY(-5px);
}
#events .ev-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}
#events .ev-card-body {
  padding: 1.6rem 1.5rem 1.75rem;
}
#events .ev-date-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cnvs-themecolor);
  margin-bottom: 0.6rem;
}
#events .ev-title {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: #1a2e22;
  margin-bottom: 0.55rem;
  line-height: 1.35;
}
#events .ev-desc {
  font-size: 0.875rem;
  line-height: 1.4;
  margin: 0;
}
#events .ev-banner {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 3.5rem;
}
#events .ev-banner img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}
@media (max-width: 767px) {
  #events .ev-banner img {
    height: 280px;
  }
}
#events .ev-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(13, 43, 32, 0.86) 0%,
    rgba(13, 43, 32, 0.55) 55%,
    rgba(13, 43, 32, 0.18) 100%
  );
  display: flex;
  align-items: center;
  padding: 0 3.5rem;
}
@media (max-width: 575px) {
  #events .ev-banner-overlay {
    padding: 0 1.75rem;
  }
}
#events .ev-banner-headline {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 2rem;
  font-weight: 600;
  font-style: italic;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 1.25rem;
  max-width: 460px;
}
@media (max-width: 767px) {
  #events .ev-banner-headline {
    font-size: 1.45rem;
  }
}

.dotted-bg::before {
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.2) 14%,
    transparent 14%
  );
}
.dotted-bg.dotted-bg-dark::before {
  background-image: radial-gradient(rgba(4, 4, 4, 0.2) 14%, transparent 14%);
}

.device-video-wrap > * {
  position: relative;
  z-index: 1;
}

.feature-box.fbox-plain .fbox-icon i {
  font-size: 36px;
}

.testimonial .flexslider .slider-wrap img {
  display: block;
  width: auto;
  margin: 0 auto;
  max-height: 80px;
  margin-bottom: 30px;
}

.testimonial .testi-content p {
  font-size: 28px;
  font-weight: 500;
  font-style: normal;
  line-height: 1.5 !important;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.dark .testimonial .testi-content p {
  color: #fff;
}
.dark .testimonial .testi-meta span {
  color: rgba(255, 255, 255, 0.5);
}

.flex-prev,
.flex-next {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

.dark .flex-prev,
.dark .flex-next {
  background-color: #fff !important;
}

.flex-next i,
.flex-prev i {
  font-size: 24px;
  height: 45px;
  line-height: 45px;
  color: #111;
  text-shadow: none;
}

.flex-next i {
  margin-left: 2px;
}
.flex-prev i {
  margin-left: -1px;
}

.skills li {
  height: 12px;
  border-radius: 10px;
}

.skills li .progress {
  border-radius: 10px;
}

.skills li .progress-percent {
  top: -38px;
  right: -60px;
  padding: 5px 10px;
  text-align: center;
  color: #fff;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.24);
  height: auto;
  z-index: 2;
  font-size: 17px;
  line-height: 16px;
  text-shadow: none;
}

.text-nowrap {
  width: 600px;
  position: relative;
  z-index: 2;
  background-color: #fff;
  transform: translateX(6%);
  padding: 0 20px 10px;
}

/* Responsive Device less than 992px (.device-md <)
-----------------------------------------------------------------*/
@media (max-width: 991.98px) {
  .display-3 {
    font-size: 7vw;
  }

  .slide-imgs .iphone-img {
    -webkit-transform: perspective(1000px) rotateY(0deg) rotateX(0deg)
      rotateZ(0deg) scale(0.85) translateX(20%) translateY(0%) !important;
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) rotateZ(0deg)
      scale(0.85) translateX(20%) translateY(0%) !important;
  }

  .slider-element {
    padding-top: 30px;
  }

  .section-features {
    padding: 60px;
  }

  .testimonial .testi-content p {
    font-size: 20px;
  }

  .testimonial .testi-content p {
    max-width: 600px;
  }

  .sub-menu-container:not(.mega-menu-column),
  .mega-menu-content {
    border-radius: 0;
    margin-top: 0;
  }

  .dark .menu-container > .menu-item > .menu-link,
  .dark .sub-menu-container .menu-item > .menu-link {
    color: #fff;
  }

  .text-nowrap {
    width: 100%;
    position: relative;
    z-index: 2;
    transform: none;
    padding: 0;
  }
}

/* Responsive Device less than 768px (.device-sm <)
-----------------------------------------------------------------*/
@media (max-width: 767.98px) {
  .section-clients {
    position: relative;
    bottom: auto;
  }

  .testimonial .testi-content p {
    max-width: 300px;
  }
}
