.elementor-33 .elementor-element.elementor-element-5ecb202{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-0ecdabf *//* =========================================
   APEX CORPORATE WEBSITE
   Typography:
   - Headings: Plus Jakarta Sans
   - Body: Inter
========================================= */

:root {
  --apex-navy: #08275f;
  --apex-dark-navy: #031a42;
  --apex-deep-navy: #021432;

  --apex-green: #23b95f;
  --apex-dark-green: #07823e;
  --apex-soft-green: #eaf8ef;

  --heading: #10223f;
  --body-text: #5f6d80;
  --light-text: #aebdd0;

  --background-soft: #f4f7f6;
  --background-white: #ffffff;
  --border: #dfe7e4;

  --container: 1180px;

  --font-heading: "Plus Jakarta Sans", Arial, sans-serif;
  --font-body: "Inter", Arial, sans-serif;
}


/* =========================================
   RESET
========================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background-white);
  color: var(--heading);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
textarea,
select {
  font-family: var(--font-body);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
}

p {
  margin-top: 0;
  color: var(--body-text);
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  color: inherit;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(34px, 3.8vw, 52px);
  line-height: 1.15;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding: 110px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--apex-dark-green);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-label::before {
  width: 24px;
  height: 2px;
  background: var(--apex-green);
  content: "";
}

.section-label-light {
  color: #70e49a;
}

.section-label-dark {
  color: #07502d;
}

.section-label-dark::before {
  background: #07502d;
}


/* =========================================
   HEADER
========================================= */

.site-header {
  position: relative;
  z-index: 100;
  height: 84px;
  background: var(--background-white);
  border-bottom: 1px solid #e8eeeb;
}

.navbar {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 47px;
  height: 47px;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-copy strong {
  color: var(--apex-navy);
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.brand-copy span {
  margin-top: 3px;
  color: #718094;
  font-size: 9px;
  font-weight: 500;
}

.navigation {
  display: flex;
  align-items: center;
  gap: 31px;
}

.navigation > a:not(.nav-cta) {
  position: relative;
  color: #536176;
  font-size: 13px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.navigation > a:not(.nav-cta):hover,
.navigation > a.active {
  color: var(--apex-navy);
}

.navigation > a.active::after {
  position: absolute;
  right: 0;
  bottom: -12px;
  left: 0;
  height: 2px;
  background: var(--apex-green);
  content: "";
}

.nav-cta {
  display: inline-flex;
  min-height: 45px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 19px;
  background: var(--apex-navy);
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.nav-cta:hover {
  background: var(--apex-dark-navy);
  transform: translateY(-1px);
}

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 8px;
  background: none;
  border: 0;
}

.mobile-menu-button span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 6px auto;
  background: var(--apex-navy);
  transition: 0.2s ease;
}


/* =========================================
   HERO
========================================= */

.hero {
  position: relative;
  display: flex;
  min-height: 690px;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
}

.hero-background {
  position: absolute;
  inset: 0;
  background:
    url("https://images.unsplash.com/photo-1521737711867-e3b97375f902?auto=format&fit=crop&w=2000&q=90")
    64% center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(2, 20, 50, 0.98) 0%,
      rgba(4, 37, 88, 0.94) 45%,
      rgba(4, 37, 88, 0.35) 78%,
      rgba(4, 37, 88, 0.12) 100%
    );
}

.hero-container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 760px;
  padding-bottom: 48px;
}

.hero h1 {
  margin-bottom: 28px;
  color: #ffffff;
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.hero h1 span {
  display: block;
  color: #54dc87;
}

.hero-content > p {
  max-width: 630px;
  margin-bottom: 0;
  color: #d2ddeb;
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 13px;
  margin-top: 35px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 600;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--apex-green);
  color: #052d20;
}

.button-primary:hover {
  background: #51d982;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.45);
  color: #ffffff;
}

.button-secondary:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--apex-navy);
}

.button-white {
  min-width: 175px;
  background: #ffffff;
  color: var(--apex-navy);
}

.button-white:hover {
  background: var(--apex-dark-navy);
  color: #ffffff;
}

.hero-facts {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  gap: 46px;
  padding: 25px max(40px, 5vw);
  background: #ffffff;
}

.hero-fact {
  display: flex;
  min-width: 110px;
  flex-direction: column;
}

.hero-fact strong {
  color: var(--apex-navy);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
}

.hero-fact span {
  margin-top: 2px;
  color: #788598;
  font-size: 10px;
}


/* =========================================
   INTRODUCTION
========================================= */

.introduction-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 105px;
}

.introduction-copy > p {
  font-size: 17px;
}

.text-link,
.service-link,
.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--apex-green);
  color: var(--apex-navy);
  font-size: 13px;
  font-weight: 600;
}


