:root {

}

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap');

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
	width: 100%;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
input:focus {
    outline: none;
}

html {
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
	  font-family: "Poppins";
}

.site-header {
  background: transparent;
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.container {
  display: flex;
  width: 1920px;
  padding: 0 243px;
  justify-content: space-between;
  align-items: flex-start;
}

@media screen and (max-width:1024px) {
  .container {
    display: flex;
    width: auto;
    padding: 0 10px;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.logo img {
  width: 104px;
  height: 76px;
  flex-shrink: 0;
}

nav {
display: flex;
align-items: center;
}

.main-nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
}

.main-nav ul li a {
	display: flex;
	padding: 40px 20px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-transform: uppercase;
	text-decoration: none;
}


.main-nav ul li {
	text-align: center;
	/* Medium/15 UP */
	font-family: "Poppins", sans-serif;
	font-size: 15px;
	font-style: normal;
	font-weight: 500;
	line-height: 120%; /* 18px */

}


.header-buttons {
  display: flex;
  width: 110px;
  padding-bottom:18px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 10px;
  flex-shrink: 0;
  align-self: stretch;
}

.login-btn {
  display: inline-block;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.7);
  font-family: 'Poppins';
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 18px 30px;
  border-radius: 999px; /* pill shape */
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Hover effect */
.login-btn:hover {
  background: #fff;
  border-color: #fff;
  color: black;
  border-radius: 100px;
  border: 1.5px solid rgba(255, 255, 255, 0.30);
}

/* Focus state */
.login-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

.site-header.not-home {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  font-family: 'Poppins';
}

.site-header.site-header.not-home .container .main-nav ul li a {
  font-family: 'Poppins';
}
.hero-video-section {
	width: 1920px;
	height: 980px;
	flex-shrink: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.60) 0%, rgba(0, 0, 0, 0.40) 50%, rgba(0, 0, 0, 0.60) 100%);
}

/* Position video and allow overlay/content on top */
.hero-video-section {
  position: relative;
  overflow: hidden;
}
.hero-video-section {
  position: relative;
  width: 1920px;
  height: 980px;
  flex-shrink: 0;
  overflow: hidden;
}

/* Make sure the video fills */
.hero-video-section .bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Gradient overlay that shadows video */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.60) 0%,
    rgba(0, 0, 0, 0.40) 50%,
    rgba(0, 0, 0, 0.60) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  width: 100%;
  max-width: 1190px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  text-align: center;
  color: #fff;
  padding: 140px 0;
}

.offer {
	display: flex;
	width: 1190px;
	flex-direction: column;
	align-items: flex-start;
	gap: 40px;
}

/* Headline */
.hero-content h1 {
	width: 1190px;
	max-width: 1190px;
	font-family: "Red Hat Display", sans-serif;
	color: var(--White, #FFF);
	text-align: center;
	font-size: 68px;
	font-style: normal;
	font-weight: 300;
	line-height: 120%; /* 81.6px */
	text-transform: uppercase;
}

/* Subtext */
.hero-content p {
  max-width: 900px;
  margin: 0 auto 36px;
  font-size: clamp(14px, 1.4vw, 18px);
  line-height: 1.6;
  opacity: 0.95;
  font-family: 'Poppins'
}

/* Buttons row */
.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

/* -- Sticky header --*/
.site-header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 10000;
  background: transparent;
  transition: background .25s ease, box-shadow .25s ease;
}


.site-header .main-nav a,
.site-header .login-btn {
  color: #fff;
}

/* non-home OR home-when-scrolled */
.site-header.not-home .main-nav a,
.site-header.not-home {
  color: #111 !important; 
}

.login-btn {
  color: #111 !important;
  border: solid 1,5px black;
  border-radius: 100px;
  border: 1.5px solid  #DAD7D3;
  display: flex;
  padding: 18px 30px;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
/* --- Hamburger button --- */
.hamburger {
  display: none;
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.7);
  background: transparent;
  border-radius: 999px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  z-index: 10001; /* above backdrop */
  transition: border-color .25s ease, background .25s ease;
}
.hamburger span {
  position: absolute;
  left: 50%;
  width: 18px;
  height: 2px;
  background: #fff;
  transform: translateX(-50%);
  transition: transform .25s ease, opacity .2s ease, top .25s ease, background .25s ease;
}
.hamburger span:nth-child(1){ top: 14px; }
.hamburger span:nth-child(2){ top: 20px; }
.hamburger span:nth-child(3){ top: 26px; }

/* X state */
.site-header.nav-open .hamburger span:nth-child(1){
  top: 20px; transform: translateX(-50%) rotate(45deg);
}
.site-header.nav-open .hamburger span:nth-child(2){
  opacity: 0;
}
.site-header.nav-open .hamburger span:nth-child(3){
  top: 20px; transform: translateX(-50%) rotate(-45deg);
}

/* Light-on-white when header is scrolled */
.site-header.scrolled .hamburger { border-color: rgba(0,0,0,.6); }
.site-header.scrolled .hamburger span { background: #111; }

/* --- Mobile drawer + backdrop --- */
.mobile-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 10000;
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.site-header.nav-open ~ .mobile-backdrop {
  opacity: 1; pointer-events: auto;
}

/* was: .site-header.nav-open ~ .mobile-backdrop */
body.nav-open .mobile-backdrop {
  opacity: 1; pointer-events: auto;
}

/* was: .site-header.nav-open ~ .mobile-nav */
body.nav-open .mobile-nav {
  transform: translateX(0);
}

.mobile-nav {
  position: fixed;
  top: 0; right: 0;
  height: 100dvh; width: min(82vw, 340px);
  background: #0e0e0e;
  color: #fff;
  z-index: 10002;
  transform: translateX(100%);
  transition: transform .3s ease;
  padding: 90px 26px 24px; /* leave space for header */
  overflow-y: auto;
}
.site-header.nav-open ~ .mobile-nav {
  transform: translateX(0);
}

/* Mobile nav items */
.mobile-nav ul { display: grid; gap: 12px; }
.mobile-nav a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  padding: 12px 4px;
}
.mobile-login { margin-top: 10px; }
.mobile-login .login-btn {
  width: 100%; text-align: center; padding: 14px 18px;
  border-color: rgba(255,255,255,.8);
}

