
/* Index */
.home {
  background-color: #fff;
  display: flex;
  flex-direction: column;
}

html,
body {
  overflow-x: hidden;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

body {
  margin: 0 !important;

  align-items: center;
}

a {
  text-decoration: none;
}


.hero {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-top: 4rem;
}

.container {
  display: flex;
  width: 100%;
  max-width: 1440px;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 991px) {
  .container {
    max-width: 100%;
  }

  .hero {
    margin-top: 0rem;
  }
}

.navbar {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.05);
  align-self: stretch;
  display: flex;
  width: 100%;
  align-items: center;
  gap: 20px;
  overflow: hidden;
  font-family: Helvetica Neue;
  font-weight: 400;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 21px 80px;
}

@media (max-width: 991px) {
  .navbar {
    max-width: 100%;
    padding: 0 20px;
  }

  h2 {
    margin: 0px;
    font-size: 40px;
    font-weight: 400 !important;
  }

  h3 {
    margin: 0px;
  }
}

.logo {
  aspect-ratio: 3.3;
  object-fit: contain;
  object-position: center;
  width: 145px;
  align-self: stretch;
  max-width: 100%;
}

.nav-links {
  align-self: stretch;
  display: flex;
  align-items: center;
  gap: 40px;
  font-size: 17px;
  color: #061f34;
  letter-spacing: -0.17px;
  line-height: 1.3;
  justify-content: start;
  margin: auto 0;
}

.nav-item.active {
  color: #2e6bcc;
  /* Change to any color you prefer */
  /* font-weight: bold;  */
}

.nav-item {
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  color: #061f34;
  align-self: stretch;
  margin: auto 0;
}

.cta-button {
  align-items: center;
  border-radius: 24px;
  background-color: #041523;
  align-self: stretch;
  display: flex;
  gap: 4px;
  font-size: 16px;
  color: #fff;
  letter-spacing: -0.16px;
  line-height: 1.2;
  justify-content: start;
  margin: auto 0;
  padding: 8px 16px;
}

.cta-text {
  align-self: stretch;
  margin: auto 0;
}

.cta-icon {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 16px;
  align-self: stretch;
  margin: auto 0;
}

.hero-title {
  color: #2e6bcc;
  text-align: center;
  letter-spacing: -0.56px;
  margin-top: 64px;
  width: 897px;
  font: 700 56px/67px Helvetica Neue, -apple-system, Roboto, Helvetica,
    sans-serif;
}

@media (max-width: 991px) {
  .hero-title {
    max-width: 100%;
    margin-top: 40px;
    font-size: 40px;
    line-height: 54px;
  }
}

.hero-subtitle {
  width: 60%;
  color: #082a46;
  text-align: center;
  letter-spacing: -0.21px;
  margin-top: 24px;
  font: 300 21px/28px Helvetica Neue, -apple-system, Roboto, Helvetica,
    sans-serif;
}

@media (max-width: 991px) {
  .hero-subtitle {
    max-width: 100%;
    width: 100%;
  }
}

.hero-image {
  border-radius: 7px;
  background-color: #fff;
  display: flex;
  margin-top: 40px;
  width: 100%;
  max-width: 1197px;
  flex-direction: column;
  overflow: hidden;
}

@media (max-width: 991px) {
  .hero-image {
    max-width: 100%;
  }
}

.hero-img {
  object-fit: contain;
  object-position: center;
  width: 100%;
}

@media (max-width: 991px) {
  .hero-img {
    max-width: 100%;
  }
}

.features-section {
  margin-top: 152px;
  width: 100%;
  max-width: 1281px;
}

@media (max-width: 991px) {
  .features-section {
    max-width: 100%;
    margin-top: 40px;
  }
}

.features-grid {
  gap: 20px;
  display: flex;
}

@media (max-width: 991px) {
  .features-grid {
    display: flex;
    flex-wrap: nowrap;
    /* Prevent wrapping for horizontal scrolling */
    gap: 20px;
    /* Space between items */
    overflow-x: auto;
    /* Enable horizontal scrolling */
    -webkit-overflow-scrolling: touch;
    /* Smooth scrolling for mobile devices */
    scrollbar-width: none;
  }
}

.feature-column {
  display: flex;
  flex-direction: column;
  line-height: normal;
  width: 25%;
  margin-left: 0;
}

@media (max-width: 991px) {
  .feature-column {
    width: 100%;
  }
}

.feature-card {
  border-radius: 8px;
  background-color: #f3e4c3;
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  overflow: hidden;
  color: #001532;
  letter-spacing: -0.28px;
  width: 100%;
  padding: 0px 0 1px;
  font: 700 28px/1.2 Helvetica Neue, -apple-system, Roboto, Helvetica,
    sans-serif;
}

@media (max-width: 991px) {
  .feature-card {
    margin-top: 31px;
    min-width: 15rem
  }

}

.feature-image {
  object-fit: contain;
  object-position: center;
  width: 100%;
  margin-top: 159px;
}

@media (max-width: 991px) {
  .feature-image {
    margin-top: 40px;
  }
}

.feature-footer {
  background-color: #a7b0fd;
  display: flex;
  height: 150px;
}

.values-title {
  color: #020a11;
  text-align: center;
  letter-spacing: -0.48px;
  margin-top: 5rem;
  margin-bottom: 0.5rem;
  width: 624px;
  font: 700 48px/58px Helvetica Neue, -apple-system, Roboto, Helvetica,
    sans-serif;
}

@media (max-width: 991px) {
  .values-title {
    font-weight: 500;
    text-align: left;
    max-width: 100%;
    margin-top: 40px;
    font-size: 40px;
    line-height: 54px;

  }
}

.values-subtitle {
  color: #082a46;
  text-align: center;
  letter-spacing: -0.21px;
  margin-top: 0px;
  width: 624px;
  font: 300 21px/28px Helvetica Neue, -apple-system, Roboto, Helvetica,
    sans-serif;
}

@media (max-width: 991px) {
  .values-subtitle {
    text-align: left;
    max-width: 100%;
  }
}

.values-section {
  align-items: center;
  justify-content: center;
  flex-direction: column;
  display: flex;
  margin-top: 64px;
  width: 100%;
  max-width: 1062px;
}

@media (max-width: 991px) {
  .values-section {
    max-width: 100%;
    margin-top: 40px;
  }
}

.values-grid {
  gap: 20px;
  display: flex;
}

@media (max-width: 991px) {
  .values-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
}

.values-image-column {
  display: flex;
  flex-direction: column;
  line-height: normal;
  width: 50%;
  margin-left: 0;
}

@media (max-width: 991px) {
  .values-image-column {
    width: 100%;
  }
}

.values-image-wrapper {
  justify-content: flex-start;
  border-radius: 8px;

  display: flex;
  flex-grow: 1;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
}

@media (max-width: 991px) {
  .values-image-wrapper {
    max-width: 100%;
    margin-top: 32px;
  }
}

.values-image {
  aspect-ratio: 0.78;
  object-fit: contain;
  object-position: center;
  width: 100%;
}

@media (max-width: 991px) {
  .values-image {
    max-width: 100%;
  }
}

.values-list-column {
  display: flex;
  flex-direction: column;
  line-height: normal;
  width: 50%;
}

@media (max-width: 991px) {
  .values-list-column {
    width: 100%;
  }
}

.values-list {
  display: flex;
  margin-top: 10px;
  flex-direction: column;
  font-family: Helvetica Neue;
  justify-content: start;
}

@media (max-width: 991px) {
  .values-list {
    margin: 0px;
    padding: 0px;
    max-width: 100%;
    margin-top: 40px;
  }
}

.value-item {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: start;
}

@media (max-width: 991px) {
  .value-item {
    max-width: 100%;
  }
}

.value-title {
  color: #96a8b7;
  font-size: 24px;
  font-family: Helvetica Neue;
  font-weight: 500;
  line-height: 28.8px;
  word-wrap: break-word;
}

@media (max-width: 991px) {
  .value-title {
    max-width: 100%;
  }
}

.value-description {
  display: flex;
  margin-top: 0;
  width: 100%;
  flex-direction: column;
  font-size: 21px;
  color: #0b3558;
  font-weight: 300;
  letter-spacing: -0.21px;
  line-height: 28px;
  justify-content: start;
}

@media (max-width: 991px) {
  .value-description {
    font-size: 17px;
    max-width: 100%;
  }
}

.value-separator {
  min-height: 0;
  width: 100%;
  border: 0.5px solid #3a86ff;
}

@media (max-width: 991px) {
  .value-separator {
    max-width: 100%;
  }
}

.value-separator-main {
  min-height: 0;
  width: 100%;
  border: 1px solid #3a86ff;
}

@media (max-width: 991px) {
  .value-separator-main {
    max-width: 100%;
  }
}

.partners-title {
  color: #020a11;
  text-align: center;
  letter-spacing: -0.4px;
  margin-top: 152px;
  font: 500 40px/1.2 Helvetica Neue, -apple-system, Roboto, Helvetica,
    sans-serif;
}

@media (max-width: 991px) {
  .partners-title {
    max-width: 100%;
    margin-top: 8rem;
  }
}

.partners-grid {
  display: flex;
  margin-top: 88px;
  width: 100%;
  max-width: 1280px;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .partners-grid {
    max-width: 100%;
    margin-top: 40px;
  }
}

.partner-logo {
  aspect-ratio: 1.97;
  object-fit: contain;
  object-position: center;
  width: 118px;
  max-width: 100%;
}

.solutions-section {
  margin-top: 152px;
  width: 100%;
  max-width: 1062px;
}

@media (max-width: 991px) {
  .solutions-section {
    max-width: 100%;
    margin-top: 40px;
  }
}

.solutions-grid {
  gap: 20px;
  display: flex;
}

@media (max-width: 991px) {
  .solutions-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
}

.solutions-text-column {
  display: flex;
  flex-direction: column;
  line-height: normal;
  width: 50%;
  margin-left: 0;
}

@media (max-width: 991px) {
  .solutions-text-column {
    width: 100%;
  }
}

.solutions-content {
  display: flex;
  margin-top: 4px;
  flex-grow: 1;
  flex-direction: column;
  color: #082a46;
  letter-spacing: -0.21px;
  font: 300 21px/28px Helvetica Neue, -apple-system, Roboto, Helvetica,
    sans-serif;
}

