@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
.container {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 30px;
  box-sizing: border-box;
}
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
}

.page-content-container {
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
  font-size: 16px;
  margin-left: auto;
  margin-right: auto;
}
.page-content-container .content {
  background: #111111;
  padding: 65px;
  border-radius: 60px;
}
.page-content-container .row {
  width: 100%;
}
.page-content-container .align-self-start {
  align-self: flex-start;
}
.page-content-container .section-title {
  font-size: 30px;
  color: white;
  font-weight: bold;
}
.page-content-container .section-title:first-child {
  margin-top: 16px;
  margin-bottom: 40px;
}
.page-content-container p {
  line-height: 2;
  font-size: 15px;
  margin-top: 0;
}
.page-content-container p:last-child {
  margin-bottom: 0;
}
.page-content-container img {
  max-width: 100%;
  border-radius: 20px;
  margin: 30px 0 40px 0;
}
.page-content-container li {
  line-height: 2;
  margin-top: 14px;
  font-size: 14px;
}
.page-content-container li:first-child {
  margin-top: 0;
}
.page-content-container h3 {
  margin-top: 20px;
  font-size: 18px;
}
.page-content-container h3:first-child {
  margin-top: 0px;
}

.button {
  transition: 0.2s ease;
  cursor: pointer;
  user-select: none;
  outline: none;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-decoration: none;
  border: none;
  color: #fff;
}

