body,
html {
  min-width: 100%;
  min-height: 100%;
  margin: 0px;
  padding: 0px;
  color: #fff;
  background-color: #0f0f11;
  font-family: sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  overflow-x: hidden;
}
* {
  box-sizing: border-box;
}
a {
  color: #fff;
  text-decoration: none;
}
h1 {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(87deg, #3de85d, #03f6f4 57%, #6a54ff);
  background-clip: text;
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 60px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}
h2 {
  background-image: linear-gradient(to right, rgba(255,255,255,0.8), #fff 50%, rgba(255,255,255,0.5));
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
img {
  max-width: 100%;
  display: inline-block;
}
.gray-bg {
  background-color: #222;
}
.gray-gradient {
  background-image: linear-gradient(140deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
}
.gray-gradient-text {
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(to right, rgba(255,255,255,0.8), #fff 50%, rgba(255,255,255,0.5));
}
.green-gradient {
  background-image: linear-gradient(87deg, #3de85d, #03f6f4 57%, #6a54ff);
}
.green-gradient-text {
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(87deg, #3de85d, #03f6f4 57%, #6a54ff);
}
.flex-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row nowrap;
}
.flex-column {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
}
.page-title {
  width: 100%;
  height: 400px;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
}
.page-title>p {
  font-size: 1.2em;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.container {
  width: 100%;
  max-width: 1216px;
  margin-left: auto;
  margin-right: auto;
  padding: 5em 2em;
}
.page-content {
  color: #aaa;
  max-width: 780px;
  margin: 0 auto 120px;
  padding: 0 2em;
}
.page-content p {
  margin-bottom: 24px;
  line-height: 1.6em;
}
.page-content h2 {
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 2em;
  color: #fff;
  text-align: left;
}
.page-content h3 {
  color: #fff;
}
.icon-wrapper {
  padding-right: 2em;
}
.icon-wrapper img {
  display: block;
  height: 40px;
  margin-right: 8px;
  padding: 6px;
  background: linear-gradient(170deg, #66df57, #058d3f);
  border-radius: 8px;
}
.icon-wrapper h2 {
  letter-spacing: 1px;
  font-size: 1.5em;
  margin: 0;
}
#main-header {
  position: fixed;
  margin: 0;
  background-color: rgba(15,15,17,0.9);
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 10;
}
#main-header>.flex-row {
  height: 72px;
  width: 100%;
  max-width: 1216px;
  padding: 0 5em;
  justify-content: space-between;
  margin: 0 auto;
}
#main-header #nav-tabs {
  grid-column-gap: 2em;
}
#main-header .tab {
  display: inline-block;
  min-width: 80px;
  width: fit-content;
  text-align: center;
  opacity: 0.8;
}
#main-header .tab.selected {
  opacity: 1;
}
#main-header label.menu-wrapper {
  display: inline-block;
  position: relative;
  cursor: pointer;
}
#main-header label.menu-wrapper .menu {
  align-items: flex-start;
  position: absolute;
  top: 95%;
  right: 0;
  width: max-content;
  border-radius: 8px;
  overflow: hidden;
  height: 0;
  transition: height 0.25s;
}
#main-header label.menu-wrapper .menu a {
  line-height: 48px;
  padding: 0 2em;
}
#main-header #language-menu-wrapper {
  width: 120px;
  text-align: right;
}
#main-header #language-menu-wrapper:focus .menu {
  height: 480px;
}
#main-header #language-menu-wrapper .menu:hover {
  height: 480px;
}
#main-header #nav-tabs-menu {
  text-align: center;
  padding: 12px;
  margin-left: 12px;
  display: none;
}
#main-header #nav-tabs-menu img {
  width: 24px;
  height: 24px;
  margin-top: -2px;
  max-width: fit-content;
}
#main-header #nav-tabs-menu:focus .menu {
  height: 144px;
}
#main-header #nav-tabs-menu .menu:hover {
  height: 144px;
}
#main-footer {
  position: relative;
  overflow: hidden;
}
#main-footer:after {
  content: "";
  width: 100%;
  height: 100%;
  max-width: none;
  opacity: 0.5;
  filter: blur(150px);
  background-image: linear-gradient(83deg, #3de85d, #03f6f4 28%, #03f6f4 46%, #30b6ff 62%, #00f0ff 75%, #6a54ff);
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: absolute;
  top: 80%;
  left: 5%;
  right: 0%;
  pointer-events: none;
}
#main-footer>.flex-row {
  max-width: 1216px;
  padding: 5em 5em 3em;
  justify-content: space-between;
  align-items: flex-start;
  margin: auto;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
