<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&amp;display=swap");

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

  font-family: "Space Grotesk", sans-serif;
  font-family: "Inter", sans-serif;

  scroll-behavior: smooth;
}

html {
  overflow-x: hidden;
}

body {
  margin-top: 100px;
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  background-color: #cce1f7;
  color: #fff;
  overflow-x: hidden;

  background-image: url(./assets/fsbg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@keyframes horizontal {
  0% {
    transform: translateX(0%);
  }

  50% {
    transform: translateX(-10%);
  }

  100% {
    transform: translateX(0%);
  }
}

@keyframes horizontal2 {
  0% {
    transform: translateX(0%);
  }

  50% {
    transform: translateX(10%);
  }

  100% {
    transform: translateX(0%);
  }
}

@keyframes vertical {
  0% {
    transform: translateY(0%);
  }

  50% {
    transform: translateY(-10%);
  }

  100% {
    transform: translateY(0%);
  }
}

a {
  color: #fff;
  text-decoration: none;
}

.section {
  position: relative;

  width: 100vw;
}

.section &gt; h1 {
  margin: 40px auto;
}

.navbar,
.navbar .content {
  margin: 0 auto;
  padding: 20px;
  position: fixed;
  top: 0;
  left: 50%;

  transform: translate(-50%, 0%);

  max-width: 1000px;
  width: 100%;
  height: 100px;

  display: flex;
  align-items: center;
  justify-content: space-around;

  background-color: #09121d;

  z-index: 1000;
}

.navbar {
  width: 100vw;
  max-width: 100vw;
}

.navbar .content .logo {
  max-width: 70px;
}

.navbar .content .logo img {
  width: 100%;
}

.navbar .content ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;

  list-style: none;
}

.navbar .content ul li a {
  font-weight: 700;
}

.navbar .burger {
  position: relative;
  width: 40px;
  height: 30px;

  cursor: pointer;
  display: none;
}

.navbar .burger .bar {
  position: absolute;
  top: 50%;
  left: 50%;

  width: 40px;
  height: 4px;

  transform: translate(-50%, -50%);
  transform-origin: center center;
  background-color: #fff;
  border-radius: 4px;

  transition: 0.4s all ease;
}

.navbar .burger .bar-0 {
  top: 0%;
}
.navbar .burger .bar-1 {
  top: 50%;
}
.navbar .burger .bar-2 {
  top: 100%;
}

.navbar .burger.active .bar-0 {
  transform: translate(-50%, 14px) rotate(45deg);
}
.navbar .burger.active .bar-1 {
  transform: translate(-40px, -50%) rotate(0deg);
  opacity: 0;
}
.navbar .burger.active .bar-2 {
  transform: translate(-50%, -15px) rotate(-45deg);
}

/*---------------------- section --------------------*/
.section-0 {
  position: relative;
  padding: 20px 40px 40px;
  min-height: calc(100vh - 100px);

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;

  /* background: linear-gradient(0deg, #09121d, transparent); */
  text-align: center;
  overflow: hidden;
}

.section-0 .abs_img {
  position: absolute;
}

.section-0 &gt; .bg {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;
  object-fit: cover;

  /* filter: grayscale(1);
    opacity: 0.7;
    z-index: -1; */
}

.section-0 &gt; .abs_img.img0 {
  top: 0;
  right: 0;

  transform: translateY(0%);

  max-width: 800px;
  height: 150%;

  z-index: 0;
  animation: horizontal 4s linear infinite;
  /* horizontal
    vertical */
}

.section-0 &gt; .abs_img.img1 {
  top: 10%;
  left: 20%;

  max-width: 50px;
  width: 100%;
  animation: horizontal 5s linear infinite;
}

.section-0 &gt; .abs_img.img2 {
  top: 20%;
  right: 20%;

  max-width: 30px;
  width: 100%;
  animation: horizontal 5s linear infinite;
}

.section-0 h1 {
  max-width: 900px;

  font-size: 52px;
  font-weight: 900;
  z-index: 1;
}

.section-0 p {
  max-width: 1000px;

  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 17px;
  line-height: 24px;
  z-index: 1;
}

.section-0 a {
  margin-top: 20px;
  padding: 20px 40px;
  position: relative;
  display: block;

  max-width: max-content;

  background-color: #3e1972;
  color: #ffffff;
  font-weight: 800;
  border-radius: 8px;
  z-index: 1;
}

.section-0 a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  transform: rotate(45deg) translate(0px, 17px);

  width: 20px;
  height: 20px;

  background-color: #09121d;
}

