/* ==========================================================================
   Payal Rajaratnam — Executive Coaching
   Design tokens + mobile-first responsive system
   Breakpoints: 0 (mobile) / 768px (tablet) / 1200px (desktop)
   ========================================================================== */

:root {
  /* ---- Color: primary green family (hero, buttons, accents) ---- */
  --color-primary: rgba(31, 123, 100, 1);
  --color-secondary: rgba(104, 167, 124, 1);
  --color-dark: rgba(47, 47, 47, 1);
  --color-light: rgba(240, 240, 240, 1);
  --color-nav: rgba(3, 31, 48, 1);

  --color-primary-10: var(--color-primary) 10%;
  --color-primary-20: var(--color-primary) 20%;
  --color-primary-30: var(--color-primary) 30%;
  --color-primary-40: var(--color-primary) 40%;
  --color-primary-50: var(--color-primary) 50%;
  --color-primary-60: var(--color-primary) 60%;
  --color-primary-70: var(--color-primary) 70%;
  --color-primary-80: var(--color-primary) 80%;
  --color-primary-90: var(--color-primary) 90%;

  /* ---- Neutrals ---- */
  --color-ink: #1a2b27;
  --color-ink-soft: #4b5c57;
  --color-muted: #6f7f7a;
  --color-line: #e4e7e4;
  --color-surface: #ffffff;
  --color-surface-alt: #f5f6f3;
  --color-footer-bg: #0e2a37;

  /* ---- Typography ---- */
  --font-primary: "Lora", serif;
  --font-secondary: "Lato", sans-serif;
  --font-tertiary: "Playfair Display", serif;

  --font-size-11: 1.84vh; /* 11px */
  --font-size-12: 0.88vw; /* 12px */
  --font-size-14: 1.03vw; /* 14px */
  --font-size-16: 1.17vw; /* 16px */
  --font-size-18: 1.32vw; /* 18px */
  --font-size-20: 1.45vw; /* 20px */
  --font-size-24: 1.76vw; /* 24px */
  --font-size-32: 2.34vw; /* 32px */
  --font-size-36: 2.64vw; /* 36px */
  --font-size-48: 3.52vw; /* 48px */

  --lh-24: 4.01vh; /* 24px */
  --lh-26: 4.33vh; /* 26px */
  --lh-28: 4.68vh; /* 28px */
  --lh-57: 9.52vh; /* 57px */

  --pd-27: 1.98vw;
  --pd-32: 2.35vw;

  --m-7: 0.52vw; /* 7px */
  --mb-8: 1.34vh; /* 8px */
  --mb-9: 1.51vh; /* 9px */
  --mb-18: 3.01vh; /* 18px */
  --mb-24: 4.01vh; /* 24px */

  --fs-h1: clamp(2rem, 1.5rem + 2.2vw, 3.4rem);
  --fs-h2: clamp(1.5rem, 1.3rem + 1vw, 2.2rem);
  --fs-h3: clamp(1.15rem, 1.05rem + 0.4vw, 1.35rem);
  --fs-lead: clamp(1.05rem, 0.98rem + 0.3vw, 1.25rem);
  --fs-body: clamp(0.95rem, 0.92rem + 0.15vw, 1.02rem);
  --fs-small: 0.85rem;
  --fs-stat: clamp(1.1rem, 1rem + 0.5vw, 1.4rem);

  --lh-tight: 1.15;
  --lh-normal: 1.5;
  --lh-loose: 1.7;

  --gap-28: 2.05vw; /* 28px */

  /* ---- Spacing scale ---- */
  --space-2xs: 0.53vw;
  --space-xs: 1vw;
  --space-sm: 1.67vw;
  --space-md: 2.67vw;
  --space-lg: clamp(3.33vw, 4.67vw, 6vw);
  --space-xl: clamp(4.67vw, 7vw, 8vw);

  --gutter: clamp(1.67vw, 4vw, 4vw);

  /* Spacing between section */
  --margin-spacing: 10vh 3.5vw;

  /* --content-max: 1200px; */
  --content-max: 100vw;

  /* ---- Radii & shadow ---- */
  --radius-sm: 0.8vw;
  --radius-8: 0.59vw;
  --radius-10: 0.74vw;
  --radius-14: 1.03vw;
  --radius-24: 1.76vw;
  --radius-32: 2.34vw;
  --radius-md: 1.2vw;
  --radius-pill: 999vw;

  --shadow-card: 0 10px 30px -18px rgba(20, 40, 35, 0.35);
  --shadow-soft: 0 4px 18px -8px rgba(20, 40, 35, 0.25);

  --shadow-full: 0 0.2vw 0.4vw 0.3vw rgba(20, 40, 35, 0.2);
  --shadow-bottom: 0 0.3vw 0.2vw 0.1vw rgba(20, 40, 35, 0.2);

  --transition: 200ms ease;
}

/* ---- Reset ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-primary);
  color: var(--color-ink);
  background: var(--color-surface);
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  -webkit-font-smoothing: antialiased;
}
.d-none {
  display: none;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-secondary);
  margin: 0;
  color: var(--color-primary-90);
  font-weight: 600;
}
p {
  margin: 0;
}
button {
  font: inherit;
  cursor: pointer;
}
input,
textarea {
  font: inherit;
}
.contact_BGcolor {
  background-color: rgb(247, 250, 252);
}
.fs-italic {
  font-style: italic;
}
.h-10 {
  height: 10vh !important;
}
.flex-column {
  display: flex;
  flex-direction: column;
}
.flex-row {
  display: flex;
  flex-direction: row;
}
:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-primary-800);
  color: #fff;
  padding: 0.75rem 1.25rem;
  z-index: 200;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus {
  left: 0;
}

.section-title {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 2.34vw;
  color: rgba(3, 31, 48, 1);
  text-align: center;
  margin-bottom: 7.02vh;
  letter-spacing: 0.023vw;
}
.section-title--left {
  text-align: left;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-secondary);
  font-size: var(--font-size-20);
  font-weight: 600;
  font-style: italic;
  /* letter-spacing: 0.04em; */
  color: var(--color-primary);
  background: rgba(240, 240, 240, 1);
  /* padding: 0.3rem 0.9rem; */
  padding: 16px 20px;
  border-radius: var(--radius-pill);
  margin-bottom: 4.01vh;
}

