/** General Styles **/
body {
  margin: 0;
  font-family: "Metropolis", "Arial", sans-serif;
  color:  #102A43;
}

.yellow-400 {
  color: #F7C948;
}

.blue-500 {
  color: #2680C2;
}

.blueGrey900 {
  color: #102A43;
}

.blueGrey50 {
  color: #F0F4F8;
}

h1 {
  font-size: 32px;
  font-weight: 800;
}

h2 {
  font-size: 24px;
}

a {
  text-decoration: none;
  color: inherit;
}

a:not(.nav-link):hover {
  text-decoration: underline;
}

.contained {
  padding-left: 32px;
  padding-right: 32px;
  max-width: 1366px;
  margin: auto;
}

@media screen and (min-width: 1024px) {
  .contained {
    padding-left: 80px;
    padding-right: 80px;
  }
}

button.outlined {
  border: 2px solid #FFFFFF;
  border-radius: 6px;
  font-weight: 600;
  padding: .65rem 2.25rem;
  font-size: 18px;
  background-color: transparent;
  color: #F0F4F8;
  cursor: pointer;
  -webkit-transition: background-color 200ms ease-in, color 200ms ease-in;
  -ms-transition: background-color 200ms ease-in, color 200ms ease-in;
  transition: background-color 200ms ease-in, color 200ms ease-in;
}


button {
  font-family: "Metropolis", "Arial", sans-serif;
}

button.outlined:hover {
  background-color: #FFFFFF;
  color: #003E6B
}

button.dark {
  border: 2px solid #102A43;
  color: #102A43;
}

button.dark:hover {
  background-color: #102A43;
  color: #F0F4F8;
}

button.normal {
  padding: .65rem 1.25rem;
}

.underline {
  text-decoration: underline;
}

section:not(.hero) {
  padding-top: 64px;
}

/** Nav bar styling **/
nav {
  background-color: #003E6B;
  padding: 1.5rem 1rem;
  font-weight: 500;
  font-size: 16px;
  max-width: calc(1366px - 160px - 48%) !important;   
}

.brand {
  width: 125px;
}

.nav-item-container {
  margin-top: 16px;
  display: none;
  flex-direction: column;
  align-items: center;
  list-style-type: none;
  padding-left: 0;
}

.nav-item {
  margin: 8px auto;
  display: inline;
}

.nav-link {
  text-decoration: none;
  color: #F0F4F8;
}

.nav-link.active {
  color: #BCCCDC;
}

.nav-link.active:hover {
  color: #F0F4F8;
}

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

.navbar-toggle {
  margin-top: -8px;
  float: right;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.8);
  background-color: transparent;
  border: none;
  box-shadow: none;
}

.navbar-toggle i {
  font-size: 32px;
}

.active-nav-items {
  display: flex;
}


@media screen and (min-width: 768px) {

  nav {
    font-size: 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 90%;
  }

  .brand-container {
    width: 10em;
    margin-right: 4em;
  }

  .brand {
    width: 100%;
  }
  
  .nav-item-container {
    display: block;
    margin-top: 0;
    margin-bottom: 4px;
  }
  
  .nav-item {
    margin-right: 24px;
  }

  .nav-item:last-child {
    margin-right: 0px;
  }

  .navbar-toggle {
    display: none;
  }
}

/** end nav styling **/

/** Hero **/

.hero {
  display: flex;
  flex-direction: column;
  background-color: #003E6B;
}

.hero-image {
  background: linear-gradient(0deg, rgba(38, 128, 194, 0.18), rgba(38, 128, 194, 0.18)), url("./assets/hero.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100%;
  max-height: 560px;
}

.hero-content .content-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 40px;
  padding-bottom: 80px;
  max-width: calc(1366px - 160px - 48%);
}

.hero-content .content-container .content {
  max-width: 700px;
}

.hero h1 {
  margin-bottom: 8px;
}

.hero h2 {
  margin-top: 8px;
  font-weight: 600;
  line-height: 140%;
}

