/* ==========================================================================
   01. DESIGN TOKENS, RESET AND GLOBAL BASE
   One source of truth for html/body and shared element defaults.
   ========================================================================== */
:root {
  --color-brand: #607360;
  --color-brand-hover: #4f604f;
  --color-brand-logo: #ff931e;
  --color-brand-translucent: #607360cc;
  --color-brand-focus: #60736024;
  --color-text: #4d4d4d;
  --color-text-strong: #333;
  --color-surface: #fff;
  --color-surface-muted: #f9f9f9;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  font-family: sans-serif;
  font-size: 10px;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: clip;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333;
  background-color: #fff;
}

@supports not (overflow: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

[hidden],
template {
  display: none;
}

a {
  color: var(--color-brand);
  text-decoration: none;
  background-color: transparent;
  transition: all 0.35s;
}

img {
  display: block;
  max-width: 100%;
  border: 0;
  vertical-align: middle;
}

svg:not(:root) {
  overflow: hidden;
}

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  color: #333;
  font: inherit;
  line-height: inherit;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

nav,
nav a,
nav li,
nav ul {
  margin: 0;
  padding: 0;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto;
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
  }
}

/* ==========================================================================
   02. TYPOGRAPHY, COLOURS AND GLOBAL ELEMENTS
   ========================================================================== */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

ol,
ul {
  margin-top: 0;
  margin-bottom: 10px;
}

ol ol,
ol ul,
ul ol,
ul ul {
  margin-bottom: 0;
}

@font-face {
  font-family: fontello;
  font-style: normal;
  font-weight: 400;
  src:

    url(../fonts/fontello-5f65edb1/font/fontello.eot)
      format("eot"),
    url(../fonts/fontello-5f65edb1/font/fontello.woff)
      format("woff"),
    url(../fonts/fontello-5f65edb1/font/fontello.ttf)
      format("truetype"),
    url(../fonts/fontello-5f65edb1/font/fontello.svg#fontello)
      format("svg");
  font-display: swap;
}

nav ul {
  list-style: none;
  list-style-image: none;
}

/* ==========================================================================
   03. GRID, LAYOUT UTILITIES, BUTTONS AND SHARED HELPERS
   ========================================================================== */

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 768px) {.container {
    width: 750px;
  }
}

@media (min-width: 992px) {.container {
    width: 970px;
  }
}

@media (min-width: 1200px) {.container {
    width: 1170px;
  }
}

.row {
  margin-left: -15px;
  margin-right: -15px;
}

.col-lg-3,
.col-lg-6,
.col-md-6,
.col-md-7,
.col-sm-4,
.col-sm-12,
.col-xs-12,
.col-xs-6 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

.col-xs-6 {
  float: left;
  width: 50%;
}

.col-xs-12 {
  float: left;
  width: 100%;
}

@media (min-width: 768px) {.col-sm-4,
  .col-sm-12 {
    float: left;
  }.col-sm-4 {
    width: 33.33333333%;
  }.col-sm-12 {
    width: 100%;
  }}

@media (min-width: 992px) {.col-md-6,
  .col-md-7 {
    float: left;
  }.col-md-7 {
    width: 58.33333333%;
  }.col-md-6 {
    width: 50%;
  }}

@media (min-width: 1200px) {.col-lg-3,
  .col-lg-6 {
    float: left;
  }.col-lg-3 {
    width: 25%;
  }.col-lg-6 {
    width: 50%;
  }}

.hidden {
  display: none !important;
}

@-ms-viewport {
  width: device-width;
}

.bg_img {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.relative {
  position: relative;
}

.container_1600 {
  width: 100%;
  margin: 0 auto;
}

.container_1600 {
  max-width: 1600px;
}

.padding_10 {
  padding: 10px 0;
}

.padding_20 {
  padding: 20px 0;
}

.padding_30 {
  padding: 30px 0;
}

.padding_50 {
  padding: 50px 0;
}

.padding_70 {
  padding: 70px 0;
}

.padding_90 {
  padding: 90px 0;
}

.button {
  display: inline-block;
  margin: 0;
  padding: 7px 10px;
  text-align: center;
  color: #fff;
  cursor: pointer;
  background: var(--color-brand);
  border-radius: 0;
  border: none;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -webkit-appearance: none;
  text-transform: uppercase;
}

.button:focus,
.button:hover {
  -webkit-box-shadow: inset 0 -7rem 0 0 var(--color-brand-hover);
  box-shadow: inset 0 -7rem 0 0 var(--color-brand-hover);
  color: #fff;
}

.button_text {
  text-transform: uppercase;
}

.button_svg svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: var(--color-brand);
  vertical-align: middle;
  -webkit-transition:
    fill 0.35s,
    height 0.35s,
    width 0.35s;
  -o-transition:
    fill 0.35s,
    height 0.35s,
    width 0.35s;
  transition:
    fill 0.35s,
    height 0.35s,
    width 0.35s;
}

.button_svg span {
  font-size: 2rem;
  color: var(--color-brand);
  vertical-align: middle;
}

.button_border_white {
  padding: 7px 10px;
  border: 1px solid #fff;
  color: #fff;
  background: none;
  text-transform: uppercase;
}

.button_border_white:focus,
.button_border_white:hover {
  -webkit-box-shadow: inset 0 -7rem 0 0 var(--color-brand);
  box-shadow: inset 0 -7rem 0 0 var(--color-brand);
  color: #fff;
}

.content a:not(.button):not(.button_border) {
  color: var(--color-brand);
}

.content a:not(.button):not(.button_border):hover {
  color: var(--color-brand-hover);
}

.btn-wrapper .button {
  margin-bottom: 5px;
}

.retreatpage .title_container .button_border_white {
  display: block;
  margin-top: 30px;
  max-width: 200px;
  width: 100%;
  text-align: center;
}

.retreatpage .button_text {
  display: inline-block;
  position: relative;
}

.retreatpage .button_text svg {
  width: 2rem;
  height: 2rem;
  fill: var(--color-brand);
  vertical-align: middle;
  -webkit-transition:
    fill 0.35s,
    height 0.35s,
    width 0.35s;
  -o-transition:
    fill 0.35s,
    height 0.35s,
    width 0.35s;
  transition:
    fill 0.35s,
    height 0.35s,
    width 0.35s;
}

@media (max-width: 991px) {.retreatpage .title_container .button_border_white {
    margin: 20px auto 0;
  }
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.4;

  padding: 0.9rem 2rem;
  border-radius: 1.75rem;

  background-color: #607360;
  color: #212121;

  position: relative;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;

  transition: color 0.3s cubic-bezier(0.48, 0.04, 0.22, 0.99);
  z-index: 1;
}

.btn::before,
.btn::after {
  content: "";
  position: absolute;
  inset: -1px;
  clip-path: circle(0 at -10% 50%);
  transition: clip-path 0.7s cubic-bezier(0.48, 0.04, 0.22, 0.99);
}

.btn::before {
  background: #e17604;
  z-index: -1;
  transition-delay: 0.3s;
}

.btn::after {
  background: #545454;
  z-index: -2;
}

.btn:hover {
  color: #ffffff;
}

.btn:hover::before,
.btn:hover::after {
  clip-path: circle(160% at -10% 50%);
}

.bg-grey {
  background: #f9f9f9;
}

.bg-light {
  background: #f5f6f6;
}

.bg-neavy {
  background: #13203c;
  color: #fff;
}

.bg-brown {
  background: rgb(45, 47, 49);
  color: #fff;
}

.bg-white {
  background: #fff;
}

.text-center {
  text-align: center;
}