.link-inline {
  color: var(--color-primary-90);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}
.contact__icon {
  width: 2vw;
  height: 2vw;
}
/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8vw;
  /* background: var(--color-primary); */
  /* background: linear-gradient(
    135deg,
    var(--color-primary),
    rgba(145, 188, 159, 1)
  ); */
  background: linear-gradient(
    90deg,
    var(--color-primary) 41%,
    rgba(145, 188, 159, 1) 117%
  );
  color: #fff;
  font-family: var(--font-secondary);
  /* font-weight: 600;
  font-size: 1.16vw; */
  font-weight: 400;
  font-size: var(--font-size-16);
  padding: 0.5vw 0.8vw 0.5vw 0.5vw;
  /* border: none; */
  border: 0.1vw solid #fff;
  border-radius: var(--radius-pill);
  /* transition: all .5s ease-in; */
  transition:
    /* background var(--transition), */
    transform var(--transition),
    box-shadow var(--transition);
  /* box-shadow: var(--shadow-soft); */

  transform: translateY(-1px);
  box-shadow: 0 0.3vw 0.2vw 0.1vw rgba(20, 40, 35, 0.2);
}
.btn_1 {
  display: inline-flex;
  align-items: center;
  gap: 0.8vw;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: var(--font-size-16);
  padding: 0.5vw 0.8vw 0.5vw 0.5vw;
  border: 0.1vw solid #fff;
  border-radius: var(--radius-pill);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.btn_2 {
  display: inline-flex;
  align-items: center;
  gap: 0.8vw;
  background: var(--color-secondary);
  color: #fff;
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: var(--font-size-16);
  padding: 0.5vw 0.8vw 0.5vw 0.5vw;
  border: 0.1vw solid #fff;
  border-radius: var(--radius-pill);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  transform: translateY(-1px);
  box-shadow: 0 0.3vw 0.2vw 0.1vw rgba(20, 40, 35, 0.2);
}
.btn_call {
  display: inline-flex;
  align-items: center;
  gap: 0.8vw;
  background: rgba(3, 31, 48, 1);
  color: #fff;
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: var(--font-size-16);
  /* padding: 12px 16px; */
  padding: 2.01vh 1.18vw;
  width: 16vw;
  border: 0.1vw solid #fff;
  border-radius: var(--radius-pill);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  transform: translateY(-1px);
  box-shadow: 0 0.3vw 0.2vw 0.1vw rgba(20, 40, 35, 0.2);
  justify-content: space-between;
}
.btn_call svg,
.btn svg {
  flex-shrink: 0;
  width: 1.47vw;
  height: 3.34vh;
}
.btn .more_icon {
  width: 1.46vw;
  height: 1.46vw;
}
.btn:hover {
  /* background: var(--color-primary); */
  /* background: linear-gradient(
    135deg,
    var(--color-primary),
    rgba(145, 188, 159, 1)
  ); */
  transition: all 0.2s ease-in-out;
  transform: translateY(-1px);
  /* box-shadow: 0 0.3vw 0.2vw 0.1vw rgba(20, 40, 35, 0.2); */
}
.btn:active {
  transform: translateY(0);
}
.btn--sm {
  padding: 3vh 1.45vw;
}
.btn--m {
  width: auto;
  padding: 3vh 1.45vw;
}
.btn--pill {
  border-radius: var(--radius-pill);
}

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-line);
}
.site-header__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  /* padding: var(--space-xs) var(--gutter); */
  padding: 0.9vw 3.5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.brand__logo {
  width: 12vw;
  height: 6.42vw;
}
.brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-primary-20);
  color: var(--color-primary-70);
}
.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.brand__name {
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--color-primary-90);
  text-transform: uppercase;
}
.brand__tag {
  font-size: 0.68rem;
  color: var(--color-muted);
  font-weight: 600;
}

.main-nav {
  display: none;
}
.main-nav__list {
  display: flex;
  /* gap: var(--space-md);  */
  gap: 2.4vw;
}
.main-nav__list a {
  font-family: var(--font-secondary);
  /* font-size: 0.92rem; */
  font-size: 1.16vw;
  font-weight: 600;
  color: rgba(3, 31, 48, 1);
  transition: color var(--transition);
  position: relative;
}
.main-nav__list a:hover {
  color: var(--color-primary);
}
.main-nav__con {
  font-family: var(--font-secondary);
}

.main-nav__cta {
  display: none;
}

.hamburger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: none;
  border: none;
  align-items: center;
}
.hamburger__bar {
  width: 22px;
  height: 2px;
  background: var(--color-primary-90);
  transition:
    transform var(--transition),
    opacity var(--transition);
  border-radius: 2px;
}
.hamburger[aria-expanded="true"] .hamburger__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger[aria-expanded="true"] .hamburger__bar:nth-child(2) {
  opacity: 0;
}
.hamburger[aria-expanded="true"] .hamburger__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  max-height: 0;
  overflow: hidden;
  background: var(--color-surface);
  transition: max-height 280ms ease;
  border-top: 1px solid transparent;
}
.mobile-menu.is-open {
  max-height: 480px;
  border-top-color: var(--color-line);
}
.mobile-menu__list {
  display: flex;
  flex-direction: column;
  padding: var(--space-sm) var(--gutter);
  gap: var(--space-xs);
}
.mobile-menu__list a {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.4rem 0;
  color: var(--color-ink-soft);
}
.mobile-menu__cta {
  margin: 0 var(--gutter) var(--space-sm);
  width: max-content;
}

