@font-face {
  font-family: "aina02";
  font-weight: 600;
  src: url("../fonts/eina/Eina02-SemiBold.ttf");
}
@font-face {
  font-family: "aina03";
  font-weight: bold;
  src: url("../fonts/eina/Eina03-Bold.ttf");
}
:root {
  --theme-color: #00001c;
  --blue-color: #0d1a82;
  --light-blue-color: #3192f1;
  --green-color: #4ebe9c;
  --white-color: #fff;
  --red-color: #fe0101;
  --gradient-color: linear-gradient(135deg, #4ebe9c, #0d1a82);
  --gradient-hover: linear-gradient(90deg, #4ebe9c, #0d1a82);
}

body {
  font-family: "aina02";
  font-weight: 600;
  overflow-x: hidden !important;
}

body .fix {
  overflow: hidden;
}

p {
  font-size: 16px;
  color: #707070;
  line-height: 24px;
  letter-spacing: 0.1px;
}

a {
  text-decoration: none;
}

.px-40 {
  padding-left: 40px;
  padding-right: 40px;
}

img {
  max-width: 100%;
  max-height: 100%;
}

ul.no-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.btn {
  border-radius: 45px;
  border: 0;
  padding: 7px 30px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--theme-color);
  letter-spacing: -0.1px;
  transition: all 0.5s ease-in-out;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn.btn-primary {
  color: var(--white-color);
  overflow: hidden;
  z-index: 1;
  background: var(--gradient-color);
  border: 0;
  box-shadow: 7px 9px 16px rgba(71, 3, 140, 0.15);
  position: relative;
  color: var(--white-color);
}
.btn.btn-primary::before, .btn.btn-primary:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background: var(--gradient-hover);
  z-index: -1;
  transition: all 0.35s;
}
.btn.btn-primary:before {
  opacity: 0.5;
}
.btn.btn-primary:after {
  transition-delay: 0.2s;
}
.btn.btn-primary:hover::before, .btn.btn-primary:hover::after {
  left: 0;
}
.btn.app-button {
  background-color: #000000;
  width: 154px;
  padding: 4px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-transform: capitalize;
  text-align: left;
}
.btn.app-button span {
  font-size: 10px;
  display: block;
}
.btn.app-button p {
  margin: 0;
  font-size: 14px;
  color: #fff;
  line-height: 1.4;
}

header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 999;
  box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.2);
  background-color: var(--white-color);
}
header .main-header {
  display: flex;
  justify-content: space-between;
  transition: 0.4s ease-in-out;
}
header .main-header .logo {
  max-width: 159px;
}
header .main-header .logo img {
  width: 100%;
}
@media (max-width: 767px) {
  header .main-header .logo .logo {
    max-width: 100px;
  }
}
header .main-header .right-side {
  display: flex;
  align-items: center;
}
header .main-header nav ul {
  display: flex;
  align-items: center;
}
header .main-header nav ul li {
  position: relative;
  padding: 0 17px;
}
header .main-header nav ul li a {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: var(--theme-color);
  position: relative;
  padding: 20px 0;
  transition: all 0.4s linear;
}
header .main-header nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 4px;
  width: 100%;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: #3192f1;
}
header .main-header nav ul li a:hover::after {
  width: 40px;
}
header .main-header nav ul li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  height: 2px;
  width: 2px;
  background: var(--theme-color);
}
header.is-sticky {
  z-index: 999;
  background-color: var(--white-color);
  animation: 900ms cubic-bezier(0.2, 1, 0.22, 1) 0s normal none 1 running fadeInDown;
}
header.is-sticky nav ul li a {
  padding: 15px 0;
}

