@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap");
:root {
  --text: #ffffff;
  --background: #141725;
  --primary: #1445b7;
  --active: #3067e7;

  --brown: #CD9A69;
  --green: #99C26E;

}
::-webkit-scrollbar {
  width: 6px;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background-color: #1445b7;
  border-radius: 10px;
  -webkit-box-shadow: solid 0 0 6px #282933;
}
::-webkit-scrollbar-thumb:hover {
  background-color: #41baff;
  border-radius: 0;
}
::-webkit-scrollbar-thumb:active {
  background-color: #fff;
  border-radius: 0;
}
::-webkit-scrollbar-track {
  background-color: #282a36;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

* {
  font-family: "Poppins", sans-serif;
  /* border: 1px solid white; */
}

html {
  min-height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  margin: auto;
}

body {
  height: 100%;
  background: #141725;
  transition: 0.2s ease-in-out;
  margin: auto;
}

img {
  user-select: none;
  -webkit-user-drag: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

pre {
  font-size: 14px;
}

code {
  border-radius: 10px;
  border-left: 10px solid #1445b7;
  border-bottom-left-radius: 0px;
  border-top-left-radius: 0px;
}

main {
  position: relative;
}


/* HEADER STYLING START */
/* Navbar margin set */
header {
  display: flex;
  align-content: center;
  justify-content: flex-end;
  align-items: center;
  user-select: none;
  padding: 25px 5%;
  max-width: 1530px;
}

li,
a,
button {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
}

.logo {
  margin-right: auto;
  width: 100px;
}

.navList {
  list-style: none;
  margin-right: 150px;
  transition: 0.3s ease;
  cursor: pointer;
}

.navList li {
  display: inline-block;
  padding: 0px 0px;
  transition: 0.5s ease;
}

.navList li a {
  letter-spacing: 3.5px;
  padding: 30px 30px;
  transition: 0.2s ease;
}

.navList:hover li {
  opacity: 0.2;
  transition: 0.2s ease;
}

.navList li:hover {
  opacity: 1;
  transition: 0.2s ease;
  /* color: var(--active); */
}

.gitButton {
  display: flex;
  padding: 10px 25px;
  background-color: var(--primary);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.2s ease-in-out;
  text-align: center;
  letter-spacing: 3px;
}

.gitButton:hover {
  background-color: var(--active);
}

.gitButtonText {
  padding-right: 10px;
}
/* HEADER STYLING END */

/* CONTENT STYLING START */
/* Content margin set */
.content {
  margin: auto;
  padding: 60px 15%;
  max-width: 1080px;
  justify-content: center;
  align-content: center;
}


/* SECTION BERANDA */
.beranda {
  display: flex;
  justify-content: space-between;
  flex-basis: content;
  margin-bottom: 20%;
}

.beranda-text {
  padding-right: 0px;
}

.beranda h1 {
  font-weight: 600;
  font-size: 40px;
  color: white;
}

.beranda h3 {
  font-weight: 700;
  font-size: 16px;
  padding: 0px 5px;
  background: -webkit-linear-gradient(#41baff, #1951c2);
  background-clip: var(--text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.beranda p {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.3px;
  color: white;
  margin-top: 50px;
}

.beranda button {
  background-color: var(--primary);
  font-size: 16px;
  border: none;
  border-radius: 12px;
  padding: 10px 100px;
  margin-top: 30px;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

.beranda button:hover {
  background-color: var(--active);
}

.beranda .svg {
  display: flex;
  margin-right: 7%;
}

.beranda .svg .svg-left {
  margin-top: 0px;
}

.beranda .svg .svg-right {
  margin: 75px 0px 0px 25px;
}

.beranda .blur {
  position: absolute;
  background-color: var(--active);
  width: 350px;
  height: 370px;
  border-radius: 50%;
  z-index: -10;
  filter: blur(100px);
  opacity: 0.5;
}



/* SECTION ABOUT */
.about {
  margin-bottom: 20%;
}

.about-flex {
  display: flex;
  justify-content: space-between;
  flex-basis: content;
}

.about-title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 35px;
}

.about-text {
  margin-top: 28px;
  padding-left: 50px;
}

.about h3 {
  font-weight: 700;
  font-size: 16px;
  padding: 0px 5px;
  background: -webkit-linear-gradient(#41baff, #1951c2);
  background-clip: var(--text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.code-h2 {
  letter-spacing: 0.3px;
}

.title-h2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  background-color: var(--primary);
  border-radius: 0 20px ;
  padding: 7px 35px;
}

.about h2 {
  color: white;
  font-size: 18px;
  font-weight: 400;
  text-align: left;
}

.about h1 {
  color: white;
  font-size: 36px;
  font-weight: 600;
  margin: 0;
}

#img-code {
  height: auto;
}



/* SECTION TECH */
.tech {
  margin-bottom: 20%;
  color: var(--text);
}

.tech h1 {
  font-weight: 600;
}

.tech h2 {
  font-weight: 600;
  margin: 0;
}
.tech h3 {
  font-weight: 700;
  font-size: 16px;
  padding: 0px 5px;
  background: -webkit-linear-gradient(#41baff, #1951c2);
  background-clip: var(--text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tech .tech-title {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech .tech-subtitle {
  font-size: 20px;
  font-weight: 500;
}

.tech .tech-line {
  display: inline-block;
  width: 73%;
  border-top: 0.2px solid #fff;
  padding-bottom: 5px;
}

.tech .tech-sub {
  font-weight: 300;
  margin-right: 0;
}

.tech .ct-card {
  width: auto;
  display: flex;
  margin: 5% 2% 10%;
}

.tech .ct-card .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  margin: 0px 5px;
  height: 200px;
  background-color: var(--primary);
  flex: 1;
  transition: 0.5s all ease;
}

.tech .ct-card .card:hover {
  flex: 2;
  background-color: var(--active);
}

.tech .tech-end {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech .vanilla {
  background: -webkit-linear-gradient(#41baff, #1951c2);
  background-clip: var(--text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}



/* SECTION FAQ */
.faq {
  margin-bottom: 25%;
}

.faq h1 {
  color: var(--text);
  font-size: 32px;
  text-align: center;
  margin-bottom: 60px;
}

.faq h4 {
  font-weight: 700;
  font-size: 20px;
  background: -webkit-linear-gradient(#41baff, #1951c2);
  background-clip: var(--text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.question-wrapper {
  display: flex;
}

.faq-flex, .faq-flex2 {
  margin-bottom: 30px;
  width: 50%;
}

.faq-flex .accordion, .faq-flex2 .accordion {
  overflow: hidden;
  font-weight: 500;
  margin: 0px 15px;
  margin-bottom: 20px;
}

.accordion input {
  display: none;
}

.accordion label {
  position: relative;
  font-weight: 600;
  display: block;
  color: #fff;
  cursor: pointer;
  padding: 15px;
  border-radius: 10px;
  border-bottom: 1px solid transparent;
  z-index: 1;
  transition: 0.5s ease;
}

.accordion label:hover {
  background: var(--active);
}

.accordion label:after {
  content: "";
  position: absolute;
  right: 15px;
  top: 15px;
  width: 18px;
  height: 18px;
  background: url(../img/ArrowDown.svg) no-repeat 0 0;
  transition: all 1s ease;
}

.accordion input:checked + label {
  background: #fff;
  color: #0f111c;
  border-color: #0f111c;
}

.accordion input:checked + label:hover {
  background: var(--active);
  color: var(--text);
}

.accordion input:checked + label:after {
  filter: blur(90px);
}

.accordion-body {
  max-height: 1px;
  overflow: hidden;
  border-radius: 0 0 10px 10px;
  /* border-top: #fff 1px solid; */
  line-height: 1.4;
  position: relative;
  top: -100%;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.accordion input:checked ~ .accordion-body {
  max-height: 300px;
  padding-bottom: 25px;
  background: #fff;
  opacity: 1;
  top: 0;
  transition: all 0.3s ease;
}

.accordion input:checked ~ label {
  transition: all 0.3s ease;
  border-radius: 10px 10px 0 0;
}

.accordion-body p {
  padding: 0 15px 0 15px;
  color: #0f111c;
  font-weight: 400;
}


/*SECTION GIT*/
.git {
  margin-bottom: 20%;
}

.git-flex {
  color: var(--text);
  display: flex;
  flex-direction: row;
  flex-basis: content;
  justify-content: space-between;
}

.git h1 {
  font-size: 32px;
  margin-top: 60px;
}

.git h3 {
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 2;
}

.git svg {
  margin: 0;
}

.git button {
  background-color: var(--primary);
  font-size: 16px;
  border: none;
  border-radius: 12px;
  padding: 10px 75px;
  margin-bottom: 40px;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

.git button:hover {
  background-color: var(--active);
}

.git .auto-type2 {
  background: -webkit-linear-gradient(#41baff, #1951c2);
  background-clip: var(--text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.git .gitBlur {
  position: absolute;
  background-color: var(--active);
  width: 450px;
  height: 450px;
  border-radius: 50%;
  z-index: -10;
  filter: blur(130px);
  opacity: 0.5;
  margin-left: 650px;
}



/* SECTION FEEDBACK */
.feedback {
  color: var(--text);
  margin-bottom: 10%;
}

.feedback h2 {
  font-size: 32px;
  font-weight: 600;
}

.feedback h3 {
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 1px;
}

.feedback-flex {
  display: flex;
  flex-direction: row;
  flex-basis: content;
  justify-content: space-between;
  margin-top: 10%;
}

.feedback button {
  font-weight: 600;
  font-size: 16px;
  background: transparent;
  border: 1px solid #fff;
  padding: 7px 10px;
  margin-right: 18px;
  cursor: pointer;
  transition: 0.3s ease;
}

.feedback button:hover {
  background:var(--active);
  border: var(--active);
  border-radius: 10px;
  padding: 7px 20px;
}

.feedback #buttonFlex {
  display: flex;
  flex-direction: row;
}

.feedback #pathPointer {
  position: absolute;
  z-index: 1;
  border: 0px solid white;
  margin: 0;
}

.feedback #logoLine {
  position: absolute;
  margin-top: 40px;
  z-index: -1;
}



/* Footer */
.footer-flex {
  display: flex;
  flex-direction: row;
}
.footer-flex div {
  margin: 0px 150px;
  padding-bottom: 80px;
}

footer {
  position: relative;
  padding-top: 30px;
  width: 100%;
  height: 20%;
  background-color: #0f111c;
  color: var(--text);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  cursor: default;
}

footer li {
  list-style: none;
}

footer .contact,
.creator {
  display: flex;
  flex-direction: column;
  margin-top: 0;
}

.contact h3,
.creator h3 {
  margin-bottom: 30px;
}

footer a {
  margin-bottom: 20px;
  transition: 0.3s ease;
  font-size: 14px;
}

footer a:hover {
  color: var(--active);
}

footer img {
  height: auto;
  margin: auto;
  margin-top: 23px;
  cursor: default;
}

footer .slogan h3 {
  text-align: right;
  background: -webkit-linear-gradient(#41baff, #1951c2);
  background-clip: var(--text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

footer h5 {
  font-size: 14px;
  font-weight: 400;
}


/* START STYLE PAGE DOC, DOCS */

#docs-background {
  position: absolute;
  z-index: -10;
  width: 1000px;
  height: 500px;
  left: -50px;
  top: -95px;
  opacity: 0.8;
  filter: blur(0.4px);
}

#community-background {
  position: absolute;
  z-index: -10;
  width: 1200px;
  height: 520px;
  left: 100px;
  top: -10px;
  opacity: 0.8;
  filter: blur(0.4px);
}

#docs-text {
  font-weight: 600;
}

.docs-landing {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 200px;
  margin-bottom: 25%;
  position: relative;
}

.docs-landing h1 {
  font-weight: 600;
  font-size: 40px;
  color: white;
  letter-spacing: 1px;
}

.docs-landing p {
  color: white;
}

.docs-landing span {
  background: -webkit-linear-gradient(#41baff, #1951c2);
  background-clip: var(--text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.docs-landing #heroIMG {
  aspect-ratio: 347/384;
  width: 250px;
}

.docs-landing .blur {
  position: absolute;
  background-color: var(--active);
  width: 350px;
  height: 370px;
  border-radius: 50%;
  z-index: -10;
  filter: blur(100px);
  opacity: 0.2;
}

.docs-landing badge-container {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 90px;
  left: 570px;
  width: 100%;
}

.docs-landing badge-container img {
  height: auto;
  /* transition: 0.2s ease-in-out; */
}

.docs-landing badge-container #img1 {
  width: 170px;
}

.docs-landing badge-container #img2 {
  width: 130px;
  margin-left: 20px;
  margin-top: 10px;
}

.docs-landing badge-container #img3 {
  width: 130px;
  margin-top: 35px;
  margin-left: 320px;
}


.docs {
  color: white;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  height: 600px;
  margin-bottom: 25%;
  border: 4px solid #282933;
  border-right: none;
  border-radius: 10px;
  position: relative;
}

#docsBlur {
  position: absolute;
  top: 1200px;
  left: 1050px;
  background-color: var(--active);
  width: 400px;
  height: 600px;
  border-radius: 50%;
  z-index: -1;
  filter: blur(100px);
  opacity: 0.1;
}

.docs-title {
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin-bottom: 50px; */
  font-weight: 700;
  font-size: 16px;
  padding: 0px 5px;
  background: -webkit-linear-gradient(#41baff, #1951c2);
  background-clip: var(--text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.docs-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  margin-bottom: 50px;
}

.docs-caption p {
  width: 500px;
}

.docs left-content {
  border-right: 6px inset rgba(0, 0, 0, 0.3);
  /* margin-right: 30px; */
  /* background-color: #1445b7; */
}

.docs left-content ul {
  margin-right: 50px;
  list-style: none;
}

.docs left-content ul li {
  margin-bottom: 20px;
  cursor: pointer;
  transition: 0.3s ease;
}

#nav-anim:hover, #nav-lib:hover, #nav-misc:hover {
  color: var(--active);
  filter: brightness(2);
}

#nav-lib, #nav-anim, #nav-misc{
  display: flex;
  justify-content: start;
  align-items: center;
}

#nav-lib span, #nav-anim span, #nav-misc span{
  opacity: 0.5;
  padding: 5px 5px 0px 0px;
}

.docs right-content {
  width: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  margin: 0;
}

.docs right-content div {
  height: 100vh;
  margin-left: 50px;
}

.docs right-content img {
  width: auto;
  height: 200px;
  transition: 0.2s ease-in-out;
}

.docs right-content img:hover {
  filter: brightness(1.3);
}

.docs right-content a {
  text-decoration: underline;
  font-weight: bold;
  color: var(--active);
}

.docs right-content p {
  max-width: 650px;
  text-align: justify;
}

.docs right-content p span {
  background-color: #282933;
  padding: 1px 4px;
  font-weight: 600;
  border-radius: 5px;
  color: var(--green);
}

.docs right-content #content-2, #content-3 {
  display: none;
}

.docs-com {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: 25%;
  text-align: center;
  flex-direction: column;
}

.docs-com main-content {
  color: white;
  margin-bottom: 40px;
}

.docs-com main-content h1{
  font-size: 40px;
  margin-bottom: 40px;
}

.docs-com main-content p {
  width: 700px;
}

.docs-com button-content {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.docs-com #buttonDiscord {
  background-color: var(--text);
  color: var(--background);
}

.docs-com button {
  background-color: var(--primary);
  font-size: 16px;
  border: none;
  border-radius: 40px;
  padding: 10px 75px;
  margin-bottom: 40px;
  cursor: pointer;
  height: 80px;
  font-weight: 600;
  transition: 0.2s ease-in-out;
}

.docs-com #buttonMail:hover, #buttonDiscord:hover {
  padding: 0 100px;
  filter: brightness(1.2);
}

/* Products */

.plan {
  /* border: 1px solid red; */
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-bottom: 20%;
}

.plan .card {
  border: 0.5px solid white;
  border-radius: 10px;
  aspect-ratio: 2/3;
  width: 350px;
  padding: 20px;
  box-sizing: border-box ;
  color: white;
}

.plan .card h1{
  margin: 0;
  font-weight: 600;
  font-size: 32px;
}

.plan .card p{
  font-size: 14px;
  margin: 0;
}

.plan ul {
  list-style-type: square;
}

.plan button {
  background-color: var(--primary);
  padding: 10px 100px;
  transition: 0.3s ease;
  cursor: pointer;
  border: 1px solid var(--primary);
  border-radius: 12px;
  font-weight: 600;
}

.plan button:hover {
  background-color: rgba(0, 0, 0, 0);
}

.timeline {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20%;
}

.timeline iframe {
  border-radius: 20px;
}

/* .timeline .line {
  border: 1px solid white;
  max-height: 500px;
} */



@media screen and (max-width: 1200px) {
  ::-webkit-scrollbar {
    width: 0;
  }

  body {
    background-color: #0f111c;
  }

  header {
    position: fixed;
    z-index: 1;
    width: 100%;
    height: 10px;
    background-color: var(--background);
    transition: all 0.2s ease;
  }

  .hamburger {
    display: block;
    position: relative;
    justify-content: center;
  }

  .hamburger .line {
    width: 30px;
    height: 2px;
    background: var(--text);
    margin: 6px 18px;
  }

  .navList {
    max-height: 0px;
    position: absolute;
    top: 43.5px;
    left: 0;
    right: 0;
    width: 100vw;
    background: var(--background);
  }

  .navList li {
    display: block;
    visibility: hidden;
    width: fit-content;
    margin: auto;
    text-align: center;
    margin: 60px 0;
    margin-right: 17vw;
    transition: opacity 0.5;
    opacity: 0;
  }

  .navList.active {
    max-height: 360px;
  }

  .navList.active li {
    visibility: visible;
    animation: visible 0.5s forwards;
  }

  @keyframes visible {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  .navList li a {
    padding: 20px;
  }

  .gitButtonText {
    display: none;
  }

  .gitButton {
    border-radius: 10px;
    padding: 7px 12px;
    margin-right: 55px;
  }

  .logo {
    margin-left: 10px;
  }

  .gitLogo {
    height: auto;
    width: 25px;
  }

  /* Content Styling */
  .content {
    padding: 100px 0;
  }


  /* Section beranda Resp*/
  .beranda {
    margin: auto;
    flex-direction: column;
    text-align: center;
  }

  .beranda h1 {
    font-size: 36px;
  }
  .beranda h3 {
    font-size: 16px;
  }
  .beranda p {
    font-size: 14px;
  }

  .beranda .svg {
    margin: auto;
    margin-top: 20%;
    margin-bottom: 30%;
  }

  .beranda .blur {
    width: 250px;
    height: 40vh;
  }

  #svg-left,
  #svg-right {
    width: 100px;
  }


  /* Section about Resp*/
  .about-flex {
    flex-direction: column;
  }

  .about-title h1 {
    letter-spacing: 0px;
    font-size: 36px;
  }

  .about .text {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  code {
    margin: auto;
    border-left: 5px solid #1445b7;
    font-size: 10px;
    width: 70%;
  }

  .about div h2 {
    text-align: left;
  }

  .code-h2 {
    padding: 0 20%;
  }



  /* Section tech Resp*/
  .tech-wrap {
    display: none;
  }

  .tech .ct-card {
    flex-direction: column;
    margin: 10%;
  }

  .tech .ct-card .card {
    margin: 10px;
    padding: 20px;
  }

  .tech .tech-end {
    font-size: 10px;
  }



  /* Section faq resp */
  .question-wrapper {
    flex-direction: column;
    justify-content: center;  
    align-items: center;
  }

  .faq-flex, .faq-flex2 {
    margin-bottom: 0;
    width: 90%;
  }

  .faq-flex {
    margin-bottom: 50px;
  }

  #accorTitle {
    font-size: 16px;
    padding: 20px;
  }


    /* Section git resp */
  .git-flex {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }

  .gitContent {
    width: 330px;
  }

  .gitContentText {
    text-align: center;
  }

  .gitContentText h1 {
    font-size: 24px;
  }

  .gitContentText button {
    font-size: 16px;
  }

  .gitContentText h3 {
    font-size: 12px;
  }


  /* Section Feedback Resp */
  .feedback-flex {
    flex-direction: column;
    text-align: center;
  }

  .feedback-text {
    margin-top: 50px ;
    margin-bottom: 100px;
    font-size: 24px;
  }

  .feedback-text h3 {
    font-size: 16px;
    padding: 0 5%;
  }

  .feedback #buttonFlex {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .feedback #logoLine {
    display: none;
  }

  .feedback .feedback-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .feedback #discordWidget {
    width: 300px;
  }


/* Section footer resp */
  footer {
    background-color: #0a0b13;
  }

  footer .slogan h3 {
    text-align: left;
  }

  .footer-flex {
    flex-direction: column;
    margin: 0;
    padding: 0;
  }

  .footer-flex div {
    text-align: left;
    margin: 0 0;
    padding-bottom: 25px;
    padding-right: 40vw;
  }



}


/* Footer Spacing */
@media screen and (max-width: 1360px) {
  .footer-flex div {
    margin: 0px 110px;
  }
}