@media (min-width: 1200px) {
  .main-nav {
    display: block;
  }
  .main-nav__cta {
    display: inline-flex;
  }
  .hamburger {
    display: none;
  }
  .mobile-menu {
    display: none;
  }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  background: linear-gradient(
    50deg,
    var(--color-secondary) 40%,
    var(--color-primary-70)
  );
  padding: 0vw 7vw;
}
.hero_about {
  background-color: var(--color-secondary);
}
.hero__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  gap: 2.3vw;
  grid-template-columns: 1fr;
}
.hero__copy {
  display: flex;
  flex-direction: column;
  gap: 0.9vw;
}
.hero__title {
  color: rgba(3, 31, 48, 1);
  font-family: var(--font-primary);
  font-weight: 600;
  font-style: italic;
  font-size: 3.52vw;
  line-height: 4vw;
  max-width: 14ch;
}
.hero__subtitle {
  font-family: var(--font-secondary);
  font-weight: 700;
  font-style: italic;
  color: rgba(5, 54, 89, 1);
  /* font-size: var(--fs-lead); */
  font-size: 2.34vw;
}
.hero__media {
  border-radius: var(--radius-md);
  overflow: hidden;
  /* box-shadow: var(--shadow-card); */
}
.hero__media img {
  /* width: 100%;  */
  /* width: 38vw; */
  width: 29.5vw;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

@media (min-width: 768px) {
  .hero__inner {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }
  .hero__title {
    /* max-width: 12ch; */
    max-width: 17ch;
  }
}
/* about page hero */
.hero_about {
  background-color: var(--color-secondary);
  /* height: 34vw; */
  height: 77.6vh;
}
.hero_about_head {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero_about_head h1 {
  position: absolute;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--font-size-32);
  text-align: left;
  color: var(--color-primary);
  background-color: rgba(240, 240, 240, 1);
  /* padding: 24px 40px; */
  padding: 4vh 2.9vw;
  width: 40%;
  right: 18vw;
  /* top: 20vh; */
  top: 16vh;
}
.hero_about_head p {
  position: absolute;
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: var(--font-size-18);
  line-height: var(--lh-26); /* 26px */
  text-align: left;
  color: var(--color-surface);
  /* padding: 24px 40px; */
  padding: 4vh 2.9vw;
  width: 41%;
  right: 14vw;
  top: 40vh;
}
.hero_about_head p:last-child {
  color: var(--color-dark);
  top: 70vh;
}
.hero_about_para {
  display: flex;
  margin: 30vh 8vw;
  margin-bottom: 0;
  flex-direction: column;
  gap: 2vh; /* 12px */
}
.hero_about_para p {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: var(--font-size-18);
  line-height: var(--lh-26);
  text-align: left;
  color: var(--color-dark);
}
.hero_about_inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  gap: 2.3vw;
  grid-template-columns: 1fr;
}
.hero_about_media {
  /* border: 20px solid var(--color-surface); */
  /* overflow: hidden; */
  position: relative;
}
.hero_about_media img {
  /* margin: 71px 71px -135px 102px; */
  /* border: 15px solid var(--color-surface); */
  /* width: 518px; */
  /* height: 518px; */
  position: absolute;
  border: 1.1vw solid var(--color-surface);
  margin: 11.8vh 0vw 0vh 7.5vw;
  width: 37.9vw;
  height: 86.5vh;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

/* ==========================================================================
   STATS STRIP
   ========================================================================== */
.stats {
  padding: 0 10vw;
  padding-top: 6.68vh;
}
.stats__grid {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
}
.stats__item {
  display: flex;
  flex-direction: column;
  gap: 2vh;
}
.stats__value {
  font-family: var(--font-secondary);
  font-weight: 900;
  font-size: 2.09vw;
  color: var(--color-primary);
}
.stats__label {
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 1.47vw;
  color: rgba(47, 47, 47, 1);
}

@media (min-width: 768px) {
  .stats__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about {
  /* padding: 3vw 3.5vw 3vw 3.5vw; */
  padding: 0 2.93vw;
  padding-top: 6.69vh;
  max-width: var(--content-max);
  margin: 0 auto;
}
.about__inner {
  display: grid;
  align-items: center;
  text-align: center;
  justify-items: center;
}
.about__portrait {
  width: min(220px, 60vw);
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.about__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.about__copy {
  /* max-width: 42ch; */
  max-width: 100%;
}
.about__title {
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 2.64vw;
  margin-bottom: 2.51vh; /* 2.51vhL:15px */
}
.about__copy p {
  color: var(--color-ink-soft);
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 1.32vw;
  line-height: 1.76vw;
}

.about__banner {
  /* margin-top: var(--space-lg); */
  background: linear-gradient(
    120deg,
    var(--color-primary),
    rgba(104, 167, 124, 1)
  );
  color: #fff;
  border-radius: var(--radius-md);
  /* padding: var(--space-md); */
  padding: 3vw 3.5vw;
  display: grid;
  /* gap: 1.67vw; */
}
.about__banner p {
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 1.47vw; /* 20px:1.47vw */
  line-height: 1.9vw;
  width: 46vw;
}

.about__banner p:nth-last-child(1) {
  font-family: var(--font-secondary);
  /* font-weight: 900; */
  font-weight: 700;
  font-size: 1.32vw;
  line-height: 1.9vw;
  /* padding: 0vw 9.5vw; */
  padding: 0vw 8.5vw;
  width: 100%;
}

.about__banner p:nth-last-child(1) a {
  color: rgba(3, 31, 48, 1);
  text-decoration: none;
  font-family: var(--font-secondary);
  /* font-weight: 900; */
  font-weight: 700;
  font-size: 1.32vw;
  line-height: 1.9vw;
}
.about__banner em {
  font-style: italic;
  font-weight: 700;
}
.about__banner .link-inline {
  color: #fff;
}

@media (min-width: 768px) {
  .about__inner {
    /* grid-template-columns: 0.4fr 0.6fr;
    text-align: left;
    justify-items: center; */

    grid-template-columns: 0.3fr 0.4fr;
    text-align: left;
    /* justify-items: start; */
    justify-items: center;
    justify-content: center;
  }
  .about__portrait {
    width: 100%;
    /* max-width: 260px; */
    max-width: 24.5vw;
  }
  .about__banner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services {
  padding: 0 6vw;
  padding-top: 15.03vh;
  max-width: var(--content-max);
  margin: 0 auto;
}
.services__grid {
  display: grid;
  /* gap: var(--space-md); */
  gap: 2.42vw;
  grid-template-columns: 1fr;
  justify-content: center;
}
.service-card {
  background: var(--color-surface-alt);
  border-radius: 1.2vw;
  padding: 6.7vh 4.35vw;
  display: flex;
  flex-direction: column;
  gap: 2vw;
  transition:
    box-shadow var(--transition),
    transform var(--transition);
  /* box-shadow: 0 0.2vw 0.4vw 0.3vw rgba(20, 40, 35, 0.2); */
  box-shadow: 0 0vw 0.5vw 0.1vw rgba(20, 40, 35, 0.2);
}
.service-card:hover {
  /* box-shadow: var(--shadow-soft); */
  transform: translateY(-2px);
}
.service-card h3 {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 2.05vw;
}
.service-card p {
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: var(--font-size-16);
  color: var(--color-ink-soft);
  line-height: var(--lh-normal);
  flex-grow: 1;
}
.service-card .btn {
  font-weight: 400;
  font-size: var(--font-size-16);
  width: max-content;
  border: 0.1vw solid #fff;
  transition:
    box-shadow var(--transition),
    transform var(--transition);
}
.service-card .btn svg {
  /* width: 1.5vw;
  height: 1.5vw; */
  width: 1.47vw;
  height: 3.34vh;
}

.service-card .btn:hover {
  /* box-shadow: 0 4px 3px 1px rgba(20, 40, 35, 0.2); */
  box-shadow: 0 0.3vw 0.2vw 0.1vw rgba(20, 40, 35, 0.2);
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .services__grid {
    /* grid-template-columns: repeat(2, 1fr); */
    /* grid-template-columns: 0.32fr 0.32fr; */
    grid-template-columns: 0.39fr 0.39fr;
  }
}

/* ==========================================================================
   CLIENTS
   ========================================================================== */
.clients {
  padding: 0 6.89vw;
  padding-top: 15.03vh;
  max-width: var(--content-max);
  margin: 0 auto;
}
.clients__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.98vw;
}
.clients__logo {
  border-radius: var(--radius-sm);
  padding: 1.5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-ink-soft);
  min-height: 72px;
  /* box-shadow: 0 1px 7px 2px rgba(20, 40, 35, 0.1); */
  /* box-shadow: 0 0.1vw 0.7vw 0.2vw rgba(20, 40, 35, 0.1); */
  box-shadow: 0 0.1vw 0.6vw 0.01vw rgba(20, 40, 35, 0.2);
  /* transition:
    box-shadow var(--transition),
    transform var(--transition); */
}
/* .clients__logo:hover {
  transform: translateY(-4px);
} */

.clients__logo img {
  width: 10vw;
  height: auto;
  object-fit: contain;
}

@media (min-width: 768px) {
  .clients__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ==========================================================================
   IMPACT BANNER
   ========================================================================== */
.impact-banner {
  background: rgba(104, 167, 124, 1);
  /* margin: var(--space-lg) var(--gutter); */
  margin: 0 6vw;
  margin-top: 15.03vh;
  border-radius: var(--radius-md);
  border: 0.1vw solid var(--color-surface);
  /* border-radius: 1.2vw; */
  padding: var(--space-md);
  max-width: var(--content-max);
  /* margin-inline: auto; */
  box-shadow: 0 0.3vw 0.2vw 0.1vw rgba(20, 40, 35, 0.2);
}
.impact-banner p {
  text-align: center;
  color: #fff;
  font-family: var(--font-primary);
  font-style: italic;
  font-weight: 600;
  font-size: 2.35vw;
  max-width: 40ch;
  margin-inline: auto;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials {
  padding: 0 6.89vw;
  padding-top: 15.03vh;
  max-width: var(--content-max);
  margin: 0 auto;
}
.testimonials__grid {
  display: flex;
  gap: 1.76vw;
  align-items: flex-start;
  flex-direction: row;
}
.testimonials__grid_img {
  /* width: 5.5vw;
  height: 5.5vw; */
  width: 5.5vw;
  height: 7.33vw;
}
.testimonial-card {
  background: var(--color-surface-alt);
  border-radius: var(--radius-md);
  /* padding: var(--space-md); */
  padding: 6.02vh 4.4vw;
  margin: 0;
  /* box-shadow: var(--shadow-full); */
  box-shadow: 0 0vw 0.5vw 0.1vw rgba(20, 40, 35, 0.2);
}
.testimonial-card__quote {
  font-family: Georgia, serif;
  font-size: 2.5rem;
  color: var(--color-primary);
  line-height: 1;
  display: block;
}
.testimonial-card blockquote {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 1.45vw;
  line-height: 4vh;
  margin: 4.01vh 0;
  margin-top: 0;
  color: var(--color-ink-soft);
}
.testimonial-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.testimonial-card__dash {
  border-top: 0.1vh solid var(--color-primary);
  max-width: 63%;
  /* margin-bottom: 0.5vw; */
}
.testimonial-card__name {
  font-family: var(--font-primary);
  font-size: 1.45vw;
  font-weight: 500;
  color: var(--color-primary);
  margin: 2vh 0;
}
.testimonial-card__role {
  font-family: var(--font-secondary);
  font-size: var(--font-size-16);
  font-weight: 700;
  color: rgba(47, 47, 47, 1);
}
.testimonials__cta {
  text-align: center;
  margin-top: var(--space-md);
}

@media (min-width: 768px) {
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================================================
   EBOOK
   ========================================================================== */
.ebook {
  padding: 0 6.89vw;
  padding-top: 15.03vh;
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  gap: var(--space-md);
  align-items: center;
}
.ebook__device {
  border-radius: var(--radius-md);
  overflow: hidden;
  /* box-shadow: var(--shadow-card); */
}
.ebook__device img {
  /* width: 517px; */
  width: 38vw;
}
.ebook__copy p:first-of-type {
  font-family: var(--font-secondary);
  color: rgba(47, 47, 47, 1);
  font-weight: 400;
  font-size: var(--font-size-20);
  line-height: var(--lh-26); /* 26px; */
  margin-bottom: 6.02vh;
  padding-right: 12.5vw;
}
.ebook__link {
  font-family: var(--font-secondary);
  font-size: var(--font-size-20);
  font-weight: 700;
  font-style: italic;
  color: var(--color-primary);
  margin-bottom: 3.01vh;
}

@media (min-width: 768px) {
  .ebook {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

/* ==========================================================================
   RESOURCES
   ========================================================================== */
.resources {
  /* padding: var(--space-xl) var(--gutter); */
  padding: 0 6.89vw;
  padding-top: 15.03vh;
  max-width: var(--content-max);
  margin: 0 auto;
}
.resources__header {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin-bottom: 6.02vh; /* 6.02vh:36px */
  border-bottom: 0.1vh solid var(--color-primary);
  padding-bottom: 4.01vh;
}
.resources__header p {
  font-family: var(--font-secondary);
  font-size: var(--font-size-16);
  font-weight: 400;
  color: var(--color-dark);
  max-width: 33%;
  margin-bottom: 3vh;
}
.resources__grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
}
.resource-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  background-color: var(--color-light);
  /* border-radius: 28px;
  padding: 12px; */
  border-radius: 2.1vw;
  padding: 2vh 0.9vw;
}
.resource-card img {
  width: 100%;
  border-radius: var(--radius-md);
  aspect-ratio: 16/10.5;
  object-fit: cover;
  margin-bottom: 4vh;
}
.resource-card h3 {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--font-size-16);
  line-height: 1.5vw;
  color: var(--color-primary);
}
.resource-card p {
  font-family: var(--font-secondary);
  color: var(--color-dark);
  font-size: var(--font-size-16);
  line-height: 1.5vw;
  flex-grow: 1;
}
.resource-card .btn {
  /* width: max-content; */
  width: auto;
  justify-content: space-between;
  padding: 2vh 0.9vw 2vh 1.75vw;
  margin-top: 4vh;
}

@media (min-width: 768px) {
  .resources__header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: var(--space-md);
  }
  .resources__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact {
  /* max-width: var(--content-max);
  margin: 0 auto var(--space-xl);
  padding: 0 var(--gutter);
  display: grid;
  gap: 0;
  background: var(--color-surface-alt);
  border-radius: var(--radius-md);
  overflow: hidden; */

  max-width: var(--content-max);
  margin: 10vh 6vw;
  padding: 0;
  display: flex;
  gap: 0;
  background: var(--color-surface-alt);
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  /* align-items: center; */
}
.contact__form-wrap {
  padding: var(--space-md);
  width: 57vw;
}
.contact__form-wrap p {
  font-family: var(--font-secondary);
  font-size: var(--font-size-16);
  color: var(--color-dark);
  font-weight: 600;
}
.contact__title {
  font-family: var(--font-secondary);
  font-size: var(--font-size-32);
  color: rgba(10, 83, 65, 1);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.contact__row {
  display: grid;
  gap: var(--space-sm);
  grid-template-columns: 1fr;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.field label {
  font-family: var(--font-secondary);
  font-size: var(--font-size-14);
  font-weight: 600;
  color: var(--color-dark);
}
.field input,
.field textarea {
  /* border: 1px solid var(--color-line); */
  border: none;
  border-radius: var(--radius-sm);
  padding: 1.9vh 1vw;
  font-family: var(--font-secondary);
  font-size: var(--font-size-14);
  background: #fff;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
  resize: vertical;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--color-primary-60);
  box-shadow: 0 0 0 3px rgba(61, 122, 104, 0.15);
  outline: none;
}
/* .field input:invalid:not(:placeholder-shown) {
  border-color: var(--color-secondary);
} */
.contact__form .btn {
  width: max-content;
  /* padding: 12px 12px 12px 24px; */
  padding: 2vh 0.9vw 2vh 1.75vw;
}
.form-status {
  font-size: var(--fs-small);
  color: var(--color-primary-70);
  min-height: 1.2em;
}
.contact__media {
  display: none;
}
.contact__media img {
  /* width: 100%;
  height: 100%; */
  /* width: 312px;
  height: 401px; */
  width: 30vw;
  height: auto;

  object-fit: cover;
}

@media (min-width: 768px) {
  .contact {
    grid-template-columns: 1.1fr 0.9fr;
  }
  .contact__media {
    display: block;
  }
  .contact__row {
    grid-template-columns: 1fr 1fr;
  }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--color-footer-bg);
  padding: 10vh 4.5vw;
}
.site-footer__inner {
  max-width: var(--content-max);
  padding: 6vh 2.5vw;
  display: flex;
  background-color: #fff;
  border-radius: var(--radius-14);
}
.vertical_dash {
  border-left: 1px solid var(--color-primary);
  height: 100%;
  margin: 0 20px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding-right: 4.5vw;
  border-right: 1px solid var(--color-primary);
}
.footer-brand .brand__mark {
  background: rgba(255, 255, 255, 0.1);
  color: #cfe0da;
}
.footer-brand .brand__name {
  color: #fff;
}
.footer-brand .brand__tag {
  color: #9fb6ae;
}
.footer-links {
  padding-left: 4.5vw;
}
.footer-links__title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--font-size-24);
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}
.footer-links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5vw;
}
.footer-links a {
  font-family: var(--font-secondary);
  font-size: var(--font-size-16);
  font-weight: 600;
  color: var(--color-primary);
  transition: color var(--transition);
}
/* .footer-links a:hover {
  color: #fff;
} */
.site-footer__bottom {
  font-family: var(--font-secondary);
  /* margin-top: 36px; */
  margin-top: 6vh;
  text-align: center;
  font-size: var(--font-size-14);
  color: var(--color-light);
}

.footer-social {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-top: 6.02vh;
}
.social-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: var(--color-surface);
  border-radius: 719px;
  padding: 8px 10px;
  gap: 0.4vw;
}
.social-link svg {
  width: 17.28px;
  height: 17.28px;
}
.social-link p {
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: var(--font-size-14);
  line-height: 18.72px;
  color: var(--color-dark);
}

