html, body {
  padding: 0;
  margin: 0;
  font-family: "Maven Pro", sans-serif;
  scroll-behavior: smooth;
}

.wrapper {
  width: 100%;
}
.wrapper .bg-wrapper {
  width: 100%;
  height: 100vh;
  z-index: -1;
  background-image: linear-gradient(0deg, #15172e, #0d0d1a);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: fixed;
}
.wrapper .bg-wrapper .bg_texture {
  background: url(assets/images/bg-texture.jpg) repeat left top;
  background-position: top;
  background-repeat: repeat-x;
  background-size: 1920px auto;
  mix-blend-mode: color-dodge;
  opacity: 0.4;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  width: 100%;
}
.wrapper .bg-wrapper .bg_noise {
  background-image: url(assets/images/noise.png);
  background-size: 150px auto;
  opacity: 0.3;
  width: 100%;
  height: 100%;
  /* animation: noiseMove 0.45s linear infinite; */
}
.wrapper .bg-wrapper .bg_lite {
  height: 12rem;
  position: absolute;
  width: 25rem;
  background: #cb9ff3;
  filter: blur(3.5rem);
  isolation: isolate;
  mix-blend-mode: color-dodge;
  opacity: 0.2;
  right: 0;
  top: 0;
}
.wrapper .bg-wrapper .bg_lite1 {
  height: 12rem;
  position: absolute;
  width: 25rem;
  background: #2700fd;
  filter: blur(3.5rem);
  isolation: isolate;
  mix-blend-mode: color-dodge;
  opacity: 0.2;
  left: 0;
  bottom: 0;
}

@keyframes noiseMove {
  0%, to {
    background-position: 0 0;
  }
  10% {
    background-position: -10% -10%;
  }
  20% {
    background-position: 15% 20%;
  }
  30% {
    background-position: -10% -10%;
  }
  40% {
    background-position: -25% -40%;
  }
  50% {
    background-position: 20% 25%;
  }
  60% {
    background-position: 40% 55%;
  }
  70% {
    background-position: -10% -10%;
  }
  80% {
    background-position: 15% 20%;
  }
  90% {
    background-position: -10% -10%;
  }
}
.sidebar {
  width: 90px;
  height: 100vh;
  border-right: 1px solid rgba(199, 203, 237, 0.125);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 50;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.sidebar .logo {
  width: 100%;
  padding: 25px;
  box-sizing: border-box;
}
.sidebar .logo img {
  width: 100%;
  height: auto;
}

.main-title {
  font-family: "Lato", sans-serif;
  font-size: 12cqmin;
  line-height: auto;
  color: #fff;
  margin: 0;
  text-transform: uppercase;
  font-weight: 400;
}

.main-title.padd-l-50 {
  padding-left: 70px;
}

.deco-text {
  display: flex;
  align-items: center;
  gap: 30px;
}
.deco-text .line {
  width: 10%;
  height: 5px;
  background: #fff;
}

.white {
  color: #fff;
}

.banner {
  width: 100%;
  padding-left: 200px;
  box-sizing: border-box;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.banner h2 {
  font-size: 20px;
  color: #7f85b0;
  font-weight: 400;
  padding-left: 70px;
  font-family: "Maven Pro", sans-serif;
  line-height: 30px;
  margin-bottom: 0;
}
.banner .round_text_wrapp {
  position: absolute;
  right: 50px;
  top: 50px;
}
.banner .round_text_wrapp .round_text {
  width: 100px;
  height: 100px;
  position: absolute;
  background: url(assets/images/curve_text.svg) no-repeat left top;
  background-size: 100px;
  animation: textRotation 10s linear infinite;
}
.banner .round_text_wrapp .round_logo {
  background: url(assets/images/bunny_color.svg) no-repeat center center;
  width: 100px;
  height: 100px;
  background-size: 30px;
}



@keyframes textRotation {
  to {
    transform: rotate(360deg);
  }
}
/* Menu button */
.menu-button {
  position: relative;
  top: 0;
  width: 90px;
  height: 1px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}




@media screen and (max-width: 749px) {
    .main-title {
      font-size: 5cqmin;
    }
    .main-title.padd-l-50 {
      padding-left: 0;
    }
    .banner {
      padding-left: 120px;
    }
    .banner h2 {
      padding-left: 0;
    }
    .deco-text .line {
      height: 2px;
    }
  }