#main-footer>.flex-row .footer-left {
  justify-content: flex-start;
  align-items: flex-start;
}
#main-footer>.flex-row .footer-left>p {
  max-width: 260px;
  margin-top: 0;
}
#main-footer>.flex-row .footer-left>* {
  margin-bottom: 2em;
}
#main-footer>.flex-row .footer-left>.contact-button {
  padding: 0.6em 1.5em;
  border-radius: 8px;
  background: #fff;
  color: #0f0f11;
  cursor: pointer;
  transition: all 0.25s;
}
#main-footer>.flex-row .footer-right {
  justify-content: flex-start;
  align-items: flex-start;
  grid-row-gap: 2em;
}
#main-footer>.flex-row .footer-right>section {
  align-items: flex-start;
}
#main-footer>.flex-row .footer-right>section>* {
  margin-bottom: 0.8em;
}
#main-footer>.flex-row .footer-right>section h4 {
  color: rgba(235,240,255,0.5);
  font-size: 18px;
  font-weight: 500;
  margin-top: 0;
}
#main-footer .copyright {
  text-align: center;
  padding-bottom: 1em;
}
.faq-list {
  width: 100%;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 0;
  padding: 0;
}
.faq-list .faq-wrapper {
  display: block;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 0 24px;
  position: relative;
  cursor: pointer;
  height: fit-content;
}
.faq-list .faq-wrapper:hover {
  background: rgba(255,255,255,0.03);
}
.faq-list .faq-wrapper .faq-icon {
  position: absolute;
  top: 24px;
  right: 0px;
  display: flex;
  width: 44px;
  height: 44px;
  margin-right: 0px;
  justify-content: center;
  align-items: center;
  flex: 0 0 auto;
  border: 13px solid transparent;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.06);
}
.faq-list .faq-wrapper .faq-icon .faq-icon-h,
.faq-list .faq-wrapper .faq-icon .faq-icon-v {
  position: absolute;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background-color: #fff;
  transition: all 0.25s ease;
}
.faq-list .faq-wrapper .faq-icon .faq-icon-v {
  transform: rotateZ(90deg);
}
.faq-list .faq-wrapper .faq-icon,
.faq-list .faq-wrapper .faq-item {
  pointer-events: none;
}
.faq-list .faq-wrapper h3 {
  font-size: 20px;
  color: #fff;
  font-weight: 700;
  margin: 0;
  padding-right: 44px;
  padding-top: 36px;
  padding-bottom: 36px;
}
.faq-list .faq-wrapper .faq-answer {
  overflow: hidden;
  height: 0;
  transition: height 0.25s ease;
}
.faq-list .faq-wrapper p {
  color: #858585;
  display: block;
  margin: 0;
  padding: 0;
  padding-bottom: 32px;
}
.faq-list .faq-wrapper.open .faq-icon-v {
  transform: rotateZ(0deg);
}
.tutorial-list {
  grid-row-gap: 8em;
  justify-content: flex-start;
}
.tutorial-section {
  display: flex;
  flex-flow: row-reverse nowrap;
  grid-column-gap: 2.5em;
  justify-content: center;
  align-items: center;
}
.tutorial-section:nth-child(even) {
  flex-flow: row nowrap;
}
.tutorial-image {
  flex: 0.75;
  min-height: 100px;
  background-image: linear-gradient(87deg, #3de85d, #03f6f4 57%, #6a54ff);
  border-radius: 20px;
  padding: 3em;
  position: relative;
  overflow: hidden;
  margin: 2em 0;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), inset 0 1px 2px rgba(255,255,255,0.1);
}
.tutorial-image img {
  width: 100%;
  max-height: 680px;
  max-width: 100%;
  vertical-align: middle;
  display: inline-block;
}
.tutorial-content {
  flex: 1;
}
.tutorial-content h2 {
  margin-top: 0px;
  margin-bottom: 32px;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
}
.tutorial-content p {
  font-size: 22px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1px;
}
.card-wrapper {
  width: 90vw;
  margin: 0 auto;
  max-width: 1200px;
  border-radius: 20px;
  background-image: linear-gradient(170deg, #303030, #1a1a1a);
  box-shadow: 0 15px 40px 0 rgba(0,0,0,0.7);
  padding: 72px 10%;
}
.card-wrapper .icon-image {
  width: 92px;
  height: 92px;
  border-radius: 20px;
  box-shadow: 0 4px 10px 0 rgba(0,0,0,0.25);
  background: linear-gradient(170deg, #66df57, #058d3f);
  padding: 14px;
  margin-bottom: 24px;
}
.card-wrapper h2 {
  font-size: 36px;
  line-height: 40px;
  margin-bottom: 12px;
}
.card-wrapper p {
  color: #858585;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 0 0 32px;
  text-align: center;
}
.card-wrapper .download-button {
  height: 76px;
  padding: 0 32px;
  border-radius: 38px;
  font-size: 20px;
  line-height: 76px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  position: relative;
  margin-top: 24px;
  background: linear-gradient(125deg, #058d3f, #66df57);
}
@media screen and (max-width: 780px) {
  #main-header>.flex-row {
    padding: 0 2em;
  }
  #main-header #language-menu-wrapper {
    width: fit-content;
  }
  #main-header #nav-tabs {
    display: none;
  }
  #main-header #nav-tabs-menu {
    display: block;
  }
  #main-footer>.flex-row {
    padding: 5em 2em 3em;
  }
  .tutorial-section {
    display: block;
  }
  .title-wrapper {
    padding: 0 2em;
  }
  .title-wrapper.main-title>h1 {
    font-size: 64px;
    line-height: 1.2;
  }
  .title-wrapper>h2 {
    font-size: 40px !important;
  }
  .secure-data {
    padding: 5em 0 !important;
  }
  .secure-data .secure-data-list {
    width: fit-content;
    margin: -2em auto 5em !important;
    position: relative !important;
    left: 0 !important;
  }
  #main-footer>.flex-row .footer-left>p {
    max-width: 200px;
  }
}