@media (min-width: 768px) {
  .site-footer__inner {
    grid-template-columns: 0.5fr 1fr;
    align-items: start;
  }
}

/* About Page css */
/* Professional Credential */
.credential {
  padding: 0 5.86vw;
  padding-top: 15.03vh;
}
.cred__grid {
  display: flex;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5vw;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
}
.cred__logo {
  width: 24%;
  border-radius: var(--radius-sm);
  padding: 1.5vw;
  display: flex;
  gap: 2vw;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.1vw 0.7vw 0.2vw rgba(20, 40, 35, 0.1);
}
.cred__logo img {
  max-width: 10vw;
  /* width: 80px; */
  /* width: 120px; */
  /* width: 13.5vw; */
  /* width: 5.9vw; */
  /* height: 65px; */
  /* height: 12vh; */
  /* height: 16.4vh; */
  height: 4vw;
  /* height: 98px;*/
  object-fit: contain;
}
.cred__logo p {
  /* width: 63%; */
  font-family: var(--font-secondary);
  font-size: var(--font-size-16);
  line-height: var(--lh-26);
  font-weight: 400;
  text-align: left;
}

@media (min-width: 768px) {
  .cred__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* Leadership Capabilities Developed Through Coaching */
.about_LCDPoints {
  padding: 0 6.89vw;
  padding-top: 10vh;
}
.LCDPoints {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  padding: 0vh 15vw;
}

.LCDPoints ul {
  font-family: var(--font-primary);
  font-size: var(--font-size-20);
  font-weight: 500;
  color: var(--color-primary);
  list-style: disc;
}
.LCDPoints ul li {
  margin-bottom: 2vh; /* 12px */
}
.LCDPoints_tag {
  margin-top: 10vh; /* 60px */
}
.LCDPoints_tag p {
  font-family: var(--font-primary);
  font-size: var(--font-size-32);
  font-weight: 600;
  color: var(--color-primary);
  font-style: italic;
  text-align: center;
}

/* about soul */
.about_soul {
  display: flex;
  flex-direction: column;
  /* margin: var(--space-lg) 12vw; */
  margin: 0 7.33vw;
  margin-top: 10vh;
}
.about_soul_card {
  display: flex;
  position: relative;
  background-image: url(../images/soulaBG.png);
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: var(--radius-md);
  /* padding: 36px; */
  padding: 6vh 2.64vw;
  box-shadow: var(--shadow-full);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2vh;
}

.about_soul_card p:first-child {
  font-family: var(--font-primary);
  font-size: var(--font-size-36);
  font-style: italic;
  font-weight: 500;
  color: var(--color-primary);
}
.about_soul_card p:nth-last-child(2) {
  font-family: var(--font-secondary);
  font-size: var(--font-size-20);
  font-weight: 600;
  color: var(--color-dark);
  width: 43vw;
}

.about_beyond {
  display: flex;
  flex-direction: column;
  /* 14vw; */
  padding: 0 9vw;
  padding-top: 15.03vh;
}

.beyond {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  /* gap: 80px; */
  gap: 13.36vh;
}

.beyond img {
  /* width: 441px; */
  /* height: 441px; */
  /* border-radius: 32px; */
  /* width: 32.29vw; */
  width: auto;
  height: 73.63vh;
  border-radius: var(--radius-32);
}
.beyond h2 {
  font-family: var(--font-primary);
  font-size: var(--font-size-36);
  font-style: italic;
  font-weight: 400;
  color: var(--color-dark);
}
.beyond p {
  font-family: var(--font-secondary);
  font-size: var(--font-size-20);
  line-height: 5vh;
  font-weight: 600;
  color: var(--color-dark);
  margin-top: 2vh;
}

/* about discovery call */
.about_discovery {
  padding: 10vh 3.52vw;
  /* padding-top: 10vh; */
}
.discovery_card {
  display: flex;
  flex-direction: row;
  /* padding: 20px; */
  padding: 3.35vh 1.47vw;
  background-color: rgb(247, 247, 247);
  border-radius: 44px;
  gap: 0.88vw;
}
.discovery_img {
  display: flex;
  background-image: url("../images/dicoveryBG.jpg");
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
  width: 46vw;
  height: 46vh;
  border-radius: var(--radius-24);
}
.discovery_card img {
  width: 46vw;
  height: auto;
  border-radius: var(--radius-24);
  object-fit: contain;
}
.discovery_blue_card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  background-color: rgba(5, 54, 89, 1);
  /* padding: 36px; */
  padding: 6vh 2.64vw;
  border-radius: var(--radius-24);
}
.discovery_blue_card p {
  width: 60%;
  font-family: var(--font-primary);
  font-size: var(--font-size-20);
  font-weight: 600;
  color: var(--color-surface);
}