.section-0 a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  transform: rotate(45deg) translate(0px, -17px);

  width: 20px;
  height: 20px;

  background-color: #09121d;
}

/*--------------------- section-1 ----------------------*/
.section-1 {
  padding: 40px;
  max-width: 1400px;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}

.section-1 .swiper.first_section {
  padding: 40px;
}

.section-1 .items {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.section-1 .item {
  position: relative;
  padding: 40px;
  margin-bottom: 40px;

  max-width: 400px;
  width: 100%;
  aspect-ratio: 1/1;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;

  text-align: center;

  background-image: url("./assets/33.png");
  background-color: transparent;
  background-repeat: no-repeat;
  background-size: contain;
}

.section-1 .item .rotated-cube {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translate(-50%, 0%);

  width: 50%;
  z-index: -1;
}

.section-1 .item .rotated-cube img {
  width: 100%;
}

.section-1 .item img {
  max-width: 100px;
}

.section-1 .item h2 {
  font-size: 24px;
  font-weight: 900;
}

.section-1 .item p {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
}

.section-1 .item .number {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translate(-50%, 0%);

  width: 40px;
  height: 45px;

  display: flex;
  align-items: center;
  justify-content: center;

  background-image: url("./assets/6.png");
  background-color: transparent;

  background-repeat: no-repeat;
  background-size: cover;

  color: #fff;
  font-weight: 800;
}

.section-1 &gt; p {
  margin-top: 40px;

  text-align: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 17px;
  line-height: 24px;
  font-weight: 700;

  color: #fff;
}

.section-1 button {
  margin-top: 40px;
  padding: 20px 40px;
  position: relative;
  display: block;

  max-width: max-content;

  background-color: #fff;
  color: #fff;
  font-weight: 900;
  border-radius: 8px;

  outline: none;
  border: none;
  cursor: pointer;

  transition: 0.4s all ease;
}

.section-1 button:hover {
  background-color: #86ff00;
  color: #2c333c;
}

.section-1 button::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  transform: rotate(45deg) translate(0px, 17px);

  width: 20px;
  height: 20px;

  background-color: #09121d;
}

.section-1 button::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  transform: rotate(45deg) translate(0px, -17px);

  width: 20px;
  height: 20px;

  background-color: #09121d;
}

/*--------------------- section-2 ----------------------*/
.section-2 {
  position: relative;
  padding: 40px;
  width: 100%;
  max-width: 100vw;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 40px;
}

.section-2 .abs_img.bg {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 0.3;
  filter: grayscale(1);
  z-index: -1;
}

.section-2 h1 {
  font-size: 52px;
  font-weight: 900;
}

.section-2 .content {
  padding: 30px;
  max-width: 700px;
  width: 100%;

  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;

  background-color: #1e2835;
  border: 1px solid #ffffff14;
  border-radius: 14px;
}

.section-2 .content &gt; .left {
  max-width: 112px;
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}

.section-2 .left img {
  width: 100%;
}

.section-2 .left button {
  padding: 6px 20px;

  color: #fff;
  background-color: #fff;
  text-align: center;

  border-radius: 8px;
  border: none;
  outline: none;
}

.section-2 .right {
  width: 100%;
}

.section-2 .right h2 {
  font-size: 27px;
  font-weight: 900;
}

.section-2 .right span {
  margin-bottom: 15px;
  display: block;

  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  color: #fff;
}

.section-2 .right .rows {
  width: 100%;

  display: flex;
  align-items: flex-start;
  justify-content: stretch;
  flex-direction: column;
  gap: 10px;
}

