/* [project]/src/app/landing_page.css [app-client] (css) */
:root {
  --white-fff: #fff;
  --aquamarine: #23d0d3;
  --blue: #20a5e3;
  --black-2: #141414;
  --black: #000;
}

html {
  height: 100%;
  display: block;
}

body {
  margin: 0;
  min-height: 100%;
  color: var(--white-fff);
  background-color: #030303;
  font-family: Gilroy, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

.navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #ddd0;
  background-image: none;
  z-index: 1000;
}

.navbar .nav-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
}

.navbar .globe-logo {
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: auto;
  overflow-x: hidden;
  opacity: .5;
  pointer-events: none;
}

.nav-menu, .w-nav-menu {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 10px;
  background-color: var(--black, #000);
  border: 1px solid #363636;
  border-radius: 100px;
  position: relative;
}

.nav-link, .w-nav-link {
  display: inline-block;
  padding: .5rem 1rem;
  border-radius: 9999px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: background-color .2s, color .2s;
}

.nav-link:hover, .w-nav-link:hover {
  background-color: #ffffff1a;
  color: #fff;
}

.nav-link.active, .w--current {
  background-color: #fff;
  color: #000;
}

.hide {
  display: none !important;
}

.container {
  width: 1340px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
}

.gradient {
  position: absolute;
  top: -5%;
  left: 0;
  right: 0;
  width: 300px;
  height: 300px;
  margin: 0 auto;
  background-color: var(--blue);
  filter: blur(150px);
  border-radius: 100%;
}

.h1 {
  color: var(--white-fff);
  text-align: center;
  margin: 0 auto;
  font-size: 64px;
  line-height: 1;
  width: 25ch;
  font-weight: 600;
}

.p {
  color: var(--white-fff);
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.4;
}

.blue-dot-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blue-dot-list li {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: .5em;
}

.blue-dot-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: .6em;
  width: .5em;
  height: .5em;
  background-color: #20a5e3;
  border-radius: 50%;
}

.gradient-span {
  background-image: linear-gradient(to right, var(--aquamarine), var(--blue));
  background-clip: text;
}

.rounded-span {
  border: 1px solid var(--blue);
  border-radius: 100px;
  padding: 7px 20px;
  font-weight: 500;
  text-align: center;
  display: inline-block;
}


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