@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --black: #000;
  --theme-color: #162731;
  --alternate-color: #2c2c2c;
  --white: #fff;
}

body,
html {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 16px;
}

a {
  color: var(--theme-color);
  text-decoration: none;
  transition: 0.3s ease;
}

a:hover {
  text-decoration: none;
  color: var(--alternate-color);
}

.themeBtn {
  display: flex;
  padding: 18px 32px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  border-radius: 50px;
  background: #FF6A37;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
}

.themeBtn:hover {
  background: #ffffff;
  color: #FF6A37;
}

ul {
  padding-left: 20px;
}

h1,
.h1 {
  color: #FFF;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.25);
  font-family: "Jost", sans-serif;
  font-size: 110px;
  font-style: normal;
  font-weight: 400;
  line-height: 125px;
  text-transform: uppercase;
}

h2,
.h2 {
  color: #000000;
  font-family: "Jost", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
}

h3,
.h3 {
  color: #031842;
  font-family: "Jost", sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 42px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

p {
  color: #242424;
  font-family: "Jost", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0.9px;
}

.container {
  position: relative;
}

.mainNav {
  background: linear-gradient(90deg, #010F2A 0%, rgba(1, 15, 42, 0.00) 32.69%, rgba(1, 15, 42, 0.00) 65.87%, #010F2A 100%), #031842;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.25);
  padding: 1rem 0;
}

.mainNav .navbar-nav {
  display: flex;
  align-items: center;
  gap: 38px;
  margin-top: 5px;
}

.mainNav .nav-link {
  color: #FFF;
  text-align: center;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  transition: all 0.3s ease;
  padding: 0;
  text-decoration: none;
  position: relative;
  outline: none;
  box-shadow: none;
}

.mainNav .nav-link:focus:not(:focus-visible),
.mainNav .nav-link:active:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}

.mainNav .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scale(0);
  bottom: -18px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #D1A628;
  box-sizing: border-box;
  opacity: 0;
  transition: transform 320ms cubic-bezier(.2, .9, .3, 1), opacity 240ms ease;
  pointer-events: none;
}

.mainNav .nav-link:hover,
.mainNav .nav-link:focus,
.mainNav .nav-link:active {
  box-shadow: none;
  border: none;
}

/* .mainNav .nav-link:hover {
  transform: translateY(-5px)
} */

.mainNav .nav-link:hover::after,
.mainNav .nav-link:focus::after,
.mainNav .nav-link:active::after {
  transform: translateX(-50%) scale(1);
  opacity: 1;
}

.mainNav .nav-link.active::after {
  border-color: #FF6A37;
}

.mainNav .nav-link:focus {
  outline: 3px solid rgba(77, 166, 255, 0.18);
  outline-offset: 3px;
}

.section-padding {
  padding: 85px 0;
}


.hero-investing {
  position: relative;
  color: #fff;
  overflow: hidden;
}

.hero-investing .bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-investing .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 10, 40, 0.65);
  z-index: 1;
}

.hero-investing .container-fluid {
  position: relative;
  z-index: 2;
}

.hero-content {
  padding: 50px 0;
  padding-top: 122px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-investing h1,
.hero-investing h2 {
  color: #FFF;
  font-family: "Jost", sans-serif;
  font-size: 75px;
  font-style: normal;
  font-weight: 400;
  line-height: 100px;
  letter-spacing: 4.5px;
  text-transform: uppercase;
}

.hero-investing h2 {
  letter-spacing: 0;
}

.hero-line {
  display: inline-block;
  position: relative;
  width: 550px;
  height: 2px;
  background: #9b6fff;
  margin: 25px 0 35px 0;
}

.hero-line::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1000px;
  height: 2px;
  background: #9b6fff;
}

.hero-line::after {
  content: "";
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  border: 2px solid #9b6fff;
  border-radius: 50%;
  background: transparent;
}

.scroll-down {
  margin-top: 30px;
}

.scroll-down a {
  color: #fff;
  font-size: 24px;
  transition: all 0.3s ease;
}

.scroll-down a:hover {
  transform: translateY(5px);
}

