:root {
  --white: #fff;
  --black: #000;

  --grey-100: #f7fafc;
  --grey-200: #edf2f7;
  --grey-300: #e2e8f0;
  --grey-400: #cbd5e0;
  --grey-500: #a0aec0;
  --grey-600: #718096;
  --grey-700: #4a5568;
  --grey-800: #2d3748;
  --grey-900: #1a202c;

  --red-100: #fff5f5;
  --red-200: #fed7d7;
  --red-300: #feb2b2;
  --red-400: #fc8181;
  --red-500: #f56565;
  --red-600: #e53e3e;
  --red-700: #c53030;
  --red-800: #9b2c2c;
  --red-900: #742a2a;

  --orange-100: #fffaf0;
  --orange-200: #feebc8;
  --orange-300: #fbd38d;
  --orange-400: #f6ad55;
  --orange-500: #ed8936;
  --orange-600: #dd6b20;
  --orange-700: #c05621;
  --orange-800: #9c4221;
  --orange-900: #7b341e;

  --yellow-100: #fffff0;
  --yellow-200: #fefcbf;
  --yellow-300: #faf089;
  --yellow-400: #f6e05e;
  --yellow-500: #ecc94b;
  --yellow-600: #d69e2e;
  --yellow-700: #b7791f;
  --yellow-800: #975a16;
  --yellow-900: #744210;

  --green-100: #f0fff4;
  --green-200: #c6f6d5;
  --green-300: #9ae6b4;
  --green-400: #68d391;
  --green-500: #48bb78;
  --green-600: #38a169;
  --green-700: #2f855a;
  --green-800: #276749;
  --green-900: #22543d;

  --teal-100: #e6fffa;
  --teal-200: #b2f5ea;
  --teal-300: #81e6d9;
  --teal-400: #4fd1c5;
  --teal-500: #38b2ac;
  --teal-600: #319795;
  --teal-700: #2c7a7b;
  --teal-800: #285e61;
  --teal-900: #234e52;

  --blue-100: #ebf8ff;
  --blue-200: #bee3f8;
  --blue-300: #90cdf4;
  --blue-400: #63b3ed;
  --blue-500: #4299e1;
  --blue-600: #3182ce;
  --blue-700: #2b6cb0;
  --blue-800: #2c5282;
  --blue-900: #2a4365;

  --indigo-100: #ebf4ff;
  --indigo-200: #c3dafe;
  --indigo-300: #a3bffa;
  --indigo-400: #7f9cf5;
  --indigo-500: #667eea;
  --indigo-600: #5a67d8;
  --indigo-700: #4c51bf;
  --indigo-800: #434190;
  --indigo-900: #3c366b;

  --purple-100: #faf5ff;
  --purple-200: #e9d8fd;
  --purple-300: #d6bcfa;
  --purple-400: #b794f4;
  --purple-500: #9f7aea;
  --purple-600: #805ad5;
  --purple-700: #6b46c1;
  --purple-800: #553c9a;
  --purple-900: #44337a;

  --pink-100: #fff5f7;
  --pink-200: #fed7e2;
  --pink-300: #fbb6ce;
  --pink-400: #f687b3;
  --pink-500: #ed64a6;
  --pink-600: #d53f8c;
  --pink-700: #b83280;
  --pink-800: #97266d;
  --pink-900: #702459;
}

* {
  box-sizing: border-box;
}

/* You can add global styles to this file, and also import other style files */
html,
body {
  margin: 0;
  padding: 0;

  height: 100%;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: var(--grey-900);
  background: var(--grey-100);
  overflow-x: hidden;
}

@font-face {
  font-family: "Material Icons";
  font-style: normal;
  font-weight: 400;
  src: url(assets/fonts/MaterialIcons-Regular.ttf) format("truetype");
}
@font-face {
  font-family: "Material Icons Outlined";
  font-style: normal;
  font-weight: 400;
  src: url(assets/fonts/MaterialIconsOutlined-Regular.otf) format("opentype");
}

.mat-icon {
  font-family: 'Material Icons';
}
.mat-icon-o {
  font-family: 'Material Icons Outlined';
}
i.mat-icon,
i.mat-icon-o {
  display: inline-block;
  font-style: normal;
  transform: translateY(2px);
}