.off-canvas-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  z-index: 9999;
}
.off-canvas-wrapper .off-canvas-inner-content {
  transform: none;
}
.off-canvas-wrapper .off-canvas-overlay {
  background-color: rgba(0, 0, 0, 0.4);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.off-canvas-wrapper .off-canvas-inner-content {
  background: var(--green-color);
  background-repeat: no-repeat;
  background-position: top right;
  width: 300px;
  padding: 20px;
  height: 100%;
  position: relative;
  transform: translateX(calc(-100% - 50px));
  transition: 0.4s;
}
.off-canvas-wrapper.open {
  opacity: 1;
  visibility: visible;
}
.off-canvas-wrapper.open .off-canvas-inner-content {
  transform: none;
}
.off-canvas-wrapper .off-canvas-inner {
  display: flex;
  flex-direction: column;
  margin-left: auto;
  height: 100%;
}
.off-canvas-wrapper .off-canvas-inner .logo {
  display: flex;
}
.off-canvas-wrapper .off-canvas-inner .logo img {
  max-width: 130px;
}
.off-canvas-wrapper .btn-close-off-canvas {
  width: 24px;
  height: 24px;
  color: #fff;
  text-align: center;
  cursor: pointer;
  border-radius: 50%;
  transition: 0.4s;
  font-weight: 100;
  z-index: 84;
  position: relative;
}
.off-canvas-wrapper .btn-close-off-canvas::before, .off-canvas-wrapper .btn-close-off-canvas::after {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  height: 2px;
  width: 100%;
  background-color: #fff;
}
.off-canvas-wrapper .btn-close-off-canvas::before {
  transform: rotate(44deg);
}
.off-canvas-wrapper .btn-close-off-canvas::after {
  transform: rotate(-44deg);
}

.mobile-menu-btn {
  display: none;
}

.mobile-menu {
  height: 100%;
  overflow: auto;
  padding-right: 30px;
  margin-right: -30px;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.mobile-menu ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: block;
}
.mobile-menu li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4525);
}
.mobile-menu li a {
  font-size: 16px;
  color: #fff;
  text-transform: capitalize;
  line-height: 18px;
  font-weight: 600;
  position: relative;
  display: inline-block;
  padding: 13px 0;
  text-decoration: none;
  transition: all 0.5s;
}
.mobile-menu li a:hover {
  color: #090909;
}
.mobile-menu li ul li {
  border: none;
}
.mobile-menu li ul li a {
  font-size: 14px;
  text-transform: capitalize;
  padding: 10px 0 8px;
}

main {
  padding-top: 64px;
}

.home-banner {
  background: url("../images/Top-Banner-Bg.png");
  padding-bottom: 60px;
  background-size: contain;
  background-position: center;
  background-color: #0d1a82;
  background-repeat: no-repeat;
}
.home-banner .banner-content {
  padding: 50px 0;
}
.home-banner .banner-content h1 {
  font-size: 46px;
  line-height: 66px;
  letter-spacing: -0.2px;
  color: var(--white-color);
  font-family: "aina03";
  margin-bottom: 20px;
}
.home-banner .banner-content h2 {
  font-size: 24px;
  line-height: 47px;
  color: var(--theme-color);
  background: url(../images/banner-title-bg.png);
  background-repeat: no-repeat;
  background-position: left;
  font-family: "aina03";
  margin-bottom: 20px;
  padding-left: 20px;
  letter-spacing: 1px;
  background-size: contain;
}
.home-banner .banner-description {
  text-align: center;
}
.home-banner .banner-description p {
  font-size: 26px;
  line-height: 36px;
  color: var(--white-color);
}

.beta-version {
  box-shadow: 0px 9px 6px rgba(254, 1, 1, 0.08);
}
.beta-version .scrolling-text-container {
  overflow: hidden;
}
.beta-version .marquee {
  white-space: nowrap;
  display: flex;
  gap: 30px;
}
.beta-version .marquee p {
  color: var(--red-color);
  font-size: 20px;
  margin-bottom: 0;
  line-height: 52px;
  letter-spacing: -0.1px;
  display: inline-block;
  animation: var(--direction) var(--marquee-speed) linear infinite;
}