.scroll-down img {
  animation: pulse 2s infinite ease-in-out;
  transition: transform 0.3s ease;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.15);
    opacity: 0.8;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.the-firm {
  background: linear-gradient(90deg, #152145 0%, rgba(55, 65, 94, 0.00) 43.27%, rgba(55, 65, 94, 0.00) 50.48%, #152145 100%), #37415E;
  color: #fff;
  position: relative;
}

.the-firm.section-padding {
  padding: 80px 0;
}

.the-firm * {
  color: #fff;
}

.the-firm .section-heading {
  margin-bottom: 30px;
}

.the-firm .section-text p {
  color: #FFF;
  font-family: "Jost", sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 44px;
  letter-spacing: 0.78px;
}

.section-heading {
  position: relative;
  margin-bottom: 15px;
}

.section-heading.text-white h2 {
  color: #fff;
}

.section-heading h2 {
  color: #000;
}

.icon-head {
  position: relative;
}

.heading-img {
  position: absolute;
  left: -1%;
  top: 5px;
  transform: translateX(-100%);
  height: auto;
  width: auto;
}

.title-icon {
  position: absolute;
  left: -884px;
  top: 5px;
}

.insights-right .title-icon {
  top: 85px;
  left: -707px;
}

.founder {
  position: relative;
  background-image: url('../images/about-founder-back.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.founder-photo {
  padding-top: 27px;
  padding-bottom: 20px;
}

.founder-bio {
  padding: 20px 10px;
}

.founder-bio strong {
  color: #000;
}

.founder-name {
  color: #022060;
  font-family: "Jost", sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  text-transform: uppercase;
  margin-top: 36px;
}

.founder-role {
  color: #000;
  font-family: "Jost", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

.founder-linkedin {
  color: #7D6502;
  font-size: 22px;
}

.founder-bio p {
  margin-bottom: 30px;
}

.dark-text * {
  color: #000;
}

.blue-text h2,
.blue-text h3 {
  color: #031842;
}

.divider-wrap {
  margin: 77px 0;
}

hr.section-divider {
  border-color: #000;
  color: #000;
  opacity: 1;
}

.strategy {
  background: #F5F5F5;
}

.strategy .section-copy {
  padding-top: 16px;
}


.investment-strategy .strategy-card-wrap {
  position: relative;
  overflow: visible;
  width: 100%;
  height: 100%;
  border-radius: 0;
  background-image: url('../images/shape.svg');
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0;
  height: 400px;
}

.investment-strategy .strategy-card-wrap.shape-large {
  background-image: url('../images/shape-large.svg');
  background-size: 100%;
}

.investment-strategy .strategy-card-wrap.shape-small {
  background-image: url('../images/shape-small.svg');
}

.investment-strategy .strategy-card-shape {
  padding: 100px 60px;
  height: 100%;
}

.strategy-card-wrap.strategy-1,
.strategy-card-wrap.strategy-2 {
  height: 300px;
}

.strategy-card-wrap.strategy-1 .strategy-card-shape,
.strategy-card-wrap.strategy-2 .strategy-card-shape {
  padding: 70px 60px;
}


.investment-strategy .strategy-icon {
  width: 60px;
  height: 60px;
  display: block;
  margin: 0 0 20px 0;
  object-fit: contain;
}

.investment-strategy .strategy-card-shape h4 {
  color: #000;
  font-family: "Jost", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0.9px;
  margin-bottom: 0;
}

.investment-strategy .strategy-card-shape p {
  color: #242424;
  font-family: "Jost", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0.9px;
  margin: 0;
}

.strategy-swiper {
  padding-bottom: 64px;
}

.strategy-pagination {
  bottom: 18px !important;
}

.swiper-pagination-bullet-active {
  background: #D2A905 !important;
}

.strategy-prev,
.strategy-next {
  top: auto !important;
  bottom: 16px !important;
  width: 34px;
  height: 34px;
}

.strategy-prev img,
.strategy-next img {
  object-fit: contain;
  object-position: center;
  width: 50px;
}

.swiper-pagination-bullet {
  width: 15px;
  height: 15px;
}

.strategy-prev::after,
.strategy-next::after {
  content: unset !important;
}


.insights {
  overflow: hidden;
  background-color: #031842;
}

.insights-right {
  overflow: hidden;
  padding-left: 180px;
  color: #fff;
  position: relative;
}

.insights-right * {
  color: #fff;
}

.insights-right .icon-head {
  position: unset;
}

.insights-right .heading-img {
  left: -150px;
  top: 18%;
}

.insights .content-wrap {
  position: relative;
  z-index: 2;
}

.insights .section-connector {
  position: absolute;
  top: 50px;
  left: 0;
  width: 180px;
  height: auto;
}

.insights .section-label {
  color: #b8bce3;
  letter-spacing: 0.08em;
}

.insights .section-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
}

.insights .section-sub {
  font-size: 18px;
  color: #d1d5e4;
}

.insights .btn-warning {
  background-color: #d6b93f;
  border: none;
  transition: all 0.3s ease;
  -webkit-clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 20px) 100%, 0 100%, 0 15px);
  clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 20px) 100%, 0 100%, 0 15px);
  padding: 10px;
  color: #022060;
  font-family: "Jost", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  border-radius: 0;
  min-width: 295px;
}

