@font-face {
    font-family: 'Satoshi';
    src: url('Satoshi-Regular.woff2') format('woff2'),
         url('Satoshi-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi';
    src: url('Satoshi-Medium.woff2') format('woff2'),
         url('Satoshi-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi';
    src: url('Satoshi-Bold.woff2') format('woff2'),
         url('Satoshi-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 10px;
  font-weight: bold;
}

h1 {
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 72px;
  font-weight: 700;
  line-height: 100%;
}

h2 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 40px;
  font-weight: 700;
  line-height: 110%;
}

h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 28px;
  font-weight: 700;
  line-height: 120%;
}

h4 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
  line-height: 120%;
}

h5 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 120%;
}

h6 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 120%;
}

body {
  color: #011f53;
  font-family: Satoshi, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  background-color: #FFFFFF;
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 8px;
  margin: auto;
}

div {
  //border: 1px solid black;
}

p {
  margin-top: 0;
  margin-bottom: 10px;
}

.navbar {
  display: flex;
  justify-content: space-between;
}

.logoname {
  display: inline;
}
.nav-links {
  display: flex;
}

.nav-link {
  display: flex;
  margin-left: 10px;
  height: 100%;
}

.logo-title {
  font-size: 28px;
  font-weight: 700;
  vertical-align: middle;
  color: #2E3C90;
}

.split {
  grid-column-gap: 16px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  padding: 120px 25px;
}


.tagline {
  font-size: 72px;
  font-weight: 700;
  text-align: left;
  line-height: 100%;
}
 
.text {
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
}

.container {
  padding-left: 24px;
  padding-right: 24px;
}

.button {
  height: 60px;
}

.narrow-section {
  padding-top: 80px;
  padding-bottom: 80px;
  overflow: hidden;
}

.narrow-section.no-padd-bottom {
  padding-bottom: 0;
}

.gray-bg {
  background-color: #f0f2f6;
}

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

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

.large-para {
  font-size: 20px;
  line-height: 150%;
}

.opacity-dark-text {
  color: rgba(2, 38, 99, .8);
}

.white-card {
  background-color: #fff;
  padding: 40px;
}

.white-card.centered {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.circle-icon-wrap {
  width: 72px;
  height: 72px;
  background-color: #011f53;
  border-radius: 50%;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: center;
  display: flex;

  img {
    width: 50px;
  }
}

.three-column-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.limit {
  max-width: 650px;
}
.space-top-small {
  margin-top: 20px;
}

.dropdown-icon {
  //border: 1px solid black;
  vertical-align: middle;
  margin-left: 6px;
  margin-top: 10px;
  height: 5px;
  width: 5px;
}

.secondary-nav {
    background-color: #011f53;
    height: 56px;
}

@media (max-width: 700px) {
  .logo-title {
    font-size: 20px;
  }

  .tagline {
    font-size: 40px;
    font-weight: 500;
  }

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

  .large-para {
    font-size: 15px;
  }

  .split {
    display: inline-block;
    padding: 30px 25px;
  }

  .three-column-grid {
    display: block;
  }
}

@media (min-width: 1200px) {
  .logo-title {
    font-size: 28px;
  }

  .tagline {
    font-size: 72px;
    font-weight: 500;
  }

  .large-para {
    font-size: 20px;
  }
}