.primary-btn {
  cursor: pointer;
  box-sizing: border-box;
  font-size: 17px;
  font-weight: 400;
  padding: 22px 10px;
  border-radius: 16px;
  transition: 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.primary-btn .icon {
  margin-right: 1vmin;
  height: 2.4vmin;
  width: auto;
}
.primary-btn .icon + span {
  margin-right: 0.8vmin;
}
.primary-btn {
  background: #5135FF;
}
.primary-btn:hover {
  background: #5a3fff;
}

.secondary-btn {
  cursor: pointer;
  box-sizing: border-box;
  font-size: 17px;
  font-weight: 400;
  padding: 22px 10px;
  border-radius: 16px;
  transition: 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.secondary-btn .icon {
  margin-right: 1vmin;
  height: 2.4vmin;
  width: auto;
}
.secondary-btn .icon + span {
  margin-right: 0.8vmin;
}
.secondary-btn {
  color: var(--primary-text-color);
  border: 0.1vmin solid var(--secondary-btn-border-color);
}

.t-button {
  cursor: pointer;
  box-sizing: border-box;
  font-size: 17px;
  font-weight: 400;
  padding: 22px 10px;
  border-radius: 16px;
  transition: 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.t-button .icon {
  margin-right: 1vmin;
  height: 2.4vmin;
  width: auto;
}
.t-button .icon + span {
  margin-right: 0.8vmin;
}
.t-button {
  background: #191919;
}
.t-button:hover {
  background: #1c1c1c;
}
.t-button:active {
  background: #1e1e1e;
}

.install {
  padding-left: 5vmin;
  padding-right: 5vmin;
}

.rect-button {
  color: white;
  background: #5426ff;
  cursor: pointer;
  box-shadow: -4px 4px 0px 0px black;
  padding: 5px 15px;
  padding-top: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.rect-button.rect-button-l {
  padding: 22px 25px;
  box-shadow: -7px 7px 0px 0px black;
}

.app-header {
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 45px 0;
}
.app-header .container {
  display: grid;
  align-items: center;
}
.app-header .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-area: 1/1;
  justify-self: start;
}
.app-header .logo img {
  height: 30px;
  width: auto;
}
.app-header .menu {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-area: 1/1;
  justify-self: center;
  padding-left: 0;
  margin: 0;
}
.app-header .menu li {
  display: flex;
}
.app-header .menu .link {
  text-decoration: none;
  font-size: 13px;
  padding: 6px 6px;
  margin: 0 25px;
  box-sizing: border-box;
  color: white;
}
.app-header .my-tabz {
  border-radius: 99px;
  background: #5135FF;
  display: flex;
  align-items: center;
  padding: 0px;
  font-size: 14px;
  padding-right: 20px;
  padding-left: 20px;
  gap: 12px;
  height: 56px;
  grid-area: 1/1;
  justify-self: end;
  font-weight: bold;
}
.app-header .my-tabz img {
  height: 28px;
  width: auto;
  display: flex;
}
.app-header .my-tabz:hover {
  background: #5a3fff;
}
.app-header .install.button {
  grid-area: 1/1;
  justify-self: end;
}
.app-header.light {
  color: white;
}
.app-header.light .menu .link {
  color: white;
}
.app-header.light .search input {
  border-color: white;
}

.app-footer {
  flex-shrink: 0;
  width: 100%;
  background: #0F0F0F;
  padding-top: 60px;
}
.app-footer a {
  text-decoration: none;
  font-size: 13px;
  color: white;
}
.app-footer .wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  padding-bottom: 40px;
}
.app-footer .wrapper .info .info-header {
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 18px;
  justify-self: start;
}
.app-footer .wrapper .info .info-header .logo {
  height: 30px;
  width: auto;
}
.app-footer .wrapper .info .info-header span {
  margin-top: 2px;
}
.app-footer .wrapper .info .info-text {
  margin-top: 15px;
  max-width: 500px;
  font-size: 14px;
  line-height: 1.8;
}
.app-footer .wrapper .menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
}
.app-footer .wrapper .menu .menu-column .menu-column-title {
  font-weight: 500;
  margin-bottom: 14px;
}
.app-footer .copyright {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  font-size: 12px;
}
.app-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.app-footer ul li {
  margin-top: 8px;
}
@media (max-width: 1300px) {
  .app-footer .wrapper {
    gap: 100px;
    grid-template-columns: 1fr 1fr;
  }
  .app-footer .wrapper .menu {
    gap: 30px;
  }
}
@media (max-width: 1000px) {
  .app-footer .wrapper {
    gap: 30px;
    grid-template-columns: 1fr;
  }
  .app-footer .wrapper .menu {
    display: flex;
    gap: 80px;
  }
}
@media (max-width: 768px) {
  .app-footer .wrapper {
    gap: 30px;
    grid-template-columns: 1fr;
  }
  .app-footer .wrapper .info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .app-footer .wrapper .info .info-text {
    text-align: center;
  }
  .app-footer .wrapper .menu {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 40px;
  }
}

.app-home-page .heading-section {
  padding: 20px 0;
}
.app-home-page .heading-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.app-home-page .heading-section h1 {
  text-align: center;
  font-size: 115px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 0;
  margin-top: 10px;
}
.app-home-page .heading-section p {
  line-height: 2;
  max-width: 660px;
  font-size: 14px;
  text-align: center;
  color: #727480;
}
.app-home-page .heading-section .button {
  margin-top: 20px;
  height: 64px;
  width: 190px;
  border-radius: 80px;
  color: white;
  font-size: 14px;
}
.app-home-page .app-illustration {
  aspect-ratio: 1.9;
  padding-top: 50px;
  padding-bottom: 30px;
}
.app-home-page .app-illustration .app-screen {
  border-radius: 40px;
  padding: 20px;
  box-sizing: border-box;
  background: #2E2E2E;
  background: linear-gradient(90deg, #2E2E2E 0%, #303030 100%);
}
.app-home-page .app-illustration .app-screen .screen {
  border-radius: 25px;
  max-width: 100%;
  display: flex;
}
.app-home-page .side-blocks {
  padding-top: 60px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  width: 100%;
  padding-bottom: 120px;
}
.app-home-page .side-blocks .side-block {
  text-decoration: none;
  border-radius: 4vmin;
  padding: 35px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.app-home-page .side-blocks .side-block .icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1f1f1f;
  border-radius: 50%;
  color: white;
}
.app-home-page .side-blocks .side-block .icon img {
  width: 45%;
  height: auto;
}
.app-home-page .side-blocks .side-block h3 {
  font-size: 44px;
  font-weight: 500;
  max-width: 70%;
  margin-bottom: 4px;
  margin-top: 20px;
  line-height: 1.2;
  text-align: center;
}
.app-home-page .side-blocks .side-block p {
  margin: 0;
  margin-top: 10px;
  max-width: 80%;
  text-align: center;
  font-size: 15px;
  line-height: 1.8;
}
.app-home-page .side-blocks .side-block .arrow {
  width: 50px;
  height: 50px;
  border: 2px solid black;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  right: 35px;
  top: 35px;
  transition: 0.2s ease;
}
.app-home-page .side-blocks .side-block .arrow svg {
  width: 35%;
  height: auto;
  transition: inherit;
}
.app-home-page .side-blocks .side-block:hover .arrow {
  background: black;
}
.app-home-page .side-blocks .side-block:hover .arrow svg {
  fill: white;
}
@media (max-width: 1150px) {
  .app-home-page .side-blocks .side-block h3 {
    max-width: 100%;
  }
  .app-home-page .side-blocks .side-block p {
    max-width: 100%;
  }
}
@media (max-width: 1000px) {
  .app-home-page .heading-section h1 {
    font-size: 72px;
  }
  .app-home-page .side-blocks {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .app-home-page .heading-section h1 {
    margin-top: 0;
    font-size: 48px;
  }
  .app-home-page .side-blocks .side-block {
    border-radius: 35px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .app-home-page .side-blocks .side-block h3 {
    max-width: 100%;
  }
  .app-home-page .side-blocks .side-block p {
    max-width: 100%;
  }
}

.app-contact-page h1 {
  font-size: 45px;
  font-weight: bold;
  margin-bottom: 0;
  line-height: 1;
}
.app-contact-page h1.section-title {
  margin-top: 30px;
}
.app-contact-page .container {
  padding-bottom: 100px;
}
.app-contact-page p {
  font-size: 14px;
}
.app-contact-page .page-container {
  max-width: 1600px;
}
.app-contact-page form {
  margin-top: 35px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  max-width: 650px;
}
.app-contact-page form .row {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}
.app-contact-page form textarea {
  font-family: Poppins, sans-serif;
  width: 100%;
  background: #f5f6fd;
  border: 1px solid #e9ebf6;
  resize: none;
  box-sizing: border-box;
  outline: none;
  padding: 25px 22px;
  color: #000;
  height: 170px;
  font-size: 13px;
  line-height: 24px;
  border-radius: 14px;
  margin-top: 20px;
}
.app-contact-page form .input {
  width: 100%;
  background: #f5f6fd;
  border: 1px solid #e9ebf6;
  border-radius: 14px;
  font-size: 13px;
  padding: 18px 22px;
  box-sizing: border-box;
  outline: none;
  font-family: Poppins, sans-serif;
}
.app-contact-page form .primary-btn {
  padding: 12px;
  margin-top: 30px;
  border: none;
  border-radius: 14px;
  font-size: 16px;
  height: 60px;
  width: 100%;
  color: #fff;
}
@media (max-width: 768px) {
  .app-contact-page .row {
    flex-direction: column;
  }
}

.app-install-page h1 {
  color: var(--main-color);
  font-size: 50px;
  text-align: center;
  margin: 5px;
}
.app-install-page .content {
  background: transparent;
}
.app-install-page .main-link {
  text-decoration: none;
  display: flex;
  margin: 20px auto;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  font-weight: bold;
}
.app-install-page .info-keeper {
  display: flex;
  margin-bottom: 50px;
  align-items: flex-start;
  gap: 20px;
}
.app-install-page .info-keeper > div {
  padding: 10px;
  overflow: hidden;
  border-radius: 20px;
  color: white;
  outline: none;
  background: #1D1D1D;
}
.app-install-page .info-keeper > div:first-child {
  padding: 30px;
  line-height: 1.7;
  width: calc(100% - 15em);
  font-size: 16px;
}
.app-install-page .info-keeper h3 {
  color: white;
  margin-bottom: 25px;
  font-weight: 700;
}
.app-install-page .info-keeper p {
  font-size: 13px;
  color: white;
  line-height: 2;
  margin-bottom: 14px;
}
.app-install-page .info-keeper img {
  max-width: 542px;
  width: 100%;
  border-radius: 10px;
  display: flex;
  margin: 0;
}
@media (max-width: 768px) {
  .app-install-page .info-keeper {
    flex-direction: column;
  }
  .app-install-page .info-keeper > div {
    width: 100% !important;
  }
  .app-install-page .image-keeper {
    order: -1;
  }
  .app-install-page .image-keeper img {
    max-width: 100%;
  }
}

.app-how-it-works-page .video-buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.app-how-it-works-page .video-buttons .button {
  border-radius: 100px;
  height: 60px;
  font-size: 15px;
  padding-left: 53px;
  padding-right: 26px;
  background: url("/assets/play-button.svg") no-repeat #141414;
  background-size: 16px;
  background-position: 23px center;
}
.app-how-it-works-page .video-buttons .button:hover {
  background-color: #191919;
}
.app-how-it-works-page .video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  background-color: rgba(0, 0, 0, 0.4);
  display: none;
  opacity: 0;
  transition-property: display opacity;
  transition-duration: 0.2s;
  transition-behavior: allow-discrete;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 30px;
}
.app-how-it-works-page .video-modal .modal {
  background-color: #1D1D1D;
  border-radius: 20px;
  transition-duration: 0.2s;
  transition-behavior: allow-discrete;
  transform: translateY(-20px);
  max-width: 1200px;
  width: 100%;
  padding: 10px;
  outline: none;
}
.app-how-it-works-page .video-modal .modal video {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: flex;
}
.app-how-it-works-page .video-modal.open {
  display: flex;
  opacity: 1;
}
@starting-style {
  .app-how-it-works-page .video-modal.open {
    opacity: 0;
  }
}
.app-how-it-works-page .video-modal.open .modal {
  transform: translateY(0px);
}
@starting-style {
  .app-how-it-works-page .video-modal.open .modal {
    transform: translateY(-20px);
  }
}

html {
  color: white;
  height: 100%;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: white;
  height: 100%;
  display: flex;
  flex-direction: column;
}
body .default-page {
  flex-grow: 1;
}

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