
:root {
  --white-color:                  #ffffff;
  --primary-color:                #13547a;
  --secondary-color:              #80d0c7;
  --section-bg-color:             #f0f8ff;
  --custom-btn-bg-color:          #80d0c7;
  --custom-btn-bg-hover-color:    #13547a;
  --dark-color:                   #000000;
  --p-color:                      #717275;
  --border-color:                 #7fffd4;
  --link-hover-color:             #13547a;

  --body-font-family:             'Plus Jakarta Sans', sans-serif;
  --title-font-family:            'Plus Jakarta Sans', sans-serif;

  --display-font-size:            58px;
  --section-title-font-size:      46px;
  --subsection-title-font-size:   34px;
  --card-title-font-size:         26px;
  --minor-title-font-size:        22px;
  --body-font-size:               18px;
  --meta-font-size:               15px;
  --button-font-size:             16px;
  --card-body-font-size:          16px;
  --copyright-font-size:          15px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-normal:           400;
  --font-weight-medium:           500;
  --font-weight-semibold:         600;
  --font-weight-bold:             700;
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family); 
}


/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--title-font-family); 
  font-weight: var(--font-weight-semibold);
}

h1 {
  font-size: var(--display-font-size);
  font-weight: var(--font-weight-bold);
}

h2 {
  font-size: var(--section-title-font-size);
  font-weight: var(--font-weight-bold);
}

h3 {
  font-size: var(--subsection-title-font-size);
}

h4 {
  font-size: var(--card-title-font-size);
}

h5 {
  font-size: var(--minor-title-font-size);
}

h6 {
  color: var(--primary-color);
  font-size: var(--minor-title-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--body-font-size);
  font-weight: var(--font-weight-normal);
}

ul li {
  color: var(--p-color);
  font-size: var(--body-font-size);
  font-weight: var(--font-weight-normal);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}


/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 50px;
  padding-bottom: 50px;
}

.section-bg {
  background-color: var(--section-bg-color);
}

.section-overlay {
  background-image: linear-gradient(15deg, #13547a 0%, #80d0c7 100%);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.65;
}

.section-overlay-2 {
  background-image: linear-gradient(15deg, #41464b 0%, #80d0c7 100%);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.65;
}

.section-overlay-3 {
  background-image: linear-gradient(0deg, #13547a 0%, #80d0c7 100%);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.95;
}

.section-overlay + .container {
  position: relative;
}

.tab-content {
  background-color: var(--white-color);
  border-radius: var(--border-radius-medium);
}

.nav-tabs {
  border-bottom: 1px solid #ecf3f2;
  margin-bottom: 40px;
  justify-content: center;
}

.nav-tabs .nav-link {
  border-radius: 0;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  color: var(--p-color);
  font-family: var(--title-font-family);
  font-size: var(--button-font-size);
  font-weight: var(--font-weight-medium);
  padding: 15px 25px;
  transition: all 0.3s;
}

.nav-tabs .nav-link:first-child {
  margin-right: 20px;
}

.nav-tabs .nav-item.show .nav-link, 
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:focus, 
.nav-tabs .nav-link:hover {
  border-bottom-color: var(--primary-color);
  color: var(--primary-color);
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-small);
  color: var(--white-color);
  font-size: var(--button-font-size);
  font-weight: var(--font-weight-semibold);
  line-height: normal;
  transition: all 0.3s;
  padding: 10px 20px;
}

.custom-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-color);
  color: var(--custom-btn-bg-color);
}

.custom-border-btn:hover {
  background: var(--custom-btn-bg-color);
  border-color: transparent;
  color: var(--white-color);
}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}


/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
.site-header {
  background-image: linear-gradient(15deg, #13547a 0%, #80d0c7 100%);
  padding-top: 150px;
  padding-bottom: 80px;
}

.site-header .container {
  height: 100%;
}

/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.sticky-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}

.sticky-wrapper.is-sticky .navbar {
  background-color: var(--secondary-color);
}

.navbar {
  background: transparent;
  border-bottom: 1px solid rgba(128, 208, 199, 0.35);
  z-index: 9;
}

.navbar-brand,
.navbar-brand:hover {
  font-size: var(--subsection-title-font-size);
  font-weight: var(--font-weight-bold);
  display: block;
}

.navbar-brand span {
  font-family: var(--title-font-family);
}

.navbar-expand-lg .navbar-nav .nav-link {
  border-radius: var(--border-radius-large);
  margin: 10px;
  padding: 10px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--white-color);
  font-family: var(--title-font-family); 
  font-size: var(--meta-font-size);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link.active, 
.navbar-nav .nav-link:hover {
  color: var(--primary-color);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}


/*---------------------------------------
  HERO        
-----------------------------------------*/
.hero-section {
  background-image: linear-gradient(15deg, #13547a 0%, #80d0c7 100%);
  position: relative;
  overflow: hidden;
  padding-top: 150px;
  padding-bottom: 150px;
}

.home-hero-copy {
  text-align: center;
}

.home-hero-tagline {
  color: var(--white-color);
  font-family: var(--title-font-family);
  font-size: 1.35rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.7;
  margin: 1.25rem auto 0.85rem;
  max-width: 42rem;
}

.home-hero-intro {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin: 0 auto;
  max-width: 38rem;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.home-proof-section {
  margin-top: 0;
  margin-bottom: -60px;
  position: relative;
  z-index: 2;
}

.home-proof-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 1), rgba(240, 248, 255, 0.92));
  border: 1px solid rgba(19, 84, 122, 0.08);
  border-radius: calc(var(--border-radius-medium) + 6px);
  box-shadow: 0 22px 55px rgba(19, 84, 122, 0.08);
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 1.25rem 1.4rem;
}

