@import url("https://fonts.googleapis.com/css2?family=Public+Sans:wght@300;400;700&display=swap");
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px; }
  @media screen and (max-width: 768px) {
    .container {
      padding: 0 24px; } }

.section:nth-child(odd) {
  background-color: #F4F5F7; }

.title {
  color: #2D314D;
  font-size: 40px;
  font-weight: 300;
  line-height: 64px; }
  @media screen and (max-width: 768px) {
    .title {
      font-size: 32px;
      line-height: 37px;
      text-align: center; } }

.banner__image {
  position: absolute;
  top: -180px;
  right: -20%;
  z-index: 2; }

.banner__mobile {
  position: absolute;
  z-index: 2;
  right: -114px;
  top: -40px;
  height: 900px;
  width: 730px; }

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0; }

body {
  font-family: 'Public Sans', sans-serif;
  font-size: 18px;
  background-color: #FAFAFA;
  position: relative; }

li {
  list-style: none; }

a {
  color: #9597A5;
  text-decoration: none; }

p {
  color: #9597A5;
  font-size: 18px;
  line-height: 28px;
  font-weight: 300; }
  @media screen and (max-width: 768px) {
    p {
      font-size: 15px;
      line-height: 25px; } }

header {
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
  background-color: #FFFFFF;
  position: relative;
  z-index: 100; }
  header .header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px; }
    @media screen and (max-width: 768px) {
      header .header__inner nav {
        display: none; } }
    header .header__inner nav .nav__list {
      display: flex; }
      header .header__inner nav .nav__list .nav__item {
        font-size: 14px;
        line-height: 16px;
        margin-left: 30px;
        transition: all 0.3s ease-in; }
        header .header__inner nav .nav__list .nav__item:first-child {
          margin-left: 0; }
        header .header__inner nav .nav__list .nav__item:last-child {
          margin-right: 0; }
        header .header__inner nav .nav__list .nav__item:hover::after {
          content: '';
          background: linear-gradient(135deg, #33D35E 0%, #2AB6D9 100%);
          display: block;
          height: 4px;
          position: relative;
          top: 30px;
          margin-bottom: -4px; }
        header .header__inner nav .nav__list .nav__item .nav__link {
          transition: color 0.3s ease-in;
          position: relative; }
          header .header__inner nav .nav__list .nav__item .nav__link:hover {
            color: #2D314D; }
          @media screen and (max-width: 768px) {
            header .header__inner nav .nav__list .nav__item .nav__link {
              display: none; } }
    @media screen and (max-width: 768px) {
      header .header__inner .nav__cta {
        display: none; } }

.btn {
  border: 0;
  border-radius: 22px;
  color: #FFFFFF;
  font-family: 'Public Sans';
  font-size: 14px;
  font-weight: 700;
  height: 44px;
  width: auto;
  letter-spacing: 0;
  line-height: 28px;
  padding: 8px 28px;
  transition: all 0.3s ease-in;
  cursor: pointer; }

.btn__primary {
  background: linear-gradient(135deg, #33D35E 0%, #2AB6D9 100%);
  transition: all 0.3s ease-in; }
  .btn__primary:hover {
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #7EC988 0%, #76bcc9 100%); }

.burger {
  border: none;
  display: none;
  height: 12px;
  width: 24px;
  background-color: transparent;
  padding: 12px 0;
  box-sizing: border-box;
  cursor: pointer; }
  @media screen and (max-width: 768px) {
    .burger {
      display: initial; } }
  .burger .line {
    background-color: #2D314D;
    height: 1px;
    width: 24px;
    position: relative;
    transition: all 0.3s ease-in; }
    .burger .line::before, .burger .line::after {
      content: '';
      background-color: #2D314D;
      height: 1px;
      width: 24px;
      position: absolute;
      display: block;
      transition: all 0.2s ease-in; }
    .burger .line::before {
      top: -5px; }
    .burger .line::after {
      top: 5px; }
    .burger .line.active {
      background-color: transparent; }
      .burger .line.active::before {
        top: 0;
        transform: rotate(45deg); }
      .burger .line.active::after {
        top: 0;
        transform: rotate(-45deg); }

.overlay {
  background-image: linear-gradient(180deg, #2D314D 0%, rgba(45, 49, 77, 0) 100%);
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  width: 100vw;
  padding-top: 64px;
  position: absolute;
  z-index: 100; }
  @media (min-width: 800px) {
    .overlay {
      display: none; } }

.is-modalOpen.overlay {
  opacity: 1;
  visibility: visible; }

.mobile__nav {
  background-color: #FFFFFF;
  border-radius: 4px;
  padding: 32px;
  margin: auto;
  width: 90%;
  opacity: 0;
  visibility: hidden;
  z-index: 100;
  animation: slideIn 1s forwards;
  z-index: 9;
  display: flex;
  justify-content: space-between;
  flex-direction: column; }
  .mobile__nav ul {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; }
    .mobile__nav ul li {
      margin-bottom: 24px;
      text-align: center; }
      .mobile__nav ul li:last-child {
        margin-bottom: 0; }
      .mobile__nav ul li a {
        color: #2D314D;
        font-size: 18px;
        font-weight: 400; }
        .mobile__nav ul li a:hover {
          color: #30C88F; }

.is-mobileOpen.mobile__nav {
  animation: slideIn 1s;
  opacity: 1;
  visibility: visible; }

@keyframes slideIn {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%); }
  100% {
    transform: translateY(0);
    opacity: 1;
    visibility: visible; } }

.article__card {
  background-color: #FFFFFF;
  border-radius: 5px; }
  .article__card .article__top {
    height: 200px;
    width: 100%; }
    .article__card .article__top img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 5px 5px 0 0; }
  .article__card .article__bottom {
    padding: 24px; }
    .article__card .article__bottom .article__author {
      color: #9597A5;
      font-size: 10px; }
    .article__card .article__bottom .article__header {
      color: #2D314D;
      font-size: 16px;
      line-height: 20px;
      font-weight: 400;
      margin-bottom: 8px; }
    .article__card .article__bottom .article__info {
      color: #9597A5;
      font-size: 13px;
      line-height: 18px;
      font-weight: 400; }

footer {
  background-color: #2D314D; }
  footer .footer__inner {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 48px 0; }
    footer .footer__inner .footer__social {
      margin-right: 130px; }
      footer .footer__inner .footer__social .footer__logo {
        margin-bottom: 55px; }
      footer .footer__inner .footer__social .footer__icons {
        display: flex; }
        footer .footer__inner .footer__social .footer__icons .footer__icon {
          display: inline-block;
          height: 20px;
          width: 20px;
          margin-right: 13px;
          cursor: pointer;
          transition: color 0.3s ease-in; }
          footer .footer__inner .footer__social .footer__icons .footer__icon:last-of-type {
            margin-right: 0; }
          footer .footer__inner .footer__social .footer__icons .footer__icon:hover {
            fill: #30C88F; }
    footer .footer__inner .footer__navigation ul {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      width: 160px;
      margin-right: 30px; }
      footer .footer__inner .footer__navigation ul li {
        margin-bottom: 8px; }
        footer .footer__inner .footer__navigation ul li a {
          color: #FFFFFF;
          font-size: 15px;
          font-weight: 300;
          line-height: 26px;
          transition: color 0.3s ease-in; }
          footer .footer__inner .footer__navigation ul li a:hover {
            color: #30C88F; }
    footer .footer__inner .footer__copyright {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      margin-left: auto; }
      footer .footer__inner .footer__copyright button {
        margin-bottom: 24px; }
      footer .footer__inner .footer__copyright p {
        color: #9597A5;
        font-size: 15px;
        font-weight: 300;
        line-height: 26px; }
    @media screen and (max-width: 768px) {
      footer .footer__inner {
        flex-direction: column;
        justify-content: center; }
        footer .footer__inner .footer__social {
          margin-right: 0; }
          footer .footer__inner .footer__social div {
            display: flex;
            justify-content: center; }
          footer .footer__inner .footer__social .footer__logo {
            margin-bottom: 32px;
            width: 140px;
            height: 20px; }
          footer .footer__inner .footer__social .footer__icons {
            margin-bottom: 32px; }
            footer .footer__inner .footer__social .footer__icons .footer__icon {
              width: 24px;
              height: 24px; }
        footer .footer__inner .footer__navigation ul {
          margin-right: 0; }
          footer .footer__inner .footer__navigation ul li {
            text-align: center; }
        footer .footer__inner .footer__copyright {
          margin: 32px 0 0;
          justify-content: center;
          align-items: center; } }

.hero {
  position: relative;
  overflow: hidden; }
  .hero .banner__image {
    position: absolute;
    right: 0; }
  .hero .hero__text {
    width: 450px; }
    .hero .hero__text h1 {
      color: #2D314D;
      font-size: 56px;
      line-height: 64px;
      margin-bottom: 24px;
      padding-top: 140px; }
    .hero .hero__text p {
      margin-bottom: 36px; }
    .hero .hero__text button {
      margin-bottom: 170px; }
    @media screen and (max-width: 768px) {
      .hero .hero__text {
        width: 100%; }
        .hero .hero__text h1 {
          text-align: center;
          font-size: 40px;
          line-height: 47px;
          max-width: 320px;
          margin: 0 auto 16px;
          padding-top: 322px; }
        .hero .hero__text p {
          text-align: center;
          font-size: 15px;
          width: 100%; }
        .hero .hero__text button {
          display: block;
          text-align: center;
          margin: 0 auto 88px; } }
  .hero:before {
    content: '';
    position: absolute;
    background-image: url(../../images/bg-intro-desktop.svg);
    background-repeat: no-repeat;
    top: -260px;
    right: -950px;
    display: block;
    height: 1000px;
    width: 100%; }
    @media (max-width: 765px) {
      .hero:before {
        background-image: url(../../images/bg-intro-mobile.svg);
        background-size: contain;
        top: -200px;
        left: 0;
        right: 0; } }
  .hero:after {
    content: '';
    position: absolute;
    background-image: url(../../images/image-mockups.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    top: -120px;
    left: 0;
    right: 0;
    height: 402px;
    width: 100%; }
    @media (min-width: 765px) {
      .hero:after {
        background-image: url(../../images/image-mockups.png);
        left: 1290px;
        position: absolute;
        width: 700px;
        height: 1000px;
        top: -160px; } }

.about {
  padding: 96px 0 94px;
  z-index: -2; }
  @media screen and (max-width: 768px) {
    .about {
      padding: 64px 24px 0; } }
  .about .about__inner h2 {
    margin-bottom: 16px; }
  .about .about__inner .subtitle {
    width: 635px;
    margin-bottom: 72px; }
    @media screen and (max-width: 768px) {
      .about .about__inner .subtitle {
        width: 100%;
        text-align: center; }
        .about .about__inner .subtitle .subtitle {
          margin-bottom: 56px; } }
  .about .about__inner .about__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    grid-gap: 0 30px; }
    .about .about__inner .about__grid .about__feature {
      padding: 0;
      margin-bottom: 32px; }
      .about .about__inner .about__grid .about__feature div {
        display: flex;
        justify-content: flex-start; }
        @media (max-width: 768px) {
          .about .about__inner .about__grid .about__feature div {
            justify-content: center; } }
      .about .about__inner .about__grid .about__feature .about__image {
        height: 72px;
        width: 72px;
        margin-bottom: 40px; }
      .about .about__inner .about__grid .about__feature h3 {
        font-size: 24px;
        font-weight: 300;
        line-height: 28px;
        margin-bottom: 26px; }
      @media screen and (max-width: 768px) {
        .about .about__inner .about__grid .about__feature h3, .about .about__inner .about__grid .about__feature p {
          text-align: center; } }

.articles {
  padding: 80px 0; }
  .articles .articles__inner h2 {
    margin-bottom: 40px; }
  .articles .articles__inner .articles__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px; }
