* {
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: "Inter";
  src: url(../font/Inter/static/Inter_18pt-SemiBold.ttf);
}
@font-face {
  font-family: "Poppins";
  src: url(../font/Poppins/Poppins-Regular.ttf);
}
body {
  background: #000;
  color: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
label {
  font-family: "Inter";
}
a{
    text-decoration: none !important;;
}
a,
button,
text {
  font-family: "Poppins";
}
.contain-width {
  max-width: 90%;
  margin: 0 auto;
  padding: 0 !important;
  width: 100%;
}

.svg_btn text {
  font-weight: 600 !important;
  font-size: 16px;
  text-align: center;
  fill: #fff !important;
  font-family: "Poppins";
}
.svg_btn {
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.svg_btn::before {
  content: "";
  position: absolute;
  background: linear-gradient(140deg, #5f8197 50%, transparent 50%);
  width: 10px;
  height: 10px;
  top: 10px;
  left: 5px;
}
.svg_btn::after {
  content: "";
  position: absolute;
  background: linear-gradient(320deg, #5f8197 50%, transparent 50%);
  width: 10px;
  height: 10px;
  bottom: 10px;
  right: 5px;
}

h2,
h3 {
  color: #4ccbff;
}
section {
  padding-top: clamp(50px, 5vw, 100px);
}
li{
  list-style: none;
}
.svg_box {
  position: relative;
  display: inline-block;
}
.svg_box::before {
  content: "";
  position: absolute;
  background: linear-gradient(220deg, #ffffff 50%, transparent 50%);
  width: 10px;
  height: 10px;
  top: 17px;
  right: 5px;
}
.first-svg::before{
  top: 14px;
  right: 25px;

}
.svg_box::after {
  content: "";
  position: absolute;
  background: linear-gradient(35deg, #ffffff 50%, transparent 50%);
  width: 10px;
  height: 10px;
  bottom: 15px;
  left: 5px;
}
.svg_box tspan:first-child {
  font-weight: 700;
  font-size: 25px;
  fill: #fff;
}

.svg_box tspan:last-child {
  font-weight: 500;
  font-size: 22px;
  fill: #fff;
}
.flex-1.market-flex {
    gap: clamp(5px, 5vw, 25px);
    margin-top: clamp(50px, 5vw, 100px);
    flex-wrap: wrap;
}
span.day-span {
    color: #4ccbff !important;
    background: rgba(1, 47, 66, 1);
    padding: 5px 29px;
}
::-webkit-scrollbar{
  width: 4px;
  height: 2px;
}
::-webkit-scrollbar-thumb{
  border-radius: 50px;
  background-color: #4ccbff;
  border: 2px solid #4ccbff;
}
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #000000;
}