.home-proof-item strong {
  color: var(--primary-color);
  display: block;
  font-family: var(--title-font-family);
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.home-proof-item span {
  color: var(--p-color);
  display: block;
  line-height: 1.55;
}

.home-section-intro {
  margin: 0 auto;
  max-width: 46rem;
}

.home-kicker {
  color: var(--primary-color);
  display: inline-block;
  font-family: var(--title-font-family);
  font-size: 0.82rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.08em;
  margin-bottom: 0.85rem;
  text-transform: uppercase;
}

.home-values-section {
  background: linear-gradient(180deg, rgba(226, 239, 247, 0.82), rgba(247, 251, 253, 1));
  padding-top: 120px;
}

.home-values-section .home-kicker {
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
}

.home-value-card {
  background-color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(19, 84, 122, 0.08);
  border-radius: calc(var(--border-radius-medium) + 2px);
  box-shadow: 0 20px 45px rgba(19, 84, 122, 0.08);
  height: 100%;
  padding: 1.55rem 1.35rem;
}

.home-value-card h5 {
  margin-bottom: 0.8rem;
}

.home-value-card p {
  margin-bottom: 0;
  line-height: 1.75;
}

.home-cta-card {
  background: linear-gradient(140deg, rgba(19, 84, 122, 0.98), rgba(128, 208, 199, 0.95));
  border-radius: calc(var(--border-radius-medium) + 6px);
  box-shadow: 0 24px 55px rgba(19, 84, 122, 0.18);
  padding: 2.2rem 1.9rem;
  text-align: center;
}

.home-cta-card .home-kicker,
.home-cta-card h3,
.home-cta-card p {
  color: var(--white-color);
}

.home-cta-card h3 {
  margin-bottom: 1.35rem;
}

.home-cta-card p {
  margin: 0.85rem auto 1.35rem;
  max-width: 42rem;
  opacity: 0.93;
}


/*---------------------------------------
  TOPICS              
-----------------------------------------*/
.featured-section {
  background-color: var(--secondary-color);
  border-radius: 0 0 100px 100px;
  padding-bottom: 100px;
}

.featured-section .row {
  position: relative;
  bottom: 100px;
  margin-bottom: -100px;
}

.custom-block {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  padding: 30px;
  transition: all 0.3s ease;
  height: 100%;
}

.custom-block:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}

.custom-block > a {
  width: 100%;
}

.custom-block-image {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-top: 35px;
}

.custom-block .rounded-pill {
  border-radius: 5px !important;
  display: flex;
  justify-content: center;
  text-align: center;
  width: 30px;
  height: 30px;
  line-height: 20px;
}

.custom-block-overlay {
  height: 100%;
  min-height: 200px;
  padding: 0;
}

.custom-block-overlay > a {
  height: 100%;
}

.custom-block-overlay > .d-flex {
  min-height: 100%;
}

.custom-block-overlay .custom-block-image {
  border-radius: var(--border-radius-medium);
  display: block;
  height: 100%;
  margin-top: 0;
  min-height: 100%;
}

.custom-block-overlay-text {
  display: flex;
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  padding: 30px;
}

.custom-block-overlay-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 14px;
  position: relative;
  min-height: 100%;
  padding-bottom: 62px;
}

.custom-block-overlay-copy p {
  margin-bottom: 0;
  font-size: var(--card-body-font-size);
  line-height: 1.45;
}

.custom-block-overlay-copy .custom-btn {
  position: absolute;
  left: 0;
  bottom: 0;
}

.featured-intro-card {
  height: auto;
  min-height: 0;
  padding: 32px;
}

.featured-intro-card.custom-block-overlay {
  min-height: 0;
}

.featured-intro-card .custom-block-overlay-text {
  position: relative;
  bottom: auto;
  padding: 0;
}

.featured-intro-card .custom-block-overlay-copy {
  padding-bottom: 0;
}

.featured-intro-card .custom-btn {
  position: static;
}

.explore-section .custom-block-overlay:not(.featured-intro-card) {
  height: 312px;
  min-height: 312px;
}

.explore-section .custom-block-overlay:not(.featured-intro-card) .custom-block-image {
  height: 312px;
  min-height: 312px;
}

.explore-section .custom-block-overlay:not(.featured-intro-card) .custom-block-overlay-copy h5 {
  min-height: 0;
}

.explore-section .custom-block-overlay:not(.featured-intro-card) .custom-block-overlay-copy p {
  min-height: 0;
}

.explore-section .custom-block-overlay:not(.featured-intro-card) .custom-block-overlay-copy h5 {
  font-size: var(--minor-title-font-size);
  line-height: 1.2;
}

.explore-section .custom-block-overlay:not(.featured-intro-card) .custom-block-overlay-copy p {
  font-size: var(--body-font-size);
  line-height: 1.5;
}

