* {
  box-sizing: border-box;
}

body {
  font-family: "Space Grotesk", sans-serif;
  /* font-family: "Manrope", sans-serif; */
  font-size: 16px;
  color: #fff;
  line-height: 100%;
  font-weight: 400;
  margin: 0;
  background-color: #000000;
  overflow-x: hidden;
}
body._stop {
  overflow: hidden;
}
body::-webkit-scrollbar {
  background: transparent;
  width: 10px;
}
body::-webkit-scrollbar-track {
  background: #15151F;
}
body::-webkit-scrollbar-thumb {
  background-color: #E6F355;
  border-radius: 100px;
}

._container {
  max-width: 1272px;
  margin: 0 auto;
  padding: 0 16px;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
}
#preloader img {
  display: flex;
  width: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto;
}
#preloader._hide {
  display: none;
}

@keyframes bounce-custom {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(10px);
  }
}
/* Marquee for contacts section *//*# sourceMappingURL=base.css.map */