/* Contact page */
.contact_Impactfull h1 {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: var(--font-size-48);
  color: var(--color-primary);
  line-height: var(--lh-57);
  letter-spacing: -0.071vw;
  text-align: center;
  padding: 0 10vw;
  margin-bottom: var(--mb-24);
}
.contact_Impactfull p {
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: var(--font-size-20);
  color: var(--color-dark);
  line-height: 4.89vh; /* 29px */
  text-align: center;
  margin-bottom: var(--mb-24);
}

/* contact form */
.contact_Impactfull {
  padding: 15.04vh 14.65vw;
}
.contact_form {
  justify-content: center;
  align-items: flex-start;
  /* padding: 10vh 12vw; */
  padding: 10vh 0vw;
  padding-top: 0;
  gap: 4.89vh; /* 29px */
}
.contact_card {
  display: flex;
  flex-direction: column;
  gap: 2.35vw; /* 2.05vw : 28px; 2.35vw : 32px */
  /* max-width: 49.79vw;  */
  /* 49.79vw : 680px; */
  /* width: 100%; */
  width: 55.79vw;
  background-color: var(--color-surface);
  padding: 6.02vh 2.64vw; /* 36px */
  border-radius: 0.59vw; /* 8px; */
  box-shadow: var(--shadow-card);
}
.contact_card_head {
  font-family: var(--font-primary);
  font-size: var(--font-size-24);
  line-height: 5.62vh;
  font-weight: 600;
  color: var(--color-primary);
}