.explore-section .custom-block-overlay:not(.featured-intro-card) .custom-block-overlay-copy {
  min-height: 100%;
  padding-bottom: 54px;
}

.explore-section .custom-block-overlay:not(.featured-intro-card) .custom-block-overlay-copy .custom-btn {
  font-size: var(--button-font-size);
  padding: 10px 20px;
  position: absolute;
  left: 0;
  bottom: 0;
}

.bg-design {
  background-color: #00B0FF;
}

.bg-graphic {
  background-color: #00BFA6;
}

.bg-advertising {
  background-color: #F50057;
}

.bg-finance {
  background-color: #536DFE;
}

.bg-music {
  background-color: #F9A826;
}

.bg-education {
  background-color: #00BFA6;
}


/*---------------------------------------
  TOPICS               
-----------------------------------------*/
.topics-detail-block {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.topics-detail-block-image {
  display: block;
  border-radius: var(--border-radius-medium);
}

.company-hero-copy h2,
.company-hero-copy p {
  color: var(--white-color);
}

.company-hero-tagline {
  font-family: var(--title-font-family);
  font-size: 1.75rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.5;
  margin: 1rem 0 0.85rem;
  max-width: 34rem;
}

.company-hero-intro {
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
  max-width: 30rem;
  opacity: 0.9;
}

.company-content {
  max-width: 760px;
}

.company-content h3 {
  margin-bottom: 1.25rem;
}

.company-divider {
  background: linear-gradient(90deg, rgba(19, 84, 122, 0.15), rgba(128, 208, 199, 0.65), rgba(19, 84, 122, 0.15));
  border-radius: 999px;
  height: 1px;
  margin: 2.5rem 0 2rem;
}

.company-lead {
  color: var(--dark-color);
  font-size: 1.3rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.75;
}

.company-subheading {
  margin-top: 2.5rem;
  margin-bottom: 0.9rem;
}

.company-content p {
  line-height: 1.85;
  margin-bottom: 1.1rem;
}

.company-founder-content p:not(.company-lead) {
  margin-bottom: 0.95rem;
  max-width: none;
  text-align: justify;
  text-justify: inter-word;
}

.company-founder-content .company-pillar p {
  text-align: left;
  text-justify: auto;
}

.company-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.company-list li {
  position: relative;
  line-height: 1.8;
  margin-bottom: 0.9rem;
  padding-left: 1.8rem;
}

.company-list li::before {
  content: "";
  position: absolute;
  top: 0.75rem;
  left: 0;
  width: 0.65rem;
  height: 0.65rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(128, 208, 199, 0.18);
}

.company-service-grid {
  margin-top: 1.2rem;
}

.company-card {
  background: linear-gradient(180deg, rgba(240, 248, 255, 0.9), rgba(255, 255, 255, 1));
  border: 1px solid rgba(19, 84, 122, 0.08);
  border-radius: var(--border-radius-medium);
  box-shadow: 0 20px 45px rgba(19, 84, 122, 0.08);
  height: 100%;
  padding: 1.75rem 1.5rem;
}

.company-card-accent {
  background: linear-gradient(160deg, rgba(19, 84, 122, 0.96), rgba(128, 208, 199, 0.92));
}

.company-card-accent,
.company-card-accent p,
.company-card-accent .company-card-kicker,
.company-card-accent .company-card-title {
  color: var(--white-color);
}

.company-card-kicker {
  color: var(--primary-color);
  display: inline-block;
  font-family: var(--title-font-family);
  font-size: 0.82rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.company-card-title {
  color: var(--dark-color);
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.company-card p {
  margin-bottom: 0;
}

.company-stats {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 1.75rem 0 2rem;
}

.company-stat {
  background-color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(19, 84, 122, 0.08);
  border-radius: var(--border-radius-medium);
  box-shadow: 0 18px 40px rgba(19, 84, 122, 0.08);
  padding: 1.25rem 1.1rem;
}

.company-stat strong {
  color: var(--primary-color);
  display: block;
  font-family: var(--title-font-family);
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.company-stat span {
  color: var(--p-color);
  display: block;
  font-size: 0.95rem;
  line-height: 1.6;
}

.company-pillars {
  margin-top: 0.75rem;
}

.company-content .home-kicker {
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
}

.company-pillar {
  background-color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(19, 84, 122, 0.07);
  border-radius: var(--border-radius-medium);
  height: 100%;
  padding: 1.4rem 1.25rem;
}

.company-pillar h6 {
  color: var(--dark-color);
  margin-bottom: 0.75rem;
}

.company-pillar p {
  margin-bottom: 0;
}

.company-cta {
  background: linear-gradient(135deg, rgba(19, 84, 122, 0.98), rgba(128, 208, 199, 0.95));
  border-radius: calc(var(--border-radius-medium) + 4px);
  box-shadow: 0 24px 55px rgba(19, 84, 122, 0.2);
  margin-top: 2.5rem;
  padding: 2rem 1.75rem;
}

.company-cta h5,
.company-cta p {
  color: var(--white-color);
}

.company-cta h5 {
  margin-bottom: 0.8rem;
}

.company-cta p {
  margin-bottom: 1.25rem;
  max-width: 38rem;
  opacity: 0.92;
}

.company-cta .custom-btn {
  background: var(--white-color);
  color: var(--primary-color);
}

.company-cta .custom-btn:hover {
  background: #eaf9f6;
  color: var(--primary-color);
}

.services-hero-copy h2,
.services-hero-copy p {
  color: var(--white-color);
}

.services-hero-tagline {
  font-family: var(--title-font-family);
  font-size: 1.35rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.7;
  margin: 1rem 0 0.85rem;
  max-width: 36rem;
}

.services-hero-intro {
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
  max-width: 31rem;
  opacity: 0.9;
}

.services-kicker {
  color: var(--primary-color);
  display: inline-block;
  font-family: var(--title-font-family);
  font-size: 0.82rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.08em;
  margin-bottom: 0.85rem;
  text-transform: uppercase;
}

.services-overview-section {
  padding-bottom: 10px;
}

.services-overview-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 1), rgba(240, 248, 255, 0.92));
  border: 1px solid rgba(19, 84, 122, 0.08);
  border-radius: calc(var(--border-radius-medium) + 6px);
  box-shadow: 0 22px 55px rgba(19, 84, 122, 0.08);
  padding: 2rem;
}

.services-overview-card h3 {
  margin-bottom: 1rem;
}

.services-overview-card p {
  line-height: 1.8;
  margin-bottom: 0;
}

.services-proof-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.services-proof-item {
  background-color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(19, 84, 122, 0.08);
  border-radius: var(--border-radius-medium);
  padding: 1rem 1.1rem;
}

.services-proof-item strong {
  color: var(--primary-color);
  display: block;
  font-family: var(--title-font-family);
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.services-proof-item span {
  color: var(--p-color);
  display: block;
  font-size: 0.95rem;
  line-height: 1.55;
}

.services-section {
  position: relative;
}

.services-section-intro {
  margin: 0 auto 1.75rem;
  max-width: 48rem;
}

.services-card {
  border: 1px solid rgba(19, 84, 122, 0.08);
  border-radius: calc(var(--border-radius-medium) + 2px);
  overflow: hidden;
}

.services-card .custom-block-topics-listing-info {
  margin: 28px 24px 24px 30px;
}

.services-card-kicker {
  color: var(--primary-color);
  display: inline-block;
  font-family: var(--title-font-family);
  font-size: 0.8rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.08em;
  margin-bottom: 0.65rem;
  text-transform: uppercase;
}

.services-card h5 {
  margin-bottom: 0.8rem;
}

.services-card p {
  line-height: 1.8;
  margin-bottom: 1rem;
}

.services-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.services-list li {
  color: var(--p-color);
  position: relative;
  line-height: 1.75;
  margin-bottom: 0.7rem;
  padding-left: 1.8rem;
}

.services-list li::before {
  content: "";
  position: absolute;
  top: 0.72rem;
  left: 0;
  width: 0.62rem;
  height: 0.62rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(128, 208, 199, 0.16);
}

.services-cta-section {
  padding-top: 10px;
}

.services-cta-card {
  background: linear-gradient(140deg, rgba(19, 84, 122, 0.98), rgba(128, 208, 199, 0.94));
  border-radius: calc(var(--border-radius-medium) + 6px);
  box-shadow: 0 24px 55px rgba(19, 84, 122, 0.18);
  padding: 2.1rem 1.9rem;
  text-align: center;
}

.services-cta-card .services-kicker,
.services-cta-card h3,
.services-cta-card p {
  color: var(--white-color);
}

.services-cta-card p {
  margin: 0.85rem auto 1.35rem;
  max-width: 40rem;
  opacity: 0.93;
}

.services-cta-card .custom-btn {
  background: var(--white-color);
  color: var(--primary-color);
}

.services-cta-card .custom-btn:hover {
  background: #eaf9f6;
  color: var(--primary-color);
}

.contact-hero-copy h2,
.contact-hero-copy p {
  color: var(--white-color);
}

.contact-hero-tagline {
  font-family: var(--title-font-family);
  font-size: 1.35rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.7;
  margin: 1rem 0 0.85rem;
  max-width: 38rem;
}

.contact-hero-intro {
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
  max-width: 32rem;
  opacity: 0.9;
}

.contact-kicker {
  color: var(--primary-color);
  display: inline-block;
  font-family: var(--title-font-family);
  font-size: 0.82rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.08em;
  margin-bottom: 0.85rem;
  text-transform: uppercase;
}

.contact-columns {
  align-items: stretch;
}

.contact-column {
  display: flex;
}

.contact-form-card,
.contact-side-card,
.contact-map-card {
  background-color: var(--white-color);
  border: 1px solid rgba(19, 84, 122, 0.08);
  border-radius: calc(var(--border-radius-medium) + 4px);
  box-shadow: 0 20px 50px rgba(19, 84, 122, 0.08);
}

.contact-form-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.2rem 1.2rem;
  width: 100%;
}

.contact-form-intro {
  margin-bottom: 0.65rem;
}

.contact-form-intro h5 {
  margin-bottom: 0.7rem;
}

.contact-form-intro p,
.contact-form-note {
  line-height: 1.75;
}

.contact-form-note {
  margin: 0.2rem 0 0;
}

.contact-submit-row {
  margin-top: 0.75rem;
}

.contact-form {
  display: flex;
  flex: 1;
}

.contact-form > .row {
  flex: 1;
}

.contact-side-panel {
  display: grid;
  gap: 0.85rem;
  height: 100%;
  width: 100%;
}

.contact-side-card {
  padding: 0.9rem 1rem;
}

.contact-side-card h5 {
  margin-bottom: 0.65rem;
}

.contact-side-card p {
  margin-bottom: 0;
}

.contact-side-card-accent {
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 96px;
}

.contact-side-card-accent,
.contact-side-card-accent p,
.contact-side-card-accent .contact-kicker,
.contact-side-card-accent strong,
.contact-side-card-accent span {
  color: var(--dark-color);
}

.contact-proof-grid {
  display: grid;
  gap: 0.9rem;
}

.contact-proof-item strong {
  display: block;
  font-family: var(--title-font-family);
  font-size: 1.02rem;
  margin-bottom: 0.2rem;
}

.contact-proof-item span {
  display: block;
  line-height: 1.55;
}

.contact-location {
  margin-top: 0.4rem;
}

.contact-map-card {
  overflow: hidden;
  min-height: 96px;
}

.contact-map-card .google-map {
  display: block;
  height: 100%;
  min-height: 96px;
}

blockquote {
  background-color: var(--section-bg-color);
  border-radius: var(--border-radius-small);
  font-family: var(--title-font-family);
  font-size: var(--card-title-font-size);
  font-weight: var(--font-weight-bold);
  display: inline-block;
  text-align: center;
  margin: 30px;
  padding: 40px;
}

.service-listing-page .site-header {
  padding-bottom: 65px;
}

.custom-block-topics-listing-info {
  margin: 30px 20px 20px 30px;
}

.custom-block-topics-listing {
  height: inherit;
}

.custom-block-topics-listing .custom-block-image {
  width: 200px;
}


/*---------------------------------------
  PAGINATION              
-----------------------------------------*/
.pagination {
  margin-top: 40px;
}

.page-link {
  border: 0;
  border-radius: var(--border-radius-small);
  color: var(--p-color);
  font-family: var(--title-font-family);
  margin: 0 5px;
  padding: 10px 20px;
}

.page-link:hover,
.page-item:first-child .page-link:hover,
.page-item:last-child .page-link:hover {
  background-color: var(--secondary-color);
  color: var(--white-color);
}

.page-item:first-child .page-link {
  margin-right: 10px;
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
  background-color: var(--section-bg-color);
  border-radius: var(--border-radius-small);
}

.active>.page-link, .page-link.active {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}


/*---------------------------------------
  TIMELINE              
-----------------------------------------*/
.timeline-section {
  background-image: url('../images/h_hdiw.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.timeline-container .vertical-scrollable-timeline {
  list-style-type: none;
  position: relative;
  padding-left: 0;
}

.timeline-container .vertical-scrollable-timeline .list-progress {
  width: 8px;
  height: 87%;
  background-color: var(--primary-color);
  position: absolute;
  left: 52px;
  top: 0;
  overflow: hidden;
}

.timeline-container .vertical-scrollable-timeline .list-progress .inner {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  background-color: var(--secondary-color);
  width: 100%;
}

.timeline-container .vertical-scrollable-timeline li {
  position: relative;
  padding: 35px 0px 65px 145px;
}

.timeline-container .vertical-scrollable-timeline li:last-child {
  padding-bottom: 0;
}

.timeline-container .vertical-scrollable-timeline li p {
  line-height: 1.8;
  margin-bottom: 0;
}

.timeline-container .vertical-scrollable-timeline li h4 {
  margin-bottom: 0.35rem !important;
}

.timeline-container .vertical-scrollable-timeline li p:last-child {
  margin-bottom: 40;
}

.timeline-container .vertical-scrollable-timeline li .icon-holder {
  position: absolute;
  left: 0;
  top:0;
  width: 104px;
  height: 104px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--primary-color);
  border-radius: 50%;
  z-index: 1;
  transition: 0.4s all;
}

.timeline-container .vertical-scrollable-timeline li .icon-holder::before {
  content: "";
  width: 80px;
  height: 80px;
  border: 4px solid #fff;
  position: absolute;
  background-color: var(--primary-color);
  border-radius: 50%;
  z-index: -1;
  transition: 0.4s all;
}

.timeline-container .vertical-scrollable-timeline li .icon-holder i {
  font-size: 24px;
  color: var(--white-color);
}

.timeline-container .vertical-scrollable-timeline li::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 8px;
  background-color: transparent;
  left: 52px;
  z-index: 0;
}