@media (max-width: 991px) {
  .solutions-content {
    max-width: 100%;
    margin-top: 36px;
  }
}

.solutions-title {
  color: #020a11;
  font-size: 48px;
  font-weight: 700;
  line-height: 58px;
  letter-spacing: -0.48px;
  margin-bottom: 0rem;
}

@media (max-width: 991px) {
  .solutions-title {
    max-width: 100%;
    font-size: 40px;
    line-height: 54px;
  }
}

.solutions-description {
  margin-top: 20px;
}

@media (max-width: 991px) {
  .solutions-description {
    max-width: 100%;
  }
}

.solutions-image-column {
  display: flex;
  flex-direction: column;
  line-height: normal;
  width: 50%;
  margin-left: 20px;
}

@media (max-width: 991px) {
  .solutions-image-column {
    width: 100%;
    margin-left: 0px;
    margin-top: 0;
  }
}

.solutions-image-wrapper {
  justify-content: center;
  border-radius: 8px;

  display: flex;
  flex-grow: 1;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
}

@media (max-width: 991px) {
  .solutions-image-wrapper {
    max-width: 100%;
    margin-top: 32px;
  }
}

.solutions-image {
  aspect-ratio: 0.63;
  object-fit: contain;
  object-position: center;
  width: 100%;
}

@media (max-width: 991px) {
  .solutions-image {
    max-width: 100%;
  }
}

.cta-section {
  display: flex;
  margin-top: 83px;
  width: 100%;
  max-width: 1440px;
  flex-direction: column;
}

@media (max-width: 991px) {
  .cta-section {
    max-width: 100%;
    margin-top: 40px;
  }
}

.cta-container {
  align-self: center;
  width: 100%;
  max-width: 1062px;
}

@media (max-width: 991px) {
  .cta-container {
    max-width: 100%;
  }
}

.cta-grid {
  gap: 20px;
  display: flex;
}

@media (max-width: 991px) {
  .cta-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
}

.cta-text-column {
  display: flex;
  flex-direction: column;
  line-height: normal;
  width: 50%;
  margin-left: 0;
}

@media (max-width: 991px) {
  .cta-text-column {
    width: 100%;
  }
}

.cta-content {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: start;
  font-family: Helvetica Neue;
}

@media (max-width: 991px) {
  .cta-content {
    max-width: 100%;
    margin-top: 32px;
  }
}

.cta-heading {
  color: #020a11;
  letter-spacing: -0.56px;
  font: 700 56px/67px, Helvetica,
    sans-serif;
}

@media (max-width: 991px) {
  .cta-heading {
    max-width: 100%;
    font-size: 40px;
    line-height: 54px;
  }
}

.cta-description {
  color: #082a46;
  font-size: 21px;
  font-weight: 300;
  line-height: 28px;
  letter-spacing: -0.21px;
  align-self: stretch;
  margin-top: 20px;
}

@media (max-width: 991px) {
  .cta-description {
    max-width: 100%;
  }
}

.cta-button-main {
  align-self: stretch;
  border-radius: 99px;
  background-color: #041523;
  margin-top: 40px;
  gap: 10px;
  overflow: hidden;
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14px;
  line-height: 1.3;
  padding: 12px 24px;
}

@media (max-width: 991px) {
  .cta-button-main {
    padding: 0 20px;
  }
}

.cta-image-column {
  display: flex;
  flex-direction: column;
  line-height: normal;
  width: 50%;
  margin-left: 20px;
}

@media (max-width: 991px) {
  .cta-image-column {
    width: 100%;
    margin-left: 0px;
  }
}

.cta-image-wrapper {
  border-radius: 8px;
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
}

@media (max-width: 991px) {
  .cta-image-wrapper {
    max-width: 100%;
    margin-top: 32px;
  }
}

.cta-image {
  aspect-ratio: 1.11;
  object-fit: contain;
  object-position: center;
  width: 100%;
}

@media (max-width: 991px) {
  .cta-image {
    max-width: 100%;
  }
}

.footer {
  background-color: #f5f8ff;
  display: flex;
  margin-top: 152px;
  width: 100%;
  flex-direction: column;
  overflow: hidden;
  padding: 80px 80px 32px;
}

@media (max-width: 991px) {
  .footer {
    max-width: 100%;
    margin-top: 40px;
    padding: 0 20px;
  }
}

.footer-top {
  display: flex;
  align-items: start;
  gap: 20px;
  font-family: Helvetica Neue;
  justify-content: space-between;
  flex-direction: row;
}

@media (max-width: 991px) {
  .footer-top {
    max-width: 100%;
    margin-right: 10px;
    flex-direction: column;
  }
}

.footer-info {
  align-self: stretch;
  display: flex;
  flex: 1;
  flex-direction: column;
}

@media (max-width: 991px) {
  .footer-info {
    max-width: 100%;
  }
}

.footer-heading {
  margin: 0px;
  color: #225099;
  font-size: 40px;
  font-weight: 500;
  line-height: 48px;
  letter-spacing: -0.4px;
}

@media (max-width: 991px) {
  .footer-heading {
    margin-top: 2rem;
    max-width: 100%;
    text-align: center;
  }
}