.formgroup {
  display: flex;
  flex-direction: column;
  gap: 4.01vh; /* 24px */
}

.formgroup .flex-row {
  display: flex;
  gap: 4.01vh;
  flex-wrap: wrap;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 1.34vh; /* 1.34vh:8px */
  flex: 1;
  min-width: 220px;
}

.formgroup .field input,
.contact_card .field textarea {
  background: rgb(247, 250, 252);
  border-radius: 0px;
}

/* background: rgb(255 255 255);
    border-radius: 8px; */
.contact_card > div:nth-of-type(3) {
  display: flex;
  flex-direction: column;
  gap: 1.34vh;
  margin-top: var(--mb-8);
}

.contact_card h3 {
  font-family: var(--font-secondary);
  font-size: var(--font-size-14);
  line-height: 2.68vh;
  font-weight: 700;
  margin-bottom: var(--mb-9); /* 1.34vh:8px */
  letter-spacing: 0.05vw;
}

.contact_card input[type="checkbox"] {
  accent-color: var(--color-primary);
  margin-right: 0.88vw; /* .88vw:12px */
  width: 1.03vw;
  height: 2.34vh;
}

.contact_card label[for^="answer"] {
  display: flex;
  font-family: var(--font-secondary);
  font-size: var(--font-size-12);
  line-height: 2.8vh;
  font-weight: 700;
  letter-spacing: 0.05vw;
  margin-bottom: var(--mb-8);
  justify-content: flex-start;
  align-items: center;
}