.insights .btn-warning:hover {
  background-color: #fff;
  color: #0b1535;
}

.contact {
  position: relative;
  background: #fff;
  overflow: hidden;
  position: relative;
  background-image: url('../images/contact-back.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contact .section-connector {
  position: absolute;
  top: 40px;
  left: 0;
  width: 180px;
  height: auto;
}

.contact .section-label {
  color: #7a80a0;
  letter-spacing: 0.08em;
}

.contact .section-desc {
  font-size: 18px;
  padding-top: 20px;
}

.insights-right {
  padding: 80px;
  padding-left: 188px;
}

.insights-right .content-wrap {
  padding-top: 20px;
}

.insights-right .content-wrap .section-sub {
  padding-bottom: 40px;
}

.contact .section-heading {
  padding-bottom: 38px;
}

.contact .section-desc {
  padding-top: 20px;
}

.contact-info-wrap {
  position: relative;
  overflow: visible;
  height: 100%;
  border-radius: 0;
  background-image: url(../images/shape-contact.svg);
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  padding: 95px 50px;
  display: inline-block;
  width: 100%;
  max-width: 490px;
}


.contact-card {
  gap: 30px;
  margin-bottom: 30px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  display: block;
}

.contact-card h4 {
  color: #031842;
  font-family: "Jost", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  margin-bottom: 0;
}

.contact-card p {
  color: #000;
  font-family: "Jost", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin: 0;
}

.contact-card p span {
  font-weight: 300;
}

.contact-card p a {
  color: #7D6502;
  font-weight: bold;
  padding-top: 15px;
  display: block;
}

.contact-card .name {
  font-weight: 600;
}

.contact-card .designation {
  padding: 0;
  margin: 0;
  font-weight: 300;
  margin-bottom: 15px;
}

.email-link {
  color: #7D6502;
  font-family: "Jost", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.9px;
}

.email-link:hover {
  text-decoration: underline;
}


.footer {
  padding: 50px 0;
  background-color: #37415E;
}

.footer-logo {
  max-width: 169px;
}

.footer-text {
  display: flex;
  align-items: center;
  gap: 5px;

}

.footer-text p {
  color: #FFF;
  font-family: "Jost", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 10px;
}

.footer-text span {
  color: #fff;
}

.footer-text a {
  color: #fff;
  color: #FFF;
  font-family: "Jost", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 10px;
}

.footer-link {
  color: #ffffff;
  text-decoration: none;
  margin: 0 4px;
  transition: color 0.3s ease;
  font-family: "Jost", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 10px;
}

.footer-link:hover {
  color: #fff;
  opacity: 0.8;
}

.footer-social {
  color: #ffffff;
  font-size: 16px;
  transition: color 0.3s ease;
}

.footer-social:hover {
  color: #fff;
}

.custom-toggler {
  border: none;
  background: transparent;
  padding: 6px;
  outline: none;
}

.custom-toggler:focus {
  box-shadow: none;
}

.toggler-icon {
  display: block;
  width: 38px;
  height: 4px;
  margin: 6px auto;
  background-color: #ffffff;
  transition: all 0.3s ease;
}

.contact-form-section {
  max-width: 800px;
  margin: 0 auto;
}

.contact-form-section p {
  margin: 0;
}

.contact-form-section .form-label {
  color: #022060;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
}

.contact-form-section .form-control {
  border: 1px solid #ACA39E;
  ;
  border-radius: 0;
  font-size: 14px;
  padding: 5px 12px;
  color: #707070;
  font-family: "Jost", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-section .form-control:focus {
  border-color: #0b1535;
  box-shadow: none;
  outline: none;
}

.contact-form-section .btn-submit {
  background: #d4af37;
  border: none;
  padding: 10px 24px;
  border-radius: 0;
  position: relative;
  color: #022060;
  font-family: "Jost", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  -webkit-clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 20px) 100%, 0 100%, 0 15px);
  clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 20px) 100%, 0 100%, 0 15px);
  margin-top: 15px;
  transition: all 0.3s ease-in-out;
}

