@charset "UTF-8";
:root {
  --primaryColor: #de007c;
  --secondaryColor: #0A7FAE;
  --greytoneColor: #dcdcdc;
  --textColor: #323232;
  --textGrey: #21272A;
  --borderColor: #C5C5C5;
  --lightGrey: #F5F5F5;
  --tspaPink: #f10080;
  --bodyFont: "Open Sans", Helvetica, Arial, sans-serif;
  --serifFont: "Yeseva One", serif;
  --section-padding: 40px;
}

body {
  font-family: var(--bodyFont);
  color: var(--textColor);
  font-size: 18px;
}

html {
  scroll-behavior: smooth;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin-top: 0;
  font-family: "Yeseva One", serif;
  line-height: 1.25;
}

h1,
.h1 {
  font-size: calc(2rem + 2vw);
}

h2,
.h2 {
  font-size: calc(1.5rem + 1vw);
  margin-bottom: 1.5rem;
}

h3,
.h3 {
  font-size: calc(1rem + 0.875vw);
}

h4,
.h4 {
  font-size: calc(1rem + 0.75vw);
}

h5,
.h5 {
  font-size: calc(1rem + 0.25vw);
}

h6,
.h6 {
  font-size: 22px;
}

a,
a:hover {
  color: var(--primaryColor);
}

button {
  border: none;
  background-color: transparent;
}

.font-size-stats {
  font-size: clamp(24px, 8vmax, 160px);
  font-family: "Yeseva One";
  font-weight: 400;
  line-height: 100%;
  text-align: center;
}

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

.page-section-top {
  padding-top: 80px;
}

.page-section-bottom {
  padding-bottom: 80px;
}

.page-small-section {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}

.page-small-section-top {
  padding-top: var(--section-padding);
}

.page-small-section-bottom {
  padding-bottom: var(--section-padding);
}

.page-mini-section {
  padding-top: 20px;
  padding-bottom: 20px;
}

.margin-center {
  margin-left: auto;
  margin-right: auto;
}

.adjusted-4-anchor {
  padding-top: 96px;
  margin-top: -96px;
  display: block;
}

.scroll-margin-top {
  scroll-margin-top: 96px;
}

.container-gei {
  padding-left: 3.5rem;
  padding-right: 3.5rem;
}

.container-gei-left {
  padding-left: 3.5rem;
}

.container-gei-right {
  padding-right: 3.5rem;
}

.link-external {
  position: relative;
  display: inline-block;
}

/* Screen reader only text - visually hidden but accessible to assistive technologies */
.sr-only,
.screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border-width: 0 !important;
}

/* Screen reader only text that becomes visible on focus (for skip links) */
.sr-only-focusable:focus,
.screen-reader-text:focus {
  position: static !important;
  width: auto !important;
  height: auto !important;
  padding: inherit !important;
  margin: inherit !important;
  overflow: visible !important;
  clip: auto !important;
  white-space: normal !important;
}