.timeline-container .vertical-scrollable-timeline li.active .icon-holder {
  background-color: var(--secondary-color);
}

.timeline-container .vertical-scrollable-timeline li.active .icon-holder::before {
  background-color: var(--secondary-color);
}


/*---------------------------------------
  FAQs              
-----------------------------------------*/
.faq-section .accordion-item {
  border: 0;
}

.faq-section .accordion-button {
  font-size: var(--minor-title-font-size);
  font-weight: var(--font-weight-semibold);
}

.faq-section .accordion-item:first-of-type .accordion-button {
  border-radius: var(--border-radius-large);
}

.faq-section .accordion-button:not(.collapsed) {
  border-radius: var(--border-radius-large);
  box-shadow: none;
  color: var(--primary-color);
}

.faq-section .accordion-body {
  color: var(--p-color);
  font-size: var(--body-font-size);
  line-height: 40px;
}

/*---------------------------------------
  NEWSLETTER               
-----------------------------------------*/
.newsletter-image {
  border-radius: var(--border-radius-medium);
}


/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.google-map {
  border-radius: var(--border-radius-medium);
}

.contact-form .form-floating>textarea {
  border-radius: var(--border-radius-medium);
  height: 150px;
}


/*---------------------------------------
  SUBSCRIBE FORM               
-----------------------------------------*/
.subscribe-form-wrap {
  padding: 50px;
}