/* --- Responsive switches --- */
@media (max-width: 1024px){
  .main-nav { display: none; }           /* hide desktop nav */
  .header-buttons { display: none; }     /* move login into drawer */
  .hamburger { display: inline-flex; }   /* show button */
  .container { align-items: center; }    /* vertical center header content */
}

/* Make white-on-white readable after scroll when links become dark */
.site-header.scrolled .mobile-nav { background: #fff; }
.site-header.scrolled .mobile-nav a { color: #111; }
.site-header.scrolled .mobile-login .login-btn {
  border-color: rgba(0,0,0,.7); color: #111;
}

/* -------- SCROLLED STATE -------- */
.site-header.scrolled {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
}

.site-header.scrolled .main-nav a {
  color: #111;
}

.site-header.scrolled .login-btn {
  border-color: rgba(0,0,0,.7);
  color: #111;
  background: transparent;
}

.site-header.scrolled .login-btn:hover {
  background: #111;
  color: #fff;
}

/* ========== LIGHT MODE (Home top) ========== */
.light-links { color: #fff !important; }

.light-login {
  color: #fff!important;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.7);
}
.light-login:hover {
  background: #fff;
  color: #111;
}

/* ========== DARK MODE (Other pages / Scrolled) ========== */
.dark-links { color: #111 !important; }

.dark-login {
  background: #fff;
  color: #111;
  border: 1.5px solid #DAD7D3;
}
.dark-login:hover {
  background: #DAD7D3;
  color: #111;
}

/* -- sticky header end -- */

/* Primary / secondary buttons in hero */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}

/* Solid white pill */
.btn-primary {
  display: flex;
  width: 205px;
  padding: 15px 26px;
  justify-content: center;
  align-items: center;
  border: solid 1px white;
  border-radius: 100px;
  background: #FFF;
  color: black;
	font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 21.6px */
  text-transform: uppercase;
  letter-spacing: 0px;
}
.btn-primary:hover {
  background: transparent;
  border: solid 2px white;
  color: white;
}

/* Solid white pill */
.btn-secondary {
  display: flex;
  width: 205px;
  padding: 15px 26px;
  justify-content: center;
  align-items: center;
  border: solid 1px white;
  border-radius: 100px;
  background: #ffffff00;
  color: rgb(255, 255, 255);
	font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 21.6px */
  text-transform: uppercase;
  letter-spacing: 0px;
}
.btn-secondary:hover {
  background: white;
  border: solid 2px white;
  color: rgb(0, 0, 0);
}
/* Footer base */
.site-footer {
  background: #fff;
  color: #111;
  font-size: 14px;
  line-height: 1.6;
  border-top: 1px solid #eee;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1920px;
  margin: 0 auto;
  padding: 80px 243px;
  gap: 60px;
}

/* Logo & text */
.footer-about {
  display: flex;
  width: 336px;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}
.footer-about p {
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 150%; /* 21px */
}

.footer-logo {
  display: flex;
  width: 198px;
  height: 148px;
  padding: 4.353px 4.352px;
  justify-content: center;
  align-items: center;
  
}
/* Navigation columns */
.footer-links h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #777;
}
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links ul li {
  margin-bottom: 8px;
  font-family: 'Poppins';
}
.footer-links ul li a {
  color: #111;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}
.footer-links ul li a:hover {
  color: #888;
}

/* Social icons */
.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-social a {
  display: flex;
  padding: 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.footer-social a img {
  font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 150%; /* 21px */
}

.footer-social a:hover {
  background: #111;
  color: #fff;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid #eee;
  padding: 20px 243px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  max-width: 1920px;
  margin: 0 auto;
  font-family: 'Poppins';
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
  font-family: 'Poppins';
}
.footer-bottom-links a {
  color: #111;
  text-decoration: none;
  font-size: 13px;
  font-family: 'Poppins';
}
.footer-bottom-links a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-top {
    flex-wrap: wrap;
    padding: 60px 40px;
    gap: 40px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 20px 40px;
  }
}

.footer-links ul li a {
  color: var(--Black-Black, #111);
/* Btn/16 */
font-family: "Lato", sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 700;
line-height: 100%;
}

.footer-links ul li {
display: flex;
padding: 4px 0;
align-items: center;
gap: 10px;
align-self: stretch;
}


.footer-about p {
  color:  #111;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  opacity: 0.7;
}
.footer-bottom {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  color: #888;
}

.footer-bottom-links a {
  display: flex;
justify-content: flex-end;
align-items: center;
gap: 20px;
}

.footer-bottom-links a {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  color: #888;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f7f6f4;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.2s ease;
}

.footer-social a img {
  width: 28px;
  height: 28px;
  aspect-ratio: 1/1;
}

.footer-social a:hover {
  background: #d0ccc5;
}

.footer-frame-container {
  width: 946px;
}

footer {
  height: 582px;
}

/* Scope everything to your widget so nothing else is touched */
.elementor-widget-unik-wellbeing-cards .wellbeing-cards{
  padding:80px 0 100px;
}

/* Title + subtitle */
.elementor-widget-unik-wellbeing-cards .wellbeing-cards .wb-title{
  /* margin:0 auto 12px;
  text-align:center;
  font-weight:500;
  text-transform:uppercase;
  letter-spacing:.08em;
  line-height:1.15;
  font-size:clamp(22px,3.6vw,46px);
  max-width:1200px; */
  color:#111;
  text-align: center;
  font-family: "Red Hat Display";
  font-size: 52px;
  font-style: normal;
  font-weight: 300;
  line-height: 120%; /* 62.4px */
  text-transform: uppercase;
}
.elementor-widget-unik-wellbeing-cards .wellbeing-cards .wb-desc{
  margin:0 auto 50px;
  text-align:center;
  color:#6c6c6c;
  font-size:14px;
  line-height:1.7;
  max-width:820px;
  padding:0 24px;
  font-family: "Poppins";
}

/* Grid */
.elementor-widget-unik-wellbeing-cards .wellbeing-cards .wb-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
  max-width:1920px;
  margin:0 auto;

  align-items:start;
}

.e-con-inner {
  margin: 0;
}
/* Card */
.elementor-widget-unik-wellbeing-cards .wellbeing-cards .wb-card{
  text-align:center;
  padding:10px 24px 0;
  width: 400px;
}

@media screen and (max-width: 1024px) {
  .elementor-widget-unik-wellbeing-cards .wellbeing-cards .wb-card{
    width: auto;
    padding:10px 24px 0;
  }
}

/* Icon with soft circle */
.elementor-widget-unik-wellbeing-cards .wellbeing-cards .wb-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:78px; height:78px;
  margin:0 auto 18px;
  padding: 0 243px;
  border-radius:50%;
  background:#eae6e2;
}


/* Headline + copy */
.elementor-widget-unik-wellbeing-cards .wellbeing-cards .wb-card-title{
  font-size:20px;
  font-weight:600;
  margin:8px 0 10px;
  font-family: "Red Hat Display", sans-serif;
}
.elementor-widget-unik-wellbeing-cards .wellbeing-cards .wb-card-desc{
  color: #414141;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; 
}

.elementor img {
  max-width: 100%;
}

.wb-icon-0 img{
  width:80px!important; height:126px!important;
}

.wb-icon-1 img{
  width:99px!important; height:126px!important;
}

.elementor-widget-unik-wellbeing-cards .wb-icon-2 img{
  width:126px!important; height:110px!important; max-width: 150%;
}

.elementor-widget-unik-wellbeing-cards .wellbeing-cards .wb-btn{
  display: flex;
padding: 18px 30px !important;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius:999px;
  background:#ffffff00;
  border:1px solid #d9d6d3;
  color:#222;
  text-decoration:none;
  font-size:12px;
  font-weight:700;
  margin-right: 22%;
  margin-left: 23%;
  margin-top: 20px;
  font-family: 'Poppins';
}

.elementor-widget-unik-wellbeing-cards .wellbeing-cards .wb-btn:hover{
  background: #d0ccc5;
  transition: 0.4s
}

@media (max-width:1400px){
  .elementor-widget-unik-wellbeing-cards .wellbeing-cards .wb-grid{ gap:40px; padding:0 120px; }
}
@media (max-width:1024px){
  .elementor-widget-unik-wellbeing-cards .wellbeing-cards .wb-grid{
    grid-template-columns:1fr;
    padding:0 40px;
  }
}

.card-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 60px;
  align-self: stretch;
}

.elementor-widget-unik-wellbeing-cards .wellbeing-cards .wb-grid{
  width: min(1140px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  box-sizing: border-box;
}

.elementor-widget-unik-wellbeing-cards .wellbeing-cards .wb-icon{
  padding: 0;
  width: 78px;
  height: 78px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #eae6e2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1024px){
  .elementor-widget-unik-wellbeing-cards .wellbeing-cards .wb-grid{
    width: min(780px, calc(100% - 48px));
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.learn-more-btn {
  display: flex;
  color: #111;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  text-transform: uppercase;
  display: flex;
  gap: 8px;
}

.learn-more-btn a span span {
  font-weight: 500;
}

.text-content p span {
  font-family: "Red Hat Display", sans-serif;
  color: var(--Black-Black, #111);
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  align-self: stretch;
}

/* --- Slider --- */
.wb-cards-slider .slick-list{
  overflow: visible;
  margin: 0 -18px;
}
.wb-cards-slider .slick-slide{
  padding: 0 18px;
}

.wb-card-slide{
  position: relative;
  width: 527px;
  height: 780px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
  background: #000;
}

.wb-card-slide-teachers{
  position: relative;
  width: 343px!important;
  height: 600px!important;
  overflow: hidden!important;
}


/* Image covers the frame */
.wb-card-img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.wb-card-gradient{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0) 40%,
    rgba(0,0,0,.45) 70%,
    rgba(0,0,0,.68) 100%
  );
}

.wb-card-gradient-teachers {
  display: none;
}
/* Text + button overlay */
.wb-card-content{
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  color: #000000;
  display: flex;
  flex-direction: column;
  gap: 10px;

}

.wb-card-content-teachers {
  position: relative;
  bottom: 28px;
  color: #000000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  top: 470px;
}
.wb-card-content h3 {
  margin: 0;
  font-weight: 400;
  text-shadow: 0 4px 20px rgba(0,0,0,.35);
  color: #ffffff;
  text-align: center;
  font-family: "Red Hat Display";
  font-size: 38px;
  font-style: normal;
  line-height: 120%;
}

.wb-card-content-teachers h3 {
  margin: 0;
  font-weight: 400;
  text-shadow: 0 4px 20px rgba(0,0,0,.35);
  color: #000000;
  font-family: "Red Hat Display";
  font-size: 24px;
  font-style: normal;
  line-height: 120%;
  top: -100px;
}

.discover-heading h2 {
  color: #111;
  font-family: "Red Hat Display";
  font-size: 52px;
  font-style: normal;
  font-weight: 300!important;
  line-height: 120%;
  text-transform: uppercase;
  align-self: stretch;
}

.discover-sub-heading {
  color: #414141;
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.wb-card-content p {
  margin: 0;
  opacity: .95;
  max-width: 92%;
  color: #FFF;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.wb-card-content-teachers p {
  margin: 0;
  opacity: .95;
  max-width: 100%;
  color: #000000;
  text-align: left;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0%;
}

.wb-card-btn {
  align-self: flex-start;
  margin-top: 12px;
  display: inline-block;
  background: #fff;
  color: #111;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(0,0,0,.25);
  transition: transform .15s ease, box-shadow .15s ease;
  font-family: "Poppins";
}

.wb-card-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(0,0,0,.28);
}

.slick-prev,
.slick-next {
  position: absolute;
  top: -60px;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  cursor: pointer;
  z-index: 5;
}

.slick-prev {
  right: 60px;
}

.slick-next {
  right: 10px;
}

.slick-prev span,
.slick-next span {
  font-size: 18px;
  line-height: 1;
  color: #000;
  display: block;
  text-align: center;
}

.slick-prev::before,
.slick-next::before {
  display: none;
}

.wb-cards-slider {
  position: relative;
}

.wb-cards-slider .slick-prev,
.wb-cards-slider .slick-next {
  position: absolute;
  top: -70px;
  background: #fff;
  border: 2px solid #d9d6d0;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease;
  z-index: 5;
}

.wb-cards-slider .slick-prev:hover,
.wb-cards-slider .slick-next:hover {
  background: #d9d6d0;
  border-color: #d9d6d0;
}

.wb-cards-slider .slick-prev {
  left: auto !important;
  right: 105px !important;
  top: -135px;
}

.wb-cards-slider .slick-next {
  left: auto !important;
  right: 8px !important;
  top: -135px;
}

.wb-cards-slider .slick-prev::before,
.wb-cards-slider .slick-next::before {
  display: none;
}

.wb-cards-slider .slick-prev span,
.wb-cards-slider .slick-next span {
  font-size: 28px;
  line-height: 1;
  color:#000;
}

.slick-arrow {
  padding: 40px;
}

.wb-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.wb-card-btn {
  margin-top: 12px;
  align-self: center;
}


@media (max-width: 1280px){
  .wb-card-slide{ width: 420px; height: 622px; }
  .wb-card-content h3{ font-size: 30px; }
}
@media (max-width: 900px){
  .wb-card-slide{ width: 80vw; height: calc(80vw * 780 / 527); }
}

.wb-cards-slider .slick-list {
  overflow: visible !important;
  margin: 0 -30px;
}
.wb-cards-slider .slick-slide {
  padding: 0 30px;
}

.wb-cards-slider .slick-track {
  display: flex !important;
  align-items: stretch;
  gap: 15px;
}

.wb-card-slide {
  width: 527px !important;
  height: 780px !important;
  flex: 0 0 auto;
}

.unik-iconed-list{
  list-style:none; margin:0; padding:0;
  display:flex; flex-direction:column; gap:18px;
  font-family: 'Poppins';
}

.unik-iconed-list__item{
  display:flex; align-items:center; gap:14px;
  color:#242424; font-size:18px; line-height:1.6;
}

.unik-iconed-list__icon{
  width:28px; height:28px; flex:0 0 28px;
  display:inline-flex; align-items:center; justify-content:center;
}
.unik-iconed-list__icon img{ width:100%; height:100%; object-fit:contain; display:block; }

.subscribe-subtext p {
  color: #414141;
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 25.5px */
  align-self: stretch;
}

.journey-cards .elementor-widget-container .wellbeing-cards .card-container .wb-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1640px, calc(100% - 48px));
}

.journey-cards img[src*="/recovery.png"] {
  width: 120px;
  height: 120px;
  aspect-ratio: 1/1;
}

.journey-cards img[src*="/concentration.png"] {
  width: 101.44px!important;
  height: 88.8px!important;
  flex-shrink: 0;
  aspect-ratio: 101.44/88.80;
}

.journey-cards img[src*="/performance.png"] {
  width: 99.906px;
  height: 108px;
  flex-shrink: 0;
}

.journey-cards img[src*="/flexibility.png"] {
  width: 120px;
  height: 120px;
  aspect-ratio: 1/1;
}





.stand-cards .elementor-widget-container .wellbeing-cards .card-container .wb-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1640px, calc(100% - 48px));
}

