@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;800;900&family=Albert+Sans:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
:root {
  --color-1: #60bad6;
  --color-2: #2baad1;
  --color-3: #fe0047;
  --color-4: #1d2238;

  --font-default: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  --font-primary: "Albert Sans", var(--font-default);

  --gradient-1: #e100ff, #6b81fa, #60bad6;
  --gradient-2: #e100ff, #6b81fa, #60bad6;
}
body {
  margin: 5em auto;
  max-width: 70%;
  background: url("data:image/svg+xml,%0A%3Csvg id='visual' viewBox='0 0 900 600' width='900' height='600' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1'%3E%3Crect x='0' y='0' width='900' height='600' fill='%230e1121'%3E%3C/rect%3E%3Cg fill='none' stroke='%23009473' stroke-width='2'%3E%3Ccircle r='84' cx='172' cy='7'%3E%3C/circle%3E%3Ccircle r='31' cx='717' cy='430'%3E%3C/circle%3E%3Ccircle r='53' cx='17' cy='346'%3E%3C/circle%3E%3Ccircle r='78' cx='527' cy='21'%3E%3C/circle%3E%3Ccircle r='30' cx='328' cy='186'%3E%3C/circle%3E%3Ccircle r='54' cx='382' cy='402'%3E%3C/circle%3E%3Ccircle r='31' cx='891' cy='505'%3E%3C/circle%3E%3Ccircle r='80' cx='667' cy='221'%3E%3C/circle%3E%3Ccircle r='71' cx='825' cy='15'%3E%3C/circle%3E%3Ccircle r='63' cx='193' cy='592'%3E%3C/circle%3E%3Ccircle r='36' cx='541' cy='534'%3E%3C/circle%3E%3Ccircle r='82' cx='206' cy='407'%3E%3C/circle%3E%3C/g%3E%3C/svg%3E")
    no-repeat fixed;
  background-size: cover;
  background-color: #ececec;
  color: #222;
  font-family: var(--font-primary), var(--font-default);
  font-size: 14.5px;
  overflow-wrap: break-word;
  line-height: 2em;
  -webkit-box-shadow: rgb(0 0 0 / 19%) 0 0 20px 0;
  box-shadow: rgb(0 0 0 / 19%) 0 0 20px 0;
}
::-moz-selection {
  background-color: #059aae;
  color: #fff;
}
::selection {
  background-color: #059aae;
  color: #fff;
}

