@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  width: 100%;
  font-family: "Roboto", sans-serif;
  background-color: #f6f8fc;
}

.header {
  background-color: #172755;
  color: #f6f8fc;
  padding-bottom: 4em;
}

.header .nav {
  width: 100%;
  height: 4em;
  padding: 5px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .nav .logo {
  font-size: 2rem;
}

.header .nav .btn-back {
  text-decoration: none;
  padding: 10px 20px;
  border: 2px solid #1565d8;
  background-color: transparent;
  color: #f6f8fc;
  border-radius: 10px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.header .nav .btn-back:hover {
  background-color: #1565d8;
}

.header__content {
  width: 80%;
  margin: 0 auto;
}

.header__content .title {
  font-size: 2rem;
  font-weight: 500;
  margin: 1.5em 0;
}

.header__content p {
  font-size: 1.2rem;
  line-height: 2;
  margin: 0.5em 0;
}

.main {
  min-height: 50vh;
  width: 100%;
  background-color: #f6f8fc;
  color: #172755;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.main .card {
  width: 25em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 1em 1em;
}

.main .card .img {
  height: 4em;
  width: auto;
}

.main .card__title {
  font-weight: 500;
  font-size: 1.6rem;
  padding: 1em 0;
}

.main .card__content {
  text-align: center;
  line-height: 2;
}

.footer {
  width: 100%;
  padding: 4rem 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 80vh;
  background-color: #172755;
  color: #f6f8fc;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer .title {
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.footer .feature {
  font-size: 1.4rem;
  opacity: 0.8;
}
/*# sourceMappingURL=style.css.map */