/* =========================================
   SERVICES
========================================= */

.services-section {
  background: var(--background-soft);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 90px;
  margin-bottom: 52px;
}

.section-heading h2 {
  max-width: 690px;
  margin-bottom: 0;
}

.section-heading > p {
  margin-bottom: 3px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e6ece9;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(6, 36, 91, 0.11);
}

.service-card-image {
  position: relative;
  height: 238px;
  background-position: center;
  background-size: cover;
}

.service-card-image::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(2, 26, 67, 0.02),
      rgba(2, 26, 67, 0.38)
    );
  content: "";
}

.service-number {
  position: absolute;
  top: 19px;
  left: 19px;
  z-index: 2;
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  background: var(--apex-green);
  color: #052d20;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
}

.service-card-content {
  padding: 29px;
}

.service-category {
  display: block;
  margin-bottom: 8px;
  color: var(--apex-dark-green);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.service-card-content h3 {
  margin-bottom: 13px;
  color: var(--apex-navy);
  font-size: 25px;
}

.service-card-content p {
  min-height: 108px;
  margin-bottom: 24px;
  font-size: 14px;
}

.service-link {
  font-size: 12px;
}


/* =========================================
   BUSINESS VALUE
========================================= */

.business-value {
  padding: 110px 0;
  background: var(--apex-navy);
  color: #ffffff;
}

.business-value-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 95px;
}

.business-value-image {
  position: relative;
  min-height: 660px;
  background:
    linear-gradient(
      180deg,
      rgba(3, 26, 66, 0.03),
      rgba(3, 26, 66, 0.35)
    ),
    url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1200&q=85")
    center / cover no-repeat;
}

.image-note {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  padding: 19px 22px;
  background: var(--apex-green);
  color: #052d20;
  flex-direction: column;
}

.image-note strong {
  font-family: var(--font-heading);
  font-size: 14px;
}

.image-note span {
  font-size: 11px;
}

.business-value-content h2 {
  color: #ffffff;
}

.business-value-intro {
  max-width: 620px;
  color: #bac8da;
  font-size: 16px;
}

.process-list {
  margin-top: 35px;
}