.contact_card .btn {
  align-self: flex-start;
  padding: 3.18vh 1.47vw; /* 3.18vh 1.47vw: 19px 20px */
  margin-top: var(--mb-8);
}

.payal_image {
  position: relative;
  display: flex;
  align-items: flex-end;
  /* justify-content flex-start; */
  background-image: url("../images/payalcontact1.png");
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  width: 25vw;
  /* min-height: 420px; */
  height: -webkit-fill-available;
  border-top-right-radius: var(--radius-10);
  margin: 0.52vw;
  overflow: hidden;
}

.payal_image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(31, 123, 100, 0.85),
    rgba(31, 123, 100, 0.45) 8%,
    rgba(31, 123, 100, 0) 12%
  );
  pointer-events: none;
}

.payal_image > div {
  position: relative;
  z-index: 1;
  padding: var(--pd-27);
  color: #fff;
}
.payal_image h3 {
  font-family: var(--font-primary);
  font-size: var(--font-size-20);
  line-height: var(--lh-28); /* 4.68vh:28px; */
  font-weight: 500;
}
.payal_image p {
  font-family: var(--font-secondary);
  font-size: var(--font-size-11);
  line-height: 2.34vh;
  font-weight: 600;
  letter-spacing: 0.1vw;
}

/* The Soul Apporach Page */
.soul-banner {
  position: relative;
  max-width: 100%;
  height: 25vw;
  margin: 0 auto;
  /* background-image: url("../images/soulappBan.png"); */
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.soulBg {
  background-image: url("../images/soulappBan.png");
}
.exeBg {
  background-image: url("../images/exeBg.jpg");
}
.soul-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(
    to top,
    rgba(10, 83, 65, 0.72),
    rgba(10, 83, 65, 0.16) 40%,
    rgba(10, 83, 65, 1)
  ); */
  background: linear-gradient(to top, rgba(10, 83, 65, 0.3));
}