.ecosystem {
  position: relative;
  padding: 50px 0 100px;
}
.ecosystem .container {
  position: relative;
}
.ecosystem .heading {
  text-align: center;
}
.ecosystem .heading h2 {
  font-size: 40px;
  line-height: 52px;
  letter-spacing: -0.1px;
  color: var(--theme-color);
  font-family: "aina03";
  margin-bottom: 30px;
}
.ecosystem .heading h2 span {
  color: var(--light-blue-color);
}
.ecosystem .eco-content {
  padding: 40px 30px;
  border-radius: 20px;
  transition: all 0.4s ease-in-out;
  position: relative;
  z-index: 1;
}
.ecosystem .eco-content h3 {
  font-size: 54px;
  line-height: 70px;
  letter-spacing: -0.1px;
  color: var(--theme-color);
  font-family: "aina03";
}
.ecosystem .eco-content h3,
.ecosystem .eco-content p {
  transition: all 0.2s ease-in-out;
}
.ecosystem .eco-converter {
  border-radius: 100px;
  padding: 64px 50px;
  display: flex;
  gap: 20px;
  background-color: var(--green-color);
  margin-top: 70px;
  box-shadow: 1px 41px 29px rgba(13, 27, 130, 0.17);
}
.ecosystem .eco-converter .convert-box {
  border: 2px solid var(--white-color);
  font-size: 36px;
  display: flex;
  align-items: center;
  font-family: "aina03";
  padding: 5px 40px;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  width: 50%;
  border-radius: 45px;
}
.ecosystem .eco-converter .convert-box input {
  border: 0;
  background: transparent;
  -moz-appearance: textfield;
  caret-color: auto;
  width: 100%;
}
.ecosystem .eco-converter .convert-box input::-webkit-outer-spin-button, .ecosystem .eco-converter .convert-box input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.ecosystem .eco-converter .convert-box input:focus {
  outline: none;
  caret-color: #333;
}
.ecosystem .eco-converter .convert-box input img {
  flex: 0 0 auto;
  max-width: 140px;
}
.ecosystem .eco-converter .shuffle {
  background: var(--white-color);
  height: 70px;
  width: 70px;
  border-radius: 50%;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-links {
  background-image: url(../images/social-bg.jpg);
  background-position: center;
  padding: 60px 0;
  text-align: center;
  background-size: cover;
}
.social-links h2 {
  font-size: 40px;
  line-height: 52px;
  letter-spacing: -0.1px;
  color: var(--white-color);
  font-family: "aina03";
  margin-bottom: 30px;
}
.social-links a {
  display: inline-block;
  text-align: center;
  color: var(--white-color);
  font-size: 18px;
  letter-spacing: 0.1px;
}
.social-links a figure {
  height: 137px;
  width: 137px;
  border-radius: 50%;
  padding: 8px;
  position: relative;
}
.social-links a figure .child {
  background-color: var(--white-color);
  height: 100%;
  width: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.social-links a figure::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 137px;
  width: 137px;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}
.social-links a.x figure:before {
  background: #000;
}
.social-links a.insta figure:before {
  background: radial-gradient(circle at 33% 100%, #515ecf 4%, #9b36b7 30%, #d92e7f 62%, #f15245 85%, #fed373);
}
.social-links a.wa figure:before {
  background-color: #2ab540;
}
.social-links a:hover figure::before {
  transform: scale(1.1);
  box-shadow: 1px 41px 29px rgba(13, 27, 130, 0.17);
}

.download-app {
  padding: 100px 0;
}
.download-app .app-container {
  background: var(--gradient-color);
  border-radius: 40px;
  padding: 50px 0;
}
.download-app .app-container .app-content {
  padding-left: 30px;
  max-width: 390px;
}
.download-app .app-container h2 {
  font-size: 40px;
  line-height: 52px;
  letter-spacing: -0.1px;
  color: var(--white-color);
  font-family: "aina03";
  margin-bottom: 16px;
}
.download-app .app-container p {
  font-size: 16px;
  color: var(--white-color);
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes scroll-right {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}
.w-50 {
  width: 50px;
}

.h-50 {
  height: 50px;
}

.box-50 {
  width: 50px;
  height: 50px;
}

.w-60 {
  width: 60px;
}

.h-60 {
  height: 60px;
}

.box-60 {
  width: 60px;
  height: 60px;
}

.w-70 {
  width: 70px;
}

.h-70 {
  height: 70px;
}

.box-70 {
  width: 70px;
  height: 70px;
}

.w-90 {
  width: 90px;
}

.h-90 {
  height: 90px;
}

.box-90 {
  width: 90px;
  height: 90px;
}

.w-100 {
  width: 100px;
}

.h-100 {
  height: 100px;
}

.box-100 {
  width: 100px;
  height: 100px;
}

.w-105 {
  width: 105px;
}

.h-105 {
  height: 105px;
}

.box-105 {
  width: 105px;
  height: 105px;
}

.w-110 {
  width: 110px;
}

.h-110 {
  height: 110px;
}

.box-110 {
  width: 110px;
  height: 110px;
}

.w-120 {
  width: 120px;
}

.h-120 {
  height: 120px;
}

.box-120 {
  width: 120px;
  height: 120px;
}

.w-130 {
  width: 130px;
}

.h-130 {
  height: 130px;
}

.box-130 {
  width: 130px;
  height: 130px;
}

.w-140 {
  width: 140px;
}

.h-140 {
  height: 140px;
}

.box-140 {
  width: 140px;
  height: 140px;
}

.w-144 {
  width: 144px;
}

.h-144 {
  height: 144px;
}

.box-144 {
  width: 144px;
  height: 144px;
}

.w-150 {
  width: 150px;
}

.h-150 {
  height: 150px;
}

.box-150 {
  width: 150px;
  height: 150px;
}

.w-160 {
  width: 160px;
}

.h-160 {
  height: 160px;
}

.box-160 {
  width: 160px;
  height: 160px;
}

.crypto-plateform {
  background: #d8ebff;
  padding: 70px 0;
}
.crypto-plateform .heading {
  text-align: center;
}
.crypto-plateform .heading h2 {
  font-size: 40px;
  line-height: 52px;
  letter-spacing: -0.1px;
  color: var(--theme-color);
  font-family: "aina03";
  margin-bottom: 30px;
}
.crypto-plateform .crypto-container {
  position: relative;
  height: 520px;
  margin-top: 60px;
}
.crypto-plateform .crypto-container .crypto-box {
  border-radius: 50%;
  padding: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white-color);
  box-shadow: 1px 41px 29px rgba(13, 27, 130, 0.17);
  position: absolute;
}
@media (min-width: 768px) {
  .crypto-plateform .crypto-container .crypto-box:first-child {
    left: 20%;
    bottom: 10px;
  }
  .crypto-plateform .crypto-container .crypto-box:nth-child(2) {
    left: 33%;
    bottom: 60px;
  }
  .crypto-plateform .crypto-container .crypto-box:nth-child(3) {
    left: 63%;
    bottom: 60px;
  }
  .crypto-plateform .crypto-container .crypto-box:nth-child(4) {
    left: 52%;
    bottom: 10px;
  }
  .crypto-plateform .crypto-container .crypto-box:nth-child(5) {
    left: 54%;
    top: 164px;
  }
  .crypto-plateform .crypto-container .crypto-box:nth-child(6) {
    left: 45%;
    bottom: 140px;
  }
  .crypto-plateform .crypto-container .crypto-box:nth-child(7) {
    left: 69%;
    top: 40px;
  }
  .crypto-plateform .crypto-container .crypto-box:nth-child(8) {
    left: 31%;
    top: 89px;
  }
  .crypto-plateform .crypto-container .crypto-box:nth-child(9) {
    left: 85%;
    top: 119px;
  }
  .crypto-plateform .crypto-container .crypto-box:nth-child(10) {
    left: 70%;
    bottom: 0px;
  }
  .crypto-plateform .crypto-container .crypto-box:nth-child(11) {
    left: 70%;
    top: 200px;
  }
  .crypto-plateform .crypto-container .crypto-box:nth-child(12) {
    left: 50%;
    top: 20px;
  }
  .crypto-plateform .crypto-container .crypto-box:nth-child(13) {
    left: 85%;
    bottom: 70px;
  }
  .crypto-plateform .crypto-container .crypto-box:nth-child(14) {
    left: 3%;
    top: 80px;
  }
  .crypto-plateform .crypto-container .crypto-box:nth-child(15) {
    left: 14%;
    bottom: 150px;
  }
  .crypto-plateform .crypto-container .crypto-box:nth-child(16) {
    left: 6%;
    bottom: 40px;
  }
  .crypto-plateform .crypto-container .crypto-box:nth-child(17) {
    left: 15%;
    top: 5px;
  }
}

footer {
  background: var(--theme-color);
}
footer .footer-top {
  padding: 70px 0 20px;
}
footer h4 {
  color: var(--white-color);
  font-size: 20px;
  line-height: 24px;
  font-family: "aina03";
  text-decoration: underline;
  margin-bottom: 20px;
}
footer img {
  margin-bottom: 20px;
}
footer .footer-link {
  margin-bottom: 20px;
}
footer .footer-link a {
  display: block;
  color: var(--white-color);
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.1px;
  transition: all 0.3s ease-in-out;
}
footer .footer-link a:hover {
  color: var(--green-color);
}
footer .footer-bottom {
  border-top: 1px solid rgba(78, 190, 156, 0.2);
  padding: 16px 0;
  text-align: center;
}
footer .footer-bottom p {
  color: var(--white-color);
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.1px;
  margin-bottom: 0;
}
footer .footer-bottom p a {
  color: var(--white-color);
  transition: all 0.3s ease-in-out;
}
footer .footer-bottom p a:hover {
  color: var(--green-color);
}

@media (min-width: 1400px) {
  .home-banner .banner-content h1 {
    font-size: 50px;
  }
}
@media (max-width: 1440px) {
  .ecosystem .eco-content h3 {
    font-size: 52px;
    line-height: 68px;
  }
}
@media (max-width: 1200px) {
  .w-50 {
    width: 37.5px;
  }
  .h-50 {
    height: 37.5px;
  }
  .box-50 {
    width: 37.5px;
    height: 37.5px;
  }
  .w-60 {
    width: 45px;
  }
  .h-60 {
    height: 45px;
  }
  .box-60 {
    width: 45px;
    height: 45px;
  }
  .w-70 {
    width: 52.5px;
  }
  .h-70 {
    height: 52.5px;
  }
  .box-70 {
    width: 52.5px;
    height: 52.5px;
  }
  .w-90 {
    width: 67.5px;
  }
  .h-90 {
    height: 67.5px;
  }
  .box-90 {
    width: 67.5px;
    height: 67.5px;
  }
  .w-100 {
    width: 75px;
  }
  .h-100 {
    height: 75px;
  }
  .box-100 {
    width: 75px;
    height: 75px;
  }
  .w-105 {
    width: 84px;
  }
  .h-105 {
    height: 84px;
  }
  .box-105 {
    width: 84px;
    height: 84px;
  }
  .w-110 {
    width: 88px;
  }
  .h-110 {
    height: 88px;
  }
  .box-110 {
    width: 88px;
    height: 88px;
  }
  .w-120 {
    width: 96px;
  }
  .h-120 {
    height: 96px;
  }
  .box-120 {
    width: 96px;
    height: 96px;
  }
  .w-130 {
    width: 104px;
  }
  .h-130 {
    height: 104px;
  }
  .box-130 {
    width: 104px;
    height: 104px;
  }
  .w-140 {
    width: 112px;
  }
  .h-140 {
    height: 112px;
  }
  .box-140 {
    width: 112px;
    height: 112px;
  }
  .w-144 {
    width: 115.2px;
  }
  .h-144 {
    height: 115.2px;
  }
  .box-144 {
    width: 115.2px;
    height: 115.2px;
  }
  .w-150 {
    width: 120px;
  }
  .h-150 {
    height: 120px;
  }
  .box-150 {
    width: 120px;
    height: 120px;
  }
  .w-160 {
    width: 128px;
  }
  .h-160 {
    height: 128px;
  }
  .box-160 {
    width: 128px;
    height: 128px;
  }
  .home-banner .banner-content h2 {
    font-size: 22px;
    line-height: 40px;
  }
  .home-banner .banner-content h1 {
    font-size: 46px;
    line-height: 60px;
  }
  .home-banner .banner-content .binance-logo {
    max-width: 250px;
  }
  .home-banner .banner-content .banner-image {
    max-width: 500px;
  }
  .home-banner .banner-description p {
    font-size: 22px;
    line-height: 34px;
  }
  .download-app .app-container .px-40 {
    padding-left: 20px;
    padding-right: 20px;
  }
  .download-app .app-container h2 {
    font-size: 32px;
    line-height: 40px;
  }
  .social-links h2 {
    font-size: 32px;
    line-height: 40px;
  }
  .ecosystem .heading h2,
  .crypto-plateform .heading h2 {
    font-size: 32px;
    line-height: 40px;
  }
  .ecosystem .eco-converter {
    padding: 50px 38px;
    flex-flow: wrap;
    justify-content: center;
  }
  .ecosystem .eco-converter .convert-box {
    font-size: 28px;
    padding: 5px 30px;
    width: 100%;
  }
  .ecosystem .eco-content h3 {
    font-size: 40px;
    line-height: 56px;
  }
}
@media (max-width: 991px) {
  .ecosystem .eco-content h3 {
    font-size: 28px;
    line-height: 45px;
  }
}
@media (max-width: 767px) {
  .w-50 {
    width: 35px;
  }
  .h-50 {
    height: 35px;
  }
  .box-50 {
    width: 35px;
    height: 35px;
  }
  .w-60 {
    width: 42px;
  }
  .h-60 {
    height: 42px;
  }
  .box-60 {
    width: 42px;
    height: 42px;
  }
  .w-70 {
    width: 49px;
  }
  .h-70 {
    height: 49px;
  }
  .box-70 {
    width: 49px;
    height: 49px;
  }
  .w-90 {
    width: 63px;
  }
  .h-90 {
    height: 63px;
  }
  .box-90 {
    width: 63px;
    height: 63px;
  }
  .w-100 {
    width: 70px;
  }
  .h-100 {
    height: 70px;
  }
  .box-100 {
    width: 70px;
    height: 70px;
  }
  .w-105 {
    width: 52.5px;
  }
  .h-105 {
    height: 52.5px;
  }
  .box-105 {
    width: 52.5px;
    height: 52.5px;
  }
  .w-110 {
    width: 55px;
  }
  .h-110 {
    height: 55px;
  }
  .box-110 {
    width: 55px;
    height: 55px;
  }
  .w-120 {
    width: 60px;
  }
  .h-120 {
    height: 60px;
  }
  .box-120 {
    width: 60px;
    height: 60px;
  }
  .w-130 {
    width: 65px;
  }
  .h-130 {
    height: 65px;
  }
  .box-130 {
    width: 65px;
    height: 65px;
  }
  .w-140 {
    width: 70px;
  }
  .h-140 {
    height: 70px;
  }
  .box-140 {
    width: 70px;
    height: 70px;
  }
  .w-144 {
    width: 72px;
  }
  .h-144 {
    height: 72px;
  }
  .box-144 {
    width: 72px;
    height: 72px;
  }
  .w-150 {
    width: 75px;
  }
  .h-150 {
    height: 75px;
  }
  .box-150 {
    width: 75px;
    height: 75px;
  }
  .w-160 {
    width: 80px;
  }
  .h-160 {
    height: 80px;
  }
  .box-160 {
    width: 80px;
    height: 80px;
  }
  .mobile-menu-btn {
    background: var(--gradient-color);
    border-radius: 50%;
    height: 34px;
    width: 34px;
    color: #fff;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 0;
    padding: 0;
  }
  header {
    padding: 10px 0;
  }
  main {
    padding-top: 55px;
  }
  .btn {
    padding: 5px 20px;
    font-size: 12px;
  }
  .btn.app-button span {
    font-size: 8px;
  }
  header .main-header .logo {
    max-width: 120px;
  }
  nav ul li {
    padding: 0 10px;
  }
  nav ul li a {
    font-size: 12px;
  }
  .home-banner {
    background-size: cover;
  }
  .home-banner .banner-content h2 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .home-banner .banner-content h1 {
    font-size: 30px;
    line-height: 50px;
    margin-bottom: 14px;
  }
  .home-banner .banner-content .binance-logo {
    max-width: 200px;
  }
  .home-banner .banner-description {
    margin-top: 20px;
  }
  .home-banner .banner-description p {
    font-size: 16px;
    line-height: 28px;
  }
  .beta-version p {
    font-size: 14px;
    line-height: 40px;
  }
  .ecosystem {
    padding: 30px 0 50px;
  }
  .ecosystem .heading h2 {
    font-size: 20px;
    line-height: 28px;
  }
  .ecosystem .eco-content {
    padding: 30px 20px;
  }
  .ecosystem .eco-content:not(.second-content) .row {
    flex-wrap: wrap-reverse;
  }
  .ecosystem .eco-content .row .col-md-6 {
    text-align: center;
  }
  .ecosystem .eco-content h3 {
    font-size: 34px;
    line-height: 46px;
    margin-bottom: 30px;
    text-align: center;
  }
  .ecosystem .eco-content p {
    font-size: 14px;
  }
  .ecosystem .eco-converter {
    border-radius: 70px;
    padding: 42px 30px;
    margin-top: 20px;
  }
  .ecosystem .eco-converter .convert-box {
    width: 100%;
    font-size: 20px;
    padding: 5px 20px;
  }
  .ecosystem .eco-converter .convert-box img {
    max-width: 90px;
  }
  .crypto-plateform {
    padding: 30px 0;
  }
  .crypto-plateform .heading h2 {
    font-size: 20px;
    line-height: 28px;
  }
  .social-links {
    padding: 30px 0 50px;
  }
  .social-links .social-content h2 {
    font-size: 20px;
    line-height: 28px;
  }
  .social-links a {
    font-size: 12px;
  }
  .social-links a figure {
    width: 80px;
    height: 80px;
  }
  .social-links a figure:before {
    width: 80px;
    height: 80px;
    padding: 5px;
  }
  .social-links a figure .child {
    padding: 7px;
  }
  .px-40 {
    padding-left: 20px;
    padding-right: 20px;
  }
  .download-app {
    padding: 30px 0;
  }
  .download-app .app-container h2 {
    font-size: 28px;
    line-height: 40px;
  }
  .download-app .app-container p {
    font-size: 14px;
  }
  .download-app .app-container .app-content {
    padding-left: 20px;
  }
  footer .footer-top {
    padding: 30px 0 10px;
  }
  footer .footer-logo {
    text-align: center;
  }
  footer .footer-logo img {
    margin: 0 auto 40px;
  }
  footer .footer-link a {
    font-size: 14px;
  }
  footer .footer-bottom p {
    font-size: 14px;
  }
  .crypto-plateform .crypto-container .crypto-box:first-child {
    left: 3%;
    bottom: 3px;
  }
  .crypto-plateform .crypto-container .crypto-box:nth-child(2) {
    left: 28%;
    bottom: 25px;
  }
  .crypto-plateform .crypto-container .crypto-box:nth-child(3) {
    right: 18%;
    bottom: 43px;
  }
  .crypto-plateform .crypto-container .crypto-box:nth-child(4) {
    right: 36%;
    bottom: 0px;
  }
  .crypto-plateform .crypto-container .crypto-box:nth-child(5) {
    right: 10%;
    top: 45px;
  }
  .crypto-plateform .crypto-container .crypto-box:nth-child(6) {
    right: 40%;
    bottom: 93px;
  }
  .crypto-plateform .crypto-container .crypto-box:nth-child(7) {
    right: 25%;
    top: 0px;
  }
  .crypto-plateform .crypto-container .crypto-box:nth-child(8) {
    right: 50%;
    top: 0px;
  }
  .crypto-plateform .crypto-container .crypto-box:nth-child(9) {
    right: 3%;
    top: 120px;
  }
  .crypto-plateform .crypto-container .crypto-box:nth-child(10) {
    right: 0%;
    bottom: 0px;
  }
  .crypto-plateform .crypto-container .crypto-box:nth-child(11) {
    right: 20%;
    top: 220px;
  }
  .crypto-plateform .crypto-container .crypto-box:nth-child(12) {
    right: 35%;
    top: 129px;
  }
  .crypto-plateform .crypto-container .crypto-box:nth-child(13) {
    right: 5%;
    bottom: 150px;
  }
  .crypto-plateform .crypto-container .crypto-box:nth-child(14) {
    left: 5%;
    top: 144px;
  }
  .crypto-plateform .crypto-container .crypto-box:nth-child(15) {
    left: 20%;
    bottom: 180px;
  }
  .crypto-plateform .crypto-container .crypto-box:nth-child(16) {
    left: 10%;
    bottom: 80px;
  }
  .crypto-plateform .crypto-container .crypto-box:nth-child(17) {
    left: 2%;
    top: 46px;
  }
}/*# sourceMappingURL=style.css.map */