.contact-title {
  margin-top: 2rem;
  margin-bottom: 5rem;
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media (max-width: 991px) {
  .contact-title {
    width: 100%;
    margin-top: 0;
  }
}

.footer-subheading {
  text-align: left;
  color: #173566;
  font-size: 21px;
  font-weight: 300;
  line-height: 28px;
  letter-spacing: -0.21px;
  margin-top: 1rem;
}

@media (max-width: 991px) {
  .footer-subheading {
    text-align: center;
    width: 100%;
  }
}

.footer-nav {
  display: flex;
  flex: 1;
  flex-direction: column;
  font-size: 17px;
  letter-spacing: -0.17px;
  line-height: 1.3;
}

.footer-nav-title {
  color: #020a11;
  font-weight: 700;
}

.footer-nav-list {
  padding-left: 0px;
  display: flex;
  margin-top: 0px;
  flex-direction: column;
  color: #082a46;
  font-weight: 400;
  white-space: nowrap;
  justify-content: start;
}

.footer-list-item {
  margin: 0px;
  color: #082a46;
  padding-bottom: 10px;
}

@media (max-width: 991px) {
  .footer-nav-list {
    white-space: initial;
    align-items: center;
    text-align: center;

  }

  .footer-nav-title {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.footer-nav-item {
  margin-top: 12px;
  color: #082a46;
}

.footer-resources {
  align-items: flex-end;
  justify-content: flex-end;
  display: flex;
  flex: 1;
  flex-direction: column;
  font-size: 17px;
  letter-spacing: -0.17px;
  line-height: 1.3;
}

.footer-resources-title {
  color: #020a11;
  font-weight: 700;
}

.footer-resources-list {
  align-self: start;
  display: flex;
  margin-top: 16px;
  flex-direction: column;
  color: #082a46;
  font-weight: 400;
  justify-content: start;
}

.footer-resources-item {
  margin-top: 12px;
}

.footer-bottom {
  display: flex;
  width: 100%;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 32px 40px 0 0;
}

@media (max-width: 991px) {
  .footer-bottom {
    max-width: 100%;
    margin-right: 10px;
  }
}

.footer-cta {
  border-radius: 4px;
  border: 1px solid #173566;
  overflow: hidden;
  color: #173566;
  letter-spacing: -0.17px;
  padding: 47px 16px 16px;
  font: 400 17px/1.3 Helvetica Neue, -apple-system, Roboto, Helvetica,
    sans-serif;
}

@media (max-width: 991px) {
  .footer-cta {
    padding-right: 20px;
  }
}

.social-icons {
  align-self: end;
  display: flex;
  margin-top: 61px;
  align-items: center;
  gap: 16px;
  justify-content: end;
}

@media (max-width: 991px) {
  .social-icons {
    margin-top: 40px;
  }
}

.social-icon {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 24px;
  align-self: stretch;
  margin: auto 0;
}

.footer-divider {
  background-color: #0b1a32;
  margin-top: 32px;
  width: 1278px;
  max-width: 100%;
  height: 0;
  border: 0.5px solid #0b1a32;
}

.footer-copyright {
  color: #082a46;
  letter-spacing: -0.14px;
  align-self: center;
  margin-top: 24px;
  font: 400 14px/1.2 Helvetica Neue, -apple-system, Roboto, Helvetica,
    sans-serif;
}

/* Company */
.company-container {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  aspect-ratio: 3.3;
  object-fit: contain;
  object-position: center;
  width: 145px;
  align-self: stretch;
  max-width: 100%;
}

.nav-links {
  align-self: stretch;
  display: flex;
  align-items: center;
  gap: 40px;
  font-size: 17px;
  color: #061f34;
  letter-spacing: -0.17px;
  line-height: 1.3;
}

.nav-link {
  align-self: stretch;
  margin: auto 0;
}

.nav-link-active {
  color: #2e6bcc;
}

.cta-button {
  align-items: center;
  border-radius: 24px;
  background-color: #041523;
  align-self: stretch;
  display: flex;
  gap: 4px;
  font-size: 16px;
  color: #fff;
  letter-spacing: -0.16px;
  line-height: 1.2;
  padding: 8px 16px;
}

.cta-icon {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 16px;
  align-self: stretch;
  margin: auto 0;
}

.hero-section {
  margin-top: 88px;
  width: 100%;
  max-width: 1062px;
}

@media (max-width: 991px) {
  .hero-section {
    max-width: 100%;
    margin-top: 40px;
  }
}

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

@media (max-width: 991px) {
  .hero-content {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
}

.hero-text {
  display: flex;
  flex-direction: column;
  line-height: normal;
  width: 95%;
  margin-left: 0;
}

@media (max-width: 991px) {
  .hero-text {
    width: 100%;
  }
}

.hero-text-content {
  display: flex;
  margin-top: 0px;
  flex-grow: 1;
  flex-direction: column;
  font-family: Helvetica Neue;
}

@media (max-width: 991px) {
  .hero-text-content {
    max-width: 100%;
    margin-top: 0px;
  }
}

.hero-title {
  color: #2e6bcc;
  font-size: 48px;
  font-weight: 700;
  line-height: 58px;
  letter-spacing: -0.48px;
}

@media (max-width: 991px) {
  .hero-title {
    max-width: 100%;
    font-size: 40px;
    line-height: 54px;
  }
}

.hero-description {
  color: #082a46;
  font-size: 21px;
  font-weight: 300;
  line-height: 28px;
  letter-spacing: -0.21px;
  margin-top: 24px;
}

@media (max-width: 991px) {
  .hero-description {
    max-width: 100%;
  }
}

.hero-image {
  display: flex;
  flex-direction: column;
  line-height: normal;
  margin-left: 0px;
}

@media (max-width: 991px) {
  .hero-image {
    width: 100%;
  }
}

.hero-image-wrapper {
  border-radius: 4px;
  display: flex;
  flex-grow: 1;

  overflow: hidden;
}

@media (max-width: 991px) {
  .hero-image-wrapper {
    max-width: 100%;
    margin-top: 0px;
  }
}

.hero-img {
  object-fit: scale-down;
  object-position: center;
  width: 100%;
}

@media (max-width: 991px) {
  .hero-img {
    max-width: 100%;
  }
}

.inspiration-section {
  margin-top: 152px;
  width: 100%;
  max-width: 1062px;
}

@media (max-width: 991px) {
  .inspiration-section {
    max-width: 100%;
    margin-top: 40px;
  }
}

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

@media (max-width: 991px) {
  .inspiration-content {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
}

.inspiration-title {
  display: flex;
  flex-direction: column;
  line-height: normal;
  width: 50%;
  margin-left: 0;
}

@media (max-width: 991px) {
  .inspiration-title {
    width: 100%;
  }
}

.inspiration-heading {
  margin-top: 0px;
  color: #020a11;
  letter-spacing: -0.48px;
  font: 700 48px/58px Helvetica Neue, -apple-system, Roboto, Helvetica,
    sans-serif;
}

@media (max-width: 991px) {
  .inspiration-heading {
    margin-top: 0px;
    font-size: 40px;
    line-height: 54px;
  }
}

.inspiration-description {
  display: flex;
  flex-direction: column;
  line-height: normal;
  width: 50%;
  margin-left: 20px;
}

@media (max-width: 991px) {
  .inspiration-description {
    width: 100%;
    margin-left: 0px;
  }
}

.inspiration-text {
  margin-top: 0px;
  color: #082a46;
  letter-spacing: -0.21px;
  font: 300 21px/30px Helvetica Neue, -apple-system, Roboto, Helvetica,
    sans-serif;
}

@media (max-width: 991px) {
  .inspiration-text {
    max-width: 100%;
    margin-top: 40px;
  }
}

.vision-section {
  margin-top: 152px;
  width: 100%;
  max-width: 1062px;
}

@media (max-width: 991px) {
  .vision-section {
    max-width: 100%;
    margin-top: 40px;
  }
}

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

@media (max-width: 991px) {
  .vision-content {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
}

.vision-image {
  display: flex;
  flex-direction: column;
  line-height: normal;
  width: 50%;
  margin-left: 0;
}

@media (max-width: 991px) {
  .vision-image {
    width: 100%;
  }
}

.vision-img {
  aspect-ratio: 0.93;
  object-fit: contain;
  object-position: center;
  width: 100%;
  flex-grow: 1;
}

@media (max-width: 991px) {
  .vision-img {
    max-width: 100%;
    margin-top: 0px;
  }
}

.vision-text {
  display: flex;
  flex-direction: column;
  line-height: normal;
  width: 50%;
  margin-left: 20px;
}

@media (max-width: 991px) {
  .vision-text {
    margin-left: 0px;
    width: 100%;
  }
}

.vision-card {
  border-radius: 8px;
  background-color: #faf0da;
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  overflow: hidden;
  font-family: Helvetica Neue;
  padding: 39px 40px;
}

@media (max-width: 991px) {
  .vision-card {
    max-width: 100%;
    margin-top: 32px;
    padding: 2rem
  }
}

.vision-label {
  color: #001532;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.17px;
  align-self: start;
}

.vision-statement {
  color: #082a46;
  font-size: 35px;
  font-weight: 400;
  line-height: 48px;
  letter-spacing: -0.4px;
  margin-top: 24px;
}

@media (max-width: 991px) {
  .vision-statement {
    max-width: 100%;
    margin-bottom: 0px;
    font-weight: 400;
    font-size: 28px;
    line-height: 40px;
  }
}

.mission-section {
  margin-top: 152px;
  width: 100%;
  max-width: 1062px;
}

@media (max-width: 991px) {
  .mission-section {
    max-width: 100%;
    margin-top: 40px;
  }
}

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

@media (max-width: 991px) {
  .mission-content {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
}

.mission-text {
  display: flex;
  flex-direction: column;
  line-height: normal;
  width: 61%;
  margin-left: 0;
}

@media (max-width: 991px) {
  .mission-text {
    width: 100%;
  }
}

.mission-card {
  box-sizing: border-box;
  border-radius: 8px;
  background-color: #d9f8f1;
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  overflow: hidden;
  font-family: Helvetica Neue;
  width: 100%;
  padding: 40px;
}

@media (max-width: 991px) {
  .mission-card {
    max-width: 100%;
    margin-top: 0px;
    padding: 2rem;
  }
}

.mission-label {
  color: #001532;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.17px;
  align-self: start;
}

.mission-statement {
  color: #082a46;
  font-size: 40px;
  font-weight: 500;
  line-height: 48px;
  letter-spacing: -0.4px;
  margin-top: 24px;
}

@media (max-width: 991px) {
  .mission-statement {
    max-width: 100%;
  }
}

.mission-image {
  display: flex;
  flex-direction: column;
  line-height: normal;
  width: 39%;
  margin-left: 20px;
}

@media (max-width: 991px) {
  .mission-image {
    width: 100%;
  }
}

.mission-image-wrapper {
  border-radius: 8px;
  background-color: white;
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
}

@media (max-width: 991px) {
  .mission-image-wrapper {
    margin-top: 32px;
  }
}

.mission-img {
  aspect-ratio: 0.58;
  object-fit: contain;
  object-position: center;
  width: 100%;
}

.team-section {
  width: 50%;
  text-align: center;
  margin-top: 152px;
}

@media (max-width: 991px) {
  .team-section {
    margin-top: 40px;
    width: 100%;
  }

  .mission-img {
    display: none;
  }
}

.team-title {
  color: #020a11;
  letter-spacing: -0.48px;
  margin-bottom: 20px;
  font: 700 48px/58px Helvetica Neue, -apple-system, Roboto, Helvetica,
    sans-serif;
}

@media (max-width: 991px) {
  .team-title {
    font-size: 40px;
    line-height: 54px;
  }
}

.team-description {
  color: #082a46;
  letter-spacing: -0.21px;
  margin-bottom: 62px;
  font: 300 21px/28px Helvetica Neue, -apple-system, Roboto, Helvetica,
    sans-serif;
}

.team-members {
  display: flex;
  justify-content: center;
  gap: 20px;
}

@media (max-width: 991px) {
  .team-members {
    flex-direction: column;
    align-items: center;
  }

  .team-description {
    margin-bottom: 0px;
  }
}

.team-member {
  width: 318px;
  text-align: left;
}

@media (max-width: 991px) {
  .team-member {
    width: 100%;
    max-width: 318px;
    margin-top: 40px;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.member-image {

  border-radius: 8px;
  height: auto;
  width: 100%;
}

.member-name {
  color: #001532;
  font-size: 20px;
  letter-spacing: -0.2px;
  margin-top: 32px;
}

.member-role {
  color: #082a46;
  font-size: 21px;
  font-weight: 400;
  letter-spacing: -0.21px;
  margin-top: 8px;
}

.member-bio {
  color: #082a46;
  font-size: 17px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.17px;
  margin-top: 8px;
}

.read-more-btn {
  border: 1px solid #2e2e2e;
  border-radius: 99px;
  color: #2e2e2e;
  text-transform: uppercase;
  letter-spacing: 0.12px;
  padding: 12px 24px;
  font: 12px/1.3 Inter, sans-serif;
  display: inline-block;
}

.cta-section {
  margin-top: 152px;
  width: 100%;
  max-width: 1062px;
}

@media (max-width: 991px) {
  .cta-section {
    max-width: 100%;
    margin-top: 40px;
  }
}

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

@media (max-width: 991px) {
  .cta-content {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
}

.cta-text {
  display: flex;
  flex-direction: column;
  line-height: normal;
  width: 50%;
}

@media (max-width: 991px) {
  .cta-text {
    width: 100%;
  }
}

.cta-text-content {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: start;
  font-family: Helvetica Neue;
}

@media (max-width: 991px) {
  .cta-text-content {
    max-width: 100%;
    margin-top: 32px;
  }
}

.cta-heading {
  margin-bottom: 0;
  color: #020a11;
  letter-spacing: -0.56px;

  font: 700 56px/67px Helvetica Neue, -apple-system, Roboto, Helvetica,
    sans-serif;
}

@media (max-width: 991px) {
  .cta-heading {
    margin-bottom: 10px;
    max-width: 100%;
    font-size: 40px;
    line-height: 54px;
    margin-top: 0px;
  }
}

.cta-description {
  color: #082a46;
  font-size: 21px;
  font-weight: 300;
  line-height: 28px;
  letter-spacing: -0.21px;
  margin-top: 20px;
}

@media (max-width: 991px) {
  .cta-description {
    max-width: 100%;
  }
}

.cta-button-main {
  width: fit-content;
  border-radius: 99px;
  background-color: #041523;
  margin-top: 40px;
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14px;
  line-height: 1.3;
  padding: 12px 24px;
  display: inline-block;
}

@media (max-width: 991px) {
  .cta-button-main {
    padding: 12px 20px;
  }
}

.cta-image {
  display: flex;
  flex-direction: column;
  line-height: normal;
  width: 50%;
  margin-left: 20px;
}

@media (max-width: 991px) {
  .cta-image {
    width: 100%;
  }
}

.cta-image-wrapper {
  border-radius: 8px;
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
}

@media (max-width: 991px) {
  .cta-image-wrapper {
    max-width: 100%;
    margin-top: 32px;
  }
}

.cta-img {
  aspect-ratio: 1.11;
  object-fit: contain;
  object-position: center;
  width: 100%;
}

@media (max-width: 991px) {
  .cta-img {
    max-width: 100%;
  }
}

.footer {
  box-sizing: border-box;
  background-color: #f5f8ff;
  align-self: stretch;
  display: flex;
  margin-top: 152px;
  width: 100%;
  flex-direction: column;
  overflow: hidden;
  padding: 80px 80px 32px;
}

@media (max-width: 991px) {
  .footer {
    max-width: 100%;
    margin-top: 40px;
    padding: 40px 20px 20px;
  }
}

.footer-content {
  align-self: start;
  display: flex;
  align-items: start;
  gap: 40px 100px;
  font-family: Helvetica Neue;
}

@media (max-width: 991px) {
  .footer-content {
    max-width: 100%;
    flex-direction: column;
  }
}

.footer-main {
  align-self: stretch;
  display: flex;
  flex-direction: column;
}

@media (max-width: 991px) {
  .footer-main {
    max-width: 100%;
  }
}

.footer-title {
  color: #225099;
  font-size: 40px;
  font-weight: 500;
  line-height: 48px;
  letter-spacing: -0.4px;
}

@media (max-width: 991px) {
  .footer-title {
    max-width: 100%;
    font-size: 32px;
    line-height: 40px;
  }
}

.footer-subtitle {
  color: #173566;
  font-size: 21px;
  font-weight: 300;
  line-height: 28px;
  letter-spacing: -0.21px;
  margin-top: 16px;
  max-width: 403px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  font-size: 17px;
  letter-spacing: -0.17px;
  line-height: 1.3;
}

.footer-link-title {
  color: #020a11;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-link-list {
  display: flex;
  flex-direction: column;
  color: #082a46;
  font-weight: 400;
}

.footer-link {
  margin-top: 12px;
}

.footer-social {
  display: flex;
  margin-top: 32px;
  width: 100%;
  max-width: 1238px;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .footer-social {
    max-width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
}

.footer-specialist {
  border-radius: 4px;
  border: 1px solid #173566;
  color: #173566;
  letter-spacing: -0.17px;
  padding: 47px 16px 16px;
  font: 400 17px/1.3 Helvetica Neue, -apple-system, Roboto, Helvetica,
    sans-serif;
}

@media (max-width: 991px) {
  .footer-specialist {
    padding: 20px 16px;
    width: 100%;
  }
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}

@media (max-width: 991px) {
  .social-icons {
    margin-top: 20px;
  }
}

.social-icon {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 24px;
}

.footer-divider {
  background-color: #0b1a32;
  margin-top: 32px;
  width: 100%;
  height: 1px;
}

.footer-copyright {
  color: #082a46;
  letter-spacing: -0.14px;
  text-align: center;
  margin-top: 24px;
  font: 400 14px/1.2 Helvetica Neue, -apple-system, Roboto, Helvetica,
    sans-serif;
}

/* Services */
.services-container {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  align-items: center;
}

.logo {
  aspect-ratio: 3.3;
  object-fit: contain;
  object-position: center;
  width: 145px;
  align-self: stretch;
  max-width: 100%;
}

.nav-links {
  align-self: stretch;
  display: flex;
  align-items: center;
  gap: 40px;
  font-size: 17px;
  color: #061f34;
  letter-spacing: -0.17px;
  line-height: 1.3;
}

.nav-link {
  align-self: stretch;
  margin: auto 0;
}

.nav-link-active {
  color: #2e6bcc;
}

.cta-button {
  align-items: center;
  border-radius: 24px;
  background-color: #041523;
  display: flex;
  gap: 4px;
  font-size: 16px;
  color: #fff;
  letter-spacing: -0.16px;
  line-height: 1.2;
  padding: 8px 16px;
}

.cta-icon {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 16px;
}

.hero-section {
  margin-top: 5rem;
  width: 100%;
  max-width: 1062px;
}

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

.hero-text {
  /* margin-left: 3rem; */
  display: flex;
  flex-direction: column;
  font-family: Helvetica Neue;
  justify-content: start;
  margin-top: 0px;
}

.hero-title {
  color: #2e6bcc;
  font-size: 48px;
  font-weight: 700;
  line-height: 58px;
  letter-spacing: -0.48px;
}

.hero-description {
  color: #082a46;
  font-size: 21px;
  font-weight: 300;
  line-height: 28px;
  letter-spacing: -0.21px;
  margin-top: 24px;
}

.hero-image {
  object-fit: contain;
  object-position: center;
  flex-grow: 1;
}

.services-section {
  margin-top: 153px;
  width: 100%;
  max-width: 1062px;
}

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

.services-header {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  font-family: Helvetica Neue;
}

.services-title {
  margin: 0px;
  color: #020a11;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.48px;
}

.services-description {
  color: #082a46;
  font-size: 21px;
  font-weight: 300;
  line-height: 28px;
  letter-spacing: -0.21px;
  margin-top: 20px;
}

.service-card {
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  padding: 40px;
}

.service-card-content {
  align-self: stretch;
  display: flex;
  min-width: 240px;

  flex-direction: column;
  justify-content: start;
  margin: auto 0;
}

.service-card-title {
  color: #001532;
  font-size: 28px;
  font-weight: 700;
  line-height: 34px;
  margin-top: 0px;
  letter-spacing: -0.28px;
}

.service-card-description {
  color: #082a46;
  font-size: 21px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: -0.21px;
  margin-top: 20px;
}

.service-card-cta {
  align-self: start;
  border-radius: 99px;
  background-color: #041523;
  margin-top: 28px;
  font-size: 14px;
  color: #fff;

  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14px;
  line-height: 1.3;
  padding: 12px 24px;
}

.why-choose-us-section {
  margin-top: 152px;
  width: 100%;
  max-width: 1062px;
}

.why-choose-us-content {
  display: flex;
  gap: 20px;
}

.why-choose-us-header {
  display: flex;
  flex-direction: column;
  color: #020a11;
  letter-spacing: -0.48px;
  font: 700 48px/58px Helvetica Neue;
}

.why-choose-us-image {
  aspect-ratio: 1.13;
  object-fit: contain;
  object-position: center;
  width: 212px;
  align-self: end;
  max-width: 100%;
}

.why-choose-us-features {
  display: flex;
  width: 100%;
  flex-direction: column;
}

.feature-row {
  display: flex;
  gap: 20px;
}

.feature {
  display: flex;
  flex-grow: 1;
  flex: 1;
  flex-direction: column;
  font-family: Helvetica Neue;
  justify-content: start;
}

.feature-title-card {
  padding: 0 2rem;
  text-align: left;
  color: #001532;
  font-size: 24px;
  font-weight: 500;
  line-height: 29px;
  letter-spacing: -0.24px;
}

.feature-title {
  padding: 0;
  color: #001532;
  font-size: 24px;
  font-weight: 500;
  line-height: 29px;
  letter-spacing: -0.24px;
}

.feature-description {
  color: #082a46;
  font-size: 21px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: -0.21px;
  margin-top: 16px;
}

.cta-section {
  margin-top: 10rem;
  width: 100%;
  max-width: 1062px;
}

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

.cta-text {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: start;
  font-family: Helvetica Neue;
}

.cta-title {
  color: #020a11;
  letter-spacing: -0.56px;
  font: 700 56px/67px SF Pro Display, sans-serif;
}

.cta-description {
  color: #082a46;
  font-size: 21px;
  font-weight: 300;
  line-height: 28px;
  letter-spacing: -0.21px;
  align-self: stretch;
  margin-top: 20px;
}

.cta-button-large {
  align-self: stretch;
  border-radius: 99px;
  background-color: #041523;
  margin-top: 40px;
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14px;
  line-height: 1.3;
  padding: 12px 24px;
}

.cta-image {
  border-radius: 8px;
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
}

.cta-image img {
  aspect-ratio: 1.11;
  object-fit: contain;
  object-position: center;
  width: 100%;
}

.footer {
  background-color: #f5f8ff;
  align-self: stretch;
  display: flex;
  margin-top: 152px;
  width: 100%;
  flex-direction: column;
  overflow: hidden;
  padding: 80px 80px 32px;
}

.footer-content {
  align-self: start;
  display: flex;
  align-items: start;
  gap: 40px 100px;
  font-family: Helvetica Neue;
}

.footer-main {
  align-self: stretch;
  display: flex;
  flex-direction: column;
}

.footer-title {
  color: #225099;
  font-size: 40px;
  font-weight: 500;
  line-height: 48px;
  letter-spacing: -0.4px;
}

.footer-subtitle {
  color: #173566;
  font-size: 21px;
  font-weight: 300;
  line-height: 28px;
  letter-spacing: -0.21px;
  margin-top: 16px;
  width: 403px;
}

.footer-nav {

  display: flex;
  flex-direction: column;
  font-size: 17px;
  letter-spacing: -0.17px;
  line-height: 1.3;
}


@media (max-width: 991px) {
  .footer-nav {
    width: 100%;
    align-items: flex-start !important;
  }

  .service-card-title {
    margin-bottom: 1rem;
    gap: 20px;
    font-weight: 400;
    line-height: 34px;
    letter-spacing: -0.28px;
  }



  .feature-title {
    align-self: left;
    margin-bottom: 0px;
    margin-top: 1.3rem;
    padding: 0rem;
    color: #001532;
    font-size: 24px;
    font-weight: 400;
    line-height: 29px;
    letter-spacing: -0.24px;
  }

  .feature-title-card {
    align-self: center;
    margin-bottom: 0px;
    margin-top: 1.3rem;
    padding: 0rem 2rem;
    color: #001532;
    font-size: 24px;
    font-weight: 400;
    line-height: 29px;
    letter-spacing: -0.24px;
  }

  .service-card-description {
    margin-top: 0px;
  }


}

.footer-nav-title {
  color: #020a11;
  font-weight: 700;
}

.footer-nav-links {
  display: flex;
  margin-top: 16px;
  flex-direction: column;
  color: #082a46;
  font-weight: 400;
}

.footer-nav-link {
  margin-top: 12px;
}

.footer-bottom {
  display: flex;
  margin-top: 32px;
  width: 100%;

  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-cta {
  border-radius: 4px;
  border: 1px solid #173566;
  overflow: hidden;
  color: #173566;
  letter-spacing: -0.17px;
  padding: 47px 16px 16px;
  font: 400 17px/1.3 Helvetica Neue;
}

.social-icons {
  align-self: end;
  display: flex;
  margin-top: 61px;
  align-items: center;
  gap: 16px;
  justify-content: end;
}

.social-icon {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 24px;
}

.footer-divider {
  background-color: #0b1a32;
  margin-top: 32px;
  width: 1278px;
  max-width: 100%;
  height: 0;
  border: 0.5px solid #0b1a32;
}

.footer-copyright {
  color: #082a46;
  letter-spacing: -0.14px;
  align-self: center;
  margin-top: 24px;
  font: 400 14px/1.2 Helvetica Neue;
}

.about-us-flex {
  flex: 1;
  flex-direction: row;
  display: flex;
  width: 100%;
}

@media (max-width: 991px) {
  .about-us-flex {
    flex-direction: column;
  }

  .navbar {
    max-width: 100%;
    padding: 0 20px;
  }

  .hero-section {
    max-width: 100%;
    margin-top: 0px;
  }

  .hero-content {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .hero-text {

    margin-top: 2.75rem;
    margin-left: 0rem;
  }

  .hero-title {
    font-size: 40px;
    line-height: 54px;
  }

  .hero-image {
    margin-left: 0px;
    max-width: 100%;
    margin-top: 31px;
  }

  .services-section {
    max-width: 100%;
    margin-top: 40px;
  }

  .services-content {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .services-header {
    max-width: 100%;
    margin-top: 32px;
  }

  .services-title {
    font-size: 40px;
  }

  .service-card {
    padding: 2rem;
  }

  .why-choose-us-section {
    max-width: 100%;
    margin-top: 40px;
  }

  .why-choose-us-content {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .why-choose-us-header {
    margin-top: 40px;
    font-size: 40px;
    line-height: 54px;
  }

  .why-choose-us-image {
    display: none;
  }

  .why-choose-us-features {
    max-width: 100%;
    margin-top: 40px;
  }

  .feature-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .feature {
    margin-top: 0px;
  }

  .cta-section {
    max-width: 100%;
    margin-top: 40px;
  }

  .cta-content {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-top: 0px;
  }

  .cta-text {
    width: fit-content;
    max-width: 100%;
  }

  .cta-title {
    max-width: 100%;
    font-size: 40px;
    line-height: 54px;
  }

  .cta-description {
    max-width: 100%;
  }

  .cta-button-large {
    padding: 0 20px;
  }

  .cta-image {
    max-width: 100%;
    margin-top: 32px;
    margin-left: 0px;
  }

  .footer {
    max-width: 100%;
    margin-top: 40px;
    padding: 0 20px;
  }

  .footer-content {
    max-width: 100%;
  }

  .footer-main {
    max-width: 100%;
  }

  .footer-title {
    max-width: 100%;
  }

  .footer-bottom {
    max-width: 100%;
  }

  .footer-cta {
    padding-right: 20px;
  }

  .social-icons {
    margin-top: 40px;
  }
}

/* Contact us */
.contact-section {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.navbar {
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.05);
  align-self: stretch;
  display: flex;
  width: 100%;
  align-items: center;
  gap: 20px;
  overflow: hidden;
  font-family: Helvetica Neue;
  font-weight: 400;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 21px 80px;
}

@media (max-width: 991px) {
  .navbar {
    display: none;
  }
}

.flex-container {
  display: flex;
  flex-direction: row;
  flex: 1;
}

.navbar-mobile {
  display: none;
}

.menu {
  aspect-ratio: 3.3;
  object-fit: contain;
  object-position: right;
  width: auto;
  height: 2rem;
  align-self: stretch;
  max-width: 100%;
}

@media (max-width: 991px) {
  .navbar-mobile {
    display: block;
    box-sizing: border-box;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.05);
    align-self: stretch;
    display: flex;
    width: 100%;
    align-items: center;
    /* gap: 20px; */
    overflow: hidden;
    font-family: Helvetica Neue;
    font-weight: 400;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px;
  }
}

.logo {
  aspect-ratio: 3.3;
  object-fit: contain;
  object-position: center;
  width: auto;
  height: 2.5rem;
  align-self: stretch;
  max-width: 100%;
}

.nav-links {
  align-self: stretch;
  display: flex;
  align-items: center;
  gap: 40px;
  font-size: 17px;
  color: #061f34;
  letter-spacing: -0.17px;
  line-height: 1.3;
}

.nav-link {
  align-self: stretch;
  margin: auto 0;
}

.nav-link-active {
  color: #2e6bcc;
}

.cta-button {
  min-width: 80px;
  align-items: center;
  border-radius: 24px;
  background-color: #041523;
  display: inline-flex !important;
  /* Ensure flex layout */
  gap: 4px;
  font-size: 16px;
  color: #fff;
  letter-spacing: -0.16px;
  line-height: 1.2;
  padding: 8px 16px;
  white-space: nowrap !important;
  /* Prevents line break */
  text-decoration: none;
  /* Remove underline */
  overflow: hidden;
  flex-wrap: nowrap;
  /* Prevents wrapping */
}

.cta-icon {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 16px;
  min-width: 16px;
}



.service-hero-title {
  color: #020a11;
  text-align: left;
  letter-spacing: -0.56px;
  margin-top: 64px;
  margin-bottom: 0px;
  font: 700 56px/1.2 Helvetica Neue, -apple-system, Roboto, Helvetica,
    sans-serif;
}

.service-hero-description {
  color: #082a46;
  text-align: left;
  letter-spacing: -0.21px;
  margin-top: 24px;
  font: 300 21px/28px Helvetica Neue, -apple-system, Roboto, Helvetica,
    sans-serif;
}

.hero-title {
  color: #020a11;
  letter-spacing: -0.56px;
  margin-top: 64px;
  margin-bottom: 0px;
  font: 700 56px/1.2 Helvetica Neue, -apple-system, Roboto, Helvetica,
    sans-serif;
}

@media (max-width: 991px) {
  .service-hero-title {
    font-weight: 400;
    text-align: center;
    margin-top: 0px
  }

  .service-hero-description {
    text-align: center;

  }
}

@media (max-width: 991px) {
  .cta-button {
    margin-bottom: 10px;
  }

  .hero-title {
    max-width: 100%;
    margin-top: 2.75rem;
    font-size: 40px;
    font-weight: 500;
  }
}


.hero-description {
  color: #082a46;
  text-align: center;
  letter-spacing: -0.21px;
  margin-top: 24px;
  font: 300 21px/28px Helvetica Neue, -apple-system, Roboto, Helvetica,
    sans-serif;
}

@media (max-width: 991px) {
  .hero-description {
    max-width: 100%;
  }
}

.content-wrapper {
  margin-top: 152px;
  width: 100%;
  max-width: 1062px;
}

@media (max-width: 991px) {
  .content-wrapper {
    max-width: 100%;
    margin-top: 40px;
  }
}

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

@media (max-width: 991px) {
  .content-columns {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
}

.image-column {
  display: flex;
  flex-direction: column;
  line-height: normal;
  width: 62%;
  margin-left: 0;
}

@media (max-width: 991px) {
  .image-column {
    align-items: center;
    width: 100%;
    padding: 0px 1rem;
    box-sizing: border-box;
  }
}

.contact-image {
  aspect-ratio: 0.86;
  object-fit: contain;
  object-position: center;
  width: 100%;
  flex-grow: 1;
}

@media (max-width: 991px) {
  .contact-image {
    max-width: 100%;
    margin-top: 40px;
  }
}

.info-column {
  display: flex;
  flex-direction: column;
  line-height: normal;
  width: 40%;
  margin-left: 20px;
  justify-content: flex-start;
}

@media (max-width: 991px) {
  .info-column {
    width: 100%;
    text-align: center;
    margin-left: 0;
  }
}

.info-content {
  display: flex;
  margin-top: 20px;
  width: 100%;
  flex-direction: column;
}

@media (max-width: 991px) {
  .info-content {
    margin-top: 40px;
  }
}

.contact-info {
  display: flex;
  padding-left: 5px;
  flex-direction: column;
  font-family: Helvetica Neue;
}

.info-section {
  display: flex;
  flex-direction: column;
  justify-content: start;
}

.info-title {
  color: #020a11;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.2px;
}

.info-details {
  display: flex;
  margin-top: 6px;
  width: 100%;
  flex-direction: column;
  font-weight: 300;
  justify-content: start;
}

.info-text {
  color: #082a46;
  font-size: 17px;
  line-height: 1.3;
  letter-spacing: -0.17px;
}

.info-highlight {
  color: #061f34;
  font-size: 21px;
  line-height: 1;
  letter-spacing: -0.21px;
  margin-top: 12px;
}

.social-section {
  align-self: start;
  display: flex;
  margin-top: 20px;
  align-items: center;
  gap: 16px;
  justify-content: end;
}

.social-icon {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 28px;
}

.footer {
  background-color: #f5f8ff;
  align-self: stretch;
  display: flex;
  margin-top: 152px;
  width: 100%;
  flex-direction: column;
  overflow: hidden;
  padding: 80px 80px 32px;
}

@media (max-width: 991px) {
  .social-section {
    align-self: center;
    margin-bottom: 5rem;

  }

  .footer {
    max-width: 100%;
    margin-top: 40px;
    padding: 0 20px;
  }
}

.footer-content {
  align-self: start;
  display: flex;
  align-items: start;
  gap: 40px 100px;
  font-family: Helvetica Neue;
}

@media (max-width: 991px) {
  .footer-content {
    max-width: 100%;
  }
}

.footer-main {
  align-self: stretch;
  display: flex;
  flex-direction: column;
}

@media (max-width: 991px) {
  .footer-main {
    max-width: 100%;
  }
}

.footer-title {
  color: #225099;
  font-size: 40px;
  font-weight: 500;
  line-height: 48px;
  letter-spacing: -0.4px;
}

@media (max-width: 991px) {
  .footer-title {
    max-width: 100%;
  }
}

.footer-subtitle {
  color: #173566;
  font-size: 21px;
  font-weight: 300;
  line-height: 28px;
  letter-spacing: -0.21px;
  margin-top: 16px;
  width: 403px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  font-size: 17px;
  letter-spacing: -0.17px;
  line-height: 1.3;
}

.footer-nav-title {
  color: #020a11;
  font-weight: 700;
}

.footer-nav-links {
  display: flex;
  margin-top: 16px;
  flex-direction: column;
  color: #082a46;
  font-weight: 400;
  white-space: nowrap;
  justify-content: start;
}

@media (max-width: 991px) {
  .footer-nav-links {
    white-space: initial;
  }

  .footer-nav-title {

    font-weight: 500;
  }
}

.footer-nav-link {
  margin-top: 12px;
}

.footer-bottom {
  display: flex;
  margin-top: 32px;
  width: 100%;

  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
  }
}

.footer-cta {
  border-radius: 4px;
  border: 1px solid #173566;
  overflow: hidden;
  color: #173566;
  letter-spacing: -0.17px;
  padding: 47px 16px 16px;
  font: 400 17px/1.3 Helvetica Neue, -apple-system, Roboto, Helvetica,
    sans-serif;
}

.footer-cta-mobile {
  display: none;
}

@media (max-width: 991px) {
  .footer-cta {
    display: none;
    padding-right: 20px;
  }

  .footer-cta-mobile {
    display: block;
    border-radius: 4px;
    border: 1px solid #173566;
    overflow: hidden;
    color: #173566;
    letter-spacing: -0.17px;
    padding: 47px 16px 16px;
    font: 400 17px/1.3 Helvetica Neue, -apple-system, Roboto, Helvetica,
      sans-serif;
  }
}

.footer-social {
  align-self: end;
  display: flex;
  margin-top: 61px;
  align-items: center;
  gap: 16px;
  justify-content: end;
}

@media (max-width: 991px) {
  .footer-social {
    margin-top: 40px;
  }
}

.footer-social-icon {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 24px;
}

.footer-divider {
  background-color: #0b1a32;
  margin-top: 32px;
  width: 1278px;
  max-width: 100%;
  height: 0;
  border: 0.5px solid #0b1a32;
}

.footer-copyright {
  color: #082a46;
  letter-spacing: -0.14px;
  align-self: center;
  margin-top: 24px;
  font: 400 14px/1.2 Helvetica Neue, -apple-system, Roboto, Helvetica,
    sans-serif;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Connect with Our Expert */

.connect-expert {
  border-radius: 8px;
  background: #f5f8ff;
  max-width: 672px;
  font-weight: 400;
  line-height: 1.3;
  padding: 32px;
}

@media (max-width: 991px) {
  .connect-expert {
    width: 100%;
    padding: 2rem;
    margin-bottom: 5rem;
  }

  .footer-divider {
    background-color: white;
    margin-top: 2rem;

    max-width: 100%;

    border: 0.1px solid #0b1a32;
  }
}

.close-icon {
  aspect-ratio: 1;
  object-fit: contain;
  width: 18px;
  align-self: flex-end;
}

.section-title {
  color: #020a11;
  text-align: center;
  letter-spacing: -0.24px;
  align-self: center;
  margin-top: 14px;
  font: 700 24px/1.2 Helvetica Neue, -apple-system, Roboto, Helvetica,
    sans-serif;
}

.form-row {
  display: flex;
  margin-top: 24px;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .form-row {
    margin-top: 0rem;
    flex-direction: column;
    gap: 0;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  flex-basis: 0;
}

.form-label {
  color: #082a46;
  letter-spacing: -0.15px;
  font: 15px Helvetica Neue;
}

.form-input {

  cursor: pointer;
  box-sizing: border-box;
  align-items: flex-start;
  border-radius: 4px;
  border: 1px solid #2e2e2e;
  display: initial;
  margin-top: 12px;
  width: 100%;
  color: #2e2e2e;
  letter-spacing: 0.14px;
  padding: 11px 20px;
  font: 14px Inter, sans-serif;
}

.form-select {
  box-sizing: border-box;
  justify-content: center;
  border-radius: 4px;
  border: 1px solid #2e2e2e;
  display: flex;
  margin-top: 12px;
  width: 100%;
  gap: 40px 100px;
  color: #161616;
  letter-spacing: 0.14px;
  padding: 11px 20px;
  font: 14px Inter, sans-serif;
}

@media (max-width: 991px) {
  .form-select {
    max-width: 100%;
  }

  .form-label {
    margin-top: 1.5rem;
  }
}

/* Adjust input-container */
.input-container {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.form-input {
  cursor: pointer;
  box-sizing: border-box;
  align-items: flex-start;
  border-radius: 4px;
  border: 1px solid #2e2e2e;
  margin-top: 12px;
  width: 100%;
  color: #2e2e2e;
  letter-spacing: 0.14px;
  padding: 11px 20px;
  font: 14px Inter, sans-serif;
  padding-right: 40px;
  /* Space for the icon */
  appearance: none;
  /* Remove default styles */
}



.select-icon {
  aspect-ratio: 1;
  object-fit: contain;
  width: 16px;
  align-self: flex-start;
}

.submit-button {
  width: 100%;
  align-self: stretch;
  border-radius: 99px;
  background: #041523;
  margin-top: 32px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.14px;
  padding: 12px 24px;
  font: 500 14px Helvetica Neue;
  border: none;
  cursor: pointer;
}

@media (max-width: 991px) {
  .submit-button {
    padding: 12px 20px;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Security and Privacy Consulting */
.security-consulting-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.35);
  font-family: Helvetica Neue;
  padding: 32px 80px 0;
}

@media (max-width: 991px) {
  .security-consulting-section {
    padding: 0 20px;
  }
}

.content-container {
  border-radius: 12px;
  background-color: #fff;
  display: flex;
  width: 843px;
  max-width: 100%;
  flex-direction: column;
  overflow: hidden;
  padding: 32px 32px 0 64px;
}

@media (max-width: 991px) {
  .content-container {
    padding: 0 20px;
  }
}

.close-icon {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 18px;
  align-self: flex-end;
}

.section-title {
  color: #161616;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.28px;
  align-self: center;
  margin-top: 22px;
}

.content-wrapper {
  display: flex;
  margin-top: 56px;
  width: 715px;
  max-width: 100%;
  flex-direction: column;
  font-weight: 400;
}

@media (max-width: 991px) {
  .content-wrapper {
    margin-top: 40px;
  }
}

.info-box {
  border-radius: 8px;
  background-color: #f5f8ff;
  padding: 40px;
  margin-bottom: 32px;
}

@media (max-width: 991px) {
  .info-box {
    padding: 20px;
  }
}

.info-title {
  color: #395b77;
  font-size: 17px;
  line-height: 1.3;
  letter-spacing: -0.17px;
  text-transform: uppercase;
}

.info-text {
  color: #061f34;
  font-size: 21px;
  line-height: 28px;
  letter-spacing: -0.21px;
  margin-top: 12px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Network and Security Architecture Design */
.network-security-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: Helvetica Neue;
}

@media (max-width: 991px) {
  .network-security-section {
    padding: 0;
  }
}

.content-wrapper {
  border-radius: 12px;
  background-color: #fff;
  display: flex;
  width: 843px;
  max-width: 100%;
  padding-top: 32px;
  flex-direction: column;
  overflow: hidden;
}

.close-icon {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 18px;
  align-self: flex-end;
  margin-right: 32px;
}

@media (max-width: 991px) {
  .close-icon {
    margin-right: 10px;
  }
}

.content-container {
  display: flex;
  margin-top: 22px;
  flex-direction: column;
  padding: 0 64px;
}

@media (max-width: 991px) {
  .content-container {
    max-width: 100%;
    padding: 0 20px;
  }
}

.section-title {
  color: #161616;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.28px;
  align-self: center;
}

@media (max-width: 991px) {
  .section-title {
    max-width: 100%;
  }
}

.info-container {
  display: flex;
  margin-top: 2rem;
  flex-direction: column;
  font-weight: 400;
}

@media (max-width: 991px) {
  .info-container {
    max-width: 100%;
    margin-top: 40px;
  }
}

.info-box {
  border-radius: 8px;
  background-color: #f5f8ff;
  display: flex;
  width: 100%;
  flex-direction: column;
  overflow: hidden;
  padding: 40px;
}

@media (max-width: 991px) {
  .info-box {
    max-width: 100%;
    padding: 0 20px;
  }
}

.info-title {
  color: #395b77;
  font-size: 17px;
  line-height: 1.3;
  letter-spacing: -0.17px;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .info-title {
    max-width: 100%;
  }
}

.info-description {
  color: #061f34;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0.4px;
  margin-top: 12px;
  font-weight: 300;
}

@media (max-width: 991px) {
  .info-description {
    max-width: 100%;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Security Assessment & Penetration Testing */
.security-assessment {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 80px 0;
  font-family: Helvetica Neue;
  background-color: rgba(0, 0, 0, 0.35);
}

.assessment-card {
  width: 843px;
  max-width: 100%;
  padding: 32px 64px;
  border-radius: 12px;
  background-color: #fff;
}

.close-icon {
  align-self: flex-end;
  width: 18px;
  height: 18px;
  margin-right: 32px;
}

.assessment-title {
  color: #161616;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.28px;
  text-align: center;
  margin-top: 22px;
  margin-bottom: 50px;
}

.content-wrapper {
  margin-top: 56px;
}

.info-box {
  border-radius: 8px;
  background-color: #f5f8ff;
  padding: 40px;
  margin-bottom: 32px;
}

.info-label {
  font-weight: 400;
  margin-bottom: 0px;
  color: #395b77;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.17px;
  text-transform: uppercase;
}

.info-text {
  font-weight: 300;
  color: #061f34;
  font-size: 21px;
  line-height: 28px;
  letter-spacing: -0.21px;
  margin-top: 12px;
}

.accordion-title {
  background: none;
  border: none;
  text-align: left;
  width: 100%;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
  cursor: pointer;
}

/* Open state styles */
.value-title.open {
  margin-left: 0px;
  color: #225099;
}

.value-description {
  color: #0b3558;
}

/* Separator line */
.value-separator {
  width: 100%;
  height: 0.2px;
  background-color: #016bff;
  margin: 10px 0;
}

/* Closed state styles */
.value-title {
  margin: 0.4rem;
  color: #96a8b7;
  font-size: 24px;
  font-family: "Helvetica Neue";
  font-weight: 500;
  line-height: 28.8px;
  word-wrap: break-word;
}

/* Hidden accordion content by default */
.accordion-content {
  display: none;
  padding: 10px 0;
}

.toggle-icon {
  width: 16.75px;
  height: 16.75px;
  align-self: center;

}

@media (max-width: 991px) {
  .accordion-content {

    padding: 0;
  }

  .value-title {
    font-size: 18px;
    margin: 0.5rem 0;
  }
}

.value-separator.accordion-content-open {
  background-color: #016bff;
  height: 1px;
}

@media (max-width: 991px) {
  .security-assessment {
    padding: 0 20px;
  }

  .assessment-card {
    padding: 32px 20px;
  }

  .close-icon {
    margin-right: 10px;
  }

  .content-wrapper {
    margin-top: 40px;
  }

  .info-box {
    padding: 20px;
  }
}

/* European Digital Innovation Hub Participation */
.edih-participation {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.35);
  font-family: Helvetica Neue;
  padding: 32px 80px 0;
}

@media (max-width: 991px) {
  .edih-participation {
    padding: 0 20px;
  }
}

.content-wrapper {
  border-radius: 12px;
  background-color: unset;
  display: flex;
  margin-top: 0px;
  max-width: 100%;
  margin-bottom: 0rem;
  padding-top: 0px;
  flex-direction: column;
  overflow: hidden;
}

.close-icon {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 18px;
  align-self: flex-end;
  margin-right: 32px;
}

@media (max-width: 991px) {
  .close-icon {
    margin-right: 10px;
  }
}

.content-container {
  display: flex;
  margin-top: 22px;
  flex-direction: column;
  padding: 0px 10px;
  box-sizing: border-box;

}

@media (max-width: 991px) {
  .content-container {
    max-width: 100%;
    padding: 0 20px;
  }
}

.section-title {
  color: #161616;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.28px;
  align-self: center;
  margin-bottom: 0px;
}

@media (max-width: 991px) {
  .section-title {
    max-width: 100%;
  }
}

/* .info-container {
  display: flex;
  margin-top: 0px;
  flex-direction: column;
  font-weight: 400;
} */

/* @media (max-width: 991px) {
  .info-container {
    max-width: 100%;
    margin-top: 40px;
  }
} */

.info-box {
  box-sizing: border-box;
  border-radius: 8px;
  background-color: #f5f8ff;
  display: flex;
  width: 100%;
  flex-direction: column;
  overflow: hidden;
  padding: 20px;
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .info-box {
    max-width: 100%;
    padding: 2rem;
  }
}

.info-title {
  font-weight: 400;
  color: #395b77;
  font-size: 15px;
  line-height: 1.3;
  letter-spacing: -0.17px;
  text-transform: uppercase;
  margin-bottom: 0px;
}

@media (max-width: 991px) {
  .info-title {
    max-width: 100%;
  }
}

.info-text {
  color: #082a46;
  font-size: 1rem;
  font-family: Helvetica Neue;
  font-weight: 300;
  line-height: 22.1px;
  word-wrap: break-word;
  margin: 0px;
}

@media (max-width: 991px) {
  .info-text {
    max-width: 100%;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Madhusanka */
.team-member-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  border-radius: 12px;
  background-color: #fff;
}

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

.profile-image-container {
  width: 38%;
}

.profile-image {
  width: 213px;
  height: 244px;
  /* margin: 40px auto 0; */
  border-radius: 8px;
  background-color: #f2f4f6;
}

.member-details {
  width: 62%;
}

.member-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.member-name {
  margin-top: 40px;
  color: #001532;
  font: 500 24px/29px Helvetica Neue, -apple-system, Roboto, Helvetica,
    sans-serif;
  letter-spacing: -0.24px;
}

.member-role {
  margin-top: 12px;
  margin-bottom: 12px;
  color: #082a46;
  font: 400 21px/1 Helvetica Neue, -apple-system, Roboto, Helvetica, sans-serif;
  letter-spacing: -0.21px;
}

.social-icons {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  justify-content: flex-end;
}

.social-icon {
  width: 28px;
  height: 28px;
}

.member-bio {
  margin-top: 32px;
  color: #061f34;
  font: 300 21px/28px Helvetica Neue, -apple-system, Roboto, Helvetica,
    sans-serif;
  letter-spacing: -0.21px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 991px) {
  .team-member-card {
    padding: 20px;
  }

  .team-member-content {
    flex-direction: column;
    gap: 0px;
  }

  .profile-image-container,
  .member-details {
    width: 100%;
  }

  .member-info {
    margin-top: 0px;
  }

  .member-bio {
    max-width: 100%;
  }
}

/* Bartlomiej */
.team-member-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.35);
  padding: 32px 80px 0;
  overflow: hidden;
}

.profile-card {
  border-radius: 12px;
  background-color: #fff;
  width: 686px;
  max-width: 100%;
  padding: 32px 32px 0 64px;
  overflow: hidden;
}

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

.profile-image-container {
  width: fit-content
}

.profile-image {
  border-radius: 8px;
  background-color: #f2f4f6;
  width: 213px;
  height: 244px;
  margin-top: 40px;
}

.profile-details {
  width: 62%;
}

.profile-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.close-icon {
  align-self: flex-end;
  width: 18px;
  aspect-ratio: 1;
  object-fit: contain;
}

.member-name {
  color: #001532;
  font: 400 20px/1.2 Helvetica Neue, -apple-system, Roboto, Helvetica,
    sans-serif;
  letter-spacing: -0.24px;
  margin-bottom: 0px;
}

.member-title {
  color: #082a46;
  font: 400 18px/1 Helvetica Neue, -apple-system, Roboto, Helvetica, sans-serif;
  letter-spacing: -0.21px;
  margin-top: 12px;
}

.member-social-icons {
  display: flex;
  margin-top: 0px;
  gap: 16px;
  align-self: flex-start;
}

.social-icons {
  display: flex;
  margin-top: 12px;
  gap: 16px;
}

.social-icon {
  width: 28px;
  aspect-ratio: 1;
  object-fit: contain;
}

.bio {
  color: #061f34;
  font: 300 18px/28px Helvetica Neue, -apple-system, Roboto, Helvetica,
    sans-serif;
  letter-spacing: -0.21px;
  z-index: 10;
  margin-top: 2rem;
  margin-bottom: 10px;
}

.member-bio {
  color: #061f34;
  font: 300 21px/28px Helvetica Neue, -apple-system, Roboto, Helvetica,
    sans-serif;
  letter-spacing: -0.21px;
  z-index: 10;
  margin-top: 0px;
  margin-bottom: 10px;
}

.body-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column
}

/* Apply padding for mobile and tablet screens */
@media (max-width: 1024px) {

  .body-content {
    margin: 20px;
  }

}

@media (max-width: 991px) {
  .team-member-profile {
    padding: 0 20px;
  }

  .profile-card {
    padding: 0 20px;
  }

  .profile-content {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .profile-image-container,
  .profile-details {
    width: 100%;
  }

  .profile-header {
    margin-top: 32px;
  }

  .member-bio {
    text-align: center;
    margin-bottom: 10px;
  }
}

.partners-section {
  overflow: hidden;
  width: 90%;
}

@media (max-width: 991px) {
  .partners-section {
    width: 95%;
  }
}

.testimonials-container {
  display: flex;
  width: 90%;
  margin: 10rem 0rem;
  flex-wrap: wrap;
  /* Allow items to wrap on smaller screens */
}

/* Flex Item (Column 1: Title and Subtitle Section) */
.testimonials-title-section {
  padding: 10px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

/* Title and Subtitle Styles */
.testimonials-title {
  width: 100%;
  color: #020a11;
  font-size: 48px;
  font-family: Helvetica Neue;
  font-weight: 700;
  line-height: 57.6px;
  word-wrap: break-word;
}

.testimonials-subtitle {
  margin-top: 2rem;
  width: 100%;
  color: #082a46;
  font-size: 21px;
  font-family: Helvetica Neue;
  font-weight: 300;
  line-height: 28.35px;
  word-wrap: break-word;
}

/* Navigation Section (Next/Previous buttons) */
.testimonials-nav-buttons {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  height: auto;
  margin-right: 2rem;
}

.testimonials-nav-button {
  margin-right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 99px;
}

.testimonials-nav-button img {
  width: 40px;
  height: 40px;
}

/* Flex Item (Column 2: Testimonials Content) */
.testimonials-content {
  flex: 2;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.testimonials-quote {
  width: 100%;
  color: #225099;
  font-size: 28px;
  font-family: Helvetica Neue;
  font-style: italic;
  font-weight: 400;
  line-height: 37.8px;
  word-wrap: break-word;
}

.testimonials-author-info {
  display: flex;
  position: relative;
}

.testimonials-author-image {
  width: 320px;
  height: 480px;
  flex-shrink: 0;
  border-radius: 50%;
  margin-right: 10px;
  display: flex;

}

.testimonials-author-name {
  margin: 0;
  font-size: 20px;
  font-weight: bold;
}

.testimonials-author-title {
  margin: 0;
  font-size: 14px;
  color: #555;
}

/* Dots Image at the bottom */
.testimonials-dots {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.testimonials-dots img {
  width: auto;
  height: 10px;
}

/* Media Queries for Small Screens */
@media (max-width: 991px) {
  .testimonials-container {
    flex-direction: column;
    align-items: center;
    /* Center the content */
  }

  .testimonials-title-section {
    width: 100%;
    /* Ensure both flex items take full width on small screens */
    padding: 20px 0;
  }

  .testimonials-content {
    width: 100%;
    padding: 20px 0;
  }

  .testimonials-nav-buttons {
    justify-content: center;
    /* Center navigation buttons on small screens */
    margin-right: 0;
  }

  .testimonials-nav-button {
    margin-right: 20px;
    /* Add space between buttons */
  }
}

/* Main Container */
.testimonial-container {
  display: flex;
  flex-direction: row;
  width: 90%;
  margin-top: 10rem;
  flex-wrap: wrap;
  gap: 10%;
}

/* Left Section */
.testimonial-left {
  flex: 1;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

/* Title and Subtitle */
.testimonial-title-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.testimonial-title {
  width: 100%;
  color: #020a11;
  font-size: 40px;
  font-family: "Helvetica Neue";
  font-weight: 700;
  line-height: 57.6px;
  word-wrap: break-word;
}

.testimonial-subtitle {
  margin-top: 2rem;
  width: 100%;
  color: #082a46;
  font-size: 21px;
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 300;
  line-height: 28.35px;
  word-wrap: break-word;
}

/* Navigation */
.testimonial-navigation {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  height: auto;
  margin-right: 2rem;
  gap: 6px;
}

.nav-button {
  cursor: pointer;
  opacity: 1;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-button.disabled {
  opacity: 0.5;
  pointer-events: none;
  /* Disable clicks */
}

.nav-image {
  transform: scale(1);
  transition: transform 0.2s;
}

.nav-button:not(.disabled):hover .nav-image {
  transform: scale(1.2);
  /* Zoom in slightly on hover */
}

.nav-image {
  width: 40px;
  height: 40px;
}

/* Right Section */
.testimonial-right {
  flex: 2;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transition: left 0.5s ease-in-out;
}

.testimonial-right.slide-in {
  left: 0;
  /* Slide into the container */
}

.testimonial-right.slide-out {
  left: -100%;
  /* Slide out to the left */
}

.testimonial-text {
  height: 12rem;
  width: 100%;
  color: #225099;
  font-size: 28px;
  font-family: "Helvetica Neue", sans-serif;
  font-style: italic;
  font-weight: 400;
  line-height: 37.8px;
  word-wrap: break-word;
}

/* Author Section */
.testimonial-author-section {
  display: flex;
  width: 100%;
  margin-top: 4rem;
  position: relative;
}

.author-image {
  width: 3.5625rem;
  height: 3.5625rem;
    border-radius: 99px;
}

.author-info {
  justify-content: flex-end;
  flex-direction: column;
  display: flex;
  margin-left: 1rem;
}

.author-name {
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 18px;
}

.author-title {
  margin: 0px;
  font-weight: 400;
  font-size: 16px;
  color: #555;
}

.dots-container {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  align-items: flex-end;
  padding-bottom: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #cfe1ff;
  margin: 0 5px;
  cursor: pointer;
}

.dot.active {
  background-color: #3a86ff;
}

.mbp-services-section {
  display: flex;
  gap: 1rem;
  flex-direction: row;
}

.inner-services-section {
  display: flex;
  flex: 1;
}

.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Full viewport positioning */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  /* Allow scrolling for the full page */
  background-color: rgba(0, 0, 0, 0.5);
  /* Optional: semi-transparent background */
  z-index: 1000;
  /* Ensure it's above other elements */

  /* Flexbox for centering */
  justify-content: center;
  /* Horizontally center */
  align-items: center;
  /* Vertically center */
}

.modal-content {
  position: relative;
  margin: 0;
  /* Remove default margin to use centering */
  padding: 1rem 2rem;
  background-color: #fff;
  /* Content background */
  border-radius: 8px;
  width: 80%;
  /* Content width */
  max-width: 800px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}



.success-modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.center-modal {
  display: flex;
}

.check-icon {
  position: absolute;
  left: 50%;
  /* Center horizontally */
  top: 0px;
  /* Center vertically */
  transform: translate(-50%, -50%);
  /* Adjust for the element's own dimensions */
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  background-color: #4caf50;
  color: white;
  font-size: 24px;
  border-radius: 50%;
}

.success-title {
  font-size: 20px;
  color: #333;
  margin-bottom: 20px;
  margin-top: 60px;
}

.success-msg {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
  width: 80%;
  text-align: center;
  margin: auto;
}

.close-button {
  width: 100%;
  margin-top: 3rem;
  padding: 10px 20px;
  font-size: 16px;
  color: white;
  background-color: #4caf50;
  /* Matches the green button */
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}





.success-modal-content {
  background-color: #fff;
  position: relative;
  margin: 15% auto;
  padding-top: 4rem;
  padding: 2rem;
  border-radius: 5px;
  width: 22%;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
  .success-modal-content {
    width: 70%;
  }

  .success-modal-content {
    margin: 50% auto;
  }

  .center-modal {
    display: block;
  }
}

body.modal-open {
  overflow: hidden;
  /* position: fixed */
}

.close {
  right: 2rem;
  position: absolute;
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .testimonial-text {
    margin-top: 1rem;
    height: 27rem;
  }

  .modal-content {
    width: unset;
    padding: 1rem 0rem;
    margin: 1rem;
  }

  .testimonial-title {
    font-weight: 500;
  }

  .inner-services-section {
    display: flex;
    flex: 0;
  }

  .mbp-services-section {
    flex-direction: column;
  }

  .dots-container {
    margin-top: 2rem;
  }

  .testimonial-container {
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 5rem 0;
  }

  .testimonial-subtitle {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
  }

  .testimonial-left,
  .testimonial-right {
    width: 100%;
    padding: 5px;
  }

  .testimonial-navigation {
    display: none;
  }

  .testimonial-author-section {
    margin-top: 1rem;
    flex-direction: column;
  }
}

.contact-subtitle {
  margin: 0px;
  color: #020a11;
  font-size: 20px;
  font-family: Helvetica Neue;
  font-weight: 500;
  line-height: 27px;
  word-wrap: break-word;
}

.partners-scroll {
  margin-top: 6rem;
  display: flex;
  gap: 4rem;
  /* Space between items */

  animation: scrollPartner 15s linear infinite;
}

@media (max-width: 991px) {
  .partners-scroll {
    gap: 2rem
  }
}

/* Animation for the scrolling effect */
@keyframes scrollPartner {
  0% {
    transform: translateX(0);
    /* Start at the beginning */
  }

  100% {
    transform: translateX(-50%);
    /* Move to the left by half the container width */
  }
}

.partner-logo {
  flex-shrink: 0;
  /* Prevents images from shrinking */
  max-height: 100px;
  /* Optional max height */
  object-fit: contain;
  /* Ensures logos retain their aspect ratio */
  margin-bottom: 3%;
}

.contact-num {
  width: 100%;
  color: #061F34;
  font-size: 1rem;
  margin-top: 20px;
  font-family: Helvetica Neue;
  font-weight: 300;
  line-height: 28.35px;
  word-wrap: break-word"

}


/* Base container */
.mobile-menu-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: "Helvetica Neue", sans-serif;
  background-color: #f9f9f9;
  border-bottom: 1px solid #ddd;
  position: absolute;
}

/* Menu header */
.mobile-menu-header {
  width: 100%;
  padding: 12px;
  background: #2e6bcc;
  color: white;
  font-size: 17px;
  font-weight: 400;
  cursor: pointer;
  text-align: left;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Content hidden by default */
.mobile-menu-content {
  margin-top: 10px;
  margin-bottom: 10px;
  width: 100%;
  display: none;
  flex-direction: column;
  overflow: hidden;
  animation: mobile-menu-slide-down 0.3s ease-out forwards;
}

/* Menu items */
.mobile-menu-item {
  padding: 20px 16px;
  font-size: 17px;
  color: #061f34;


  cursor: pointer;
}

.mobile-menu-item:hover {
  background: #F1F6FF;
  color: #2E6BCC;
}

.mobile-menu-item-active {
  background: #F1F6FF;
  color: #2E6BCC;
}

.width60 {
  max-width: 600px;
  padding: 2rem 4rem;
}

/* Animation for sliding */
@keyframes mobile-menu-slide-down {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.services-div {
  display: flex;
  flex-direction: column;
  flex: 2;
  padding: 2rem 0rem 2rem 2rem
}

.round-arrow-div {
  display: flex;
  flex: 1;
  padding: 2rem
}

.service-header-title {
  margin-top: 0px;
  margin-bottom: 0px;
}

@media (max-width: 991px) {
  .width60 {
    width: unset;
    padding: 1rem 2rem;
  }

  .services-div {
    padding: 0 0 2rem 0;
  }

  .round-arrow-div {
    display: flex;
    flex: 0;
    padding: 0
  }

  .service-header-title {
    font-weight: 400;
  }

}

.menu-item {
  justify-content: center;
  padding: 1rem;
  margin: 1rem;
}

.contactBtn {
  cursor: pointer;
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  visibility: hidden;
}

#loader.visible {
  visibility: visible;
}

select,
input {
  font-size: 14px;
  height: 3em;
  line-height: 3em;
  padding: 0;
  -webkit-appearance: none;
}


.spinner {
  border: 5px solid #f3f3f3;
  border-top: 5px solid #3498db;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

input::-webkit-contacts-auto-fill-button {
  visibility: hidden;
  display: none !important;
  pointer-events: none;
  position: absolute;
  right: 0;
  padding: 10px;
  line-height: 40px;
  -webkit-appearance: none;
}

input {
  -webkit-appearance: none;
}

/* Overlay style */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* Semi-transparent black */
  display: none;
  z-index: 999;
}

/* Cookie banner style */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 65%;
  max-width: unset;
  background-color: #ffffff;
  border: 1px solid #dcdcdc;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  z-index: 1000;
  display: none;
  /* Hidden initially */
}

.cookie-banner__text {
  font-size: 15px;
  color: #4a4a4a;
  margin-bottom: 15px;
  line-height: 1.5;
  text-align: left;
}

/* Button styles */
.cookie-banner__button {
  background-color: #333330;
  color: #ffffff;
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.cookie-container1 {
  display: flex;
  flex-direction: row;
}

.cookie-banner__button:hover {
  background-color: #333330;
  transform: scale(1.05);
}

.cookie-banner__button:focus {
  outline: none;
  box-shadow: 0 0 5px #007bff;
}

.cookie-banner__delete {
  background-color: transparent;
  margin-left: 10px;
  font-weight: 700;
  color: #333330;
}

.cookie-banner__delete:hover {
  background-color: transparent;
}


.icon {
  position: absolute;
  right: 10px;
  top: 65%;
  transform: translateY(-50%);
  font-size: 18px;
  color: #666;
  pointer-events: none;

  /* Ensure icon doesn't block input clicks */
}

.icon-img {
  height: 20px;
  width: 20px;

}

/* Hide Native Picker Icon */
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
  opacity: 0;
  pointer-events: none;
  /* Disable interaction with native icon */
}

.privacy-container {
  padding: 4rem 12rem;
}


.privacy-container p {
  font: 300 16px/25px Helvetica Neue;
}

.privacy-container li {
  margin-top: 20px;
  font: 300 16px/25px Helvetica Neue;
}


/* Mobile-specific adjustments */
@media (max-width: 991px) {
  .cookie-banner {
    width: 80%;
    max-width: 400px;
    padding: 15px;
  }

  .cookie-container1 {
    flex-direction: column
  }

  .cookie-banner__text {
    font-size: 14px;
  }


  .cookie-banner__button {
    padding: 10px 20px;
    font-size: 14px;
  }

  .cookie-banner__delete {
    padding: 10px 20px;
  }

  .privacy-container{
    padding: 1rem 2rem;
  }

  .privacy-container h2{
font: bold 22px/60px Helvetica Neue;
  }
  
}



