.has-fade {
  visibility: hidden;
}

@-webkit-keyframes fadeIn {
  from {
    visibility: hidden;
    opacity: 0;
  }
  1% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: visible;
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    visibility: hidden;
    opacity: 0;
  }
  1% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: visible;
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation: fadeIn 300ms ease-in-out forwards;
          animation: fadeIn 300ms ease-in-out forwards;
}

@-webkit-keyframes fadeOut {
  from {
    visibility: visible;
    opacity: 1;
  }
  99% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: visible;
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    visibility: visible;
    opacity: 1;
  }
  99% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: visible;
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation: fadeOut 300ms ease-in-out forwards;
          animation: fadeOut 300ms ease-in-out forwards;
}

html {
  font-size: 62.5%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*,
*::after,
*::before {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  padding: 0;
  margin: 0;
  color: #9698a6;
  font-size: 1.8rem;
  font-family: 'Public Sans', sans-serif;
  line-height: 1.3;
  font-weight: 300;
  overflow-x: hidden;
}

body.noscroll {
  overflow: hidden;
}

@media (min-width: 1024px) {
  body {
    font-size: 2rem;
  }
}

h1,
h2,
h3 {
  margin-top: 0px;
  font-weight: 300;
  line-height: 1.15;
  color: #2d314d;
}

h1 {
  margin-bottom: 2.4rem;
}

@media (min-width: 1024px) {
  h1 {
    font-size: 5.2rem;
  }
}

h2 {
  font-size: 3rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 1024px) {
  h2 {
    font-size: 3.6rem;
    margin-bottom: 3.6rem;
  }
}

p {
  line-height: 1.5;
  margin-bottom: 3.6rem;
}

a,
a:hover,
a:visited {
  text-decoration: none;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-jc-sb {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex-jc-c {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex-ai-c {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

button,
.button {
  padding: 1.5rem 3.3rem;
  border-radius: 50px;
  cursor: pointer;
  background: -webkit-gradient(linear, left top, right top, from(#31d35c), to(#2bb7da));
  background: linear-gradient(to right, #31d35c, #2bb7da);
  border: none;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  display: inline-block;
  -webkit-transition: opacity 300ms ease-in-out;
  transition: opacity 300ms ease-in-out;
}

button:hover,
.button:hover {
  opacity: 0.75;
}

@media (min-width: 1024px) {
  .hide-for-pc {
    display: none;
  }
}

@media (max-width: 1023px) {
  .hide-for-mobile {
    display: none;
  }
}

.container {
  max-width: 111rem;
  margin: 0 auto;
}

.container--pall {
  padding-top: 7rem;
  padding-bottom: 7rem;
  padding-left: 2.4rem;
  padding-right: 2.4rem;
}

@media (min-width: 1024px) {
  .container--pall {
    padding-top: 9rem;
    padding-bottom: 9rem;
  }
}

.container--py {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

@media (min-width: 1024px) {
  .container--py {
    padding-top: 9rem;
    padding-bottom: 9rem;
  }
}

.container--px {
  padding-left: 2.4rem;
  padding-right: 2.4rem;
}

.container--pt {
  padding-top: 7rem;
}

@media (min-width: 1024px) {
  .container--pt {
    padding-top: 9rem;
  }
}

.container--pb {
  padding-bottom: 7rem;
}

@media (min-width: 1024px) {
  .container--pb {
    padding-bottom: 9rem;
  }
}

.container--pl {
  padding-left: 2.4rem;
}

.container--pr {
  padding-right: 2.4rem;
}

.header.open .overlay {
  display: block;
}

.header.open .header__toggle > span:first-child {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.header.open .header__toggle > span:nth-child(2) {
  opacity: 0;
}

.header.open .header__toggle > span:last-child {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.header nav {
  padding-top: 1.7rem;
  padding-bottom: 1.7rem;
  position: relative;
  background-color: #fff;
}

.header .overlay {
  display: none;
  opacity: 0;
  position: fixed;
  top: 0px;
  right: 0;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#2d314d), to(transparent));
  background: linear-gradient(#2d314d, transparent);
}

.header__logo img {
  width: 14.1rem;
  height: 2.2rem;
}

.header__menu {
  background-color: #fff;
  padding: 2.6rem;
  margin: 2.4rem;
  border-radius: 6px;
  position: absolute;
  width: calc(100% - 5.2rem);
  z-index: 999;
}

.header__menu a {
  color: #2d314d;
  padding: 1rem;
  display: block;
  text-align: center;
}

.header__toggle > span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: #2d314d;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  -webkit-transform-origin: 3px 1px;
          transform-origin: 3px 1px;
}

.header__toggle > span:not(:last-child) {
  margin-bottom: 5px;
}

.header__links a {
  font-size: 1.4rem;
  color: #9698a6;
  -webkit-transition: color 200ms ease-in-out;
  transition: color 200ms ease-in-out;
  position: relative;
}

.header__links a:not(:last-child) {
  margin-right: 3.2rem;
}

.header__links a::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 5px;
  display: block;
  left: 0;
  right: 0;
  bottom: -30px;
  background: -webkit-gradient(linear, left top, right top, from(#31d35c), to(#2bb7da));
  background: linear-gradient(to right, #31d35c, #2bb7da);
  opacity: 0;
  -webkit-transition: opacity 300ms ease-in-out;
  transition: opacity 300ms ease-in-out;
}

.header__links a:hover {
  color: #2d314d;
}

.header__links a:hover::before {
  opacity: 1;
}

.hero {
  background-color: #fafafa;
}

@media (min-width: 1024px) {
  .hero .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.hero__img {
  position: relative;
  background-image: url("../../dist/images/bg-intro-mobile.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 28rem;
}

@media (min-width: 640px) {
  .hero__img {
    min-height: 25rem;
    background-position: center 60%;
  }
}

@media (min-width: 1024px) {
  .hero__img {
    -webkit-box-flex: 3;
        -ms-flex: 3;
            flex: 3;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    height: 65.5rem;
    background-image: none;
  }
}

@media (min-width: 1024px) {
  .hero__img::before {
    content: '';
    position: absolute;
    height: 100%;
    background-image: url("../../dist/images/bg-intro-desktop.svg");
    background-repeat: no-repeat;
    background-position: center bottom;
    width: 150%;
    background-size: 122%;
    background-position: 0% 83%;
  }
}

.hero__img::after {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  background-image: url("../../dist/images/image-mockups.png");
  background-size: 93%;
  background-repeat: no-repeat;
  background-position: center bottom;
}

@media (min-width: 640px) {
  .hero__img::after {
    background-size: 52%;
  }
}

@media (min-width: 1024px) {
  .hero__img::after {
    height: 120%;
    width: 120%;
    background-size: 94%;
    background-position: center 150%;
    left: 22%;
  }
}

.hero__txt {
  text-align: center;
}

@media (min-width: 1024px) {
  .hero__txt {
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    text-align: left;
  }
}

.hero__txt p {
  line-height: 1.15;
  font-size: 1.4rem;
  margin-bottom: 3.6rem;
}

@media (min-width: 1024px) {
  .hero__txt p {
    font-size: 1.8rem;
  }
}

.feature {
  background-color: #f3f4f6;
  text-align: center;
}

@media (min-width: 1024px) {
  .feature {
    text-align: left;
  }
}

.feature__intro {
  margin-bottom: 6rem;
}

@media (min-width: 1024px) {
  .feature__intro {
    width: 60%;
  }
}

@media (min-width: 640px) {
  .feature__grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.feature__item {
  padding: 1.5rem;
}

@media (min-width: 640px) {
  .feature__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
}

@media (min-width: 1024px) {
  .feature__item {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.feature__icon {
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .feature__icon {
    margin-bottom: 4.4rem;
  }
}

.feature__title {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.15;
  color: #2d314d;
  margin-bottom: 1.6rem;
}

@media (min-width: 1024px) {
  .feature__title {
    font-size: 2.4rem;
    margin-bottom: 2.4rem;
  }
}

.feature__desc {
  font-size: 1.4rem;
  line-height: 1.5;
}

.articles {
  background-color: #fafafa;
}

.articles__grid {
  display: -ms-grid;
  display: grid;
  grid-gap: 3rem;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .articles__grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .articles__grid {
    -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr);
  }
}

.articles__items {
  background-color: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
  -webkit-box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.15);
  -webkit-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;
}

.articles__items:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.articles__img {
  height: 20rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.articles__txt {
  padding: 3rem 3rem 4rem 3rem;
  color: #9698a6;
}

@media (min-width: 640px) {
  .articles__txt {
    padding: 3rem 2.5rem;
  }
}

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

.articles__title {
  font-size: 1.7rem;
  line-height: 1.2;
  color: #2d314d;
  margin-bottom: 0.8rem;
}

.articles__desc {
  font-size: 1.3rem;
}

.footer {
  background-color: #2d314d;
  color: white;
  padding: 4rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .footer .container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 2fr 1fr 1fr 2fr;
        grid-template-columns: 2fr 1fr 1fr 2fr;
    -ms-grid-rows: 1fr auto;
        grid-template-rows: 1fr auto;
        grid-template-areas: 'logo links1 links2 btn' 'social links1 links2 copyright';
    justify-items: start;
    gap: 1.6rem;
  }
}

.footer a {
  color: white;
}

.footer__logo {
  display: inline-block;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .footer__logo {
    margin-bottom: 3rem;
  }
}

@media (min-width: 1024px) {
  .footer__logo {
    grid-area: logo;
  }
}

.footer__social {
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .footer__social {
    grid-area: social;
    -ms-flex-item-align: end;
        -ms-grid-row-align: end;
        align-self: end;
    margin-bottom: 0rem;
  }
}

.footer__social a {
  display: inline-block;
  height: 2rem;
}

.footer__social a:not(:last-child) {
  margin-right: 1.6rem;
}

.footer__links {
  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;
  font-size: 1.5rem;
}

@media (min-width: 1024px) {
  .footer__links {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .footer__links.col1 {
    grid-area: links1;
  }
}

.footer__links.col2 {
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .footer__links.col2 {
    grid-area: links2;
  }
}

.footer__links a {
  line-height: 2.25;
  -webkit-transition: color 300ms ease-in-out;
  transition: color 300ms ease-in-out;
}

.footer__links a:hover {
  color: #31d35c;
}

@media (min-width: 1024px) {
  .footer__btn {
    grid-area: btn;
    -ms-grid-column-align: end;
        justify-self: end;
    text-align: right;
  }
}

.footer__btn a.button {
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .footer__btn a.button {
    margin-bottom: 3rem;
  }
}

.footer__copyright {
  font-size: 1.3rem;
  color: #9698a6;
}

@media (min-width: 1024px) {
  .footer__copyright {
    grid-area: copyright;
    -ms-flex-item-align: end;
        -ms-grid-row-align: end;
        align-self: end;
    -ms-grid-column-align: end;
        justify-self: end;
  }
}
/*# sourceMappingURL=index.css.map */