.stand-cards img[src*="/recovery.png"] {
  width: 120px;
  height: 120px;
  aspect-ratio: 1/1;
}

.stand-cards img[src*="/concentration.png"] {
  width: 101.44px!important;
  height: 88.8px!important;
  flex-shrink: 0;
  aspect-ratio: 101.44/88.80;
}

.stand-cards img[src*="/performance.png"] {
  width: 99.906px;
  height: 108px;
  flex-shrink: 0;
}

.stand-cards img[src*="/flexibility.png"] {
  width: 120px;
  height: 120px;
  aspect-ratio: 1/1;
}

.stand-cards {
  background-color: white!important;
}
.teachers-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  align-self: stretch;
}

.teachers-subtext p {
  color: #414141;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  align-self: stretch;
}

/* ===== Core slider wrappers (scoped) ===== */
.trainer-cards-slider { position: relative; }
.trainer-cards-slider .slick-list{
  overflow: hidden;
  margin: 0 -18px;
}
.trainer-cards-slider .slick-slide{ padding: 0 10px; }
.trainer-cards-slider .slick-track{
  display: flex !important;
  align-items: stretch;
  gap: 0;
}

/* ===== Card frame (fixed size) ===== */
.trainer-card-slide{
  position: relative;
  width: 343px !important;
  height: auto !important;
  flex: 0 0 343px;
  border-radius: 20px!important;
  overflow: visible;
  box-shadow: none;
  background: transparent;
}

