@font-face {
  font-family: "Inter";
  src: url('/assets/fonts/Inter/Inter-VariableFont_opsz,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-stretch: 50% 200%;
}

@font-face {
  font-family: "Inter Italic";
  src: url('/assets/fonts/Inter/Inter-Italic-VariableFont_opsz,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-stretch: 50% 200%;
}

@font-face {
  font-family: "Cocogoose";
  src: url('/assets/fonts/cocogoose/Cocogoose-Pro-Bold-trial.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Cocogoose";
  src: url('/assets/fonts/cocogoose/Cocogoose-Pro-Bold-Italic-trial.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: "Cocogoose";
  src: url('/assets/fonts/cocogoose/Cocogoose-Pro-Darkmode-trial.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Cocogoose";
  src: url('/assets/fonts/cocogoose/Cocogoose-Pro-Darkmode-Italic-trial.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: "Cocogoose";
  src: url('/assets/fonts/cocogoose/Cocogoose-Pro-Italic-trial.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: "Cocogoose";
  src: url('/assets/fonts/cocogoose/Cocogoose-Pro-Letterpress-Regular-trial.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Cocogoose";
  src: url('/assets/fonts/cocogoose/Cocogoose-Pro-Light-trial.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Cocogoose";
  src: url('/assets/fonts/cocogoose/Cocogoose-Pro-Light-Italic-trial.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: "Cocogoose";
  src: url('/assets/fonts/cocogoose/Cocogoose-Pro-Regular-trial.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Cocogoose";
  src: url('/assets/fonts/cocogoose/Cocogoose-Pro-Semilight-trial.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: "Cocogoose";
  src: url('/assets/fonts/cocogoose/Cocogoose-Pro-Semilight-Italic-trial.ttf') format('truetype');
  font-weight: 200;
  font-style: italic;
}

@font-face {
  font-family: "Cocogoose";
  src: url('/assets/fonts/cocogoose/Cocogoose-Pro-Thin-trial.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: "Cocogoose";
  src: url('/assets/fonts/cocogoose/Cocogoose-Pro-Thin-Italic-trial.ttf') format('truetype');
  font-weight: 100;
  font-style: italic;
}

@font-face {
  font-family: "Cocogoose";
  src: url('/assets/fonts/cocogoose/Cocogoose-Pro-Ultralight-trial.ttf') format('truetype');
  font-weight: 50;
  font-style: normal;
}

@font-face {
  font-family: "Cocogoose";
  src: url('/assets/fonts/cocogoose/Cocogoose-Pro-Ultralight-Italic-trial.ttf') format('truetype');
  font-weight: 50;
  font-style: italic;
}

:root {
  --primary-color: #AB8018;
  --hint-color: #898989;
  --background: #000000;
}

/* For Webkit browsers (Chrome, Edge, Safari) */
::-webkit-scrollbar {
  width: 8px;
  height: 4px;
  /* Scrollbar width */
  border-radius: 20;
}

::-webkit-scrollbar-track {
  background: var(--background);
  /* Scrollbar track background */
  border-radius: 20;
}

::-webkit-scrollbar-thumb {
  background: #898989;
  /* Scrollbar thumb color */
  border-radius: 20;
  /* Rounded corners for the thumb */
}

::-webkit-scrollbar-thumb:hover {
  background: #898989;
  /* Lighter color on hover */
  border-radius: 20;
}

html,
body {
  background-color: var(--background);
  color: #fff;
  font-weight: 300;
  scroll-behavior: smooth;
  /* 
  overflow-y: scroll; */
  height: 100%;
  transition: all 0.2s ease-in-out;
  max-width: 100svw;
}

body {
  font-family: "Inter", sans-serif;
}

.content {
  overflow-y: auto;
  overflow-x: hidden;
  height: 100svh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cocogoose", sans-serif;
}

.text-inter {
  font-family: "Inter", sans-serif;
}

@media (min-width: 1440px) {
  .container {
    max-width: 1440px !important;
  }
}

/* @media (min-width: 1024px) {
  .container {
    padding-left: 80px !important;
    padding-right: 80px !important;
  }
} */

img {
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}

.logo-big {
  height: 120px;
  width: auto;
  object-fit: contain;
}

.button {
  background: linear-gradient(90deg, #AB8018 0%, #EDDF94 30.21%, #FFFDD6 60.42%, #B37E18 90.62%, #C89923 120.83%);
  border-radius: 100px;
  cursor: pointer;
  min-height: 40px;
  min-width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  padding: 5px 25px;
}

@media screen and (max-width: 400px) {
  .button {
    min-width: auto;
    font-size: 14px;
    padding: 5px 12px;
  }
}

.button-wrapper {
  background: linear-gradient(90deg, #AB8018 0%, #EDDF94 25%, #FFFDD6 50%, #B37E18 75%, #C89923 100%);
  border-radius: 999px;
  padding: 1px 2px;
}

.button:hover {
  opacity: .9;
}

.button.secondary {
  background: #062c5d;
}

.button.small {
  height: 45px;
  font-size: 18px;
  font-weight: 700;
}

.button.button-outline {
  background: var(--background);
  color: #fff;
}

.wallets {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.choose-card {
  width: 100%;
  max-width: 350px;
}

.companies img {
  padding: 20px;
}

.navbar-burger {
  fill: #475467;
}

.sidebar {
  gap: 1.5em;
  display: none;
  z-index: 8888888;
  /* margin: 0 auto;
  max-width: 95svw;
  max-height: 90svh; */
}

.sidebar.open {
  display: flex;
}

.sidebar a,
.sidebar span {
  color: #fff;
}

.application {
  background: linear-gradient(270deg, #41a1da -0.39%, #407abe 100.39%);
  min-height: 100svh;
}

.application .bg-logo {
  max-height: 480px;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}

/* 
nav ul li {
  border-bottom: 3px solid transparent;
}
nav ul li.active {
  color: #41abe1;
  border-bottom: 3px solid #41abe1;
} */

.text-hint {
  color: var(--hint-color);
}


.text-primary {
  color: var(--primary-color);
}

.bg-primary {
  background-color: var(--primary-color);
}

.text-gradient {
  background: linear-gradient(93.64deg, #AB8018 3.36%, #EDDF94 26.77%, #FFFDD6 50.18%, #B37E18 73.6%, #C89923 97.01%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient2 {
  background: linear-gradient(97deg, #FFFFFF -31.45%, #D1AB89 91.35%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient3 {
  background: linear-gradient(94.47deg, #FFFFFF 6.12%, #DAC8FF 80.25%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient4 {
  background: linear-gradient(90.32deg, #AD7A52 -8.31%, #FFFFFF 148%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient4 {
  background: linear-gradient(180deg, #D1AB89 0%, #A8744B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-gradient {
  background: linear-gradient(94.47deg, #FFFFFF 6.12%, #C9A07D 80.25%);
  padding: 8px;
  padding-left: 16px;
  padding-right: 16px;
  color: #fff;
  border-radius: 9999px;
}

.icon-gradient {
  background: linear-gradient(94.47deg, #FFFFFF 6.12%, #C9A07D 80.25%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-gradient {
  background: linear-gradient(94.47deg, #FFFFFF 6.12%, #C9A07D 80.25%);
}

.input-wrapper {
  background: linear-gradient(266.7deg, #FBB040 -1.71%, #F15A29 119.73%);
  padding: 1px;
}

input,
textarea {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
  font-size: 14px;
  font-weight: 400;
  border-radius: 7px;
  width: 100%;
  color: #fff !important;
  background-color: #5A5A5A !important;
  height: 32px !important;
  width: 100%;
  font-weight: 500 !important;
  font-family: "Futura", sans-serif !important;
}

textarea {
  height: 110px !important;
}

table thead th {
  text-align: left;
  color: #475467B2;
  font-weight: 400;
  font-size: 14px;
  padding: 16px 0;
}

table tbody td {
  text-align: left;
  font-weight: 400;
  padding: 12px 0;
}

.blur-bubble-1 {
  background-image: url('/assets/blur-bubble1.png');
  background-size: contain;
  background-repeat: no-repeat;
  height: 700px;
  width: 30svw;
  position: absolute;
  top: 0;
  left: 0;
}

.nav-links a {
  color: #fff;
  font-weight: 250;
  font-size: 10px;
  font-family: "Cocogoose", sans-serif;
}

.nav-links li:hover a,
.nav-links li.active a {
  color: var(--primary-color);
}

.nav-links li {
  /* height: 45px; */
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* padding: 0 8px; */
}

header {
  margin-top: 3em;
  backdrop-filter: blur(5px);
}

header img.header-background {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.slant-container {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.slant {
  position: absolute;
  width: 100%;
  height: 100%;
  clip-path: polygon(0 0, 100% 10%, 100% 90%, 0 100%);
}

.slant.black {
  background: #000;
}

.slant.white {
  background: #fff;
  clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 90%);
}

.visit-count {
  background: #1C1C1C;
  box-shadow: 0px 0px 15px 0px #D1AB89;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  padding: 10px 16px;
  position: relative;
}

.visit-count span {
  font-size: 65px;
  font-weight: 500;
  background: linear-gradient(94.47deg, #FFFFFF 6.12%, #C9A07D 80.25%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Freeman', sans-serif;
}

.visit-count .divider {
  width: 120%;
  left: -10%;
  display: flex;
  flex-direction: row;
  align-items: center;
  position: absolute;
}

.visit-count .divider>.circle {
  width: 15px;
  height: 15px;
  border-radius: 20px;
  background: #000;
}

.visit-count .divider>.middle {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.visit-count .divider>.middle>.middle-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0 2px;
}

.visit-count .divider>.middle .circle {
  width: 4px;
  height: 4px;
  border-radius: 10px;
  background: #C9A07D;
}

.visit-count .divider>.middle .line {
  width: 100%;
  height: 4.5px;
  background: #000;
}

.vertical-divider {
  min-height: 120px;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, #A8744B 0%, #FFFFFF 100%);
}

@media screen and (max-width: 1023px) {
  .bg-glass {
    background-color: #ffffff10;
    backdrop-filter: blur(10px);
    border: 1px solid #ffffff30;
    border-radius: 5px;
  }

  .visit-count span {
    font-size: 40px;
  }

  .visit-count {
    padding: 10px 14px;
  }

  .visit-count .divider>.circle {
    width: 12px;
    height: 12px;
  }

}

@media screen and (max-width: 767px) {
  .bg-glass-md {
    background-color: #ffffff10;
    backdrop-filter: blur(10px);
    border: 1px solid #ffffff30;
    border-radius: 5px;
  }
}

@media screen and (max-width: 640px) {
  #bg-header-mobile {
    top: -20em;
  }
}

@media screen and (max-width: 600px) {
  #bg-header-mobile {
    top: -17em;
  }

  #market-insight {
    margin-top: 35em !important;
  }
}

@media screen and (max-width: 530px) {
  #bg-header-mobile {
    top: -14em;
  }

  #market-insight {
    margin-top: 30em !important;
  }
}

@media screen and (max-width: 470px) {
  #bg-header-mobile {
    top: -10em;
  }

  #market-insight {
    margin-top: 25em !important;
  }
}

@media screen and (max-width: 410px) {
  #bg-header-mobile {
    top: -5em;
  }

  #market-insight {
    margin-top: 20em !important;
  }
}

@media screen and (max-width: 370px) {
  #bg-header-mobile {
    top: 0;
  }
}

.slick-prev {
  left: 0;
  z-index: 1;
}

.slick-next {
  right: 30px !important;
  z-index: 1;
}

.slick-prev:before,
.slick-next:before {
  content: '';
}

.slick-prev svg,
.slick-next svg {
  color: #fff;
  width: 50px;
  height: 50px;
}

@media screen and (max-width: 1023px) {

  .slick-prev svg,
  .slick-next svg {
    width: 40px;
    height: 40px;
  }

  .slick-next {
    right: 20px !important;
  }

}


.tabs {
  overflow-x: auto;
}

.tabs button {
  white-space: nowrap;
}

.tabs button.active {
  border-bottom: 3px solid #0A099A !important;
  color: #0A099A !important;
}

#welcome h1 {
  line-height: 1.1;
}

.box {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.10) 0%, rgba(153, 153, 153, 0) 100%);
  border: 1px solid #C89923;
  backdrop-filter: blur(1px);
}