.section-2 .right .rows .row {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section-2 .content .right .rows .row .left {
  padding: 10px;
  width: 50%;

  background-image: url("./assets/8.png");
  background-color: transparent;

  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: right;
}

.section-2 .content .right .rows .row .left p {
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
}

.section-2 .right .rows .row .right {
  padding: 10px;
  width: 50%;

  background-image: url("./assets/7.png");
  background-color: transparent;
  background-size: contain;
  background-repeat: no-repeat;
  background-position-x: right;
}

.section-2 .right .rows .row .right p {
  font-family: "Space Grotesk", sans-serif;
  text-align: right;
  color: #1e2835;
  font-weight: 600;
  font-size: 16px;
}

/*--------------------- section-3 ----------------------*/
.section-3 {
  padding: 40px;
  width: 100%;
  max-width: 1400px;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.section-3 h1 {
  margin-bottom: 20px;
  font-size: 52px;
  font-weight: 900;
}

.section-3 h3 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 900;
}

.section-3 .content {
  margin: 20px auto 0;
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.section-3 .content .rows {
  padding: 20px;
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}

.section-3 .content .rows .row {
  max-width: 48%;
  width: 100%;

  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section-3 .content .rows .row .top p {
  font-family: "Space Grotesk", sans-serif;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.section-3 .content .rows .row .top span {
  margin-left: 5px;
  color: #fff;
}

.section-3 .content .rows .row .bottom {
  width: 100%;
  height: 8px;

  border-radius: 8px;
  background-color: #171f29;
}

.section-3 .content .rows .row .bottom .range {
  width: 40%;
  height: 100%;

  border-radius: 8px;
  background-color: #86ff00;
}

.section-3 .content .rows .row .bottom .range.range-0 {
  width: 40%;
}

.section-3 .content .rows .row .bottom .range.range-1 {
  width: 42%;
}

.section-3 .content .rows .row .bottom .range.range-2 {
  width: 10%;
}

.section-3 .content .rows .row .bottom .range.range-3 {
  width: 3%;
}

.section-3 .content .rows .row .bottom .range.range-4 {
  width: 5%;
}

/*--------------------- section-4 ----------------------*/
.section-4 {
  position: relative;
  padding: 40px;
  width: 100%;
  max-width: 100vw;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.section-4 .abs_img.bg {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;
  object-fit: cover;

  /* opacity: .3;
    filter: grayscale(1);
    z-index: -1; */
}

.section-4 .left {
  position: relative;
  width: 50%;
  max-width: 500px;
  aspect-ratio: 1/1;
}

.section-4 .left img.abs_img {
  position: absolute;

  max-width: 50%;
  width: 100%;
}

.glob {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-4 .left img.abs_img.coin-0 {
  left: 32%;
  top: -10%;
  animation: vertical 4s linear infinite;
}

.section-4 .left img.abs_img.coin-1 {
  left: -2%;
  top: 12%;
  animation: horizontal 4s linear infinite;
}

.section-4 .left img.abs_img.coin-2 {
  bottom: 6px;
  left: -6%;
  animation: horizontal 4s linear infinite;
}

.section-4 .left img.abs_img.coin-3 {
  left: 26%;
  top: 43%;
  animation: horizontal2 4s linear infinite;
}

.section-4 .left img.abs_img.coin-4 {
  right: 0;
  top: 44%;
  animation: vertical 4s linear infinite;
}

.section-4 .right {
  padding: 10px;
  width: 50%;

  display: flex;
  flex-direction: column;
}

.section-4 .right h1 {
  margin-bottom: 30px;
  font-size: 54px;
  font-weight: 900;
}

.section-4 .right span {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
}

.section-4 .right p {
  font-family: "Space Grotesk", sans-serif;
  color: #fff;
  margin-bottom: 20px;
}

/*--------------------- section-5 ----------------------*/
.section-5 {
  width: 100%;
  max-width: 1800px;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}

.section-5 h1 {
  margin-bottom: 40px;
  font-size: 54px;
  font-weight: 900;
}

.section-5 .part.swiper-slide {
  position: relative;
  padding: 20px;
  max-width: 400px;

  display: flex;
  align-items: flex-end;
  flex-direction: column;

  background: linear-gradient(90deg, #232c3600 -0.24%, #1a222c);
  border: 2px solid #2c333c;
  border-radius: 20px;
}

.section-5 .part.swiper-slide .arrow {
  position: absolute;
  top: -60px;
  right: 0;

  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  background-color: #fff;
  border-radius: 50%;
}

.section-5 .part.swiper-slide .border {
  position: absolute;
  top: -20px;
  width: 1px;
  height: 20px;

  background-color: #fff;
}

.section-5 .part.swiper-slide strong {
  margin-bottom: 10px;
  display: block;

  font-family: "Space Grotesk", sans-serif;
  text-align: right;
}

.section-5 .part.swiper-slide .body {
  width: 100%;
}

.section-5 .part.swiper-slide .body ul {
  padding-right: 20px;

  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 5px;

  list-style-position: outside;
}

.section-5 .part.swiper-slide .body ul li {
  font-family: "Space Grotesk", sans-serif;
  text-align: right;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  direction: rtl;
}

/*--------------------- section-6 ----------------------*/
.section-6 {
  position: relative;
  padding: 40px;
  width: 100%;
  max-width: 100vw;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}

.section-6 .abs_img.bg {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 1;
  z-index: -1;
}

.section-6 h1 {
  margin-bottom: 10px;
  font-size: 54px;
  font-weight: 900;
  text-align: center;
}

.section-6 .content {
  padding: 40px;
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.section-6 .content .item {
  position: relative;
  margin-top: 60px;
  padding: 10px;
  max-width: 250px;
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;

  border-radius: 20px;

  background: url("./assets/18.png");
  background-position: 50%, 50%;
  background-size: cover;
  border-radius: 20px;
  /* margin-top: -102px; */
  /* -webkit-mask-image: url('./assets/18.png'); */
  /* mask-image: url('./assets/18.png'); */
  -webkit-mask-repeat: no-repeat;

  /* padding: 112px 20px 42px; */
  position: relative;
  text-align: center;
  width: 100%;
  z-index: 99;

  min-height: 300px;
  z-index: 10;
}

.section-6 .content .item .bottom-right {
  position: absolute;
  width: 40px;
  height: 40px;

  bottom: 0;
  right: 0;

  border-radius: 8px;

  z-index: -1;
}

.section-6 .content .item .bottom-right img {
  width: 100%;
}

.section-6 .content .item .img_container {
  margin-top: -70px;
  margin-bottom: 20px;

  height: 176px;
  width: 156px;

  background: url("./assets/13.png") 50% no-repeat;
}

.section-6 .content .item .img_container img {
  width: 100%;
  height: 100%;

  -webkit-mask-image: url("./assets/13.png");
  mask-image: url("./assets/13.png");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  overflow: hidden;
}

.section-6 .content .item .info {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}

.section-6 .content .item .info h2 {
  font-weight: 900;
}

.section-6 .content .item .info span {
  font-family: "Space Grotesk", sans-serif;
  color: #fff;
}

.section-6 .content .item .info a {
  border: 1px solid #fff;
  border-radius: 50%;
  transition: border 0.4s ease;
}

.section-6 .content .item .info a:hover {
  border: 1px solid #86ff00;
}

.section-6 .content .item .info svg {
  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  transition: fill 0.4s ease;
}

.section-6 .content .item .info svg:hover g,
.section-6 .content .item .info svg:hover g path {
  fill: #86ff00;
  transition: fill 0.4s ease;
}

/*--------------------- section-7 ----------------------*/
.section-7 {
  width: 100%;
  max-width: 1800px;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}

.section-7 h1 {
  margin-bottom: 40px;
  font-size: 54px;
  font-weight: 900;
}

.section-7 .imgs_container {
  padding: 40px;

  width: 100%;
  max-width: 1200px;

  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
}

.section-7 .imgs_container a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-7 .imgs_container a img {
  max-width: 150px;
  width: 100%;
  opacity: 0.7;

  transition: opacity 0.4s ease;
}
.shadowed {
  opacity: 0.2 !important;
}
.section-7 .imgs_container a img:hover {
  opacity: 1;
}
.section-7 .imgs_container a img.shadowed:hover {
  opacity: 0.2 !important;
}

/*--------------------- section-8 ----------------------*/
.section-8 {
  position: relative;
  padding: 40px;
  width: 100%;
  max-width: 100vw;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.section-8 &gt; .abs_img.bg {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;
  object-fit: cover;

  /* filter: grayscale(1);

    opacity: .4;
    z-index: -1; */
}

.section-8 .left {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-8 .left h1 {
  font-size: 42px;
  font-weight: 900;
}

.section-8 .left p {
  font-family: "Space Grotesk", sans-serif;
  font-size: 17px;
  font-weight: 500;
}

.section-8 .left button {
  margin-top: 20px;
  padding: 20px 25px;
  position: relative;
  display: block;

  max-width: max-content;

  background-color: #86ff00;
  color: #09121d;
  font-weight: 900;
  border-radius: 8px;

  outline: none;
  border: none;
  cursor: pointer;

  transition: 0.4s all ease;
}

.section-8 .left button:hover {
  background-color: #fff;
  color: #fff;
}

.section-8 .left button::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  transform: rotate(45deg) translate(0px, 17px);

  width: 20px;
  height: 20px;

  background-color: #09121d;
}

.section-8 .left button::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  transform: rotate(45deg) translate(0px, -17px);

  width: 20px;
  height: 20px;

  background-color: #09121d;
}

.section-8 .right {
  width: 50%;
  max-width: 500px;
}

.section-8 .right img {
  width: 100%;
}

footer {
  padding: 40px;
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 40px;
}

footer .items {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 40px;
}

footer .items .item {
  position: relative;
  max-width: 400px;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  text-align: left;
}

footer .items .item p {
  color: #fff;
  font-size: 14px;
}

footer .items .item .border {
  position: absolute;
  right: -40px;
  top: 0;

  height: 100%;
  width: 1px;

  background-color: #fff;
}

footer .items .item img {
  max-width: 150px;
  width: 100%;
  margin-bottom: 20px;
}

footer .items .item strong,
footer .items .item span,
footer .items .item a {
  width: 100%;
  display: block;
  text-align: left;
}

footer .items .item strong {
  font-size: 21px;
  font-weight: 800;
}

footer .items .item span {
  margin-top: 20px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
}

footer .items .item a {
  font-size: 14px;
  font-weight: 400;
  text-decoration: underline;
}

footer .items .item ul {
  margin-top: 10px;
  list-style: none;
  width: 100%;
}

footer .items .item ul li {
  margin-bottom: 10px;
}

footer .items .item ul li a {
  text-decoration: none;
}

footer &gt; .border {
  width: 100%;
  height: 1px;
  background-color: #fff;
}

footer small {
  padding: 5px;
  text-align: center;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper.roadmap .swiper-wrapper {
  width: 100%;
  padding: 40px 0px;
}

.swiper.roadmap .border {
  height: 1px;
  width: 100%;
  background-color: #fff;
}

.swiper.roadmap {
  padding: 40px 0px;
}

.return_top {
  position: fixed;
  bottom: 20px;
  right: 20px;

  width: 60px;
  height: 60px;

  display: flex;
  align-items: center;
  justify-content: center;

  background-color: #f4ffe8;
  border-radius: 50%;

  z-index: 1000;
}

.return_top img {
  transform: rotate(-90deg);
}

@media (max-width: 820px) {
  .section-0 &gt; .abs_img.img0 {
    max-width: 300px;
    height: auto;
  }

  .section-4 {
    flex-direction: column;
  }

  .section-8 {
    flex-direction: column-reverse;
  }

  .section-4 .left,
  .section-4 .right,
  .section-8 .left,
  .section-8 .right {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .section &gt; h1 {
    font-size: 31px;
    text-align: center;
  }

  .navbar .burger {
    margin-left: auto;
    display: inline-block;

    z-index: 100;
  }

  .navbar .content ul {
    position: absolute;
    top: 0;
    left: -100%;

    width: 50%;
    height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 40px;

    transition: 0.4s all ease;
    background-color: #09121d;
    z-index: 10;
  }

  .navbar .content ul.active {
    left: 0;
  }

  .navbar .content ul li {
    width: 100%;
    text-align: center;
  }

  .navbar .content ul li a {
    width: 100%;
    display: block;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .section-5 .part.swiper-slide {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 500px) {
  .navbar .content ul {
    width: 70%;
  }

  .section {
    padding: 15px;
  }

  .section-0 &gt; .abs_img.img0 {
    top: 40%;
    right: -30%;
  }

  .section-1 {
    padding: 15px;
  }

  .section-1 button,
  .section-1 &gt; p {
    margin-top: 0;
  }

  .section-2 .content {
    flex-direction: column;
  }

  .section-3 .content .rows .row {
    width: 100%;
    max-width: 100%;
  }

  .section-6 .content {
    padding: 0;
  }

  .section-7 h1 {
    margin-bottom: 10px;
  }

  .section-7 .imgs_container {
    padding: 0;
  }

  .section-7 .imgs_container a img {
    max-width: 130px;
  }

  .section-8 .left h1 {
    font-size: 31px;
  }

  footer .items {
    flex-direction: column;
    gap: 60px;
  }

  footer .items .item .border {
    display: none;
  }
}

@media (max-width: 320px) {
  .section {
    padding: 10px;
  }
}

@media (max-width: 498px) {
  .cWPkaw {
    margin: 0 !important;
  }
}

.swap {
  padding: 10px;
  width: 100vw;
  min-height: calc(100vh - 100px);

  display: flex;
  align-items: center;
  justify-content: center;
}

iframe {
  margin: 0 auto;
  width: 100%;
  height: 600px;
  max-width: 470px;
}

.fodHYv {
  margin: 0 auto;
}

.hovericonscontainer {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 13px 0;
  gap: 13px;
}

.icon-link {
  position: relative;
  display: inline-block;
  width: 35px !important;
  height: 35px;
}

.icon {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  width: 35px !important;
  height: 35px;
}

.default-img {
  opacity: 1; /* Default image is visible initially */
  transition: transform 1s ease;
}

.icon-link:hover .default-img {
  transform: scale(1.1);
}
</pre></body></html>