* {
  margin: 0;
  padding: 0;
  user-select: none;
  font-family: Inter, sans-serif;
  font-weight: 700;
  color: white;
  text-decoration: none;
  scroll-behavior: smooth;
  box-sizing: border-box;
}

body {
  width: 100vw;
  height: 100vh;
  min-height: 100vh;
  background: #272934;
}
body::-webkit-scrollbar {
  display: none;
}
.header {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1%;
}
.header .left {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    margin-right: auto;
    margin-left: 3.5%;
}
.header .left:hover {
    transform: scale(1.05);
}
.logo {
    width: 50px;
    border-radius: 12px;
}
.left p {
    margin-left: 10px;
}
.right {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: 2.5%;
}
.right a p {
    margin-left: 20px;
    color: rgb(161, 161, 161);
    transition: 0.3s;
    font-size: 18px;
}
.right a p:hover {
    color: rgb(160, 17, 255);
    filter: drop-shadow(0px 0px 4px rgb(160, 17, 255));
    border-bottom: 1px solid rgb(160, 17, 255);
    transform: scale(1.03);
    transition: 0.6s;
}
.main-sector {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
}
.info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(500px, 100%), 1fr));
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.left-img {
  height: 200px;
  width: 1000px;
  border-radius: 5px;
  border: 4px rgb(61, 61, 61) solid;
  background-color: #1d222b;
  margin-left: auto;
  margin-right: auto;
  object-fit: cover;
  margin-top: 20px;
  transition: 0.3s;
  animation: 4s slideshow infinite ease-in-out;
  overflow: hidden;
  position: absolute;
}

@keyframes slideshow {
  0% {
    margin-left: 100%;
  }
  4% {
    margin-left: 0%;
  }
  33.33% {
    margin-left: 0%;
  }
  37.33% {
    margin-left: -100%;
  }
  100% {
    margin-left: -100%;
  }
}

#slideset > *:nth-child(1) {
  animation-delay: 0s;
}
#slideset > *:nth-child(2) {
  animation-delay: 4s;
}
#slideset > *:nth-child(3) {
  animation-delay: 8s;
}
#slideset > *:nth-child(4) {
  animation-delay: 12s;
}
#slideset > *:nth-child(5) {
  animation-delay: 16s;
}
#slideset > *:nth-child(6) {
  animation-delay: 20s;
}

.about-text {
  max-width: 1000px;
  margin-top: 30px;
  font-size: 40px;
}

.about-text h1 {
  color: rgb(160, 17, 255);
  filter: drop-shadow(0px 0px 4px rgba(160, 17, 255, 10.5));
}
.about-text p {
  color: grey;
}

.about-text-small {
  max-width: 1000px;
  margin-top: -4px;
  font-size: 15px;
}
.about-text-small h1 {
  color: rgb(255, 255, 255);
}

.about-text-verysmall {
  max-width: 1000px;
  margin-top: 30px;
  font-size: 7px;
}
.about-text-verysmall h1 {
  color: #8992af;
}
.purple-span {
  color: rgb(160, 17, 255);
}
.yellow-span {
  color: rgb(233, 201, 19);
}
.red-span {
  color: rgb(255, 0, 0);
}
.blurple-span {
  color: rgb(45, 100, 250);
}
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  gap: 50px;
  text-align: center;
  padding: 10px;
  width: 90%;
  height: auto;
  margin-top: 100px;
  border-radius: 10px;
  text-align: left;
  background-color: #1d222b;
  font-size: 17px;
  filter: drop-shadow(10px 10px 10px #12141a);
}
.stat {
  display: flex;
  justify-content: center;
  align-items: center;
}
.stat svg {
  width: 40px;
}
.stat p {
  margin-left: 10px;
}
span {
  color: rgb(160, 17, 255);
}
.down {
  margin-top: -116px;
  text-align: center;
  font-size: 16px;
  background: #1d222b !important;
  padding: 60px 50px !important;
  background-image: url("https://cdn.dbxservices.xyz/img/wavy-dark-by-nouridio.svg") !important;
  background-position: bottom !important;
  background-size: 200% !important;
  background-repeat: no-repeat !important;
}
@keyframes down {
  0% {
    margin-top: 50px;
  }
  50% {
    margin-top: 70px;
  }
  100% {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 850px) {
  .about-text {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .left-img {
    margin-left: auto;
    margin-right: auto;
  }
}

.button {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(425px, 100%), 1fr));
  text-align: center;
  max-width: 190px;
  font-size: 40px;
}

.btn {
  border-radius: 10px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
}

.started-btn {
  border: 2px solid #813ecc !important;
  font-size: 25px !important;
  padding: 8px;
  margin-top: 100px;
  transition: 0.3s ease-in;
}
.started-btn:hover {
  background: #813ecc !important;
  transition: 0.45s;
}

.reviews-section {
  max-width: 1100px;
  margin: 200px auto;
  text-align: center;
}

.reviews-title {
  font-size: 50px;
  color: #a011ff;
  margin-bottom: 10px;
}

.reviews-subtitle {
  color: #9a9a9a;
  margin-bottom: 40px;
  font-size: 28px;
}

.slider {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 280px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  background: #1d222b;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.slide.active {
  opacity: 1;
}


#more-btn {
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: 10.5%;
  margin-left: 15px;
  color: rgb(161, 161, 161);
  transition: 0.3s;
  font-size: 18px;
}
#more-btn:hover {
  color: rgb(160, 17, 255);
  filter: drop-shadow(0px 0px 4px rgb(160, 17, 255));
  border-bottom: 1px solid rgb(160, 17, 255);
  transform: scale(1.03);
  transition: 0.6s;
}
#more-list {
  transform-origin: top center;
  transform: scaleY(0);
  position: absolute;
  background-color: #1d222b;
  padding: 10px;
  width: 103px;
  border-radius: 0 1vh 1vh 1vh;
  z-index: 2;
  cursor: auto;
  transition: 0.3s ease-in;
}

.more-list-item {
  color: white;
  text-decoration: none;
  width: 150%;
  display: block;
  padding: 6%;
}

.more-list-item:hover {
  color: rgb(160, 17, 255);
  filter: drop-shadow(0px 0px 4px rgb(160, 17, 255));
}

#more-list hr {
  margin: 2% auto;
  width: 96%;
}

#more-btn:hover #more-list {
  transform: scaleY(1);
  transition: 0.3s ease-out;
}

.copyright {
  margin-top: 230px;
  font-size: 17px;
  color: rgb(161, 161, 161) !important;
  justify-content: center;
  text-align: center;
}
