body {
  --primary-bg: #0c0c0c;
  --primary-yellow: #f7ff00;
  --primary-pink: #de4797;
  --primary-green: #73f501;
  --text-color: #ffffff;
  --text-color-cream: #fff6e8;
  --bs-btn-bg: var(--primary-yellow);
}

.bg-body-tertiary {
  background: var(--primary-bg) !important;
}

body {
  margin: 0;
  background: var(--primary-bg);
}
body .yellow-text {
  color: var(--primary-yellow) !important;
}
body .pink-text {
  color: var(--primary-pink) !important;
}
body .green-text {
  color: var(--primary-green) !important;
}

.loading {
  position: fixed;
  z-index: 1031;
  background: #0c0c0c;
  width: 100vw;
  transition: 2s ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "GraublauWeb";
  text-transform: uppercase;
}

@font-face {
  font-family: "GraublauWeb";
  src: url("../assets/FormulaCondensed-Bold.otf") format("opentype");
}
.btn {
  color: var(--text-color) !important;
}

.btn-success {
  --bs-btn-color: var(--primary-bg);
  --text-color: var(--primary-bg);
  --bs-btn-bg: var(--primary-yellow);
  --bs-btn-border-color: #f7ff00;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #73f501;
  --bs-btn-hover-border-color: #73f501;
  --bs-btn-focus-shadow-rgb: 60, 153, 110;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #73f501;
  --bs-btn-active-border-color: #73f501;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #198754;
  --bs-btn-disabled-border-color: #198754;
}