/* Image exact size */
.trainer-card-img{
  width: 343px;
  height: 458px;
  flex-shrink: 0;
  object-fit: cover;
  display: block;
  border-radius: 20px!important;
}

/* No gradient overlay for trainer version */
.trainer-cards-slider .wb-card-gradient{ display:none !important; }

/* ===== Text under the image ===== */
.trainer-card-content{
  position: static !important;       /* kill overlay positioning */
  padding-top: 12px;
  color: #111;
  text-align: left;
  display: block;
}
.trainer-card-content h3{
  margin: 6px 0;
  font-weight: 600;
  line-height: 1.25;
  color: #111;
  font-family: "Red Hat Display", sans-serif;
  font-size: 18px;
}
.trainer-card-content p{
  margin: 0 0 12px;
  max-width: 92%;
  color: #636363;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.6;
}
.trainer-card-btn{
  display: inline-block;
  margin-top: 6px;
  background: #fff;
  color: #111;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
  transition: transform .15s ease, box-shadow .15s ease;
}
.trainer-card-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(0,0,0,.16);
}

/* ===== Arrows (same style), but at left/right of slider ===== */
.trainer-cards-slider .slick-prev,
.trainer-cards-slider .slick-next{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 2px solid #d9d6d0;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease;
  z-index: 5;
}
.trainer-cards-slider .slick-prev{ left: -125px; }
.trainer-cards-slider .slick-next{ right: -125px; }