.contact-form-section .btn-submit::after {
  content: "";
  position: absolute;
  top: 0;
  right: -15px;
  width: 0;
  height: 0;
  border-top: 21px solid transparent;
  border-bottom: 21px solid transparent;
  border-left: 15px solid #d4af37;
}

.contact-form-section .btn-submit:hover {
  background: #031842;
  color: #fff;
}

.contact-form-section .text-muted {
  color: #000 !important;
  font-family: Jost;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0.9px;
  padding-top: 35px;
  display: inline-block;
}

.contact-form-section .wpcf7 form p {
  margin-bottom: 0;
}

.page-id-103 .the-firm.section-padding {
  padding: 180px 0;
  padding-bottom: 100px;
}

.page-id-103 .the-firm .section-text p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
}

.heading-img.desk-icon {
  display: none;
}

@media (min-width: 1900px) {
  .heading-img.desk-icon {
    display: block;
  }

  .heading-img.mob-icon {
    display: none;
  }
}

@media (min-width: 1441px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1296px;
  }

  .container-fluid {
    padding-right: 8.5vw;
    padding-left: 8.5vw;
  }

  .mainNav {
    height: 100px;
    padding: 10px 0;
  }

  .navbar-brand img {
    height: 60px;
  }

  .scroll-down {
    margin-top: 30px;
    transform: translateY(10%);
  }

  .hero-content {
    padding-top: 185px;
  }

  .founder {
    padding: 120px 0;
  }

  .strategy {
    padding-bottom: 130px;
    padding-top: 90px;
  }

  .insights-right {
    padding: 80px;
    padding-left: 185px;
  }

  .insights-right {
    padding: 80px;
    padding-left: 188px;
    padding-right: 10vw;
  }

  .insights-right .content-wrap {
    padding-top: 20px;
  }

  .founder .col-lg-3 {
    width: 20%;
  }

  .founder .col-lg-9 {
    width: 80%;
  }

  .strategy-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    --col-gap: 40px;
    column-gap: var(--col-gap);
    row-gap: 38px;
  }

  .strategy-row .col-lg-8 {
    flex: 0 0 calc((100% - var(--col-gap)) * 0.68);
    max-width: calc((100% - var(--col-gap)) * 0.68);
    padding: 0 !important;
  }

  .strategy-row .col-lg-4 {
    flex: 0 0 calc((100% - var(--col-gap)) * 0.32);
    max-width: calc((100% - var(--col-gap)) * 0.32);
    padding: 0 !important;
  }

  .strategy-row .col-md-4 {
    flex: 0 0 calc((100% - (2 * var(--col-gap))) / 3);
    max-width: calc((100% - (2 * var(--col-gap))) / 3);
    padding: 0 !important;
  }

}

@media (max-width: 1440px) {
  .hero-content {
    padding: 50px 52px;
  }

  .hero-investing h1,
  .hero-investing h2 {
    font-size: 56px;
    line-height: 68px;
    letter-spacing: 2.8px;
  }

  .hero-investing h2 {
    letter-spacing: 0;
  }

  .hero-line {
    margin: 20px 0 25px 0;
    width: 420px;
  }

  .scroll-down {
    margin-top: 15px;
    transform: translateY(80%);
  }

  .strategy-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    --col-gap: 40px;
    column-gap: var(--col-gap);
    row-gap: 38px;
  }

  .strategy-row .col-lg-8 {
    flex: 0 0 calc((100% - var(--col-gap)) * 0.68);
    max-width: calc((100% - var(--col-gap)) * 0.68);
    padding: 0 !important;
  }

  .strategy-row .col-lg-4 {
    flex: 0 0 calc((100% - var(--col-gap)) * 0.32);
    max-width: calc((100% - var(--col-gap)) * 0.32);
    padding: 0 !important;
  }

  .strategy-row .col-md-4 {
    flex: 0 0 calc((100% - (2 * var(--col-gap))) / 3);
    max-width: calc((100% - (2 * var(--col-gap))) / 3);
    padding: 0 !important;
  }

  .investment-strategy .strategy-card-shape {
    padding: 90px 30px;
  }

  .strategy-card-wrap.strategy-1 .strategy-card-shape,
  .strategy-card-wrap.strategy-2 .strategy-card-shape {
    padding: 60px 30px;
  }

  .heading-img {
    left: 0;
  }

  .insights-right .heading-img.desk-icon {
    display: block;
  }

  .insights-right .heading-img.mob-icon {
    display: none;
  }
}

