/* ── Font baseline: override Bootstrap's system-ui stack ── */
:root {
  --bs-font-sans-serif: 'Inter', sans-serif;
  --bs-font-monospace: 'Courier New', Courier, monospace;
}

body {
  font-family: 'Inter', sans-serif;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Newsreader', serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  color: #062c36;
}

h6 {
  font-size: 14px;
}

h1 {
  font-size: 60px;
}

h2 {
  font-size: 48px;
}

h3 {
  font-size: 35px;
}

h4 {
  font-size: 28px;
}
h5 {
  font-size: 20px;
}

.page-animate-scroll {
  scroll-margin-top: 220px;
}

.text-color {
  color: #12323c;
}

p {
  color: #545a64;
  font-size: 1rem !important;
  line-height: 1.7 !important;
}

p,
a,
li {
  font-family: 'Inter', sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.primary-bg {
  background-color: #8cc63f;
}
.primary-text {
  color: #8cc63f;
}

.secondary-bg {
  background-color: #006990;
}

.secondary-text {
  color: #006990;
}

.section-padding {
  padding: 60px 0;
}

.section-margin {
  margin: 100px 0;
  scroll-margin-top: 220px;
}

.section-bottom-margin {
  margin-bottom: 100px;
}
.section-top-margin {
  margin-top: 100px;
}

.section-bottom-padding {
  padding-bottom: 100px;
}
.section-top-padding {
  padding-top: 100px;
}

/* top bar  */

.top-header-info ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.top-header-info ul {
  display: flex;
  gap: 20px;
}

.top-header-info ul li a,
.top-header-info ul li span {
  color: #fff;
  text-decoration: none;
  display: inline-block;
}

.top-header-info ul li a,
.top-header-info ul li span {
  margin-left: 8px;
  display: inline-block;
  font-size: 15px;
}

.top-header-bar {
  padding: 15px 0;
}

/* header  */
header {
  padding: 15px 0;
}

.desktop-header {
  position: sticky;
  top: 0;
  z-index: 1020;
  background-color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); /* Optional: minimal shadow to distinguish scrolling */
}

.mobile-header {
  position: sticky;
  top: 0;
  z-index: 1020;
  background-color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* WordPress Admin bar offsets */

body.admin-bar .desktop-header {
  top: 32px;
}

/* Offcanvas must sit above the sticky mobile header (z-index: 1020) */
.offcanvas {
  z-index: 100000;
}

.offcanvas-backdrop {
  z-index: 99998;
}

/* Push offcanvas below the WP admin bar */
body.admin-bar .offcanvas {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .offcanvas {
    top: 46px;
  }
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 25px;
}

.site-nav ul li a {
  text-decoration: none;
  color: #12323c;
  transition: color 0.3s;
}

.site-nav ul li a:hover,
.site-nav ul li.current-menu-item > a,
.site-nav ul li.current-page-ancestor > a,
.site-nav ul li.current-menu-ancestor > a {
  color: #00abbb;
}

.outline-btn {
  color: #006990;
  text-decoration: none;
  border: 1.5px solid #006990;
  display: inline-block;
  padding: 13px 25px;
  border-radius: 50px;
  transition: 0.3s;
}

.outline-btn:hover {
  background-color: #006990;
  color: #fff;
}

/* hero */
.hero-section {
  padding: 200px 0;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}

.hero-section:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  background-image: linear-gradient(
    90deg,
    #042c3f,
    #042c3f,
    #042c3fde,
    transparent
  );
  z-index: -1;
  width: 100%;
  height: 100%;
}

.hero-content h1 {
  color: #fff;
  margin-bottom: 0;
}

.hero-content p {
  color: #fff;
  line-height: 1.7;
  margin-top: 20px;
  margin-bottom: 30px;
}

.primary-btn {
  background-color: #8cc63f;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  padding: 15px 25px;
  border-radius: 50px;
  transition: 0.3s;
  border: none;
}

.primary-btn:hover {
  background-color: #00a8b7;
}

.secondary-btn {
  background-color: #00a8b7;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  padding: 15px 25px;
  border-radius: 50px;
  transition: 0.3s;
  border: none;
}

.secondary-btn:hover {
  background-color: #8cc63f;
}

.primary-btn span {
  display: flex;
  gap: 10px;
}

.primary-btn span img {
  transition: 0.3s;
}

.secondary-btn span img {
  transition: 0.3s;
}

.primary-btn:hover > span img {
  transform: translateX(5px);
}

.secondary-btn:hover > span img {
  transform: translateX(5px);
}

.hero-counter-content {
  width: 1050px;
  display: flex;
  gap: 100px;
  justify-content: center;
}

.hero-counter-item {
  position: relative;
}

.hero-counter-item:after {
  position: absolute;
  right: -50px;
  top: 50%;
  width: 1px;
  height: 50px;
  background-color: #969fb7;
  content: '';
  transform: translateY(-50%);
}

.hero-counter-item:last-child:after {
  display: none;
}

.hero-counter-item {
  text-align: center;
}

.hero-counter-content {
  background-color: #fff;
  position: relative;
  z-index: 2;
  padding: 40px;
  border-radius: 24px;
  margin: 0 auto;
  margin-top: -100px;
  border: 1px solid #00000011;
  box-shadow: 0 0 20px #00000011;
}

.hero-counter-item p {
  color: #545a64;
  font-weight: 300;
  font-size: 16px;
  margin-bottom: 0;
}

.hero-list {
  border: 1px solid #ffffff12;
  backdrop-filter: blur(20px);
  padding: 20px;
  border-radius: 14px;
}

.hero-list-item p {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  line-height: 1.7;
}

.hero-list-item span {
  color: #8cc63f;
}

.hero-list-item {
  backdrop-filter: blur(100px);
  background-color: #8c8c8c24;
  padding: 5px;
  border-left: 3px solid #8cc63f;
  padding-left: 20px;
  border-radius: 5px;
}

.hero-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 240px;
  overflow: hidden;
}

section.hero-section.has-hero-list {
  padding-bottom: 60px;
}

/* capital items */
.capital-item .more-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: none;
}

.capital-item.active .more-content {
  max-height: 600px;
  opacity: 1;
  transition:
    max-height 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.35s ease;
}

.capital-item.active .more-content {
  transition-delay: 0s, 0.08s;
}