.subscribe-form {
  width: 95%;
}


/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control {
  border-radius: var(--border-radius-large);
  color: var(--p-color);
  font-size: var(--body-font-size);
  margin-bottom: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
  padding-left: 20px;
  outline: none;
}

.form-floating>label {
  font-size: var(--meta-font-size);
  padding-left: 20px;
}

.custom-form button[type="submit"] {
  background: var(--custom-btn-bg-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-family: var(--title-font-family);
  font-size: var(--button-font-size);
  font-weight: var(--font-weight-semibold);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
}


/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
  border-bottom: 10px solid var(--secondary-color);
  position: relative;
}

.site-footer-title {
  color: var(--primary-color); 
}

.site-footer-links {
  padding-left: 0;
}

.site-footer-link-item {
  display: block;
  list-style: none;
  line-height: normal;
}

.site-footer-link {
  color: var(--secondary-color);
  font-size: var(--copyright-font-size);
  font-weight: var(--font-weight-medium);
  line-height: normal;
}

.copyright-text {
  font-size: var(--copyright-font-size);
}


/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  display: block;
  margin-right: 10px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 36px;
  transition: background 0.2s, color 0.2s;
}

.social-icon-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
}


/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 991px) {
  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 38px;
  }

  h3 {
    font-size: 30px;
  }

  h4 {
    font-size: 24px;
  }

  h5 {
    font-size: 21px;
  }

  h6 {
    font-size: 20px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  .navbar {
    background-color: var(--secondary-color);
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 20px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
  }

  .nav-tabs .nav-link:first-child {
    margin-right: 5px;
  }

  .nav-tabs .nav-link {
    font-size: var(--copyright-font-size);
    padding: 10px;
  }

  .featured-section {
    border-radius: 0 0 80px 80px;
    padding-bottom: 50px;
  }

  .custom-block-topics-listing .custom-block-image {
    width: auto;
  }

  .custom-block-topics-listing > .d-flex,
  .custom-block-topics-listing-info,
  .custom-block-topics-listing a {
    flex-direction: column;
  }

  .timeline-container .vertical-scrollable-timeline .list-progress {
    height: 75%;
  }

  .timeline-container .vertical-scrollable-timeline li {
    padding-left: 135px;
  }

  .subscribe-form-wrap {
    padding-top: 30px;
    padding-bottom: 0;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 24px;
  }

  h4 {
    font-size: 20px;
  }

  h5 {
    font-size: 18px;
  }
}