@media (max-width: 1366px) {
  .strategy-row {
    row-gap: 0;
  }

  .insights-right .heading-img.desk-icon {
    display: none;
  }

  .insights-right .heading-img.mob-icon {
    display: block;
    left: 0;
  }

  .insights-right {
    padding-left: 80px;
  }
}

@media (max-width: 1366px) {
  .heading-img {
    left: -15px;
  }

  .hero-investing .min-vh-100 {
    min-height: 800px !important;
    height: 100vh;
  }
}


@media (min-width: 992px) and (max-width: 1024px) {
  .insights-right .title-icon {
    left: -810px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {

  .strategy-row .col-lg-8,
  .strategy-row .col-lg-4 {
    flex: 100%;
    width: 100%;
    max-width: 100%;
  }

  .strategy-row {
    row-gap: 20px;
  }

  .investment-strategy .strategy-card-wrap {
    background-image: url(../images/shape-large.svg) !important;
    background-size: 100%;
    height: auto !important;
  }

  .investment-strategy .strategy-card-shape {
    padding: 90px 30px !important;
  }

  .hero-investing {
    padding: 50px 30px;
  }

  .min-vh-100 {
    min-height: auto !important;
  }

  .hero-content {
    padding-top: 180px;
  }

  .insights-right .heading-img.mob-icon {
    display: block;
  }

  .insights-right .heading-img.desk-icon {
    display: none;
  }

  .insights-right .heading-img {
    left: 0;
  }

  .insights-right {
    padding-left: 80px;
  }
}

@media (max-width: 991px) {

  .hero-investing h1,
  .hero-investing h2 {
    color: #FFF;
    font-family: "Jost", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    text-transform: uppercase;
  }

  h1,
  .hero-investing h1,
  .hero-investing h2 {
    color: #FFF;
    text-shadow: 0 4px 25px rgba(0, 0, 0, 0.25);
    font-family: "Jost", sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 48px;
    text-transform: uppercase;
    word-break: break-all;
    letter-spacing: 0;
  }

  .scroll-down {
    display: none;
  }

  .mainNav {
    z-index: 1000;
    padding-left: 10px;
    padding-right: 10px;
  }

  .mainNav .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #0b1535;
    padding: 1rem 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, .25);
    opacity: 0;
    transform: translateY(-8px);
    visibility: hidden;
    pointer-events: none;
    transition: opacity .22s ease, transform .22s cubic-bezier(.2, .9, .3, 1), visibility 0s linear .22s;
  }

  .mainNav .navbar-collapse.show {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
    transition-duration: .24s;
  }

  .mainNav .navbar-nav {
    flex-direction: column;
    gap: 0;
    align-items: center;
  }

  .mainNav .nav-link {
    padding-top: 11px;
    padding-bottom: 11px;
  }


  .min-vh-100 {
    min-height: auto !important;
  }

  .hero-line {
    width: 250px;
  }

  .section-padding {
    padding: 50px 0px;
  }

  .section-text {
    color: #FFF;
    font-family: "Jost", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: 1px;
  }

  .section-heading {
    padding-left: 25px;
    margin-bottom: 20px;
  }

  .heading-img {
    left: 0;
  }

  .insights-right .heading-img {
    left: 0;
    top: 13%;
    height: auto !important;
  }

  .founder-name {
    color: #022060;
    font-family: "Jost", sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    text-transform: uppercase;
  }

  .founder-bio {
    padding: 0;
  }

  h3 {
    color: #031842;
    font-family: "Jost", sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 42px;
    text-transform: uppercase;
  }

  .founder-role {
    color: #000;
    font-family: "Jost", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
  }

  p {
    color: #242424;
    font-family: "Jost", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0.9px;
  }

  .insights-right {
    padding: 50px 25px;
    padding-left: 30px;
    width: 100%;
  }


  .contact-info-wrap {
    padding: 50px;
    width: 100%;
    background-size: 100%;
    height: 445px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image: url(../images/contact-shape-bg.png);
    max-width: 100%;
    padding: 35px !important;
  }

  .contact-card:last-of-type {
    margin-bottom: 0;
  }

  .contact-card {
    gap: 0;
  }

  .investment-strategy .strategy-card-shape {
    padding: 60px 30px !important;
  }

  .footer {
    padding: 40px 0px;
  }

  .footer-text {
    flex-direction: column;
    margin-bottom: 25px;
    align-items: flex-start;
    gap: 0;
  }

  .footer-text p {
    margin-bottom: 15px !important;
  }

  .footer-text span {
    display: none;
  }

  .footer-link {
    margin: 0;
  }

  .footer-social {
    margin: 0 !important;
  }

  .footer .d-flex {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .page-id-103 .the-firm.section-padding {
    padding: 50px 0 !important;
    padding-top: 100px !important;
  }

  .the-firm .section-text p {
    color: #FFF;
    font-family: Jost;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 1px;
  }

  .divider-wrap {
    margin: 50px 0;
  }

  img.strategy-visual {
    width: 100%;
    margin-top: 25px;
  }

  .hero-content {
    padding-left: 0;
  }

  .title-icon {
    position: absolute;
    left: -845px;
  }

  .insights-right .title-icon {
    top: 56px;
    left: -815px;
    height: auto !important;
  }

  .insights-right .section-heading {
    padding-left: 44px;
  }
}

@media (max-width: 767px) {
  .section-heading {
    padding-left: 40px;
  }

  .contact-card p {
    margin-left: -20%;
  }

  .investment-strategy .strategy-card-wrap {
    background-size: 100%;
    display: flex;
    align-items: flex-start;
    height: 100%;
    min-height: 400px;
    background-image: url(../images/shape.png);
  }

  .investment-strategy .strategy-card-shape {
    padding-top: 70px;
  }

  .contact-form-section .btn-submit {
    width: 100%;
  }

  .contact-form-section p {
    width: 100%;
  }

  .contact-form-section .text-muted {
    padding-top: 15px;
  }

  .footer-logo {
    margin-bottom: 30px;
  }

  .the-firm.section-padding {
    padding: 80px 0;
  }

  .hero-investing {
    padding: 0;
  }

  section {
    padding: 50px 0px !important;
  }

  .container,
  .container-fluid {
    padding-left: 35px;
    padding-right: 35px;
  }

  header .container-fluid {
    padding-left: 20px;
    padding-right: 20px;
  }

  section#insights {
    padding: 0 !important;
  }

  .contact .section-heading {
    padding-bottom: 0;
  }

  .investment-strategy .mb-5 {
    margin-bottom: 1rem !important;
  }

  .hero-content {
    padding: 0;
    padding-top: 75px;
  }

  .insights img {
    height: 200px !important;
  }

  .contact-form-section .form-label {
    margin-bottom: 0;
  }

  section#contact {
    padding-bottom: 30px;
  }

  .insights-right .content-wrap .section-sub {
    padding-bottom: 46px;
    margin: 0 !important;
  }

  .contact-card h4 {
    margin-bottom: 10px !important;
    margin-top: 13px;
    padding-left: 10px;
  }

  .navbar-brand img {
    max-width: 120px;
  }

  .title-icon {
    left: -820px;
  }

  .insights .btn-warning {
    width: 100%;
  }

  .hero-investing .min-vh-100 {
    min-height: auto !important;
    height: auto;
  }
}

@media (max-width: 390px) {
  .insights .btn-warning {
    min-width: auto;
  }

  section {
    padding: 50px 0px !important;
  }

  .contact-card p {
    margin-left: -40px;
  }

  .contact-card p {
    font-size: 16px;
    word-break: break-all;
  }


  .contact-info-wrap {
    padding: 35px 25px !important;
  }

  .contact-card {
    gap: 20px;
  }

  .insights-right .heading-img {
    left: 0;
    top: 11%;
    height: auto !important;
  }

  .heading-img {
    left: -10px;
  }

  .container,
  .container-fluid {
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
  }

  header .container-fluid {
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
  }

  .insights-right .section-heading {
    padding-left: 35px;
  }
}