* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: #17212b;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

header {
  gap: 20px;
}

.d-flex,
.d-inline-flex {
  display: flex;
}

.d-inline-flex {
  display: inline-flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

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

.align-items-start {
  align-items: flex-start;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-md-between {
  justify-content: space-between;
}

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

.text-end {
  text-align: right;
}

.text-decoration-none {
  text-decoration: none;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: #17212b;
  display: inline-block;
  font-weight: 600;
  text-decoration: none;
}

.nav-link:hover {
  color: #124490;
}

.row {
  display: grid;
  gap: 28px;
}

.row-cols-lg-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.col,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8 {
  min-width: 0;
}

.col-lg-5 {
  grid-column: span 5;
}

.col-lg-7 {
  grid-column: span 7;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.my-4 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.my-5 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mt-5 {
  margin-top: 3rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.me-3 {
  margin-right: 1rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-4 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-7 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-4 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.p-5 {
  padding: 3rem;
}

.border-bottom {
  border-bottom: 1px solid #d8e8ef;
}

.gradient-background {
  background: linear-gradient(300deg, #124490, #339fdc, #8cb6cf);
  background-size: 180% 180%;
  animation: gradient-animation 8s ease infinite;
  color: #fff;
}

@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.display-4 {
  font-size: clamp(2.1rem, 6vw, 3.5rem);
}

.display-5 {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
}

.fw-bold {
  font-weight: 700;
}

.fw-medium {
  font-weight: 600;
}

.fs-2 {
  font-size: 1.55rem;
}

.fs-4 {
  font-size: 1.25rem;
}

.lead {
  font-size: 1.2rem;
}

.text-body-emphasis {
  color: #17212b;
}

.text-body-secondary {
  color: #5f6f7f;
}

.gradient-background .text-body-emphasis,
.gradient-background .lead {
  color: #fff;
}

.btn {
  border: 0;
  border-radius: 6px;
  display: inline-flex;
  font-weight: 700;
  line-height: 1;
  padding-bottom: 0.9rem;
  padding-top: 0.9rem;
  text-decoration: none;
}

.btn-light {
  background: #fff;
  color: #124490;
}

.btn-primary {
  background: #124490;
  color: #fff;
}

.btn-lg {
  font-size: 1rem;
}

.icon-square {
  align-items: center;
  background: #eef5f8;
  border-radius: 0.75rem;
  display: inline-flex;
  height: 3rem;
  justify-content: center;
  width: 3rem;
}

.feature-mark {
  color: #124490;
  font-size: 1rem;
  font-weight: 800;
}

.northpath-section {
  background: #f7fbfd;
  border-bottom: 1px solid #d8e8ef;
  border-top: 1px solid #d8e8ef;
}

.northpath-section .row {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.section-label {
  color: #124490;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bg-body-tertiary {
  background: #f7fbfd;
}

.contact-email a {
  color: #124490;
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration: none;
}

.contact-email a:hover {
  text-decoration: underline;
}

.gradient-background .contact-email a {
  color: #fff;
}

footer {
  color: #5f6f7f;
}

@media (max-width: 800px) {
  header,
  .nav {
    justify-content: center;
  }

  .row,
  .row-cols-lg-3,
  .northpath-section .row {
    grid-template-columns: 1fr;
  }

  .col-lg-5,
  .col-lg-7 {
    grid-column: auto;
  }
}