@media screen and (min-width: 1024px) {
  .hero {
    flex-direction: row;
  }

  .hero-image {
    clip-path: polygon(13% 0, 100% 0%, 100% 100%, 0% 100%);
    height: 550px;
    width: 38%;
  }

  .hero-content {
    width: 62%;
  }

  .hero-content .content-container {
    width: 94%;
    justify-content: center;
    min-height: 280px;
    max-height: calc(550px - 80px);
  }
}

/** features **/

.features-text h1 {
  font-weight: 900;
  font-size: 32px;
}

.features-text p {
  font-weight: 300;
  font-size: 20px;
  line-height: 130%;
}

.feature h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 16px 0;
}

.feature p {
  font-weight: 300;
  color: #46515C;
  font-size: 18px;
  line-height: 130%;
}

.features-text {
  margin-bottom: 48px;
}

.feature:not(:last-child) {
  margin-bottom: 40px;
}

.features-container {
  padding-bottom: 64px;
}

@media screen and (min-width: 1024px) {
  .features-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    column-gap: 80px;
    padding-bottom: 0;
  }

  .features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: max-content;
    column-gap: 64px;
    row-gap: 64px;
  }

  .feature {
    margin-bottom: 0 !important;
  }

  .feature p {
    margin-bottom: 0;
  }

  .circles {
    background-image: url("./assets/circle.svg");
    height: 150px;
    background-repeat: no-repeat;
  }

  .features-text {
    margin-bottom: 0;
  }

  .feature {
    margin-bottom: 0;
  }
}

/** temp banner **/

.temp {
  min-height: 330px;
  padding-top: 0px !important;
  background-color: #F1F0F4;
}

.temp-image {
  background: linear-gradient(270deg, #F1F0F4 0%, rgba(241, 240, 244, 0) 100%), url("assets/temp.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 275px
}

.temp-content {
  padding: 56px 24px;
}

.temp-content h1 {
  margin-top: 0;
}

.temp-content p {
  font-size: 20px;
  font-weight: 300;
  line-height: 130%;
}

@media screen and (min-width: 1024px) {
  .temp {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 64px;
  }

  .temp-content {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }

  .temp-content h1 {
    margin-top: 0;
    margin-bottom: 16px;
  }
}

/** process **/

section.process {
  padding-bottom: 64px;
}

.process h1 {
  margin-top: 0px;
  margin-bottom: 48px;
}

.process h2 {
  font-weight: 800;
  font-size: 24px;
}

.process p {
  font-size: 18px;
  line-height: 135%;
  font-weight: 400;
  color: #334E68;
}

.process p strong {
  color: #102A43;
}

.process-grid {
}

.process-image {
  width: 100%;
  height: 25vh;
  border-radius: 12px;
  object-fit: cover;
}

.process a {
  text-decoration: none;
  color: inherit;
}

.process a h2 {
  font-weight: 600;
  margin-bottom: 0;
}

@media screen and (min-width: 1024px) {
  .process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 64px;
  }

  .process-image {
    height: 220px;
  }
}

/** banner **/

.banner {
  background-color: #003E6B;
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.banner .contained {
  display: flex;
  flex-direction: column-reverse;
}

.banner h1 {
  font-size: 40px;
  font-weight: 600;
  line-height: 120%;
  max-width: 600px;
}

.banner-image {
  width: 275px;
  margin: auto;
}

@media screen and (min-width: 1024px) {
  .banner .contained {
    display: grid;
    grid-template-columns: 1fr 25vw;
    column-gap: 80px;
  }

  .banner-image {
    margin: 0;
    justify-self: end;
  }
}

/** footer **/
footer {
  padding-top: 64px;
  display: flex;
  flex-direction: column-reverse;
}

footer p {
  line-height: 120%;
}

footer img {
  height: 65px;
}

.footer-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-menu {
  justify-self: center;
  font-weight: 500;
  color: #334E68;
  font-size: 18px;
  margin-bottom: 32px;
}

.footer-menu .group-title {
  margin-bottom: 24px;
}

.footer-menu a {
  margin-bottom: 16px;
}

@media screen and (min-width: 1024px) {
  footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 120px;
  }

  .footer-menu {
    margin-bottom: 0;
  }
}