:root {
  --color-4: #021038;
  --color: white;
  --color-2: #333;
  --color-3: #0147c2;
  --color-5: #eeb11e;
  --color-6: #0210381a;
}

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

body {
  color: #333;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8em;
}

h2 {
  color: var(--color-4);
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Gloock, sans-serif;
  font-size: 2.5em;
  font-weight: 400;
  line-height: 1.2em;
}

p {
  margin-bottom: 20px;
}

.wrap {
  justify-content: space-between;
  width: 90%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.wrap.flex {
  max-width: 1600px;
}

.eyebrow {
  color: #74a1f0;
  letter-spacing: 5px;
  text-transform: uppercase;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1.5em;
  display: flex;
}

.page-wrapper {
  background-image: radial-gradient(circle at 100% 0, #0000, #02103885 30%), url('../images/download.jpg');
  background-position: 0 0, 50% 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  min-height: 0;
  max-height: 900px;
  padding-top: 5%;
  padding-bottom: 5%;
  display: flex;
  position: relative;
}

.txt-div {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.txt-div._40 {
  width: 50%;
  color: var(--color);
  padding: 0;
}

.eyebrow-icon {
  width: 25px;
  margin-right: 10px;
}

.h2-white {
  color: var(--color);
  font-size: 3em;
  font-weight: 400;
}

.lt-blue {
  color: #74a1f0;
}

.grid-2 {
  grid-template-rows: auto auto auto auto auto auto;
  grid-template-columns: 1fr;
  width: 45%;
}

.grid-item {
  flex-flow: column;
  display: flex;
}

.grid-top {
  color: var(--color);
  align-items: center;
  line-height: 1.2em;
  display: flex;
}

.number-div {
  width: 50px;
  min-width: 50px;
  height: 50px;
  color: var(--color);
  background-image: url('../images/icons8-hexagon-64.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 100%;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  padding: 0;
  display: flex;
}

.number-div.solid {
  min-width: 50px;
  color: var(--color-4);
  background-image: url('../images/icons8-hexagon-40.png');
}

.vertical-line {
  background-color: #74a1f0;
  width: 2px;
  height: 25px;
  margin-left: 22px;
}

@media screen and (max-width: 991px) {
  .wrap.flex {
    flex-flow: column;
  }

  .page-wrapper {
    height: auto;
    max-height: none;
    padding-bottom: 5%;
  }

  .txt-div._40 {
    width: 100%;
  }

  .grid-2 {
    grid-column-gap: 34px;
    grid-row-gap: 34px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

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

  .vertical-line {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  h2, .h2-white {
    font-size: 2em;
  }

  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 479px) {
  .grid-2 {
    grid-column-gap: 29px;
    grid-row-gap: 29px;
    grid-template-columns: 1fr;
  }
}

@keyframes h2FadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.h2-white {
  animation: h2FadeIn 2s ease forwards;
}

@keyframes gridItemFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.grid-item {
  animation: gridItemFadeIn 3.5s ease forwards;
}

