/* Media Queries Mixin
**********************/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  background-color: #F9F9FF;
  color: #383838;
}

h1, h2, h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

h2, h3 {
  line-height: 1.6rem;
}

p {
  font-family: "Quicksand", sans-serif;
}

ul {
  list-style: none;
}

header {
  position: relative;
  width: 100%;
  height: 80vh;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

header .back-img {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url(../images/bg.svg);
  background-position: right 1.0rem;
  background-size: auto;
  background-repeat: no-repeat;
}

@media only screen and (min-width: 1200px) {
  header .back-img {
    background-position: right center;
  }
}

header .header-content {
  width: 100%;
  height: 100%;
  padding: 0 2.8rem;
  padding-top: 6.0rem;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .header-content h1 {
  font-size: 7vh;
  font-weight: 400;
  line-height: 7vh;
  margin-bottom: 2.5rem;
}

header .header-content p {
  margin-bottom: 4vh;
  font-size: 2.0rem;
  font-weight: 400;
  line-height: 4vh;
}

@media only screen and (min-width: 1200px) {
  header {
    height: 80vh;
  }
}

.navigation {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 90px;
  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;
}

.navigation .logo {
  padding-left: 1.0rem;
}

.navigation .logo img {
  width: 140px;
}

.navigation .menu {
  padding-right: 1.0rem;
  display: none;
}

.navigation .menu-burger {
  margin-right: 1.0rem;
  width: 30px;
  height: 30px;
  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-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.navigation .menu-burger__line {
  width: 100%;
  height: 0.1rem;
  display: block;
  background-color: #5C6AC4;
}

.navigation .menu-burger__line--short {
  width: 80%;
}

.menu-mobile {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100vh;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #222831;
  color: #ffffff;
}

.menu-mobile__list {
  width: 100%;
  height: 70vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Poppins", sans-serif;
  font-size: 2.1rem;
  font-weight: 200;
  line-height: 2.8rem;
  text-transform: uppercase;
}

.menu-mobile__list ul {
  list-style: none;
}

button {
  width: 180px;
  height: 60px;
  -webkit-font-smoothing: antialiased;
  background-color: #383838;
  border: none;
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  letter-spacing: 0.1rem;
  color: #ffffff;
  text-transform: uppercase;
}

.btn--card {
  background-color: #5C6AC4;
}

.btn--footer {
  width: 100%;
  height: 30px;
  background-color: #00fbff;
  color: #111827;
}

@media only screen and (min-width: 768px) {
  .btn--footer {
    width: 300px;
  }
}

.container {
  width: 100%;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container__title {
  margin-bottom: 1.8rem;
}

.container__description {
  font-size: 1.2rem;
}

.container__section {
  width: 100%;
  height: 480px;
  padding: 0 2.6rem;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.container__section--grad-blue {
  background: -webkit-gradient(linear, left top, right bottom, from(#1C82FF), color-stop(#4A9CFF), to(#8958D1));
  background: linear-gradient(to bottom right, #1C82FF, #4A9CFF, #8958D1);
}

.container__section--grad-blue h3, .container__section--grad-blue p, .container__section--grad-blue ul {
  color: #ffffff;
}

.container__section--grad-pink {
  background: -webkit-gradient(linear, left top, right bottom, from(#8958D1), color-stop(#6D5CDB), to(#ff406c));
  background: linear-gradient(to bottom right, #8958D1, #6D5CDB, #ff406c);
}

.container__section--grad-pink h3, .container__section--grad-pink p, .container__section--grad-pink ul {
  color: #ffffff;
}

.container__section--grad-green {
  background: -webkit-gradient(linear, right bottom, left top, from(#00D9A3), color-stop(#47C1BF), to(#3cfecd));
  background: linear-gradient(to left top, #00D9A3, #47C1BF, #3cfecd);
}

.container__section--grad-green h3, .container__section--grad-green p, .container__section--grad-green ul {
  color: #ffffff;
}

.container__section--desing {
  width: 100%;
  height: 480px;
  background-image: url(../images/d-grafico.jpg);
  background-position: center;
  background-size: auto;
  background-repeat: no-repeat;
}

.container__section--marketing {
  width: 100%;
  height: 480px;
  background-image: url(../images/m-digital.jpg);
  background-position: center;
  background-size: auto;
  background-repeat: no-repeat;
}

.container__section--technology {
  width: 100%;
  height: 480px;
  background-image: url(../images/d-app.jpg);
  background-position: center;
  background-size: auto;
  background-repeat: no-repeat;
}

.container__title-service {
  font-family: "Quicksand", sans-serif;
  font-size: 2.0rem;
  line-height: 2.0rem;
  margin-bottom: 1.4rem;
}

.container__info {
  font-size: 1.3rem;
  line-height: 1.5rem;
  margin-bottom: 1.0rem;
  font-weight: 300;
}

.container__list {
  font-size: 1.0rem;
  line-height: 1.2rem;
  font-weight: 300;
  font-family: "Poppins", sans-serif;
}

.container--full-grad1 {
  background: -webkit-gradient(linear, left top, right bottom, from(#1C82FF), color-stop(#4A9CFF), to(#8958D1));
  background: linear-gradient(to bottom right, #1C82FF, #4A9CFF, #8958D1);
}

.container--full-grad1 h3, .container--full-grad1 p, .container--full-grad1 ul {
  color: #ffffff;
}

.container--full-grad3 {
  background: -webkit-gradient(linear, left top, right bottom, from(#8958D1), color-stop(#6D5CDB), to(#ff406c));
  background: linear-gradient(to bottom right, #8958D1, #6D5CDB, #ff406c);
}

.container--full-grad3 h3, .container--full-grad3 p, .container--full-grad3 ul {
  color: #ffffff;
}

.container--footer {
  padding: 0;
  margin-bottom: 1.8rem;
}

@media only screen and (min-width: 768px) {
  .container {
    padding: 0 8.2rem;
    padding-top: 2.5rem;
  }
}

.container--inter {
  height: 400px;
  padding: 0 2.8rem;
}

.card-group {
  padding: 0 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.card {
  width: 100%;
}

.card__body {
  padding: 0 1.8rem;
  background-color: #ffffff;
  border-radius: 2.5rem;
  margin-top: 1.2rem;
  text-align: center;
}

.card__img {
  max-width: 100%;
}

.card__title {
  margin-bottom: 1.2rem;
  font-size: 1.6rem;
}

.card__description {
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
}

.card button {
  margin-bottom: 1.6rem;
}

.form {
  height: 60vh;
  font-size: 1.2rem;
  color: #7b808b;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
}

.form__input {
  width: 100%;
  height: 2.2rem;
  margin-top: 1.5rem;
  border: none;
  border-bottom: 0.1rem #979ca7 solid;
  background-color: transparent;
}

.form__input--area {
  height: 8.0rem;
  margin-bottom: 2.5rem;
}

.form__input--email {
  text-transform: lowercase;
}

.form__input:focus {
  outline: none;
}

.form-container {
  width: 100%;
  height: 450px;
}

footer {
  position: relative;
  padding: 0 1.2rem;
  padding-top: 7.0rem;
  min-height: 100vh;
  background-color: #1a202c;
  color: #F9F9FF;
}

footer h2 {
  font-size: 2.0rem;
  font-weight: 600;
  line-height: 1.8rem;
  margin-bottom: 2.8rem;
}

@media only screen and (min-width: 768px) {
  footer h2 {
    width: 300px;
  }
}

footer h3 {
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}

footer input {
  width: 100%;
  height: 1.8rem;
  margin-bottom: 0.3rem;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  text-transform: lowercase;
}

@media only screen and (min-width: 768px) {
  footer input {
    width: 300px;
  }
}

@media only screen and (min-width: 768px) {
  footer p {
    width: 300px;
  }
}

footer path {
  fill: none;
  stroke: url(#linearGradient);
  stroke-width: 4;
  stroke-dasharray: 930 1000;
}

footer .copy {
  width: 100%;
  height: 2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .copy h4 {
  font-size: 0.8rem;
  font-family: "Poppins", sans-serif;
  font-weight: 200;
}

footer .suscribe {
  margin-top: .8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

footer .footer-logo {
  width: 8.0rem;
}

.links {
  width: 100%;
}

.links .links__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  list-style: none;
  font-size: 2.4rem;
}

.links .links__list--center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.links span {
  display: block;
  width: 24px;
  height: 24px;
  margin-right: 12px;
}

.links__ig {
  background-color: #ffffff;
  -webkit-mask-image: url(../images/ig.svg);
          mask-image: url(../images/ig.svg);
  mask-mode: auto;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: auto;
          mask-size: auto;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}

.links__yt {
  background-color: #ffffff;
  -webkit-mask-image: url(../images/yt.svg);
          mask-image: url(../images/yt.svg);
  mask-mode: auto;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: auto;
          mask-size: auto;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}

.links__fb {
  background-color: #ffffff;
  -webkit-mask-image: url(../images/fb.svg);
          mask-image: url(../images/fb.svg);
  mask-mode: auto;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: auto;
          mask-size: auto;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}

.links__in {
  background-color: #ffffff;
  -webkit-mask-image: url(../images/in.svg);
          mask-image: url(../images/in.svg);
  mask-mode: auto;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: auto;
          mask-size: auto;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}

.links__tw {
  background-color: #ffffff;
  -webkit-mask-image: url(../images/tw.svg);
          mask-image: url(../images/tw.svg);
  mask-mode: auto;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: auto;
          mask-size: auto;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}

.links__pt {
  background-color: #ffffff;
  -webkit-mask-image: url(../images/pt.svg);
          mask-image: url(../images/pt.svg);
  mask-mode: auto;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: auto;
          mask-size: auto;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
/*# sourceMappingURL=styles.css.map */