.trainer-cards-slider .slick-prev:hover,
.trainer-cards-slider .slick-next:hover{
  background: #d9d6d0;
  border-color: #d9d6d0;
}

/* Remove Slick defaults and use inner spans */
.trainer-cards-slider .slick-prev::before,
.trainer-cards-slider .slick-next::before{ display:none; }
.trainer-cards-slider .slick-prev span,
.trainer-cards-slider .slick-next span{
  font-size: 24px; line-height:1; color:#000;
}

/* ===== Responsive: just reduce count; cards remain 343×458 ===== */
@media (max-width: 1280px){
  .trainer-cards-slider .slick-prev{ left: -40px; }
  .trainer-cards-slider .slick-next{ right: -40px; }
}
@media (max-width: 768px){
  .trainer-cards-slider .slick-prev{ left: -20px; }
  .trainer-cards-slider .slick-next{ right: -20px; }
}

.yoga-quote {
  background-color: #F8F7F5;
  border-radius: 20px;
}

.unik-quote-wrap{
  display:flex;
}

/* Single background block */
.unik-quote{
  position: relative;
  background: #F8F7F5;
  max-width: 980px;
  display: flex;
  padding: 60px 80px 50px 60px;
  align-items: flex-start;
  gap: 60px;
  align-self: stretch;
  flex-direction: column;
}

/* Movable quote icon */
.unik-quote-icon{
  position: absolute;
  top: var(--uqb-icon-y, 6px);
}
.uqb-side-left  .unik-quote-icon{ left: var(--uqb-icon-x, 12px); }
.uqb-side-right .unik-quote-icon{ right: var(--uqb-icon-x, 12px); }
.uqb-side-right .unik-quote-icon{ top:  50px!important }
.unik-quote-icon img{ display:block; width:100%; height:auto; }

/* Quote text */
.unik-quote-text{
  color:#111;
  margin-bottom:2px;
}

.unik-quote-wrap .uqb-side-left .unik-quote-icon {
  left: 60px;
  top: 40px;
}

.unik-quote-wrap .uqb-side-left .unik-quote-icon img {
  width: 64px;
  height: 64px;
}

.unik-quote-text {
  font-family: "Red Hat Display"!important;
  font-size: 38px;
  font-style: normal!important;
  font-weight: 400!important;
  line-height: 120%!important;
  margin-top: 55px;
  margin-top: 70px;
}

.unik-quote-author{
  display: flex;
  flex-direction: row;
  gap:2px;
}
.unik-author-name{ font-weight:600; }
.unik-author-role{ color:#6b6b6b; font-size:13px; font-family: 'Poppins' }

.elementor-widget-container .unik-quote-wrap .unik-quote .unik-quote-author .unik-author-photo img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.unik-quote-new {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  flex: 1 0 0;
  align-self: stretch;
}

/* ---- Unik Pricing Plans ---- */
.unik-pricing { width: 100%; }

.unik-pricing-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 28px;
}

.unik-plan-title{
  font-family: "Red Hat Display", system-ui, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 10px;
  color: #111;
}

.unik-plan-label{
  color: #6f6f6f;
  font-size: 13px;
  margin-bottom: 6px;
  font-family: 'Poppins';
}

/* Price line */
.unik-price-wrap{
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  margin: 10px 0 6px;
}
.unik-price{
  font-family: "Red Hat Display", system-ui, sans-serif;
  font-weight: 400;
  font-size: 44px;
  color: #111;
  line-height: 1;
}
.unik-currency{
  font-size: 28px;
  line-height: 1;
}

.unik-period {
  color:#777;
  font-size: 12px;
  margin-bottom: 18px;
  font-family: 'Poppins';
}