.accessibility-hidden {
  position: absolute !important;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.font-bold,
strong,
.strong {
  font-weight: 700;
}

.semibold {
  font-weight: 600;
}

.uppercase {
  text-transform: uppercase;
}

.small-font {
  font-size: 14px !important;
}

.large-font {
  font-size: 20px !important;
}

.larger-font {
  font-size: 21px !important;
}

.double-rem-font {
  font-size: 2rem !important;
}

.banner-large-font {
  font-size: 1.625rem;
}

.normal-font {
  font-size: 18px !important;
}

.normal-weight {
  font-weight: 400 !important;
}

.normal-typeface {
  font-family: var(--bodyFont) !important;
}

.normal-text-e {
  font-size: 18px !important;
  font-weight: 400 !important;
  font-family: var(--bodyFont) !important;
}

.hideOnDesktop {
  display: none !important;
}

.hideOnDesktopInline {
  display: none !important;
}

.hideOnDesktopFlex {
  display: none !important;
}

.hideOnMobile {
  display: block !important;
}

.hideOnMobileFlex {
  display: flex !important;
}

.img-covered {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hover-show-on-hover {
  position: relative;
}
.hover-show-on-hover:hover .show-on-hover {
  opacity: 1;
  visibility: visible;
}

.show-on-hover {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.limited-width-content-m {
  width: 720px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.tspa-content-white-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 1.5rem;
  margin: 1.5rem auto;
}
.tspa-content-white-card ul,
.tspa-content-white-card ol {
  margin: 1rem 0;
  line-height: 1.5;
}

.gradient-clipped-text {
  background: var(--mainGradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: -moz-fit-content;
  width: fit-content;
}

.normal-link-btn {
  color: var(--textColor);
}
.normal-link-btn a {
  color: var(--textColor);
  font-weight: bold;
  text-decoration: none;
}

.tspa-btn {
  display: inline-block;
  padding: 8px 20px;
  text-align: center;
  text-decoration: none;
  border: 1px solid transparent;
  font-size: 18px;
  font-weight: 600;
  width: -moz-max-content;
  width: max-content;
  cursor: pointer;
}
.tspa-btn:hover {
  text-decoration: none;
  border: 1px solid var(--textColor);
  color: var(--textColor);
  background: #fff;
}
.tspa-btn.tspa-cta-btn {
  background: var(--primaryColor);
  color: #fff;
}
.tspa-btn.tspa-second-cta-btn {
  background-color: var(--secondaryColor);
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
  line-height: 1.618;
}
.tspa-btn.tspa-white-border-btn {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.tspa-btn.tspa-white-border-btn:hover {
  color: #000;
  background: #fff;
  border-color: #000;
}
.tspa-btn.tspa-white-btn {
  background: #fff;
  color: #173884;
  border: 1px solid #fff;
}
.tspa-btn.tspa-arrow-btn {
  width: 100%;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tspa-btn.tspa-arrow-btn::after {
  content: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.3568 6.58192L6.87392 3.24208C6.42645 2.81306 6.41722 2.09804 6.85546 1.65519L7.3629 1.15237C7.79191 0.718742 8.49309 0.718742 8.92672 1.15237L15.0482 7.27849C15.4819 7.70751 15.4819 8.40869 15.0482 8.84231L8.92672 14.9592C8.49771 15.3928 7.79652 15.3928 7.3629 14.9592L6.85546 14.4564C6.41722 14.0182 6.42645 13.3031 6.87392 12.8741L10.3568 9.53427H1.36445C0.75092 9.53427 0.257324 9.04068 0.257324 8.42714V7.68905C0.257324 7.07552 0.75092 6.58192 1.36445 6.58192H10.3568Z' fill='white'/%3E%3C/svg%3E%0A");
}
.tspa-btn.tspa-arrow-btn:hover::after {
  content: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.3568 6.58192L6.87392 3.24208C6.42645 2.81306 6.41722 2.09804 6.85546 1.65519L7.3629 1.15237C7.79191 0.718742 8.49309 0.718742 8.92672 1.15237L15.0482 7.27849C15.4819 7.70751 15.4819 8.40869 15.0482 8.84231L8.92672 14.9592C8.49771 15.3928 7.79652 15.3928 7.3629 14.9592L6.85546 14.4564C6.41722 14.0182 6.42645 13.3031 6.87392 12.8741L10.3568 9.53427H1.36445C0.75092 9.53427 0.257324 9.04068 0.257324 8.42714V7.68905C0.257324 7.07552 0.75092 6.58192 1.36445 6.58192H10.3568Z' fill='%23173884'/%3E%3C/svg%3E%0A");
}
.tspa-btn.tspa-border-btn {
  background: #fff;
  color: #000;
  border: 1px solid #000;
  position: relative;
}
.tspa-btn.tspa-border-btn:hover {
  background: #000;
  color: #fff;
}
.tspa-btn.tspa-btn-w-arrows {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tspa-btn.tspa-btn-w-arrows::after, .tspa-btn.tspa-btn-w-arrows::before {
  content: url("data:image/svg+xml,%3Csvg width='24' height='13' viewBox='0 0 24 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.86978 6.15712L0.283015 10.7439C0.194514 10.8294 0.123922 10.9316 0.0753584 11.0447C0.0267954 11.1577 0.00123262 11.2793 0.000163555 11.4023C-0.000905514 11.5254 0.0225401 11.6474 0.0691309 11.7613C0.115722 11.8752 0.184527 11.9786 0.27153 12.0656C0.358532 12.1526 0.461991 12.2214 0.57587 12.268C0.689748 12.3146 0.811765 12.338 0.934801 12.337C1.05784 12.3359 1.17943 12.3103 1.29248 12.2618C1.40553 12.2132 1.50778 12.1426 1.59326 12.0541L6.83514 6.81224C7.00886 6.63847 7.10645 6.40283 7.10645 6.15712C7.10645 5.91141 7.00886 5.67577 6.83514 5.502L1.59326 0.260113C1.41849 0.0913218 1.18443 -0.0020762 0.94147 3.50287e-05C0.698514 0.00214626 0.466105 0.0995979 0.294303 0.271401C0.1225 0.443203 0.0250483 0.675611 0.0229368 0.918568C0.0208259 1.16152 0.114224 1.39559 0.283015 1.57035L4.86978 6.15712Z' fill='currentColor'/%3E%3C/svg%3E");
  filter: invert(1);
  transition: opacity 0.3s, transform 0.3s;
}
.tspa-btn.tspa-btn-w-arrows::before {
  opacity: 0;
}
.tspa-btn.tspa-btn-w-arrows:hover {
  border-color: var(--secondaryColor);
  background: transparent;
}
.tspa-btn.tspa-btn-w-arrows:hover::before {
  opacity: 1;
  transform: translateX(1rem);
}
.tspa-btn.tspa-btn-w-arrows:hover::after {
  opacity: 0;
  transform: translateX(1rem);
}
.tspa-btn.tspa-black-btn {
  background: #000;
  color: #fff;
}

.form-btn-group {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-section-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 2rem;
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
  text-transform: uppercase;
  background: #fff;
  color: var(--secondaryColor);
  text-decoration: none;
}
.form-section-btn:hover, .form-section-btn.active {
  text-decoration: none;
  color: var(--primaryColor);
}
.form-section-btn.salon-service-btn {
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.form-section-btn.salon-service-btn .salon-service-btn-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.form-section-btn.salon-service-btn .salon-service-btn-sub {
  font-size: 18px;
  color: var(--textGrey);
  font-weight: 400;
  text-transform: none;
}

.form-left-call-link {
  color: #000;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 12px 1rem;
  gap: 0.5rem;
}

.large-btn-padding {
  padding: 12px 2rem;
}

.tspa-header-cta-btn {
  display: inline-block;
  padding: 8px 20px;
  text-decoration: none;
  border: 1px solid transparent;
  background-color: var(--se);
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
}
.tspa-header-cta-btn:hover {
  text-decoration: none;
  color: #fff;
  background: var(--secondaryColor);
}

#main_nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 20;
}
#main_nav .header-main-row {
  background-color: rgb(0, 0, 0);
}

.header-logo-svg {
  transition: filter 0.5s ease;
  margin: 4px;
}

@media (min-width: 992px) {
  .transparent_header #main_nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
  }
  .transparent_header .mega-menu-list {
    color: #fff;
    background: transparent;
  }
  .transparent_header:not(.page-on-scrolling, .mega-menu-show) #main_nav .header-main-row {
    background-color: rgba(255, 255, 255, 0);
  }
  .transparent_header:not(.page-on-scrolling, .mega-menu-show) .nav-left-main a:not(.mega-menu-list-in-box) {
    color: #fff;
  }
  .transparent_header:not(.page-on-scrolling, .mega-menu-show) .nav-right-extra a {
    color: #fff;
  }
  .transparent_header:not(.page-on-scrolling, .mega-menu-show) .tspa-header-cta-btn:hover {
    color: #fff;
  }
}
.page-on-scrolling .header-main-row,
.mega-menu-show .header-main-row {
  background-color: rgb(0, 0, 0);
  transition: background-color 0.25s ease;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}

.site-announcement-row {
  padding: 0.5rem 8px;
  background-color: var(--secondaryColor);
  color: #fff;
  justify-content: space-between;
  display: none;
  position: relative;
  z-index: 3;
}
.site-announcement-row a,
.site-announcement-row a:hover {
  color: #fff;
  text-decoration: none;
}

.site-announcement-txt-col {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-announcement-closer {
  cursor: pointer;
}

.header-main-row {
  position: relative;
  z-index: 18;
  transition: filter 0.3s ease;
}

.logo-col {
  flex: 0 1 auto;
  position: relative;
}
.logo-col a {
  display: inline-block;
  background: #000;
  padding: 5px;
  max-width: 180px;
}

.tspa-c-campus {
  position: absolute;
  bottom: 0;
  transform: translateY(calc(100% + 2px));
  font-size: 11px;
  background: #000;
  width: 100%;
  color: rgba(255, 255, 255, 0.8);
  padding: 2px;
  text-align: center;
}

.nav-left-main {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
}

nav li a {
  font-weight: 600;
  text-decoration: none;
  padding: 0.5rem 1.5rem;
  display: inline-block;
}

.header-main-row .sub-menu {
  display: none;
}

.header-nav {
  flex: 1 1 auto;
  width: 40%;
}

.tspa-salon-nav {
  display: none;
}

.nav-right-extra {
  display: flex;
  justify-content: flex-end;
}

.nav-left-main,
.nav-right-extra {
  padding: 0;
  margin: 0;
  list-style: none;
}
.nav-left-main li,
.nav-right-extra li {
  font-weight: 600;
}

.mega-menu-list {
  position: relative;
  display: flex;
  font-size: 16px;
  font-weight: 600;
  align-items: center;
  padding: 0.5rem 1rem;
  margin: 0 0.5rem;
  color: #fff;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  text-transform: uppercase;
}
.mega-menu-list::after {
  content: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%23fff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  display: inline-block;
  transition: transform 0.3s;
  margin-left: 4px;
  height: 16px;
}
.mega-menu-list.mega-menu-list-direct-link {
  color: #fff;
  border: 1px solid #fff;
}
.mega-menu-list.mega-menu-list-direct-link::after {
  display: none;
}
.mega-menu-list::before {
  content: "";
  height: 4px;
  width: calc(100% - 2rem);
  position: absolute;
  bottom: -20px;
  left: 1rem;
  background: var(--secondaryColor);
  opacity: 0;
  transition: opacity 1s ease;
}
.mega-menu-list.mega-menu-list-in-box {
  border: 1px solid #fff;
  margin-right: 1rem;
}
.mega-menu-list.mega-menu-list-in-box::before {
  display: none;
}
.mega-menu-list.mega-menu-list-in-box::after {
  display: none;
}
.mega-menu-list.mega-menu-list-in-box:hover {
  background: #fff;
  color: var(--primaryColor);
}
.mega-menu-list:hover::before {
  opacity: 1;
}

.mega-menu-show .header-main-row {
  -webkit-backdrop-filter: none;
          backdrop-filter: none;
  box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.1);
}
.mega-menu-show .mega-menu {
  display: flex;
}
.mega-menu-show li.active .mega-menu-list::before {
  opacity: 1;
}
.mega-menu-show li.active .mega-menu-list::after {
  transform: rotate(180deg);
}
.mega-menu-show li.active .mega-menu-list-in-box {
  background: #fff;
  color: var(--primaryColor);
}
.mega-menu-show .plastic-wrap {
  display: block;
}

.menu-btn-wrap {
  width: 40px;
  height: 40px;
  margin: 0;
  display: flex;
  padding: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  cursor: pointer;
  background: rgba(50, 50, 50, 0.4);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  border-radius: 50%;
}

.plastic-wrap {
  display: none;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  background-color: rgba(0, 0, 0, 0.4);
}

.full-menu {
  color: #000;
  position: fixed;
  height: 100%;
  width: 100vw;
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #fff;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 19;
  overflow-y: auto;
  transform: translateY(-120%);
  transition: transform 0.3s ease;
}
.full-menu .full-menu-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}
.full-menu .full-menu-footer-row {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: flex;
  justify-content: space-between;
}
.full-menu .full-menu-footer-cta-row {
  padding: 0 1rem 0.5rem 1rem;
  gap: 0.5rem;
}
.full-menu .full-menu-footer-cta-row a {
  width: 50%;
  font-size: 1rem;
}

.full-menu-show {
  overflow: hidden;
}
.full-menu-show #main_nav {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.full-menu-show .header-main-row {
  filter: invert(1);
}
.full-menu-show .full-menu {
  transform: translateY(0%);
}
.full-menu-show .burger-line:nth-child(2) {
  width: 0;
}
.full-menu-show .burger-line:first-child {
  width: 24px;
  transform: rotate(45deg) translate(4px, 4px);
  transform-origin: center;
}
.full-menu-show .burger-line:last-child {
  width: 24px;
  transform: rotate(-45deg) translate(5px, -5px);
  transform-origin: center;
}

.header-menu-burger-group {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.header-menu-burger-group .mobile-login-btn {
  display: none;
}

.burger-line {
  width: 24px;
  height: 2px;
  border-radius: 1px;
  background: #fff;
  margin: 2px 0;
  transition: transform 0.2s;
}

.mega-menu {
  color: #fff;
  width: 100%;
  position: relative;
  z-index: 17;
  display: none;
  justify-content: center;
  pointer-events: none;
  padding-top: var(--section-padding);
}
.mega-menu .mega-menu-layout {
  display: flex;
  gap: 20px;
}
.mega-menu .mega-menu-content {
  pointer-events: auto;
  padding: var(--section-padding);
  min-width: 680px;
  background: #000;
  color: #fff;
}
.mega-menu .mega-menu-col {
  min-width: 256px;
  max-width: 100%;
}
.mega-menu .mega-menu-col ul.menu {
  list-style: none;
  padding: 0;
}
.mega-menu .mega-menu-col ul.menu li {
  padding: 8px 0;
}
.mega-menu .mega-menu-col ul.menu li a {
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 8px 0;
}
.mega-menu .mega-menu-col ul.menu li a:hover {
  text-decoration: underline;
}
.mega-menu .mega-menu-col-2x ul.menu {
  width: 512px;
  max-width: 100%;
  -moz-column-count: 2;
       column-count: 2;
}

.mega-menu-wrap {
  display: none;
}
.mega-menu-wrap.show {
  display: block;
}

.salon-hours-list {
  font-size: 14px;
  padding-top: 0.5rem;
}
.salon-hours-list p {
  margin: 0.5rem 0;
}

.tour-btn-box-in-mega {
  height: 256px;
  width: 100%;
  background-size: cover;
  background-position: center;
}
.tour-btn-box-in-mega a {
  color: #fff;
  text-decoration: none;
}
.tour-btn-box-in-mega .tour-btn-box-in-mega-link {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  padding: 1.5rem;
}
.tour-btn-box-in-mega .tour-btn-box-in-mega-link .tspa-btn {
  padding: 0.75rem;
  width: 100%;
  color: #fff;
}

.tspa-page-banner {
  width: 100%;
  min-height: 500px;
  height: 34.725vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  color: #fff;
}
.tspa-page-banner h1 {
  font-size: calc(1.75rem + 1.5vw);
  line-height: 100%;
}
.tspa-page-banner.tspa-blog-banner {
  height: 50vw;
  color: var(--textColor);
}
.tspa-page-banner.tspa-blog-banner::before {
  display: none;
}
.tspa-page-banner .intro-video {
  width: 100%;
  height: 100%;
}
.tspa-page-banner:has(.intro-video) {
  max-height: 100vh;
}
.tspa-page-banner:has(.intro-video)::before {
  background-color: rgba(0, 0, 0, 0.4);
  background-image: none;
}
.tspa-page-banner .tspa-video-unmuted {
  cursor: pointer;
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  padding: 1rem;
  opacity: 0.67;
  transition: opacity 0.3s;
  z-index: 3;
  color: #fff;
}
.tspa-page-banner .tspa-video-unmuted:hover, .tspa-page-banner .tspa-video-unmuted.sound-on {
  opacity: 1;
}
.tspa-page-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.3);
}
.tspa-page-banner.blog-post-banner .banner-main-content {
  justify-content: center;
}
.tspa-page-banner .tspa-banner-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 900px;
}
.tspa-page-banner .banner-main-content {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.default-post-banner .banner-main-content {
  width: 66.67%;
}

.default-page-banner {
  background-color: #000;
  justify-content: flex-end;
}
.default-page-banner::before {
  content: "";
  background-image: linear-gradient(90deg, #000 50%, transparent 66.67%);
}
.default-page-banner .tspa-banner-img {
  height: 100%;
  width: auto;
}

.content-in-banner .banner-contact-link {
  color: #fff;
  text-decoration: none;
}
.content-in-banner .banner-contact-link svg {
  margin: 0 0.25rem 0 1rem;
}

.tspa_slim_banner {
  height: 425px;
  max-height: 100vw;
}

.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.tspa-breadcrumbs {
  font-size: 14px;
  line-height: 110%;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.page-banner-section-breadcrumb {
  font-size: 18px;
  color: var(--secondaryColor);
  line-height: 110%;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.links-in-banner {
  display: flex;
  gap: 1rem;
}

.banner-link-item {
  text-decoration: none;
  font-weight: 600;
  font-size: 20px;
  line-height: 150%;
  padding: 0 8px;
  color: #fff;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.banner-link-item::after {
  content: url("data:image/svg+xml,%3Csvg width='8' height='14' viewBox='0 0 8 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.25529 6.6686L0.305288 1.7186C0.209778 1.62636 0.133596 1.51601 0.0811868 1.39401C0.0287778 1.272 0.00119157 1.14078 3.77567e-05 1.008C-0.00111606 0.875224 0.0241857 0.743545 0.0744665 0.620648C0.124747 0.497752 0.199001 0.3861 0.292893 0.292207C0.386786 0.198314 0.498438 0.124061 0.621334 0.0737801C0.744231 0.0234995 0.87591 -0.00180244 1.00869 -0.000648499C1.14147 0.000505447 1.27269 0.0280914 1.39469 0.0805006C1.5167 0.13291 1.62704 0.209091 1.71929 0.304602L7.37629 5.9616C7.56376 6.14913 7.66907 6.40344 7.66907 6.6686C7.66907 6.93377 7.56376 7.18808 7.37629 7.3756L1.71929 13.0326C1.62704 13.1281 1.5167 13.2043 1.39469 13.2567C1.27269 13.3091 1.14147 13.3367 1.00869 13.3379C0.87591 13.339 0.744231 13.3137 0.621334 13.2634C0.498438 13.2131 0.386786 13.1389 0.292893 13.045C0.199001 12.9511 0.124747 12.8395 0.0744665 12.7166C0.0241857 12.5937 -0.00111606 12.462 3.77567e-05 12.3292C0.00119157 12.1964 0.0287778 12.0652 0.0811868 11.9432C0.133596 11.8212 0.209778 11.7108 0.305288 11.6186L5.25529 6.6686Z' fill='white'/%3E%3C/svg%3E%0A");
  transition: transform 0.3s ease;
}
.banner-link-item:hover {
  color: #fff;
}
.banner-link-item:hover::after {
  transform: translateX(6px);
}

.programs-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.program-link-item {
  text-decoration: none;
  font-weight: 600;
  font-size: 20px;
  line-height: 150%;
  padding: 0 8px;
  color: var(--secondaryColor);
  border-radius: 2px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: -moz-fit-content;
  width: fit-content;
  text-transform: uppercase;
}
.program-link-item::after {
  content: url("data:image/svg+xml,%3Csvg width='8' height='14' viewBox='0 0 8 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.25529 6.6686L0.305288 1.7186C0.209778 1.62636 0.133596 1.51601 0.0811868 1.39401C0.0287778 1.272 0.00119157 1.14078 3.77567e-05 1.008C-0.00111606 0.875224 0.0241857 0.743545 0.0744665 0.620648C0.124747 0.497752 0.199001 0.3861 0.292893 0.292207C0.386786 0.198314 0.498438 0.124061 0.621334 0.0737801C0.744231 0.0234995 0.87591 -0.00180244 1.00869 -0.000648499C1.14147 0.000505447 1.27269 0.0280914 1.39469 0.0805006C1.5167 0.13291 1.62704 0.209091 1.71929 0.304602L7.37629 5.9616C7.56376 6.14913 7.66907 6.40344 7.66907 6.6686C7.66907 6.93377 7.56376 7.18808 7.37629 7.3756L1.71929 13.0326C1.62704 13.1281 1.5167 13.2043 1.39469 13.2567C1.27269 13.3091 1.14147 13.3367 1.00869 13.3379C0.87591 13.339 0.744231 13.3137 0.621334 13.2634C0.498438 13.2131 0.386786 13.1389 0.292893 13.045C0.199001 12.9511 0.124747 12.8395 0.0744665 12.7166C0.0241857 12.5937 -0.00111606 12.462 3.77567e-05 12.3292C0.00119157 12.1964 0.0287778 12.0652 0.0811868 11.9432C0.133596 11.8212 0.209778 11.7108 0.305288 11.6186L5.25529 6.6686Z' fill='%230A7FAE'/%3E%3C/svg%3E%0A");
  transition: transform 0.3s ease;
}
.program-link-item:hover {
  color: var(--secondaryColor);
}
.program-link-item:hover::after {
  transform: translateX(6px);
}

.programs-row__grid {
  display: flex;
  border-radius: 1rem;
  gap: 1rem;
  overflow: hidden;
}
.programs-row__grid .programs-row__col {
  width: 33.33%;
}

.programs-row__col--center {
  background: #000;
  color: #fff;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.prefooter-section {
  height: 38.2vw;
  min-height: 500px;
  max-height: 100%;
  position: relative;
  background: #000;
  color: #fff;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.prefooter-section .prefooter-content-wrap {
  width: 100%;
  height: 100%;
  opacity: 0.8;
  background: linear-gradient(0, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  color: #fff;
}
.prefooter-section.active .prefooter-content-wrap {
  opacity: 1;
}

.prefooter-btn-group {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-weight: 600;
}
.prefooter-btn-group a,
.prefooter-btn-group .tspa-white-border-btn {
  font-size: 16px;
}

.grey-tone-section {
  background-color: #F6F6F6;
}

body .spec-slider-pagination.swiper-pagination-horizontal {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
  z-index: 2;
}
body .spec-slider-pagination.swiper-pagination-horizontal.home-programs-pagination .swiper-pagination-bullet {
  background: #fff;
}
body .spec-slider-pagination.swiper-pagination-horizontal .swiper-pagination-bullet {
  width: 36px;
  height: 4px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 0;
  opacity: 1;
}
body .spec-slider-pagination.swiper-pagination-horizontal .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--primaryColor);
}

.side-form-wrap {
  background: #fff;
  border-radius: 10px;
  padding: var(--section-padding);
  border: 1px solid var(--borderColor);
}

.home-program-section-banner {
  color: #fff;
}

.banner-as-divider-section h2 {
  font-size: calc(2rem + 2vw);
  line-height: 1;
}

.scroll-to-activate .step-col {
  opacity: 0;
  transform: translateY(20px);
}

.scroll-to-activate.active .step-col.fade-in {
  animation: fadeInUp 0.5s ease forwards;
}

.spec-home-about img {
  border-radius: 1.5rem;
  overflow: hidden;
}

.spec-home-faq-image {
  border-radius: 1.5rem;
  overflow: hidden;
}

.spec-faq-header {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 1rem;
}

.faq-toggle-all {
  cursor: pointer;
  border: 0;
  background: transparent;
  color: var(--secondaryColor);
  text-decoration: none;
  font-weight: 600;
}
.faq-toggle-all:hover {
  text-decoration: underline;
  color: var(--secondaryColor);
}

.spec-c-heading {
  margin: 0;
  border-top: 1px solid #C3C3C3;
}

.spec-c-trigger {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 0;
  background: transparent;
  padding: 0.75rem 0;
  font: inherit;
  cursor: pointer;
}
.spec-c-trigger:hover {
  outline: none;
  color: var(--secondaryColor);
}

.spec-c-icon {
  transition: transform 0.2s ease;
}

.spec-c-trigger[aria-expanded=true] .spec-c-icon {
  transform: rotate(180deg);
}

/* + → × */
.spec-c-panel {
  will-change: height;
}

.spec-c-panel-inner {
  padding: 0.5rem 2rem 1.5rem 1rem;
  line-height: 1.5;
}

.spec-c-item:has(.spec-c-trigger[aria-expanded=true]) .spec-c-trigger {
  font-weight: 600;
}

.page-main-content a {
  color: var(--tspaPink);
}
.page-main-content .wp-block-image img {
  border-radius: 1.5rem;
}

.other-programs__list {
  display: flex;
  gap: var(--section-padding);
  align-items: center;
  justify-content: center;
}

.other-programs__item {
  flex-basis: 50%;
  overflow: hidden;
  height: 400px;
}

.other-programs__link {
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  overflow: hidden;
  position: relative;
  border-radius: var(--section-padding);
  overflow: hidden;
}
.other-programs__link img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s;
}
.other-programs__link:hover img {
  transform: scale(1.1);
}

.program-card-content {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.4) 42%, rgba(0, 0, 0, 0) 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--section-padding);
}