.process-item {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 17px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.process-number {
  padding-top: 2px;
  color: #67e798;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
}

.process-item h3 {
  margin-bottom: 5px;
  color: #ffffff;
  font-size: 16px;
  letter-spacing: -0.015em;
}

.process-item p {
  margin-bottom: 0;
  color: #aebdd0;
  font-size: 13px;
  line-height: 1.65;
}


/* =========================================
   VALUES
========================================= */

.values-heading {
  max-width: 690px;
  margin-bottom: 50px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.value-card {
  min-height: 285px;
  padding: 30px 27px;
  background: #ffffff;
}

.value-card > span {
  display: grid;
  width: 51px;
  height: 51px;
  place-items: center;
  background: var(--apex-navy);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
}

.value-card h3 {
  margin: 38px 0 12px;
  color: var(--apex-navy);
  font-size: 18px;
  letter-spacing: -0.02em;
}

.value-card p {
  margin-bottom: 0;
  font-size: 13px;
}


/* =========================================
   CALL TO ACTION
========================================= */

.call-to-action {
  padding: 92px 0;
  background: var(--apex-green);
  color: #052d20;
}

.call-to-action-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.call-to-action h2 {
  max-width: 810px;
  margin-bottom: 0;
  color: #052d20;
  font-size: clamp(34px, 4vw, 49px);
}


/* =========================================
   FOOTER
========================================= */

.site-footer {
  background: var(--apex-deep-navy);
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 0.85fr 0.95fr 1.35fr;
  gap: 70px;
  padding: 73px 0;
}

.footer-brand .brand-copy strong {
  color: #ffffff;
}

.footer-brand img {
  background: #ffffff;
}

.footer-introduction > p {
  max-width: 320px;
  margin-top: 22px;
  color: #92a5bd;
  font-size: 13px;
}

.footer-column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 12px;
}

.footer-column h3 {
  margin-bottom: 6px;
  color: #68e498;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column > a:not(.footer-link) {
  color: #c4d0dd;
  font-size: 13px;
}

.footer-column > a:not(.footer-link):hover {
  color: #ffffff;
}

.footer-column > p {
  margin-bottom: 5px;
  color: #92a5bd;
  font-size: 13px;
}

.footer-link {
  color: #ffffff;
  font-size: 12px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 21px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #7388a1;
  font-size: 10px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 960px) {
  .mobile-menu-button {
    display: block;
  }

  .navigation {
    position: absolute;
    top: 84px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    gap: 20px;
    padding: 28px;
    background: #ffffff;
    box-shadow: 0 18px 35px rgba(6, 36, 91, 0.12);
    flex-direction: column;
  }

  .navigation-open {
    display: flex;
  }

  .navigation > a.active::after {
    display: none;
  }

  .nav-cta {
    align-self: flex-start;
  }

  .introduction-grid,
  .section-heading,
  .business-value-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
  }

  .service-card-content p {
    min-height: auto;
  }

  .business-value-image {
    min-height: 520px;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-enquiry {
    grid-column: 1 / -1;
  }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {
  .container {
    width: calc(100% - 30px);
  }

  .section,
  .business-value {
    padding: 75px 0;
  }

  .site-header {
    height: 72px;
  }

  .navigation {
    top: 72px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand-copy strong {
    font-size: 17px;
  }

  .brand-copy span {
    font-size: 8px;
  }

  .hero {
    min-height: 750px;
    align-items: flex-start;
    padding-top: 95px;
  }

  .hero-background {
    background-position: 63% center;
  }

  .hero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(2, 20, 50, 0.98),
        rgba(4, 37, 88, 0.75)
      );
  }

  .hero-content {
    padding-bottom: 115px;
  }

  .hero h1 {
    font-size: 43px;
    line-height: 1.09;
  }

  .hero-content > p {
    font-size: 15px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-facts {
    right: 0;
    left: 0;
    justify-content: space-between;
    gap: 15px;
    padding: 18px 15px;
  }

  .hero-fact {
    min-width: auto;
  }

  .hero-fact strong {
    font-size: 12px;
  }

  .hero-fact span {
    font-size: 8px;
  }

  .service-card {
    display: block;
  }

  .service-card-image {
    height: 230px;
  }

  .business-value-image {
    min-height: 420px;
  }

  .values-grid {
    display: block;
  }

  .value-card {
    min-height: auto;
    margin-bottom: 1px;
  }

  .call-to-action-grid {
    align-items: flex-start;
    flex-direction: column;
    gap: 35px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-enquiry {
    grid-column: auto;
  }

  .footer-bottom {
    gap: 9px;
    flex-direction: column;
  }
}
/* =========================================
   PAGE 3 — SERVICES
========================================= */


/* =========================================
   SERVICES HERO
========================================= */

.services-hero {
  position: relative;
  min-height: 540px;
  padding: 105px 0;
  overflow: hidden;
  background:
    linear-gradient(
      110deg,
      var(--apex-deep-navy) 0%,
      var(--apex-navy) 72%,
      #0b3975 100%
    );
  color: #ffffff;
}

.services-hero-content {
  position: relative;
  z-index: 2;
}

.services-hero h1 {
  max-width: 960px;
  margin-bottom: 27px;
  color: #ffffff;
  font-size: clamp(46px, 6vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.services-hero h1 span {
  color: #55dc87;
}

.services-hero p {
  max-width: 730px;
  margin-bottom: 0;
  color: #c7d5e5;
  font-size: 17px;
}

.services-hero-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  opacity: 0.12;
}

.services-hero-pattern span {
  position: absolute;
  display: block;
  width: 260px;
  height: 360px;
  border-top: 110px solid var(--apex-green);
  border-right: 110px solid transparent;
  border-left: 110px solid transparent;
  transform: rotate(-90deg);
}

.services-hero-pattern span:nth-child(1) {
  top: -80px;
  right: -60px;
}

.services-hero-pattern span:nth-child(2) {
  top: 100px;
  right: 100px;
}

.services-hero-pattern span:nth-child(3) {
  top: 270px;
  right: -50px;
}


/* =========================================
   SERVICE NAVIGATION
========================================= */

.service-navigation {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 20px rgba(6, 36, 91, 0.04);
}

.service-navigation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.service-navigation a {
  display: grid;
  grid-template-columns: 35px 1fr 20px;
  align-items: center;
  gap: 15px;
  min-height: 76px;
  padding: 0 25px;
  border-right: 1px solid var(--border);
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.service-navigation a:first-child {
  border-left: 1px solid var(--border);
}

.service-navigation a:hover {
  background: var(--apex-soft-green);
}

.service-navigation a > span {
  color: var(--apex-dark-green);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
}

.service-navigation a > strong {
  color: var(--apex-navy);
  font-family: var(--font-heading);
  font-size: 14px;
}

.service-navigation a > b {
  color: var(--apex-green);
  font-size: 16px;
}


/* =========================================
   SERVICE DETAILS
========================================= */

.service-detail {
  scroll-margin-top: 75px;
}

.service-detail-alternate {
  background: var(--background-soft);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 95px;
}

.service-detail-alternate .service-detail-image {
  order: 2;
}

.service-detail-image {
  position: relative;
  min-height: 620px;
  background-position: center;
  background-size: cover;
}

.assessment-image {
  background-image:
    linear-gradient(
      180deg,
      rgba(3, 26, 66, 0),
      rgba(3, 26, 66, 0.35)
    ),
    url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1400&q=85");
}

.training-image {
  background-image:
    linear-gradient(
      180deg,
      rgba(3, 26, 66, 0),
      rgba(3, 26, 66, 0.35)
    ),
    url("https://images.unsplash.com/photo-1524178232363-1fb2b075b655?auto=format&fit=crop&w=1400&q=85");
}

.counseling-image {
  background-image:
    linear-gradient(
      180deg,
      rgba(3, 26, 66, 0),
      rgba(3, 26, 66, 0.35)
    ),
    url("https://images.unsplash.com/photo-1573497620053-ea5300f94f21?auto=format&fit=crop&w=1400&q=85");
}

.service-detail-number {
  position: absolute;
  top: 22px;
  left: 22px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  background: var(--apex-green);
  color: #052d20;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
}

.service-image-label {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  padding: 20px 24px;
  background: var(--apex-navy);
  color: #ffffff;
  flex-direction: column;
}

.service-image-label strong {
  font-family: var(--font-heading);
  font-size: 14px;
}

.service-image-label span {
  margin-top: 2px;
  color: #afc0d4;
  font-size: 11px;
}

.service-detail-content h2 {
  max-width: 650px;
}

.service-detail-lead {
  color: var(--heading);
  font-size: 16px;
  font-weight: 500;
}

.service-deliverables {
  margin: 31px 0;
}

.service-deliverable {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 17px;
  padding: 18px 0;
  border-top: 1px solid var(--border);
}

.service-deliverable > span {
  padding-top: 2px;
  color: var(--apex-dark-green);
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
}

.service-deliverable h3 {
  margin-bottom: 6px;
  color: var(--apex-navy);
  font-size: 16px;
  letter-spacing: -0.02em;
}

.service-deliverable p {
  margin-bottom: 0;
  font-size: 13px;
}


/* =========================================
   SERVICE PROCESS
========================================= */

.service-process {
  padding: 110px 0;
  background: var(--apex-navy);
  color: #ffffff;
}

.service-process-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 85px;
  margin-bottom: 50px;
}

.service-process-heading h2 {
  max-width: 700px;
  margin-bottom: 0;
  color: #ffffff;
}

.service-process-heading > p {
  margin-bottom: 4px;
  color: #afc0d4;
}

.service-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.service-process-grid article {
  min-height: 280px;
  padding: 31px 26px;
  background: #092b67;
}

.service-process-grid article > span {
  display: grid;
  width: 45px;
  height: 45px;
  margin-bottom: 55px;
  place-items: center;
  background: var(--apex-green);
  color: #052d20;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
}

.service-process-grid h3 {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 17px;
}

.service-process-grid p {
  margin-bottom: 0;
  color: #afc0d4;
  font-size: 13px;
}


/* =========================================
   SERVICE OUTCOMES
========================================= */

.service-outcomes {
  background: #ffffff;
}

.service-outcomes-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 100px;
}

.service-outcomes-title {
  position: sticky;
  top: 120px;
}

.outcomes-list {
  border-top: 1px solid var(--border);
}

.outcomes-list article {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.outcomes-list article > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  background: var(--apex-soft-green);
  color: var(--apex-dark-green);
  font-weight: 700;
}

.outcomes-list h3 {
  margin-bottom: 5px;
  color: var(--apex-navy);
  font-size: 17px;
}

.outcomes-list p {
  margin-bottom: 0;
  font-size: 13px;
}


/* =========================================
   SERVICES TABLET
========================================= */

@media (max-width: 960px) {
  .service-detail-grid,
  .service-process-heading,
  .service-outcomes-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .service-detail-alternate .service-detail-image {
    order: 0;
  }

  .service-detail-image {
    min-height: 520px;
  }

  .service-process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-outcomes-title {
    position: static;
  }
}


/* =========================================
   SERVICES MOBILE
========================================= */

@media (max-width: 650px) {
  .services-hero {
    min-height: 520px;
    padding: 80px 0;
  }

  .services-hero h1 {
    font-size: 42px;
  }

  .services-hero-pattern {
    width: 80%;
  }

  .service-navigation {
    position: static;
  }

  .service-navigation-grid {
    grid-template-columns: 1fr;
  }

  .service-navigation a {
    min-height: 65px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    border-left: 1px solid var(--border);
  }

  .service-detail-image {
    min-height: 430px;
  }

  .service-process {
    padding: 75px 0;
  }

  .service-process-grid {
    grid-template-columns: 1fr;
  }

  .service-process-grid article {
    min-height: auto;
  }

  .service-process-grid article > span {
    margin-bottom: 38px;
  }
}/* End custom CSS */