html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*,
*::after,
*::before {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  margin: 0;
  overflow-x: hidden;
}

body {
  font-family: "Public Sans", sans-serif;
  font-size: 18px;
  font-weight: 300;
}

.nav {
  position: relative;
  background-color: white;
  height: 5em;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  z-index: 3;
}

.mobile {
  display: none;
}

.nav__logo {
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}

.nav__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.nav__tags p {
  color: #9698a6;
  padding: 1em;
  font-weight: 400;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
}

.nav__tags p:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 100%;
  bottom: 0;
  background: #31d35c;
  height: 4px;
  -webkit-transition-property: right;
  transition-property: right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.nav__tags p:hover:before {
  right: 0;
}

.nav__tags p a {
  text-decoration: none;
  color: #9698a6;
}

.nav__button {
  padding: 1em 2em;
  border: none;
  border-radius: 50px;
  color: white;
  background: -webkit-gradient(linear, left top, right top, from(#31d35c), to(#2bb7da));
  background: linear-gradient(to right, #31d35c, #2bb7da);
}

.nav__button:hover {
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  opacity: 0.6;
}

.div__hero-section {
  background: #fafafa;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: 80vh;
  background-image: url("../images/bg-intro-desktop.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top -300px right -600px;
}

.div__hero-section .div__svg {
  width: 100%;
}

.div__hero-section .div__svg img {
  position: absolute;
  top: -36px;
  right: -128px;
}

.div__description {
  width: 50%;
  padding: 7em 8em;
}

.div__description .div__heading {
  padding-bottom: 1em;
}

.div__description .div__heading h1 {
  font-size: 3em;
  font-weight: 400;
  padding: 0.1em;
}

.div__description .div__p {
  line-height: 30px;
  padding-bottom: 2em;
  color: #9698a6;
  text-align: left;
}

.div__easybank {
  background: #f3f4f6;
  padding: 6em 8em;
}

.div__easybank .easybank__cards__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.div__easybank .easybank__cards__container .cards {
  margin: 1em 1em 1em 0;
}

.div__easybank .easybank__cards__container .cards h3 {
  font-weight: 400;
  padding: 1em 0;
}

.div__easybank .easybank__cards__container .cards p {
  font-size: 15px;
  color: #9698a6;
  line-height: 1.5em;
}

.div__easybank .easybank__heading h1 {
  font-weight: 400;
}

.div__easybank .easybank__heading p {
  width: 38em;
  padding: 1em 0 4em 0;
  color: #9698a6;
  line-height: 1.5em;
}

.div__latest__article {
  background: #fafafa;
  padding: 6em 8em;
}

.div__latest__article h1 {
  font-weight: 400;
  padding-bottom: 1em;
}

.div__latest__article .easybank__cards__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.div__latest__article .cards {
  margin: 0 0.5em;
  border-radius: 5px;
}

.div__latest__article .article__img {
  width: 15em;
  height: 10em;
  z-index: 0;
}

.div__latest__article .cards-content {
  padding: 1em;
}

.div__latest__article .cards-content h3 {
  font-weight: 400;
  padding: 0.4em 0;
}

.div__latest__article .cards-content .author {
  font-size: 12px;
  color: #9698a6;
}

.div__latest__article .cards-content p {
  color: #9698a6;
  font-size: 14px;
}

.div__about__us {
  background-color: #2d314d;
  padding: 3em 8em 2em 8em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.div__about__us .about__us__left {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.div__about__us .about__us__left .logo {
  padding-bottom: 2.5em;
}

.div__about__us .about__us__left .icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.div__about__us .about__us__left p {
  font-size: 14px;
  color: #f3f4f6;
  line-height: 2.25em;
}

.div__about__us .about__us__right {
  width: 50%;
  text-align: right;
}

.div__about__us .about__us__right p {
  font-size: 12px;
  color: #9698a6;
  padding: 2em 0;
}

.attribution {
  font-size: 14px;
  text-align: center;
  padding: 1em;
}

.attribution a {
  color: #3e52a3;
}

@media screen and (max-width: 992px) {
  .desktop {
    display: none;
  }
  .div__easybank,
  .div__latest__article,
  .div__description,
  .div__about__us {
    padding: 0;
  }
  .nav {
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
  .nav .nav__logo {
    padding: 1em 0 1em 1em;
  }
  .mobile__nav__tags {
    position: absolute;
    z-index: 100;
    width: 100%;
    height: 100vh;
  }
  .mobile__nav__tags .menu__overlay {
    position: absolute;
    height: 100vh;
    width: 100%;
    z-index: -200;
    background: #020024;
    background: -webkit-gradient(linear, left top, left bottom, from(#020024), color-stop(40%, black), color-stop(85%, white));
    background: linear-gradient(180deg, #020024 0%, black 40%, white 85%);
    opacity: 0.4;
  }
  .mobile__nav__tags .nav__tags {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: white;
    width: 100%;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    margin: 1em;
    border-radius: 5px;
    padding: 1em 0;
    z-index: 200;
  }
  .mobile__nav__tags .nav__tags p {
    color: #2d314d;
    line-height: 0.5em;
  }
  .mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .menu {
    position: absolute;
    right: 2em;
    top: 1em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 1.5em;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
  .disable {
    display: none;
  }
  .close__btn {
    background-image: url(../images/icon-close.svg);
    background-size: 2em;
    background-repeat: no-repeat;
  }
  .menu__top,
  .menu__middle,
  .menu__bottom {
    height: 2px;
    width: 1.5em;
    background-color: #2d314d;
  }
  .div__hero-section {
    background-image: url(../images/bg-intro-mobile.svg);
    background-size: contain;
    background-position: top -60px right 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100vh;
    z-index: 0;
  }
  .div__hero-section .nav__button {
    margin-bottom: 2em;
    margin: 0 auto;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  .div__hero-section .div__svg {
    width: 100%;
  }
  .div__hero-section .div__svg img {
    position: absolute;
    top: -9%;
    right: 0;
    left: 5%;
  }
  .div__description {
    width: 100%;
    position: relative;
    top: 40%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .div__description .div__heading {
    padding-top: 2em;
  }
  .div__description .div__heading h1 {
    font-size: 2em;
  }
  .div__description .div__p {
    font-size: 14px;
    line-height: 30px;
    padding: 0 1em 1em 1em;
    color: #9698a6;
    text-align: center;
  }
  .div__svg {
    left: 0.6em;
    top: -24px;
  }
  .div__svg img {
    height: 22em;
  }
  .div__easybank {
    padding: 8em 0;
    text-align: center;
  }
  .div__easybank .easybank__heading {
    width: 100%;
  }
  .div__easybank .easybank__heading p {
    font-size: 16px;
    width: 100%;
    padding: 1em 1.5;
  }
  .div__easybank .easybank__cards__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .div__easybank .easybank__cards__container .cards {
    margin: 0 auto;
    padding: 0.5em 1em;
  }
  .div__latest__article {
    background-color: #fafafa;
    width: 100%;
  }
  .div__latest__article h1 {
    font-weight: 400;
    text-align: center;
    padding: 1em 0;
  }
  .div__latest__article .easybank__cards__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 90%;
    margin: 0 auto;
  }
  .div__latest__article .easybank__cards__container .cards {
    background-color: #fff;
    border-radius: 5px;
    margin: 1em 0;
  }
  .div__latest__article .easybank__cards__container .cards .article__img {
    height: 10em;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .div__latest__article .easybank__cards__container .cards .cards-content {
    padding: 1em;
  }
  .div__latest__article .easybank__cards__container .cards .cards-content h3 {
    font-weight: 400;
    padding: 0.4em 0;
  }
  .div__latest__article .easybank__cards__container .cards .cards-content .author {
    font-size: 12px;
    color: #9698a6;
  }
  .div__latest__article .easybank__cards__container .cards .cards-content p {
    color: #9698a6;
    font-size: 14px;
  }
  .div__about__us {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  .div__about__us .about__us__left,
  .div__about__us .about__us__right {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .div__about__us .logo {
    padding: 1.5em 0 !important;
  }
  .div__about__us .icons {
    padding-bottom: 1em;
  }
  .div__about__us .nav__button {
    margin: 1em 0;
  }
}
/*# sourceMappingURL=style.css.map */