.spec-logo-carousel-container {
  position: relative;
}
.spec-logo-carousel-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, #000 0%, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0) 80%, #000000 100%);
  z-index: 10;
  pointer-events: none;
}

.hl-w-wings {
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--bodyFont);
  font-weight: 400;
  font-size: 14px;
  line-height: 110%;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hl-w-wings::before, .hl-w-wings::after {
  width: 160px;
  height: 1px;
  background: linear-gradient(90deg, transparent, white);
  content: "";
}
.hl-w-wings::after {
  background: linear-gradient(90deg, white, transparent);
}

.logo-carousel .swiper-wrapper {
  justify-content: center;
}

.logo-carousel .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
}

.logo-carousel img {
  display: block;
  max-height: 96px;
  width: auto;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: grayscale(100%) brightness(2);
}

@media (min-width: 1280px) {
  .logo-carousel img {
    max-height: 64px;
  }
}
footer {
  background: #000;
  color: #fff;
}
footer a {
  color: #fff;
}
footer a:hover {
  color: #fff;
}
footer .footer-menu-contact-link {
  text-decoration: none;
}
footer .footer-menu-contact-link:hover {
  text-decoration: underline;
}

.spec-footer-nav-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 15px;
  max-width: 100%;
  justify-content: center;
  /* optional */
}

