@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
:root {
  --primary-color: rgba(111, 67, 251, 1);
  --secondary-color: rgba(254, 97, 57, 1);
  --bg-color: rgba(0, 0, 0, 1);
  --text-color: rgba(255, 255, 255, 1);
  --text-color-opacity: rgba(255, 255, 255, .5);
}

/* Basic CSS Reset Starts*/
html,
body {
  background: var(--bg-color);
  height: 100%;
  font: 16px/1.6 "Inter", sans-serif;
  color: var(--text-color);
  font-weight: 400;
  font-style: normal;
  font-optical-sizing: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Basic CSS Reset Ends*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: 700;
}

h1 {
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 16px;
}
@media only screen and (min-width: 1200px) {
  h1 {
    font-size: 40px;
    line-height: 48px;
    margin-bottom: 32px;
  }
}

h2 {
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 16px;
}
@media only screen and (min-width: 1200px) {
  h2 {
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 32px;
  }
}

h3 {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 8px;
}
@media only screen and (min-width: 1200px) {
  h3 {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 16px;
  }
}

h4 {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 8px;
}
@media only screen and (min-width: 1200px) {
  h4 {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 16px;
  }
}

h5 {
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 4px;
}
@media only screen and (min-width: 1200px) {
  h5 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 8px;
  }
}

h6 {
  font-size: 12px;
  line-height: 16px;
  margin-bottom: 2px;
}
@media only screen and (min-width: 1200px) {
  h6 {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 4px;
  }
}

.h-lg {
  font-size: 26px;
  line-height: 28px;
  margin-bottom: 16px;
}
@media only screen and (min-width: 1200px) {
  .h-lg {
    font-size: 52px;
    line-height: 56px;
    margin-bottom: 32px;
  }
}

.h-sm {
  font-size: 22px;
  line-height: 24px;
  margin-bottom: 16px;
}
@media only screen and (min-width: 1200px) {
  .h-sm {
    font-size: 44px;
    line-height: 48px;
    margin-bottom: 32px;
  }
}

p {
  font-size: 12px;
  line-height: 16px;
  color: var(--text-color-opacity);
  font-weight: 300;
  margin-bottom: 2px;
}
@media only screen and (min-width: 1200px) {
  p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 4px;
  }
}
p.p-lg {
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 4px;
}
@media only screen and (min-width: 1200px) {
  p.p-lg {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 8px;
  }
}
p.p-sm {
  font-size: 12px;
  line-height: 16px;
  margin-bottom: 2px;
}
@media only screen and (min-width: 1200px) {
  p.p-sm {
    font-size: 14px;
    line-height: 20px;
  }
}
p.p-xs {
  font-size: 10px;
  line-height: 14px;
  margin-bottom: 2px;
}
@media only screen and (min-width: 1200px) {
  p.p-xs {
    font-size: 12px;
    line-height: 16px;
  }
}

.container {
  max-width: 1140px;
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.navigation {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.navigation ul li {
  display: flex;
  justify-content: center;
  align-items: center;
}
.navigation ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 24px;
}
.navigation ul li.logo {
  margin-right: 24px;
}
.navigation ul li.logo a {
  padding-left: 0;
  padding-right: 0;
}
.navigation ul li.logo svg {
  width: 30px;
  height: 30px;
}
.navigation ul li.logo svg .logo-primary {
  fill: var(--text-color);
}
.navigation ul li.logo svg .logo-secondary {
  fill: var(--primary-color);
}
.navigation .toggle-theme {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  border-radius: 100%;
}
.navigation .toggle-theme:hover {
  background: rgba(155, 155, 155, 0.3);
  cursor: pointer;
}
.navigation .toggle-theme .icon {
  min-width: 24px;
  width: 24px;
  height: 24px;
}

.banner {
  background: var(--bg-color);
  width: 100%;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.banner h1 {
  margin-bottom: 8px;
}
.banner h6 {
  color: var(--secondary-color);
  margin-bottom: 24px;
}
.banner p {
  margin-bottom: 32px;
}
.banner ul li {
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: end;
}
.banner ul li h2 {
  margin-bottom: 8px;
}
.banner ul li h2 span {
  font-size: 32px;
  color: var(--secondary-color);
  font-weight: 400;
  margin-left: 8px;
  vertical-align: top;
}
.banner ul li p {
  color: var(--text-color-opacity);
}
.banner svg {
  margin-right: 4px;
  vertical-align: bottom;
}
.banner .icon-download {
  stroke: #fff;
}

.banner-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: 2fr 2fr 1fr;
}

.btn {
  background: linear-gradient(to bottom, var(--primary-color) 0%, var(--secondary-color) 100%);
  font-size: 16px;
  color: #ffffff;
  border: none;
  padding: 20px 32px;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
}
.btn:hover {
  background: linear-gradient(to bottom, var(--secondary-color) 0%, var(--primary-color) 100%);
}/*# sourceMappingURL=all.css.map */