.capital-content > span,
.more-content span {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.capital-item .capital-content > span i {
  transition: transform 0.3s ease;
}

.capital-item.active .capital-content > span i {
  transform: rotate(180deg);
}

.section-title .subtitle {
  font-weight: bold;
  color: #545a64 !important;
}

.section-title p {
  font-size: 16px;
  color: #545a64;
}

.capital-item {
  background-color: #fff;
  border: 1px solid #dfeefe;
}

.capital-content h3 {
  font-size: 25px;
}

.capital-item {
  padding: 20px;
}

.capital-items {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.capital-item.active {
  background-color: #00789d;
  border-color: #00789d;
  color: #fff;
}

.capital-item {
  border-radius: 14px;
}

.capital-item {
  display: flex;
  gap: 15px;
}

.active .capital-content p {
  margin-bottom: 10px;
  color: #fff;
}

.active .capital-content h3 {
  color: #fff;
}

.capital-content > span {
  display: inline-flex;
}

.more-content span {
  display: inline-flex;
}

.capital-item.active .capital-content > span {
  display: none;
}

.capital-item:not(.active) .more-content span {
  display: none;
}

.capital-content p {
  color: #545a64;
  line-height: 1.7;
  margin-bottom: 10px;
  font-weight: 400;
}

.more-content span {
  display: block;
  margin-top: 10px;
}

.more-content span i {
  transform: rotate(-45deg);
}

.capital-content > span {
  display: flex;
  color: #00789d;
}

.capital-item {
  box-shadow: 0 0 20px #58434326;
}

.why-ap-capital .section-title {
  padding-right: 30px;
}

.why-ap-capital .section-title {
  position: sticky;
  top: 130px;
}

/* quick paths */
.quick-path-bg {
  width: 1745px;
  height: 340px;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  border-top-right-radius: 50px;
  border-bottom-left-radius: 50px;
}

section.quick-paths-section {
  position: relative;
}

.quick-paths-section .section-title h2 {
  color: #fff;
  text-align: center;
}

.quick-paths-section .section-title {
  margin-top: 70px;
  margin-bottom: 40px;
}

.quick-path-item {
  padding: 20px;
  background-color: #fff;
  border-radius: 16px;
}

.quick-path-item img {
  width: 100%;
}

.quick-path-item {
  border: 1px solid #0000000f;
  box-shadow: 0 0 20px #dddddd66;
}

.quick-path-card-buttons {
  display: flex;
  flex-direction: column;
}

.quick-path-card-buttons img {
  width: auto;
}

.quick-path-card-buttons a span {
  text-align: center;
  justify-content: center;
}

.quick-path-item h3 {
  margin-top: 20px;
}

.quick-path-item ul,
.list-items ul {
  margin: 0;
  padding: 0;
  list-style: none;
  padding-left: 15px;
  margin-bottom: 30px;
}

.quick-path-item ul li,
.list-items ul li {
  color: #545a64;
}

.quick-path-item ul,
.list-items ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.quick-path-item ul li,
.list-items ul li {
  position: relative;
  padding-left: 25px;
}

.quick-path-item ul li:before,
.list-items ul li:before {
  position: absolute;
  left: 0;
  top: 0;
  content: '\f058';
  font-family: 'Font Awesome 7 Free';
  font-weight: 900;
  color: #699c2f;
}

a.secondary-btn span {
  display: flex;
  justify-content: center;
}

.quick-path-item.recommended-quick-path {
  background-color: #e5f1f5;
}

.quick-path-card-buttons {
  gap: 15px;
}

.secondary-btn span {
  gap: 10px;
}

.quick-path-item {
  height: 100%;
}

.quick-path-item.recommended-quick-path {
  border-bottom: 4px solid #8cc63f;
}

/* mic section */
.what-is-mic-section .section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title p {
  color: #545a64;
}

.mic-content h4 {
  margin: 20px 0;
}

.mic-item {
  text-align: center;
}

.mic-item {
  border-bottom: 4px solid #00a8b7;
  border-radius: 15px;
  padding: 20px;
  position: relative;
}

.mic-item .arrow-right {
  position: absolute;
  top: 50px;
  left: 66%;
  max-width: 310px;
}

.mic-item.mic-middle-item {
  border-color: #699c2f;
}

.about-content p {
  margin: 30px 0;
}

.about-content h2 {
  margin-bottom: 0;
}

.about-us-thumbnail {
  margin-right: 80px;
}

/* footer */
footer {
  background-color: #0a1114;
}

.footer-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.footer-menu ul li a {
  color: #fff;
}

.footer-menu ul li a {
  text-decoration: none;
  opacity: 0.7;
  transition: 0.3s;
}

.footer-menu ul {
  gap: 22px;
}

.footer-menu ul li a:hover {
  opacity: 1;
}

.footer-copyright p {
  color: #fff;
  font-size: 15px;
}

.footer-address p {
  color: #fff;
}

.footer-social a {
  color: #fff;
  background-color: #ffffff10;
  width: 37px;
  height: 37px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border-radius: 50px;
  transition: 0.3s;
}

.footer-social a:hover {
  background-color: #fff;
  color: #000;
}

.footer-social ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: end;
  gap: 15px;
}

footer {
  padding-top: 100px;
  padding-bottom: 60px;
}

footer .footer-top .container {
  border-bottom: 1px solid #ffffff17;
  padding-bottom: 50px;
  margin-bottom: 50px;
}

.footer-logo img {
  border-radius: 10px;
}

/* cta */
section.cta-section {
  padding-top: 100px;
  padding-bottom: 60px;
  background-size: cover;
  background-position: center;
}

.cta-content h2 {
  color: #fff;
}

.cta-content p {
  color: #fff;
  font-size: 16px;
  margin-top: 15px;
}

.cta-content form {
  background-color: #ffffff20;
  display: inline-block;
  padding: 10px;
  border-radius: 50px;
  border: 1px solid #ffffff1f;
  width: 688px;
  margin: 30px 0;
  max-width: 100%;
}

.cta-content form span {
  display: flex;
  justify-content: space-between;
}

.cta-content form input {
  border: none;
  background: transparent;
  width: 64%;
  padding-left: 9px;
  color: #fff;
  font-size: 14px;
}

.cta-content form input::placeholder {
  color: #fff;
  font-family: 'Inter';
}

.cta-content form input:focus {
  outline: none;
}

/* contact cards */
.contact-hero-content p:nth-child(2) {
  font-size: 20px;
}

.contact-cards-row {
  margin-top: 50px;
}

.contact-card {
  border: 1px solid #e5e7eb;
  height: 100%;
  border-radius: 15px;
  padding: 30px;
}

.contact-card h4 {
  text-align: center;
  margin-bottom: 20px;
}

.contact-card-buttons a {
  width: 100%;
  text-align: center;
  justify-content: center;
  display: flex;
}

.contact-card-buttons .outline-btn {
  color: #000;
  border-color: #8cc63f;
}

.contact-card-buttons img {
  margin-right: 10px;
}

.contact-card-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-card-buttons .primary-btn:hover > span img {
  transform: none;
}

.contact-card-buttons .outline-btn:hover {
  border-color: #000;
  background-color: transparent;
}

.contact-card p {
  margin-bottom: 0;
  padding-top: 30px;
  text-align: center;
  line-height: 1.7;
  border-top: 1px solid #e5e7eb;
  margin-top: 24px;
}

.section-title.section-title-light h2 {
  color: #fff;
}

.what-happens-next-section h2 {
  text-align: center;
  margin-bottom: 0;
}

.what-happens-next-section .section-title {
  margin-bottom: 50px;
}

section.what-happens-next-section {
  background-size: cover;
  background-position: top center;
}

.what-happens-next-card {
  background-color: #ffffff0a;
  border: 1px solid #ffffff26;
  padding: 32px;
  height: 100%;
  text-align: center;
}

.what-happens-next-card img {
  margin-bottom: 50px;
}

.what-happens-next-card p {
  margin-bottom: 0;
}

.what-happens-next-card {
  border-radius: 16px;
}

.what-happens-next-card h4 {
  color: #fff;
}

.what-happens-next-card p {
  color: #fff;
  font-size: 14px;
}

.office-location-right h2 {
  margin-top: 20px;
}

.location-boxes {
  display: flex;
  gap: 30px;
}

.location-box-content p {
  margin-bottom: 0;
}
.location-box {
  display: flex;
  align-items: start;
  gap: 8px;
  position: relative;
  padding-right: 30px;
  min-width: 250px;
}

.location-office-card {
  position: relative;
}

.location-office-card:after {
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  content: '';
  background-color: #ddd;
}

.location-office-card:last-child:after {
  display: none;
}

.location-box:last-child {
  padding-right: 0;
}

.location-box:last-child:after {
  display: none;
}

.office-location-right > p {
  font-weight: 300;
  margin-top: 30px;
}

header.has-shadow {
  box-shadow: 0 0 20px #3333330f;
}

.top-header-bar {
  position: relative;
  z-index: 222;
}

/* mobile header */
.mobile-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-logo img {
  max-width: 140px;
}

span.mobile-menu-trigger {
  background-color: #016a91;
  color: #fff;
  width: 40px;
  display: inline-block;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  font-size: 20px;
}

header.mobile-header {
  padding: 10px 0;
}

.offcanvas-header img {
  max-width: 140px;
  height: auto;
}

.site-nav.mobile-site-nav ul {
  display: flex;
  flex-direction: column;
}

.site-nav.mobile-site-nav ul li a {
  font-size: 17px;
  color: #12323c;
  transition: color 0.3s;
}

.site-nav.mobile-site-nav ul li a:hover,
.site-nav.mobile-site-nav ul li.current-menu-item > a,
.site-nav.mobile-site-nav ul li.current-page-ancestor > a,
.site-nav.mobile-site-nav ul li.current-menu-ancestor > a {
  color: #00abbb;
}

.offcanvas-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.offcanvas-cta-btn {
  text-align: center;
}

.site-nav.mobile-site-nav {
  padding-top: 80px;
}

.offcanvas-social ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 15px;
}

.offcanvas-social ul a {
  color: #333;
  width: 40px;
  display: flex;
  text-decoration: none;
  width: 40px;
  height: 40px;
  border: 1px solid #333;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
}

