@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&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;
}

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-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Space Grotesk", "Helvetica Neue", Helvetica, sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

div.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1em;
}

div.header {
  display: flex;
  justify-content: space-between;
  border-bottom: solid 1px #F2F2F7;
  padding: 16px 0;
}
div.header button#mobile_navigation {
  display: none;
}
div.header div.logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
div.header div.logo a {
  display: block;
}
div.header div.logo a img {
  height: 24px;
}
div.header div.navigation {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
div.header div.navigation div.links {
  display: flex;
  gap: 24px;
}
div.header div.navigation div.links a {
  display: block;
  color: rgb(8, 8, 8);
  text-decoration: none;
  opacity: 0.8;
  font-size: 16px;
}
div.header div.navigation div.links a:hover {
  opacity: 1;
}

div.secondary_navigation {
  display: flex;
  justify-content: center;
  background: rgba(242, 242, 247, 0.4);
  padding: 16px 0;
}
div.secondary_navigation div.links {
  display: flex;
  padding: 0 24px;
  gap: 24px;
}
div.secondary_navigation div.links a {
  display: block;
  color: rgb(8, 8, 8);
  text-decoration: none;
  opacity: 0.8;
  font-size: 14px;
}
div.secondary_navigation div.links a:hover {
  opacity: 1;
}
div.secondary_navigation div.links a.active {
  font-weight: 700;
}

div.mobile_navigation {
  display: none;
}

@media (max-width: 960px) {
  div.header {
    justify-content: start;
    gap: 16px;
  }
  div.header button#mobile_navigation {
    display: block;
    width: 48px;
    height: 48px;
    padding: 0;
    background-color: #F3FFFE;
    border: none;
    border-radius: 4px;
    transition: 0.3s;
  }
  div.header button#mobile_navigation i {
    display: block;
    width: 48px;
    height: 48px;
    background-color: #08AC9B;
    mask-size: 28px;
    mask-position: center;
    mask-repeat: no-repeat;
    mask-image: url(/assets/images/icons/menu_icon.svg);
  }
  div.header button#mobile_navigation:hover {
    cursor: pointer;
    background-color: #09D1BC;
  }
  div.header button#mobile_navigation:hover i {
    background-color: #FFFFFF;
  }
  div.header div.navigation {
    display: none;
  }
  div.header div.navigation.visible {
    position: fixed;
    z-index: 999;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 16px;
    gap: 32px;
    overflow-x: auto;
    overflow-y: scroll;
    display: flex;
    flex-direction: column;
    justify-content: start;
    background: #FFFFFF;
  }
  div.header div.navigation div.links {
    display: flex;
    flex-direction: column;
  }
  div.header div.navigation div.links a {
    font-size: 24px;
  }
  div.secondary_navigation {
    position: fixed;
    z-index: 1000;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 16px;
    gap: 32px;
    overflow-x: auto;
    overflow-y: scroll;
    display: flex;
    flex-direction: column;
    justify-content: start;
    background: #FFFFFF;
  }
  div.secondary_navigation div.links {
    display: flex;
    flex-direction: column;
    padding: 0;
  }
  div.secondary_navigation div.links a {
    font-size: 24px;
  }
  div.mobile_navigation {
    display: flex;
  }
  div.mobile_navigation button {
    display: block;
    width: 48px;
    height: 48px;
    padding: 0;
    background-color: #F3FFFE;
    border: none;
    border-radius: 4px;
    transition: 0.3s;
  }
  div.mobile_navigation button i {
    display: block;
    width: 48px;
    height: 48px;
    background-color: #08AC9B;
    mask-size: 28px;
    mask-position: center;
    mask-repeat: no-repeat;
    mask-image: url(/assets/images/icons/back_icon.svg);
  }
  div.mobile_navigation button:hover {
    cursor: pointer;
    background-color: #09D1BC;
  }
  div.mobile_navigation button:hover i {
    background-color: #FFFFFF;
  }
}
div.footer {
  display: flex;
  flex-direction: column;
  gap: 32px;
  border-top: solid 1px #F2F2F7;
  margin: 32px 0;
  padding: 32px 0;
}
div.footer div.columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
}
div.footer div.columns div.column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
div.footer div.columns div.column h3 {
  font-size: 16px;
  font-weight: 700;
  color: #333;
}
div.footer div.columns div.column a {
  display: block;
  color: #888888;
  text-decoration: none;
  opacity: 0.8;
  font-size: 14px;
}
div.footer div.columns div.column a:hover {
  opacity: 1;
}
div.footer div.legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  border-top: solid 1px #F2F2F7;
  padding-top: 32px;
}
div.footer div.legal span.copyright {
  color: #888888;
  font-size: 14px;
}
div.footer div.legal div.links {
  display: flex;
  gap: 16px;
}
div.footer div.legal div.links a {
  display: block;
  color: #888888;
  text-decoration: none;
  opacity: 0.8;
  font-size: 14px;
}
div.footer div.legal div.links a:hover {
  opacity: 1;
}
div.footer div.ownership {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
div.footer div.ownership img {
  display: block;
  height: 32px;
}
div.footer div.ownership p {
  color: #888888;
  font-size: 12px;
}
div.footer div.ownership a {
  color: #888888;
  text-decoration: none;
  opacity: 0.8;
}
div.footer div.ownership a:hover {
  opacity: 1;
}

hr {
  display: block;
  width: 128px;
  height: 4px;
  background: #09D1BC;
  border: none;
  margin-top: 64px;
  margin-bottom: 64px;
}

a.button {
  display: block;
  text-decoration: none;
  font-size: 14px;
  padding: 12px 18px;
  border-radius: 19px;
  color: #11AF9E !important;
  background-color: #FFF;
  border: solid 1px #09D1BC;
}
a.button.primary {
  background-color: #09D1BC;
  color: #FFF !important;
}

div.legal h1 {
  display: block;
  font-size: 28px;
  font-weight: bold;
  margin: 24px 0;
}
div.legal strong {
  font-weight: bold;
}
div.legal h2 {
  display: block;
  font-size: 18px;
  font-weight: bold;
  margin: 16px 0;
}
div.legal p {
  display: block;
  margin: 8px 0;
  line-height: 1.5;
}

div.hero {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 64px 0;
  background-image: url(../images/background.svg?1);
  background-position-x: 50%;
  background-position-y: 0px;
  background-repeat: no-repeat;
  background-size: 100%;
}
div.hero a {
  text-decoration: none;
  color: inherit;
}
div.hero div.hero_image {
  flex-basis: 480px;
  flex-shrink: 1;
}
div.hero div.hero_image div.image_wrapper img {
  display: block;
  width: 100%;
}
div.hero div.hero_text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
div.hero div.hero_text img.icon {
  display: block;
  width: 64px;
  margin-bottom: 32px;
}
div.hero div.hero_text h1 {
  font-size: 48px;
  font-weight: 700;
}
div.hero div.hero_text h2 {
  font-size: 24px;
  font-weight: 300;
  line-height: 1.2;
}
div.hero div.hero_text div.call_to_action {
  display: flex;
  justify-content: start;
  margin: 16px 0;
  gap: 8px;
}
div.hero div.hero_text div.primary {
  display: flex;
}

div.featured {
  display: flex;
  flex-wrap: wrap;
  justify-content: stretch;
  gap: 16px;
}
div.featured div.product {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 16px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(242, 242, 247, 0.4);
  padding: 32px 24px;
}
div.featured div.product a.icon {
  display: block;
  text-align: center;
}
div.featured div.product a.icon img.icon {
  display: inline-block;
  height: 128px;
}
div.featured div.product div.description {
  text-align: center;
  margin: 16px 0;
}
div.featured div.product div.description p {
  color: #111;
  font-weight: 300;
}
div.featured div.product div.buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
}