/* Button */
.unik-btn-wrap{ display:flex; justify-content:center; }
.unik-plan-btn {
  display:inline-block;
  padding: 14px 26px;
  border-radius: 999px;
  background:#fff;
  color:#111;
  border:1px solid #111;
  text-decoration:none;
  font-weight:500;
  line-height:1;
  font-family: 'Poppins';
}
.unik-plan.is-featured .unik-plan-btn{
  background:#D0CCC5;
  border-color: transparent;
  font-family: 'Poppins';
}

.unik-form {
  max-width: 704px;
}

/* Features */
.unik-features{
  list-style:none;
  margin: 18px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #222;
  font-family: 'Poppins';
}
.unik-features li{
  font-size: 14px;
}

.unik-plan.is-featured{
  background:#F2F0EC;
}

.unik-features li {
  padding: 8px 0;
}

.unik-pricing-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 28px;
  align-items: start;
  border: none;
}

.unik-plan {
  background: #fff;
  border: 1.5px solid #E7E5E1;
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  height: auto !important;
  min-height: 0;
  align-self: start;  
}

/* -- TESTIMONIALS -- */

.wb-testimonials__heading {
  text-align: center;
  margin-bottom: 28px;
}

.wb-testimonials__slider .slick-list { overflow: visible; margin: 0 -16px; }
.wb-testimonials__slider .slick-slide { padding: 0 16px; height: auto;}
.wb-testimonials__slider .slick-slide > div{ height:auto; }

/* Card */
.wb-testimonials__slider .t-card{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 464px;
  padding: 32px;
  border-radius: 32px;
  background: #fff;
  border: 1.5px solid #ECEAE6;
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
  height: auto; 
  gap: 10px;
}

/* Stars row */
.wb-testimonials__slider .t-stars{
  display: inline-flex;
  gap: 6px;
  color: #74B080;
  line-height: 1;
  margin: 0 0 20px 0;
  font-size: 15px;
}
.wb-testimonials__slider .t-stars span{ display:block; }

.wb-testimonials__slider .t-title{
  margin: 0 0 20px 0;
  color: #111;
  font-family: "Red Hat Display", system-ui, sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 38.4px */
}

.wb-testimonials__slider .t-text{
  margin: 0 0 20px 0;
  color: #414141;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  line-height: 1.5;
  overflow: visible;
  white-space: normal;
}

.wb-testimonials__slider .t-author{
  font-family: "Poppins";
  color: #111;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 24px */
}

