@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: #090909;
  --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;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes scroll-right {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}
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 4px 8px rgba(9, 9, 9, 0.1);
  background-color: var(--white-color);
}
header .main-header {
  display: flex;
  justify-content: space-between;
  transition: 0.4s ease-in-out;
}
header .main-header .logo {
  transition: 0.4s ease-in-out;
  max-width: 159px;
}
header .main-header .logo img {
  width: 100%;
  transition: 0.4s ease-in-out;
}
@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: 25px 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: var(--light-blue-color);
}
header .main-header nav ul li a.active::after, 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 .main-header .logo {
  max-width: 120px;
}
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: 74px;
}

.home-banner {
  background: url("../images/Top-Banner-Bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.home-banner .banner-content {
  padding: 50px 0 0;
}
.home-banner .banner-content h1 {
  font-size: 46px;
  line-height: 66px;
  letter-spacing: -0.2px;
  font-family: "aina03";
  background: var(--gradient-color);
  margin-bottom: 40px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.2);
}
.home-banner .banner-content h2 {
  font-size: 18px;
  line-height: 47px;
  color: var(--light-blue-color);
  font-family: "aina03";
  margin-bottom: 20px;
  padding-left: 20px;
  letter-spacing: 2px;
}

.beta-version {
  background-color: var(--red-color);
}
.beta-version .scrolling-text-container {
  overflow: hidden;
}
.beta-version .marquee {
  white-space: nowrap;
  display: flex;
  gap: 30px;
}
.beta-version .marquee p {
  color: var(--white-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;
}

.multi-coins {
  padding: 110px 0;
}
.multi-coins h2 {
  font-size: 40px;
  line-height: 52px;
  letter-spacing: -0.1px;
  color: var(--theme-color);
  font-family: "aina03";
  margin-bottom: 30px;
}
.multi-coins h3 {
  font-size: 18px;
  line-height: 47px;
  color: var(--light-blue-color);
  letter-spacing: 0.5px;
  margin-bottom: 0px;
}
.multi-coins .multi-coins-content {
  max-width: 425px;
}

.crypto-platform {
  padding: 100px 0;
  background: url(../images/Crypto-Plateform.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.crypto-platform .heading {
  text-align: center;
  margin-bottom: 30px;
}
.crypto-platform .heading h2 {
  font-size: 40px;
  line-height: 52px;
  letter-spacing: -0.1px;
  color: var(--white-color);
  font-family: "aina03";
  margin-bottom: 16px;
}
.crypto-platform .heading p {
  color: var(--white-color);
}
.crypto-platform .search-form {
  margin-bottom: 30px;
}
.crypto-platform .search-form form {
  display: flex;
  align-items: center;
  background: rgba(234, 244, 254, 0.5);
  align-items: center;
  border-radius: 45px;
  height: 60px;
  padding: 5px 30px;
  gap: 10px;
}
.crypto-platform .search-form form .fa {
  color: var(--white-color);
}
.crypto-platform .search-form form input {
  border: 0;
  background-color: transparent;
  color: var(--white-color);
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.1px;
  width: 100%;
}
.crypto-platform .search-form form input::-moz-placeholder {
  color: var(--white-color);
}
.crypto-platform .search-form form input::placeholder {
  color: var(--white-color);
}
.crypto-platform .search-form form input:focus {
  outline: none;
}
.crypto-platform .crypto-plateform-table {
  background: var(--white-color);
  border-radius: 30px;
  padding: 0 30px;
  overflow-x: auto;
}
.crypto-platform .crypto-plateform-table table {
  width: 100%;
  min-width: 1050px;
}
.crypto-platform .crypto-plateform-table table th,
.crypto-platform .crypto-plateform-table table td {
  padding: 15px 0;
  border: 1px solid #d4e9ff;
}
.crypto-platform .crypto-plateform-table table th:first-child,
.crypto-platform .crypto-plateform-table table td:first-child {
  border-left: 0;
}
.crypto-platform .crypto-plateform-table table th:last-child,
.crypto-platform .crypto-plateform-table table td:last-child {
  border-right: 0;
}
.crypto-platform .crypto-plateform-table table th:not(:first-child),
.crypto-platform .crypto-plateform-table table td:not(:first-child) {
  text-align: center;
  width: 12.5%;
}
.crypto-platform .crypto-plateform-table table tr:last-child td {
  padding-bottom: 30px;
  border-bottom: 0;
}
.crypto-platform .crypto-plateform-table table th {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.1px;
  padding-top: 30px;
  border-top: 0;
}
.crypto-platform .crypto-plateform-table table td {
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.1px;
  font-family: "aina03";
}
.crypto-platform .crypto-plateform-table table .coin {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 5px;
}

.download-app {
  padding: 0 0 100px;
}
.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);
}

footer {
  background: url(../images/Footer-bg.png);
  background-size: cover;
}
footer .footer-top {
  padding: 50px 0 30px;
}
footer h4 {
  color: var(--theme-color);
  font-size: 20px;
  line-height: 24px;
  font-family: "aina03";
  margin-bottom: 20px;
}
footer img {
  margin-bottom: 20px;
}
footer .footer-link {
  margin-bottom: 20px;
}
footer .footer-link a {
  display: block;
  color: var(--theme-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(--blue-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(--theme-color);
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.1px;
  margin-bottom: 0;
}
footer .footer-bottom p a {
  color: var(--theme-color);
  transition: all 0.3s ease-in-out;
}
footer .footer-bottom p a:hover {
  color: var(--blue-color);
}

.breadcrumb-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  background-image: url(../images/inner-page-bg.png);
  background-position: bottom;
  background-size: cover;
}
.breadcrumb-container .heading {
  text-align: center;
}
.breadcrumb-container h1 {
  font-size: 46px;
  line-height: 66px;
  letter-spacing: -0.2px;
  font-family: "aina03";
  background: var(--gradient-color);
  margin-bottom: 40px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.2);
  margin: 0;
}

.terms-and-condition-content {
  padding: 70px 0;
}
.terms-and-condition-content h2,
.terms-and-condition-content h3,
.terms-and-condition-content h4 {
  color: var(--theme-color);
  font-family: "aina03";
  font-weight: bold;
  line-height: 48px;
  letter-spacing: 0.1px;
  margin-bottom: 0;
}
.terms-and-condition-content h2 {
  font-size: 40px;
  margin-bottom: 16px;
}
.terms-and-condition-content h3 {
  font-size: 28px;
}
.terms-and-condition-content h4 {
  font-size: 22px;
}
.terms-and-condition-content h6 {
  font-size: 16px;
  color: var(--theme-color);
  line-height: 24px;
}
.terms-and-condition-content ul {
  padding-left: 20px;
}
.terms-and-condition-content ul li {
  font-size: 16px;
  color: #707070;
  line-height: 24px;
  letter-spacing: 0.1px;
}

@media (min-width: 1400px) {
  .home-banner .banner-content h1 {
    font-size: 50px;
  }
}
@media (max-width: 1200px) {
  header .main-header .logo {
    max-width: 140px;
  }
  header .main-header nav ul li a {
    padding: 20px 0;
  }
  .home-banner .banner-content h2 {
    font-size: 16px;
    line-height: 32px;
    margin-bottom: 16px;
  }
  .home-banner .banner-content h1 {
    font-size: 38px;
    line-height: 50px;
  }
  .home-banner .banner-content .banner-image {
    max-width: 500px;
  }
  .home-banner .banner-description p {
    font-size: 22px;
    line-height: 34px;
  }
  .multi-coins {
    padding: 60px 0;
  }
  .multi-coins h3 {
    font-size: 16px;
    line-height: 40px;
  }
  .multi-coins h2 {
    font-size: 32px;
    line-height: 46px;
    margin-bottom: 16px;
  }
  .multi-coins p {
    font-size: 16px;
  }
  .multi-coins img {
    margin: 30px 0;
  }
  .download-app {
    padding-bottom: 60px;
  }
  .download-app .app-container .px-40 {
    padding-left: 20px;
    padding-right: 20px;
  }
  .download-app .app-container h2 {
    font-size: 32px;
    line-height: 40px;
  }
  .terms-and-condition-content {
    padding: 65px 0;
  }
  .terms-and-condition-content h2,
  .terms-and-condition-content h3,
  .terms-and-condition-content h4 {
    line-height: 44px;
  }
  .terms-and-condition-content h2 {
    font-size: 36px;
  }
  .terms-and-condition-content h3 {
    font-size: 26px;
  }
  .terms-and-condition-content h4 {
    font-size: 20px;
  }
  .terms-and-condition-content h6 {
    font-size: 14px;
  }
  .terms-and-condition-content ul li {
    font-size: 14px;
    line-height: 24px;
  }
}
@media (max-width: 767px) {
  .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 .main-header .logo {
    max-width: 90px;
  }
  header .main-header nav ul li {
    padding: 0 10px;
  }
  header .main-header nav ul li a {
    padding: 20px 0;
    font-size: 12px;
  }
  header.is-sticky .main-header .logo {
    max-width: 80px;
  }
  header.is-sticky .main-header nav li a {
    padding: 15px 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;
  }
  .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: 42px;
    margin-bottom: 20px;
  }
  .home-banner .banner-content .banner-img {
    max-width: 280px;
  }
  .beta-version .marquee p {
    font-size: 14px;
    line-height: 36px;
  }
  .multi-coins {
    padding: 40px 0;
  }
  .multi-coins h2 {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 10px;
  }
  .multi-coins p {
    font-size: 14px;
  }
  .multi-coins img {
    margin: 20px 0;
  }
  .crypto-platform {
    padding: 40px 0;
  }
  .crypto-platform .heading h2 {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 10px;
  }
  .crypto-platform .heading p {
    font-size: 14px;
  }
  .crypto-platform .crypto-plateform-table table th,
  .crypto-platform .crypto-plateform-table table td {
    padding: 10px 0;
  }
  .crypto-platform .crypto-plateform-table table th {
    font-size: 14px;
    padding-top: 20px;
  }
  .crypto-platform .crypto-plateform-table table td {
    font-size: 16px;
  }
  .crypto-platform .crypto-plateform-table table .coin {
    width: 42px;
    height: 42px;
  }
  .download-app {
    padding: 0 0 30px;
  }
  .download-app .app-container h2 {
    font-size: 28px;
    line-height: 36px;
  }
  .download-app .app-container p {
    font-size: 14px;
  }
  .download-app .app-container .app-content {
    padding-left: 20px;
  }
  footer .footer-top {
    padding: 50px 0 30px;
  }
  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;
  }
  .breadcrumb-container h1 {
    font-size: 34px;
  }
  .terms-and-condition-content {
    padding: 40px 0;
  }
  .terms-and-condition-content h2,
  .terms-and-condition-content h3,
  .terms-and-condition-content h4 {
    line-height: 36px;
  }
  .terms-and-condition-content h2 {
    font-size: 30px;
  }
  .terms-and-condition-content h3 {
    font-size: 22px;
  }
  .terms-and-condition-content h4 {
    font-size: 16px;
  }
  .terms-and-condition-content h6 {
    font-size: 14px;
  }
  .terms-and-condition-content p {
    font-size: 12px;
  }
  .terms-and-condition-content ul li {
    font-size: 12px;
    line-height: 24px;
  }
}/*# sourceMappingURL=style.css.map */