div.product_hero {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding-top: 64px;
  gap: 16px;
}
div.product_hero h1 {
  display: block;
  font-size: 48px;
  font-weight: 700;
}
div.product_hero p.lead {
  display: block;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.2;
  color: #666;
}
div.product_hero div.call_to_action {
  display: flex;
  justify-content: center;
  margin: 24px 0;
  gap: 8px;
}
div.product_hero div.download_buttons {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 24px auto;
}
div.product_hero div.download_buttons a {
  display: block;
  opacity: 0.9;
}
div.product_hero div.download_buttons a:hover {
  opacity: 1;
}
div.product_hero div.download_buttons img {
  height: 40px;
}
div.product_hero div.image_wrapper {
  display: flex;
  justify-content: center;
}
div.product_hero div.image_wrapper img {
  display: block;
  max-width: 100%;
  max-height: 450px;
}

div.product_features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
div.product_features h2 {
  display: block;
  text-align: center;
  font-size: 32px;
  font-weight: 600;
}
div.product_features p.lead {
  display: block;
  text-align: center;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.2;
  color: #666;
}
div.product_features div.features_list {
  display: flex;
  flex-wrap: wrap;
  padding: 32px 0;
  gap: 48px;
}
div.product_features div.features_list div.feature {
  display: flex;
  flex-basis: 350px;
  flex-grow: 1;
  flex-shrink: 1;
  flex-direction: column;
  gap: 12px;
}
div.product_features div.features_list div.feature div.image {
  padding: 16px 0;
}
div.product_features div.features_list div.feature div.image img {
  display: block;
  height: 64px;
}
div.product_features div.features_list div.feature h3 {
  display: block;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}
div.product_features div.features_list div.feature p {
  font-size: 16px;
  line-height: 1.4;
  color: #6e6e73;
}

div.product_faq {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
div.product_faq h2 {
  display: block;
  text-align: center;
  font-size: 32px;
  font-weight: 600;
}
div.product_faq p.lead {
  display: block;
  text-align: center;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.2;
  color: #666;
}
div.product_faq div.faq_list {
  display: flex;
  flex-direction: column;
  margin: auto;
  max-width: 80%;
  padding: 48px 0;
  gap: 48px;
}
div.product_faq div.faq_list div.question {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
div.product_faq div.faq_list div.question h3 {
  display: block;
  font-size: 18px;
  font-weight: 600;
}
div.product_faq div.faq_list div.question p {
  font-size: 16px;
  line-height: 1.4;
  color: #6e6e73;
}

div.support_hero {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding-top: 64px;
  gap: 16px;
}
div.support_hero h1 {
  display: block;
  font-size: 48px;
  font-weight: 700;
}
div.support_hero p.lead {
  display: block;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.2;
  color: #666;
}
div.support_hero div.call_to_action {
  display: flex;
  margin: 24px auto;
  gap: 8px;
}
div.support_hero div.support_options {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  text-align: left;
}
div.support_hero div.support_options div.option {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-basis: 250px;
  flex-grow: 1;
}
div.support_hero div.support_options div.option div.image {
  display: flex;
  justify-content: start;
  margin-bottom: 16px;
}
div.support_hero div.support_options div.option div.image img {
  height: 32px;
}
div.support_hero div.support_options div.option h2 {
  display: block;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}
div.support_hero div.support_options div.option p {
  font-size: 16px;
  line-height: 1.4;
  color: #6e6e73;
}
div.support_hero div.support_options div.option a {
  display: block;
  float: left;
  color: #11AF9E;
  text-decoration: none;
  margin-top: 16px;
}

/*# sourceMappingURL=style.css.map */