.wb-testimonials__slider { position: relative; }
.wb-testimonials__slider .slick-prev,
.wb-testimonials__slider .slick-next{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background:#fff;
  border: 1px solid #DAD6CF;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: background .2s ease, border-color .2s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}
.wb-testimonials__slider .slick-prev{ left: -68px; }
.wb-testimonials__slider .slick-next{ right: -68px; }
.wb-testimonials__slider .slick-prev:hover,
.wb-testimonials__slider .slick-next:hover{
  background:#D9D6D0;
  border-color:#D9D6D0;
}
.wb-testimonials__slider .slick-prev::before,
.wb-testimonials__slider .slick-next::before{ display:none; }
.wb-testimonials__slider .slick-prev span,
.wb-testimonials__slider .slick-next span{
  font-size: 18px; line-height:1; color:#000;
}

/* Responsive */
/* @media (max-width: 1200px){
  .wb-testimonials__slider .t-card{
    width: 420px;
    border-radius: 28px;
    padding: 28px;
    height: auto; 
  }
} */
@media (max-width: 900px){
  .wb-testimonials__slider .t-card{
    width: 88vw;
    max-width: 460px;
    height: auto; 
  }
  .wb-testimonials__slider .slick-prev{ left: -54px; }
  .wb-testimonials__slider .slick-next{ right: -54px; }
}

.js-wb-testimonials-slider .slick-slide {
  margin: 0 10px;
}
.js-wb-testimonials-slider .slick-list {
  margin: 0 -10px;
}

.js-testimonial-slider .slick-list .slick-track {
  gap: 20px;
  display: flex;
}

.wb-testimonials__slider .slick-track{
  display: flex !important;
  align-items: flex-start !important;
}

/* @media (max-width: 1199px){
  .wb-testimonials__slider .slick-prev{ left: -28px; }
  .wb-testimonials__slider .slick-next{ right: -28px; }
} */

@media (max-width: 900px){
  .wb-testimonials__slider .slick-prev{ left: -16px; }
  .wb-testimonials__slider .slick-next{ right: -16px; }
}

.wb-testimonials__slider,
.wb-testimonials__slider .slick-list{ overflow: visible; }

.wb-testimonials__slider .t-text {
  margin: 0 0 20px 0;
  color: #414141;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  line-height: 1.5;
}

.wb-testimonials__slider .t-author {
  color: #111;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 600;
  padding-top: 12px;
  border-top: 1px solid #E4E2DE;
  width: 100%;
}

.unik-faq__q {
  border: none;
}

.unik-faq__icon {
  display: inline-block;
  width: 14px;
  height: 8px;
  background: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L7 7L13 1' stroke='%23111111' stroke-width='2' stroke-miterlimit='3.8637' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform .25s ease;
}

.unik-faq__q[aria-expanded="true"] .unik-faq__icon {
  transform: rotate(180deg);
}

.first-step {
  background: linear-gradient(243deg, rgba(0, 0, 0, 0.15) 31.77%, rgba(0, 0, 0, 0.50) 98.91%);
}

.first-step-subtext {
  color: #FFF;
  font-family: 'Poppins';
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}

/* === PRACTICE SLIDER SECTION === */
.practice-section {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 80px 0;
  background: #fff;
}

.practice-slider {
  position: relative;
}

.practice-slider .slick-list .slick-track {
  gap: 30px;
  display: flex;
  width: 1434px;

}

/* --- Each slide --- */
.practice-slide {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 566px;
}

.practice-slide img.practice-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- Text Overlay --- */
.practice-overlay {
  position: absolute;
  left: 60px;
  bottom: 331px;
  z-index: 3;
  max-width: 480px;
  color: #fff;
}

.practice-title {
  font-family: "Red Hat Display", sans-serif;
  font-size: 48px;
  font-weight: 300;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.practice-sub {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}

/* --- CTA Button --- */
.btn-cta {
  display: inline-block;
  background: #fff;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  padding: 16px 36px;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  background: #000;
  color: #fff;
}

/* --- Slick arrows --- */
.practice-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 50%;
  border: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  z-index: 10;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.practice-arrow span {
  font-size: 26px;
  color: #111;
  transition: transform 0.2s ease;
}

.practice-arrow:hover {
  background: #111;
}

.practice-arrow:hover span {
  color: #fff;
  transform: scale(1.1);
}

/* Arrows position */
.slick-prev.practice-arrow {
  left: 20px;
}
.slick-next.practice-arrow {
  right: 20px;
}

/* Hide default slick arrows and dots */
.slick-dots,
.slick-prev::before,
.slick-next::before {
  display: none !important;
}

/* --- Responsive adjustments --- */
@media (max-width: 1280px) {
  .practice-slide {
    height: 500px;
  }
  .practice-overlay {
    left: 40px;
    bottom: 80px;
    max-width: 420px;
  }
  .practice-title {
    font-size: 40px;
  }
}

@media (max-width: 1024px) {
  .practice-slide {
    height: 440px;
  }
  .practice-overlay {
    left: 30px;
    bottom: 60px;
    max-width: 380px;
  }
  .practice-title {
    font-size: 32px;
  }
  .btn-cta {
    padding: 14px 28px;
    font-size: 13px;
  }
  .practice-arrow {
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 768px) {
  .practice-slide {
    height: 380px;
  }
  .practice-overlay {
    left: 20px;
    bottom: 40px;
    max-width: 320px;
  }
  .practice-title {
    font-size: 26px;
  }
  .practice-sub {
    font-size: 14px;
  }
  .practice-arrow {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 480px) {
  .practice-section {
    padding: 40px 0;
  }
  .practice-overlay {
    left: 16px;
    bottom: 30px;
    max-width: 280px;
  }
  .practice-title {
    font-size: 22px;
  }
  .btn-cta {
    font-size: 12px;
    padding: 12px 24px;
  }
}

/* set your page gutter once */
:root { --gutter: 243px; }

/* your section can keep normal layout */
.practice-section { overflow: visible; }

/* make Slick allow slides to spill into the gutters */
.practice-slider .slick-list {
  overflow: visible;         /* show neighboring slides */
  margin: 0 calc(var(--gutter) * -1);  /* extend list into gutters */
  padding: 0 var(--gutter);            /* keep first/last aligned with content */
}

/* optional: keep arrows inside content area, not in the gutters */
.practice-arrow.slick-prev { left: calc(var(--gutter) - 50px); }  /* 50px from content edge */
.practice-arrow.slick-next { right: calc(var(--gutter) - 50px); }

/* RESPONSIVE gutters — match your site’s container at <1200px */
@media (max-width: 1200px) {
  :root { --gutter: 10px; }  /* you already use 10px on small screens */
  .practice-arrow.slick-prev { left: calc(var(--gutter) - 34px); }
  .practice-arrow.slick-next { right: calc(var(--gutter) - 34px); }
}

.practice-slide {
  position: relative;
  overflow: hidden;
}

/* gradient overlay on top of each image */
.practice-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    243deg,
    rgba(0, 0, 0, 0.15) 31.77%,
    rgba(0, 0, 0, 0.50) 98.91%
  );
  pointer-events: none; /* keeps buttons clickable */
}

/* ensure overlay text stays visible above gradient */
.practice-overlay {
  position: relative;
  z-index: 2;
}

/* optional: slight fade-in animation for aesthetic smoothness */
.practice-slide::before {
  opacity: 0.95;
  transition: opacity 0.3s ease;
}

.practice-slide:hover::before {
  opacity: 1;
}

.rythm-subtext {
  color: #414141;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 25.5px */
}

/* === Base Table === */
.unik-plan-table {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  font-family: "Inter", "Helvetica Neue", sans-serif;
  color: #2c2c2c;
}

.unik-pt-grid {
  width: 100%;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

/* === Columns & Cells === */
.unik-pt-col {
  padding: 16px 20px;
  text-align: center;
  font-size: 15px;
  line-height: 1.5;
  border-left: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.unik-pt-col--label {
  font-weight: 500;
  text-align: left;

  border-right: 1px solid #e5e5e5;
  justify-content: flex-start;
}

.unik-pt-head {
  font-weight: 600;
  background: #fff;
  font-size: 15px;
}

.unik-pt-head .unik-pt-title {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 6px;
}

.unik-pt-head .unik-pt-price {
  font-weight: 700;
  font-size: 17px;
}

.unik-pt-head .unik-pt-sub {
  font-size: 14px;
  opacity: 0.8;
}

/* === Featured Column === */
.unik-pt-head.is-featured {
  background: #e9f6ea;
  box-shadow: inset 0 0 0 2px #7fbf7f;
}

.unik-pt-col.is-featured {
  background: #f6faf6;
}

/* === Icons & Symbols === */
.unik-pt-ico i {
  font-size: 16px;
}

.unik-pt-text,
.unik-pt-dash {
  display: inline-block;
}

.unik-pt-dash {
  opacity: 0.6;
  font-size: 16px;
}

/* === Row Styling === */
.unik-pt-row {
  border-top: 1px solid #e5e5e5;
}

.unik-pt-row:first-child {
  border-top: none;
}

.unik-pt-row:nth-child(even) .unik-pt-col {
  background: #fcfcfc;
}

/* --- basics (optional, keeps things neat) --- */
.unik-pt-grid {overflow: hidden; }
.unik-pt-grid .unik-pt-col { padding: 16px 18px; }
.unik-pt-col--label { text-align: left; font-weight: 500; }

/* Header row (first 4 cells) is always white */
.unik-pt-grid .unik-pt-col:nth-child(-n+4) { background: #ffffff; }

.unik-pt-grid .unik-pt-col:nth-child(8n + 9),
.unik-pt-grid .unik-pt-col:nth-child(8n + 10),
.unik-pt-grid .unik-pt-col:nth-child(8n + 11),
.unik-pt-grid .unik-pt-col:nth-child(8n + 12) {
  background: #faf8f4; /* very light off-white like the screenshot */
}

/* Remove all borders globally (as before) */
.unik-pt-ico--check {
  height: 20px !important;
  fill: green;
  color: green;
}

/* ✅ Add a horizontal line above the "Monthly Payment" row */
.unik-pt-grid .unik-pt-col:nth-child(5),
.unik-pt-grid .unik-pt-col:nth-child(6),
.unik-pt-grid .unik-pt-col:nth-child(7),
.unik-pt-grid .unik-pt-col:nth-child(8) {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}


/* (Optional) if you prefer the *odd* body rows tinted instead, use this block
.unik-pt-grid .unik-pt-col:nth-child(8n + 5),
.unik-pt-grid .unik-pt-col:nth-child(8n + 6),
.unik-pt-grid .unik-pt-col:nth-child(8n + 7),
.unik-pt-grid .unik-pt-col:nth-child(8n + 8) {
  background: #faf8f4;
}
*/

.elementor-widget-container .unik-plan-table .unik-pt-gr {
  border: none!important;
}
 
.unik-pt-grid .unik-pt-col:nth-child(4n + 3) {
  border-left: 2px solid #81A268;
  border-right: 2px solid #81A268;
}
.unik-pt-grid .unik-pt-head:nth-child(3) {
  background: #81A268; color: #fff; border-radius: 12px 12px 0 0;
}


/* === Responsive === */
@media (max-width: 900px) {
  .unik-pt-grid {
    grid-template-columns: 1fr;
  }

  .unik-pt-col--label {
    border-right: none;
    border-bottom: 1px solid #e5e5e5;
  }

  .unik-pt-col {
    border-left: none;
    border-bottom: 1px solid #e5e5e5;
  }

  .unik-pt-head {
    text-align: left;
  }
}
/* === Reusable Self-Care Card === */
.selfcarecard {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  position: relative;
  isolation: isolate;
  border-radius: 0!important;
  height: 320px;
  width: 707px;
  position: relative;
  box-sizing: border-box;
  min-width: 707px;
  max-width: 707px;
  min-height: 320px;
  max-height: 320px;
  flex: 0 0 707px;   
}

.selfcarecard img {
  width: 707px!important;
  height: 320px!important;
  object-position: center top;
}


.selfcarecard::before {
  content: "";
  display: block;
  background:
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.35) 38%,
      rgba(0, 0, 0, 0) 100%
    ),
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.25) 0%,
      rgba(0, 0, 0, 0) 40%
    );
  position: absolute;
  inset: 0;
  z-index: 0;
}

.selfcaretext {
  position: absolute!important;
  top: 152px !important;
  left: 40px !important;
}

.selfcaresubtext {
  position: absolute!important;
  top: 213px !important;
  left: 40px !important;
}


.selfcarebtn {
  position: absolute;
  top: -95px !important;
  left: 30px!important;
}

.elementor-element:has(> .selfcarecard) {
  position: relative !important;
  width: 707px !important;
  min-width: 707px !important;
  max-width: 707px !important;
  height: 320px !important;
  min-height: 320px !important;
  max-height: 320px !important;
  flex: 0 0 707px !important;
  box-sizing: border-box;
}


.elementor-element-5ca6707 .e-con-inner {
  display: flex!important;
  justify-content: center!important;
}
.elementor-element-93c80ea .e-con-inner {
  display: flex!important;
  justify-content: center!important;
}
.elementor-element-2cf6b6b .e-con-inner {
  display: flex!important;
  justify-content: center!important;
}
.elementor-element-8d96e85 .e-con-inner {
  display: flex!important;
  justify-content: center!important;
}

.elementor-element-7444775 img {
  width: 707px !important;
  height: 320px !important;
  object-fit: contain !important;
  object-position: center top !important;
  background-color: #000 !important;
  display: block;
}

.elementor-element-96168f3 .js-wb-slider .slick-list {
  overflow: hidden;

}

.wb-card-slide-teachers {
  padding: 0!important;
}

.show-more-btn {
  font-family: 'Poppins';
  font-weight: 500;
  font-style: Medium;
  font-size: 15px;
  line-height: 120%;
  letter-spacing: 0%;
  text-transform: uppercase;
  width: 135;
  height: 54;
  opacity: 1;
  gap: 8px;
  padding: 18px 30px;
  border-radius: 100px;
  margin: 30px auto 0;
  display: block;
  cursor: pointer;
  color: #000;
  font-size: 15px;
  background-color: transparent;
  border: 2px solid #E4E2E1;
}

.show-more-btn:hover {
  background-color: #E4E2E1;
  border: 2px solid #E4E2E1;
  transition: 1s;
}
.team-card h3 {
  margin-top: 25px;
  text-align: left;
}

.team-card p {
  margin-top: 10px;
  text-align: left;
}