.soul-banner__content {
  position: absolute;
  left: 8vw;
  bottom: 20vh;
  z-index: 1;
  color: #fff;
}

.soul-banner__content h1 {
  margin: 0;
  font-family: var(--font-tertiary);
  font-size: var(--font-size-48);
  line-height: 13.36vh;
  font-weight: 700;
  letter-spacing: -0.106vw;
}

.soul-section-2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* max-width: 100%; */
  /* height: 83.5vh; */
  /* height: 93vh; */
  padding: 10vh 0;
  margin: 0 auto;
  background-image: url(../images/soulaBG.png);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  transform: scaleX(-1);
}
.soul-sec2-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: scaleX(-1);
  /* margin-right: 375px; */
  /* margin-left: 73px; */
  /* margin-left: 154px;  */
  margin-left: 11.3vw;
  width: 59%;
}
.soul-sec2-content p {
  font-family: var(--font-secondary);
  font-size: var(--font-size-18);
  line-height: var(--lh-24);
  font-weight: 400;
  margin-bottom: var(--mb-18);
}

/* 
.soul-approach-steps {
  position: relative;
  margin: 50px;
  max-width: 374px;
  height: 1175px;
  background-image: url("../images/soulolbg.png");
  background-size: cover;
  background-position: center;
  overflow: hidden;
} */

/* .soul-approach-steps::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  z-index: 1;
}

.soul-approach-steps > * {
  position: relative;
  z-index: 2;
} */

.container {
  /* max-width: 1140px; */
  max-width: 83.5vw;
}
.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 6.02vh;
}
.order-xl-1 {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.order-xl-12 {
  -webkit-box-ordinal-group: 13;
  -ms-flex-order: 12;
  order: 12;
}
.d-lg-none {
  display: none !important;
}
.col-xl-7 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}
.col-xl-10 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  /* max-width: 83.333333%; */
  max-width: 52%;
  margin-left: 2.64vw;
}
.section-soul-leadership {
  margin: 0 3.67vw;
  margin-top: 10vh;
  background-image: url(../images/soulolbg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
  background-color: rgb(247, 247, 247);
  padding: 2.64vw;
}

.section-soul-leadership h2.header {
  font-family: var(--font-secondary);
  font-size: var(--font-size-32);
  font-weight: 700;
  color: var(--color-dark);
  line-height: 5.35vh;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-soul-leadership h2.header span {
  padding: 0px 0 10px 0;
  font-size: var(--font-size-48);
  color: #031f30;
  font-weight: bold;
  line-height: 62px;
  display: block;
}

.section-soul-leadership .desc {
  font-family: var(--font-secondary);
  font-size: var(--font-size-24);
  line-height: var(--lh-24);
  font-weight: 700;
  color: var(--color-primary);
}

.section-soul-leadership .right-image img {
  margin: 23.38vh 2.93vw 15.87vh 0;
  max-width: 28.92vw;
  height: 133.56vh;
  border-radius: 0.88vw;
}

.soul-points-section {
  padding: 6.7vh 0;
}

.soul-points-section .soul-point-icon {
  display: flex;
  /* width: 6.59vw;
  height: 15.03vh; */
  width: 8.79vw;
  /* height: 20.04vh; */
  height: 8.79vw;
  border-radius: 100%;
  background-color: var(--color-primary);
  font-size: 4.4vw;
  color: #ffffff;
  line-height: 5.85vh;
  left: 0;
  right: auto;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.soul-points-section .soul-point-icon span {
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 6.3vw;
  line-height: 18.2vh;
  color: var(--color-surface);
  /* padding-left: 5px; */
}

.soul-points-section .point-header {
  font-family: var(--font-secondary);
  font-size: var(--font-size-24);
  color: var(--color-primary);
  font-weight: 700;
}
.soul-points-section .point-tag {
  font-family: var(--font-secondary);
  font-size: var(--font-size-20);
  color: var(--color-primary);
  font-weight: 500;
}

.soul-points-section .point-desc {
  font-family: var(--font-secondary);
  font-size: var(--font-size-16);
  color: rgba(70, 76, 74, 1);
  line-height: var(--lh-24);
  font-weight: 400;
}

.section-vision-statement {
  padding: 73px 52px;
  font-size: 38px;
  color: #053659;
  line-height: 59px;
  font-style: italic;
  background-color: #fffcf2;
  /* border: 1px solid #707070;
    border-radius: 0px;*/
  box-shadow: 0px -2px 23px 0px #d2d2d2;
}

.soul-coaching {
  display: flex;
  flex-direction: row;
  /* padding: 20px 215px; */
  padding-top: 10vh;
  justify-content: center;
  align-items: center;
  gap: 0.88vw;
}
.soul-coaching-1 {
  display: flex;
  /* flex: 1; */
  /* width: 379px; */
  width: 28vw;
  background-color: var(--color-primary);
  /* rgba(10, 83, 65, 1) */
  flex-direction: column;
  align-items: flex-end;
  padding: 5.35vh 2.64vw;
  border-top-left-radius: 1.47vw;
  border-bottom-left-radius: 1.47vw;
  box-shadow: var(--shadow-bottom);
  border: 0.1vw solid var(--color-surface);
}
.soul-coaching-1:last-child {
  align-items: flex-start;
  background-color: rgba(10, 83, 65, 1);
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  border-top-right-radius: 1.47vw;
  border-bottom-right-radius: 1.47vw;
}
.soul-coaching-head {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: var(--font-size-24);
  line-height: 2.8vh;
  color: var(--color-surface);
  margin-bottom: 2vh;
}
.soul-coaching-know {
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: var(--font-size-16);
  line-height: 2.8vh;
  color: var(--color-surface);
}
