@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");

body {
  font-family: "Inter", sans-serif !important;
  margin: 0;
  color: white;
  overflow-x: hidden;
  background-color: #070810 !important;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

nav {
  width: 90%;
  margin: 0 auto;
  border-bottom: solid 1px #10203f;
  padding-bottom: 25px !important;
}

/* scss stuff */
/* header */
.navlogo {
  width: 180px;
  height: auto;
}

.dashbtn {
  font-family: "Inter", sans-serif;
  font-weight: 600 !important;
  font-size: 15px !important;
  display: inline-block;
  -webkit-transition: 0.2s !important;
  transition: 0.2s !important;
  z-index: 1;
  border-radius: 5px !important;

  color: white !important;
  border: solid 1px #10203f !important;
  padding: 10px 35px !important;
  margin-left: 30px;
}

.dashbtn:hover {
  cursor: pointer;
  background-color: #4964ff !important;
}

.nav-link {
  font-family: "Inter", sans-serif;
  color: white !important;
  font-weight: 600 !important;
  font-size: 15px !important;
}

.nav-link:hover {
  font-family: "Inter", sans-serif;
  color: #4964ff !important;
}

.headerWidth {
  margin-top: 25px;
  padding: 0 !important;
}

@media (min-width: 768px) {
  .navbar-nav {
    float: none;
    margin: 0 auto !important;
    display: block;
    text-align: center;
  }
  .navbar-nav > li {
    display: inline-block;
    float: none;
  }
  .navlogo {
    width: 190px;
    height: auto;
  }
  nav {
    width: 80%;
    margin: 0 auto;
  }
}

/* Landing */

#landing {
  width: 80%;
  margin: 50px auto 0 auto;
  text-align: center;
}

h1 {
  font-family: "Inter", sans-serif;
  font-weight: 700 !important;
  font-size: 80px !important;
  color: white;

  max-width: 900px;
  margin: 0 auto;

  position: relative;
  z-index: 999;
}

p {
  font-family: "Inter", sans-serif;
  font-weight: 500 !important;
  font-size: 15px !important;
  color: #666a84;
  margin: 15px 0 0 0;

  position: relative;
  z-index: 999;
}

.landingSubtitle {
  max-width: 700px;
  margin: 20px auto 0 auto !important;
}

.landingImage {
  width: 100%;
  margin: 0 auto;
  margin-top: -180px;

  position: relative;
  z-index: -1;
}

.buyButton {
  font-family: "Inter", sans-serif;
  font-weight: 600 !important;
  font-size: 15px !important;
  display: inline-block;
  -webkit-transition: 0.2s !important;
  transition: 0.2s !important;
  z-index: 1;
  border-radius: 5px !important;
  margin-top: 25px;

  color: white !important;
  border: solid 1px #274e95 !important;
  background-color: #0e1227 !important;
  padding: 10px 35px;
  text-decoration: none;

  cursor: pointer;

  position: relative;
  z-index: 1;
}

@media (max-width: 1046px) {
  h1 {
    font-size: 58px !important;
  }

  .landingImage {
    width: 130%;
    margin: 0 auto;
    margin-top: -120px;

    position: relative;
    z-index: -1;
  }
}

@media (max-width: 768px) {
  #landing {
    width: 90%;
    margin: 30px auto 0 auto;
  }

  h1 {
    font-family: "Inter", sans-serif;
    font-weight: 700 !important;
    font-size: 42px !important;
    color: white;
  }

  .landingImage {
    width: 140%;
    margin: 0 auto;
    margin-top: -70px;
  }
}

@media (max-width: 488px) {
  h1 {
    font-family: "Inter", sans-serif;
    font-weight: 700 !important;
    font-size: 32px !important;
    color: white;
  }
}

/* Features */

#features {
  width: 84%;
  margin: 0 auto 0px auto;
  padding: 30px 0 30px 0;
  text-align: center;
}

.subtitle {
  max-width: 700px !important;
  margin: 0 auto;
}