.hidden {
  opacity: 0;
}
.console-container {
  font-size: 2em;
  text-align: center;
  display: block;
  color: white;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.console-underscore {
  display: inline-block;
  top: -0.14em;
  left: 10px;
  color: #000;
}
a {
  text-decoration: none;
  color: #fff;
}

header {
  color: #fff;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  /* background: url(./assets/alightmotion-background.webp) no-repeat top right fixed; */
  /* background-size: cover; */
  overflow: hidden;
  color: #fff;
  z-index: -1;
  text-align: center;
  overflow: hidden;
  /* border-radius: 30px 30px 0 0; */
}

.head-wrap {
  -webkit-backdrop-filter: brightness(0.3) blur(5px);
  backdrop-filter: brightness(0.3) blur(5px);
}
.gt_languages a {
  color: #000;
}
.gt_switcher-popup {
  color: #fff;
}
.gt_switcher_wrapper {
  position: absolute !important;
}

a.logo {
  display: block;
  color: var(--color-2);
  font-size: calc(0.8vw + 1.5em);
  padding: 1em 0;
  font-weight: 500;
  letter-spacing: 1px;
}

nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  padding: 2em 0;
  font-size: calc(0.2vw + 13px);
  font-weight: 500;
  letter-spacing: 1px;
  white-space: nowrap;
  overflow-x: scroll;
  overflow-y: hidden;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

nav::-webkit-scrollbar {
  display: none;
}

nav a {
  border: 1px solid #ffffff16;
  max-width: 200px;
  padding: 0 10px;
  width: 200px;
  height: 4em;
  line-height: 4em;
  margin: 0 10px;
}
nav a:hover {
  border-color: var(--color-1);
}
nav a svg {
  fill: #fff;
  stroke: none;
  margin: 0;
  vertical-align: middle;
  width: 1.3em;
  height: 1.3em;
}
main {
  padding: 10px;
  background-color: #fff;
}

main :is(p, li) a::before {
  content: "";
  position: absolute;
  height: 1px;
  background: var(--color-2);
  width: 0;
  bottom: 0;
  -webkit-transition: width 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: width 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  transition: width 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
main :is(p, li) a::before {
  width: 100%;
}

main :is(p, li) a {
  position: relative;
  color: var(--color-2);
  font-weight: bold;
  border-bottom: 1px dashed #8d8d8d;
}

main :is(p, li) a:hover {
  opacity: 1;
  border-color: var(--color-2);
}
p {
  position: relative;
  margin: 26px 0;
  padding: 0;
  color: #181818;
  font-size: 15px;
  line-height: 3em;
}
/* p::after {
  position: absolute;
  bottom: 0;
  right: auto;
  background-color: #126dff90;
  content: "";
  display: inline-block;
  height: 7px;
  width: 7px;
  margin: 10px;
} */
/* p:hover::after {
  animation: 1s blinker infinite;
}

.blink_me {
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
} */
.bg-info {
  background-color: #eee;
  border-left: 4px solid #000;
  padding: 20px 30px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-weight: bold;
  margin: 1em 0;
  line-height: 1.5em;
  text-align: center;
}
h3 {
  font-size: calc(0.6vw + 1em);
}
h1.title {
  padding: 0.4em 0;
  text-align: center;
  font-size: calc(0.8vw + 1.5em);
  overflow-wrap: break-word;
  color: #000;
  font-weight: 200;
  line-height: 1.5em;
  margin: 0.5em 0;
}
.entry-title {
  padding-top: 1em;
  text-align: center;
  font-size: calc(0.7vw + 20px);
  overflow-wrap: break-word;
  color: #222;
  font-weight: 700;
  line-height: 1.5em;
  margin: 0;
  background: #fff;
}
hr {
  margin: 1em auto;
  height: 2px;
  border: none;
  background: #1294aa;
}
.boxdiv {
  margin: 4em 0;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  -webkit-column-gap: 1em;
  -moz-column-gap: 1em;
  column-gap: 1.5em;
  row-gap: 2em;
}

.box {
  /* background: #111; */
  border-bottom: 1px solid #222;
  padding: 1em;
}
.boxtxt {
  display: block;
  color: #000;
  font-weight: 400;
  margin: 0;
  padding: 10px 0;
  border-radius: 5px;
  font-size: calc(0.5vw + 1.5em);
  text-align: left;
  letter-spacing: 2px;
  background-clip: text;
}
.box-icon img {
  max-width: 50%;
}
.logo-img {
  max-width: calc(4vw + 6em);
  margin: 2em auto;
}
.block-img {
  max-width: 50%;
}

.box:hover {
  border-color: var(--color-1);
}
.box-icon svg {
  width: 80px;
  height: 80px;
  fill: #000;
  -webkit-transition: 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -o-transition: 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.box:hover {
  border-color: var(--color-1);
  -webkit-transform: scale(1.01) translateY(-5px);
  -ms-transform: scale(1.01) translateY(-5px);
  transform: scale(1.01) translateY(-5px);
}

.fh-1 {
  display: block;
  background: -o-linear-gradient(60deg, var(--gradient-2));
  background: linear-gradient(30deg, var(--gradient-2));
  color: #fff;
  margin: 1em auto;
  padding: 0 1em;
  border-radius: 5px;
  font-size: calc(1vw + 1.3em);
  line-height: 2;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}
.fh-2 {
  color: #fff;
  background: var(--color-4);
  display: inline-block;
  line-height: 2;
  padding: 5px 12px;
  -webkit-box-shadow: 0 0 7px #00000040;
  box-shadow: 0 0 7px #00000040;
  border-left: 15px solid #00c4b7;
}
.fh-3 {
  color: #222;
}
.fh-4 {
  margin: 0;
  color: #fff;
  padding: 1em 0;
  background: #00c9b7;
}
.icon {
  color: #000;
  text-align: center;
  display: block;
  margin: auto;
  font-size: 80px;
}
.ss {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  padding: 0.5em 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-scroll-snap-type: x proximity;
  scroll-snap-type: x proximity;
  overflow-x: scroll;
}
.ss img {
  pointer-events: none;
  scroll-snap-align: center;
  margin: 0 1em;
  max-width: 250px;
}

footer {
  /* border-bottom: 2px solid var(--color-1); */
  color: #fff;
  padding: 20px 40px;
  letter-spacing: 1px;
  line-height: 3.5em;
  color: #fff;
  font-size: 13px;
  text-align: center;
  background-color: #15192a;
}
footer p {
  color: #aaa;
  font-size: 11px;
}
footer a,
footer a:hover {
  color: #fff;
}
.links a {
  font-size: 11px;
  padding: 0 5px;
  display: inline-block;
}
.links a:hover {
  opacity: 0.7;
}
.center {
  text-align: center;
}
ul {
  font-size: 14px;
  font-weight: 500;
  margin: 1em 0 1em 2.5em;
  list-style-type: "\279C   ";
}
li {
  margin: 1rem 0;
}
img {
  display: block;
  margin: 1em auto;
  max-width: 100%;
}
table {
  margin: auto;
  width: 100%;
  border-collapse: collapse;
}
th {
  font-weight: 700;
  background-color: #01feaa26;
}
td,
th {
  text-align: left;
  padding: 9px 5px;
  vertical-align: top;
}
tr:nth-child(odd) {
  background-color: #f5f5f5;
}
a svg {
  margin: -7px 0;
}
.dl-svg::before {
  content: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7.41421L6.41421 6L12.0711 11.6569L17.7279 6L19.1421 7.41421L12.0711 14.4853L5 7.41421Z' fill='currentColor'/%3E%3Cpath d='m19 16.343h-14v2h14v-2z' fill='currentColor'/%3E%3C/svg%3E%0A");
  position: absolute;
  -webkit-transform: translate(-30px, 3px);
  -ms-transform: translate(-30px, 3px);
  transform: translate(-30px, 3px);
}

a.btn {
  position: relative;
  border: 2px solid #000000;
  font-size: 1em;
  font-weight: 600;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  user-select: none;
  padding: 10px 18px;
  margin: 2em auto;
  color: #000;
  letter-spacing: 1px;
  -webkit-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  -webkit-transition: 0.1s ease-in-out;
  -o-transition: 0.1s ease-in-out;
  transition: 0.1s ease-in-out;
  padding-left: 40px;
}
a.btn:hover {
  -webkit-transform: scale(0.97);
  -ms-transform: scale(0.97);
  transform: scale(0.97);
  opacity: unset;
}
a.download {
  font-size: 20px;
  color: #fff;
  border: 2px solid #fff;
  padding: 20px;
  width: 40%;
  background: transparent;
  -webkit-transition: 0.1s all;
  -o-transition: 0.1s all;
  transition: 0.1s all;
}
a.download:hover {
  color: #fff;
}
.faq-list {
  list-style-type: none;
  margin: auto;
  text-align: center;
  max-width: 100%;
}

.faq-box {
  padding: 0.5em;

  -webkit-transform: scale(0.98);
  -ms-transform: scale(0.98);
  transform: scale(0.98);
  -webkit-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
  margin: 2em 0;
  -webkit-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.ans-box {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.5s ease-in-out;
  -o-transition: max-height 0.5s ease-in-out;
  transition: max-height 0.5s ease-in-out;
}
.faq {
  cursor: pointer;
  position: relative;
  text-align: left;
  font-weight: 700;
  font-size: calc(0.4vw + 1em);
  margin: 0;
  border-left: 3px solid;
  -o-border-image: -o-linear-gradient(left, var(--gradient-4)) 1;
  border-image: -webkit-gradient(linear, left top, right top, from(var(--gradient-4))) 1;
  border-image: linear-gradient(to right, var(--gradient-4)) 1;
  color: #000;
  font-weight: 600;
  padding: 20px 20px;
  display: block;
  background: #f5f5f5;
}

.faq::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='12' viewBox='0 0 15 9' fill='none' style='transform:rotateX(0deg)'%3E%3Crect x='12' y='3' width='3' height='3' transform='rotate(90 12 3)' fill='%23ae3b41'%3E%3C/rect%3E%3Crect x='15' width='3' height='3' transform='rotate(90 15 0)' fill='%23ae3b41'%3E%3C/rect%3E%3Crect x='9' y='6' width='3' height='3' transform='rotate(90 9 6)' fill='%23ae3b41'%3E%3C/rect%3E%3Crect x='6' y='3' width='3' height='3' transform='rotate(90 6 3)' fill='%23ae3b41'%3E%3C/rect%3E%3Crect x='3' width='3' height='3' transform='rotate(90 3 0)' fill='%23ae3b41'%3E%3C/rect%3E%3C/svg%3E");
  position: absolute;
  right: 20px;
  top: 20px;
  -webkit-transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.ans {
  display: block;
  text-align: left;
  padding: 2em;
  margin: 0;
  border-top: 0;
  -webkit-box-shadow: 0px 2px 15px 0px #00000017;
  box-shadow: 0px 2px 15px 0px #00000017;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.ans::before {
  content: " – ";
}

.faq.active::after {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.ans-box.active {
  max-height: 1200px;
}
.r-radius {
  border-radius: 50%;
}
.toc {
  display: block;
  border: var(--border-1);
  margin: 1em 0;
  padding: 10px 1em;
}
.toc li {
  margin: 0.5em 1em;
  padding: 0.1em 0;
  list-style-type: square;
}
.toc a {
  font-weight: 600;
  color: var(--color-3);
}
.toc a:hover {
  text-decoration: none;
  border-color: var(--color-3);
}
.share {
  text-align: center;
  overflow: hidden;
  max-width: 50%;
  margin: 0 auto;
  padding: 1em 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.share a {
  list-style: none;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 17px;
  margin: 1%;
  padding: 7px 0;
  color: #fff;
  /* border-radius: 20px; */
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  border: none;
}
.share a svg {
  fill: #fff;
  stroke: none;
  margin: 0;
  vertical-align: middle;
  width: 1em;
  height: 1em;
}
.whatsapp {
  background-color: #25d366;
}
.facebook {
  background-color: #3b5998;
}
.twitter {
  background-color: #222;
}
.telegram {
  background-color: #08c;
}
.email {
  background-color: #5a5a5a;
}
.share a:hover {
  color: #fff;
  opacity: 0.9;
}
.reviews {
  text-align: center;
  padding: 10px 20px;
  border-radius: 3px;
  line-height: 2em;
}
.reviews span {
  display: block;
  font-size: 30px;
  margin: 10px 0;
}
.reviews img {
  border-radius: 20%;
  max-width: 6em;
  margin: 1em auto;
}
.ytbox {
  border: 1px solid #ddd;
  padding: 1em;
  margin: 1em 0;
}
.ytbox .btn {
  color: #fff;
  background: #c00;
}
.text-glow {
  display: block;
  background: -o-linear-gradient(60deg, var(--gradient-1));
  background: linear-gradient(30deg, var(--gradient-1));
  color: #fff;
  font-weight: 700;
  margin: auto;
  padding: 0.5em 1em;
  border-radius: 5px;
  font-size: calc(0.7vw + 1em);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  font-variant-caps: titling-caps;
  text-shadow: var(--color-1) 0px 5px 20px;
}
.typewrite {
  margin: 0;
}
.typewrite .wrap {
  border-right: 0.1em solid #ffffff31;
}

.dl-wrapper {
  display: -ms-grid;
  display: grid;
  place-items: center;
  margin: 2em 0;
}
.dl-wrapper p {
  margin: 0.2em 0;
}
.fh-sm {
  font-weight: bold;
  margin: 1em auto;
  font-size: calc(0.3vw + 1em);
}
#countdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #000;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 1em auto;
  text-align: center;
  width: 100px;
  height: 100px;
  font-size: 40px;
  color: #fff;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#hidden-cnt {
  display: none;
}
@media screen and (max-width: 700px) {
  body,
  main,
  img,
  footer,
  .show-cnt,
  .install-img,
  .block-img,
  .share,
  .faq-list {
    max-width: 100%;
    margin: auto;
  }
  .gt_switcher_wrapper {
    top: 0 !important;
    right: 0 !important;
  }
}
