* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@keyframes circle_animation {
  0% {
    left: 50px;
  }
  25% {
    left: 400px;
  }
  50% {
    left: 600px;
  }
  75% {
    left: 1000px;
  }
  100% {
    left: 50px;
  }
}
@keyframes img1 {
  0% {
    top: 150px;
  }
  50% {
    top: 180px;
  }
  100% {
    top: 150px;
  }
}
@keyframes img2 {
  0% {
    top: 70px;
  }
  50% {
    top: 120px;
  }
  100% {
    top: 70px;
  }
}
@keyframes img3 {
  0% {
    top: 250px;
  }
  50% {
    top: 300px;
  }
  100% {
    top: 250px;
  }
}
@keyframes pulsecelu {
  0% {
    opacity: 100%;
  }
  25% {
    opacity: 50%;
  }
  50% {
    opacity: 35%;
  }
  75% {
    opacity: 15%;
  }
  100% {
    opacity: 100%;
  }
}
@keyframes grafic1 {
  0% {
    left: 12%;
  }
  50% {
    left: 14%;
  }
  100% {
    left: 12%;
  }
}
@keyframes grafic2 {
  0% {
    right: 0px;
  }
  50% {
    top: 50px;
  }
  100% {
    right: 0px;
  }
}
@keyframes grafic3 {
  0% {
    bottom: 0%;
    left: 35%;
  }
  50% {
    bottom: 20%;
    left: 35%;
  }
  100% {
    bottom: 0%;
    left: 35%;
  }
}
@keyframes grafic4 {
  0% {
    bottom: 0%;
    left: 35%;
  }
  50% {
    bottom: 6%;
    left: 35%;
  }
  100% {
    bottom: 0%;
    left: 35%;
  }
}
@keyframes road {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  height: 100vh;
}

body::-webkit-scrollbar {
  width: 12px; /* width of the entire scrollbar */
}

body::-webkit-scrollbar-track {
  background: #282828; /* color of the tracking area */
}

body::-webkit-scrollbar-thumb {
  background-color: #FFFFFF; /* color of the scroll thumb */
  border-radius: 20px; /* roundness of the scroll thumb */ /* creates padding around scroll thumb */
}

::-webkit-scrollbar-thumb:hover {
  background: #cacaca;
}

.menu {
  padding: 10px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #181818;
  position: relative;
  z-index: 10;
}

header {
  margin-left: 95px;
  margin-right: 95px;
  width: 100%;
  max-width: 1440px;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  background-color: #181818;
}
header ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
header ul li {
  padding-left: 77px;
  list-style: none;
}
header ul li a {
  text-decoration: none;
  color: #FFFFFF;
  font-size: 1.8rem;
  font-family: "Inter";
  transition: all 0.2s linear;
}
header ul li a:hover {
  color: #cacaca;
}

.button {
  display: flex;
}
.button button {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #996DFF;
  border: none;
  border-radius: 6px;
  padding: 10px 50px;
  font-family: "Inter";
  font-size: 1.6rem;
  transition: all 0.2s linear;
}
.button button i {
  font-weight: bold;
  font-size: 1.8rem;
  padding-left: 5px;
}
.button button:hover {
  background-color: #633BBC;
  cursor: pointer;
  color: #FFFFFF;
}