.spec-footer-col h3 {
  font-size: 24px;
  padding: 12px 0;
}
.spec-footer-col ul {
  padding: 0;
  text-decoration: none;
  list-style: none;
}
.spec-footer-col ul li a {
  font-size: 15px;
  display: inline-block;
  padding: 12px 0;
  width: 100%;
}
.spec-footer-col a {
  text-decoration: none;
}

.footer-nav-col-phone-link {
  padding: 1.5rem 0;
}

.tspa-footer-social-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.tspa-c-sociallinks {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.tspa-c-sociallinks a {
  padding: 4px;
}
.tspa-c-sociallinks a svg {
  width: 32px;
  height: 32px;
  color: #fff;
}

.tspa-footer-recognization {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-extra-links {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-extra-links li:not(:first-child)::before {
  content: "|";
  margin: 0 0.5rem;
}
.footer-extra-links a {
  font-weight: 600;
  text-decoration: none;
}

.uppercase-spacer-heading {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 10px;
  font-weight: 400;
  font-family: var(--bodyFont);
}

.spec-footer-credit-line {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.desktop-sticky-button-wrap {
  position: fixed;
  bottom: 0;
  right: 1.25rem;
  z-index: 20;
  pointer-events: none;
}
.desktop-sticky-button-wrap .desktop-sticky-trigger-button {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 1rem;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 0 0 auto;
  background: var(--secondaryColor);
  color: #fff;
  padding: 12px 1rem;
  border-radius: 10px;
  border: 0;
  pointer-events: auto;
  transition: opacity 0.3s ease 0.2s;
}
.desktop-sticky-button-wrap .desktop-sticky-trigger-button:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.desktop-sticky-button-wrap .desktop-sticky-promo-card {
  border: 4px solid var(--secondaryColor);
  background-color: #fff;
  border-radius: 10px;
  width: 385px;
  min-height: 570px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transform-origin: top right;
  opacity: 0;
  transform: translate(24px, 32px) scale(0.5);
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0.22s;
}
.desktop-sticky-button-wrap .desktop-sticky-promo-card::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 16.97 16.971'%3E%3Cpath fill='%23fff' d='m4.6 13.086 3.867-3.867 3.884 3.885.734-.734-3.884-3.885L13.085 4.6l-.734-.734-3.884 3.885L4.6 3.885l-.734.734 3.867 3.866-3.867 3.867Z' data-name='+'/%3E%3C/svg%3E");
  position: absolute;
  top: 1rem;
  right: 0;
  padding: 0.5rem;
  background-color: var(--secondaryColor);
  border-radius: 4px;
  pointer-events: none;
}
.desktop-sticky-button-wrap.is-open {
  pointer-events: auto;
}
.desktop-sticky-button-wrap.is-open .desktop-sticky-promo-card {
  opacity: 1;
  transform: none;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s;
}
.desktop-sticky-button-wrap.is-open .desktop-sticky-trigger-button {
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Shared styles for all instances */
.specfn-swiper .swiper-slide {
  display: flex;
  align-items: stretch;
}
.specfn-swiper .card-face.front {
  display: flex;
  width: 100%;
}
.specfn-swiper p {
  margin: 0;
}

.page-input-content ul {
  padding-left: 1.5rem;
}
.page-input-content li {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.page-input-content h2 {
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}
.page-input-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}
.page-input-content h4 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}
.page-input-content p {
  margin-bottom: 1.5rem;
}
.page-input-content a {
  color: var(--tspaPink);
}
.page-input-content .footer-social a svg {
  width: 2rem;
  width: 2rem;
  color: var(--textColor);
}
.page-input-content section {
  border-radius: 1.5rem;
}

.single-post-image-banner {
  height: 450px;
}

.single-post-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.breadcrumb {
  display: flex;
  align-items: center;
}
.breadcrumb a {
  text-decoration: none;
}
.breadcrumb svg {
  margin: 0 1rem;
}

@keyframes shine {
  from {
    transform: scale(1.25);
    filter: blur(8px) contrast(150%) brightness(150%) opacity(0.5);
  }
  to {
    transform: scale(1);
    filter: blur(0) contrast(100%) brightness(100%) opacity(1);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
}
.no-scroll {
  overflow: hidden;
}

.spec-forms-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
}
.spec-forms-modal[aria-hidden=true] {
  display: none;
}
.spec-forms-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
}
.spec-forms-modal__dialog {
  position: relative;
  width: min(720px, 92vw);
  max-height: 90vh;
  overflow: auto;
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  transform: translateY(6px);
  opacity: 0;
  transition: transform 0.24s ease, opacity 0.24s ease;
}
.spec-forms-modal[aria-hidden=false] .spec-forms-modal__dialog {
  transform: translateY(0);
  opacity: 1;
}
.spec-forms-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: 0;
  color: #000;
  background: #fff;
  line-height: 1;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  z-index: 3;
}
.spec-forms-modal__close:hover {
  opacity: 0.8;
}
.spec-forms-modal__title {
  margin: 0 0 16px;
  font-size: 1.35rem;
}
@media (min-width: 640px) {
  .spec-forms-modal__title {
    font-size: 1.5rem;
  }
}

.spec-tabs__list {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.spec-tabs__tab {
  border: 0;
  flex: 1 1 auto;
  background: #f5f5f5;
  padding: 10px 14px;
  border-radius: 1rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: background-color 0.24s ease, transform 0.24s ease;
}
.spec-tabs__tab:hover {
  transform: translateY(-1px);
  color: #000;
}
.spec-tabs__tab[aria-selected=true] {
  background: #fff;
  color: #000;
}
.spec-tabs__tab[aria-selected=true]::after {
  content: "";
  display: block;
  height: 4px;
  width: 100%;
  background: var(--secondaryColor);
  margin-top: 6px;
  bottom: 0;
  left: 0;
  right: 0;
}

@keyframes spec-tab-reveal {
  from {
    opacity: 0;
    transform: translateY(2px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* program learn tabs Basic layout */
.spec-learn-tabs {
  --slt-gap: 8px;
  --slt-border: 0;
}

.spec-learn-tabs .slt-tablist {
  display: flex;
  flex-wrap: wrap;
  gap: var(--slt-gap);
}

.spec-learn-tabs .slt-tab {
  border: var(--slt-border);
  background: #fff;
  font-size: 13.5px;
  padding: 0.5rem 0;
  cursor: pointer;
  border-radius: 0.375rem;
  font-weight: 600;
  color: var(--secondaryColor);
}
.spec-learn-tabs .slt-tab:not(:first-child)::before {
  content: "|";
  color: #000;
  margin-right: 4px;
  font-weight: normal;
}

.spec-learn-tabs .slt-tab.is-active,
.spec-learn-tabs .slt-tab[aria-selected=true] {
  background: #fff;
  outline: 0;
  /* reset */
  box-shadow: none;
  color: #000;
}

.spec-learn-tabs .slt-panels {
  margin-top: 1rem;
}

.spec-learn-tabs .slt-panel {
  border: var(--slt-border);
  border-radius: 1rem;
  overflow: hidden;
  background: var(--lightGrey);
}

.spec-learn-tabs .slt-panel[hidden] {
  display: none;
}

.spec-learn-tabs .slt-panel-inner {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
.spec-learn-tabs .slt-panel-inner .slt-content {
  padding: 1.25rem 1rem;
  line-height: 1.5;
}

.tspa-number-facts-slider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 12px;
}
.tspa-number-facts-slider * {
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .spec-page-side-col {
    position: relative;
  }
  .spec-page-side-col .page-side-form-wrap {
    position: sticky;
    top: 72px;
  }
}
.page-side-form-wrap .side-form-wrap {
  background-color: var(--lightGrey);
}

.featured-posts-ul {
  list-style: none;
  padding: 0;
}
.featured-posts-ul li {
  border-bottom: 1px solid #8B8B8B;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.featured-posts-ul li::after {
  content: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22.0717 20.0003L13.8217 28.2503C13.6626 28.404 13.5356 28.588 13.4482 28.7913C13.3609 28.9946 13.3149 29.2133 13.313 29.4346C13.3111 29.6559 13.3532 29.8754 13.437 30.0802C13.5208 30.2851 13.6446 30.4711 13.8011 30.6276C13.9576 30.7841 14.1437 30.9079 14.3485 30.9917C14.5533 31.0755 14.7728 31.1176 14.9941 31.1157C15.2154 31.1138 15.4341 31.0678 15.6374 30.9805C15.8408 30.8931 16.0247 30.7662 16.1784 30.607L25.6067 21.1786C25.9192 20.8661 26.0947 20.4422 26.0947 20.0003C26.0947 19.5584 25.9192 19.1345 25.6067 18.822L16.1784 9.39363C15.8641 9.09004 15.4431 8.92205 15.0061 8.92584C14.5691 8.92964 14.1511 9.10492 13.8421 9.41394C13.533 9.72295 13.3578 10.141 13.354 10.578C13.3502 11.015 13.5182 11.436 13.8217 11.7503L22.0717 20.0003Z' fill='%230A7FAE'/%3E%3C/svg%3E%0A");
  color: var(--secondaryColor);
}
.featured-posts-ul li:last-child {
  border-bottom: 0;
}

.post-in-list-link {
  text-decoration: none;
  color: #000;
  padding: 2rem 0;
  display: block;
  flex: 1;
}
.post-in-list-link:hover {
  color: var(--secondaryColor);
}

.post-in-list-main {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .spec-learn-tabs .slt-panel-inner {
    grid-template-columns: 1fr 2fr;
    align-items: start;
  }
}
.spec-learn-tabs .slt-photo {
  margin: 0;
  height: 100%;
}

.spec-learn-tabs .slt-photo-img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0.375rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.spec-learn-tabs .slt-title {
  margin: 0 0 0.75rem 0;
  font-size: 14px;
  font-family: var(--bodyFont);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
}

.side-advisor-card-wrap {
  background-color: #fff;
  border-radius: 1rem;
  overflow: hidden;
}

.side-advisor-verbiage {
  padding: 1.5rem;
}

.related-posts-row {
  display: grid;
  gap: 20px;
  /* Default — assume 3 cards */
  grid-template-columns: repeat(3, 1fr);
}

/* If only 2 cards exist inside */
.related-posts-row:has(> .single-post-card:nth-child(2):last-child) {
  grid-template-columns: repeat(2, 1fr);
}

.single-post-card {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 1.5rem;
  aspect-ratio: 8/5;
  position: relative;
  background-color: var(--greytoneColor);
}
.single-post-card img {
  transition: transform 0.5s ease;
}
.single-post-card a {
  position: absolute;
  text-decoration: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  color: #fff;
  padding: 1.5rem;
  background-image: linear-gradient(360deg, rgba(0, 0, 0, 0.75) 20%, rgba(0, 0, 0, 0.15) 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.single-post-card h3 {
  font-size: calc(1rem + 0.75vw);
}
.single-post-card:hover img {
  transform: scale(1.2);
}

/* testimonial carousel */
.testimonial-item-row {
  display: flex;
  gap: var(--section-padding);
  align-items: center;
  width: 565px;
  max-width: 100%;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .testimonial-item-row {
    flex-direction: column;
  }
}
.testimonial-carousel-left {
  position: relative;
}

.ttc-img-wrap {
  display: flex;
  justify-content: flex-end;
}
.ttc-img-wrap img {
  display: block;
  max-width: 205px;
  height: auto;
  border-radius: 999px;
  overflow: hidden;
}

.ttc-btn.testimonial-play {
  position: absolute;
  bottom: 0;
  right: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 0;
  background: var(--primaryColor);
  color: #fff;
  cursor: pointer;
}

.ttc-btn.testimonial-play:hover {
  opacity: 0.9;
}

.ttc-name-wrap {
  margin-top: 1rem;
}

.ttc-name {
  font-size: 24px;
  font-weight: 600;
}

.ttc-title {
  font-size: 14px;
}

.video-testimonial-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
}

.video-testimonial-modal[hidden] {
  display: none;
}

.vtm-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.vtm-dialog {
  position: relative;
  background: #111;
  padding: 0;
  width: min(90vw, 1080px);
  aspect-ratio: 16/9;
  display: grid;
  grid-template-rows: 1fr auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.vtm-body iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.vtm-close {
  border: 0;
  background: #fff;
  color: #111;
  padding: 0.75rem 1rem;
  cursor: pointer;
}

.swiper-navs-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  width: 100%;
  top: 50%;
}
.swiper-navs-wrap .swiper-button-next,
.swiper-navs-wrap .swiper-button-prev {
  position: static;
  border: 0;
  background-color: transparent;
  width: 40px;
  height: 40px;
  padding: 0;
}
.swiper-navs-wrap .swiper-button-next::after,
.swiper-navs-wrap .swiper-button-prev::after {
  content: "";
  display: none;
}

.accordion .card {
  border: 0;
  border-bottom: 1px solid #d0d0d0 !important;
  border-radius: 0;
  background-color: transparent;
}
.accordion .card .collapse {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.accordion .card-header {
  padding: 0;
  border: 0;
  background-color: transparent;
  cursor: pointer;
}
.accordion .card-header .btn-link {
  width: 100%;
  text-align: left;
  font-size: 24px;
  color: var(--textColor);
  font-weight: 400;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  border: 0;
  padding: 1rem;
  border-bottom: 1px solid transparent;
  line-height: 1.314;
  text-decoration: none;
}
.accordion .card-header .btn-link::after {
  display: block;
  content: url("data:image/svg+xml,%3Csvg width='20' height='12' viewBox='0 0 20 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 2.21509L10 10.2151L18 2.21509' stroke='%231A1A1A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  margin-right: 0px;
  transition: transform 0.2s ease 0s;
  transform: rotate(180deg);
  transform-origin: center;
}
.accordion .card-header .btn-link.collapsed::after {
  transform: rotate(0deg);
}
.accordion .card-body {
  padding: 1rem 2rem 2rem 2rem;
}
.accordion .card-body p {
  font-size: 18px;
}
.accordion .card-body p:last-child {
  margin-bottom: 0;
}

.salon-content-services-btns {
  display: flex;
  gap: 12px;
}
.salon-content-services-btns > a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 50%;
}

.side-advisor-verbiage .salon-content-services-btns {
  flex-direction: column;
  flex-wrap: wrap;
}
.side-advisor-verbiage .salon-content-services-btns .tspa-btn {
  width: 100%;
}

.contact-form-wrap {
  background: #fff;
  padding: 1rem var(--section-padding) 20px var(--section-padding);
  border-radius: 1rem;
}

.media-aspect-5w3 {
  width: 100%;
  height: auto;
  aspect-ratio: 5/3;
}
.media-aspect-5w3 iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.media-aspect-16w9 {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
.media-aspect-16w9 iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.radius-1-rem {
  border-radius: 1rem;
  overflow: hidden;
}

.post-side-cats {
  padding-left: 2rem;
}
.post-side-cats h2 {
  font-size: 24px;
  margin-bottom: 0.5rem;
}
.post-side-cats ul {
  list-style: none;
  padding: 0;
}
.post-side-cats ul a {
  text-decoration: none;
  font-size: 1rem;
  display: inline-block;
  width: 100%;
  padding: 0.125rem 0;
}

/* Logo Carousel Styles */
.logo-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.logo-carousel-wrapper {
  display: flex;
  animation: scroll linear infinite;
  will-change: transform;
}

/* Static centered mode when not enough logos */
.logo-carousel-wrapper.static {
  animation: none;
  justify-content: center;
  gap: 40px;
}

.logo-carousel:hover .logo-carousel-wrapper {
  animation-play-state: paused;
}

.logo-slide-container {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  min-width: 200px;
}

.logo-slide-container img {
  max-width: 150px;
  max-height: 80px;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 991px) {
  :root {
    --section-padding: 1.5rem;
  }
  .header-nav {
    display: none;
  }
  .hideOnMobile {
    display: none !important;
  }
  .hideOnMobileFlex {
    display: none !important;
  }
  .hideOnDesktop {
    display: block !important;
  }
  .hideOnDesktopInline {
    display: inline !important;
  }
  .hideOnDesktopFlex {
    display: flex !important;
  }
  .page-section {
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
  }
  .page-section-top {
    padding-top: var(--section-padding);
  }
  .page-section-bottom {
    padding-bottom: var(--section-padding);
  }
  .page-small-section,
  .page-mini-section {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
  .page-small-section-top {
    padding-top: 0.75rem;
  }
  .page-small-section-bottom {
    padding-bottom: 0.75rem;
  }
  .container-gei {
    padding-left: 15px;
    padding-right: 15px;
  }
  .container-gei-left {
    padding-left: 15px;
  }
  .container-gei-right {
    padding-right: 15px;
  }
  .scroll-to-activate .step-col {
    opacity: 1;
    transform: none;
  }
  .related-posts-row {
    grid-template-columns: 1fr !important;
    /* Stack on mobile/tablet */
  }
  .tspa-page-banner .banner-main-content {
    width: 100%;
  }
  .site-announcement-row {
    font-size: 14px;
    padding-top: 4px;
    padding-bottom: 4px;
  }
  .site-announcement-row .announcement-learn-more-btn {
    display: none;
  }
  .header-main-row {
    padding-top: 4px;
    padding-bottom: 4px;
  }
  .logo-col {
    display: flex;
    align-items: center;
  }
  .logo-col .header-logo-link img {
    height: 48px;
  }
  .tspa-c-campus {
    position: static;
    transform: none;
    width: auto;
    letter-spacing: 0.2em;
    font-size: 9px;
    font-weight: 500;
    text-transform: uppercase;
  }
  .menu-btn-wrap {
    background: #000;
  }
  .programs-links {
    flex-direction: column;
  }
  .form-btn-group {
    gap: 8px;
  }
  .form-section-btn {
    font-size: 18px;
    padding: 12px 20px;
  }
  .form-section-btn.salon-service-btn {
    gap: 0.5rem;
  }
  .form-section-btn.salon-service-btn .salon-service-btn-sub {
    font-size: 15px;
  }
  .side-form-wrap {
    padding-top: 1.5rem;
  }
  .side-form-wrap h2 {
    text-align: center;
    font-family: var(--bodyFont);
    font-size: 18px;
    font-weight: bold;
  }
  .home-program-section-banner {
    padding: 4rem 15px;
  }
  .page-banner-section-breadcrumb {
    font-size: 1rem;
  }
  .programs-row {
    display: flex;
    flex-direction: column;
  }
  .programs-row .programs-row__header {
    margin: 1rem 12px 0 12px;
    padding: 1.5rem 1rem 1rem;
    background-color: var(--lightGrey);
    border-radius: 1.5rem 1.5rem 0 0;
  }
  .programs-row .programs-links {
    order: 2;
    margin: 0 12px;
    padding: 1.5rem;
    background: #F5F5F5;
    border-radius: 0 0 1.5rem 1.5rem;
    gap: 0.5rem;
  }
  .programs-row .programs-links .program-link-item {
    width: 100%;
    background: #fff;
    border-radius: 8px;
    font-size: 14px;
    padding: 0.5rem 1rem;
    text-align: left;
  }
  .mobile-button-style-2,
  .normal-link-btn a {
    text-decoration: none;
    font-weight: 600;
    line-height: 150%;
    color: var(--secondaryColor);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    text-transform: uppercase;
    width: 100%;
    background: #fff;
    border-radius: 8px;
    font-size: 14px;
    padding: 0.5rem 1rem;
    text-align: left;
  }
  .mobile-button-style-2::after,
  .normal-link-btn a::after {
    content: url("data:image/svg+xml,%3Csvg width='8' height='14' viewBox='0 0 8 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.25529 6.6686L0.305288 1.7186C0.209778 1.62636 0.133596 1.51601 0.0811868 1.39401C0.0287778 1.272 0.00119157 1.14078 3.77567e-05 1.008C-0.00111606 0.875224 0.0241857 0.743545 0.0744665 0.620648C0.124747 0.497752 0.199001 0.3861 0.292893 0.292207C0.386786 0.198314 0.498438 0.124061 0.621334 0.0737801C0.744231 0.0234995 0.87591 -0.00180244 1.00869 -0.000648499C1.14147 0.000505447 1.27269 0.0280914 1.39469 0.0805006C1.5167 0.13291 1.62704 0.209091 1.71929 0.304602L7.37629 5.9616C7.56376 6.14913 7.66907 6.40344 7.66907 6.6686C7.66907 6.93377 7.56376 7.18808 7.37629 7.3756L1.71929 13.0326C1.62704 13.1281 1.5167 13.2043 1.39469 13.2567C1.27269 13.3091 1.14147 13.3367 1.00869 13.3379C0.87591 13.339 0.744231 13.3137 0.621334 13.2634C0.498438 13.2131 0.386786 13.1389 0.292893 13.045C0.199001 12.9511 0.124747 12.8395 0.0744665 12.7166C0.0241857 12.5937 -0.00111606 12.462 3.77567e-05 12.3292C0.00119157 12.1964 0.0287778 12.0652 0.0811868 11.9432C0.133596 11.8212 0.209778 11.7108 0.305288 11.6186L5.25529 6.6686Z' fill='%230A7FAE'/%3E%3C/svg%3E%0A");
    transition: transform 0.3s ease;
  }
  .full-menu-group {
    padding: 0.5rem;
  }
  .full-menu-group ul {
    margin: 0;
    list-style: none;
    padding: 0;
  }
  .full-menu-group ul li {
    margin: 6px auto;
  }
  .full-menu-group ul li a {
    color: #000;
    text-decoration: none;
    width: 100%;
    padding: 6px 8px;
    display: block;
    font-size: 15px;
    line-height: 24px;
    border-radius: 8px;
    background-color: var(--lightGrey);
  }
  .full-menu-group ul li svg {
    margin: 0 0.25rem;
    width: 15px;
    height: 15px;
  }
  .full-menu-group .full-menu-group-title {
    font-family: var(--serifFont);
    padding: 0.25rem 0;
  }
  .full-menu-location-hours p {
    margin: 0;
  }
  .full-menu-group-foldable .full-menu-group-title {
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    display: flex;
    justify-content: space-between;
    width: 100%;
    background-color: transparent;
  }
  .full-menu-group-foldable .full-menu-group-title::after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='7' fill='none' viewBox='0 0 13 7'%3E%3Cpath fill='%23000' fill-rule='evenodd' d='M5.778 6.722 0 1.344 1.444 0 6.5 4.705 11.556 0 13 1.344 7.222 6.722A1.06 1.06 0 0 1 6.5 7c-.27 0-.53-.1-.722-.278' clip-rule='evenodd'/%3E%3C/svg%3E");
    transition: transform 0.3s;
  }
  .full-menu-group-foldable.spec-footer-col .full-menu-group-title::after {
    filter: invert(1);
  }
  .full-menu-group-foldable .full-menu-group-lists {
    display: none;
    overflow: hidden;
  }
  .full-menu-group-foldable.active .full-menu-group-lists {
    display: block;
  }
  .full-menu-group-foldable.active .full-menu-group-title::after {
    transform: rotate(180deg);
  }
  .spec-footer-col h3,
  .spec-footer-col ul {
    margin-bottom: 0;
  }
  .spec-footer-col ul li a {
    padding: 6px 0;
  }
  .home .tspa-form-section {
    background: #fff;
  }
  .testimonial-carousel {
    padding-top: 1rem;
    padding-bottom: 2rem;
  }
  .t-c-r-content {
    font-size: 16px;
    text-align: center;
    padding-top: 1rem;
  }
  .ttc-name {
    font-size: 20px;
    font-weight: bold;
  }
  .swiper-navs-wrap {
    display: none;
  }
  .tspa-learn-about-us-section {
    padding: 0;
    margin-top: 1.5rem;
    background: var(--lightGrey);
  }
  .tspa-learn-about-us-section .learn-about-us-col {
    padding: 2rem 1.25rem;
  }
  .readjusted-img {
    margin-bottom: 0;
  }
  .readjusted-img img {
    border-radius: 0;
  }
  .tspa-faq-section-img-col {
    display: none;
  }
  .spec-home-about {
    gap: 0;
  }
  .tspa-faq-section {
    padding: 1rem 1.5rem;
  }
  .spec-faq-header {
    flex-wrap: nowrap;
  }
  .spec-faq-header .faq-toggle-all {
    flex-shrink: 0;
  }
  .spec-c-panel-inner {
    padding: 1rem;
    font-size: 1rem;
  }
  .prefooter-section {
    min-height: 450px;
  }
  footer {
    padding-bottom: 4rem;
  }
  .footer-main-row > .container-gei {
    padding: 0;
  }
  .spec-footer-nav-wrap {
    gap: 0;
  }
  .spec-footer-col {
    padding: 0.5rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
  }
  .footer-nav-col-phone-link {
    display: flex;
    align-items: center;
  }
  .tspa-footer-social-row {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.5rem;
  }
  .spec-footer-credit-line {
    border: 0;
  }
  .footer-extra-links {
    flex-direction: column;
  }
  .footer-extra-links li::before {
    content: "";
    display: none;
  }
  .footer-extra-links a {
    width: 100%;
    padding: 0.5rem;
    display: block;
  }
  .mobile-sticky-button-wrap {
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    z-index: 5;
  }
  .mobile-sticky-button-wrap .sticky-btn-left,
  .mobile-sticky-button-wrap .sticky-btn-right,
  .mobile-sticky-button-wrap .tspa-black-btn {
    text-transform: uppercase;
    flex: 1 1 50%;
    text-align: center;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
  }
  .mobile-sticky-button-wrap .sticky-btn-right {
    background-color: var(--primaryColor);
  }
  .mobile-sticky-button-wrap .sticky-btn-left {
    background-color: var(--secondaryColor);
  }
  .default-page-banner .tspa-banner-img {
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 767px) {
  .page-input-content h2,
  .page-input-content h3,
  .page-input-content h4,
  .page-input-content h5 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
  }
  .page-input-content p {
    margin-bottom: 0.5rem;
  }
  .spec-tabs__list {
    flex-wrap: nowrap;
  }
  .spec-tabs__tab {
    font-size: 14px;
    padding: 4px;
    border-radius: 0.5rem;
    font-weight: 700;
  }
  .spec-tabs__tab:focus-visible {
    outline: 2px solid rgba(0, 102, 255, 0.6);
    outline-offset: 2px;
  }
  .tspa-page-banner {
    max-height: unset;
    height: 148vw;
  }
  .tspa-page-banner::before {
    background-image: linear-gradient(0deg, #000 2rem, transparent 60%);
  }
  .tspa-page-banner .banner-main-content {
    padding-bottom: 2rem;
    text-align: center;
  }
  .page-template main > *:first-child,
  .spec-ss-service-section:not(#promo-section) > *:first-child {
    padding-top: 28px;
  }
  .page-template-page-ty iframe {
    max-height: 60vw;
  }
  .tspa-content-white-card {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    padding: 1rem;
  }
  .recent-posts-section h2 {
    padding: 1.5rem 1.5rem 0.5rem 1.5rem;
  }
  .dlm-service-menu-float-wrap {
    display: none;
  }
  .spec-ss-service-section .spec-salon-location {
    padding: 1rem;
    border-radius: 1rem;
    background-color: #fff;
    margin-bottom: 1rem;
    align-items: center;
  }
  #promo-section .promo-main-col {
    padding: 0;
  }
  .prefooter-content-wrap h2 {
    text-align: center;
  }
}
@media screen and (max-width: 449px) {
  :root {
    --section-padding: 12px;
  }
  h1,
  .h1,
  h2,
  .h2,
  h3,
  .h3,
  h4,
  .h4,
  h5,
  .h5,
  h6,
  .h6 {
    line-height: 1;
  }
  h1,
  .h1 {
    font-size: calc(1.75rem + 1.75vw);
  }
  h2,
  .h2 {
    font-size: calc(1.5rem + 1.5vw);
    margin-bottom: 0.75rem;
  }
  .single-post-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0;
  }
  .container-gei {
    padding-right: 12px;
    padding-left: 12px;
  }
  .container-gei-left {
    padding-left: 12px;
  }
  .container-gei-right {
    padding-right: 12px;
  }
}/*# sourceMappingURL=main.css.map */