.header {
  position: relative;
  background: var(--blue-800);
  color: #fff;
  padding-top: 50px;
  padding-bottom: 100px;
}
.header::before {
  content: '';
  display: block;
  background-image: url('/assets/images/bg.jpg');
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 0;
  mix-blend-mode: soft-light;
}
.header-container {
  position: relative;
  max-width: 1000px;
  display: flex;
  flex-direction: row;
  margin: 0 auto;
  z-index: 1;
}
.header-left,
.header-right {
  width: 50%;
}

.container {
  max-width: 720px;
  margin: 0 auto;
}

.logo-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px 0;
}

.logo-image {
  width: 32px;
  height: 32px;
  margin-right: 10px;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 1px;
  color: #fff;
}

.welcome {
  font-size: 48px;
  font-weight: bold;
  line-height: 1;
  margin-top: 50px;
}
.welcome-subtitle {
  font-size: 18px;
  margin-bottom: 20px;
  margin-top: -10px;
  line-height: 1.6;
}

.pricing {
  display: flex;
  align-items: center;
}
.download-button {
  display: inline-block;
  font-size: 16px;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border: 1px solid #fff;
  border-radius: 20px;
}
.download-button:hover {
  color: var(--teal-300);
  border-color: var(--teal-300);
}
.pricing-details {
  margin-left: 20px;
  font-size: 16px;
}
a.purchase-link {
  color: var(--teal-200);
}

.header-right {
  display: flex;
  justify-content: center;
  align-items: center;
}
.app-demo-image {
  width: 80%;
  margin-top: 50px;
}

h2 {
  margin-top: 30px;
  margin-bottom: 10px;
}

ul.feature-list {
  margin-top: 0;
  list-style-type: none;
  padding-left: 0;
}

ul.feature-list li {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 16px;
  height: 32px;
  margin-left: 10px;
}
ul.feature-list li::before {
  display: block;
  content: "check_circle_outline";
  font-family: "Material Icons Outlined";
  font-size: 24px;
  color: var(--blue-500);
  margin-right: 10px;
  transform: translateY(1px);
}
ul.feature-list-multi li {
  height: 50px;
}

.copyright {
  text-align: center;
  color: var(--grey-700);
  padding: 50px 0;
}

a {
  color: var(--blue-600);
}

section {
  position: relative;
  background-color: var(--blue-800);
  color: #fff;
  padding: 50px 0;
}
.alt-section {
  background-color: #fff;
  color: var(--grey-900);
}

.section-container {
  position: relative;
  z-index: 1;
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
}
.section-col {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.section-image {
  width: 100%;
}
section:not(.alt-section) ul.feature-list li::before {
  color: var(--teal-200);
}

.security-section-container {
  display: block;
}
.security-section p {
  font-size: 16px;
  line-height: 1.6;
  max-width: 100%;
  width: 600px;
}
.security-items {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.security-items p:first-of-type {
  margin-top: 0;
}
.security-items p:last-of-type {
  margin-bottom: 0;
}
.security-section img {
  display: inline-block;
  width: 100%;
  max-width: 600px;
  margin: 40px 0;
}
.privacy-policy {
  display: inline-block;
  border: 1px solid var(--blue-900);
  color: var(--blue-900);
  padding: 10px 15px;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  margin-top: 50px;
}
.privacy-policy:hover {
  background-color: var(--blue-900);
  color: #fff;
}

#thankyou {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--blue-800);
  z-index: 10000;
}
.thankyou-container {
  width: 500px;
  max-width: 100%;
  padding: 40px;
  background: #fff;
}
#thankyou p {
  font-size: 18px;
  color: var(--grey-900);
  line-height: 1.6;
}
#thankyou h1 {
  font-size: 36px;
  line-height: 1.1;
}
#thankyou p.license {
  display: inline-block;
  font-family: monospace;
  margin: 0 auto;
  background: var(--grey-200);
  color: var(--grey-600);
  padding: 10px 15px;
  border-radius: 10px;
}
#thankyou .logo-container {
  justify-content: center;
}
#thankyou .logo {
  color: var(--grey-800);
}

@media (max-width: 900px) {
  .header-container,
  .section-container {
    flex-direction: column;
    padding: 0 15px;
    align-items: center;
    justify-content: center;
  }
  .header-left,
  .header-right,
  .section-col {
    width: auto;
  }

  .alt-section .section-container {
    flex-direction: column-reverse;
  }
}

table {
  table-layout: fixed;
}

th,
td {
  text-align: left;
  padding: 10px;
}

td {
  border-bottom: 1px solid var(--grey-300);
}
