:root {
  --white: #ffffff;
  --black: #0a0d20;
  --blue: #009fff;
  --blue-100: #0e1536;
  --green: #00e03d;
  --gray-100: #f3f4f6;
  --font-family: "Poppins", sans-serif;
}

html,
body {
  overflow-x: hidden;
  min-height: 100vh;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--white);
  background: var(--black);
}
::selection {
  color: var(--black);
  background: var(--white);
}
a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #fff;
}

::-webkit-scrollbar-thumb {
  background: #009fff linear-gradient(89.5deg, #009fff 10.19%, #00e03d 66.85%);
  border-radius: 6px;
}
ul,
ol {
  padding: 0;
  list-style: none;
}

.container {
  padding: 0 20px;
}

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.main {
  flex: 1;
}
.row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 0;
}

.header {
  background: var(--black);
}

.navbar {
  display: flex;
  gap: 10px;
}
.navbar-brand img {
  height: 70px;
}
.navbar ul {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  padding: 10px 24px;
  line-height: 1.5;
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  border-radius: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border-image-source: linear-gradient(208.31deg, #857afa 2.16%, #3d368d 100%);
  background: linear-gradient(30.8deg, #332d79 3.23%, #0f0a4a 94.81%) border-box;
}
.btn-secondary {
  background: var(--black) border-box;
  border-color: var(--white);
  border-image-source: none;
}
.navbar ul {
  margin-left: auto;
}

.navbar ul li a {
  padding: 6px 20px;
  line-height: 1.5;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
}

section {
  padding: 80px 0;
}

.gradient-txt {
  font-weight: bold;
  background: linear-gradient(89.5deg, #009fff 10.19%, #00e03d 66.85%);
  color: transparent;
  background-clip: text;
}
.navbar-toggler-icon{
filter: invert(1);
}
.title {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: normal;
}
 h1 {
  font-size: 46px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: normal;
}
@media (max-width:991px) {
  h1 {
   font-size: 42px;
 }
  .title {
    font-size: 34px;
  }
  section {
    padding: 60px 0;
  }
  
}
@media (max-width:767px) {
  h1 {
   font-size: 38px;
 }
  .title {
    font-size: 24px;
  }
  section {
    padding: 40px 0;
  }
  
}
.stats .card {
  padding: 40px;
  border-radius: 20px;
  background-color: var(--black);
  text-align: center;
  border-color: #3d368d;
}
.card * {
  color: var(--white);
}

.footer {
  background: var(--blue-100);
  padding: 40px 0;
}

.footer ul {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  margin-bottom: 0;
}

.footer a {
  font-size: 15px;
  color: var(--white);
  line-height: 1.2;
}

.stop-losing {
  background: var(--black) url(../images/Ellipse.png) no-repeat left center/50%;
}

@media (max-width: 991px) {
  br {
    display: none !important;
  }
}