.title-lg {
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.title-lg.mt-0 {
  margin-top: 0;
}

.title-md {
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1;
  margin-top: 2.625rem;
  margin-bottom: 2.625rem;
}

.title-md.mt-0 {
  margin-top: 0;
}

.title-sm {
  font-size: 1.375rem;
  margin-top: 1.625rem;
  margin-bottom: 1.625rem;
}

.title-sm.mt-0 {
  margin-top: 0;
}

.title-xs {
  font-size: 1.1875rem;
  margin-top: 1.375rem;
  margin-bottom: 1.375rem;
}

.title-xs.mt-0 {
  margin-top: 0;
}

.title-xs.m-0 {
  margin: 0;
}

.fw-600 {
  font-weight: 600;
}

.accent {
  color: #607360;
}

.white {
  color: #fff;
}

.m-0 {
  margin: 0;
}

.h-100 {
  height: 100%;
}

.content-el {
  -webkit-transform: translateZ(0) translateY(20);
  transform: translateZ(0) translateY(20);
}

.flex-center-col {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.block {
  display: block;
}

.img-fit {
  -o-object-fit: cover;
  object-fit: cover;
  max-width: unset;
  width: 100%;
  height: 100%;
}

.img-fit {
  width: 100%;
  height: 100%;
}

.img-zoom {
  position: relative;
  overflow: hidden;
}

.content-xxs {
  max-width: clamp(500px, 90%, 600px);
}

.content-xs {
  max-width: clamp(520px, 90%, 720px);
}

.plus {
  display: inline-block;
  position: relative;
}

.plus:before,
.plus:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 1px;
  background-color: #212121;
  transition: transform 0.2s;
}

.plus:before {
  transform: translate3d(-50%, -50%, 0) rotate(0deg);
}

.plus:after {
  transform: translate3d(-50%, -50%, 0) rotate(90deg);
  transform-origin: 50% 50%;
}

.circle,
.line {
  -webkit-box-flex: 0;
}

.circle {
  -ms-flex: 0 0 20px;
  flex: 0 0 20px;
  height: 20px;
  width: 20px;
  background: #607360;
  clip-path: circle(50% at 50% 50%);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.3125rem;
}

.leaders-laidout .course_overview__timeline .info-timeline .circle {
  position: absolute;
  bottom: -50px;
  left: -10px;
  z-index: 2;
}

.info-timeline.is-inviewport .info-timeline__point .info-timeline__top .circle {
  transform: scale(1) rotate(0deg);
  clip-path: circle(50% at 50% 50%);
}

.flex-row {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
}

.flex-col-35-lg,
.flex-col-65-lg {
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
}

.btn-wrapper {
  margin: 20px auto;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.btn-wrapper.align-start {
  justify-content: flex-start;
}

.btn {
  display: inline-block;
  padding: 17px 30px;
  background: #607360;
  color: #212121;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 0;
}

@keyframes elasticus {
  0% {
    transform: scaleY(0);
    transform-origin: 0 0;
  }
  50% {
    transform: scaleY(1);
    transform-origin: 0 0;
  }
  50.1% {
    transform-origin: 0 100%;
  }
  100% {
    transform: scaleY(0);
    transform-origin: 0 100%;
  }
}

@media (min-width: 768px) {.grid-2.grid-2-md {
    grid-template-columns: 1fr 1fr;
  }
}


@media (min-width: 768px) {.flex-row {
    flex-flow: row wrap;
    justify-content: center;
    align-items: stretch;
  }
}

@media (min-width: 992px) {.flex-col-35-lg {
    flex: 0 0 35%;
    max-width: 35%;
    width: 35%;
  }.flex-col-65-lg {
    flex: 0 0 65%;
    max-width: 65%;
    width: 65%;
  }}

@keyframes hy-zoom-in {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* --------------------------------------------------------------------------
   Unified buttons and interactive states
   -------------------------------------------------------------------------- */
:root {
  --button-bg: #607360;
  --button-bg-hover: #4f604f;
  --button-text: #fff;
  --button-border: rgba(255, 255, 255, 0.82);
  --button-focus-ring: rgba(96, 115, 96, 0.32);
}

.button,
.btn,
.button_border_white,
.hy-lux-header__apply,
.hy-mobile-actions__book,
.hy-mobile-menu__cta,
.booking_panel_button,
.book-direct-popup .book-btn,
.course-enquiry__book {
  color: var(--button-text);
  text-decoration: none;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.button:hover,
.button:focus-visible,
.btn:hover,
.btn:focus-visible,
.button_border_white:hover,
.button_border_white:focus-visible,
.hy-lux-header__apply:hover,
.hy-lux-header__apply:focus-visible,
.hy-mobile-actions__book:hover,
.hy-mobile-actions__book:focus-visible,
.hy-mobile-menu__cta:hover,
.hy-mobile-menu__cta:focus-visible,
.booking_panel_button:hover,
.booking_panel_button:focus-visible,
.book-direct-popup .book-btn:hover,
.book-direct-popup .book-btn:focus-visible,
.course-enquiry__book:hover,
.course-enquiry__book:focus-visible {
  color: var(--button-text);
  text-decoration: none;
}

.button:focus-visible,
.btn:focus-visible,
.button_border_white:focus-visible,
.hy-lux-header__apply:focus-visible,
.hy-mobile-actions__book:focus-visible,
.hy-mobile-menu__cta:focus-visible,
.booking_panel_button:focus-visible,
.book-direct-popup .book-btn:focus-visible,
.course-enquiry__book:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
  box-shadow: 0 0 0 5px var(--button-focus-ring);
}

.button_border_white {
  border-color: var(--button-border);
  background: rgba(20, 24, 22, 0.18);
}

.button_border_white:hover,
.button_border_white:focus-visible {
  border-color: var(--button-bg);
  background: var(--button-bg);
  color: #fff;
  transform: translateY(-1px);
}

.hy-lux-header__apply,
.hy-mobile-actions__book,
.hy-mobile-menu__cta,
.booking_panel_button,
.book-direct-popup .book-btn,
.course-enquiry__book {
  background-color: var(--button-bg);
}

.hy-lux-header__apply:hover,
.hy-lux-header__apply:focus-visible,
.hy-mobile-actions__book:hover,
.hy-mobile-actions__book:focus-visible,
.hy-mobile-menu__cta:hover,
.hy-mobile-menu__cta:focus-visible,
.booking_panel_button:hover,
.booking_panel_button:focus-visible,
.book-direct-popup .book-btn:hover,
.book-direct-popup .book-btn:focus-visible,
.course-enquiry__book:hover,
.course-enquiry__book:focus-visible {
  background-color: var(--button-bg-hover);
  color: #fff;
}

/* ==========================================================================
   04. THIRD-PARTY COMPONENTS: SLICK AND MAGNIFIC POPUP
   ========================================================================== */

.slick-slider {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.slick-slider {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.slick-list,
.slick-slider {
  position: relative;
  display: block;
}

.slick-list {
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
}

.slick-slider .slick-list,
.slick-slider .slick-track {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:after,
.slick-track:before {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-dots {
  position: absolute;
  bottom: -45px;
  display: block;
  width: 100%;
  padding: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  padding: 0;
}

.slick-dots li,
.slick-dots li button {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  padding: 5px;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button:focus,
.slick-dots li button:hover {
  outline: none;
}

.slick-dots li button:focus:before,
.slick-dots li button:hover:before {
  opacity: 1;
}

.slick-dots li button:before {
  font-family: slick;
  font-size: 15px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  content: "•";
  text-align: center;
  background: none;
  border: 1px solid var(--color-brand);
  border-radius: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  background: var(--color-brand);
}

.mfp-hide {
  display: none;
}

/* ==========================================================================
   05. HEADER, DESKTOP NAVIGATION AND MOBILE MENU
   ========================================================================== */

.hy-anchor {
  position: relative;
  top: calc(-1 * 86px);
  display: block;
  visibility: hidden;
}

.hy-lux-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 5000;
  width: 100%;
  color: #ffffff;
  background: transparent;
  transition: transform 0.34s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.28s ease, box-shadow 0.28s ease;
  will-change: transform;
}

.hy-lux-header.is-hidden {
  transform: translateY(-105%);
}

.hy-lux-header.is-menu-open,
.hy-lux-header:focus-within {
  transform: translateY(0);
}

.hy-lux-header__bar {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 30px;
  min-height: 86px;
  padding: 12px clamp(22px, 4vw, 64px);
}

.hy-lux-header__brand {
  display: inline-flex;
  align-items: center;
  width: 74px;
  height: 74px;
}

.hy-lux-header__logo,
.hy-lux-header__logo svg,
.hy-mobile-menu__brand svg {
  display: block;
  width: 100%;
  height: 100%;
}

.hy-lux-header__logo--dark {
  display: none;
}

.hy-lux-header__desktop-nav {
  justify-self: center;
}

.hy-lux-header__desktop-nav,
.hy-lux-header__desktop-nav ul,
.hy-lux-header__desktop-nav li,
.hy-lux-header__desktop-nav a {
  float: none;
}

.hy-lux-header__desktop-nav > ul {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.1vw, 36px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.hy-lux-header__desktop-nav li {
  position: relative;
}

.hy-lux-header__desktop-nav a,
.hy-lux-header__desktop-nav button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hy-lux-header__desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.hy-lux-header__desktop-nav a:hover::after,
.hy-lux-header__desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.hy-lux-header__desktop-nav button svg {
  width: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.hy-lux-header__submenu {
  position: absolute;
  top: calc(100% + 5px);
  left: -20px;
  display: grid;
  min-width: 220px;
  padding: 12px 20px;
  border-top: 3px solid var(--color-brand);
  background: rgba(33, 33, 33, 0.96);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

@media (min-width: 992px) {
  .hy-has-submenu:hover .hy-lux-header__submenu,
  .hy-has-submenu.is-open .hy-lux-header__submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.hy-lux-header__submenu a {
  min-height: 38px;
  font-size: 12px;
}

.hy-lux-header__apply {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 126px;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid var(--color-brand);
  background: var(--color-brand);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hy-lux-header__apply:hover,
.hy-lux-header__apply:focus-visible {
  border-color: var(--color-brand-hover);
  background: var(--color-brand-hover);
  color: #fff;
}

.hy-desktop-languages {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid currentColor;
  color: inherit;
}

.hy-desktop-languages a {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.09em;
  opacity: 0.68;
}

.hy-desktop-languages a.is-active,
.hy-desktop-languages a:hover,
.hy-desktop-languages a:focus-visible {
  color: var(--color-brand);
  opacity: 1;
}

.hy-desktop-languages > span {
  opacity: 0.42;
}

.hy-lux-header.is-scrolled,
.hy-lux-header.stick {
  background: rgba(255, 255, 255, 0.97);
  color: #212121;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.09);
}

.hy-lux-header.is-scrolled .hy-lux-header__bar,
.hy-lux-header.stick .hy-lux-header__bar {
  min-height: 70px;
  padding-top: 6px;
  padding-bottom: 6px;
}

.hy-lux-header.is-scrolled .hy-lux-header__brand,
.hy-lux-header.stick .hy-lux-header__brand {
  width: 58px;
  height: 58px;
}

.hy-lux-header.is-scrolled .hy-lux-header__logo--light,
.hy-lux-header.stick .hy-lux-header__logo--light {
  display: none;
}

.hy-lux-header.is-scrolled .hy-lux-header__logo--dark,
.hy-lux-header.stick .hy-lux-header__logo--dark {
  display: block;
}

.hy-lux-header__toggle,
.hy-mobile-actions,
.hy-mobile-menu {
  display: none;
}

@media (max-width: 991px) {
  .hy-lux-header {
    height: 64px;
    background: transparent;
    box-shadow: none;
    transform: none;
  }
  .hy-lux-header__bar,
  .hy-lux-header__desktop-nav,
  .hy-lux-header__apply,
  .hy-desktop-languages {
    display: none;
  }
  .hy-mobile-actions {
    position: relative;
    z-index: 5300;
    display: grid;
    grid-template-columns: minmax(155px, 1.8fr) repeat(4, 64px);
    width: 100%;
    height: 64px;
    background: #683f44;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }
  .hy-mobile-actions > a,
  .hy-mobile-actions > button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    height: 64px;
    padding: 0;
    border: 0;
    border-right: 1px solid #607360;
    background: transparent;
    color: #fff;
  }
  .hy-mobile-actions__book {
    background: #607360;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.01em;
    text-transform: uppercase;
  }

  .hy-mobile-actions__book:hover,
  .hy-mobile-actions__book:focus-visible {
    background: #536653;
    color: #fff;
  }
  .hy-mobile-actions > a:nth-child(2),
  .hy-mobile-actions > a:nth-child(3),
  .hy-mobile-actions__toggle {
    background: #fef3ed;
    color: #607360;
  }
  .hy-mobile-actions > a:nth-child(2):hover,
.hy-mobile-actions > a:nth-child(3):hover,
.hy-mobile-actions__toggle:hover {
    background: #607360;
    color: #ffffff;
    border-color: #607360;
    transition: all 0.3s ease;
}
.hy-mobile-actions > a:nth-child(4) {
    background: #607360;
    color: #fff;
  }
  .hy-mobile-actions > a:hover,
  .hy-mobile-actions > a:focus-visible,
  .hy-mobile-actions > button:hover,
  .hy-mobile-actions > button:focus-visible {
    background: #fff;
    color: #212121;
  }
  .hy-mobile-actions svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .hy-mobile-actions__toggle {
    display: block;
  }
  .hy-mobile-actions__toggle span {
    position: absolute;
    left: 50%;
    display: block;
    width: 31px;
    height: 2px;
    margin-left: -15.5px;
    background: currentColor;
    transition: top 0.24s ease, transform 0.24s ease, opacity 0.18s ease, width 0.24s ease;
  }
  .hy-mobile-actions__toggle span:nth-child(1)
   { top: 20px; }

   .hy-mobile-actions__toggle span:nth-child(2)
    { top: 31px; }

    .hy-mobile-actions__toggle span:nth-child(3)
     { top: 42px; width: 24px; margin-left: -12px; }

     .hy-mobile-actions__toggle[aria-expanded="true"] span:nth-child(1)
      { top: 31px; transform: rotate(45deg); }

    .hy-mobile-actions__toggle[aria-expanded="true"] span:nth-child(2)
    { opacity: 0; }

    .hy-mobile-actions__toggle[aria-expanded="true"] span:nth-child(3)
     { top: 31px; width: 31px; margin-left: -15.5px; transform: rotate(-45deg); }

     .hy-mobile-menu {
    position: fixed;
    top: 64px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 5200;
    display: block;
    width: 100%;
    height: calc(100dvh - 64px);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: rgba(15, 15, 15, 0.9);
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.35s cubic-bezier(0.7, 0, 0.3, 1);
    backdrop-filter: blur(8px) saturate(115%);
    scrollbar-width: none;
  }
  

  .hy-mobile-menu::-webkit-scrollbar,
  .hy-mobile-menu__inner::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }

  .hy-mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  .hy-mobile-menu__legacy-top {
    display: none;
  }


  .hy-mobile-language__options,
  .hy-mobile-menu__accordion > ul {
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.28s ease, opacity 0.2s ease, visibility 0.2s ease, padding-bottom 0.28s ease;
  }

  .hy-mobile-menu__accordion.is-open > ul {
    max-height: 160px;
     padding-bottom: 10px;
      opacity: 1;
       visibility: visible;
       }

       .hy-mobile-menu nav,
  .hy-mobile-menu__list,
  .hy-mobile-menu__list li,
  .hy-mobile-menu__list a,
  .hy-mobile-menu__list button {
    float: none;
  }

  .hy-mobile-menu__list {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .hy-mobile-menu__list > li {
    display: block;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .hy-mobile-menu__list a,
  .hy-mobile-menu__list button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 49px;
    padding: 0 5px;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.94);
    font: inherit;
    font-size: 13px;
    letter-spacing: 0.075em;
    text-align: left;
    text-transform: uppercase;
  }

  .hy-mobile-menu__list a:hover,
  .hy-mobile-menu__list a:focus-visible,
  .hy-mobile-menu__list button:hover,
  .hy-mobile-menu__list button:focus-visible,
  .hy-mobile-menu__accordion.is-open > button {
        color: #fff;
    stroke: #fff;
  }



  .hy-mobile-menu__list button svg {
    width: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    transition: transform 0.25s ease;
  }

  .hy-mobile-menu__accordion.is-open > button svg {
     transform: rotate(180deg);
    }

    .hy-mobile-menu__accordion > ul > li {
      display: block;
      width: 100%;
       border-top: 1px solid rgba(255, 255, 255, 0.09);
       }

       .hy-mobile-menu__accordion > ul a {
         min-height: 46px;
          padding-left: 24px;
           color: rgba(255, 255, 255, 0.7);
            font-size: 12px;
           }

           .hy-mobile-menu__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 60px;
    margin: 24px 0 12px;
    border: 1px solid var(--color-brand);
    background: var(--color-brand);
    color: #212121;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .hy-mobile-menu__cta:hover,
  .hy-mobile-menu__cta:focus-visible {
    border-color: rgba(255, 255, 255, 0.72);
    background: transparent;
    color: #fff;
  }

  .hy-mobile-menu__note {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .hy-lux-header,
  .hy-mobile-actions,
  .hy-mobile-actions > a,
  .hy-mobile-actions > button {
     height: 58px;
     }

     .hy-mobile-menu {
      top: 58px;
       height: calc(100dvh - 58px);
      }

      .hy-mobile-actions {
         grid-template-columns: minmax(130px, 1fr) repeat(3, 54px);
         }

         .hy-mobile-actions__book { font-size: 13px;
         }

         .hy-mobile-actions svg {
           width: 21px;
            height: 21px;
           }

           .hy-mobile-actions__toggle span:nth-child(1) {
             top: 17px;
             }

             .hy-mobile-actions__toggle span:nth-child(2) {
               top: 28px;
               }
               .hy-mobile-actions__toggle span:nth-child(3) {
                 top: 39px;
                }
                .hy-mobile-actions__toggle[aria-expanded="true"] span:nth-child(1),
  .hy-mobile-actions__toggle[aria-expanded="true"] span:nth-child(3) {
     top: 28px;
     }
    }

@media (prefers-reduced-motion: reduce) {.hy-lux-header,
  .hy-lux-header *,
  .hy-mobile-menu {
    transition-duration: 0.01ms;
  }
}

/* =====================================================
   HEADER REFINEMENTS: DESKTOP, MOBILE DRAWER AND COURSE POPUP
   Palette and transparency follow the supplied reference.
===================================================== */
.hy-lux-header {
  transition: transform .34s cubic-bezier(.4,0,.2,1), background-color .28s ease, box-shadow .28s ease;
  will-change: transform;
}
.hy-lux-header.is-hidden { transform: translateY(-105%); }
.hy-lux-header.is-menu-open,
.hy-lux-header:focus-within { transform: translateY(0); }

/* Desktop header: transparent over hero, compact and balanced. */
@media (min-width: 992px) {
  .hy-lux-header {
    background: linear-gradient(180deg, rgba(20,24,22,.54), rgba(20,24,22,0));
    box-shadow: none;
  }
  .hy-lux-header__bar {
    grid-template-columns: 90px minmax(0,1fr) auto auto;
    gap: clamp(18px,2vw,30px);
    min-height: 86px;
    padding-inline: clamp(24px,3.2vw,52px);
  }
  .hy-lux-header__desktop-nav > ul { gap: clamp(16px,1.7vw,30px); }
  .hy-lux-header__desktop-nav a,
  .hy-lux-header__desktop-nav button { color: #fff; }
  .hy-lux-header__desktop-nav a:hover,
  .hy-lux-header__desktop-nav a:focus-visible,
  .hy-lux-header__desktop-nav button:hover,
  .hy-lux-header__desktop-nav button:focus-visible,
  .hy-desktop-languages a:hover,
  .hy-desktop-languages a:focus-visible,
  .hy-desktop-languages a.is-active { color: #d7dfd7; }
  .hy-lux-header__desktop-nav a::after { background: #d7dfd7; }
  .hy-lux-header.is-scrolled,
  .hy-lux-header.stick {
    background: rgba(67,75,72,.92);
    color: #fff;
    box-shadow: 0 5px 24px rgba(0,0,0,.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  .hy-lux-header.is-scrolled .hy-lux-header__logo--dark,
  .hy-lux-header.stick .hy-lux-header__logo--dark { display: none; }
  .hy-lux-header.is-scrolled .hy-lux-header__logo--light,
  .hy-lux-header.stick .hy-lux-header__logo--light { display: block; }
}

/* Reference-style mobile action header. */
@media (max-width: 991px) {
  .hy-lux-header__bar { display: none; }
  .hy-lux-header {
    position: fixed;
    inset: 0 0 auto;
    height: 64px;
    background: transparent;
    box-shadow: none;
  }
  .hy-lux-header.is-menu-open,
  .hy-lux-header:has(.hy-mobile-menu.is-open) { transform: none; }
  .hy-mobile-actions {
    position: relative;
    z-index: 5300;
    display: grid;
    grid-template-columns: minmax(0,1fr) repeat(4,64px);
    width: 100%;
    max-width: 100vw;
    height: 64px;
    margin: 0;
    overflow: hidden;
    background: #727d87;
  }
  .hy-mobile-actions > a,
  .hy-mobile-actions > button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    height: 64px;
    padding: 0;
    border: 0;
    border-right: 1px solid rgba(255,255,255,.14);
    background: transparent;
    color: #fff;
  }
  .hy-mobile-actions__book {
    background: #607360;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: .035em;
    text-transform: uppercase;
  }
  .hy-mobile-actions > a:nth-child(2),
  .hy-mobile-actions > a:nth-child(3),
  .hy-mobile-actions__toggle { background: #727d87; }
  .hy-mobile-actions > a:nth-child(4) { background: #8b292d; }

.hy-mobile-actions > a:hover,
.hy-mobile-actions > a:focus-visible,
.hy-mobile-actions > button:hover,
.hy-mobile-actions > button:focus-visible,
.hy-mobile-actions__toggle,
.hy-mobile-actions__toggle:active,
.hy-mobile-actions__toggle[aria-expanded="true"] {
    color: #fff;
    background: transparent;
    filter: none;
    box-shadow: none;
    outline: none;
}



  .hy-mobile-actions svg {
    width: 24px; height: 24px; fill: none; stroke: #fff;
    stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  }
  .hy-mobile-actions__toggle { display: block; }
  .hy-mobile-actions__toggle span {
    position: absolute; left: 50%; display: block; width: 31px; height: 2px;
    margin-left: -15.5px; background: currentColor;
    transition: top .24s ease, transform .24s ease, opacity .18s ease, width .24s ease;
  }
  .hy-mobile-actions__toggle span:nth-child(1) { top: 20px; }
  .hy-mobile-actions__toggle span:nth-child(2) { top: 31px; }
  .hy-mobile-actions__toggle span:nth-child(3) { top: 42px; width: 24px; margin-left: -12px; }
  .hy-mobile-actions__toggle[aria-expanded="true"] span:nth-child(1) { top: 31px; transform: rotate(45deg); }
  .hy-mobile-actions__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .hy-mobile-actions__toggle[aria-expanded="true"] span:nth-child(3) { top: 31px; width: 31px; margin-left: -15.5px; transform: rotate(-45deg); }

  .hy-mobile-menu {
    position: fixed;
    top: 64px; right: 0; bottom: 0; left: 0;
    z-index: 5200;
    display: block;
    width: 100%;
    height: calc(100dvh - 64px);
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    color: #fff;
    background: linear-gradient(135deg, rgba(108,117,126,.94), rgba(82,94,91,.9));
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: transform .32s ease, opacity .25s ease, visibility .25s ease;
  }
  .hy-mobile-menu.is-open { opacity: 1; visibility: visible; transform: translateX(0); }
  .hy-mobile-menu__legacy-top { display: none; }

  .hy-mobile-language { width: 100%; margin: 0 0 12px; border: 1px solid rgba(255,255,255,.76); background: rgba(255,255,255,.03); }
  .hy-mobile-menu nav,
  .hy-mobile-menu__list,
  .hy-mobile-menu__list > li { display: block; float: none; width: 100%; }
  .hy-mobile-menu__list { margin: 0; padding: 0; }
  .hy-mobile-menu__list > li { border-bottom: 1px solid rgba(255,255,255,.16); }
  .hy-mobile-menu__list a,
  .hy-mobile-menu__list button { float: none; width: 100%; min-height: 49px; padding: 0 5px; color: #fff; font-size: 13px; letter-spacing: .075em; }
  .hy-mobile-menu__list a:hover,
  .hy-mobile-menu__list a:focus-visible,
  .hy-mobile-menu__list button:hover,
  .hy-mobile-menu__list button:focus-visible,
  .hy-mobile-language__options a:hover,
  .hy-mobile-language__options a:focus-visible { color: #d7dfd7; background: rgba(255,255,255,.07); }
  .hy-mobile-menu__accordion > ul,
  .hy-mobile-menu__accordion > ul > li { width: 100%; }
  .hy-mobile-menu__accordion > ul > li { border-top: 1px solid rgba(255,255,255,.12); }
  .hy-mobile-menu__accordion > ul a { min-height: 48px; padding-left: 24px; color: rgba(255,255,255,.82); }
  .hy-mobile-menu__cta { width: 100%; min-height: 58px; margin: 24px 0 12px; background: #607360; color: #fff; font-weight: 700; }
  .hy-mobile-menu__cta:hover,
  .hy-mobile-menu__cta:focus-visible { background: #4f604f; color: #fff; }
}

@media (max-width: 520px) {
  .hy-lux-header { height: 58px; }
  .hy-mobile-actions { grid-template-columns: minmax(0,1fr) repeat(4,54px); height: 58px; }
  .hy-mobile-actions > a,
  .hy-mobile-actions > button { height: 58px; }
  .hy-mobile-actions__book { font-size: 13px; }
  .hy-mobile-actions svg { width: 21px; height: 21px; }
  .hy-mobile-actions__toggle span:nth-child(1) { top: 17px; }
  .hy-mobile-actions__toggle span:nth-child(2) { top: 28px; }
  .hy-mobile-actions__toggle span:nth-child(3) { top: 39px; }
  .hy-mobile-actions__toggle[aria-expanded="true"] span:nth-child(1),
  .hy-mobile-actions__toggle[aria-expanded="true"] span:nth-child(3) { top: 28px; }
  .hy-mobile-menu { top: 58px; height: calc(100dvh - 58px); }
}

/* Course detail popup: aligned with the top of the booking card. */
@media (min-width: 768px) {
  .book-direct-popup {
    top: 0;
    right: calc(100% + 18px);
    width: 450px;
    max-width: calc(100vw - 390px);
    padding: 30px;
    border-top: 7px solid #607360;
    background: rgba(108,117,126,.80);
    color: #fff;
    text-align: left;
    box-shadow: 0 14px 36px rgba(0,0,0,.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  .book-direct-popup::after {
    top: 0;
    border-left-color: rgba(108,117,126,.80);
  }
  .book-direct-popup h3 { margin: 0 0 18px; font-size: 26px; font-weight: 300; }
  .book-direct-popup p { margin-bottom: 10px; font-size: 13px; line-height: 1.4; }
  .book-direct-popup .close-btn { top: 8px; left: 8px; width: 32px; height: 32px; }
  .book-direct-popup .book-btn { min-width: 150px; min-height: 44px; margin-top: 20px; background: #607360; }
  .book-direct-popup .book-btn:hover,
  .book-direct-popup .book-btn:focus-visible { background: #4f604f; color: #fff; }
}

@media (max-width: 767px) {
  .book-direct-popup,
  #main-content > .booking-holder .book-direct-popup {
    top: 72px;
    right: 14px;
    bottom: 14px;
    left: 14px;
    width: auto;
    padding: 44px 22px 26px;
    border-top: 7px solid #607360;
    background: rgba(108,117,126,.96);
    box-shadow: 0 18px 50px rgba(0,0,0,.28);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .book-direct-popup::after { display: none; }
  .book-direct-popup h3 { font-size: 24px; }
  .book-direct-popup .close-btn { position: absolute; top: 7px; left: 7px; margin: 0; background: transparent; }
}

/* Remove legacy orange hover accents. */
a:hover, a:focus-visible { text-decoration-color: currentColor; }
.course-more-link:hover,
.course-more-link:focus-visible,
.booking_reasons:hover,
.booking_reasons:focus-visible { color: #4f604f; }

@media (prefers-reduced-motion: reduce) {
  .hy-lux-header,
  .hy-mobile-menu,
  .hy-mobile-actions__toggle span { transition: none; }
}

/* =====================================================
   HEADER REFINEMENTS: MOBILE WIDTH, SUBMENUS AND ACTION TILES
===================================================== */
@media (max-width: 991px) {
  .hy-lux-header,
  .hy-mobile-actions,
  .hy-mobile-menu {
    box-sizing: border-box;
    max-width: 100%;
  }

  .hy-lux-header {
    right: 0;
    left: 0;
    width: 100%;
  }

  .hy-mobile-actions {
    grid-template-columns: minmax(0, 1fr) repeat(4, 64px);
    width: 100%;
    max-width: none;
    overflow: visible;
  }

  .hy-mobile-actions > :last-child {
    border-right: 0;
  }

  /* Phone + email use blue-grey; WhatsApp uses the reference burgundy tile. */
  .hy-mobile-actions > a:nth-child(2),
  .hy-mobile-actions > a:nth-child(3),
  .hy-mobile-actions__toggle {
    background: #727d87;
  }

  .hy-mobile-actions > a:nth-child(4) {
    background: #8b292d;
  }

  .hy-mobile-menu {
    right: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
  }

  /* Reference submenu: dark charcoal rows under the blue-grey main item. */
  .hy-mobile-menu__accordion > ul {
    margin: 0 -20px;
    width: calc(100% + 40px);
    background: #2d2f31;
  }

  .hy-mobile-menu__accordion > ul > li {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #2d2f31;
  }

  .hy-mobile-menu__accordion > ul a {
    min-height: 48px;
    padding: 0 32px;
    color: #fff;
    background: #2d2f31;
  }

  .hy-mobile-menu__accordion > ul a:hover,
  .hy-mobile-menu__accordion > ul a:focus-visible {
    color: #fff;
    background: #252729;
  }
}

@media (max-width: 520px) {
  .hy-mobile-actions {
    grid-template-columns: minmax(0, 1fr) repeat(4, 54px);
  }
}

/* Smooth course-inclusions popup. Display stays enabled so opacity can animate. */
.book-direct-popup {
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(18px, -8px, 0) scale(0.975);
  transform-origin: top right;
  transition:
    opacity 0.28s ease,
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0.34s;
  will-change: opacity, transform;
}

.book-direct-popup.is-open {
  display: block;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
  transition-delay: 0s;
}

@media (max-width: 767px) {
  .book-direct-popup {
    transform: translate3d(0, 18px, 0) scale(0.985);
    transform-origin: center top;
  }

  .book-direct-popup.is-open {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .book-direct-popup,
  .book-direct-popup.is-open {
    transition: none;
    transform: none;
  }
}

/* ==========================================================================
   06. HERO, COURSE SUMMARY, BOOKING PANEL AND FEATURE ICONS
   ========================================================================== */

/* --------------------------------------------------------------------------
   06.1 Hero media / background
   -------------------------------------------------------------------------- */

.retreatpage .header_image_wrapper,
.retreatpage .header_images {
  position: relative;
  display: block;
  min-height: 780px;
  height: 780px;
  overflow: hidden;
  background: #212121;
}

.header_images {
  z-index: 10;
}

.retreatpage .header_video,
.retreatpage .header_video__el,
.retreatpage .header_images .overla,
.retreatpage .header_images .overlay {
  display: block;
  visibility: visible;
}

.retreatpage .header_video {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.retreatpage .header_video__el {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.retreatpage .header_images .overla {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.retreatpage .header_images.video-ready .overla {
  opacity: 0;
  transition: opacity 0.35s ease;
}

.retreatpage .header_images .overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: #0000006b;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   06.2 Hero content
   HTML:
   .header_container > .pnlText > .text_wrapper >
   .title_container.custom-heading
   -------------------------------------------------------------------------- */

.retreatpage .header_images .header_container {
  position: absolute;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 0;
  z-index: 40;
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  color: #fff;
  visibility: visible;
  opacity: 1;
  transform: translateY(-50%);
}

.retreatpage .header_images .header_container,
.retreatpage .header_images .header_container * {
  visibility: visible;
  opacity: 1;
}

.retreatpage .header_container .title_container {
  width: min(66%, 1040px);
  margin: 0 0 0 clamp(34px, 4vw, 70px);
  padding: 0;
  text-align: left;
  letter-spacing: 0;
}

.retreatpage .header_container .title_container h1 {
  display: block;
  margin: 0;
  color: #fff;
  font-size: clamp(20px, 1.7vw, 28px);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.retreatpage .header_container .title_container h3 {
  display: block;
  margin: 0;
  padding: 14px 0 18px;
  max-width: 880px;
  color: #fff;
  font-size: clamp(36px, 3.6vw, 58px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.02em
}


.retreatpage .header_container .title_container .panel_text {
  display: block;
  max-width: 760px;
  color: #fff;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0.08em;
}

.retreatpage .header_container .title_container .button_border_white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: none;
  margin-top: 28px;
  padding: 10px 18px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.82);
  font-size: 15px;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  visibility: visible;
  opacity: 1;
}



/* Legacy optional hero video button */
.retreatpage .header_container .video_container {
  display: block;
}

.retreatpage .header_container .video_container svg {
  width: 100px;
  height: 100px;
  fill: #fff;
  transition: fill 0.35s, height 0.35s, width 0.35s;
}

.retreatpage .header_container .video_container .button_text {
  display: block;
  color: #fff;
}

/* Legacy split-column separator retained for templates using two text columns */
.retreatpage
  .header_images
  .header_container
  .text_wrapper:nth-child(2n + 2)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: calc(100vh - 300px);
  background-color: hsla(0, 0%, 100%, 0.2);
  transform: translateY(-45%);
}

.retreatpage .header_images .header_container .text_wrapper .button_text,
.retreatpage .header_images .header_container .text_wrapper span.button_text {
  font-size: 2rem;
}

/* --------------------------------------------------------------------------
   06.3 Feature icons
   -------------------------------------------------------------------------- */

.retreatpage .icons_container {
  position: absolute;
  z-index: 89;
  width: 100%;
  height: auto;
  margin: 0 auto;
  color: #fff;
  text-align: center;
  transform: translateY(-60%);
}

.retreatpage .icons_container .icons_wrapper {
  position: relative;
  display: inline-block;
  padding: 50px 0;
  background: #fff;
}

.retreatpage .icons_container .icons_wrapper .icon_wrapper {
  display: block;
  min-height: 150px;
  border-right: 1px solid #e2edf2;
  text-align: center;
  text-decoration: none;
}

.retreatpage .icons_container .icons_wrapper .icon_wrapper h4 {
  margin-top: 30px;
  color: #010606;
  font-weight: 600;
  text-transform: uppercase;
}

.retreatpage .icons_container .icons_wrapper .icon_wrapper svg {
  width: 5rem;
  height: 5rem;
  fill: var(--color-brand);
  transition: fill 0.35s, height 0.35s, width 0.35s;
}

.retreatpage .icons_container .icons_wrapper .icon_wrapper .panel_text {
  padding: 0 20px;
  color: #4d4d4d;
  font-size: 1.4rem;
}

.retreatpage .icons_container .icons_wrapper .icon_wrapper:last-child {
  border-right: 0;
}

/* --------------------------------------------------------------------------
   06.4 Hero responsive rules
   -------------------------------------------------------------------------- */

/* Small laptops */
@media (min-width: 992px) and (max-width: 1199px) {
  .retreatpage .header_container .title_container {
    width: calc(100% - 390px);
    max-width: 700px;
    margin-left: 35px;
    padding-right: 25px;
  }

  .retreatpage .header_container .title_container h1 {
    font-size: clamp(16px, 2vw, 22px);
  }

  .retreatpage .header_container .title_container h3 {
    max-width: 650px;
    padding: 8px 0 16px;
    font-size: clamp(32px, 4.2vw, 50px);
  }

  .retreatpage .header_container .title_container .panel_text {
    max-width: 650px;
    font-size: 14px;
  }

  .retreatpage
    .header_images
    .header_container
    .text_wrapper:first-child::after {
    height: calc(100vh - 500px);
    transform: translateY(-35%);
  }

  .retreatpage .icons_container {
    transform: translateY(-15%);
  }

  .retreatpage .icons_container .icons_wrapper {
    padding: 0;
  }

  .retreatpage .icons_container .icons_wrapper .icon_wrapper {
    margin-bottom: 0;
    padding: 20px 0;
    border-bottom: 1px solid #e2edf2;
  }

  .retreatpage .icons_container .icons_wrapper .icon_wrapper:nth-child(2n + 2) {
    border-right: 0;
  }

  .retreatpage .icons_container .icons_wrapper .icon_wrapper:nth-child(2n + 3) {
    border-bottom: 0;
  }
}

/* Portrait tablets */
@media (min-width: 768px) and (max-width: 991px) {
  .retreatpage .header_image_wrapper,
  .retreatpage .header_images {
    min-height: 680px;
    height: 680px;
  }

  .retreatpage .header_images .header_container {
    top: 52%;
  }

  .retreatpage .header_container .title_container {
    width: calc(100% - 340px);
    max-width: none;
    margin: 0 0 0 25px;
    padding-right: 18px;
    text-align: left;
  }

  .retreatpage .header_container .title_container h1 {
    font-size: clamp(14px, 2.2vw, 18px);
    line-height: 1.35;
    letter-spacing: 0.1em;
  }

  .retreatpage .header_container .title_container h3 {
    padding: 10px 0 15px;
    font-size: clamp(29px, 4.6vw, 40px);
  }

  .retreatpage .header_container .title_container .panel_text {
    max-width: 100%;
    font-size: 13px;
    line-height: 1.5;
  }

  .retreatpage .header_container .title_container .button_border_white {
    margin-top: 20px;
  }

  .retreatpage .header_container .video_container {
    padding-top: 30px;
  }

  .retreatpage .header_container .video_container svg {
    width: 70px;
    height: 70px;
  }

  .retreatpage .icons_container {
    transform: translateY(-5%);
  }

  .retreatpage .icons_container .icons_wrapper .icon_wrapper {
    min-height: 250px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .retreatpage .header_image_wrapper,
  .retreatpage .header_images {
    min-height: 600px;
    height: 600px;
  }

  .retreatpage .header_images .header_container {
    top: 52%;
  }

  .retreatpage .header_container .title_container {
    width: calc(100% - 40px);
    max-width: 620px;
    margin: 0 auto;
    padding: 0;
    text-align: center;
  }

  .retreatpage .header_container .title_container h1 {
    font-size: clamp(14px, 4vw, 18px);
    line-height: 1.3;
  }

  .retreatpage .header_container .title_container h3 {
    max-width: 520px;
    margin: 0 auto;
    padding: 16px 0;
    font-size: clamp(28px, 7vw, 38px);
  }

  .retreatpage .header_container .title_container .panel_text {
    max-width: 440px;
    margin: 0 auto;
    font-size: 13px;
    line-height: 1.5;
  }

  .retreatpage .header_container .title_container .button_border_white {
    margin: 22px auto 0;
  }

  .retreatpage .icons_container .icons_wrapper .icon_wrapper {
    min-height: 300px;
  }
}

/* Small mobile */
@media (max-width: 520px) {
  .retreatpage .header_images .header_container {
    top: 51%;
  }

  .retreatpage .header_container .title_container {
    width: calc(100% - 32px);
  }

  .retreatpage .header_container .title_container h3 {
    max-width: 320px;
    font-size: clamp(26px, 8vw, 34px);
  }

  .retreatpage .header_container .title_container .panel_text {
    max-width: 320px;
  }

  .retreatpage .header_container .title_container .button_border_white {
    max-width: 220px;
    padding: 10px 18px;
    font-size: 13px;
  }
}

@media (max-width: 360px) {
  .retreatpage .header_container .title_container {
    width: calc(100% - 24px);
  }

  .retreatpage .header_container .title_container h1 {
    font-size: 14px;
  }

  .retreatpage .header_container .title_container h3 {
    max-width: 260px;
    font-size: 28px;
  }

  .retreatpage .header_container .title_container .panel_text {
    max-width: 260px;
    font-size: 12px;
  }
}

.hy-trustpilot {
  --trustpilot-green: #00b67a;
  --trustpilot-white: #ffffff;
  --trustpilot-bg: rgba(5, 18, 29, 0.55);
  --trustpilot-border: rgba(255, 255, 255, 0.3);

  display: flex;
  align-items: flex-start;
  flex-direction: column;
  margin-top: 20px;
}

/* Main Trustpilot card */
.hy-trustpilot__card {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  box-sizing: border-box;
  padding: 10px 14px;
  background: var(--trustpilot-bg);
  color: var(--trustpilot-white);
  text-decoration: none;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.hy-trustpilot__card:hover {
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(5, 18, 29, 0.72);
  color: var(--trustpilot-white);
  text-decoration: none;
  transform: translateY(-2px);
}

/* Trustpilot brand */
.hy-trustpilot__brand-group {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hy-trustpilot__brand-star {
  color: var(--trustpilot-green);
  font-size: 28px;
  line-height: 1;
}

.hy-trustpilot__brand {
  color: var(--trustpilot-white);
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
}

/* Rating tiles */
.hy-trustpilot__stars {
  display: inline-flex;
  gap: 3px;
}

.hy-trustpilot__stars > span {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  background: var(--trustpilot-green);
  color: #ffffff;
  font-size: 15px;
  line-height: 1;
}

/* Example half-filled final star */
.hy-trustpilot__stars .is-partial {
  background:
    linear-gradient(
      90deg,
      var(--trustpilot-green) 50%,
      rgba(255, 255, 255, 0.24) 50%
    );
}

.hy-trustpilot__rating {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}

/* Reviews link */
.hy-trustpilot__reviews-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.4;
  text-decoration: none;
  margin-top: 20px;
}

.hy-trustpilot__reviews-link:hover {
  border-bottom-color: var(--trustpilot-white);
  color: var(--trustpilot-white);
  text-decoration: none;
}

/* Keyboard accessibility */
.hy-trustpilot__card:focus-visible,
.hy-trustpilot__reviews-link:focus-visible {
  outline: 3px solid #f49336;
  outline-offset: 4px;
}

/* Mobile */
@media (max-width: 600px) {
  .hy-trustpilot {
    width: 100%;
  }

  .hy-trustpilot__card {
    width: 100%;
    justify-content: center;
  }

  .hy-trustpilot__reviews-link {
    align-self: center;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hy-trustpilot__card {
    transition: none;
  }
}

/* --------------------------------------------------------------------------
   06.5 Booking panel
   -------------------------------------------------------------------------- */

.booking-holder {
  position: absolute;
  top: 118px;
  right: clamp(20px, 3vw, 48px);
  z-index: 320;
  width: 330px;
}

.booking {
  position: relative;
  width: 100%;
  background: #ffffffe0;
  color: #212121;
  overflow: visible;
}

.booking_panel {
  width: 100%;
  padding: 18px 24px 14px;
}

.course-summary-grid {
  display: grid;
  grid-template-columns: 1fr 1.18fr;
  border-bottom: 1px solid #21212133;
}

.course-summary-column {
  min-width: 0;
  padding: 0 12px 12px;
  text-align: center;
}

.course-price-column {
  border-right: 1px solid #21212133;
}

.course-summary-title {
  margin: 0 0 14px;
  color: #212121;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.course-price-value {
  margin: 0 0 10px;
  color: #212121;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  line-height: 0.95;
  letter-spacing: 0;
}

.course-summary-note {
  margin: 0;
  color: #212121;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.course-date-item {
  padding: 0 0 10px;
}

.course-date-item + .course-date-item {
  padding-top: 10px;
  border-top: 1px solid #21212129;
}

.course-date-label {
  display: block;
  margin-bottom: 6px;
  color: var(--color-brand);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.course-date-item time {
  color: #212121;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  letter-spacing: 0.04em;
}


.course-inclusions {
  display: grid !important;
  gap: 9px !important;
  padding: 15px 0 15px !important;
  border-bottom: 1px solid #2121212e !important;
}

.course-inclusions,
.course-details-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.course-inclusions li,
.course-details-list li {
  position: relative;
  min-height: 24px;
  padding-left: 35px;
}

.course-inclusions li::before,
.course-details-list li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-brand);
}

.course-inclusions li::after,
.course-details-list li::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 7px;
  width: 9px;
  height: 5px;
  border: solid #fff;
  border-width: 0 0 2px 2px;
  transform: translate(5%, 35%) rotate(-45deg);
}

.course-more-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 26px 0 0;
  color: #212121;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}


.course-credential {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  width: 100%;
  margin-top: 12px;
 padding: 14px 18px;
  border-top: 1px solid rgba(33, 33, 33, 0.18);
}


.course-credential__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  width: 52px;
  height: 52px;

  border: 2px solid #607360;
  border-radius: 50%;
  color: #212121;
  line-height: 1;
 
}

.course-credential__badge span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.course-credential__badge strong {
  margin-top: 2px;
  font-size: 14px;
}

.course-credential__logo {
  display: block;
  width: 64px;
  height: 64px;
  object-fit: contain;
}

@media (max-width: 420px) {
  .course-credential {
    grid-template-columns: 48px minmax(0, 1fr) auto;
    gap: 12px;
  }

  .course-credential__logo {
    width: 48px;
    height: 48px;
  }
}

.course-credential__text strong,
.course-credential__text span,
.course-credential__registration strong,
.course-credential__registration span {
  display: block;
}


.course-credential__text strong {
  margin-bottom: 3px;
  color: #212121;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.3;
  text-transform: uppercase;
}

.course-credential__text span {
  color: #4d4d4d;
  font-size: 10px;
  line-height: 1.3;
}

.course-credential__registration {
  padding-left: 12px;
  padding-right: 12px;
  border-left: 1px solid rgba(33, 33, 33, 0.15);
  text-align: right;
}

.course-credential__registration span {
  margin-bottom: 3px;
  color: #607360;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.course-credential__registration strong {
  color: #212121;
  font-size: 10px;
  font-weight: 700;
}


.booking_panel_button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 58px;
  background: var(--color-brand);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.booking_panel_button:hover,
.booking_panel_button:focus {
  background: var(--color-brand-hover);
}

.book-direct-popup {
  position: absolute;
  top: 102px;
  right: calc(100% + 18px);
  z-index: 500;
  display: block;
  width: min(450px, calc(100vw - 410px));
  padding: 30px 32px 28px;
  border-top: 7px solid var(--color-brand);
  background: rgba(108, 117, 126, 0.82);
  color: #fff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.book-direct-popup::after {
  content: "";
  position: absolute;
  top: -7px;
  left: 100%;
  width: 0;
  height: 0;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 18px solid rgba(108, 117, 126, 0.82);
}

.book-direct-popup h3 {
  float: none;
  margin: 4px 0 20px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.course-details-list {
  display: grid;
  gap: 11px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
}

.book-direct-popup .close-btn {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 34px;
  height: 34px;
  padding: 7px;
  border: 0;
  background: transparent;
  color: #fff;
}

.book-direct-popup .close-btn::before,
.book-direct-popup .close-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.book-direct-popup .close-btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.book-direct-popup .close-btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.book-direct-popup .book-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-width: 180px;
  min-height: 50px;
  margin: 26px auto 0;
  padding: 0 24px;
  background: var(--color-brand);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 767px) {.header_images,
  .header_image_wrapper {
    overflow: visible;
  }.booking-holder {
    position: relative;
    inset: auto;
    width: 100%;
    z-index: 330;
  }.booking {
    width: 100%;
    background: #f2f2f2;
  }.booking_panel {
    padding: 22px 18px 18px;
  }.course-summary-grid {
    grid-template-columns: 1fr 1fr;
  }.course-summary-column {
    padding-right: 8px;
    padding-left: 8px;
  }.course-price-value {
    font-size: 48px;
  }.course-date-item time {
    font-size: 17px;
  }.book-direct-popup {
    position: fixed;
    inset: 50% auto auto 50%;
    width: calc(100% - 28px);
    max-height: calc(100vh - 40px);
    padding: 38px 24px 28px;
    overflow-y: auto;
    transform: translate(-50%, -50%);
  }}

@media (min-width: 768px) and (max-width: 1180px) {.booking-holder {
    right: 18px;
    width: 300px;
  }.book-direct-popup {
    right: calc(100% + 14px);
    width: min(430px, calc(100vw - 350px));
  }}

.course-summary-grid {
  grid-template-columns: 0.92fr 1.08fr;
}

.course-price-column {
  padding-left: 0px;
  padding-right: 25px;
}

.course-dates-column {
  padding-left: 15px;
  padding-right: 5px;
}

@media (min-width: 768px) {#main-content > .booking-holder {
    position: absolute;
    top: 118px;
    right: clamp(20px, 3vw, 48px);
    z-index: 320;
    width: 330px;
  }
}

@media (max-width: 767px) {#main-content > .booking-holder {
    position: relative;
    inset: auto;
    display: block;
    float: none;
    clear: both;
    width: 100%;
    margin: 0;
    z-index: 20;
  }#main-content > .booking-holder .booking {
    display: block;
    width: 100%;
    margin: 0;
  }.course-price-value {
    font-size: 41px;
  }.course-summary-title {
    margin-bottom: 16px;
    font-size: 11px;
  }.course-summary-note {
    font-size: 10px;
  }.course-date-item time {
    font-size: 15px;
  }.course-inclusions {
    padding-top: 19px;
  }}

.hero-fallback-image {
  top: 0;
}

@media (max-width: 767px) {#main-content > .booking-holder {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    overflow: visible;
    z-index: 20;
  }#main-content > .booking-holder .booking {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    overflow: visible;
  }.booking_panel_button {
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    min-height: 58px;
    margin: 0;
  }.retreatpage .icons_container {
    position: relative;
    inset: auto;
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
    transform: none;
    z-index: 1;
  }.retreatpage .icons_container .icons_wrapper {
    display: block;
    width: 100%;
  }.book-direct-popup,
  #main-content > .booking-holder .book-direct-popup {
    position: fixed;
    top: 70px;
    right: 14px;
    bottom: 14px;
    left: 14px;
    width: auto;
    max-width: none;
    max-height: none;
    margin: 0;
    padding: 48px 24px 28px;
    overflow-x: hidden;
    overflow-y: auto;
    transform: none;
    z-index: 5400;
    background: rgba(108, 117, 126, 0.96);
    border-top: 7px solid var(--color-brand);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overscroll-behavior: contain;
  }.book-direct-popup,
#main-content > .booking-holder .book-direct-popup {

    overflow-y: auto;

    /* Hide scrollbar */
    scrollbar-width: none;       /* Firefox */
    -ms-overflow-style: none;    /* IE & old Edge */
}.book-direct-popup::-webkit-scrollbar{
    width: 0;
    display: none;
}.book-direct-popup .close-btn {
    position: sticky;
    top: -34px;
    left: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -34px 0 4px;
    background: rgba(108, 117, 126, 0.92);
  }.book-direct-popup h3 {
    margin-top: 0;
  }}

@media (min-width: 521px) and (max-width: 767px) {.book-direct-popup,
  #main-content > .booking-holder .book-direct-popup {
    top: 76px;
  }
}

@media (max-width: 767px) {.book-direct-popup {
    overscroll-behavior: contain;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }.book-direct-popup::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
  }.book-direct-popup .close-btn {
    position: relative;
    top: auto;
    left: auto;
    z-index: 2;
    display: block;
    margin: -18px 0 4px -10px;
    flex: 0 0 auto;
  }}

/* ==========================================================================
   07. INTRODUCTION, CONTENT PANELS AND INLINE VIDEO
   ========================================================================== */

.hy-testimonials .reviews_panel .btn-video {
  position: absolute;
  top: 18px;
  left: 18px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  z-index: 5;
}

.hy-testimonials .reviews_panel .btn-video__icon {
  display: block;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(96, 115, 96, 0.98);
  box-shadow: 0 10px 22px #0000002e;
  position: relative;
}

.hy-testimonials .reviews_panel .btn-video__icon svg {
  width: 76px;
  height: 76px;
  display: block;
}

.hy-testimonials .reviews_panel .btn-video__icon .ring {
  fill: none;
  stroke: #ffffff;
  stroke-width: 6;
  opacity: 0.95;
}

.hy-testimonials .reviews_panel .btn-video__icon .play {
  fill: #ffffff;
}

.hy-testimonials .reviews_panel .btn-video:hover .btn-video__icon {
  transform: scale(1.04);
  transition: transform 0.18s ease;
}

@media (max-width: 768px) {.hy-testimonials .reviews_panel .btn-video {
    top: 10px;
    left: 10px;
  }.hy-testimonials .reviews_panel .btn-video__icon {
    width: 46px;
    height: 46px;
    box-shadow: 0 6px 16px #0000002e;
  }.hy-testimonials .reviews_panel .btn-video__icon svg {
    width: 46px;
    height: 46px;
  }.hy-testimonials .reviews_panel .btn-video__icon .ring {
    stroke-width: 4;
  }}

.retreatpage .landing_main {
  padding-top: 100px;
}

.retreatpage .panel_container {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 50px 0;
}

.retreatpage .panel_container h4 {
  text-transform: uppercase;
  font-size: 1.6rem;
  margin-top: 60px;
}

.retreatpage .panel_container h2 {
  margin: 15px 0;
  text-transform: uppercase;
}

.retreatpage .panel_container .text_wrapper {
  margin-left: 18%;
}

.retreatpage .panel_container .text_wrapper:before {
  background-color: #868991;
  content: "";
  height: 1px;
  position: absolute;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -ms-transform-origin: right center;
  transition: -webkit-transform 0.5s cubic-bezier(0.48, 0, 0.12, 1) 0.4s;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.48, 0, 0.12, 1) 0.4s;
  -o-transition: transform 0.5s cubic-bezier(0.48, 0, 0.12, 1) 0.4s;
  transition: transform 0.5s cubic-bezier(0.48, 0, 0.12, 1) 0.4s;
  transition:
    transform 0.5s cubic-bezier(0.48, 0, 0.12, 1) 0.4s,
    -webkit-transform 0.5s cubic-bezier(0.48, 0, 0.12, 1) 0.4s;
  top: 65px;
  -webkit-transform-origin: right center;
  transform-origin: right center;
  left: 20px;
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  width: 70px;
}

.retreatpage .panel_container:nth-child(odd) .pnlImage {
  float: right;
}

.retreatpage .panel_container .panel_text {
  line-height: 2.5rem;
  max-width: 550px;
  letter-spacing: 0.2rem;
  margin-bottom: 25px;
}

@media (max-width: 1199px) {.retreatpage .landing_main {
    padding-top: 300px;
  }.retreatpage .panel_container .text_wrapper {
    margin-left: 0;
  }
  .retreatpage .panel_container .text_wrapper h4 {
    margin-top: 50px;
  }
  .retreatpage .panel_container .text_wrapper:before {
    top: 5px;
    margin-top: 30px;
    left: 15px;
  }}

@media (max-width: 991px) {.retreatpage .landing_main {
    padding-top: 500px;
  }
}

.pnlImage video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.pnlImage.video-active video {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.pnlImage.video-active img {
  opacity: 0;
  visibility: hidden;
}

.panels_container .btn-video {
  cursor: pointer;
  position: absolute;
  top: 6%;
  width: 120px;
  height: 60px;
  padding: 5px;
  border-radius: 0 999px 999px 0;
  background: #00000040;
  color: #f5f6f6;
  z-index: 3;
}

.panels_container .btn-video svg {
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
}

.panels_container .btn-video .icon-pause {
  opacity: 0;
  visibility: hidden;
}

.panels_container .btn-video .icon-play {
  opacity: 1;
  visibility: visible;
}

.panels_container .btn-video.is-playing .icon-pause {
  opacity: 1;
  visibility: visible;
}

.panels_container .btn-video.is-playing .icon-play {
  opacity: 0;
  visibility: hidden;
}

.panels_container .btn-video h5 {
  position: absolute;
  inset: 0;
  left: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  pointer-events: none;
  color: #f5f6f6;
}

.panels_container .btn-video h5 .play-pause-text::before {
  content: "Play";
}

.panels_container .btn-video.is-playing h5 .play-pause-text::before {
  content: "Pause";
}

/* ==========================================================================
   08. RISHIKESH GALLERY SLIDER AND LIGHTBOX
   ========================================================================== */
   
/* ==========================================================================
   RISHIKESH HERITAGE GALLERY
   ========================================================================== */

/* --------------------------------------------------------------------------
   Section
   -------------------------------------------------------------------------- */

.hy-campus-section {
  width: 100%;
  background: #f5f5f5;
}

.hy-campus-heading {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto 28px;
  text-align: center;
}

.hy-campus-kicker {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(13px, 1.1vw, 17px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.12em;
}

.hy-campus-ornament {
  position: relative;
  display: block;
  width: 76px;
  height: 12px;
  margin: 0 auto 6px;
  background:
    radial-gradient(
      circle at center,
      transparent 0 2px,
      #c7831d 2.5px 3.5px,
      transparent 4px
    ),
    radial-gradient(
      ellipse at center,
      #c7831d 0 2px,
      transparent 2.5px
    );
  background-repeat: no-repeat;
  background-position: center;
}

.hy-campus-ornament::before,
.hy-campus-ornament::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 29px;
  height: 1px;
  background: #c7831d;
  transform: translateY(-50%);
}

.hy-campus-ornament::before {
  left: 0;
}

.hy-campus-ornament::after {
  right: 0;
}

.hy-campus-heading h2 {
    padding-bottom:30px;
  margin: 0;
  font-size: clamp(36px, 4.2vw, 62px);
  font-weight: 500;
  line-height: 1.08;
}

.hy-campus-heading p {
  margin: 12px 0 0;
  color: #212121;
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   Gallery layout
   -------------------------------------------------------------------------- */

.hy-gallery {
  position: relative;
  width: min(920px, calc(100% - 48px));
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   Featured image
   -------------------------------------------------------------------------- */

.hy-featured-wrap {
  position: relative;
  overflow: hidden;
  background: #eeeeee;
  box-shadow: 0 14px 35px rgba(20, 20, 20, 0.14);
}

.hy-featured {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #eeeeee;
  cursor: zoom-in;
}

.hy-featured::after {
  content: none;
}

.hy-featured img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.001);
  filter: saturate(1.03) contrast(1.02) brightness(1.02);
  transition:
    opacity 0.3s ease,
    transform 1.2s ease,
    filter 0.4s ease;
}

.hy-featured:hover img {
  transform: scale(1.025);
  filter: saturate(1.06) contrast(1.03) brightness(1.03);
}

.hy-featured.is-changing img {
  opacity: 0.35;
}

.hy-cinematic-shade {
  display: none;
}

/* --------------------------------------------------------------------------
   Featured copy
   -------------------------------------------------------------------------- */

.hy-featured-copy {
  position: absolute;
  z-index: 2;
  left: clamp(24px, 4vw, 52px);
  right: clamp(76px, 10vw, 130px);
  bottom: clamp(24px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #ffffff;
  text-align: left;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.48);
  pointer-events: none;
}

.hy-featured-kicker {
  margin-bottom: 8px;
  color: #f1a32d;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.18em;
}

.hy-featured-title {
  color: #ffffff;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.05;
}

.hy-featured-description {
  max-width: 580px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(14px, 1.25vw, 17px);
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   Counter
   -------------------------------------------------------------------------- */

.hy-featured-counter {
  position: absolute;
  z-index: 3;
  right: clamp(20px, 3vw, 36px);
  bottom: clamp(22px, 3.6vw, 40px);
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #ffffff;
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.12em;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   Thumbnail navigation
   -------------------------------------------------------------------------- */

.hy-thumbs-shell {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 54px;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}

.hy-thumbs-viewport {
  width: 100%;
  padding: 2px;
  overflow: hidden;
}

.hy-track {
  display: flex;
  gap: 12px;
  transition: transform 0.35s ease;
  will-change: transform;
}

.hy-slide {
  flex: 0 0 calc((100% - 48px) / 5);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 2px solid transparent;
  background: #eeeeee;
  cursor: zoom-in;
  transition:
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.hy-slide:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.13);
}

.hy-slide.is-active {
  border-color: #c7831d;
  box-shadow: 0 0 0 1px rgba(199, 131, 29, 0.18);
}

.hy-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) brightness(0.98);
  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}

.hy-slide:hover img {
  transform: scale(1.04);
  filter: saturate(1.04) brightness(1.03);
}

.hy-slide.is-active img {
  filter: saturate(1.03) brightness(1.01);
}




.hy-slide[data-clone] {
  pointer-events: auto;
}

/* --------------------------------------------------------------------------
   Gallery arrows
   -------------------------------------------------------------------------- */

.hy-arrow {
  z-index: 5;
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  color: #222222;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

.hy-arrow:hover {
  background: #fffaf2;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.17);
  transform: scale(1.05);
}

.hy-arrow:focus-visible {
  outline: 2px solid #c7831d;
  outline-offset: 3px;
}

.hy-arrow:disabled {
  opacity: 0.35;
  cursor: default;
  box-shadow: none;
  transform: none;
}

.hy-arrow svg {
  width: 55%;
  height: 55%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* --------------------------------------------------------------------------
   Pagination dots
   -------------------------------------------------------------------------- */

.hy-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 15px;
}

.hy-dots.hidden {
  display: none;
}

.hy-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #d7d2c9;
  cursor: pointer;
  transition:
    width 0.25s ease,
    border-radius 0.25s ease,
    background-color 0.25s ease;
}

.hy-dots button.active {
  width: 24px;
  border-radius: 999px;
  background: #c7831d;
}

/* ==========================================================================
   LIGHTBOX
   ========================================================================== */

.hy-lightbox {
  position: fixed;
  z-index: 99999;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 90px;
  background: rgba(0, 0, 0, 0.92);
  opacity: 1;
  visibility: visible;
  overflow: hidden;
  box-sizing: border-box;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.hy-lightbox[aria-hidden="true"] {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.hy-lightbox-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(1200px, 100%);
  max-width: 100%;
  max-height: 100%;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  animation: hy-lightbox-open 0.3s ease;
}

.hy-lightbox img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(100vh - 130px);
  margin: 0 auto;
  object-fit: contain;
  box-shadow: 0 14px 55px rgba(0, 0, 0, 0.55);
  transition: opacity 0.25s ease;
}

.hy-lightbox-caption {
  width: 100%;
  max-width: 900px;
  margin: 14px auto 0;
  padding: 0 20px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
  box-sizing: border-box;
}

/* --------------------------------------------------------------------------
   Lightbox controls
   -------------------------------------------------------------------------- */

.hy-lightbox-close,
.hy-lightbox-prev,
.hy-lightbox-next {
  position: fixed;
  z-index: 100001;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transition:
    background-color 0.25s ease,
    transform 0.25s ease,
    opacity 0.25s ease;
}

.hy-lightbox-close:hover,
.hy-lightbox-prev:hover,
.hy-lightbox-next:hover {
  background: rgba(255, 255, 255, 0.16);
}

.hy-lightbox-close:focus-visible,
.hy-lightbox-prev:focus-visible,
.hy-lightbox-next:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

.hy-lightbox-close {
  top: 20px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 36px;
  line-height: 1;
}

.hy-lightbox-prev,
.hy-lightbox-next {
  top: 50%;
  width: 54px;
  height: 72px;
  border-radius: 8px;
  font-size: 48px;
  line-height: 1;
  transform: translateY(-50%);
}

.hy-lightbox-prev {
  left: 24px;
}

.hy-lightbox-next {
  right: 24px;
}

.hy-lightbox-prev:hover {
  transform: translateY(-50%) translateX(-2px);
}

.hy-lightbox-next:hover {
  transform: translateY(-50%) translateX(2px);
}

/* --------------------------------------------------------------------------
   Lightbox animation
   -------------------------------------------------------------------------- */

@keyframes hy-lightbox-open {
  from {
    opacity: 0;
    transform: scale(0.97);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
  .hy-slide {
    flex-basis: calc((100% - 36px) / 4);
  }

  .hy-lightbox {
    padding-inline: 72px;
  }

  .hy-lightbox-prev {
    left: 12px;
  }

  .hy-lightbox-next {
    right: 12px;
  }
}

@media (max-width: 760px) {
  .hy-campus-section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .hy-campus-heading {
    width: min(100% - 30px, 720px);
    margin-bottom: 22px;
  }

  .hy-gallery {
    width: min(100% - 28px, 720px);
  }

  .hy-featured {
    aspect-ratio: 16 / 10;
  }

  .hy-featured-copy {
    left: 18px;
    right: 64px;
    bottom: 18px;
  }

  .hy-featured-kicker {
    margin-bottom: 5px;
    font-size: 10px;
  }

  .hy-featured-title {
    font-size: clamp(24px, 7vw, 34px);
  }

  .hy-featured-description {
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.4;
  }

  .hy-featured-counter {
    right: 14px;
    bottom: 17px;
    padding: 6px 8px;
    font-size: 10px;
  }

  .hy-thumbs-shell {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 8px;
    margin-top: 12px;
  }

  .hy-track {
    gap: 9px;
  }

  .hy-slide {
    flex-basis: calc((100% - 18px) / 3);
  }

  .hy-arrow {
    width: 40px;
    height: 40px;
  }

  .hy-lightbox {
    padding: 66px 52px 28px;
  }

  .hy-lightbox img {
    max-height: calc(100vh - 150px);
  }

  .hy-lightbox-prev,
  .hy-lightbox-next {
    width: 42px;
    height: 58px;
    font-size: 38px;
  }

  .hy-lightbox-prev {
    left: 5px;
  }

  .hy-lightbox-next {
    right: 5px;
  }

  .hy-lightbox-close {
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
    font-size: 32px;
  }

  .hy-lightbox-caption {
    margin-top: 10px;
    padding-inline: 8px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .hy-campus-heading h2 {
    font-size: 36px;
  }

  .hy-campus-heading p {
    font-size: 15px;
  }

  .hy-featured-description {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .hy-thumbs-shell {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    gap: 6px;
  }

  .hy-slide {
    flex-basis: calc((100% - 12px) / 2.35);
  }

  .hy-arrow {
    width: 36px;
    height: 36px;
  }

  .hy-lightbox {
    padding: 62px 40px 22px;
  }

  .hy-lightbox img {
    max-height: calc(100vh - 135px);
  }

  .hy-lightbox-prev,
  .hy-lightbox-next {
    width: 34px;
    height: 50px;
    font-size: 32px;
  }

  .hy-lightbox-prev {
    left: 2px;
  }

  .hy-lightbox-next {
    right: 2px;
  }

  .hy-lightbox-caption {
    font-size: 12px;
  }
}

/* ==========================================================================
   ACCESSIBILITY
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  .hy-featured img,
  .hy-slide,
  .hy-slide img,
  .hy-arrow,
  .hy-track,
  .hy-lightbox,
  .hy-lightbox-inner,
  .hy-lightbox-close,
  .hy-lightbox-prev,
  .hy-lightbox-next {
    animation: none;
    transition: none;
  }

  .hy-featured:hover img,
  .hy-slide:hover,
  .hy-slide:hover img,
  .hy-arrow:hover,
  .hy-lightbox-prev:hover,
  .hy-lightbox-next:hover {
    transform: none;
  }
}




/* ==========================================================================
   09. SPECIALIST TEACHERS — SLIDER AND PROFILE POPUPS
   ========================================================================== */

/* --------------------------------------------------------------------------
   09.1 Section heading
   -------------------------------------------------------------------------- */

.leaders-laidout {
  position: relative;
  overflow: hidden;
}

.himalaya_team {
  width: min(100%, 1600px);
  margin: 0 auto;
}

.leaders-laidout .himalaya_team_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(92%, 960px);
  margin: 0 auto 40px;
  text-align: center;
}

.leaders-laidout .himalaya_team_content h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.leaders-laidout .himalaya_team_content p {
  max-width: 900px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.75;
  letter-spacing: 0.04em;
}

/* --------------------------------------------------------------------------
   09.2 Slider
   -------------------------------------------------------------------------- */

.himalaya_team-slider {
  position: relative;
  width: 90%;
  margin: 3.125rem auto;
  overflow: hidden;
}

.himalaya_team-slider .slides-number,
.himalaya_team-slider .slick-responsive {
  width: 100%;
}

.himalaya_team-slider .slides-number {
  position: relative;
  overflow: visible;
}

.himalaya_team-slider .slick-responsive.slick-slider {
  position: relative;
  margin-bottom: 0;
  padding-bottom: 54px;
  overflow: visible;
}

.himalaya_team-slider .slick-responsive .slick-list,
.himalaya_team-slider .slick-responsive .slick-track {
  width: 100%;
  height: 100%;
}

.himalaya_team-slider .slick-list {
  overflow: hidden;
}

.himalaya_team-slider .slick-responsive__item {
  padding: 0 12px;
}

.himalaya_team-slider__img {
  position: relative;
}

.himalaya_team-slider__img .img-clip {
  position: relative;
  aspect-ratio: 216 / 279;
  overflow: hidden;
  border-radius: 18px;
  background: #f3f3f3;
}

.himalaya_team-slider__img .img-clip img,
.himalaya_team-slider__img .img-zoom .img {
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.45s ease;
}

.himalaya_team-slider__img:hover .img-clip img,
.himalaya_team-slider__img:focus-within .img-clip img {
  transform: scale(1.035);
}

.himalaya_team-slider__txt {
  padding-top: 18px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-transform: none;
}

/* --------------------------------------------------------------------------
   09.3 Plus/profile button
   -------------------------------------------------------------------------- */

.himalaya_team-slider__btns {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 5;
}

.himalaya_team-slider__btns .circle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.86);
  color: #212121;
  border-radius: 50%;
  clip-path: none;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease;
}

.himalaya_team-slider__btns .circle:hover,
.himalaya_team-slider__btns .circle:focus-visible {
  background: #fff;
  transform: scale(1.05);
}

.himalaya_team-slider__btns .plus {
  position: relative;
  display: block;
  width: 22px;
  height: 22px;
  margin: 0;
}

.himalaya_team-slider__btns .plus::before,
.himalaya_team-slider__btns .plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 1px;
  background: #777;
  transform: translate(-50%, -50%);
}

.himalaya_team-slider__btns .plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* --------------------------------------------------------------------------
   09.4 Slider dots
   -------------------------------------------------------------------------- */

.himalaya_team-slider .slick-dots {
  position: absolute !important;
  bottom: 10px !important;
  left: 50% !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: auto !important;
  height: 12px;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none;
  transform: translateX(-50%) !important;
}

.himalaya_team-slider .slick-dots li {
  display: block;
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  margin: 0 !important;
  padding: 0;
}

.himalaya_team-slider .slick-dots li button {
  display: block;
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  background: transparent;
  font-size: 0;
  line-height: 0;
}

.himalaya_team-slider .slick-dots li button::before {
  display: none !important;
  content: none !important;
}

.himalaya_team-slider .slick-dots li.slick-active {
  width: 24px;
}

.himalaya_team-slider .slick-dots li.slick-active button {
  width: 24px;
  border-color: #fff;
  border-radius: 20px;
  background: #fff;
}

/* --------------------------------------------------------------------------
   09.5 Popup foundation

   Important:
   The popup is NOT vertically centred. Tall profiles always begin at the top
   of the viewport, and .mfp-wrap is the only scrolling layer.
   -------------------------------------------------------------------------- */

.mfp-modal-popup.mfp-bg {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.72);
  opacity: 1;
}

.mfp-modal-popup.mfp-wrap {
  position: fixed;
  inset: 0;
  z-index: 10001;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow-x: hidden;
  overflow-y: auto;
  outline: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.mfp-modal-popup .mfp-container {
  position: relative;
  inset: auto;
  display: block;
  width: 100%;
  height: auto;
  min-height: 100%;
  margin: 0;
  padding: 28px 20px 50px;
  box-sizing: border-box;
  text-align: center;
}

.mfp-modal-popup .mfp-container::before {
  display: none;
  content: none;
  height: 0;
}

.mfp-modal-popup .mfp-content {
  position: relative;
  display: block;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  vertical-align: top;
  text-align: left;
  transform: none;
  z-index: 10002;
}

.mfp-hide {
  display: none !important;
}

/* --------------------------------------------------------------------------
   09.6 Popup card
   -------------------------------------------------------------------------- */

.himalaya_team-slider__popup {
  position: relative;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  color: #fff;
  transform: none;
}

.teacher-popup .teacher-popup__inner,
.himalaya_team-slider__popup .modal-popup__inner {
  position: relative;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 38px;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 52px 60px 46px 46px;
  overflow: visible;
  background: #202020;
  color: #fff;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.55);
  box-sizing: border-box;
  transform: none;
}

/* --------------------------------------------------------------------------
   09.7 Popup image
   -------------------------------------------------------------------------- */

.teacher-popup__image,
.himalaya_team-slider__popup .modal-popup__img {
  align-self: start;
  float: none;
  width: 100%;
  shape-outside: none;
}

.teacher-popup__image .img-clip,
.himalaya_team-slider__popup .modal-popup__img .img-clip {
  width: 100%;
  aspect-ratio: 1 / 1;
  margin: 0;
  overflow: hidden;
  border-radius: 50%;
  background: #f4f4f4;
}

.teacher-popup__image img,
.himalaya_team-slider__popup .modal-popup__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --------------------------------------------------------------------------
   09.8 Popup content
   -------------------------------------------------------------------------- */

.teacher-popup__content,
.himalaya_team-slider__popup .modal-popup__content {
  align-self: center;
  padding: 0;
  color: rgba(255, 255, 255, 0.92);
  font-family: Poppins, sans-serif;
  text-align: left;
}

.teacher-popup__name,
.himalaya_team-slider__popup .modal-popup__content .teacher-name,
.himalaya_team-slider__popup .modal-popup__content .title-xs {
  margin: 0 0 18px;
  color: #fff;
  font-family: Poppins, sans-serif;
  font-size: clamp(24px, 2.3vw, 32px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-align: left;
}

.teacher-popup__intro,
.himalaya_team-slider__popup .modal-popup__content p,
.himalaya_team-slider__popup .teacher-profile-copy {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-family: Poppins, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  letter-spacing: 0.035em;
}

.himalaya_team-slider__popup .modal-popup__content p + p {
  margin-top: 12px;
}

.himalaya_team-slider__popup .modal-popup__content .title-md {
  display: none;
}

/* --------------------------------------------------------------------------
   09.9 Certifications and achievements
   -------------------------------------------------------------------------- */

.teacher-popup__credentials {
  grid-column: 1 / -1;
  margin-top: 8px;
}

.teacher-popup__credentials h4 {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.teacher-popup__credential-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0 0 8px;
  list-style: none;
}

.teacher-popup__credential-list li {
  position: relative;
  margin: 0;
  padding-left: 27px;
  color: #fff;
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: 0.04em;
}

.teacher-popup__credential-list li:last-child {
  margin-bottom: 0;
}

.teacher-popup__credential-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f28c1b;
  box-shadow: 0 0 0 3px rgba(242, 140, 27, 0.18);
}

/* --------------------------------------------------------------------------
   09.10 Popup close button

   JS inserts this button directly inside .mfp-content, before the cloned popup.
   It therefore sits in the actual top-right corner of the popup content area.
   -------------------------------------------------------------------------- */

.mfp-modal-popup .mfp-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  -webkit-text-fill-color: #fff;
  font-size: 40px;
  font-weight: 300;
  line-height: 1;
  opacity: 1;
  cursor: pointer;
}

.mfp-modal-popup .mfp-close:hover,
.mfp-modal-popup .mfp-close:focus-visible {
  color: #fff;
  opacity: 0.7;
}

/* --------------------------------------------------------------------------
   09.11 Tablet
   -------------------------------------------------------------------------- */

@media (max-width: 991px) {
  .leaders-laidout .himalaya_team_content {
    width: calc(100% - 50px);
    margin-bottom: 34px;
  }

  .leaders-laidout .himalaya_team_content h2 {
    font-size: clamp(30px, 5vw, 44px);
  }

  .leaders-laidout .himalaya_team_content p {
    font-size: 14px;
    line-height: 1.7;
  }

  .himalaya_team-slider {
    width: 94%;
  }

  .himalaya_team-slider .slick-responsive.slick-slider {
    padding-bottom: 50px;
  }

  .himalaya_team-slider .slick-dots {
    bottom: 8px !important;
  }

  .teacher-popup .teacher-popup__inner,
  .himalaya_team-slider__popup .modal-popup__inner {
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 30px;
    padding: 48px 52px 38px 36px;
  }

  .teacher-popup__name,
  .himalaya_team-slider__popup .modal-popup__content .teacher-name,
  .himalaya_team-slider__popup .modal-popup__content .title-xs {
    font-size: 26px;
  }

  .teacher-popup__intro,
  .himalaya_team-slider__popup .modal-popup__content p,
  .himalaya_team-slider__popup .teacher-profile-copy,
  .teacher-popup__credential-list li {
    font-size: 14px;
  }
}

/* --------------------------------------------------------------------------
   09.12 Mobile
   -------------------------------------------------------------------------- */

@media (max-width: 767px) {
  .leaders-laidout .himalaya_team_content {
    width: calc(100% - 36px);
    margin-bottom: 28px;
  }

  .leaders-laidout .himalaya_team_content h2 {
    font-size: clamp(28px, 8vw, 38px);
    line-height: 1.12;
  }

  .leaders-laidout .himalaya_team_content p {
    font-size: 13px;
    line-height: 1.65;
  }

  .himalaya_team-slider {
    width: 100%;
    margin: 2.4rem auto;
  }

  .himalaya_team-slider .slick-responsive__item {
    padding: 0 8px;
  }

  .himalaya_team-slider__txt {
    padding-top: 14px;
    font-size: 14px;
  }

  .himalaya_team-slider__btns {
    top: 12px;
    right: 12px;
  }

  .himalaya_team-slider__btns .circle {
    flex-basis: 44px;
    width: 44px;
    height: 44px;
  }

  .mfp-modal-popup .mfp-container {
    padding: 16px 14px 50px;
  }

  .mfp-modal-popup .mfp-content {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
  }

  .himalaya_team-slider__popup {
    width: 100%;
    max-width: 560px;
  }

  .teacher-popup .teacher-popup__inner,
  .himalaya_team-slider__popup .modal-popup__inner {
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    margin: 0;
    padding: 48px 24px 52px;
    overflow: visible;
  }

  .teacher-popup__image,
  .himalaya_team-slider__popup .modal-popup__img {
    width: 180px;
    margin: 0 auto 24px;
  }

  .teacher-popup__content,
  .himalaya_team-slider__popup .modal-popup__content {
    text-align: center;
  }

  .teacher-popup__name,
  .himalaya_team-slider__popup .modal-popup__content .teacher-name,
  .himalaya_team-slider__popup .modal-popup__content .title-xs {
    margin: 0 0 14px;
    font-size: 26px;
    line-height: 1.25;
    text-align: center;
  }

  .teacher-popup__intro,
  .himalaya_team-slider__popup .modal-popup__content p,
  .himalaya_team-slider__popup .teacher-profile-copy {
    max-width: 440px;
    margin-right: auto;
    margin-left: auto;
    font-size: 15px;
    line-height: 1.65;
  }

  .teacher-popup__credentials {
    margin-top: 28px;
    text-align: left;
  }

  .teacher-popup__credentials h4 {
    margin: 0 0 16px;
    font-size: 14px;
    line-height: 1.4;
  }

  .teacher-popup__credential-list {
    gap: 13px;
    padding-bottom: 12px;
  }

  .teacher-popup__credential-list li {
    padding-left: 22px;
    font-size: 14px;
    line-height: 1.6;
  }

  .teacher-popup__credential-list li::before {
    width: 8px;
    height: 8px;
  }

  .mfp-modal-popup .mfp-close {
    top: 7px;
    right: 7px;
    width: 40px;
    height: 40px;
    font-size: 34px;
  }
}

/* --------------------------------------------------------------------------
   09.13 Small mobile
   -------------------------------------------------------------------------- */

@media (max-width: 480px) {
  .leaders-laidout .himalaya_team_content {
    width: calc(100% - 28px);
  }

  .leaders-laidout .himalaya_team_content h2 {
    font-size: 28px;
  }

  .teacher-popup .teacher-popup__inner,
  .himalaya_team-slider__popup .modal-popup__inner {
    padding: 44px 18px 42px;
  }

  .teacher-popup__image,
  .himalaya_team-slider__popup .modal-popup__img {
    width: 135px;
    margin: 0 auto 18px;
  }

  .teacher-popup__name,
  .himalaya_team-slider__popup .modal-popup__content .teacher-name,
  .himalaya_team-slider__popup .modal-popup__content .title-xs {
    font-size: 24px;
  }

  .teacher-popup__intro,
  .himalaya_team-slider__popup .modal-popup__content p,
  .himalaya_team-slider__popup .teacher-profile-copy {
    font-size: 14px;
    line-height: 1.65;
  }

  .teacher-popup__credentials {
    margin-top: 22px;
  }

  .teacher-popup__credentials h4 {
    font-size: 13px;
  }

  .teacher-popup__credential-list {
    gap: 11px;
  }

  .teacher-popup__credential-list li {
    font-size: 13px;
    line-height: 1.6;
  }
}

/* --------------------------------------------------------------------------
   09.14 Reduced motion
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  .himalaya_team-slider__img .img-clip img,
  .himalaya_team-slider__btns .circle {
    transition: none;
  }

  .himalaya_team-slider__img:hover .img-clip img,
  .himalaya_team-slider__img:focus-within .img-clip img {
    transform: none;
  }
}


/* ==========================================================================
   10. ONLINE TRAINING JOURNEY AND CERTIFICATION PATH
   ========================================================================== */

.leaders-laidout .training_journey {
  padding: 3.125rem 1.25rem 9.375rem;
}

.leaders-laidout .training_journey-row {
  width: 100%;
  max-width: 1500px;
  margin: auto;
}

.leaders-laidout .training_journey__content h2 {
  font-size: clamp(36px, 4.2vw, 62px);
  font-weight: 500;
  line-height: 1.08;
    margin-top: 3.5rem;
  margin-bottom: 2.5rem;
}

.leaders-laidout .training_journey__content p {
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.5;
      margin-top: 3.5rem;
  margin-bottom: 2.5rem;

}

.leaders-laidout .training_journey__content .title-lg,
.leaders-laidout .training_journey__content .content-xs,
.leaders-laidout .training_journey__content .btn-wrapper {
  opacity: 0;
  transform: translateX(-20%);
  transition: all 0.7s cubic-bezier(0.48, 0.04, 0.22, 0.99);
}

.leaders-laidout .training_journey__content.is-inviewport .title-lg,
.leaders-laidout .training_journey__content.is-inviewport .content-xs,
.leaders-laidout .training_journey__content.is-inviewport .btn-wrapper {
  opacity: 1;
  transform: translateX(0);
}


.leaders-laidout .tech-stack__mobile {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: 200px;
  margin: 1.875rem auto 6.25rem;
}

/* Phone frame: below the photograph because its center is not transparent */
.leaders-laidout .tech-stack__mobile-frame {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 300 / 605;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.48, 0.04, 0.22, 0.99);
}

.leaders-laidout .tech-stack__mobile-img {
  position: absolute;
  z-index: 2;
  top: 1.9%;
  left: 5%;
  width: 90%;
  aspect-ratio: 280 / 600;
  overflow: hidden;
  border-radius: 24px;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1s cubic-bezier(0.48, 0.04, 0.22, 0.99);
}

/* Shadow below the phone */
.leaders-laidout .tech-stack__mobile::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: -10%;
  bottom: -35px;
  width: 120%;
  height: 16px;
  border-radius: 50%;
  filter: blur(3px);
  background: radial-gradient(
    ellipse at center,
    #00000033,
    transparent
  );

  opacity: 0;
  transform: translateY(100%);
  transition:
    opacity 0.5s cubic-bezier(0.48, 0.04, 0.22, 0.99),
    transform 0.5s cubic-bezier(0.48, 0.04, 0.22, 0.99);
  transition-delay: 0.5s;
}

/* Reveal the phone frame */
.leaders-laidout
  .tech-stack
  .tech-stack__mobile.is-inviewport
  .tech-stack__mobile-frame {
  opacity: 1;
}

/* Reveal the photograph */
.leaders-laidout
  .tech-stack
  .tech-stack__mobile.is-inviewport
  .tech-stack__mobile-img {
  clip-path: inset(0 0 0 0);
}

/* Reveal the shadow */
.leaders-laidout
  .tech-stack
  .tech-stack__mobile.is-inviewport::after {
  opacity: 1;
  transform: translateY(0);
}

/**

.leaders-laidout .tech-stack__mobile {
  position: relative;
  width: 100%;
  max-width: 200px;
  margin: 1.875rem auto 6.25rem;
}

.leaders-laidout .tech-stack__mobile-frame {
    position: relative; 
    z-index: 2;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 300 / 605;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.48, 0.04, 0.22, 0.99);
}

.leaders-laidout .tech-stack__mobile-img {
  position: absolute;
  inset: 0;
  top: 2%;
  z-index: 1;
  left: 5%;
  max-width: 90%;
  max-height: 95.5%;
  aspect-ratio: 280 / 607;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1s cubic-bezier(0.48, 0.04, 0.22, 0.99);
}

.leaders-laidout .tech-stack__mobile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leaders-laidout .tech-stack__mobile::after {
  content: "";
  position: absolute;
  left: -10%;
  width: 120%;
  height: 16px;
  bottom: -35px;
  border-radius: 50%;
  filter: blur(3px);
  background: radial-gradient(
    ellipse at center,
    #00000033,
    transparent
  );
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.5s cubic-bezier(0.48, 0.04, 0.22, 0.99);
  transition-delay: 0.5s;
}

.leaders-laidout
  .tech-stack
  .tech-stack__mobile.is-inviewport
  .tech-stack__mobile-frame {
  opacity: 1;
}

.leaders-laidout
  .tech-stack
  .tech-stack__mobile.is-inviewport
  .tech-stack__mobile-img {
  clip-path: inset(0 0 0 0);
  width: 100%;
}

*/

.leaders-laidout .tech-stack .tech-stack__mobile.is-inviewport::after {
  opacity: 0.7;
  transform: translateY(0);
}

.leaders-laidout .tech-stack__timeline {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-around;
  align-items: flex-start;
}

.leaders-laidout .tech-stack__point {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 1.875rem;
  min-height: 100px;
  height: 100%;
}

.leaders-laidout .tech-stack__icon {
  position: relative;
}


.leaders-laidout .tech-stack__icon .circle {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  color: #fff;
  background: #607360;
  position: relative;
  z-index: 1;
  clip-path: circle(0 at 50% 50%);
  transition: clip-path 0.8s cubic-bezier(0.48, 0.04, 0.22, 0.99);
}

.leaders-laidout .tech-stack__icon .circle svg {
  width: 18px;
  height: 15px;
}

.leaders-laidout .tech-stack__icon .line--v {
  position: absolute;
  top: 0;
  left: 27px;
  height: 100%;
  width: 1px;
  background: #ccc;
  z-index: 0;
  transform: scaleY(0);
  transform-origin: 0 0;
  transition: transform 0.7s cubic-bezier(0.48, 0.04, 0.22, 0.99);
}

.leaders-laidout .tech-stack__txt {
  opacity: 0;
  transform: translateX(20%);
  transition: all 0.7s cubic-bezier(0.48, 0.04, 0.22, 0.99);
}

.leaders-laidout .tech-stack__txt p {
  margin: 1rem 0 0;

}

.leaders-laidout .tech-stack__point.two .tech-stack__icon .circle,
.leaders-laidout .tech-stack__point.two .tech-stack__txt {
  transition-delay: 0.15s;
}

.leaders-laidout .tech-stack__point.three .tech-stack__icon .circle,
.leaders-laidout .tech-stack__point.three .tech-stack__txt {
  transition-delay: 0.3s;
}

.leaders-laidout .tech-stack__point.four .tech-stack__icon .circle,
.leaders-laidout .tech-stack__point.four .tech-stack__txt {
  transition-delay: 0.45s;
}

.leaders-laidout .tech-stack__point.five .tech-stack__icon .circle,
.leaders-laidout .tech-stack__point.five .tech-stack__txt {
  transition-delay: 0.6s;
}

.leaders-laidout
  .tech-stack
  .tech-stack__timeline.is-inviewport
  .tech-stack__icon
  .circle {
  clip-path: circle(50% at 50% 50%);
}

.leaders-laidout
  .tech-stack
  .tech-stack__timeline.is-inviewport
  .tech-stack__icon
  .line--v {
  transform: scaleY(1);
}

.leaders-laidout
  .tech-stack
  .tech-stack__timeline.is-inviewport
  .tech-stack__txt {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 767px) {.leaders-laidout .training_journey {
    padding: 3.125rem 1.875rem;
    z-index: 5;
  }
}

@media (min-width: 768px) {.leaders-laidout .training_journey-row {
    width: 90%;
  }
}

@media (min-width: 992px) {.leaders-laidout .training_journey__content {
    margin-right: 20px;
  }
}

@media (min-width: 768px) {.leaders-laidout .training_journey .grid-2 {
    grid-gap: 3.125rem;
    margin-top: 3.125rem;
  }
}

@media (min-width: 992px) {.leaders-laidout .training_journey .grid-2 {
    margin-top: 0;
  }
}

@media (min-width: 768px) {.leaders-laidout .tech-stack__mobile {
    max-width: 300px;
    margin: 0 auto;
  }.leaders-laidout .tech-stack__mobile:after {
    bottom: -40px;
  }}

@media (max-width: 767px) {.leaders-laidout .tech-stack__mobile-img {
    clip-path: none;
    opacity: 0;
    -webkit-transition: opacity 0.4s cubic-bezier(0.48, 0.04, 0.22, 0.99);
    transition: opacity 0.4s cubic-bezier(0.48, 0.04, 0.22, 0.99);
  }
}

@media (max-width: 767px) {.leaders-laidout
    .tech-stack
    .tech-stack__mobile.is-inviewport
    .tech-stack__mobile-img {
    clip-path: none;
    opacity: 1;
  }
}

@media (min-width: 768px) {.leaders-laidout .training_journey .grid-2 {
    gap: 3.125rem;
    margin-top: 3.125rem;
  }
}

@media (min-width: 768px) {.leaders-laidout .tech-stack__mobile::after {
    bottom: -40px;
  }
}

@media (max-width: 767px) {.leaders-laidout .tech-stack__mobile-img {
    clip-path: none;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.48, 0.04, 0.22, 0.99);
  }.leaders-laidout
    .tech-stack
    .tech-stack__mobile.is-inviewport
    .tech-stack__mobile-img {
    opacity: 1;
  }}

.training_journey__eyebrow {
  margin: 0 0 18px;
  color: #607360;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.training_journey__content .content-xs + .content-xs {
  margin-top: 16px;
}

.tech-stack__timeline {
  display: flex;
  flex-direction: column;
}

.tech-stack__point {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: stretch;
}

.tech-stack__txt {
  padding: 0 0 28px 12px;
}

.tech-stack__txt .fw-600 {
  margin: 0 0 10px;
  color: #333;
  font-size: 1.55rem;
  line-height: 1.28;
  letter-spacing: 0.08em;
}

.tech-stack__txt p:not(.fw-600) {
  margin: 0;
  max-width: 430px;
  font-size: 1.4rem;
  line-height: 1.42;
  letter-spacing: 0.1em;
}

.tech-stack__icon {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tech-stack__icon .circle {
  position: relative;
  z-index: 2;
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #607360;
  color: #fff;
}

.tech-stack__icon .circle svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.tech-stack__icon .line--v {
  flex: 1;
  width: 1px;
  min-height: 38px;
  background: #d8d8d8;
}

.tech-stack__point:last-child .tech-stack__txt {
  padding-bottom: 0;
}

@media (max-width: 991px) {.training_journey__content {
    margin-bottom: 50px;
  }.tech-stack__point {
    grid-template-columns: 58px minmax(0, 1fr);
  }.tech-stack__icon .circle {
    flex-basis: 50px;
    width: 50px;
    height: 50px;
  }.tech-stack__txt {
    padding-left: 10px;
    padding-bottom: 24px;
  }}

@media (max-width: 575px) {.training_journey__eyebrow {
    margin-bottom: 12px;
    font-size: 1.05rem;
  }.tech-stack__point {
    grid-template-columns: 46px minmax(0, 1fr);
  }.tech-stack__icon .circle {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
  }.tech-stack__icon .circle svg {
    width: 18px;
    height: 15px;
  }.tech-stack__txt {
    padding: 0 0 22px 8px;
  }.tech-stack__txt .fw-600 {
    font-size: 1.4rem;
    letter-spacing: 0.055em;
  }.tech-stack__txt p:not(.fw-600) {
    font-size: 1.3rem;
    line-height: 1.5;
    letter-spacing: 0.065em;
  }}

/* ==========================================================================
   11. STUDENT TESTIMONIALS AND REVIEW SLIDER
   ========================================================================== */

.hy-testimonials .bg_img {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.hy-testimonials .reviews_panel .panel_image {
  position: relative;
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: 260px !important;
  max-width: 800px;
  padding-top: 0;
  overflow: hidden;
}

@media (max-width: 768px) {.hy-testimonials .reviews_panel .panel_image {
    min-height: 125px !important;
  }
}

.hy-testimonials .reviews_panel .panel_image a.video_container {
  position: absolute;
  inset: 0;
  display: block;
  z-index: 5;
  text-decoration: none;
}

.hy-testimonials .reviews_slider .slick-slide {
  height: auto;
}

.hy-testimonials .reviews_slider .slick-slide > div {
  height: 100%;
}

.reviews_panel {
  width: 100%;
  margin: 0 auto;
}


.reviews_panel .button_text span {
  font-size: 2rem;
  color: var(--color-brand);
  vertical-align: middle;
}

.retreatpage .reviews_panel .panel_wrapper {
  padding: 20px;
}

.retreatpage .reviews_panel .panel_wrapper .panel_text {
  padding: 30px 20px 0 0;
}

.retreatpage .reviews_panel .panel_image {
  position: relative;
  padding-top: 30%;
  overflow: hidden;
  max-width: 800px;
  min-height: 450px;
}

@media (max-width: 1199px) {.retreatpage .reviews_panel .text_wrapper:before {
    width: 50px;
  }
}

@media (max-width: 767px) {.reviews_panel .title_wrapper {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.reviews_panel .title_wrapper h2 {
  text-align: center;
  font-weight: 600;
  font-size: 3.5rem;
}

.reviews_panel .reviews_wrapper {
  margin-bottom: 60px;
}

.reviews_panel .reviews_wrapper .reviews_items .panel_wrapper {
  position: relative;
  display: inline-block;
  background: #fff;
  margin: 0 10px;
  padding: 20px 0;
}

.reviews_panel .reviews_wrapper .reviews_items .panel_wrapper .panel_text {
  padding: 20px 50px;
}

.reviews_panel .reviews_wrapper .reviews_items .panel_wrapper .text_wrapper {
  margin-left: 10%;
}

.reviews_panel .reviews_wrapper .reviews_items .panel_wrapper .text_wrapper h2 {
  padding: 10px 0;
}

.reviews_panel .reviews_wrapper .reviews_items .panel_wrapper .text_wrapper h5 {
  margin-top: 40px;
  line-height: normal;
}

.reviews_panel .reviews_wrapper .reviews_items .panel_wrapper .text_wrapper h4 {
  line-height: normal;
}

.reviews_panel
  .reviews_wrapper
  .reviews_items
  .panel_wrapper
  .text_wrapper
  .summary {
  padding: 10px 0 20px;
}

.reviews_panel
  .reviews_wrapper
  .reviews_items
  .panel_wrapper
  .text_wrapper
  .title {
  color: var(--color-brand);
  margin-top: 10px;
}

.reviews_panel
  .reviews_wrapper
  .reviews_items
  .panel_wrapper
  .text_wrapper:before {
  background-color: #868991;
  content: "";
  height: 1px;
  position: absolute;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -ms-transform-origin: right center;
  transition: -webkit-transform 0.5s cubic-bezier(0.48, 0, 0.12, 1) 0.4s;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.48, 0, 0.12, 1) 0.4s;
  -o-transition: transform 0.5s cubic-bezier(0.48, 0, 0.12, 1) 0.4s;
  transition: transform 0.5s cubic-bezier(0.48, 0, 0.12, 1) 0.4s;
  transition:
    transform 0.5s cubic-bezier(0.48, 0, 0.12, 1) 0.4s,
    -webkit-transform 0.5s cubic-bezier(0.48, 0, 0.12, 1) 0.4s;
  top: 65px;
  -webkit-transform-origin: right center;
  transform-origin: right center;
  left: 20px;
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  width: 70px;
}

@media (max-width: 575px) {.reviews_panel
    .reviews_wrapper
    .reviews_items
    .panel_wrapper
    .text_wrapper:before {
    width: 35px;
  }
  
.hy-testimonials .client_panel{
    padding-bottom: 35px;
  }
}

/* ==========================================================================
   12. FAQ ACCORDION
   ========================================================================== */

.akordiyan .plus_minus {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition:
    transform 0.3s,
    -webkit-transform 0.3s;
  width: 20px;
  height: 20px;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  position: relative;
  text-align: right;
  float: right;
}

.akordiyan .plus_minus:before {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: width 0.3s;
  -o-transition: width 0.3s;
  transition: width 0.3s;
}

.akordiyan .plus_minus:after,
.akordiyan .plus_minus:before {
  content: "";
  display: block;
  width: 16px;
  height: 0;
  border-bottom: 1px solid #a1a1a1;
  position: absolute;
  bottom: 11px;
}

.panel-collapse {
  display: none;
  padding: 15px;
  background-color: #fff;
}

.faq_panel .title_wrapper,
.faq_panel h2,
.faq_panel h4 {
  text-align: center;
}

.faq_panel .akordiyan {
  padding: 0 10px;
}

.faq_panel .faq_container {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.faq_panel .faq_container h3 {
  border: 1px solid #e2e2e2;
  border-right: none;
  border-left: none;
  color: #010606;
  width: 100%;
  padding: 20px 5px;
  position: relative;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1.4;
  display: inline-block;
  font-weight: 400;
}

.faq_panel .faq_container h3 .right {
  float: right;
}

.faq_panel .faq_container .panel-collapse {
  padding: 15px 5px;
  font-size: 1.4rem;
  line-height: 2.4rem;
}

/* ==========================================================================
   13. FOOTER AND SOCIAL LINKS
   ========================================================================== */

.footer {
  background-color: #f9f9f9;
  color: #4d4d4d;
  font-size: 1.5rem;
  display: block;
  width: 100%;
  z-index: 10;
  overflow: hidden;
  position: relative;
}

.footer h4 {
  text-transform: uppercase;
  color: #010606;
}

.footer .newsletter_signup {
  margin-bottom: 30px;
}

.footer .newsletter_signup h4 {
  text-transform: none;
}

.footer a {
  color: #4d4d4d;
}

.footer a:hover {
  color: var(--color-brand-hover);
}

.footer .location_IE {
  padding-bottom: 20px;
}

.footer .sby_rights {
  margin-bottom: 5px;
}

.footer .sby_rights h5 {
  text-align: center;
  padding: 10px 0;
}

.footer .lower_footer {
  margin-top: 10px;
}


.footer .lower_footer {
  position: relative;
  z-index: 1;
  clear: both;
}

.social {
  position: relative;
  padding: 20px 0;
  overflow: hidden;
}

.social ul {
  position: relative;
  background: #f9f9f9;
  text-align: center;
  max-width: 240px;
  margin: 0 auto;
  padding: 0;
  z-index: 10;
}

.social ul li {
  float: none;
  display: inline-block;
}

.social ul a {
  display: block;
  padding: 5px 10px;
  color: var(--color-brand);
  font-size: 16px;
  text-align: center;
  border-radius: 50%;
}

.social ul a:hover {
  opacity: var(--color-brand-hover);
}

.social .line {
  height: 1px;
  background: var(--color-brand-translucent);
  bottom: 50%;
  position: absolute;
  width: 100%;
  z-index: 1;
}

.awards {
  max-width: 800px;
  margin: 30px auto;
}

@media (max-width: 991px) {.footer .blog_panel,
  .footer .location_IE,
  .footer .newsletter_panel {
    padding-bottom: 10px;
  }.footer .newsletter_panel {
    padding-left: 10px;
  }.footer .lower_footer {
    margin-top: 20px;
  }}

/* ==========================================================================
   14. ACCESSIBILITY AND REDUCED MOTION
   ========================================================================== */

@media (max-width: 991px) {.hy-mobile-language__options a:hover,
  .hy-mobile-language__options a:focus-visible {
    background: var(--color-brand);
    color: #212121;
  }
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 9999;
  padding: 1rem 1.5rem;
  background: #010606;
  color: #ffffff;
  transform: translateY(-200%);
  transition: transform 0.35s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

/* ==========================================================================
   15. COMPATIBILITY OVERRIDES AND SHARED RESPONSIVE RULES
   ========================================================================== */

mark {
  background: #ff0;
  color: #000;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}

.h1,
.h2,
.h3,
h1,
h2,
h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}

.h4,
.h5,
.h6,
h4,
h5,
h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.h1,
h1 {
  font-size: 36px;
}

.h2,
h2 {
  font-size: 30px;
}

.h3,
h3 {
  font-size: 24px;
}

.h4,
h4 {
  font-size: 18px;
}

.h5,
h5 {
  font-size: 14px;
}

p {
  margin: 0 0 10px;
}

[class*=" icon-"]:before,
[class^="icon-"]:before {
  font-family: fontello;
  font-style: normal;
  font-weight: 400;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: 0.2em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  margin-left: 0.2em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}



.icon-location-1:before { content: '\e800'; } /* '' */
.icon-down:before { content: '\e801'; } /* '' */
.icon-check:before { content: '\e801'; } /* '' */
.icon-user:before { content: '\e802'; } /* '' */
.icon-left:before { content: '\e803'; } /* '' */
.icon-down-open:before { content: '\e804'; } /* '' */
.icon-right-2:before { content: '\e805'; } /* '' */
.icon-cancel-4:before { content: '\e806'; } /* '' */
.icon-left-open:before { content: '\e807'; } /* '' */
.icon-right-open:before { content: '\e808'; } /* '' */
.icon-ok:before { content: '\e809'; } /* '' */
.icon-ok-1:before { content: '\e80a'; } /* '' */
.icon-twitter:before { content: '\f099'; } /* '' */
.icon-facebook:before { content: '\f09a'; } /* '' */
.icon-rss:before { content: '\f09e'; } /* '' */
.icon-mail-alt:before { content: '\f0e0'; } /* '' */
.icon-linkedin:before { content: '\f0e1'; } /* '' */
.icon-youtube:before { content: '\f167'; } /* '' */
.icon-instagram:before { content: '\f16d'; } /* '' */
.icon-whatsapp:before { content: '\f232'; } /* '' */

.h1,
.h2,
.h3,
h1,
h2,
h3 {
  color: #010606;
  margin: 5px 0;
  font-weight: 300;
}

a:focus,
a:hover {
  color: var(--color-brand-hover);
  text-decoration: none;
}

.no_padding {
  padding: 0;
}

.svg.arrow {
  width: 2.5rem;
  height: 2.5rem;
  fill: var(--color-brand);
  vertical-align: middle;
  transition:
    fill 0.35s,
    height 0.35s,
    width 0.35s;
}

nav:not(.navMenu):not(.nav_foot),
nav:not(.navMenu):not(.nav_foot) a,
nav:not(.navMenu):not(.nav_foot) li,
nav:not(.navMenu):not(.nav_foot) ul {
  float: left;
}

@media (max-width: 991px) {.hy-mobile-language {
    width: 100%;
    margin: 0 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.67);
    background: rgba(255, 255, 255, 0.04);
  }.hy-mobile-language__button {
    display: grid;
    grid-template-columns: 1fr auto 22px;
    align-items: center;
    gap: 12px;
    width: 100%;
    min-height: 54px;
    padding: 0 16px;
    border: 0;
    background: transparent;
    color: #fff;
    font: inherit;
    text-transform: uppercase;
  }

  .hy-mobile-language__button > span { font-size: 11px; letter-spacing: 0.12em; text-align: left; opacity: 0.72; }
  .hy-mobile-language__button strong { color: #fff; font-size: 14px; letter-spacing: 0.09em; }
  .hy-mobile-language__button svg { width: 18px; fill: none; stroke: var(--color-brand); stroke-width: 2; transition: transform 0.24s ease; }
  .hy-mobile-language.is-open .hy-mobile-language__button svg { transform: rotate(180deg); }
  .hy-mobile-language.is-open .hy-mobile-language__options { max-height: 110px; opacity: 1; visibility: visible; }
  .hy-mobile-language__options a {
    display: block;
    width: 100%;
    min-height: 49px;
     padding: 12px 16px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    font: inherit;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-align: left;
    text-transform: uppercase;
  }body.hy-menu-open {
    overflow: hidden;
  }}

@media (min-width: 768px) {.logo img {
    height: auto;
  }
}

.slider {
  margin: 0 auto;
  height: 100%;
  z-index: 10;
  opacity: 0;
  min-height: 600px;
  max-height: 1080px;
}

.retreatpage .swiper-slide {
  max-height: 100%;
}

.numerical_wrapper {
  font-family: Helvetica;
}

.numerical_wrapper::after {
  content: "";
  display: block;
  clear: both;
}

.retreatpage .numerical_wrapper svg {
  vertical-align: middle;
  width: 4.5rem;
  height: 4.5rem;
  fill: var(--color-brand);
  -webkit-transition:
    fill 0.35s,
    height 0.35s,
    width 0.35s;
  -o-transition:
    fill 0.35s,
    height 0.35s,
    width 0.35s;
  transition:
    fill 0.35s,
    height 0.35s,
    width 0.35s;
}

.retreatpage .numerical_wrapper h2 {
  font-size: 4rem;
  text-align: center;
  vertical-align: middle;
  font-weight: 600;
  font-size: 5rem;
  padding-left: 10px;
}

.retreatpage .numerical_wrapper h2 .count {
  display: inline-block;
  min-width: 60px;
}

.retreatpage .numerical_wrapper h2 span {
  vertical-align: middle;
  font-weight: 600;
  font-size: 5rem;
  padding-left: 10px;
}

.retreatpage .numerical_wrapper .panel_text {
  text-align: center;
  padding-top: 10px;
}

.retreatpage .overlay {
  position: absolute;
  background: #00000066;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 3;
}

.retreatpage .overla {
  position: absolute;
  background: #00000066;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 2;
}

.retreatpage .panel_text ul {
  padding-left: 0;
}


.retreatpage .panel_text ul li {
  list-style-type: none;
  padding: 10px 0
}

.retreatpage .panel_text ul li:before {
  content: "\e809";
  font-family: fontello;
  color: var(--color-brand);
  margin-right: 10px;
}
 

.scroll-animation-container {
  position: relative;
  z-index: 100;
}

#scroll-down:before {
  -webkit-animation: elasticus 1.2s cubic-bezier(1, 0, 0, 1) infinite;
  animation: elasticus 1.2s cubic-bezier(1, 0, 0, 1) infinite;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -2px;
  width: 2px;
  height: 58px;
  background: #607360;
  content: " ";
}

.arrow-down:after {
  content: "";
  display: block;
  margin: 0;
  padding: 0;
  width: 8px;
  height: 8px;
  border-top: 2px solid #607360;
  border-right: 2px solid #607360;
  behavior: url(-ms-transform.htc);
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}

.line {
  -ms-flex: 0 0 calc(100% - 20px);
  flex: 0 0 calc(100% - 20px);
  height: 1px;
  background: hsla(0, 0%, 85.9%, 0.7);
  -webkit-transform-origin: 0 50%;
  -ms-transform-origin: 0 50%;
  transform-origin: 0 50%;
}

.mt-0 {
  margin-top: 0;
}

.leaders-laidout .course_overview__info {
  width: 75%;
  margin: auto;
  text-align: center;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.leaders-laidout .course_overview__info h2 {
  margin: 0;
  color: #010606;
  font-size: clamp(36px, 4.2vw, 62px);
  font-weight: 500;
  line-height: 1.08;
}

.leaders-laidout .course_overview__info p {
  margin: 12px 0 0;
  color: #4d4d4d;
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.5;
}


.info-timeline {
  padding: 3.75rem 1.25rem 0;
  width: 90%;
  margin: auto;
}

.info-timeline__top {
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}

.info-timeline__txt {
  padding-top: 3.125rem;
}

.leaders-laidout .course_overview__timeline {
  width: 100%;
  margin-top: 1.875rem;
  margin-bottom: 100px;
}

.leaders-laidout .course_overview__timeline h3{
color: #607360;
font-weight: 600;
margin: 0;
  font-size: 1.375rem;
  margin-top: 1.625rem;
  margin-bottom: 1.625rem;
  text-align: center;
}

.leaders-laidout .course_overview__timeline .info-timeline {
  gap: 0;
}

.leaders-laidout .course_overview__timeline .info-timeline .line {
  flex: 0 0 100%;
}

.leaders-laidout .course_overview__timeline .info-timeline .line--v {
  background: hsla(0, 0%, 85.9%, 0.7);
  height: 35px;
  width: 1px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.leaders-laidout .course_overview__timeline .info-timeline__txt {
  max-width: 80%;
  text-align: left;
  padding-left: 2.5rem;
}

.info-timeline.is-inviewport .info-timeline__point .info-timeline__top .line {
  transform: scaleX(1);
}

#scroll-down {
  display: block;
  position: relative;
  padding-top: 50px;
  text-align: center;
}

#scroll-down::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -2px;
  width: 2px;
  height: 58px;
  background: #607360;
  animation: elasticus 1.2s cubic-bezier(1, 0, 0, 1) infinite;
}

.arrow-down {
  display: block;
  margin: 0 auto;
  width: 10px;
  height: 22px;
}

.arrow-down::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #607360;
  border-right: 2px solid #607360;
  transform: rotate(135deg);
}

#scroll-title {
  display: block;
  text-transform: uppercase;
  color: #607360;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

@media (min-width: 992px) {.info-timeline {
    padding: 5rem 0 0;
    grid-gap: 0;
    margin-left: 10%;
  }
}

@media (min-width: 992px) {.info-timeline__txt {
    width: 65%;
  }
}

@media (min-width: 992px) {.leaders-laidout .course_overview {
    margin-bottom: 0;
  }
}

@media (min-width: 992px) {.leaders-laidout .course_overview__timeline {
    margin-bottom: 0;
    margin-top: 3.125rem;
  }
}

@media (min-width: 768px) {.leaders-laidout .course_overview__timeline .info-timeline {
    padding: 2rem 0 0;
    margin-bottom: 3.75rem;
  }
}

@media (max-width: 767px) {.leaders-laidout .course_overview__timeline .info-timeline {
    width: 100%;
    padding: 2.5rem 0 0;
    margin-right: -1.25rem;
  }
}

@media (max-width: 767px) {.leaders-laidout .course_overview__timeline .info-timeline__point {
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 767px) {.leaders-laidout .course_overview__timeline .info-timeline__txt {
    padding-right: 1rem;
    max-width: 100%;
  }
}

@media (min-width: 768px) {.leaders-laidout .course_overview__timeline .info-timeline {
    margin-left: 15%;
    width: 85%;
  }
}

@media (min-width: 992px) {.leaders-laidout .course_overview__timeline .info-timeline {
    margin-left: 15%;
  }
}

@media (min-width: 992px) {.info-timeline {
    padding: 5rem 0 0;
    gap: 0;
    margin-left: 10%;
  }
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px 14px;
  background: #000000c7;
}

.video-modal.is-open {
  display: flex;
}

.video-modal__panel {
  width: min(980px, 96vw);
  background: #0b0b0b;
  border-radius: 16px;
  position: relative;
  box-shadow: 0 25px 60px #00000073;
  overflow: hidden;
}

.video-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 0;
  cursor: pointer;
  background: #ffffff1f;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  z-index: 6;
}

.video-modal__close:hover {
  background: #ffffff2e;
}

.video-modal__video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-modal__video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 480px) {.video-modal {
    padding: 18px 10px;
  }.video-modal__close {
    top: 8px;
    right: 8px;
  }}

.course-enquiry {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 7vw, 112px) clamp(22px, 4vw, 70px);

}

.course-enquiry__form-panel {
  padding: clamp(38px, 4vw, 62px);
  border-radius: 16px;
 
}

.course-enquiry *,
.course-enquiry *::before,
.course-enquiry *::after {
  box-sizing: border-box;
}

.course-enquiry__inner {
  width: min(1480px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(620px, 1.18fr);
  gap: clamp(48px, 7vw, 112px);
  align-items: center;
}

.course-enquiry__offer {
  min-width: 0;
}

.course-enquiry__eyebrow {
  margin: 0 0 24px;
  color: var(--color-brand);
  font-size: clamp(15px, 1.3vw, 20px);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
}

.course-enquiry__headline {
  margin: 0;
  font-size: clamp(3.5rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  text-align: left;
  text-transform: none;
}

.course-enquiry__headline span {
  color: var(--color-brand);
}

.course-enquiry__intro {
  max-width: 660px;
  margin: 28px 0 0;
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.65;

}

.course-enquiry__divider {
  display: flex;
  align-items: center;
  gap: 22px;
  max-width: 560px;
  margin: 32px 0 22px;
  color: var(--color-brand);
}

.course-enquiry__divider span {
  flex: 1;
  height: 1px;
  background: currentColor;
}

.course-enquiry__divider svg {
  width: 48px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.course-enquiry__price-row {
  display: flex;
  align-items: baseline;
  gap: 30px;
  margin-bottom: 28px;
}

.course-enquiry__price-row strong {
  color: var(--color-brand);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 4.5vw, 68px);
  font-siz: clam(62px, 5.4vw, 92px);
  font-weight: 400;
  line-height: 1;
}

.course-enquiry__price-row span {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.course-enquiry__benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.course-enquiry__benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  line-height: 1.4;
}

.course-enquiry__benefits li::before {
  content: "";
  flex: 0 0 22px;
  width: 22px;
  height: 22px;

  background-color: var(--color-brand);

  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 22'%3E%3Ccircle cx='11' cy='11' r='8.5' fill='none' stroke='black' stroke-width='1.7'/%3E%3Cpath d='M7.3 11.1l2.4 2.4 5-5' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 22px 22px no-repeat;

  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 22'%3E%3Ccircle cx='11' cy='11' r='8.5' fill='none' stroke='black' stroke-width='1.7'/%3E%3Cpath d='M7.3 11.1l2.4 2.4 5-5' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 22px 22px no-repeat;
}
.course-enquiry__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 570px;
  margin-top: 40px;
}

.course-enquiry__book,
.course-enquiry__details {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 13px 22px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.course-enquiry__book {
  background: var(--color-brand);
  border: 1px solid var(--color-brand);
}

.course-enquiry__book:hover,
.course-enquiry__book:focus-visible {
  background: var(--color-brand-hover);
  border-color: var(--color-brand-hover);
  text-decoration: none;
}

.course-enquiry__details {
  border: 1px solid var(--color-brand);
}

.course-enquiry__details:hover,
.course-enquiry__details:focus {
   color: #f9f9f9;
  background: var(--color-brand);
  text-decoration: none;
}

.course-enquiry__book svg,
.course-enquiry__details svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.course-enquiry__form-panel {
  padding: clamp(38px, 4vw, 62px);
  background-color: #f9f9f9;
  background-image: url(https://www.himalayayoga.org/hy-org-assets/images/content/contact_small_bg.png);
 
}

.course-enquiry__form-heading h2 {
  margin: 0 0 14px;
  color: #010606;
  font-size: clamp(35px, 3.1vw, 50px);
  font-weight: 400;
  line-height: 1.15;
  text-align: left;
  text-transform: none;
}

.course-enquiry__form-heading p {
  margin: 0 0 32px;
  color: #4d4d4d;
  font-size: 17px;
  line-height: 1.5
;}

.course-enquiry__form-heading a {
  color: var(--color-brand);
  font-weight: 600;
}

.course-enquiry__form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 26px;
}

.course-enquiry__field {
  min-width: 0;
}

.course-enquiry__field--wide {
  grid-column: 1 / -1;
}

.course-enquiry__field label {
  display: block;
  margin: 0 0 9px;
  color: #333;
  font-size: 15px;
  font-weight: 500;

}

.course-enquiry__field label em {
  color: #4d4d4d;
  font-weight: 400;
}

.course-enquiry__control {


    border-radius: 0;
    border-bottom: 1px solid var(--color-brand);
    -webkit-box-shadow: none;
    box-shadow: none;

background: #fff;
  position: relative;
  display: flex;
  align-items: center;
  min-height: 62px;

}

.course-enquiry__control:focus-within {
  border-color: var(--color-brand);
  box-shadow:inset 0 1px 1px rgba(0,0,0,.075);
}

.course-enquiry__control > svg {
  position: absolute;
  left: 17px;
  width: 23px;
  height: 23px;
  color: var(--color-brand);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

.course-enquiry__control input,
.course-enquiry__control select,
.course-enquiry__control textarea {
  width: 100%;
  margin: 0;
  color: #333;
  background: transparent;
  border: 0;
  outline: 0;
  font: inherit;
  font-size: 16px;

}

.course-enquiry__control input,
.course-enquiry__control select {
  height: 60px;
  padding: 0 18px 0 54px;
}

.course-enquiry__control textarea {
  min-height: 138px;
  padding: 18px 18px 18px 54px;
  resize: vertical;
  line-height: 1.55;
}

.course-enquiry__control input::placeholder,
.course-enquiry__control textarea::placeholder {
  color: #aaa7a1;
  opacity: 1;
}

.course-enquiry__select-control select {
  appearance: auto;
  color-scheme: dark;
}

.course-enquiry__select-control select option {
    color: #222;
    background: #fff;
}

.course-enquiry__textarea-control {
  align-items: flex-start;
}

.course-enquiry__textarea-control > svg {
  top: 19px;
}

.course-enquiry__consent {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
  align-items: start;
  color: #4d4d4d;
}

.course-enquiry__consent input {
  width: 22px;
  height: 22px;
  margin: 0;
  accent-color: var(--color-brand);
}

.course-enquiry__consent label {
  margin: 1px 0 0;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 400;

}

.course-enquiry__consent .course-enquiry__error {
  grid-column: 2;
}

.course-enquiry__submit {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 14px 24px;
  color: #212121;
  background: var(--color-brand);
  border: 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease;
}

.course-enquiry__submit:hover,
.course-enquiry__submit:focus {
  background: #4f604f;
}

.course-enquiry__submit svg {
  position: absolute;
  right: clamp(22px, 3vw, 45px);
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.course-enquiry__submit {
  position: relative;
}

.course-enquiry__privacy {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 0 0 24px;
  border-bottom: 1px solid #4a4a4a;
  color: #4d4d4d;
  text-align: center;
  font-size: 14px;
   letter-spacing: 0;
}

.course-enquiry__privacy svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.course-enquiry__required {
  margin: 0;
  color: #4d4d4d;
  text-align: center;
  font-size: 13px;
  font-style: italic;
  letter-spacing: 0.03em;
}

.course-enquiry__error {
  display: block;
  min-height: 18px;
  margin-top: 6px;
  color: #4d4d4d;
  font-size: 12px;
  letter-spacing: 0;
}

.course-enquiry__control.is-invalid {
  border-color: #607360;
}

.course-enquiry__status {
  min-height: 24px;
  margin-top: -10px;
  color: var(--color-brand);
  text-align: center;
  font-weight: 600;
  letter-spacing: 0;
}

.course-enquiry__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}


@media (max-width: 1150px) {.course-enquiry__inner {
    grid-template-columns: 1fr;
  }.course-enquiry__offer {
    max-width: 800px;
  }.course-enquiry__form-panel {
    width: 100%;
  }}

@media (max-width: 700px) {.course-enquiry {
    padding: 58px 18px;
  }.course-enquiry__headline {
    font-size: clamp(2.2rem, 8vw, 3.2rem);
    line-height: 1.2;
  }.course-enquiry__benefits {
    grid-template-columns: 1fr;
  }.course-enquiry__actions {
    grid-template-columns: 1fr;
    gap: 14px;
  }.course-enquiry__form-panel {
    padding: 30px 18px;
  }.course-enquiry__form {
    grid-template-columns: 1fr;
    gap: 18px;
  }.course-enquiry__field--wide {
    grid-column: auto;
  }.course-enquiry__submit svg {
    right: 18px;
  }.course-enquiry__price-row {
    gap: 18px;
  }.course-enquiry__price-row span {
    font-size: 14px;
  }}



.course-plus-icon {
  position: relative;
  flex: 0 0 17px;
  width: 17px;
  height: 17px;

  transform-origin: center;
  transition: transform 0.35s ease;
}

.course-plus-icon::before,
.course-plus-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;

  width: 15px;
  height: 2px;

  background: var(--color-brand);
  transform: translate(-50%, -50%);
}

.course-plus-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* Hover and keyboard focus */
.course-more-link:hover .course-plus-icon,
.course-more-link:focus-visible .course-plus-icon {
  transform: rotate(90deg);
}

/* Click feedback */
.course-more-link:active .course-plus-icon {
  transform: rotate(45deg) scale(0.9);
}

/* Popup open */
.course-more-link[aria-expanded="true"] .course-plus-icon {
  transform: rotate(135deg);
}

@media (prefers-reduced-motion: reduce) {
  .course-plus-icon {
    transition: none;
  }
}


@media (min-width: 768px) {#main-content {
    position: relative;
  }}

@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,600,700&display=swap");

.svg-sprite {
  display: none;
}

.icon-play-ready {
  transform-origin: 50% 50% 0;
  transform: translate(0);
  opacity: 1;
}

.heading-teachers {
color: #fff;
}

.hyLogoW_hyLogo_st0 {
  display: none;
}

.hyLogoW_hyLogo_st3 {
  fill: var(--color-brand-logo);
}

.hyLogoW_hyLogo_st4 {
  fill: #ffffff;
}

.hyLogo_st1 {
  display: none;
  fill: #ffffff;
}

.hyLogo_st3 {
  fill: var(--color-brand-logo);
}

.hySvg_mark_26_st0 {
  fill: none;
  stroke: #f08229;
  stroke-width: 17;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
}

.st0 {
  fill: none;
  stroke: #f08229;
  stroke-width: 17;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
}

.ayurveda {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: #ff841f;
}

.cls-1 {
  fill: none;
  stroke: #f08229;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 17px;
}

@media (max-width: 767px) {body.hy-course-popup-open {
    overflow: hidden;
  }
}


/* Former inline styles */
.is-revealed {
  visibility: visible;
  opacity: 1;
  transform: translateZ(0);
}

.section-space-bottom {
  padding-bottom: 30px;
}

.awards--compact {
  width: 180px;
}

/* ========================================================================== 
   17. FINAL HEADER, MOBILE ACTION BAR AND BOOKING POPUP
   These rules intentionally form the single final authority for the header
   palette, mobile booking tile and desktop popup position.
   ========================================================================== */

:root {
  --header-blue-grey: #747f89;
  --header-blue-grey-deep: #68737d;
  --booking-green: #607360;
  --booking-green-hover: #536653;
  --popup-blue-grey: rgba(108, 117, 126, 0.82);
}

/* Desktop header follows the reference blue-grey bar. */
@media (min-width: 992px) {
  .hy-lux-header {
    background: rgba(116, 127, 137, 0.96);
    color: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .hy-lux-header.is-scrolled,
  .hy-lux-header.stick {
    background: rgba(104, 115, 125, 0.97);
    color: #fff;
    box-shadow: 0 5px 24px rgba(0, 0, 0, 0.18);
  }

  .hy-lux-header__desktop-nav a,
  .hy-lux-header__desktop-nav button,
  .hy-desktop-languages,
  .hy-desktop-languages a {
    color: #fff;
  }

  .hy-lux-header__desktop-nav a:hover,
  .hy-lux-header__desktop-nav a:focus-visible,
  .hy-lux-header__desktop-nav button:hover,
  .hy-lux-header__desktop-nav button:focus-visible,
  .hy-desktop-languages a:hover,
  .hy-desktop-languages a:focus-visible,
  .hy-desktop-languages a.is-active {
    color: #fff;
  }

  .hy-lux-header__desktop-nav a::after {
    background: #fff;
  }
}

/* Mobile action bar: reference blue-grey with a protected green booking tile. */
@media (max-width: 991px) {
  .hy-mobile-actions {
    background: var(--header-blue-grey);
  }

  .hy-mobile-actions__book,
  .hy-mobile-actions__book:link,
  .hy-mobile-actions__book:visited {
    background: var(--booking-green) !important;
    color: #fff !important;
  }

  .hy-mobile-actions__book:hover,
  .hy-mobile-actions__book:focus-visible,
  .hy-mobile-actions__book:active {
    background: var(--booking-green-hover) !important;
    color: #fff !important;
    filter: none;
  }

  .hy-mobile-actions > a:nth-child(2),
  .hy-mobile-actions > a:nth-child(3),
  .hy-mobile-actions__toggle {
    background: var(--header-blue-grey);
  }
}

/* Desktop popup begins on the same horizontal line as the booking card. */
@media (min-width: 768px) {
  .book-direct-popup {
    top: 0;
    right: calc(100% + 18px);
    width: min(450px, calc(100vw - 410px));
    background: var(--popup-blue-grey);
    transform-origin: top right;
  }

  .book-direct-popup::after {
    top: -7px;
    border-left-color: var(--popup-blue-grey);
  }
}

/* ========================================================================== 
   18. FINAL INTERACTION AND MODAL CONSISTENCY
   Shared hover text, language chevron, close controls and teacher popups.
   ========================================================================== */

:root {
  --interactive-green: #607360;
  --interactive-green-hover: #536653;
  --interactive-text: #ffffff;
  --modal-blue-grey: rgba(108, 117, 126, 0.84);
  --modal-green-line: #607360;
}

/* Keep text readable on every button-like control and link state. */
.button,
.btn,
.button_border_white,
.hy-lux-header__apply,
.hy-mobile-actions__book,
.hy-mobile-menu__cta,
.booking_panel_button,
.book-direct-popup .book-btn,
.course-enquiry__book,
.course-enquiry__submit,
a.button,
a.btn,
a.button_border_white,
a.hy-lux-header__apply,
a.hy-mobile-actions__book,
a.hy-mobile-menu__cta,
a.booking_panel_button,
a.course-enquiry__book,
button.button,
button.btn,
button.booking_panel_button,
button.course-enquiry__submit {
  color: var(--interactive-text);
  -webkit-text-fill-color: var(--interactive-text);
}

.button:hover,
.button:focus-visible,
.button:active,
.btn:hover,
.btn:focus-visible,
.btn:active,
.button_border_white:hover,
.button_border_white:focus-visible,
.button_border_white:active,
.hy-lux-header__apply:hover,
.hy-lux-header__apply:focus-visible,
.hy-lux-header__apply:active,
.hy-mobile-actions__book:hover,
.hy-mobile-actions__book:focus-visible,
.hy-mobile-actions__book:active,
.hy-mobile-menu__cta:hover,
.hy-mobile-menu__cta:focus-visible,
.hy-mobile-menu__cta:active,
.booking_panel_button:hover,
.booking_panel_button:focus-visible,
.booking_panel_button:active,
.book-direct-popup .book-btn:hover,
.book-direct-popup .book-btn:focus-visible,
.book-direct-popup .book-btn:active,
.course-enquiry__book:hover,
.course-enquiry__book:focus-visible,
.course-enquiry__book:active,
.course-enquiry__submit:hover,
.course-enquiry__submit:focus-visible,
.course-enquiry__submit:active {
  color: var(--interactive-text);
  -webkit-text-fill-color: var(--interactive-text);
  text-decoration: none;
}

/* Solid green controls share one predictable hover treatment. */
.hy-lux-header__apply,
.hy-mobile-actions__book,
.hy-mobile-menu__cta,
.booking_panel_button,
.book-direct-popup .book-btn,
.course-enquiry__book,
.course-enquiry__submit {
  background-color: var(--interactive-green);
}

.hy-lux-header__apply:hover,
.hy-lux-header__apply:focus-visible,
.hy-mobile-actions__book:hover,
.hy-mobile-actions__book:focus-visible,
.hy-mobile-menu__cta:hover,
.hy-mobile-menu__cta:focus-visible,
.booking_panel_button:hover,
.booking_panel_button:focus-visible,
.book-direct-popup .book-btn:hover,
.book-direct-popup .book-btn:focus-visible,
.course-enquiry__book:hover,
.course-enquiry__book:focus-visible,
.course-enquiry__submit:hover,
.course-enquiry__submit:focus-visible {
  background-color: var(--interactive-green-hover);
}

/* Language selector: keep a clear down chevron beside the current language. */
@media (max-width: 991px) {
  .hy-mobile-language__button {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    column-gap: 12px;
  }

  .hy-mobile-language__button strong {
    justify-self: end;
    color: #fff;
    -webkit-text-fill-color: #fff;
  }

  .hy-mobile-language__button svg {
    display: block;
    width: 18px;
    height: 18px;
    margin: 0;
    color: #fff;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 1;
  }

  .hy-mobile-language.is-open .hy-mobile-language__button svg {
    transform: rotate(180deg);
  }

  .hy-mobile-language__options a,
  .hy-mobile-language__options a:hover,
  .hy-mobile-language__options a:focus-visible,
  .hy-mobile-language__options a:active {
    color: #fff;
    -webkit-text-fill-color: #fff;
  }

  .hy-mobile-language__options a:hover,
  .hy-mobile-language__options a:focus-visible {
    background: rgba(33, 33, 33, 0.72);
  }
}

/* Never allow close controls to receive a browser/default white button fill. */
.mfp-modal-popup .mfp-close,
.mfp-modal-popup .mfp-close:hover,
.mfp-modal-popup .mfp-close:focus,
.mfp-modal-popup .mfp-close:focus-visible,
.mfp-modal-popup .mfp-close:active,
.hy-mobile-menu__close,
.hy-mobile-menu__close:hover,
.hy-mobile-menu__close:focus,
.hy-mobile-menu__close:focus-visible,
.hy-mobile-menu__close:active,
.book-direct-popup .close-btn,
.book-direct-popup .close-btn:hover,
.book-direct-popup .close-btn:focus,
.book-direct-popup .close-btn:focus-visible,
.book-direct-popup .close-btn:active {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  background-color: transparent;
  border: 0;
  box-shadow: none;
  color: #fff;
  -webkit-text-fill-color: #fff;
  outline-offset: 3px;
}

.book-direct-popup .close-btn:focus-visible {
  outline: none !important;
}

/* ==========================================================================
   FINAL HEADER SCROLL STATES
   Transparent over the hero; blue-grey glass header after scrolling.
   ========================================================================== */
@media (min-width: 992px) {
  .hy-lux-header:not(.is-scrolled):not(.stick) {
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .hy-lux-header.is-scrolled,
  .hy-lux-header.stick {
    background: rgba(108, 117, 126, 0.96);
    color: #fff;
    box-shadow: 0 5px 24px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
}



    .course-enquiry-popup {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6);
}

.course-enquiry-popup__box {
  width: 100%;
  max-width: 440px;
  padding: 30px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  text-align: center;
}

.course-enquiry-popup__box h3 {
  margin: 0 0 12px;
  font-size: 24px;
}

.course-enquiry-popup__box p {
  margin: 0 0 22px;
  line-height: 1.6;
}

.course-enquiry-popup--success h3 {
  color: #19733b;
}

.course-enquiry-popup--error h3 {
  color: #b42318;
}

.course-enquiry-popup__close {
  min-width: 120px;
  padding: 11px 22px;
  border: 0;
  border-radius: 6px;
  background: #788f72;
  color: #ffffff;
  font: inherit;
  cursor: pointer;
}

.course-enquiry-popup__close:hover {
  opacity: 0.9;
}

.course-enquiry-popup__close:focus-visible {
  outline: 3px solid #f88f1b;
  outline-offset: 3px;
}


  /* =====================================================
   FINAL FIX: MOBILE MENU HEIGHT BASED ON CONTENT
===================================================== */

.hy-mobile-menu__inner {
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 54px 20px 38px; /* increase to 30px if you want more gap */
}


@media (max-width: 767px) {
  .hy-mobile-menu {
    position: fixed;

    top: 64px;
    right: 0;
    bottom: auto;
    left: 0;

    width: 100%;
    height: auto;
    min-height: 0;
    max-height: calc(100dvh - 64px);

    overflow-x: hidden;
    overflow-y: auto;
  }

  .hy-mobile-menu__inner {
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 54px 20px 38px;
  }
}

@media (max-width: 520px) {
  .hy-mobile-menu {
    top: 58px;
    bottom: auto;

    height: auto;
    min-height: 0;
    max-height: calc(100dvh - 58px);
  }
}




/* =====================================================
   MOBILE FIX: ICON GRID + LANDING SECTION
===================================================== */

@media (max-width: 991px) {
  .retreatpage .icons_container {
    position: relative;
    inset: auto;
    z-index: 1;

    width: 100%;
    height: auto;
    margin: 0;
    padding: 20px 0;

    transform: none;
    -webkit-transform: none;
    -ms-transform: none;

    background: #fff;
  }

  .retreatpage .icons_container .icons_wrapper {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    width: 100%;
    margin: 0;
    padding: 0;

    background: #fff;
  }

  .retreatpage .icons_container .icon_wrapper {
    float: none;
    width: auto;
    min-width: 0;
    min-height: 250px;

    margin: 0;
    padding: 32px 18px;

    border-right: 1px solid #e2edf2;
    border-bottom: 1px solid #e2edf2;

    text-align: center;
  }

  .retreatpage .icons_container .icon_wrapper:nth-child(2n) {
    border-right: 0;
  }

  .retreatpage .icons_container .icon_wrapper:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .retreatpage .icons_container .icon_wrapper svg {
    width: 48px;
    height: 48px;
  }

  .retreatpage .icons_container .icon_wrapper h4 {
    margin: 24px 0 14px;
    font-size: 18px;
    line-height: 1.25;
  }

  .retreatpage .icons_container .icon_wrapper .panel_text {
    padding: 0 8px;
    font-size: 14px;
    line-height: 1.55;
  }

  .retreatpage .landing_main {
    clear: both;
    margin-top: 0;
    padding-top: 0;
  }

  .retreatpage .landing_main .padding_50 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .retreatpage .panel_container {
    display: flow-root;
  }

  .retreatpage .panel_container .pnlImage,
  .retreatpage .panel_container .pnlPanel {
    float: none;
    width: 100%;
  }

  .retreatpage .panel_container .pnlImage {
    margin: 0;
  }

  .retreatpage .panel_container .pnlPanel {
    margin-top: 30px;
  }

  .retreatpage .panel_container .text_wrapper {
    margin: 0;
    padding: 0 24px;
  }

  .retreatpage .panel_container .text_wrapper h4 {
    margin-top: 0;
  }
}

@media (max-width: 520px) {
  .retreatpage .icons_container {
    padding: 14px 0;
  }

  .retreatpage .icons_container .icons_wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .retreatpage .icons_container .icon_wrapper {
    min-height: 260px;
    padding: 28px 12px;
  }

  .retreatpage .icons_container .icon_wrapper svg {
    width: 42px;
    height: 42px;
  }

  .retreatpage .icons_container .icon_wrapper h4 {
    margin: 20px 0 12px;
    font-size: 15px;
    line-height: 1.3;
  }

  .retreatpage .icons_container .icon_wrapper .panel_text {
    padding: 0 4px;
    font-size: 12px;
    line-height: 1.5;
  }

  .retreatpage .landing_main .padding_50 {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .retreatpage .panel_container {
    padding: 0;
  }

  .retreatpage .panel_container .pnlImage {
    margin-top: 0;
  }

  .retreatpage .panel_container .pnlPanel {
    margin-top: 30px;
  }

  .retreatpage .panel_container .text_wrapper {
    margin: 0;
    padding: 0 20px;
  }

  .retreatpage .panel_container .text_wrapper h4 {
    margin: 0 0 15px;
  }

  .retreatpage .panel_container .text_wrapper h2 {
    margin: 0 0 18px;
  }
}

/* =====================================================
   FINAL MOBILE PANEL SPACING FIX
===================================================== */

@media (max-width: 991px) {
  .retreatpage .panel_container {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 40px 0;
  }

  /* Override the stronger original float:right rule */
  .retreatpage .panel_container .pnlImage,
  .retreatpage .panel_container:nth-child(odd) .pnlImage {
    float: none;
    clear: both;
    order: 1;

    display: block;
    width: 100%;
    margin: 0;
    padding: 0 15px;
  }

  .retreatpage .panel_container .pnlImage img,
  .retreatpage .panel_container .pnlImage video {
    display: block;
    width: 100%;
  }

  .retreatpage .panel_container .pnlPanel {
    float: none;
    clear: both;
    order: 2;

    display: block;
    width: 100%;
    margin: 35px 0 0;
    padding: 0;
  }

  .retreatpage .panel_container .text_wrapper {
    margin: 0;
    padding: 0 24px;
  }

  .retreatpage .panel_container .text_wrapper h4 {
    margin: 0 0 15px;
  }

  .retreatpage .panel_container .text_wrapper h2 {
    margin: 0 0 20px;
  }

  .retreatpage .panel_container .text_wrapper::before {
    position: relative;
    top: auto;
    left: auto;

    display: block;
    width: 70px;
    margin: 0 0 22px;

    transform: none;
  }
}

@media (max-width: 520px) {
  .retreatpage .panel_container {
    padding: 30px 0;
  }

  .retreatpage .panel_container .pnlImage,
  .retreatpage .panel_container:nth-child(odd) .pnlImage {
    padding: 0 15px;
  }

  .retreatpage .panel_container .pnlPanel {
    margin-top: 30px;
  }

  .retreatpage .panel_container .text_wrapper {
    padding: 55px 20px 0px;
  }
}





/* =====================================================
   MOBILE FIX: KEEP TIMELINE CIRCLES INSIDE SCREEN
===================================================== */

@media (max-width: 767px) {
  .retreatpage .course_overview__timeline .circle,
  .retreatpage .info-timeline .circle,
  .retreatpage .info-timeline__point .circle {
    left: 16px;
    right: auto;
    transform: none;
    margin: 0;
  }

  .retreatpage .info-timeline__point,
  .retreatpage .info-timeline__top,
  .retreatpage .course_overview__timeline .info-timeline {
    padding-left: 16px;
  }
}

/* =====================================================
   TABLET BOOKING PANEL ADJUSTMENTS
===================================================== */

@media (min-width: 992px) and (max-width: 1199px) {
  #main-content > .booking-holder {
    right: 20px;
    width: 310px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  #main-content > .booking-holder {
    top: 105px;
    right: 16px;
    width: 285px;
  }

  #main-content > .booking-holder .booking_panel {
    padding: 18px 16px;
  }

  #main-content > .booking-holder .course-summary-title {
    margin-bottom: 15px;
    font-size: 10px;
  }

  #main-content > .booking-holder .course-price-value {
    font-size: 34px;
  }

  #main-content > .booking-holder .course-summary-note {
    font-size: 9px;
  }

  #main-content > .booking-holder .course-date-item time {
    font-size: 16px;
  }

  #main-content > .booking-holder .course-inclusions {
    gap: 9px;
    padding: 17px 0;
  }

  #main-content > .booking-holder .course-inclusions p {
    gap: 8px;
    font-size: 11px;
    line-height: 1.35;
  }
}


/* =====================================================
   RELIABLE CONTACT FORM LOADER
===================================================== */

.course-enquiry__submit {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

/* Spinner generated directly by the button */
.course-enquiry__submit::before {
  content: "";
  display: none;
  flex: 0 0 20px;

  width: 20px;
  height: 20px;

  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;

  animation: courseEnquiryLoader 0.7s linear infinite;
}

/* Show spinner during submission */
.course-enquiry__submit.is-loading::before {
  display: block;
}

/* Hide the arrow during submission */
.course-enquiry__submit.is-loading
  .course-enquiry__submit-arrow {
  display: none !important;
}

/* Prevent old hover animations while loading */
.course-enquiry__submit.is-loading,
.course-enquiry__submit.is-loading:hover,
.course-enquiry__submit.is-loading:focus {
  cursor: wait;
  transform: none !important;
  box-shadow: none;
}

/* Ensure no inherited animation affects the text */
.course-enquiry__submit.is-loading > span {
  transform: none !important;
}

@keyframes courseEnquiryLoader {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Footer contact heading */
.footer-contact-item h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0 0;
}

/* Consistent space between icon and heading */
.footer-contact-item h4 > i {
  flex: 0 0 auto;
  margin: 0;
}

/* Phone, email and address */
.footer-contact-content {
  margin-top: 0;
  line-height: 1.55;
}

/* Phone + email links */
.footer-contact-content a {
  display: inline-block;
  line-height: 1.55;
}

/* WhatsApp heading */
.footer-whatsapp-title {
  margin: 0 0 12px;
}

/* WhatsApp icon/text/arrow */
.footer-whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.yttc_event_calender {
  color: #f5f6f8;
  font-size: 16px;
  line-height: 1.55;
  padding-top: 50px;
  padding-bottom: 50px;
  margin-bottom: 30px;
}

.yttc_event_calender *,
.yttc_event_calender *::before,
.yttc_event_calender *::after {
  box-sizing: border-box;
}

.yttc_event_calender a,
.yttc_event_calender button,
.yttc_event_calender select {
  font: inherit;
}

.yttc_event_calender .wrap {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

.yttc_event_calender .calendar {
  position: relative;
  z-index: 2;
  padding: 16px;
  background: #1f1f22;
  border: 1px solid #33353c;
}

.yttc_event_calender .calendar-head {
  position: relative;
  z-index: 1;
  padding-bottom: 30px;
  text-align: center;
}

.yttc_event_calender .calendar-title {
  margin: 0;
  color: #111827;
  font-size: clamp(24px, 2.8vw, 40px);
  font-weight: 500;
  line-height: 1.2;
}

.yttc_event_calender .calendar-subtitle {
  display: block;
  max-width: 720px;
  margin: 12px auto 0;
  color: #1f2937;
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 500;
  line-height: 1.65;
  opacity: 0.85;
}

.yttc_event_calender .calendar-subtitle strong,
.yttc_event_calender .calendar-subtitle b {
  color: #ff931e;
  font-weight: 800;
}

.yttc_event_calender .controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 8px 12px;
}

.yttc_event_calender .years {
  display: flex;
  gap: 6px;
  padding: 6px;
  background: #2a2a2f;
  border: 1px solid #33353c;
  border-radius: 6px;
}

.yttc_event_calender .year-btn {
  border: 0;
  border-radius: 6px;
  padding: 8px 12px;
  background: transparent;
  color: #f5f6f8;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.yttc_event_calender .year-btn:hover {
  transform: translateY(-1px);
}

.yttc_event_calender .year-btn[aria-pressed="true"] {
  background: #ff931e;
  color: #1b1208;
}

.yttc_event_calender .month-select {
  padding: 8px 10px;
  background: #26262b;
  color: #f5f6f8;
  border: 1px solid #33353c;
  border-radius: 6px;
  outline: none;
  font-size: 14px;
  transition: border-color 0.2s ease;
}

.yttc_event_calender .month-select:hover {
  border-color: #3f414a;
}

.yttc_event_calender .events {
  display: grid;
  gap: 12px;
}

.yttc_event_calender .event {
  position: relative;
  display: grid;
  grid-template-columns: 130px 64px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: linear-gradient(180deg, #2a2a2f 0%, #252529 100%);
  border: 1px solid #33353c;
  overflow: hidden;
}

.yttc_event_calender .event:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: -6px;
  height: 1px;
  background: #33353c;
}

.yttc_event_calender .date {
  display: grid;
  place-items: center;
  gap: 2px;
  min-width: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.yttc_event_calender .date .month {
  color: #ff8a82;
  font-size: 12px;
  font-weight: 800;
}

.yttc_event_calender .date .day {
  color: #ff6b61;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.yttc_event_calender .date .year {
  color: #a6a7aa;
  font-size: 12px;
  font-weight: 700;
}

/* Start and end date range */
.yttc_event_calender .date.date--range {
  width: 130px;
  min-width: 130px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 6px;
}

.yttc_event_calender .date--range .date__part {
  min-width: 0;
  display: grid;
  place-items: center;
  gap: 2px;
}

.yttc_event_calender .date--range .date__separator {
  display: block;
  color: #a6a7aa;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.yttc_event_calender .date--range .month {
  font-size: 11px;
  white-space: nowrap;
}

.yttc_event_calender .date--range .day {
  font-size: 27px;
  white-space: nowrap;
}

.yttc_event_calender .date--range .year {
  font-size: 11px;
  white-space: nowrap;
}

.yttc_event_calender .thumb {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  overflow: hidden;
  flex-shrink: 0;
  background: #3a3a3f;
  border: 1px solid #33353c;
}

.yttc_event_calender .thumb a {
  display: block;
  width: 100%;
  height: 100%;
}

.yttc_event_calender .thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yttc_event_calender .info {
  min-width: 0;
  overflow: hidden;
}

.yttc_event_calender .location {
  margin-bottom: 2px;
  color: #a6a7aa;
  font-size: 13px;
  letter-spacing: 0.06em;
}

.yttc_event_calender h3.title {
  all: unset;
  display: block;
  margin: 0.15rem 0 0.25rem;
  color: #f5f6f8;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
}

.yttc_event_calender .title a {
  position: relative;
  display: inline-block;
  color: inherit;
  text-decoration: none;
  transition: color 0.35s ease;
}

.yttc_event_calender .title a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4.5px;
  width: 0;
  height: 2px;
  background: #ff931e;
  transform: translateX(-50%);
  transition: width 0.35s ease;
}

.yttc_event_calender .title a:hover {
  color: #ff931e;
}

.yttc_event_calender .title a:hover::after {
  width: 40%;
}

.yttc_event_calender .cta {
  display: grid;
  align-content: center;
  justify-items: end;
  gap: 10px;
  min-width: 170px;
}

.yttc_event_calender .deal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 14px;
  background: #1f1f22;
  border: 1px solid #33353c;
  font-weight: 300;
  letter-spacing: 0.02em;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.yttc_event_calender .deal__old {
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: #ff931e;
  opacity: 0.85;
}

.yttc_event_calender .deal__arrow {
  opacity: 0.85;
}

.yttc_event_calender .deal__new {
  color: #ff931e;
  font-weight: 600;
}

.yttc_event_calender .deal--single .deal__old,
.yttc_event_calender .deal--single .deal__arrow {
  display: none;
}

.yttc_event_calender .btn {
  position: relative;
  overflow: hidden;
  display: inline-grid;
  place-items: center;
  max-width: 100%;
  padding: 8px 14px;
  background: #ff931e;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.yttc_event_calender .btn::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -60%;
  width: 55%;
  height: 160%;
  transform: rotate(18deg);
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  transition: left 0.55s ease;
}

.yttc_event_calender .btn:hover {
  transform: translateY(-1px);
  filter: saturate(1.05);
  box-shadow:
    0 16px 28px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.yttc_event_calender .btn:hover::before {
  left: 120%;
}

.yttc_event_calender .btn:active {
  transform: translateY(0) scale(0.99);
  box-shadow:
    0 10px 18px rgba(0, 0, 0, 0.3),
    inset 0 2px 10px rgba(0, 0, 0, 0.18);
}

.yttc_event_calender .btn:focus-visible,
.yttc_event_calender .year-btn:focus-visible,
.yttc_event_calender .month-select:focus-visible {
  outline: 2px solid #ff931e;
  outline-offset: 2px;
}

.yttc_event_calender .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 900px) {
  .yttc_event_calender .event {
    grid-template-columns: 124px 60px minmax(0, 1fr) auto;
    gap: 14px;
  }

  .yttc_event_calender .date.date--range {
    width: 124px;
    min-width: 124px;
    gap: 5px;
  }

  .yttc_event_calender .date--range .day {
    font-size: 24px;
  }

  .yttc_event_calender .cta {
    min-width: 150px;
  }

  .yttc_event_calender .deal {
    padding: 8px 10px;
    font-size: 14px;
  }
}

@media (max-width: 720px) {
  .yttc_event_calender {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .yttc_event_calender .calendar-head {
    padding: 15px 14px 30px;
  }

  .yttc_event_calender .calendar-title {
    font-size: 32px;
    line-height: 1.1;
  }

  .yttc_event_calender .calendar-subtitle {
    margin-top: 10px;
  }

  .yttc_event_calender .controls {
    gap: 10px;
    padding: 8px 6px 10px;
  }

  .yttc_event_calender .year-btn {
    padding: 8px 10px;
    font-size: 13px;
  }

  .yttc_event_calender .month-select {
    max-width: 132px;
  }

  .yttc_event_calender .event {
    grid-template-columns: 124px minmax(0, 1fr);
    grid-template-areas:
      "date info"
      "thumb info"
      "thumb cta";
    column-gap: 16px;
    row-gap: 12px;
    align-items: start;
    padding: 14px;
    overflow: visible;
  }

  .yttc_event_calender .date {
    grid-area: date;
    padding: 4px 0;
  }

  .yttc_event_calender .date.date--range {
    width: 124px;
    min-width: 124px;
    gap: 5px;
  }

  .yttc_event_calender .date--range .month {
    font-size: 10px;
  }

  .yttc_event_calender .date--range .day {
    font-size: 23px;
  }

  .yttc_event_calender .date--range .year {
    font-size: 10px;
  }

  .yttc_event_calender .date--range .date__separator {
    font-size: 15px;
  }

  .yttc_event_calender .thumb {
    grid-area: thumb;
    width: 110px;
    height: 90px;
  }

  .yttc_event_calender .info {
    grid-area: info;
  }

  .yttc_event_calender .location {
    margin-bottom: 2px;
    font-size: 13px;
    letter-spacing: 0.08em;
  }

  .yttc_event_calender h3.title {
    display: -webkit-box;
    margin: 0.1rem 0 0.4rem;
    overflow: hidden;
    font-size: 15px;
    line-height: 1.32;
    white-space: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .yttc_event_calender .title a::after {
    left: 0;
    transform: none;
  }

  .yttc_event_calender .title a:hover::after {
    width: 60%;
  }

  .yttc_event_calender .cta {
    grid-area: cta;
    grid-template-columns: 1fr;
    align-items: stretch;
    justify-items: stretch;
    gap: 12px;
    width: 100%;
    min-width: 0;
  }

  .yttc_event_calender .cta .deal {
    width: 100%;
    justify-content: center;
    padding: 10px 14px;
    background: linear-gradient(180deg, #232327 0%, #1b1b1f 100%);
    font-size: 14px;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.05),
      0 6px 14px rgba(0, 0, 0, 0.25);
  }

  .yttc_event_calender .deal__new {
    letter-spacing: 0.02em;
  }

  .yttc_event_calender .cta .btn {
    height: 40px;
    padding: 0 14px;
    font-size: clamp(12px, 3.6vw, 14px);
    letter-spacing: 0.12em;
  }

  .yttc_event_calender .cta .btn:active {
    transform: scale(0.985);
    box-shadow:
      0 10px 20px rgba(0, 0, 0, 0.35),
      inset 0 2px 12px rgba(0, 0, 0, 0.22);
  }

  .yttc_event_calender .event:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 430px) {
  .yttc_event_calender .calendar {
    padding: 10px;
  }

  .yttc_event_calender .controls {
    align-items: stretch;
    flex-direction: column;
  }

  .yttc_event_calender .years {
    justify-content: center;
  }

  .yttc_event_calender .month-select {
    width: 100%;
    max-width: none;
  }

  .yttc_event_calender .event {
    grid-template-columns: 112px minmax(0, 1fr);
    column-gap: 12px;
  }

  .yttc_event_calender .date.date--range {
    width: 112px;
    min-width: 112px;
    gap: 3px;
  }

  .yttc_event_calender .date--range .day {
    font-size: 21px;
  }

  .yttc_event_calender .date--range .month,
  .yttc_event_calender .date--range .year {
    font-size: 9px;
  }

  .yttc_event_calender .thumb {
    width: 100px;
    height: 82px;
  }

  .yttc_event_calender h3.title {
    font-size: 14px;
  }
}