.section_one {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #000000;
  width: 100%;
  height: 100%;
  margin-top: -1px;
}
.section_one .solution {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: 1440px;
}
.section_one .solution h1 {
  z-index: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-family: "Inter";
  font-size: 20rem;
  font-weight: bold;
  line-height: 110%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  text-align: center;
  color: #FFFFFF;
  font-family: "Inter";
  background: linear-gradient(180deg, #361d6b 0%, rgba(0, 0, 0, 0.71) 80%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 1140px) and (min-width: 960px) {
  .section_one .solution h1 {
    font-family: "Inter";
    font-size: 15rem;
    font-weight: bold;
    line-height: 100%;
  }
}
@media screen and (max-width: 960px) and (min-width: 540px) {
  .section_one .solution h1 {
    font-family: "Inter";
    font-size: 15rem;
    font-weight: bold;
    line-height: 100%;
  }
}
@media screen and (max-width: 540px) {
  .section_one .solution h1 {
    font-size: 10rem;
  }
}
.section_one .container_sectionone {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #000000;
  width: 100%;
  max-width: 1440px;
}
.section_one .container_1 {
  width: 100%;
  max-width: 1440px;
}
.section_one .container_1 .container_2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin-left: 95px;
  margin-right: 95px;
  padding: 54px 100px 0px 100px;
  height: 480px;
  max-width: 1440px;
  background: linear-gradient(180deg, rgba(43, 43, 43, 0.4) 0%, rgba(0, 0, 0, 0.37) 100%);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border-width: 1px;
  border-style: solid;
  -o-border-image: linear-gradient(to top, #000000, #282828) 1;
     border-image: linear-gradient(to top, #000000, #282828) 1;
}
@media screen and (max-width: 960px) and (min-width: 540px) {
  .section_one .container_1 .container_2 {
    padding: 30px 50px 0px 50px;
    margin-left: 50px;
    margin-right: 50px;
  }
}
@media screen and (max-width: 540px) {
  .section_one .container_1 .container_2 {
    padding: 40px 30px 0px 30px;
    margin-left: 35px;
    margin-right: 35px;
  }
}
.section_one .container_1 .container_2 h1 {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  text-align: center;
  color: white;
  font-family: "Inter";
  font-family: "Inter";
  font-size: 4rem;
  font-weight: bold;
  line-height: 100%;
}
@media screen and (max-width: 1440px) and (min-width: 1140px) {
  .section_one .container_1 .container_2 h1 {
    font-family: "Inter";
    font-size: 3rem;
    font-weight: bold;
    line-height: 100%;
  }
}
@media screen and (max-width: 1140px) and (min-width: 960px) {
  .section_one .container_1 .container_2 h1 {
    font-family: "Inter";
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 110%;
  }
}
@media screen and (max-width: 960px) and (min-width: 540px) {
  .section_one .container_1 .container_2 h1 {
    font-family: "Inter";
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 110%;
  }
}
@media screen and (max-width: 540px) {
  .section_one .container_1 .container_2 h1 {
    font-family: "Inter";
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 110%;
  }
}
.section_one .container_1 .container_2 span {
  background: linear-gradient(180deg, #8257E5 0%, #633BBC 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section_one .container_1 .container_2 p {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-weight: bold;
  text-align: center;
  margin-top: 20px;
  color: #4d4d4d;
  font-family: "Inter";
}
@media screen and (min-width: 1440px) {
  .section_one .container_1 .container_2 p {
    font-family: "Inter", Courier, monospace;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 1440px) and (min-width: 1140px) {
  .section_one .container_1 .container_2 p {
    font-family: "Inter", Courier, monospace;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 1140px) and (min-width: 960px) {
  .section_one .container_1 .container_2 p {
    font-family: "Inter", Courier, monospace;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 960px) and (min-width: 540px) {
  .section_one .container_1 .container_2 p {
    font-family: "Inter", Courier, monospace;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 540px) {
  .section_one .container_1 .container_2 p {
    font-family: "Inter", Courier, monospace;
    font-size: 1.2rem;
  }
}
.section_one .container_1 .container_2 .detalhes {
  position: absolute;
  top: 0px;
  left: 0px;
  padding: 5px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex-direction: column;
  width: 100%;
}
.section_one .container_1 .container_2 .detalhes div {
  border-radius: 2px;
  margin: 2px;
  background-color: #282828;
  width: 40px;
  height: 4px;
}
.section_one .container_1 .container_2 .send_menseger {
  margin-top: 47px;
}
@media screen and (max-width: 960px) and (min-width: 540px) {
  .section_one .container_1 .container_2 .send_menseger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .section_one .container_1 .container_2 .send_menseger button {
    margin-top: 10px;
  }
}
@media screen and (max-width: 540px) {
  .section_one .container_1 .container_2 .send_menseger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .section_one .container_1 .container_2 .send_menseger button {
    margin-top: 10px;
  }
}
.section_one .container_1 .container_2 .send_menseger input {
  font-size: 1.2rem;
  color: #FFFFFF;
  font-family: "Inter";
  width: 400px;
  height: 32px;
  padding: 5px;
  background-color: #1E1E1E;
  border: 1px solid #4d4d4d;
  border-radius: 4px;
  outline: none;
}
@media screen and (max-width: 960px) and (min-width: 540px) {
  .section_one .container_1 .container_2 .send_menseger input {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 300px;
    height: 32px;
    padding: 5px;
  }
}
@media screen and (max-width: 540px) {
  .section_one .container_1 .container_2 .send_menseger input {
    font-size: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 200px;
    height: 28px;
    padding: 5px;
  }
}
.section_one .container_1 .container_2 .send_menseger input::-moz-placeholder {
  font-family: "Inter";
}
.section_one .container_1 .container_2 .send_menseger input::placeholder {
  font-family: "Inter";
}
.section_one .container_1 .container_2 .send_menseger button {
  background-color: #996DFF;
  color: #000000;
  border: 1px solid #4d4d4d;
  border-radius: 4px;
  font-family: "Inter";
  font-weight: bold;
  width: 100px;
  height: 32px;
  transition: all 0.2s linear;
}
.section_one .container_1 .container_2 .send_menseger button i {
  font-size: 1.8rem;
  margin-left: 5px;
  vertical-align: -2px;
}
.section_one .container_1 .container_2 .send_menseger button:hover {
  background-color: #633BBC;
  cursor: pointer;
}

#pulse {
  height: 35px;
  width: 100%;
}

.section_two {
  justify-content: center;
  align-items: center;
  padding-bottom: 20px;
  padding-top: 20px;
  width: 100%;
  margin-top: -1px;
  margin-bottom: -1px;
  background-color: #000000;
}
.section_two .content_1 {
  margin: 0px 30px 0px 30px;
  background-image: url(../asset/UP.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.section_two .content_1 .img1 {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  width: 100%;
  max-width: 400px;
  margin: 10px;
}
.section_two .content_1 .img2 {
  width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  max-width: 300px;
  margin: 10px;
}
.section_two .content_1 .img3 {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  width: 100%;
  max-width: 400px;
  margin: 10px;
}

#up {
  z-index: 100;
  border-radius: 5px;
  position: fixed;
  width: 40px;
  background-color: #633BBC;
  bottom: 30px;
  right: 30px;
  transition: all 0.2s linear;
}
#up:hover {
  background-color: #361d6b;
}

.div_circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: #000000;
  padding-bottom: 50px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media screen and (max-width: 540px) {
  .div_circle {
    display: none;
  }
}
@media screen and (max-width: 960px) and (min-width: 540px) {
  .div_circle {
    display: none;
  }
}
.div_circle .circle_container {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  overflow: hidden;
  background-color: #000000;
  width: 100%;
  max-width: 1440px;
  position: relative;
}
.div_circle .circle_container .img_circle_1 {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  animation-name: circle_animation;
  animation-duration: 8s;
  animation-iteration-count: infinite;
  position: absolute;
  width: 30px;
  top: 47%;
  bottom: 50%;
  left: 50px;
  transform: translate(-50%, -50%);
}

.section_three {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000000;
  width: 100%;
  margin-top: -1px;
}
.section_three .container_sectionthree {
  margin-left: 95px;
  margin-right: 95px;
  width: 100%;
  max-width: 1440px;
}
@media screen and (max-width: 960px) and (min-width: 540px) {
  .section_three .container_sectionthree {
    margin-left: 50px;
    margin-right: 50px;
  }
}
@media screen and (max-width: 540px) {
  .section_three .container_sectionthree {
    margin-left: 35px;
    margin-right: 35px;
  }
}
.section_three .container_sectionthree h1 {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  text-align: center;
  color: #FFFFFF;
  margin-top: 20px;
  font-family: "Inter";
  font-size: 4rem;
  font-weight: bold;
  line-height: 100%;
}
@media screen and (max-width: 1440px) and (min-width: 1140px) {
  .section_three .container_sectionthree h1 {
    font-family: "Inter";
    font-size: 3rem;
    font-weight: bold;
    line-height: 100%;
  }
}
@media screen and (max-width: 1140px) and (min-width: 960px) {
  .section_three .container_sectionthree h1 {
    font-family: "Inter";
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 110%;
  }
}
@media screen and (max-width: 960px) and (min-width: 540px) {
  .section_three .container_sectionthree h1 {
    font-family: "Inter";
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 110%;
  }
}
@media screen and (max-width: 540px) {
  .section_three .container_sectionthree h1 {
    font-family: "Inter";
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 110%;
  }
}
.section_three .container_sectionthree h1 span {
  background: linear-gradient(180deg, #8257E5 0%, #633BBC 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section_three .container_sectionthree p {
  color: #FFFFFF;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  margin-top: 20px;
  color: #4d4d4d;
  font-weight: bold;
  margin-bottom: 40px;
}
@media screen and (min-width: 1440px) {
  .section_three .container_sectionthree p {
    font-family: "Inter", Courier, monospace;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 1440px) and (min-width: 1140px) {
  .section_three .container_sectionthree p {
    font-family: "Inter", Courier, monospace;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 1140px) and (min-width: 960px) {
  .section_three .container_sectionthree p {
    font-family: "Inter", Courier, monospace;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 960px) and (min-width: 540px) {
  .section_three .container_sectionthree p {
    font-family: "Inter", Courier, monospace;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 540px) {
  .section_three .container_sectionthree p {
    font-family: "Inter", Courier, monospace;
    font-size: 1.2rem;
  }
}

.section_for {
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: #000000;
}
.section_for .container_for {
  margin-left: 95px;
  margin-right: 95px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1440px;
  background-color: #000000;
}
@media screen and (max-width: 1140px) and (min-width: 960px) {
  .section_for .container_for {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 960px) and (min-width: 540px) {
  .section_for .container_for {
    flex-wrap: wrap;
    margin-left: 50px;
    margin-right: 50px;
  }
}
@media screen and (max-width: 540px) {
  .section_for .container_for {
    flex-wrap: wrap;
    margin-left: 35px;
    margin-right: 35px;
  }
}
.section_for .container_for .content1 {
  width: 100%;
  padding-left: 95px;
  padding-right: 95px;
}
@media screen and (max-width: 1140px) and (min-width: 960px) {
  .section_for .container_for .content1 {
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media screen and (max-width: 960px) and (min-width: 540px) {
  .section_for .container_for .content1 {
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media screen and (max-width: 540px) {
  .section_for .container_for .content1 {
    padding-left: 0px;
    padding-right: 0px;
  }
}
.section_for .container_for .content1 span {
  background: linear-gradient(180deg, #8257E5 0%, #633BBC 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section_for .container_for .content1 h1 {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  text-align: center;
  color: white;
  font-family: "Inter";
  font-family: "Inter";
  font-size: 4rem;
  font-weight: bold;
  line-height: 100%;
}
@media screen and (max-width: 1440px) and (min-width: 1140px) {
  .section_for .container_for .content1 h1 {
    font-family: "Inter";
    font-size: 3rem;
    font-weight: bold;
    line-height: 100%;
  }
}
@media screen and (max-width: 1140px) and (min-width: 960px) {
  .section_for .container_for .content1 h1 {
    font-family: "Inter";
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 110%;
  }
}
@media screen and (max-width: 960px) and (min-width: 540px) {
  .section_for .container_for .content1 h1 {
    font-family: "Inter";
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 110%;
  }
}
@media screen and (max-width: 540px) {
  .section_for .container_for .content1 h1 {
    font-family: "Inter";
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 110%;
  }
}
.section_for .container_for .content1 p {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-weight: bold;
  text-align: center;
  margin-top: 20px;
  color: #4d4d4d;
  font-family: "Inter";
}
@media screen and (min-width: 1440px) {
  .section_for .container_for .content1 p {
    font-family: "Inter", Courier, monospace;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 1440px) and (min-width: 1140px) {
  .section_for .container_for .content1 p {
    font-family: "Inter", Courier, monospace;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 1140px) and (min-width: 960px) {
  .section_for .container_for .content1 p {
    font-family: "Inter", Courier, monospace;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 960px) and (min-width: 540px) {
  .section_for .container_for .content1 p {
    font-family: "Inter", Courier, monospace;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 540px) {
  .section_for .container_for .content1 p {
    font-family: "Inter", Courier, monospace;
    font-size: 1.2rem;
  }
}
.section_for .container_for .content2 {
  padding: 0px 20px 0px 20px;
  position: relative;
  z-index: 1;
}
.section_for .container_for .content2 img[src="asset/CIRCLE_CELU.svg"] {
  z-index: -1;
  position: absolute;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  top: 100px;
  right: 18px;
  transform: scale(2);
  animation-name: pulsecelu;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}
.section_for .container_for .content2 img {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding-top: 30px;
  padding-bottom: 30px;
  max-width: 200px;
}
.section_for .container_for .content2 img[src="asset/CART.svg"] {
  position: absolute;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  top: 150px;
  left: 175px;
  width: 80px;
  animation-name: img1;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}
.section_for .container_for .content2 img[src="asset/CARD.svg"] {
  position: absolute;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  top: 70px;
  right: 175px;
  width: 80px;
  animation-name: img2;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}
.section_for .container_for .content2 img[src="asset/SACOL.svg"] {
  position: absolute;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  top: 250px;
  right: 175px;
  width: 80px;
  animation-name: img3;
  animation-duration: 4s;
  animation-iteration-count: infinite;
}

.section_five {
  padding-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000000;
  width: 100%;
}
.section_five .container_five {
  margin-left: 95px;
  margin-right: 95px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1440px;
}
@media screen and (max-width: 1140px) and (min-width: 960px) {
  .section_five .container_five {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 960px) and (min-width: 540px) {
  .section_five .container_five {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 540px) {
  .section_five .container_five {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
}
.section_five .container_five .grafic {
  padding-left: 95px;
  padding-right: 95px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.section_five .container_five .grafic img[src="asset/GRAFIC1.svg"] {
  max-width: 360px;
  position: relative;
}
@media screen and (max-width: 540px) {
  .section_five .container_five .grafic img[src="asset/GRAFIC1.svg"] {
    margin-left: 80px;
    margin-right: 80px;
  }
}
.section_five .container_five .grafic img[src="asset/GRAFIC2.svg"] {
  position: absolute;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  top: 18%;
  left: 12%;
  width: 150px;
  animation-name: grafic1;
  animation-duration: 2.5s;
  animation-iteration-count: infinite;
}
@media screen and (max-width: 1140px) and (min-width: 960px) {
  .section_five .container_five .grafic img[src="asset/GRAFIC2.svg"] {
    left: 20%;
  }
}
@media screen and (max-width: 960px) and (min-width: 540px) {
  .section_five .container_five .grafic img[src="asset/GRAFIC2.svg"] {
    left: 10%;
  }
}
@media screen and (max-width: 540px) {
  .section_five .container_five .grafic img[src="asset/GRAFIC2.svg"] {
    left: 3%;
    width: 150px;
    top: 35%;
  }
}
.section_five .container_five .grafic img[src="asset/GRAFIC3.svg"] {
  position: absolute;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  top: 5%;
  right: 0px;
  width: 250px;
  animation-name: grafic2;
  animation-duration: 2.5s;
  animation-iteration-count: infinite;
}
@media screen and (max-width: 1140px) and (min-width: 960px) {
  .section_five .container_five .grafic img[src="asset/GRAFIC3.svg"] {
    right: 20%;
  }
}
@media screen and (max-width: 960px) and (min-width: 540px) {
  .section_five .container_five .grafic img[src="asset/GRAFIC3.svg"] {
    right: 10%;
  }
}
@media screen and (max-width: 540px) {
  .section_five .container_five .grafic img[src="asset/GRAFIC3.svg"] {
    right: 0%;
    width: 200px;
  }
}
.section_five .container_five .grafic img[src="asset/GRAFIC4.svg"] {
  position: absolute;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  bottom: 0%;
  left: 35%;
  width: 250px;
  animation-name: grafic3;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}
@media screen and (max-width: 1140px) and (min-width: 960px) {
  .section_five .container_five .grafic img[src="asset/GRAFIC4.svg"] {
    left: 35%;
    width: 250px;
  }
}
@media screen and (max-width: 960px) and (min-width: 540px) {
  .section_five .container_five .grafic img[src="asset/GRAFIC4.svg"] {
    left: 35%;
    width: 250px;
  }
}
@media screen and (max-width: 540px) {
  .section_five .container_five .grafic img[src="asset/GRAFIC4.svg"] {
    left: 25%;
    width: 200px;
  }
}
.section_five .container_five .grafic img[src="asset/GRAFIC5.svg"] {
  position: absolute;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  bottom: 18%;
  left: 35%;
  width: 250px;
  animation-name: grafic4;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}
@media screen and (max-width: 1140px) and (min-width: 960px) {
  .section_five .container_five .grafic img[src="asset/GRAFIC5.svg"] {
    left: 35%;
    width: 250px;
  }
}
@media screen and (max-width: 960px) and (min-width: 540px) {
  .section_five .container_five .grafic img[src="asset/GRAFIC5.svg"] {
    left: 35%;
    width: 250px;
  }
}
@media screen and (max-width: 540px) {
  .section_five .container_five .grafic img[src="asset/GRAFIC5.svg"] {
    left: 25%;
    width: 200px;
  }
}
.section_five .container_five .text_grafic {
  width: 100%;
  height: 100%;
}

.text_grafic {
  margin-top: 100px;
  margin-bottom: 50px;
}
.text_grafic h1 {
  color: #FFFFFF;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  text-align: center;
  font-family: "Inter";
  font-family: "Inter";
  font-size: 4rem;
  font-weight: bold;
  line-height: 100%;
}
@media screen and (max-width: 1440px) and (min-width: 1140px) {
  .text_grafic h1 {
    font-family: "Inter";
    font-size: 3rem;
    font-weight: bold;
    line-height: 100%;
  }
}
@media screen and (max-width: 1140px) and (min-width: 960px) {
  .text_grafic h1 {
    font-family: "Inter";
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 110%;
  }
}
@media screen and (max-width: 960px) and (min-width: 540px) {
  .text_grafic h1 {
    font-family: "Inter";
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 110%;
  }
}
@media screen and (max-width: 540px) {
  .text_grafic h1 {
    font-family: "Inter";
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 110%;
  }
}
.text_grafic h1 span {
  background: linear-gradient(180deg, #8257E5 0%, #633BBC 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text_grafic p {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-weight: bold;
  text-align: center;
  margin-top: 20px;
  color: #4d4d4d;
  font-family: "Inter";
}
@media screen and (min-width: 1440px) {
  .text_grafic p {
    font-family: "Inter", Courier, monospace;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 1440px) and (min-width: 1140px) {
  .text_grafic p {
    font-family: "Inter", Courier, monospace;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 1140px) and (min-width: 960px) {
  .text_grafic p {
    font-family: "Inter", Courier, monospace;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 960px) and (min-width: 540px) {
  .text_grafic p {
    font-family: "Inter", Courier, monospace;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 540px) {
  .text_grafic p {
    font-family: "Inter", Courier, monospace;
    font-size: 1.2rem;
  }
}

.six {
  background-color: #000000;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
}
.six .six_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1440px;
  height: 100%;
}
.six .six_container .text h1 {
  background: linear-gradient(90deg, #5C39B0 0.32%, rgba(92, 57, 176, 0.37) 89.77%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 50px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  color: #FFFFFF;
  text-align: center;
  font-family: "Inter";
  font-size: 10rem;
  position: relative;
}
@media screen and (max-width: 1140px) and (min-width: 960px) {
  .six .six_container .text h1 {
    font-size: 8rem;
  }
}
@media screen and (max-width: 960px) and (min-width: 540px) {
  .six .six_container .text h1 {
    font-size: 6rem;
  }
}
@media screen and (max-width: 540px) {
  .six .six_container .text h1 {
    font-size: 4rem;
  }
}
.six .six_container .text h1::after {
  content: " ";
  bottom: 15px;
  left: -60px;
  width: 150px;
  height: 150px;
  background-image: url(../asset/RODSOLUTION.svg);
  background-size: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: absolute;
  animation: road 10s linear infinite;
}
@media screen and (max-width: 1140px) and (min-width: 960px) {
  .six .six_container .text h1::after {
    bottom: -10px;
    left: -80px;
    width: 150px;
    height: 150px;
  }
}
@media screen and (max-width: 960px) and (min-width: 540px) {
  .six .six_container .text h1::after {
    bottom: -15px;
    left: -65px;
    width: 120px;
    height: 120px;
  }
}
@media screen and (max-width: 540px) {
  .six .six_container .text h1::after {
    bottom: -10px;
    left: -40px;
    width: 80px;
    height: 80px;
  }
}
.six .six_container .text h1::before {
  content: " ";
  bottom: 15px;
  left: -60px;
  width: 150px;
  height: 150px;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  border-radius: 100%;
  background-size: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: absolute;
}
@media screen and (max-width: 1140px) and (min-width: 960px) {
  .six .six_container .text h1::before {
    bottom: -10px;
    left: -80px;
    width: 150px;
    height: 150px;
  }
}
@media screen and (max-width: 960px) and (min-width: 540px) {
  .six .six_container .text h1::before {
    bottom: -15px;
    left: -65px;
    width: 120px;
    height: 120px;
  }
}
@media screen and (max-width: 540px) {
  .six .six_container .text h1::before {
    bottom: -10px;
    left: -40px;
    width: 80px;
    height: 80px;
  }
}
.six .six_container .button_six button {
  margin-top: 50px;
  margin-bottom: 50px;
  width: 200px;
  height: 32px;
  font-family: "Inter";
  font-weight: bold;
  background-color: #996DFF;
  border: 1px solid #282828;
  border-radius: 5px;
  transition: all 0.3s ease-in;
}
.six .six_container .button_six button:hover {
  background-color: #633BBC;
  cursor: pointer;
}

footer {
  background-color: #090909;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer section {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  max-width: 1440px;
}
@media screen and (max-width: 540px) {
  footer section {
    flex-wrap: wrap;
  }
}
footer section .content1 {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 540px) {
  footer section .content1 {
    justify-content: center;
  }
}
footer section .content1 img {
  width: 100px;
}
@media screen and (max-width: 540px) {
  footer section .content1 img {
    width: 60px;
    padding-top: 10px;
  }
}
footer section .content2 {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
footer section .content2 p {
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  margin-top: 20px;
  color: #4d4d4d;
  font-weight: bold;
  margin-bottom: 40px;
}
@media screen and (min-width: 1440px) {
  footer section .content2 p {
    font-family: "Inter", Courier, monospace;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 1440px) and (min-width: 1140px) {
  footer section .content2 p {
    font-family: "Inter", Courier, monospace;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 1140px) and (min-width: 960px) {
  footer section .content2 p {
    font-family: "Inter", Courier, monospace;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 960px) and (min-width: 540px) {
  footer section .content2 p {
    font-family: "Inter", Courier, monospace;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 540px) {
  footer section .content2 p {
    font-family: "Inter", Courier, monospace;
    font-size: 1.2rem;
  }
}
footer section .content3 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
footer section .content3 button {
  transition: all 0.2s linear;
  height: 30px;
  border: none;
  margin: 3px;
  background-color: #996DFF;
  border-radius: 4px;
  padding: 5px;
}
footer section .content3 button a {
  font-size: 11px;
  color: #000000;
  font-family: "Inter";
  font-weight: bold;
  text-decoration: none;
}
footer section .content3 button:hover {
  cursor: pointer;
  background-color: #633BBC;
}

.copy {
  background-color: #090909;
  text-align: center;
  padding-bottom: 10px;
}
@media screen and (max-width: 540px) {
  .copy {
    padding-top: 50px;
  }
}
.copy p {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  color: #4d4d4d;
  font-weight: bold;
  font-family: "Inter";
  font-size: 12px;
}
.copy a {
  text-decoration: none;
  color: #633BBC;
}/*# sourceMappingURL=style.css.map */