@media (min-width: 992px) {
  /* True center layout: left (logo) | center (menu) | right (empty space) */
  .navbar > .container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }
  /* Logo stays left */
  .navbar-brand {
    grid-column: 1;
    justify-self: start;
    margin: 0;
  }
  /* Nav sits in the center column */
  #navbarNav {
    grid-column: 2;
    display: flex !important;      /* override collapse behavior on lg+ */
    justify-content: center;
  }
  /* Menu items spacing */
  #navbarNav .navbar-nav {
    display: flex;
    flex-direction: row;
    gap: 24px;
    margin: 0;
    padding: 0;
  }
  /* Remove your theme's margin: 10px on links */
  .navbar-expand-lg .navbar-nav .nav-link {
    margin: 0 !important;
    padding: 0.5rem 0 !important;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  #navbarNav .navbar-nav {
    gap: 16px;
  }

  .navbar-logo {
    height: 38px;
    max-width: 160px;
  }

  .nav-tabs .nav-link {
    font-size: var(--button-font-size);
    padding: 14px 18px;
  }

  .custom-block-overlay {
    min-height: 300px;
  }

  .custom-block-overlay .custom-block-image {
    min-height: 300px;
  }

  .custom-block-overlay-text {
    padding: 20px;
  }

  .custom-block-overlay-copy {
    gap: 10px;
  }

  .custom-block-overlay-copy h5 {
    font-size: var(--minor-title-font-size);
  }

  .custom-block-overlay-copy p {
    font-size: var(--body-font-size);
    line-height: 1.5;
  }

  .custom-block-overlay-copy .custom-btn {
    font-size: 15px;
    padding: 9px 18px;
  }

  .explore-section .custom-block-overlay:not(.featured-intro-card) {
    height: 292px;
    min-height: 292px;
  }

  .explore-section .custom-block-overlay:not(.featured-intro-card) .custom-block-image {
    height: 292px;
    min-height: 292px;
  }

  .explore-section .custom-block-overlay:not(.featured-intro-card) .custom-block-overlay-copy {
    min-height: 100%;
    padding-bottom: 50px;
    gap: 8px;
  }

  .explore-section .custom-block-overlay:not(.featured-intro-card) .custom-block-overlay-copy h5 {
    font-size: var(--minor-title-font-size);
    min-height: 0;
  }

  .explore-section .custom-block-overlay:not(.featured-intro-card) .custom-block-overlay-copy p {
    font-size: var(--body-font-size);
    line-height: 1.5;
    min-height: 0;
  }

  .featured-intro-card {
    min-height: 0;
    padding: 28px 32px;
  }
}

