@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  text-decoration: none;
  color: gainsboro;
}

a:hover {
  cursor: pointer;
}

html {
  font-size: 100%;
}

/*16px*/
body {
  background: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  line-height: 1.75;
  color: #000000;
}

p {
  margin-bottom: 1rem;
}

h1, h2, h3, h4, h5 {
  margin: 1rem 0 0.38rem;
  font-weight: 400;
  line-height: 1.3;
}

h1 {
  margin-top: 0;
  font-size: 4.209rem;
}

h2 {
  font-size: 3.157rem;
}

h3 {
  font-size: 2.369rem;
}

h4 {
  font-size: 1.777rem;
}

h5 {
  font-size: 1.333rem;
}

small, .text_small {
  font-size: 0.75rem;
}

.subtitle {
  max-width: 75ch;
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-top {
  text-align: top;
}

@media all and (max-width: 768px) {
  h1 {
    font-size: 2.1045rem;
  }
  h2 {
    font-size: 2.8413rem;
  }
  h3 {
    font-size: 1.6583rem;
  }
  h4 {
    font-size: 1.2439rem;
  }
  h5 {
    font-size: 1rem;
  }
}

.bg-gray {
  background: #fbfbfb;
}

nav {
  height: 64px;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 0 16px;
  color: #191919;
  border-bottom: 1px solid #fbfbfb;
}

nav .nav__logo .logo {
  width: 100px;
  height: 40px;
  border-radius: 100%;
  display: block;
}

nav .nav__items {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 12px;
  height: 100%;
  margin: 0 auto 0 64px;
}

nav .nav__items .nav__item {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

nav .nav__items .nav__item a {
  color: #191919;
}

nav .nav__items .nav__item .nav__item_group {
  display: none;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
          box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  border: 1px solid #fbfbfb;
  background: #ffffff;
}

nav .nav__items .nav__item .nav__item_group .nav__item_group_link {
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 125px;
  text-indent: 12px;
  -webkit-transition: all .4s;
  transition: all .4s;
}

nav .nav__items .nav__item .nav__item_group .nav__item_group_link:hover {
  background-color: #fbfbfb;
}

nav .nav__items .nav__item:hover .nav__item_group {
  display: block;
  position: absolute;
  top: 100%;
}

.nav {
  position: relative;
  -webkit-transition: all .4s;
  transition: all .4s;
}

.nav-fixed {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background: #ffffff;
  z-index: 9;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
          box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}

@media all and (max-width: 768px) {
  nav .nav__items {
    display: none;
  }
}

.bg-gray {
  background: #fbfbfb;
}

.btn {
  min-width: 120px;
  background: transparent;
  border-radius: 2px;
  padding: 12px 16px;
}

.btn:hover {
  cursor: pointer;
}

.btn-rounded {
  border-radius: 32px;
}

.btn {
  color: #191919;
}

.btn-black {
  background: #191919;
  color: #ffffff;
}

.btn-primary {
  background: #0064da;
  color: #ffffff;
}

.btn-white {
  background: #ffffff;
  color: #0064da;
}

.btn {
  -webkit-transition: all .4s;
  transition: all .4s;
}

.btn:hover {
  background: #fbfbfb;
}

.btn-black:hover {
  background: #191919;
}

.btn-white:hover {
  background: #fbfbfb;
}

.chip {
  background: white;
  padding: 4px 8px;
  font-size: 14px;
  border-radius: 16px;
  margin: 0 4px;
  border: 1px solid #fafafa;
  font-size: 12px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
          box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}

.chip-active {
  background: #0064da;
  color: #ffffff;
  border: 1px solid #0064da;
}

.bg-gray {
  background: #fbfbfb;
}

.splash-screen {
  max-width: 1000px;
  width: 50vw;
  margin: 32px auto;
  min-height: 500px;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.splash-screen__content .headline {
  font-weight: bold;
}

.splash-screen__content__actions {
  display: block;
  padding: 32px 0 16px 0;
}

.splash-screen__video {
  margin: 32px auto;
  width: 600px;
  position: relative;
}

.splash-screen__video video {
  border-radius: 4px;
  width: 100%;
}

.splash-screen__video__actions {
  bottom: -6px;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

@media screen and (max-width: 768px) {
  .splash-screen {
    width: 100vw;
  }
  .splash-screen__video {
    width: 100%;
  }
  .splash-screen__video video {
    width: calc(100% - 32px);
  }
}

.bg-gray {
  background: #fbfbfb;
}

.how-to {
  max-height: 500px;
  position: relative;
}

.how-to__content {
  max-width: 1000px;
  width: 60vw;
  margin: 0 auto;
}

.how-to::before {
  content: '';
  position: absolute;
  width: 1px;
  background: gainsboro;
  height: 80px;
  display: block;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  left: 50%;
  top: -15%;
}

.how-to img {
  margin: 32px 0;
  width: 600px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
          box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

@media screen and (max-width: 768px) {
  .how-to img {
    width: calc(100% - 32px);
  }
}

.exploring-solutions {
  margin: 128px auto 64px auto;
  text-align: center;
}

.exploring-solutions .cards__container {
  position: relative;
  margin: 32px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.exploring-solutions .cards__container__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto -120px auto;
  max-width: 1200px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.exploring-solutions .cards__container__wrapper .card {
  background: white;
  margin: 8px;
  width: calc(100% / 3 - 16px);
  text-align: center;
  border: 1px solid #e2e2e2;
  border-radius: 4px;
  max-width: 300px;
  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;
  z-index: 2;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: relative;
  bottom: 0;
}

.exploring-solutions .cards__container__wrapper .card__icon .icon {
  border-radius: 100%;
  height: 64px;
  width: 64px;
  display: block;
  background: blue;
  margin: 16px;
}

.exploring-solutions .cards__container__wrapper .card:hover {
  background: #0064da;
  color: #fbfbfb;
  cursor: pointer;
  bottom: 8px;
  border-color: #0064da;
}

.exploring-solutions .cards__container__wrapper .card:hover .icon {
  background: white;
}

.exploring-solutions .cards__container__background {
  background: black;
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: absolute;
  bottom: 0;
}

.exploring-solutions .cards__container__background video {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
  -webkit-filter: opacity(0.4) hue-rotate(329deg);
          filter: opacity(0.4) hue-rotate(329deg);
}

@media screen and (max-width: 768px) {
  .card {
    width: calc(100% / 2 - 16px) !important;
  }
}

.bg-gray {
  background: #fbfbfb;
}

.articles__categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 32px auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.articles__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.articles__wrapper .article {
  width: 300px;
  margin: 12px;
}

.articles__wrapper .article .article__thumbnail {
  width: 100%;
  height: 150px;
  background: gainsboro;
  margin-bottom: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}

.articles__wrapper .article .article__keywords {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 12px;
}

.articles__wrapper .article .article__description {
  text-align: left;
  margin-bottom: 12px;
}

.articles__wrapper .article .article__owner {
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.articles__wrapper .article .article__owner__thumbnail {
  height: 28px;
  width: 28px;
  background: gainsboro;
  border-radius: 100%;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 12px;
  text-align: center;
}

.articles__wrapper .article .article__owner__name {
  font-size: 14px;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .article {
    width: calc(100% / 2 - 24px) !important;
  }
}

.bg-gray {
  background: #fbfbfb;
}

.advertising__container {
  max-width: 1200px;
  margin: 0 auto;
}

.advertising__container .banner {
  width: 100%;
  height: 200px;
  background: #0064da;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 16px;
  color: #ffffff;
}

footer {
  font-weight: 300;
  font-size: 14px;
}

footer .footer__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  margin: 0 auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 1440px;
  width: 100%;
  border-top: 1px solid gainsboro;
  padding: 16px 0;
}

footer .footer__wrapper .footer__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: calc(100% / 4);
}

footer .footer__wrapper .footer__col .footer__link {
  color: black;
}

footer .footer__wrapper .footer__col .footer__link:hover {
  text-decoration: underline;
}

html, body {
  font-family: 'Inter', sans-serif;
}

section {
  padding: 32px 0;
}
/*# sourceMappingURL=style.css.map */