.offcanvas-social {
  border-top: 1px solid #333;
  padding-top: 20px;
}

.mobile-header {
  display: none;
}

.mobile-menu-trigger {
  cursor: pointer;
}

.location-boxes {
  margin-bottom: 20px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.primary-btn span {
  justify-content: center;
}

/* why advissors ap capital */
.ap-capital-nav-item a {
  border: 1px solid #e1e6ed;
  color: #1a2537;
  text-decoration: none;
  display: block;
  font-size: 14px;
  padding: 10px;
  border-radius: 8px;
}

.ap-capital-nav-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.why-advisors-section {
  padding: 60px 40px;
  background-size: cover;
  background-position: center;
}

.why-advisors-section .section-title h2 {
  color: #fff;
  text-align: center;
}

.why-advisors-section .section-title p {
  color: #fff;
  text-align: center;
}

.icon-list-card {
  background-color: #fff;
  height: 100%;
}

.icon-image img {
  max-width: 70px;
}

.icon-list-card {
  padding: 30px;
  border-radius: 14px;
}

.icon-list-card h4 {
  font-family: inherit;
  font-size: 22px;
}

.why-ad-ap-capital-description p {
  color: #fff;
  text-align: center;
  margin-bottom: 0;
}

.why-ad-ap-capital-description {
  padding-top: 30px;
}

.scrollspy-nav {
  position: sticky;
  top: 0;
}

.list-theme-2 ul li:before {
  font-weight: normal;
}

.list-theme-2 ul {
  padding-left: 0;
  margin-bottom: 0;
}

.icon-list-card li {
  font-size: 1rem;
}

.icon-list-card li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.icon-list-card ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.icon-list-card h4 {
  margin: 20px 0;
}

.icon-list-one li:before {
  color: #125969 !important;
}
.icon-list-two li:before {
  color: #8cc63f !important;
}
.icon-list-three li:before {
  color: #00abbb !important;
}

.why-advisors-section .section-title {
  margin-bottom: 40px;
}

.timeline-box h4 {
  font-size: 22px;
  font-family: inherit;
}

.timeline-box li {
  color: #545a64;
  font-size: 16px !important;
}

.timeline-box .timeline-box {
  border: 1px solid #333;
}

.timeline-box {
  border: 1px solid;
  padding: 20px;
  border-radius: 10px;
}

.timeline-box ul {
  margin: 0;
  padding-left: 15px;
}

.timeline-right .timeline-box:first-child {
  border-color: #8cc63f;
}

.timeline-right .timeline-box:nth-child(2) {
  margin-top: 125px;
  border-color: #006990;
}

.timeline-left .timeline-box:first-child {
  margin-top: 160px;
  border-color: #00a8b7;
}

.timeline-left .timeline-box:last-child {
  margin-top: 155px;
  border-color: #3b7602;
}

.timeline-section .section-title {
  margin-bottom: 50px;
}

.footer-text-section p {
  margin-bottom: 0;
  line-height: 2;
}

.scroll-nav-items {
  flex-direction: row;
  justify-content: space-between;
  background-color: #eefaff;
  padding: 10px;
  border-radius: 50px;
  border: 1px solid #00789d12;
}

.scroll-nav-items a {
  color: #1a2537;
  border: 1px solid #00789d;
  border-radius: 50px;
  padding: 5px 12px;
  transition: 0.3s;
}

.scroll-nav-items a:hover {
  background-color: #00789d;
  color: #fff;
}

.scroll-nav-items {
  margin-top: 20px;
  margin-bottom: 20px;
}

.scroll-nav-items {
  position: sticky;
  top: 0;
}

.scroll-nav-row {
  z-index: 99;
  top: 0 !important;
}

.timeline-icons {
  text-align: center;
}

.timeline-section .container {
  max-width: 1200px;
}

.timeline-box h4 {
  font-size: 26px;
}

.timeline-box li {
  font-size: 18px;
}

.timeline-right .timeline-box:nth-child(2),
.timeline-left .timeline-box:nth-child(2) {
  margin-top: 245px;
}

.timeline-icons {
  margin-top: 70px;
}

.timeline-left .timeline-box:first-child {
  margin-top: 205px;
}

.timeline-box {
  position: relative;
  background-color: #fff;
}

.timeline-right .timeline-box:nth-child(3) {
  border-color: #00a8b7;
}
.timeline-right .timeline-box:nth-child(3):before {
  border-color: #00a8b7;
}

.timeline-right .timeline-box:after {
  position: absolute;
  left: -77px;
  top: 51%;
  width: 61px;
  height: 0px;
  content: '';
  border: 1.5px dashed #bfd7f1;
}
.timeline-left .timeline-box:after {
  position: absolute;
  right: -77px;
  top: 51%;
  width: 61px;
  height: 0px;
  content: '';
  border: 1.5px dashed #bfd7f1;
}

.timeline-right .timeline-box:before {
  position: absolute;
  left: -22px;
  top: 50%;
  width: 25px;
  height: 25px;
  content: '';
  background-color: #fff;
  border: 1px solid #8cc63f;
  transform: rotate(45deg) translateY(-50%);
  border-right: none;
  border-top: none;
}

.timeline-left .timeline-box:before {
  position: absolute;
  right: -4px;
  top: 50%;
  width: 25px;
  height: 25px;
  content: '';
  background-color: #fff;
  border: 1px solid #8cc63f;
  transform: rotate(45deg) translateY(-50%);
  border-left: none;
  border-bottom: none;
}

.timeline-right .timeline-box:nth-child(2):before {
  border-color: #006990;
}

.timeline-left .timeline-box:first-child:before {
  border-color: #00a8b7;
}

.timeline-left .timeline-box:nth-child(2):before {
  border-color: #3b7602;
}

.who-we-land-top-section {
  padding: 40px 60px;
  border-top-right-radius: 50px;
  border-bottom-left-radius: 50px;
  background-size: cover;
  background-position: center;
}

.who-we-land-top-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.who-we-land-left {
  max-width: 600px;
}

.who-we-land-left h2 {
  font-size: 48px;
  color: #fff;
}

.who-we-land-left p {
  color: #fff;
}

.who-we-lend-right {
  background-color: #f9ffef;
  border-radius: 16px;
  padding: 30px 60px;
  border-bottom: 4px solid #8cc63f;
}

.who-we-lend-right p {
  margin-bottom: 0;
}

.who-we-lend-right span {
  color: #8cc63f;
  font-family: 'Newsreader', serif;
  font-weight: 900;
  font-size: 40px;
}

.who-we-lend-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.who-we-lend-right p {
  color: #062c36;
  font-size: 16px;
  font-weight: 500;
}

.who-we-lend-right span {
  border-right: 1px solid #00000036;
  padding-right: 20px;
}

.who-we-land-top-section {
  margin-bottom: 20px;
}

.info-image-card {
  border: 1px solid #dfeefe;
}

.info-image-card img {
  max-width: 100%;
  width: 100%;
}

.info-image img {
  border-radius: 10px;
}

.info-image-card {
  padding: 20px;
  border-radius: 16px;
  height: 100%;
}

.info-content h4 {
  text-align: center;
  font-size: 24px;
}

.info-content {
  margin-top: 20px;
}

.info-content p {
  font-weight: 500;
  margin-bottom: 20px;
}

.info-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #545a64;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-text {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 50px;
}

.info-text p {
  color: #545a64;
  font-weight: 500;
  font-size: 18px;
}

a.inline-btn {
  color: #00a8b7;
  text-decoration: none;
  font-style: italic;
}

.portfolio-content {
  display: flex;
  padding: 20px;
  border-radius: 25px;
  justify-content: space-between;
}

.portfolio-image img {
  max-width: 600px;
}

.portfolio-left h2 {
  font-size: 48px;
  color: #fff;
}

.portfolio-left {
  color: #fff;
}

.portfolio-left p {
  color: #fff;
  font-weight: 300;
  font-size: 16px;
}

.portfolio-list-item h4 {
  font-weight: 500;
  font-family: 'Inter';
  font-size: 16px;
  color: #fff;
}

.portfolio-left p {
  margin-bottom: 0;
}

.portfolio-list-item h4 {
  margin-bottom: 5px;
}

