@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");
.page.home {
  color: white;
  padding: 5vmin 0;
  display: flex;
  flex-direction: column;
  gap: 20vmin;
}
.page.home a {
  text-decoration: none;
  color: inherit;
}
.page.home .main-card {
  background: #6CDDD0;
  background: linear-gradient(45deg, #6CDDD0 0%, #328EFF 100%);
  border-radius: 6vmin;
  padding: 5vmin 8vmin;
  padding-bottom: 8vmin;
  position: relative;
  height: 100%;
  box-sizing: border-box;
}
.page.home .main-card h1 {
  font-size: 14vmin;
  max-width: 85%;
  margin: 0;
  line-height: 1.4;
}
.page.home .main-card .install {
  margin-top: 5vmin;
  background: #EFFF70;
  width: 26vmin;
  border-radius: 3vmin;
  color: black;
  height: 12vmin;
  font-weight: 600;
  font-size: 2.5vmin;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.page.home .main-card .floating {
  border-radius: 2.4vmin;
  background: white;
  position: absolute;
  bottom: 6vmin;
  right: 6vmin;
  display: flex;
  overflow: hidden;
}
.page.home .main-card .floating iframe {
  height: 32.8vmin;
  width: 58.3vmin;
}
.page.home .main-card-container {
  height: calc(100vh - 10vmin);
  padding: 0 5vmin;
  box-sizing: border-box;
}
.page.home .features {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10vmin;
  padding: 0 15vmin;
}
.page.home .features .block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 4vmin;
  padding: 2vmin;
  color: black;
  gap: 2vmin;
}
.page.home .features .block img {
  height: 9vmin;
  width: auto;
}
.page.home .features .block h2 {
  text-align: center;
  margin: 0;
  font-size: 4vmin;
}
.page.home .features .block p {
  text-align: center;
  margin: 0;
  font-size: 2.2vmin;
}
.page.home .install-card {
  background: #6CDDD0;
  background: linear-gradient(191deg, #52FFEB 0%, #8191FF 100%);
  border-radius: 8vmin;
  padding: 10vmin;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1vmin;
}
.page.home .install-card .install {
  margin-top: 5vmin;
  background: #EFFF70;
  border-radius: 10vmin;
  color: black;
  height: 10vmin;
  width: 22vmin;
  font-weight: 600;
  font-size: 2.5vmin;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.page.home .install-card .caption {
  font-size: 8vmin;
  text-align: center;
  margin: 0;
  font-weight: 600;
}
.page.home .install-card p {
  margin: 0;
  text-align: center;
  font-size: 6vmin;
  margin-top: -2vmin;
}

.app-contact-page .row p {
  text-align: center;
}
.app-contact-page p {
  font-size: 1.4vmin;
}
.app-contact-page form {
  margin-top: 0vmin;
  display: flex;
  width: 85vmin;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  background: #F0F5FF;
  padding: 4vmin;
  border-radius: 4vmin;
}
.app-contact-page form .row {
  display: flex;
  align-items: center;
  gap: 2vmin;
  width: 100%;
}
.app-contact-page form textarea {
  font-family: Poppins, sans-serif;
  width: 100%;
  background: white;
  border: none;
  resize: none;
  box-sizing: border-box;
  outline: none;
  padding: 2.5vmin 2.2vmin;
  color: #000;
  height: 17vmin;
  font-size: 1.3vmin;
  line-height: 2.4vmin;
  border-radius: 1.4vmin;
  margin-top: 2vmin;
}
.app-contact-page form .input {
  width: 100%;
  background: white;
  border: none;
  border-radius: 1.4vmin;
  font-size: 1.3vmin;
  padding: 1.8vmin 2.2vmin;
  box-sizing: border-box;
  outline: none;
  font-family: Poppins, sans-serif;
}
.app-contact-page form .primary-btn {
  padding: 1.2vmin;
  margin-top: 3vmin;
  border: none;
  border-radius: 1.4vmin;
  font-size: 1.6vmin;
  height: 6vmin;
  width: 100%;
  color: #fff;
  background: #3491FE;
}
@media (max-width: 768px) {
  .app-contact-page .row {
    flex-direction: column;
  }
}

.congratulations-page .text-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.congratulations-page .text-content .smile {
  height: 15vmin;
  width: auto;
  margin-top: 4vmin;
  margin-bottom: 2vmin;
}
.congratulations-page .text-content h2 {
  font-size: 3.5vmin;
  text-align: center;
  margin: 0;
}
.congratulations-page .text-content p {
  font-size: 2.2vmin;
  line-height: 2.2;
  text-align: center;
  margin: 0;
  margin-top: 2vmin;
}

.side-page {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 4vmin 7vmin;
  box-sizing: border-box;
}
.side-page header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.side-page header .logo img {
  height: 7vmin;
  width: auto;
}
.side-page header .menu {
  display: flex;
  gap: 8vmin;
}
.side-page header .menu a {
  font-size: 1.8vmin;
}
.side-page main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1vmin;
  align-items: flex-start;
  flex-grow: 1;
  padding: 8vmin;
}
.side-page main h1 {
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
  font-size: 12vmin;
  color: #000000;
  white-space: nowrap;
}
.side-page main p {
  line-height: 1.8;
  margin: 0;
  font-size: 2vmin;
  color: #000000;
}
.side-page main a {
  background: #1684F4;
  border-radius: 999vmin;
  padding: 3vmin 7vmin;
  font-size: 2vmin;
  color: white;
  margin-top: 2vmin;
}
.side-page footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.side-page footer a {
  font-size: 1.8vmin;
}

.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;
}

.app-footer {
  font-size: 1.4vmin;
  color: black;
  display: grid;
  padding: 5vmin 2vmin;
}
.app-footer a {
  text-decoration: none;
  color: inherit;
}
.app-footer .logo {
  grid-area: 1/1;
  justify-self: start;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2vmin;
  font-weight: 600;
  font-size: 1.6vmin;
}
.app-footer .logo img {
  height: 3.5vmin;
  width: auto;
}
.app-footer .menu {
  grid-area: 1/1;
  justify-self: center;
  display: flex;
  gap: 2vmin;
}
.app-footer .menu:last-child {
  justify-self: end;
}

.app-header {
  font-size: 1.2vmin;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6vmin;
  gap: 10vmin;
  background: #6CDDD0;
  background: linear-gradient(45deg, #6CDDD0 0%, #328EFF 100%);
  border-radius: 3vmin;
}
.app-header a {
  color: white;
  text-decoration: none;
  font-size: 1.6vmin;
}

body, html {
  margin: 0;
  min-height: 100%;
  height: 100%;
  font-family: "Poppins", sans-serif;
}

.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 5vmin;
  width: 100%;
  box-sizing: border-box;
}

.page {
  height: 100%;
  box-sizing: border-box;
}

.text-page {
  padding: 5vmin;
  padding-bottom: 0;
  font-size: 2.5vmin;
  line-height: 2.2;
  overflow: auto;
  min-height: 100%;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.text-page .text-content {
  max-width: 120vmin;
  margin: 5vmin auto;
  flex-grow: 1;
}
.text-page h1 {
  font-size: 4vmin;
  text-align: center;
}

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