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

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

body {
  margin: 0;
  padding: 0;
  font-size: 1.125rem;
  line-height: 1.3;
  color: #9698a6;
  font-weight: 300;
  font-family: "Public Sans", sans-serif;
}

body.noscroll {
  overflow: hidden;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
}

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

.container {
  margin: 0 auto;
  max-width: 1200px;
  padding-top: 2.25rem;
  padding-bottom: 2.23rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.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 {
  font-size: 0.875rem;
  display: inline-block;
  padding: 0.875rem 2.1875rem;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  font-weight: 400;
  background: -webkit-gradient(linear, left top, right top, from(#31d35c), to(#2bb7da));
  background: linear-gradient(to right, #31d35c, #2bb7da);
  color: white;
  -webkit-transition: opacity 300ms ease-in-out;
  transition: opacity 300ms ease-in-out;
}

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

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

@media (min-width: 64em) {
  .hide-for-desktop {
    display: none;
  }
}

.header {
  z-index: 10;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  background-color: white;
}

.header nav {
  padding-top: 1.0625rem;
  padding-bottom: 1.0625rem;
  background: white;
}

.header__logo img {
  width: 8.8125rem;
  height: 1.375rem;
}

.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__menu {
  position: absolute;
  width: calc(100% - 3rem);
  margin-top: calc(2rem + 5px + 1.5rem);
  background: white;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 5px;
  padding: 1.625rem;
}

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

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

.header__links a:not(:last-child) {
  margin-right: 32px;
}

.header__links a::before {
  content: "";
  display: block;
  position: absolute;
  height: 5px;
  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;
}

.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);
}

.overlay {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#2d314d), to(transparent));
  background-image: linear-gradient(#2d314d, transparent);
  top: 3.75rem;
  right: 0;
  bottom: 0;
  left: 0;
}

.has-fade {
  visibility: hidden;
}

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

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

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

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

@keyframes fade-out {
  from {
    visibility: visible;
    opacity: 1;
  }
  99% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: hidden;
    opacity: 0;
  }
}

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

.hero {
  margin-top: 3.8rem;
  background-color: #fafafa;
}

@media (min-width: 64em) {
  .hero {
    margin-top: 5rem;
    position: relative;
  }
}

.hero .container-hero {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
}

@media (min-width: 64em) {
  .hero .container-hero {
    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("./../images/bg-intro-mobile.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 17.5rem;
}

@media (min-width: 64em) {
  .hero__img {
    height: 41rem;
    min-height: 41rem;
    -webkit-box-flex: 3;
        -ms-flex: 3;
            flex: 3;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    background: none;
    position: static;
  }
}

@media (min-width: 64em) {
  .hero__img::after {
    content: "";
    background-image: url("./../images/bg-intro-desktop.svg");
    background-position: left -70px top -250px;
    position: absolute;
    width: 55%;
    right: 0;
    height: 100%;
  }
}

.hero__img::before {
  content: "";
  position: absolute;
  background-image: url("./../images/image-mockups.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
  height: 100%;
  width: calc(100% - 3rem);
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}

@media (min-width: 64em) {
  .hero__img::before {
    z-index: 5;
    height: 115%;
    top: 0;
    width: 50%;
    bottom: 0;
    right: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    background-size: 110%;
    background-position: left 60px bottom -30px;
  }
}

.hero__text {
  padding-top: 3rem;
  padding-bottom: 3rem;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
}

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

.hero__text h1 {
  font-weight: 300;
  color: #2d314d;
  line-height: 1.15;
  font-size: 2.3125rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 64em) {
  .hero__text h1 {
    font-size: 3.5rem;
  }
}

.hero__text p {
  line-height: 1.5;
  margin-bottom: 2.25rem;
}

.container-feature {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 64em) {
  .container-feature {
    padding-left: 0;
    padding-right: 0;
  }
}

.feature {
  background-color: #f3f4f6;
  padding-top: 6rem;
  padding-bottom: 5rem;
  text-align: center;
}

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

.feature__title {
  color: #2d314d;
  font-weight: 400;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 64em) {
  .feature__title {
    font-size: 2.1rem;
  }
}

.feature__description {
  font-weight: 400;
  margin-bottom: 3rem;
  margin-top: 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

@media (min-width: 64em) {
  .feature__description {
    font-size: 1.1rem;
  }
}

.feature__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(300px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-row-gap: 1.5rem;
}

.feature__item {
  padding: 0 1rem;
}

.feature__item img {
  margin-bottom: 1.5rem;
}

.feature__item h3 {
  color: #2d314d;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.feature__item p {
  font-size: 0.9rem;
  line-height: 1.6;
  font-weight: 400;
}

@media (min-width: 64em) {
  .feature__item p {
    font-size: 1rem;
  }
}

.latest-article {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}

.latest-article__title {
  color: #2d314d;
  font-weight: 300;
  text-align: center;
}

@media (min-width: 40em) {
  .latest-article__title {
    text-align: left;
    font-weight: 400;
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }
}

.latest-article__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(250px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

@media (min-width: 40em) {
  .latest-article__grid {
    grid-gap: 1rem;
  }
}

.article {
  background-color: white;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  overflow: hidden;
  -webkit-box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  -webkit-transition: -webkit-transform 200ms ease-in-out;
  transition: -webkit-transform 200ms ease-in-out;
  transition: transform 200ms ease-in-out;
  transition: transform 200ms ease-in-out, -webkit-transform 200ms ease-in-out;
}

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

.article__img {
  position: relative;
  display: block;
  padding-bottom: 80%;
  background-color: red;
}

.article__img > img {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
}

.article__content {
  padding: 1rem;
}

.article__author {
  font-size: 0.9rem;
}

.article__title {
  color: #2d314d;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.article__description {
  margin-top: 0;
}

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

@media (min-width: 64em) {
  .footer {
    padding-bottom: 0;
  }
}

@media (min-width: 64em) {
  .footer__grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 1rem;
  }
}

.footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 2rem;
}

.footer__social > a {
  margin-left: 1rem;
}

.footer__links {
  margin-bottom: 2rem;
  grid-column: span 2;
}

@media (min-width: 64em) {
  .footer__links {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

.footer__links a {
  display: block;
  color: #f3f4f6;
  margin-bottom: 1rem;
  font-size: 1rem;
}

@media (min-width: 64em) {
  .footer__links a {
    text-align: left;
  }
}

.social__img {
  margin-bottom: 1rem;
  height: auto;
}

@media (min-width: 64em) {
  .copy {
    text-align: right;
  }
}

.copy p {
  margin-top: 2rem;
  color: #9698a6;
}
/*# sourceMappingURL=style.css.map */