@media (max-width: 991.98px) {
  .navbar-logo {
    height: 36px;
  }
}

.navbar-logo {
  height: 42px;        /* ideal for desktop */
  width: auto;         /* keep aspect ratio */
  max-width: 180px;    /* safety cap */
  display: block;
}

.site-footer {
  background-color: var(--secondary-color);
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-top: 40px;
  padding-bottom: 35px;
}
/* Logo */
.footer-logo {
  height: 40px;
  width: auto;
}
/* Center email */
.footer-center {
  text-align: center;
  flex: 1;
}

.footer-left,
.footer-right {
  flex: 0 0 auto;
}

.site-footer-link {
  color: #6c757d;
  text-decoration: none;
}
.site-footer-link:hover {
  text-decoration: underline;
}
/* Copyright */
.copyright-text {
  color: #6c757d;
  margin: 0;
  white-space: normal;
}
/* 📱 Mobile */

@media (max-width: 768px) {
  .footer-row {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-center {
    flex: unset;
  }

  .custom-block-overlay-text {
    padding: 12px;
  }
  .custom-block-overlay-text p {
    font-size: 17px;
    /* line-height: 1.45; */
  }
}

[id] {
  scroll-margin-top: 100px;
}

.page-header-sm {
  padding-top: 110px;
  padding-bottom: 40px;
}

@media screen and (max-width: 991px) {
  p,
  ul li {
    font-size: 17px;
    line-height: 1.65;
  }

  .home-proof-card {
    grid-template-columns: 1fr;
  }

  .home-proof-section {
    margin-bottom: -35px;
  }

  .home-values-section {
    padding-top: 90px;
  }

  .home-hero-tagline,
  .home-hero-intro {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-hero-copy {
    text-align: center;
  }

  .contact-hero-tagline,
  .contact-hero-intro {
    margin-left: auto;
    margin-right: auto;
  }

  .services-hero-copy {
    margin-bottom: 2rem;
    text-align: center;
  }

  .services-hero-tagline,
  .services-hero-intro {
    margin-left: auto;
    margin-right: auto;
  }

  .company-hero-copy {
    margin-bottom: 2rem;
    text-align: center;
  }

  .company-hero-tagline,
  .company-hero-intro {
    margin-left: auto;
    margin-right: auto;
  }

  .company-stats {
    grid-template-columns: 1fr;
  }

  .services-overview-card {
    padding: 1.6rem;
  }

  .services-card .custom-block-topics-listing-info {
    margin: 24px 20px 20px;
  }

  .contact-form-card {
    margin-bottom: 1.5rem;
  }

  .contact-column {
    display: block;
  }

  .home-hero-actions {
    justify-content: center;
  }

  .hero-section {
    padding-top: 120px;
    padding-bottom: 110px;
  }

  .site-header {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .navbar > .container {
    align-items: center;
  }

  .navbar-toggler {
    margin-left: auto;
  }

  #navbarNav {
    padding-top: 12px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    display: block;
    padding: 12px 0;
  }

  .nav-tabs {
    gap: 10px;
  }

  .nav-tabs .nav-item {
    flex: 1 1 100%;
  }

  .nav-tabs .nav-link {
    width: 100%;
    min-height: 100%;
    text-align: center;
  }

  .featured-section .row {
    bottom: 60px;
    margin-bottom: -60px;
  }

  .custom-block {
    padding: 22px;
  }

  .custom-block-overlay {
    min-height: 320px;
  }

  .custom-block-overlay .custom-block-image {
    min-height: 320px;
  }

  .custom-block-overlay-text {
    padding: 18px;
  }

  .explore-section .custom-block-overlay:not(.featured-intro-card) {
    min-height: 0;
    height: auto;
  }

  .explore-section .custom-block-overlay:not(.featured-intro-card) .custom-block-image {
    min-height: 0;
    height: 220px;
  }

  .explore-section .custom-block-overlay:not(.featured-intro-card) .custom-block-overlay-copy {
    min-height: 100%;
    padding-bottom: 64px;
    gap: 8px;
  }

  .explore-section .custom-block-overlay:not(.featured-intro-card) .custom-block-overlay-copy h5 {
    font-size: var(--minor-title-font-size);
    min-height: 0;
  }

  .explore-section .custom-block-overlay:not(.featured-intro-card) .custom-block-overlay-copy p {
    font-size: var(--body-font-size);
    line-height: 1.5;
    min-height: 0;
  }

  .explore-section .custom-block-overlay:not(.featured-intro-card) .custom-block-overlay-text {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 18px;
  }

  .explore-section .custom-block-overlay:not(.featured-intro-card) .custom-block-overlay-copy .custom-btn {
    position: absolute;
    left: 0;
    bottom: 0;
  }

  .featured-intro-card {
    padding: 24px;
  }

  .featured-intro-card.custom-block-overlay {
    min-height: 0;
  }

  .custom-block-topics-listing-info {
    margin: 20px 0 0;
  }

  .timeline-container .vertical-scrollable-timeline .list-progress {
    left: 36px;
  }

  .timeline-container .vertical-scrollable-timeline li {
    padding: 16px 0 40px 96px;
  }

  .timeline-container .vertical-scrollable-timeline li::before {
    left: 36px;
  }

  .timeline-container .vertical-scrollable-timeline li .icon-holder {
    width: 72px;
    height: 72px;
  }

  .timeline-container .vertical-scrollable-timeline li .icon-holder::before {
    width: 56px;
    height: 56px;
  }

  .timeline-container .vertical-scrollable-timeline li h4 {
    margin-bottom: 12px;
  }

  .contact-form .form-floating > textarea {
    height: 180px;
  }
}

@media screen and (max-width: 767px) {
  .home-proof-card,
  .home-value-card,
  .home-cta-card {
    padding: 1.4rem 1.15rem;
  }

  .home-hero-tagline {
    font-size: 1.15rem;
  }

  .contact-form-card,
  .contact-side-card {
    padding: 1.35rem 1.15rem;
  }

  .contact-hero-tagline {
    font-size: 1.15rem;
  }

  .services-overview-card,
  .services-cta-card {
    padding: 1.45rem 1.2rem;
  }

  .services-hero-tagline {
    font-size: 1.15rem;
  }

  .services-list li {
    padding-left: 1.6rem;
  }

  .services-list li::before {
    box-shadow: 0 0 0 4px rgba(128, 208, 199, 0.16);
  }

  .company-card,
  .company-pillar,
  .company-cta {
    padding: 1.4rem 1.2rem;
  }

  .company-lead {
    font-size: 1.15rem;
  }

  .company-hero-tagline {
    font-size: 1.15rem;
  }

  .company-list li {
    padding-left: 1.6rem;
  }

  .company-list li::before {
    box-shadow: 0 0 0 5px rgba(128, 208, 199, 0.16);
  }
}

@media screen and (max-width: 480px) {
  p,
  ul li {
    font-size: 15px;
    line-height: 1.55;
  }

  .hero-section {
    padding-top: 110px;
    padding-bottom: 90px;
  }

  .site-header {
    padding-top: 105px;
    padding-bottom: 42px;
  }

  .featured-section {
    border-radius: 0 0 48px 48px;
  }

  .featured-section .row {
    bottom: 36px;
    margin-bottom: -36px;
  }

  .custom-block {
    padding: 18px;
  }

  .custom-block-overlay {
    min-height: 300px;
  }

  .custom-block-overlay .custom-block-image {
    min-height: 300px;
  }

  .custom-block-overlay-text,
  .custom-block-overlay-copy {
    gap: 10px;
  }

  .explore-section .custom-block-overlay:not(.featured-intro-card) {
    min-height: 0;
    height: auto;
  }

  .explore-section .custom-block-overlay:not(.featured-intro-card) .custom-block-image {
    min-height: 0;
    height: 200px;
  }

  .explore-section .custom-block-overlay:not(.featured-intro-card) .custom-block-overlay-copy {
    min-height: 100%;
    padding-bottom: 50px;
    gap: 8px;
  }

  .explore-section .custom-block-overlay:not(.featured-intro-card) .custom-block-overlay-copy h5 {
    font-size: var(--minor-title-font-size);
    line-height: 1.2;
  }

  .explore-section .custom-block-overlay:not(.featured-intro-card) .custom-block-overlay-copy p {
    font-size: var(--body-font-size);
    line-height: 1.45;
  }

  .explore-section .custom-block-overlay:not(.featured-intro-card) .custom-block-overlay-copy .custom-btn {
    font-size: 14px;
    padding: 8px 18px;
    position: absolute;
    left: 0;
    bottom: 0;
  }

  .featured-intro-card {
    padding: 20px;
  }

  .featured-intro-card.custom-block-overlay {
    min-height: 0;
  }

  .nav-tabs .nav-link {
    font-size: 14px;
    padding: 12px 14px;
  }

  .timeline-container .vertical-scrollable-timeline .list-progress {
    left: 28px;
    width: 6px;
  }

  .timeline-container .vertical-scrollable-timeline li {
    padding: 8px 0 28px 72px;
  }

  .timeline-container .vertical-scrollable-timeline li::before {
    left: 28px;
    width: 6px;
  }

  .timeline-container .vertical-scrollable-timeline li .icon-holder {
    width: 56px;
    height: 56px;
  }

  .timeline-container .vertical-scrollable-timeline li .icon-holder::before {
    width: 42px;
    height: 42px;
    border-width: 3px;
  }

  .timeline-container .vertical-scrollable-timeline li .icon-holder svg {
    width: 24px;
    height: 24px;
  }

  .footer-row {
    gap: 20px;
    padding-top: 28px;
    padding-bottom: 24px;
  }
}
