:root {
  --DarkBlue: hsl(233, 26%, 24%);
  --LimeGreen: hsl(136, 65%, 51%);
  --BrightCyan: hsl(192, 70%, 51%);
  --GrayishBlue: hsl(233, 8%, 62%);
  --LightGrayishBlue: hsl(220, 16%, 96%);
  --VeryLightGray: hsl(0, 0%, 98%);
  --White: hsl(0, 0%, 100%);
  --Fontsize: 18px;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: var(--Fontsize);
}

/*Navegador*/
.navBar {
  width: 100%;
  height: 10vh;
  background: var(--White);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  z-index: 100;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.navBar .navBar__container-logo {
  left: 0;
  padding-top: 1.5%;
  margin-left: 10%;
}

.navBar .navBar__menu {
  padding-top: 1.5%;
  width: 30%;
  margin-left: -5%;
}

.navBar .navBar__menu .close {
  display: none;
}

.navBar .navBar__menu .navBar__menu--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  list-style: none;
  padding-left: .1%;
}

.navBar .navBar__menu .navBar__menu--list .navBar__menu--listItem a {
  text-decoration: none;
  color: var(--GrayishBlue);
}

.navBar .request_button {
  margin-top: .5%;
  margin-right: 12%;
}

.navBar .hamburguer {
  display: none;
}

.request_button {
  width: 125px;
  height: 45px;
  border: none;
  border-radius: 25px;
  background: -webkit-gradient(linear, left top, right top, from(var(--LimeGreen)), to(var(--BrightCyan)));
  background: linear-gradient(to right, var(--LimeGreen), var(--BrightCyan));
  outline: none;
  cursor: pointer;
}

.container {
  width: 100%;
  height: 80vh;
}

/* Hero */
.hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 80vh;
}

.hero .hero__container {
  height: 100%;
}

.hero .hero__container .hero__container--text {
  width: 120%;
  height: 80%;
  padding-top: 40%;
  padding-left: 35%;
}

.hero .hero__container .hero__container--text .hero__container--title {
  font-size: 50px;
  font-weight: 400;
  color: var(--DarkBlue);
  margin-bottom: 5%;
}

.hero .hero__container .hero__container--text .hero__container--subtitle {
  font-size: var(--Fontsize);
  color: var(--GrayishBlue);
  margin-bottom: 5%;
}

.hero .hero__container--img {
  top: 0;
  right: 0;
  background-image: url("../../images/bg-intro-desktop.svg");
  position: absolute;
  height: 80%;
  width: 60%;
}

.hero .hero__container--img .hero__container--img_mobile {
  width: 100%;
  height: 130%;
  overflow: hidden;
}

.hero .hero__container--img .hero__container--img_mobile .img {
  top: -15%;
  position: relative;
  right: -17%;
  width: 100%;
  height: 120%;
  z-index: 1;
}

.why {
  background-color: var(--LightGrayishBlue);
  padding-left: 10%;
}

.why .why__container--text {
  padding-top: 7%;
}

.why .why__container--title {
  font-size: 50px;
  font-weight: 400;
  color: var(--DarkBlue);
  margin-bottom: 2%;
}

.why .why__container--subtitle {
  font-size: var(--Fontsize);
  color: var(--GrayishBlue);
}

.why .reasons__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: 12%;
  margin-top: 4%;
}

.why .reasons__container .reasons__card {
  display: block;
  width: 25%;
  height: 100%;
}

.why .reasons__container .reasons__card .reason__card--title {
  margin: 4% 0;
  font-size: 22px;
  color: var(--DarkBlue);
}

.why .reasons__container .reasons__card .reason__card--body {
  font-size: var(--Fontsize);
  color: var(--GrayishBlue);
}

/* articles */
.articles_section {
  margin-bottom: 10%;
  padding-left: 10%;
}

.articles_section .article__section--title {
  padding-top: 10%;
  margin-bottom: 2%;
}

.articles_section .articles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: 8%;
}

.articles_section .articles .article__card {
  width: 25%;
  display: block;
}

.articles_section .articles .article__card .article__card--img {
  width: 90%;
  height: 40%;
}