#features p {
  font-family: "Inter", sans-serif;
  font-weight: 500 !important;
  font-size: 15px !important;
  color: #666a84;
  margin: 0 auto;

  position: relative;
  z-index: 999;
  max-width: 85%;
}

.featureContainer {
  margin-top: 25px;
}

.featureIcon {
  width: 80px;
  height: auto;
  margin-bottom: -65px;
}

h2 {
  font-family: "Inter", sans-serif;
  font-weight: 600 !important;
  font-size: 30px !important;
  color: white;
  margin: 0 auto;
}

h3 {
  font-family: "Inter", sans-serif;
  font-weight: 600 !important;
  font-size: 20px !important;
  color: white;
  margin-top: 20px !important;

  max-width: 90%;
  margin: 0 auto;
}

.featureCard {
  text-align: center;
  width: 100%;
  margin: 25px 0;
  padding: 35px 0 30px 0;
  border-radius: 10px;
  background-color: #0e1023;

  min-height: 180px;
}

@media (max-width: 768px) {
  #features {
    width: 90%;
    margin: 0 auto;
    padding: 30px 0;
    text-align: center;
  }

  h3 {
    font-family: "Inter", sans-serif;
    font-weight: 600 !important;
    font-size: 20px !important;
    color: white;
    margin-top: 20px !important;
  }

  .featureContainer {
    margin-top: 20px;
  }

  .featureCard {
    text-align: center;
    width: 100%;
    margin: 20px auto;
  }
}

/* FAQ */

#faq {
  width: 83%;
  margin: 80px auto;
  text-align: center;
  overflow: hidden;
  z-index: 999;
}

.well {
  margin: 0;
}

.accordion-button {
  font-family: "Inter", sans-serif !important;
  text-align: left;
  color: #666a84 !important;
  border-radius: 10px !important;
  padding: 20px 20px !important;
  font-size: 15px !important;
}

.accordion-button:hover {
  background-color: #0e1023 !important;
  cursor: pointer;
}

.accordion-body {
  font-family: "Inter", sans-serif !important;
  text-align: left;
  color: #666a84 !important;
}

.faqAnswer {
  font-family: "Inter", sans-serif !important;
  text-align: left;
  color: #abafd3 !important;
  margin: 0;
  padding: 15px 20px !important;
}

.accordion-button:focus {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border-color: rgba(0, 0, 0, 0) !important;
  outline: none !important;
}

.accordion-button:not(.collapsed) {
  color: white !important;
  background-color: #0e1023 !important;
}

.accordion-button:after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFFFFF'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !important;
}

.faqText {
  color: white;
  margin: 0 !important;
  line-height: 24px;
}

@media (max-width: 768px) {
  #faq {
    width: 90%;
    margin: 0 auto 0px auto;
    padding: 0 0 90px 0;
    text-align: center;
  }

  /*  .accordion-button:after {
    margin-left: 5px !important;
  } */
}

.accordion-header {
  margin: 0 !important;
}

/* Footer */
#footer {
  width: 80%;
  margin: 0 auto 0 auto;
  padding: 30px 0;
}

.copyright {
  color: #4964ff;
  font-size: 15px !important;
  margin-top: 20px;
}

.col-right {
  text-align: right;
}

li {
  list-style: none;
}

.footer-link {
  font-family: "Inter", sans-serif !important;
  font-size: 15px !important;
  color: #80848c;
  text-decoration: none;
  transition: 0.2s;
  line-height: 26px;
}

.footLogo {
  width: 200px;
  height: auto;
}

@media (max-width: 768px) {
  #footer {
    width: 87%;
    margin: 0 auto 0 auto;
    padding: 30px 0;
  }
}

a:hover {
  color: white !important;
}

/* Mobile Stuff */

@media (max-width: 768px) {
  h2 {
    font-family: "Inter", sans-serif;
    font-weight: 600 !important;
    font-size: 24px !important;
    color: white;
    margin: 0 auto;
  }

  p {
    font-family: "Inter", sans-serif;
    font-weight: 500 !important;
    font-size: 14px !important;
  }
}