.portfolio-lists {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.portfolio-content {
  align-items: center;
}

.portfolio-left {
  padding-left: 60px;
  max-width: 600px;
}

.portfolio-left > p {
  line-height: 1.8;
}

.portfolio-content {
  background-size: cover;
}

.info-card h4 {
  font-size: 25px;
}

.info-card {
  text-align: center;
  border-bottom: 4px solid #00a8b7;
  border-radius: 16px;
  padding: 35px 20px;
  box-shadow: 0 0 20px #f4f4f4;
  background-color: #fff;
  height: 100%;
}

.info-card p {
  margin: 20px 0;
}

.primary-btn span > span.lang-link,
.primary-btn span > a.lang-link {
  font-weight: bold;
  text-decoration: underline;
  text-underline-position: under;
  color: inherit;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.primary-btn span > a.lang-link:hover {
  opacity: 0.7;
}

div.primary-btn {
  cursor: default;
}

div.primary-btn:hover {
  background-color: #8cc63f; /* Keep same bg on hover if it is a div */
}

.advisors-resources .section-title {
  margin-bottom: 40px;
}

a {
  color: #00a8b7;
}

.accordion-button::after {
  display: none;
}

button.accordion-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

button.accordion-button.collapsed .fa-minus {
  display: none;
}

button.accordion-button .fa-plus {
  display: none;
}

button.accordion-button.collapsed .fa-plus {
  display: block;
}

button.accordion-button span {
  font-family: 'Inter';
  font-size: 18px;
  font-weight: 500;
}

.accordion-body {
  color: #585d64;
  font-size: 16px;
}

.accordion-item {
  border: 1px solid #dee9fb !important;
  border-radius: 6px !important;
  overflow: hidden;
}

.faq-section-wrapper .accordion {
  display: flex;
  gap: 15px;
  flex-direction: column;
}

.accordion-button:not(.collapsed) {
  background-color: #042c3f;
  color: #fff;
  box-shadow: none !important;
}

.faq .section-title h2 {
  text-align: center;
}

.faq .section-title {
  margin-bottom: 20px;
}

.faq-section-wrapper {
  border: 1px solid #f0f6ff;
  padding: 25px;
  border-radius: 15px;
}

.faq-border {
  border-top: 1px solid #e1e6ed;
  padding-bottom: 25px;
}

.faq-section-wrapper {
  background-color: #ffffff;
}

section.newsletter-section {
  background-color: #00789d;
  padding: 140px 0;
}

.news-letter-content {
  text-align: center;
}

.news-letter-content h2 {
  color: #ffffff;
}

.news-letter-content p {
  color: #fff;
  font-size: 16px;
}

.news-letter-content P:nth-child(2) {
  max-width: 900px;
  margin: 0 auto;
}

.news-letter-content form {
  background-color: #ffffff20;
  display: inline-block;
  padding: 10px;
  border-radius: 50px;
}

.news-letter-content form {
  border: 1px solid #ffffff1f;
}

.news-letter-content form input {
  border: none;
  background: transparent;
}

.news-letter-content form input::placeholder {
  color: #fff;
}

.news-letter-content form {
  width: 688px;
}

.news-letter-content form span {
  display: flex;
  justify-content: space-between;
}

.news-letter-content form input {
  width: 64%;
  padding: 0 20px;
  color: #fff;
}

.news-letter-content form input:focus {
  outline: none;
}

.news-letter-content form {
  margin: 30px 0;
}

/* ── Newsletter AJAX Toast Notifications ── */
.ap-toast {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 99999;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 12px;
  min-width: 280px;
  max-width: 420px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  font-size: 15px;
  font-weight: 500;
  color: #062c36;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  pointer-events: none;
}

.ap-toast--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.ap-toast--success {
  border-left: 4px solid #00abbb;
}

.ap-toast--error {
  border-left: 4px solid #e05c5c;
}

.ap-toast__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  color: #062c36;
}

.ap-toast__msg {
  flex: 1;
  line-height: 1.4;
}

.ap-toast__close {
  background: none;
  border: none;
  color: rgba(6, 44, 54, 0.5);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  padding: 0 0 0 8px;
  flex-shrink: 0;
  transition: color 0.2s;
}

.ap-toast__close:hover {
  color: #062c36;
}

@media (max-width: 575px) {
  .ap-toast {
    left: 12px;
    right: 12px;
    bottom: 12px;
    min-width: 0;
    max-width: none;
    font-size: 14px;
    padding: 14px 16px;
    border-left-width: 1px;
    border-left-style: solid;
  }
  .ap-toast--success {
    border-left-color: #00abbb;
  }
  .ap-toast--error {
    border-left-color: #e05c5c;
  }
}

.ap-newsletter-btn.is-loading {
  opacity: 0.7;
  cursor: not-allowed;
}

.mobile-timeline {
  display: none;
}

.ap-capital-scroll-mobile {
  display: none;
}

.process-item-img {
  text-align: center;
}

section.lending-process-section {
  background-color: #f5fcff;
  padding: 100px 0;
}

.lending-process-section .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.process-item ul li {
  font-size: 18px;
}

.process-item {
  background-color: #ffffff;
  border: 1px solid #f0f4ff;
  padding: 25px;
  border-radius: 10px;
}

.process-item ul {
  margin-bottom: 0;
}

.process-item {
  position: relative;
}

.process-items-right .process-item:before {
  position: absolute;
  left: -18px;
  top: 50%;
  width: 35px;
  height: 35px;
  content: '';
  background-color: #fff;
  transform: translateY(-50%) rotate(45deg);
  border: 1px solid #f0f4ff;
  border-top: none;
  border-right: none;
}

.process-items-left .process-item:before {
  position: absolute;
  right: -18px;
  top: 38%;
  width: 35px;
  height: 35px;
  content: '';
  background-color: #fff;
  transform: translateY(-50%) rotate(45deg);
  border: 1px solid #f0f4ff;
  border-bottom: none;
  border-left: none;
}

.process-item-img {
  margin-top: 50px;
}

.process-items-right .process-item:first-child:before {
  top: 38%;
}

.process-items-right .process-item:nth-child(2):before {
  top: 38%;
}

.process-items-right .process-item:nth-child(2) {
  margin-top: 140px;
}

.process-items-left .process-item:first-child {
  margin-top: 192px;
}

.process-items-left .process-item:nth-child(2) {
  margin-top: 114px;
}

.lending-process-section .subheading {
  font-size: 20px;
}

.process-mobile-section {
  display: none;
}

span.featured-tag {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #00a8b7;
  color: #fff;
  padding: 2px 15px;
  font-size: 14px;
}

.info-card {
  position: relative;
  overflow: hidden;
}

.resources-section .info-card {
  padding-top: 60px;
}

.resources-section .section-title {
  margin-bottom: 50px;
}

.resources-section p.subheading {
  font-size: 20px;
}

.footer-text-section {
  background-color: #f9fbff;
}

section.documents-section .section-title {
  margin-bottom: 50px;
}

section.stay-connected-section {
  background-size: cover;
  background-position: center;
}

section.stay-connected-section .section-title h2 {
  color: #fff;
}

section.stay-connected-section .section-title p {
  color: #fff;
}

section.stay-connected-section .section-title {
  text-align: center;
  margin-bottom: 30px;
}

.get-in-touch-box {
  background-color: #f9ffef;
  padding: 40px;
}

.get-in-touch-box p {
  color: #585d64;
  margin-bottom: 20px;
}

.get-in-touch-box {
  border-radius: 16px;
  border-bottom: 4px solid #8cc63f;
}

.monthly-updates {
  background-color: #fff;
  border-radius: 16px;
  padding: 40px;
}

.monthly-updates {
  display: flex;
  height: 100%;
  align-items: center;
}

.monthly-update-left {
  width: 500px;
}

.monthly-update-right {
  max-width: 40%;
}

.monthly-update-right input {
  border-color: #e0e0e0;
  color: #333;
  border-radius: 5px;
  width: 100%;
  padding: 10px;
  padding-left: 35px;
}

.monthly-update-right input::placeholder {
  color: #9ca3af;
}

.monthly-update-right p {
  position: relative;
}

.monthly-update-right p span {
  position: absolute;
  z-index: 2;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
}

section.stay-connected-section {
  padding: 100px 0;
}

.section-title-type-two {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-card-content h4 {
  font-size: 18px;
  font-family: 'Inter';
  color: #062c36;
  font-weight: 500;
}

.how-it-works .service-card-content h3 {
  font-size: 20px;
  font-family: 'Inter', sans-serif;
  color: #062c36;
  font-weight: 600;
  margin-bottom: 8px;
}

.service-card-content p {
  margin-bottom: 0;
  color: #545a64 !important;
}

.service-card-content li {
  color: #545a64 !important;
}

.service-card {
  padding: 24px;
}

.service-card-teal {
  background-color: #f0feff;
  border-bottom: 4px solid #00a8b7;
}

.service-card-green {
  background-color: #f9ffef;
  border-bottom: 4px solid #8cc63f;
}

.service-card-content p {
  font-size: 14px;
}

.service-card {
  height: 100%;
  border-radius: 10px;
}

.service-card-icon {
  margin-bottom: 20px;
}

.service-card-content h4 {
  margin-bottom: 15px;
}

.investors-cards-section .section-title {
  margin-bottom: 60px;
}

.mic-section .section-title-right {
  background-color: #f0feff;
  display: flex;
  align-items: center;
  padding: 14px 20px;
  border-radius: 14px;
  border-left: 2px solid #00a8b7;
}

.mic-section .section-title-right span {
  font-weight: 500;
}

.mic-section .section-title-right span img {
  margin-right: 10px;
}

.mic-section .section-title-right span img {
  max-width: 25px;
}

.icon-card {
  border: 1px solid #f0f6ff;
  border-radius: 14px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 0 30px #1717170a;
}

.icon-card-content h4 {
  font-size: 22px;
  font-family: 'Inter';
}

.icon-card-icon {
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.icon-card-icon span {
  color: #00a8b7;
  background-color: #eafafb;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 14px;
}

.icon-card-content {
  margin-top: 50px;
}

.icon-card-content p {
  margin-bottom: 0;
}

.section-button-wrapper {
  text-align: center;
  margin-top: 50px;
}

.mic-section .section-title {
  margin-bottom: 50px;
}

.icon-card {
  position: relative;
  background-color: #fff;
}

.icon-card .arrow-right {
  position: absolute;
  right: -51px;
  top: 50%;
  transform: translateY(-50%);
}

.why-choose .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.why-choose .section-title h2,
.why-choose .section-title p {
  color: #fff;
}

.why-choose .icon-card-content {
  margin-top: 20px;
}

span.icon-card-alert {
  background-color: #8cc63f1a;
  width: 100%;
  display: inline-block;
  color: #062c36;
  font-size: 16px;
  padding: 8px 10px;
  border-radius: 10px;
  text-align: center;
  margin-top: 20px;
}

.why-choose {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

span.second-subtitle {
  color: #545a64;
  font-size: 11px;
  font-weight: 100;
}

.how-to-invest-content h4 {
  font-size: 22px;
  font-family: 'Inter';
  font-weight: 500;
}

.how-to-invest-content p {
  margin-bottom: 00;
}

.how-to-invest-item {
  display: flex;
  gap: 20px;
}

.how-to-invest-item {
  border: 1px solid #f0f4ff;
  border-radius: 20px;
  padding: 20px;
  background-color: white;
  box-shadow: 0 0 30px #1717170a;
}

.how-to-invest-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.how-to-invest .section-button-wrapper {
  text-align: left;
}

section.quick-facts-section .section-title h2 {
  color: #fff;
  text-align: center;
}

.quick-facts-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 25px;
}

.quick-facts-card h4 {
  font-size: 22px;
  font-family: 'Inter';
  font-weight: 500;
}

.quick-facts-card p {
  margin-bottom: 0;
}

.quick-facts-card {
  text-align: center;
}

section.quick-facts-section {
  padding: 120px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

section.quick-facts-section .section-title {
  margin-bottom: 50px;
}

.how-it-works .section-title {
  margin-bottom: 40px;
  text-align: center;
}

.faq .section-title p {
  text-align: center;
}

.newsletter-theme-two .news-letter-content.newsletter-left {
  text-align: left;
}

section.why-choose-section .section-title {
  margin-bottom: 40px;
}

.submission-content h2 {
  color: #fff;
  text-align: center;
}

.submission-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.submission-logos img {
  max-width: 140px;
}

.submission-content {
  padding: 70px 0;
  border-top-right-radius: 50px;
  border-bottom-left-radius: 50px;
}

.icon-card-heading h4 {
  font-size: 22px;
  font-family: 'Inter';
  margin-bottom: 0;
}

.lending-guidelines .icon-card-content {
  margin-top: 15px;
}

.icon-card-heading {
  display: flex;
  align-items: center;
  gap: 20px;
}

section.lending-guidelines .section-title {
  margin-bottom: 50px;
}

section.lending-guidelines .icon-card li {
  font-size: 14px;
}

.section-desclimer p {
  color: #545a64;
  font-size: 11px;
  font-weight: 200;
}

.timeline-section-curved .timeline-icons {
  margin-top: 40px;
}

.timeline-section-curved .timeline-right .timeline-box:nth-child(2) {
  margin-top: 265px;
}

.timeline-section-curved .timeline-right .timeline-box:nth-child(3) {
  margin-top: 245px;
}

.timeline-section-curved .timeline-left .timeline-box:nth-child(2) {
  margin-top: 245px;
}

.timeline-section-curved .timeline-right .timeline-box:after {
  left: -118px;
  top: 52%;
  width: 100px;
}

.timeline-section-curved .timeline-left .timeline-box:after {
  position: absolute;
  right: -120px;
  top: 51%;
  width: 100px;
  height: 0px;
  content: '';
  border: 1.5px dashed #bfd7f1;
}

.timeline-icon {
  width: 40px;
  height: 40px;
  background-color: #7bc80f;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  margin-bottom: 20px;
}

.timeline-section-curved .timeline-icons img {
  height: 913px;
  width: 156px !important;
  max-width: 156px !important;
}

section.support-team {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

section.support-team .section-title h2 {
  color: #fff;
  text-align: center;
}

.team-card {
  background-color: #fff;
  border: 1px solid #dfeefe;
  border-radius: 16px;
  padding: 30px;
}

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

.team-card-top {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #dfeefe;
  padding-bottom: 20px;
  margin-bottom: 20px;
  gap: 16px;
}

.team-card-meta p {
  color: #545a64;
  font-size: 15px;
  margin-bottom: 0;
}

.team-card-meta h4 {
  margin-bottom: 10px;
}

section.support-team .section-title {
  margin-bottom: 40px;
}

.general-cards .service-card-content h3 {
  font-family: 'Inter';
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 25px;
}

.general-cards .service-card-content p {
  margin-bottom: 30px;
  font-size: 18px;
}

.faq-section-title h4 {
  margin-bottom: 20px;
}

.timeline-year .timeline-icons {
  margin-top: 50px;
}

.timeline-year .timeline-icons img {
  height: 1148px !important;
}

.timeline-year .timeline-left .timeline-box:first-child {
  margin-top: 210px;
}

.timeline-year .timeline-left .timeline-box:nth-child(2) {
  margin-top: 220px;
}

.timeline-year .timeline-left .timeline-box:nth-child(3) {
  margin-top: 265px;
}

.timeline-year .timeline-right .timeline-box:nth-child(2) {
  margin-top: 232px;
}

.timeline-year .timeline-right .timeline-box:nth-child(3) {
  margin-top: 230px;
}

.leader-bg {
  height: 630px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}

section.leadership-section {
  position: relative;
}

.leadership-section .section-title {
  margin-bottom: 60px;
  text-align: center;
}

.leadership-section .section-title h2 {
  color: #fff;
}

.leadership-section .section-title p {
  color: #fff;
}

.leader-bg {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.leadership-card {
  border: 1px solid #dfeefe;
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
}

.leadership-card img {
  width: 100%;
  padding: 10px;
  padding-bottom: 0;
}

.leadership-meta {
  padding: 30px;
  padding-bottom: 0;
}

.leadership-content {
  padding: 0 30px;
  padding-bottom: 30px;
}

.leadership-content p {
  margin-bottom: 0;
}

.leadership-meta p {
  color: #062c36;
  margin-bottom: 0;
}

.leadership-meta p {
  border-bottom: 1px solid #dfeefe;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.leadership-content p {
  font-size: 15px;
  line-height: 1.8;
}

.leadership-card {
  height: 100%;
}

section.support-team.no-background .section-title h2 {
  color: #333;
}

section.support-team.no-background .team-card {
  box-shadow: 0 0 20px #dddddd66;
}

.leadership-card {
  box-shadow: 0 0 20px #dddddd66;
}

.Governance-section .service-card h4 {
  font-size: 22px;
}

.Governance-section .service-card p {
  margin-bottom: 15px;
  font-size: 16px;
}

.Governance-section .service-card .simple-list ul {
  margin-bottom: 0;
  padding-left: 15px;
}

.Governance-section .section-title {
  margin-bottom: 40px;
}

.logo-wide-section {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.logo-wide-section .section-title {
  margin-bottom: 30px;
}

.logo-wide-section .submission-logos {
  gap: 75px;
}

.featured-left {
  max-width: 500px;
}

.featured-left p {
  margin-bottom: 30px;
  line-height: 1.7;
}

.step-card {
  box-shadow: 0 0 20px #dddddd66;
  border-radius: 20px;
  border: 1px solid #dfeefe;
  background-color: #fff;
  padding: 30px;
}

.next-step-section .section-title {
  margin-bottom: 40px;
}

.step-card-heading img {
  max-width: 90px;
}

.step-card-heading {
  display: flex;
  align-items: center;
  gap: 20px;
}

.step-card-heading .step-card-meta p {
  color: #00789d;
  margin-bottom: 0;
}

.step-card-heading .step-card-meta h4 {
  font-family: 'Inter';
  font-size: 22px;
  margin-top: 5px;
  margin-bottom: 0;
}

.step-card-heading {
  margin-bottom: 30px;
  border-bottom: 1px solid #dfeefe;
  padding-bottom: 30px;
}

.step-card-heading > p {
  color: #545a64;
  font-size: 17px;
}

.step-card-top > p {
  font-size: 15px;
  margin-bottom: 0;
}

.step-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.step-card .primary-btn {
  width: 100%;
}

.step-card.middle-card {
  background-color: #e5f1f5;
}

.step-card.middle-card .step-card-heading h4,
.step-card.middle-card .step-card-heading p {
  color: #717171;
}

.step-card {
  gap: 50px;
}

a.primary-btn.white-btn {
  background-color: white;
  color: #000;
}

.stap-card-bottom .white-btn {
  margin-bottom: 20px;
  transition: 0.3s;
}

.stap-card-bottom p {
  margin-bottom: 0;
  color: #717171;
  font-size: 12px;
  font-style: italic;
  margin-top: 15px;
}

a.primary-btn.white-btn:hover {
  background-color: #333;
  color: #fff;
}

.statistics-section .ap-capital-nav-item {
  width: 100%;
  text-align: center;
}

.statistics-box {
  background-color: #f0f7fa;
}

.statistics-box h4 {
  font-size: 22px;
  font-family: 'Inter';
  font-weight: 500;
}

.statistics-box {
  border-left: 4px solid #699c2f;
  padding-left: 20px;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-right: 16px;
}

.statistics-box h4 {
  margin-bottom: 0;
  line-height: 1.6;
}

.statistics-section .row:nth-child(2) {
  margin-top: 50px;
  margin-bottom: 10px;
}

.statistics-content .section-title {
  margin-bottom: 30px;
}

.statistics-button {
  display: flex;
  gap: 20px;
}

.statistics-section.section-padding {
  padding-bottom: 0;
}

/* Scroll Navigation Sticky & Active States */
.scroll-nav-wrapper {
  position: sticky !important;
  top: 86px; /* Offset to account for desktop sticky header */
  z-index: 1010;
  background-color: #fff;
}

/* Scrolling down — release sticky so nav flows naturally with the page */
.scroll-nav-wrapper.is-scrolling-down {
  position: relative !important;
  top: auto !important;
}

body.admin-bar .scroll-nav-wrapper {
  top: 118px; /* 86px + 32px admin bar */
}

@media screen and (max-width: 782px) {
  .scroll-nav-wrapper {
    top: 60px; /* Offset for mobile sticky header */
  }
  body.admin-bar .scroll-nav-wrapper {
    top: 60px; /* 60px + 46px admin bar */
  }
}

.ap-capital-nav-item a {
  transition: all 0.3s ease;
}

.ap-capital-nav-item a:hover,
.ap-capital-nav-item a.active {
  color: #fff;
  background-color: #00abbb;
  border-color: #00abbb;
}

section.overview-section .section-title {
  border-bottom: 1px solid #e1e6ed;
  padding-bottom: 30px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
}

.overview-select select {
  background-color: #00abbb;
  border: none;
  color: #fff;
  border-radius: 50px;
  padding: 13px 45px 13px 28px;
  --bs-form-select-bg-img: none;
}

.overview-select {
  position: relative;
}

.overview-select i {
  position: absolute;
  right: 16px;
  top: 50%;
  color: #fff;
  transform: translateY(-50%);
}

.box-card {
  border: 1px solid #dfeefe;
  border-radius: 16px;
  padding: 30px;
  background-color: #fff;
  box-shadow: 0 0 20px #dddddd66;
}

.overview-content {
  display: flex;
  gap: 20px;
}

.overview-number p {
  color: #545a64;
  font-size: 16px;
}

.overview-number h4 {
  font-weight: 600;
  color: #006990;
}

.overview-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.overview-number {
  border-right: 1px solid #e1e6ed;
  padding-right: 20px;
}

.overview-number > * {
  margin: 0;
}

.overview-number {
  display: flex;
  flex-direction: column;
}

.overview-number h4 {
  margin-top: 20px;
}

.overview-map img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

.overview-map {
  height: 100%;
}

/* Track Record & Returns section (investors page) */
.track-record-section .section-title-text-center {
  text-align: center;
}

.track-record-section .section-title-text-center h2 {
  color: #062c36;
  margin-bottom: 8px;
}

.track-record-section .track-record-fund-name {
  color: #062c36;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 4px;
}

.track-record-section .track-record-share-price {
  color: #707070;
  font-size: 14px;
  margin-top: 0;
  margin-bottom: 0;
}

.track-record-section .track-record-card {
  padding: 32px 40px;
  border-radius: 16px;
}

.track-record-section .performance-chart-height {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: 0;
}

.track-record-section .performance-chart-height--growth {
  height: 280px;
}

.track-record-section .performance-subtitle {
  color: #0a303d;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.track-record-section .section-button-wrapper {
  margin-top: 24px;
  margin-bottom: 0;
}

.track-record-section .track-record-cta-btn {
  background-color: #006990;
  color: #fff;
}

.track-record-section .track-record-cta-btn:hover {
  background-color: #005a75;
  color: #fff;
}

/* Performance section */
.performance-section .performance-card-inner {
  padding: 32px 40px;
  border-radius: 16px;
}

.performance-section .performance-date-disclaimer {
  font-size: 14px;
  color: #707070;
  margin-top: 8px;
  margin-bottom: 0;
}

.performance-section .performance-subtitle {
  color: #0a303d;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.performance-section .performance-chart-height {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: 0;
}

.performance-section .performance-chart-height--growth {
  height: 280px;
}

.performance-section .performance-chart-height--calendar {
  height: 260px;
}

.performance-section .compound-metric-item {
  border-bottom: 2px solid #6cb72e;
  padding-bottom: 8px;
}

.performance-section .compound-metric-label {
  font-size: 14px;
  color: #333;
}

.performance-section .compound-metric-value {
  font-size: 22px;
  font-weight: 700;
  color: #005c88;
}

/* Portfolio & Key Statistics section */
.portfolio-statistics-section .portfolio-statistics-card-inner {
  padding: 32px 40px;
  border-radius: 16px;
}

.portfolio-statistics-section .portfolio-statistics-subtitle {
  color: #0a303d;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

.portfolio-statistics-section .portfolio-pie-card {
  background: #fff;
  border: 1px solid #e8eef5;
  border-radius: 12px;
  padding: 20px;
  height: 100%;
}

.portfolio-statistics-section .portfolio-pie-chart-wrap {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto;
  flex-shrink: 0;
}

.portfolio-statistics-section .portfolio-pie-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  margin-top: 12px;
  padding-top: 0;
}

.portfolio-statistics-section .portfolio-pie-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #707070;
}

.portfolio-statistics-section .portfolio-pie-legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.portfolio-statistics-section .portfolio-pie-legend-text {
  white-space: nowrap;
}

/* Fund Size & Scale / Portfolio Quality – match screenshot */
.portfolio-statistics-section .portfolio-fund-size,
.portfolio-statistics-section .portfolio-quality-metrics {
  margin-bottom: 0;
}

.portfolio-statistics-section
  .portfolio-fund-size
  .portfolio-statistics-subtitle,
.portfolio-statistics-section
  .portfolio-quality-metrics
  .portfolio-statistics-subtitle {
  color: #333333;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}

.portfolio-statistics-section .portfolio-metric-box {
  border: 1px solid #e8eef5;
  border-radius: 12px;
  padding: 16px;
  height: 100%;
  background: #fff;
}

.portfolio-statistics-section .portfolio-metric-icon {
  margin-bottom: 8px;
}

.portfolio-statistics-section .portfolio-metric-icon img {
  width: auto;
  height: 24px;
  display: block;
  object-fit: contain;
}

.portfolio-statistics-section .portfolio-metric-icon--inline {
  margin-bottom: 0;
  margin-right: 10px;
  flex-shrink: 0;
}

.portfolio-statistics-section .portfolio-metric-icon--inline img {
  height: 20px;
}

.portfolio-statistics-section .portfolio-metric-label {
  font-size: 16px;
  color: #333333;
  margin-bottom: 6px;
  line-height: 1.35;
}

.portfolio-statistics-section .portfolio-fund-size .portfolio-metric-value {
  font-size: 20px;
  font-weight: 700;
  color: #333333;
}

.portfolio-statistics-section .portfolio-quality-metrics {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #e8eef5;
}

.portfolio-statistics-section .portfolio-quality-item {
  display: flex;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #e8eef5;
}

.portfolio-statistics-section .portfolio-quality-item:last-child {
  border-bottom: none;
}

.portfolio-statistics-section .portfolio-quality-content {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.portfolio-statistics-section .portfolio-quality-label {
  font-size: 16px;
  color: #333333;
}

.portfolio-statistics-section .portfolio-quality-value {
  font-size: 14px;
  font-weight: 700;
  color: #333333;
}

.investment-row h4 {
  font-size: 24px;
  margin-bottom: 30px;
}

.investment-row ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.investment-row ul li img {
  position: absolute;
  left: 0;
  top: 5px;
  max-width: 15px;
}

.investment-row ul li {
  position: relative;
  padding-left: 30px;
  color: #545a64;
}

.investment-row ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.row.investment-row .box-card {
  height: 100%;
}

.row.investment-row .box-card p {
  margin-bottom: 0;
  line-height: 1.8;
}

.distribution-table {
  border: 1px solid #f0f6ff;
  padding: 20px;
  border-radius: 16px;
}

.dist-table-heading {
  display: flex;
  justify-content: space-between;
}

.dist-table-heading span {
  font-weight: bold;
  color: #042c3f;
  font-size: 24px;
}

.dist-table-data {
  display: flex;
  justify-content: space-between;
}

.dist-table-data span {
  color: #545a64;
  font-size: 1rem;
}

.dist-table-heading {
  border-bottom: 1px solid #e1e6ed;
  padding: 10px;
  padding-top: 0;
}

.dist-table-data {
  border-bottom: 1px solid #e1e6ed;
  padding: 10px;
}

.dist-table-data:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.table-list-label {
  background-color: #f9fbff;
  width: 25%;
}

.table-list-row {
  display: flex;
}

.table-list {
  border: 1px solid #dee9fb;
  border-radius: 10px;
  overflow: hidden;
}

.table-list-content span {
  border-bottom: 1px solid #dee9fb;
  display: block;
  width: 100%;
}

.table-list-content {
  width: 75%;
}

.table-list-row:last-child span {
  border-bottom: none;
}

.table-list-row span {
  padding: 10px;
  display: inline-block;
}

.table-list-label span {
  font-weight: 600;
}

.table-card-wrapper h4 {
  margin-bottom: 20px;
  font-size: 24px;
}

.table-card-wrapper {
  margin-bottom: 30px;
}

.table-card-wrapper:last-child {
  margin-bottom: 0;
}

section.distribution-section .section-title,
.facts-fees-fund-section .section-title {
  margin-bottom: 20px;
}

p.track-record-fund-name.text-start {
  margin-bottom: 30px;
  font-weight: 600;
}

p.track-record-fund-name span {
  font-weight: normal;
  font-size: 14px;
  color: #222;
  margin-left: 3px;
}

section.track-record-section .section-title h2 span {
  font-size: 16px;
  font-family: inter;
  font-weight: normal;
}

section.track-record-section .section-title {
  margin-bottom: 40px;
}

/* Page entrance animations (all pages) */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-animate {
  opacity: 0;
  animation: fadeInUp 0.5s ease-out forwards;
}

.page-animate-delay-1 {
  animation-delay: 0.1s;
}
.page-animate-delay-2 {
  animation-delay: 0.2s;
}
.page-animate-delay-3 {
  animation-delay: 0.3s;
}
.page-animate-delay-4 {
  animation-delay: 0.4s;
}

/* Scroll-triggered animations */
.page-animate-scroll {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.5s ease-out,
    transform 0.5s ease-out;
}

.page-animate-scroll.page-animate-visible {
  opacity: 1 !important;
  transform: translateY(0);
}

.page-animate-scroll-delay-1 {
  transition-delay: 0.1s;
}
.page-animate-scroll-delay-2 {
  transition-delay: 0.2s;
}
.page-animate-scroll-delay-3 {
  transition-delay: 0.3s;
}
.page-animate-scroll-delay-4 {
  transition-delay: 0.4s;
}

.fund-overview-nav .ap-capital-nav-item {
  width: 100%;
  text-align: center;
}

.timeline-investors ul {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}

.timeline-investors .timeline-right .timeline-box:nth-child(2) {
  margin-top: 285px;
}

.timeline-investors .timeline-left .timeline-box:nth-child(2) {
  margin-top: 222px;
}

.hero-list-mobile {
  display: none !important;
}

.mobile-header {
  padding: 0 !important;
}

.investors-cards-section .mobile-btn-wrapper {
  display: none;
}

.track-record-section .section-button-wrapper {
  text-align: left;
}
section.hero-section.home-hero {
  padding-top: 100px;
}
.mic-item img.mobile-arrow {
  display: none;
}

.monthly-update-right .primary-btn {
  width: 100%;
}

.process-items-right .process-item:after {
  position: absolute;
  left: -75px;
  top: 95px;
  width: 100px;
  height: 1px;
  border: 1px dashed;
  content: '';
  border-color: #8cc63f;
  z-index: -1;
}

.process-items-right .process-item {
  position: relative;
}

.process-items-left .process-item:after {
  position: absolute;
  right: -75px;
  top: 79px;
  width: 100px;
  height: 1px;
  border: 1px dashed;
  content: '';
  border-color: #8cc63f;
  z-index: -1;
}

.process-items-right .process-item {
  position: relative;
}

.process-items-left .process-item:first-child:after {
  top: 109px;
}

.process-mobile-items > div {
  position: relative;
}

.process-mobile-items > div:after {
  position: absolute;
  left: -30px;
  width: 100px;
  height: 1px;
  border: 1px dashed;
  content: '';
  border-color: #8cc63f;
  z-index: -1;
}

.process-mobile-items > div:first-child:after {
  top: 61px;
}

.process-mobile-items > div:nth-child(2):after {
  top: 108px;
}

.process-mobile-items > div:nth-child(3):after {
  top: 163px;
}

.process-mobile-items > div:nth-child(4):after {
  top: 179px;
}

.broker-timeline-section .section-button-wrapper {
  text-align: left;
  padding-left: 87px;
}

p.newsletter-disclaimer {
  font-weight: 200;
}

/* ════════════════════════════════════════
   DESKTOP NAV — Arrow
════════════════════════════════════════ */
.site-nav:not(.mobile-site-nav) .menu-item-has-children {
  display: flex !important;
  align-items: center;
}

.site-nav:not(.mobile-site-nav) .menu-item-has-children > a {
  display: inline-flex;
  align-items: center;
}

.site-nav:not(.mobile-site-nav) .menu-item-has-children > a::after {
  display: none;
}

.dropdown-icon-trigger {
  display: inline-block;
  width: 24px; /* Increased size for better hit area */
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
  opacity: 0.6;
  transition:
    transform 0.2s ease,
    opacity 0.15s ease;
  cursor: pointer;
  margin-left: 2px;
}

.dropdown-icon-trigger:hover,
.site-nav:not(.mobile-site-nav)
  .menu-item-has-children:hover
  > .dropdown-icon-trigger {
  transform: rotate(180deg);
  opacity: 0.9;
}

/* ════════════════════════════════════════
   DESKTOP NAV — Dropdown panel
════════════════════════════════════════ */
.site-nav:not(.mobile-site-nav) .menu-item-has-children {
  position: relative;
}

.site-nav:not(.mobile-site-nav) .sub-menu {
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 0.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  min-width: 200px;
  list-style: none;
  padding: 0.5rem 0.375rem 0.375rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.15s ease,
    visibility 0.15s ease;
  z-index: 9999;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
}

.site-nav:not(.mobile-site-nav) .sub-menu li {
  display: block;
  width: 100%;
}

.site-nav:not(.mobile-site-nav) .menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ════════════════════════════════════════
   DESKTOP NAV — Dropdown items
════════════════════════════════════════ */
.site-nav:not(.mobile-site-nav) .sub-menu li a {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: #555;
  border-radius: 8px;
  white-space: nowrap;
  text-decoration: none;
  transition:
    background 0.12s ease,
    color 0.12s ease;
}

.site-nav:not(.mobile-site-nav) .sub-menu li a:hover {
  background: #f5f5f5;
  color: #111;
}

/* ════════════════════════════════════════
   MOBILE NAV — Arrow
════════════════════════════════════════ */
.mobile-site-nav .menu-item-has-children {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
}

.mobile-site-nav .menu-item-has-children > a {
  display: inline-flex;
  align-items: center;
  pointer-events: auto; /* Allow clicking the link on mobile */
}

.mobile-site-nav .menu-item-has-children > a::after {
  display: none;
}

/* ════════════════════════════════════════
   MOBILE NAV — Sub-menu collapsed
════════════════════════════════════════ */
.mobile-site-nav .sub-menu {
  display: block;
  list-style: none;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
  width: 100%; /* Ensure submenu takes full width below the flex items */
}

.mobile-site-nav .sub-menu li {
  display: block;
  width: 100%;
}

/* ════════════════════════════════════════
   MOBILE NAV — Expand on tap
════════════════════════════════════════ */
.mobile-site-nav .dropdown-icon-trigger {
  width: 28px;
  height: 28px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23016a91' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-size: 18px;
  opacity: 1;
  margin-left: 4px;
  padding: 4px;
  box-sizing: content-box;
}

.mobile-site-nav .dropdown-icon-trigger:hover {
  transform: rotate(180deg);
}

/* Handled via JS click event on mobile for better reliability */
/* .mobile-site-nav .dropdown-icon-trigger:hover ~ .sub-menu,
.mobile-site-nav .sub-menu:hover {
  max-height: 400px;
  padding: .25rem 0 .5rem;
} */

/* ════════════════════════════════════════
   MOBILE NAV — Sub-menu items
════════════════════════════════════════ */
.mobile-site-nav .sub-menu li a {
  display: block;
  padding: 0.5rem 1rem 0.5rem 1.25rem;
  font-size: 0.875rem;
  color: #666;
  text-decoration: none;
  pointer-events: auto;
  border-left: 2px solid rgba(0, 0, 0, 0.08);
  margin-left: 0.5rem;
  transition:
    color 0.12s ease,
    border-color 0.12s ease;
}

.mobile-site-nav .sub-menu li a:hover {
  color: #111;
  border-left-color: rgba(0, 0, 0, 0.3);
}

.sub-menu .menu-item {
  width: 100%;
}
.footer-address span {
  display: inline-block;
  margin: 0 2px;
}

@media (min-width: 767px) {
  section.overview-section .section-title {
    flex-direction: column;
    align-items: start;
    gap: 15px;
  }
}

.location-office-card h3 {
  font-size: 25px;
}

.location-box {
  margin: 15px 0;
}

.location-boxes {
  margin-bottom: 0;
  margin-top: 20px;
}

.leadership-thumb img {
  width: 100%;
  max-height: 332px;
  height: 332px;
  object-fit: cover;
  border-radius: 16px;
  object-position: top;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.team-card-avatar img {
  border-radius: 50%;
  max-width: 96px;
  height: 96px;
  width: 96px;
  object-fit: cover;
  object-position: top;
}

.Governance-section .service-card .simple-list ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.advisors-timeline .section-title p {
  font-size: 20px;
}

.info-text p {
  font-size: 20px;
}

.icon-list-row {
  max-width: 1200px;
  margin: 0 auto;
}

.timeline-investors .section-title p {
  font-size: 20px;
}

.section-title p {
  font-size: 20px;
}

.primary-btn span {
  justify-content: center;
  font-size: 16px;
}

.table-list span {
  font-size: 1rem !important;
}

.distribution-btn {
  text-align: center;
}

.timeline-box ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.process-item ul li {
  font-size: 16px;
}

.process-item ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

section.track-record-section .section-title h2 span {
  display: block;
}

button.accordion-button span {
  font-size: 1rem;
  line-height: 1.7;
}

p.track-record-fund-name span {
  display: block;
}

.icon-two img {
  max-width: 300px;
}

.icon-one img {
  max-width: 104px;
}

section.lending-guidelines .icon-card li {
  font-size: 1rem;
}

.cta-content form input {
  padding-left: 20px;
  padding-right: 20px;
}

.timeline-investors .timeline-icons {
  margin-top: 45px;
}

.advisors-timeline .timeline-left .timeline-box:first-child {
  margin-top: 240px;
}

.mortgage-timeline .timeline-left .timeline-box {
  margin-top: 222px;
}

.mortgage-timeline .timeline-right .timeline-box:nth-child(2) {
  margin-top: 250px;
}

.timeline-about .timeline-left .timeline-box:first-child {
  margin-top: 200px;
}

.timeline-about .timeline-left .timeline-box:nth-child(3) {
  margin-top: 245px;
}

.timeline-about .timeline-right .timeline-box:nth-child(2) {
  margin-top: 220px;
}

.timeline-about .timeline-right .timeline-box:nth-child(3) {
  margin-top: 212px;
}

.service-card-icon img {
  max-width: 50px;
}

.lending-process-section .process-item ul {
  list-style: none;
  padding-left: 0;
}

.footer-menu ul li a {
  font-size: 14px;
}

.footer-copyright p {
  font-size: 14px !important;
  margin: 16px 0 !important;
}

.footer-address p {
  font-size: 14px !important;
  margin-bottom: 0 !important;
}

.about-support-team {
  padding-top: 0;
}

.about-support-team .section-title {
  margin-bottom: 0;
}

section.support-team.about-support-team .section-title {
  margin-bottom: 0;
}

section.support-team.about-support-team {
  margin-top: 20px;
}

.monthly-update-right input {
  border: 1px solid #33333321;
  border-radius: 50px;
  padding-left: 25px;
}

.monthly-update-right p span {
  padding-left: 2px;
  display: none;
}

.location-office-card h3 {
  display: none;
}

.location-box-content p {
  position: relative;
  padding-left: 27px;
}

.location-box-content p img {
  position: absolute;
  left: 0;
  top: 2px;
}

.location-box-content h4 {
  font-size: 24px;
}

.advisors-timeline ul {
  list-style: none;
  padding-left: 0;
}

.lending-process-section .process-items-right .process-item:first-child:before,
.lending-process-section .process-items-left .process-item:first-child:before {
  top: 41%;
}

.lending-process-section .process-items-right .process-item:nth-child(2) {
  margin-top: 155px;
}

.lending-process-section
  .process-items-right
  .process-item:nth-child(2):before {
  top: 52%;
}

.lending-process-section .process-items-left .process-item:nth-child(2) {
  margin-top: 135px;
}

.monthly-updates {
  background-color: #f0feff;
  border-bottom: 4px solid #00a8b7;
}

.lending-process-section .process-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: 26px;
}