.articles_section .articles .article__card .article__card--text {
  padding-left: 10%;
}

.articles_section .articles .article__card .article__card--text .article__card--by {
  margin-top: 10%;
  font-size: 12px;
  color: var(--GrayishBlue);
}

.articles_section .articles .article__card .article__card--text .article__card--title {
  font-size: var(--Fontsize);
  color: var(--DarkBlue);
  margin: 3% 0;
}

.articles_section .articles .article__card .article__card--text .article__card--body {
  font-size: 15px;
  color: var(--GrayishBlue);
}

.articles_section .articles .article__card .article__card--text .article__card--title:hover {
  color: var(--LimeGreen);
  cursor: pointer;
}

footer {
  width: 100%;
  height: 30vh;
  background: var(--DarkBlue);
  padding: 3% 0;
}

footer .footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  margin-bottom: 2%;
}

footer .footer__container .footer__container--logos {
  width: 15%;
  text-align: left;
}

footer .footer__container .footer__container--logos img {
  margin-bottom: 10%;
}

footer .footer__container .footer__container--logos .footer__container--logosSocial {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

footer .footer__container .footer__container--logos .footer__container--logosSocial a {
  padding-right: 5%;
  cursor: pointer;
}

footer .footer__container .footer__container--logos .footer__container--logosSocial a img:hover {
  fill: var(--LimeGreen);
}

footer .footer__container .footer__container--itemsMenu {
  width: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -10%;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

footer .footer__container .footer__container--itemsMenu .footer__items--list {
  list-style: none;
}

footer .footer__container .footer__container--itemsMenu .footer__items--list li {
  margin-bottom: 10%;
}

footer .footer__container .footer__container--itemsMenu .footer__items--list a {
  text-decoration: none;
  font-size: var(--Fontsize);
  width: 100%;
  height: 30%;
  margin: 5% 0;
  color: var(--White);
}

footer .footer__container .footer__container--itemsMenu .footer__items--list a:hover {
  color: var(--LimeGreen);
  cursor: pointer;
}

footer .footer__container .footer__container--button {
  text-align: right;
}

footer .footer__container .footer__container--button p {
  margin-top: 10%;
  color: var(--GrayishBlue);
}

footer .attribution {
  font-size: 11px;
  text-align: center;
  margin-top: 3%;
  bottom: 0;
}

footer .attribution a {
  text-decoration: none;
  color: var(--White);
}

footer .attribution p {
  color: var(--White);
}

@media screen and (max-width: 600px) {
  .navBar {
    width: 100%;
    height: 10vh;
    background: var(--White);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    z-index: 100;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .navBar .navBar__container-logo {
    left: 0;
    padding-top: 5%;
    margin-left: 5%;
  }
  .navBar .navBar__menu {
    position: absolute;
    border: 1px solid black;
    height: 250px;
    width: 110%;
    background: var(--White);
    -webkit-transition: -webkit-transform .5s ease-in-out;
    transition: -webkit-transform .5s ease-in-out;
    transition: transform .5s ease-in-out;
    transition: transform .5s ease-in-out, -webkit-transform .5s ease-in-out;
    -webkit-transform: translateY(-120%);
            transform: translateY(-120%);
  }
  .navBar .navBar__menu .navBar__menu--list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -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;
  }
  .navBar .navBar__menu .navBar__menu--list .close {
    color: #000000;
    display: inline-block;
    position: relative;
    margin-bottom: 3%;
    right: 0;
  }
  .navBar .navBar__menu .navBar__menu--listItem {
    margin: 2% 0;
  }
  .navBar .expand {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  .navBar .hamburguer {
    margin-top: 6%;
    margin-right: 10%;
    width: 7%;
    height: 20%;
    display: inline-block;
  }
  .navBar .request_button {
    display: none;
  }
  /* Hero */
  .hero {
    display: block;
    height: 150vh;
  }
  .hero .hero__container {
    width: 100%;
    height: 100%;
    text-align: center;
  }
  .hero .hero__container .hero__container--text {
    width: 100%;
    height: 50%;
    position: absolute;
    margin-top: 150%;
    padding-left: 1%;
  }
  .hero .hero__container--img {
    top: 0;
    width: 100%;
    height: 700px;
    position: absolute;
    background-image: url("../../images/bg-intro-mobile.svg");
    background-size: 100% 100%;
  }
  .hero .hero__container--img .hero__container--img_mobile .img {
    top: 0;
    left: 0;
    z-index: 1;
    position: relative;
    width: 100%;
    height: 80%;
  }
  .container {
    width: 100%;
    height: 250vh;
  }
  /* why */
  .why {
    padding-top: 25%;
  }
  .why .why__container--text {
    text-align: center;
    margin: 20% 10% 20% 0;
  }
  .why .reasons__container {
    display: block;
    margin-top: 20%;
  }
  .why .reasons__container .reasons__card {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 25%;
  }
  .why .reasons__container .reasons__card .reason__card--title {
    font-size: 25px;
  }
  .why .reasons__container .reasons__card .reason__card--body {
    font-size: 22px;
    margin-bottom: 5%;
  }
  /* articles */
  .articles_section {
    margin-bottom: 10%;
    padding-left: 10%;
  }
  .articles_section .article__section--title {
    padding-top: 10%;
    margin-bottom: 2%;
  }
  .articles_section .articles {
    display: block;
    margin-right: 5%;
  }
  .articles_section .articles .article__card {
    width: 100%;
    display: block;
  }
  .articles_section .articles .article__card .article__card--img {
    margin-top: 10%;
  }
  .articles_section .articles .article__card .article__card--text {
    width: 90%;
    padding-left: 10%;
  }
  .articles_section .articles .article__card .article__card--text .article__card--by {
    margin-top: 5%;
    font-size: 15px;
    color: var(--GrayishBlue);
  }
  .articles_section .articles .article__card .article__card--text .article__card--title {
    font-size: 20px;
    color: var(--DarkBlue);
    margin: 3% 0;
  }
  .articles_section .articles .article__card .article__card--text .article__card--body {
    font-size: var(--Fontsize);
    color: var(--GrayishBlue);
  }
  .articles_section .articles .article__card .article__card--text .article__card--title:hover {
    color: var(--LimeGreen);
    cursor: pointer;
  }
  /* Footer */
  footer {
    height: 60vh;
  }
  footer .footer__container {
    display: block;
    text-align: center;
  }
  footer .footer__container .footer__container--logos {
    width: 50%;
    display: block;
    padding: 3%;
    margin-left: 25%;
  }
  footer .footer__container .footer__container--logos img {
    margin: 10%;
  }
  footer .footer__container .footer__container--logos .footer__container--logosSocial {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  footer .footer__container .footer__container--logos .footer__container--logosSocial a {
    padding-right: 10%;
  }
  footer .footer__container .footer__container--itemsMenu {
    display: block;
    margin-left: 35%;
    text-align: center;
  }
  footer .footer__container .footer__container--itemsMenu .footer__items--list {
    list-style: none;
  }
  footer .footer__container .footer__container--itemsMenu .footer__items--list li {
    margin-bottom: 8%;
  }
  footer .footer__container .footer__container--itemsMenu .footer__items--list a {
    text-decoration: none;
    font-size: 18px;
    width: 100%;
    height: 30%;
    margin: 5% 0;
    color: var(--White);
  }
  footer .footer__container .footer__container--itemsMenu .footer__items--list a:hover {
    color: var(--LimeGreen);
    cursor: pointer;
  }
  footer .footer__container .footer__container--button {
    margin: 5% 0;
    text-align: center;
  }
  footer .footer__container .footer__container--button p {
    margin-top: 4%;
    font-size: 12px;
    color: var(--GrayishBlue);
  }
  footer .attribution {
    font-size: 11px;
    text-align: center;
    margin-top: .3%;
    bottom: 0;
  }
  footer .attribution a {
    text-decoration: none;
    color: var(--White);
  }
  footer .attribution p {
    color: var(--White);
  }
}
/*# sourceMappingURL=index.css.map */