header .navbar {
  padding-top: 1rem;
  background: rgba(12, 12, 12, 0.62) !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(7.9px);
  -webkit-backdrop-filter: blur(7.9px);
  border: 1px solid rgba(12, 12, 12, 0.97);
}
header .navbar .d-flex {
  flex-direction: row;
}
@media screen and (max-width: 540px) {
  header .navbar .d-flex {
    flex-direction: column;
  }
}
header .register-btn {
  font-family: "Lato", sans-serif;
  text-decoration: underline;
  font-weight: 700;
}
header .sign-in-btn {
  padding: 0px 2rem;
  font-weight: 700;
  font-family: "Lato", sans-serif;
  background: linear-gradient(to right, #f7ff00, #73f501) !important;
}
@media screen and (max-width: 540px) {
  header .sign-in-btn {
    padding: 0.5rem 2rem;
  }
}

section.main {
  height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
section.main .slide-container {
  height: calc(2.675rem + 1.5vw);
  overflow: hidden;
  text-align: center;
  width: 30rem;
}
@media screen and (max-width: 540px) {
  section.main .slide-container {
    width: 13rem;
  }
}
section.main h1 {
  color: #fff6e8;
  display: block;
  text-transform: uppercase;
  font-size: calc(2.675rem + 1.5vw);
}
@media screen and (max-width: 540px) {
  section.main h1 {
    text-align: left;
    font-size: calc(1.7rem + 1.5vw);
  }
}
section.main .input-container {
  display: flex;
  gap: 10px;
  width: 35vw;
}
@media screen and (max-width: 540px) {
  section.main .input-container {
    width: 85vw;
  }
}
section.main .input-container button {
  padding: 0.5rem 2rem;
  background: linear-gradient(to right, #f7ff00, #73f501) !important;
}
section.main .input-container input {
  border-color: #fff6e8;
  background: #0c0c0c;
  color: #fff6e8;
}
section.main .input-container input::-moz-placeholder {
  color: #fff6e8;
}
section.main .input-container input::placeholder {
  color: #fff6e8;
}
@media screen and (max-width: 540px) {
  section.main .input-container input::-moz-placeholder {
    font-size: 0.9rem;
  }
  section.main .input-container input::placeholder {
    font-size: 0.9rem;
  }
}

section.bars {
  padding: 2rem 0%;
  width: 100vw;
  overflow: hidden;
}
section.bars .bar1 {
  position: relative;
  width: 103vw;
  height: 7rem;
  background: #2e2e2e;
  transform: rotate(3deg) translateX(-10px) translateY(0.5rem);
  z-index: -1;
}
section.bars .bar2 {
  position: relative;
  width: 103vw;
  height: 8rem;
  background: linear-gradient(to right, #f7ff00, #73f501);
  transform: rotate(-4deg) translateX(-10px) translateY(-6rem);
  z-index: 1;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 540px) {
  section.bars .bar2 {
    transform: rotate(-4deg) translateX(0px) translateY(-6rem);
  }
}
section.bars .bar2 span {
  font-size: 4rem;
  font-family: "GraublauWeb";
  padding: 0rem 5rem;
  text-transform: uppercase;
}
section.bars .bar2 .track {
  position: absolute;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 32s linear infinite;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

section.desc {
  height: 80vh;
}
@media screen and (max-width: 540px) {
  section.desc {
    height: 100%;
  }
}
section.desc .text {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
section.desc .img-container {
  display: flex;
  justify-content: center;
}
section.desc .img-container img {
  height: 80vh;
  transform: scale(1.3);
}
@media screen and (max-width: 540px) {
  section.desc .img-container img {
    height: auto;
    width: 80%;
  }
}
section.desc .img-container img.desktop {
  display: inherit;
}
@media screen and (max-width: 540px) {
  section.desc .img-container img.desktop {
    display: none;
  }
}
section.desc .img-container img.mobile {
  display: none;
}
@media screen and (max-width: 540px) {
  section.desc .img-container img.mobile {
    display: inherit;
    margin-top: 2rem;
  }
}
section.desc h1 {
  font-size: calc(3.375rem + 1.5vw);
  text-transform: uppercase;
  color: var(--text-color-cream);
}

section.services {
  padding-top: 8rem;
}
@media screen and (max-width: 540px) {
  section.services {
    padding-top: 5rem;
  }
}
section.services .heading {
  text-align: center;
}
section.services .heading h1 {
  color: var(--text-color-cream);
  font-size: calc(2.375rem + 1.5vw);
}
section.services .card {
  aspect-ratio: 1;
  background: #151515;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  padding: 12%;
  margin-bottom: 1.5rem;
  transition: 0.2s ease-in-out;
}
section.services .card .icon {
  text-align: center;
  margin: 1rem;
}
section.services .card h4 {
  margin-top: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.09rem;
  font-size: xx-large;
  color: var(--text-color-cream);
}
section.services .card .desc {
  color: #6d6d6d;
  font-family: "Lato";
  font-size: larger;
  font-weight: 600;
  line-height: 1.2;
}
section.services .card:hover {
  background: linear-gradient(#151515, #0c0c0c);
}

section.how-it-works {
  margin: 10%;
}
section.how-it-works h1 {
  text-align: center;
  color: var(--text-color-cream);
  font-size: calc(2.375rem + 1.5vw);
}
@media screen and (max-width: 540px) {
  section.how-it-works {
    margin: 10% 0%;
  }
}
section.how-it-works .container {
  margin: 5rem 0rem;
}
section.how-it-works .work-card {
  text-align: center;
}
section.how-it-works .work-card .icon {
  margin: 2rem;
}
section.how-it-works .work-card .icon.mobile {
  margin-left: 4rem;
}
section.how-it-works .work-card .heading {
  text-align: center;
  color: var(--text-color-cream);
}
section.how-it-works .work-card .heading h1 {
  font-size: calc(2.375rem + 1.5vw);
}
section.how-it-works .work-card .desc {
  display: flex;
  justify-content: center;
}
section.how-it-works .work-card p {
  color: #6d6d6d;
  font-family: "Lato";
  font-size: larger;
  font-weight: 600;
  line-height: 1.2;
  width: 75%;
}

section.faq {
  margin: 10%;
}
@media screen and (max-width: 540px) {
  section.faq {
    margin: 10% 0%;
  }
}
section.faq .heading {
  text-align: center;
  color: var(--text-color-cream);
}
section.faq .heading h1 {
  font-size: calc(2.375rem + 1.5vw);
}
section.faq .accordion {
  --bs-accordion-bg: var(--primary-bg);
  --bs-border-color: #454242;
  --bs-accordion-border-width: 1px;
  --bs-accordion-btn-color: var(--text-color-cream);
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-active-bg: #151515;
  --bs-accordion-active-color: var(--primary-yellow);
  --bs-accordion-color: #6d6d6d;
}
section.faq .accordion .accordion-header {
  font-family: "Lato";
}
section.faq .accordion .accordion-button {
  font-size: 1.2rem;
}

footer {
  padding: 5%;
  background: linear-gradient(to right, #f7ff00, #73f501);
}
footer .logo-container {
  text-align: left;
}
@media screen and (max-width: 540px) {
  footer .logo-container {
    text-align: center;
  }
}
footer .logo-container img {
  width: 80%;
  max-width: 20rem;
}
footer .contact-btn-container {
  display: flex;
  align-items: center;
  justify-content: end;
  height: 100%;
}
@media screen and (max-width: 540px) {
  footer .contact-btn-container {
    justify-content: center;
    margin: 1rem;
  }
}
footer .links {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
}
@media screen and (max-width: 540px) {
  footer .links {
    text-align: center;
  }
}
footer .links a {
  color: var(--primary-bg);
  font-size: 1.5rem;
  font-family: "Lato";
}
footer .get-in-touch {
  padding: 1rem 3rem;
  font-family: "Lato";
  font-weight: 700;
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--primary-bg);
  --bs-btn-border-color: var(--primary-bg);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #000000;
  --bs-btn-hover-border-color: #000000;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #000000;
  --bs-btn-active-border-color: #000000;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #000000;
  --bs-btn-disabled-border-color: #000000;
}

section.page-header {
  margin-top: 78px;
  min-height: 150px;
  background: linear-gradient(to right, #f7ff00, #73f501);
  display: flex;
  align-items: end;
}

section.page_content {
  color: #fff6e8;
}/*# sourceMappingURL=main.css.map */