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

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

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

body.noscroll {
  overflow: hidden;
}

p {
  margin: 0;
  line-height: 1.6;
  margin-bottom: 3.5rem;
}

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

h2 {
  font-size: 3.834rem;
  margin-bottom: 2.111875rem;
}

@media (max-width: 767px) {
  h2 {
    font-size: 2.875rem;
  }
}

a, a:visited, a:hover {
  text-decoration: none;
  color: #9698a6;
}

.section-margin {
  margin-bottom: 8.9375rem;
}

.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-ac-c {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container {
  max-width: 1123px;
  margin: 0 auto;
}

.container--pall {
  padding-top: 10rem;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  padding-bottom: 10rem;
}

@media (max-width: 767px) {
  .container--pall {
    padding-bottom: 4.375rem;
    padding-top: 4.375rem;
  }
}

.container--px {
  padding-left: 1.5rem;
  padding-bottom: 10rem;
}

@media (max-width: 767px) {
  .container--px {
    padding-top: 4.375rem;
  }
}

.container--py {
  padding-top: 10rem;
  padding-right: 1.5rem;
}

@media (max-width: 767px) {
  .container--py {
    padding-top: 4.375rem;
  }
}

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

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

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

@media (max-width: 767px) {
  .container--pt {
    padding-top: 4.375rem;
  }
}

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

@media (max-width: 767px) {
  .container--pb {
    padding-bottom: 4.375rem;
  }
}

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

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

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

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

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

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

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

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

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

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

nav {
  padding-top: 18px;
  padding-bottom: 18px;
}

.has-fade {
  visibility: hidden;
}

.header {
  z-index: 1;
  position: -webkit-sticky;
  position: sticky;
  z-index: 1;
  left: 0;
  right: 0;
  top: 0;
  background-color: white;
}

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

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

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

.header__logo img {
  width: 144px;
  height: 22px;
}

.header .toggle__menu {
  display: none;
}

@media (max-width: 767px) {
  .header .toggle__menu {
    display: block;
  }
}

.header .toggle__menu > 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__menu > span:not(:last-child) {
  margin-bottom: 5px;
}

@media (max-width: 767px) {
  .header__links {
    display: none;
  }
}

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

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

.header__links a::before {
  content: "";
  position: absolute;
  height: 5px;
  width: 100%;
  left: 0;
  right: 0;
  bottom: -27px;
  opacity: 0;
  background: -webkit-gradient(linear, left top, right top, from(#31d35c), to(#2bb7da));
  background: linear-gradient(to right, #31d35c, #2bb7da);
}

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

.header__links a:hover::before {
  opacity: 1;
  -webkit-transition: opacity 300ms ease-in;
  transition: opacity 300ms ease-in;
}

@media (max-width: 767px) {
  .header__cta {
    display: none;
  }
}

.header nav {
  position: relative;
  z-index: 9999;
  right: 0;
  left: 0;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

@media (max-width: 767px) {
  .header nav {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }
}

.header__menu {
  position: absolute;
  width: calc(100% - 3.5rem);
  border-radius: 5px;
  padding-bottom: 1.875rem;
  height: 294px;
  margin-top: 1.5rem;
  background-color: white;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.header__menu .link {
  display: block;
  text-align: center;
  color: #2d314d;
  font-size: 1.8rem;
  font-weight: 500;
}

.header .overlay {
  visibility: hidden;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#2d314d), to(transparent));
  background-image: linear-gradient(#2d314d, transparent);
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 60px;
  bottom: 0;
  left: 0;
  right: 0;
}

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

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

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

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

.hero {
  background-color: #fafafa;
}

.hero__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 991px) {
  .hero__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background-color: white;
  }
}

.hero__image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  position: relative;
  background-repeat: no-repeat;
  min-height: 656px;
  background-position: center center;
  background-size: cover;
}

@media (max-width: 991px) {
  .hero__image {
    background-image: url("../images/bg-intro-mobile.svg");
    height: 100%;
    width: 100%;
    top: unset;
    min-height: 509px;
    background-position: center 49%;
    background-size: 113%;
  }
}

@media (max-width: 767px) {
  .hero__image {
    min-height: 37.5rem;
    background-position: center center;
    background-size: cover;
  }
}

.hero__image::before {
  content: "";
  position: absolute;
  height: 90%;
  width: 150%;
  background-image: url("../images/bg-intro-desktop.svg");
  background-size: 97%;
  background-repeat: no-repeat;
  background-position: 0% 83%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 78%;
  top: 0%;
}

@media (max-width: 991px) {
  .hero__image::before {
    display: none;
  }
}

.hero__image::after {
  content: "";
  position: absolute;
  height: 123%;
  width: 114%;
  background-image: url("../images/image-mockups.png");
  background-size: 92%;
  background-repeat: no-repeat;
  background-position: center bottom;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  left: 83%;
  bottom: -23%;
}

@media (max-width: 991px) {
  .hero__image::after {
    background-size: 52%;
    height: 100%;
    width: 100%;
    top: unset;
    left: 50%;
    bottom: unset;
  }
}

@media (max-width: 767px) {
  .hero__image::after {
    background-size: cover;
    height: 100%;
    width: 100%;
  }
}

.hero__text {
  text-align: left;
  max-width: 35.333%;
}

@media (max-width: 991px) {
  .hero__text {
    text-align: center;
    max-width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

@media (max-width: 767px) {
  .hero__text {
    max-width: unset;
  }
}

.hero__text h1 {
  font-size: 5.7rem;
  max-width: 450px;
  margin-bottom: 3rem;
}

@media (max-width: 991px) {
  .hero__text h1 {
    font-size: 5rem;
    max-width: none;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 767px) {
  .hero__text h1 {
    max-width: 384px;
    font-size: 4.313rem;
    font-weight: 300;
    color: #2d314d;
    line-height: 1.15;
    margin-bottom: 2.875rem;
    margin-top: 1rem;
  }
}

.hero__text p {
  max-width: 403px;
  line-height: 1.6;
  margin-bottom: 3.5rem;
}

@media (max-width: 991px) {
  .hero__text p {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .hero__text p {
    font-size: 1.6rem;
    max-width: unset;
    margin-bottom: 3.5rem;
  }
}

.features {
  background-color: #f3f4f6;
  margin-top: -8.95rem;
}

@media (max-width: 991px) {
  .features h2 {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .features h2 {
    max-width: 257.75px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 767px) {
  .features p {
    text-align: center;
    line-height: 1.5;
    font-size: 1.7rem;
  }
}

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

@media (max-width: 767px) {
  .features .feature__grid {
    margin-top: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.features .feature__intro {
  width: 55%;
  margin-bottom: 4.49625rem;
}

@media (max-width: 991px) {
  .features .feature__intro {
    width: unset;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .features .feature__intro {
    padding-top: 2rem;
    margin-bottom: 6.035625rem;
  }
}

@media (max-width: 991px) {
  .features .feature__heading-text {
    max-width: 384px;
    margin-left: auto;
    margin-right: auto;
  }
}

.features .feature__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0.9375rem;
}

@media (max-width: 991px) {
  .features .feature__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .features .feature__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}

.features .feature__icon {
  margin-bottom: 2.669375rem;
}

@media (max-width: 767px) {
  .features .feature__icon {
    text-align: center;
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 767px) {
  .features .feature__icon img {
    height: 7rem;
    width: 7rem;
  }
}

.features .feature__title {
  color: #2d314d;
  font-size: 2.4rem;
  margin-bottom: 2.9rem;
}

@media (max-width: 767px) {
  .features .feature__title {
    margin-bottom: 2rem;
    font-size: 2rem;
    text-align: center;
  }
}

.features .feature__description p {
  font-size: 1.6rem;
  line-height: 1.7;
}

@media (max-width: 767px) {
  .features .feature__description p {
    margin-bottom: 3rem;
  }
}

.articles {
  background-color: #fafafa;
}

.article__item {
  border-radius: 0.3125rem;
  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);
  background-color: white;
}

.article__item:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.article__grid {
  display: -ms-grid;
  display: grid;
  gap: 1.875rem;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 991px) {
  .article__grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .article__grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.article__image {
  height: 200px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.article__text {
  padding: 2.5rem 2rem;
  color: #9698a6;
}

@media (max-width: 767px) {
  .article__text {
    padding: 1.875rem 1.875rem 2.5rem 1.875rem;
  }
}

.article__author {
  margin-bottom: 1rem;
  font-size: 88%;
  line-height: 1.7;
}

.article__title {
  font-size: 1.9rem;
  line-height: 1.2;
  color: #2d314d;
  margin-bottom: 1rem;
}

.article__title:hover {
  color: #31d35c;
}

.article__description {
  font-size: 1.3rem;
  line-height: 20px;
}

.footer {
  display: -ms-grid;
  display: grid;
  background-color: #2d314d;
  color: white;
  -ms-grid-columns: (1fr)[3] 2fr;
      grid-template-columns: repeat(3, 1fr) 2fr;
  -ms-grid-rows: (1fr)[2];
      grid-template-rows: repeat(2, 1fr);
      grid-template-areas: "logo links1 links2 cta" "social links1 links2 cta";
  padding: 4rem;
  gap: 1rem;
  justify-items: start;
}

@media (max-width: 991px) {
  .footer {
    display: block;
    text-align: center;
  }
}

.footer a {
  color: white;
}

.footer__logo {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: logo;
  display: inline-block;
}

@media (max-width: 991px) {
  .footer__logo {
    margin-bottom: 2.5rem;
  }
}

.footer__social {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: social;
  height: 1.25rem;
  -ms-flex-item-align: end;
      -ms-grid-row-align: end;
      align-self: end;
}

@media (max-width: 991px) {
  .footer__social {
    margin-bottom: 3rem;
  }
}

.footer__social a {
  display: inline-block;
}

.footer__social a svg path {
  -webkit-transition: fill 150ms ease-in-out;
  transition: fill 150ms ease-in-out;
}

.footer__social a:hover svg path {
  fill: #31d35c;
}

.footer__social a:hover svg {
  -webkit-transform: rotate(1s);
          transform: rotate(1s);
}

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

.footer__links {
  font-size: 1.5rem;
}

@media (max-width: 991px) {
  .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;
  }
}

.footer__links a {
  display: block;
  line-height: 2.25;
}

@media (max-width: 991px) {
  .footer__links a {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
}

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

.footer__links.col1 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 2;
  grid-area: links1;
}

.footer__links.col2 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 3;
  grid-area: links2;
}

@media (max-width: 991px) {
  .footer__links.col2 {
    margin-bottom: 1.875rem;
  }
}

.footer__cta {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 4;
  grid-area: cta;
  -ms-grid-column-align: end;
      justify-self: end;
  text-align: right;
}

@media (max-width: 991px) {
  .footer__cta {
    margin-top: 3.75rem;
    text-align: center;
  }
}

@media (max-width: 991px) {
  .footer__cta a.button {
    margin-bottom: 1.875rem;
  }
}

.footer__copyright {
  color: #9698a6;
  margin-top: 3rem;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .footer__copyright {
    margin-top: 0;
  }
}
/*# sourceMappingURL=style.css.map */