@font-face {
  font-family: "Roboto Mono It";
  src: url("../assets/fonts/RobotoMono-Italic.woff2") format("woff2"), url("../assets/fonts/RobotoMono-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Roboto Mono Regular";
  src: url("../assets/fonts/RobotoMono-Regular.woff2") format("woff2"), url("../assets/fonts/RobotoMono-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../assets/fonts/Montserrat-Thin.woff2") format("woff2"), url("../assets/fonts/Montserrat-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
/* VARIABLES */
/* MIXINS */
/* ANIMATION */
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.ripple {
  position: relative;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
}

.ripple:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, #000 10%, transparent 10.01%);
  background-repeat: no-repeat;
  background-position: 50%;
  transform: scale(10, 10);
  opacity: 0;
  transition: transform 0.5s, opacity 1s;
}

.ripple:active:after {
  transform: scale(0, 0);
  opacity: 0.2;
  transition: 0s;
}

/* RESET CSS */
/* http://meyerweb.com/eric/tools/css/reset/
       v2.0 | 20110126
       License: none (public domain)
    */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  color: inherit;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}
a, a:hover, a:active, a:visited, a:focus {
  color: inherit;
}

i,
em,
.italic-text {
  font-style: italic;
}

.left {
  float: left;
}

.right {
  float: right;
}

.wrap-clear::after {
  content: "";
  display: block;
  clear: both;
}

.clearfix {
  zoom: 1;
  display: table;
  clear: both;
}
.clearfix:before, .clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}

:focus {
  outline: none;
}

input,
button,
textarea {
  border-radius: 0;
  appearance: none;
}

select {
  border-radius: 0;
}

textarea {
  resize: none;
}

/* COMMONS */
body {
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.6px;
}

ol,
ul {
  margin: 0px;
}

button,
input,
select,
textarea {
  -webkit-appearance: none;
  outline: none;
  border-radius: 0;
  background-color: transparent;
}

input,
textarea {
  background: transparent;
  border: none;
}

input:focus,
select:focus,
textarea:focus,
button:focus,
a:focus {
  outline: none;
}

a {
  color: inherit;
  cursor: pointer;
}

.h1,
.h2,
.h3,
.h4,
h1,
h2,
h3,
h4 {
  line-height: 1.4;
}

p {
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.slick-next:before,
.slick-prev:before {
  content: "";
}

.scroll-lock {
  height: 100%;
  overflow-y: hidden;
}
small {
  font-size: 13px;
}

.input[type=checkbox] {
  -webkit-appearance: checkbox;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media only screen and (min-width: 1025px) {
  .hidden-lg {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .hidden-md {
    display: none !important;
  }
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  width: 90%;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .container {
    width: 90%;
    max-width: 768px;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .container {
    width: 90%;
    max-width: 320px;
    margin: 0 auto;
  }
}

body,
html {
  overflow-x: hidden !important;
}

body {
  background-color: #000;
}

.bg-custum-darkblue {
  background-color: #020c49;
  border-radius: 20px;
  padding: 30px;
}
@media (max-width: 767px) {
  .bg-custum-darkblue {
    justify-content: center;
  }
}

.bg-custm-green {
  background-color: #12d0b2;
  border-radius: 20px;
  padding: 30px;
}
@media (max-width: 767px) {
  .bg-custm-green {
    justify-content: center;
  }
}

.bg-custm-black {
  background-color: black;
  border-radius: 20px;
  padding: 30px;
}
@media (max-width: 767px) {
  .bg-custm-black {
    justify-content: center;
  }
}

.bg-custm-blue2 {
  background-color: #2b2ba6;
  border-radius: 20px;
  padding: 30px;
}
@media (max-width: 767px) {
  .bg-custm-blue2 {
    justify-content: center;
  }
}

.common-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hidden {
  display: none;
}

#slideTab {
  position: fixed;
  top: 0;
  right: 0;
  width: 200px;
  height: 100%;
  background-color: #f0f0f0;
  padding: 20px;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
}

header {
  padding: 10px 0;
  border-bottom: 0.021rem solid black;
  background-color: #202020;
}
header .navbar {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .navbar .brand h2 {
  font-size: 2.2rem;
  font-family: "Roboto Mono Regular";
  color: #020c49;
}
header .navbar .brand img {
  width: 60px;
}
@media (max-width: 767px) {
  header .navbar .brand img {
    width: 50px;
  }
}
header .navbar .nav-link {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  column-gap: 2rem;
  overflow: hidden;
  position: relative;
  color: white;
  color: rgb(227, 227, 227);
}
header .navbar .nav-link .btn-main {
  font-family: "Roboto Mono Regular";
  display: inline-block;
  font-family: "Roboto Mono Regular";
  text-transform: capitalize;
  padding: 10px 0px;
}
header .navbar .nav-link .btn-main.btn {
  background-color: white;
  border: #020c49;
  border-radius: 50px;
  border: 0.031rem solid #020c49;
}
header .navbar .nav-link .btn-main.btn:hover {
  color: white;
  background-color: #020c49;
  transition: all 0.5s ease;
}
header .navbar .nav-link .btn {
  font-family: "Roboto Mono Regular";
  display: inline-block;
  font-family: "Roboto Mono Regular";
  text-transform: capitalize;
  background-color: white;
  border: #020c49;
  padding: 10px 20px;
  border-radius: 50px;
  border: 0.031rem solid #020c49;
}
header .navbar .nav-link .btn:hover {
  color: white;
  background-color: #020c49;
  transition: all 0.5s ease;
}

.content {
  display: none;
  padding: 40px 0;
}

#line {
  position: absolute;
  height: 2px;
  width: 100px; /* Set according to your design */
  background-color: rgb(227, 227, 227);
  bottom: 0;
  transition: transform 0.3s ease;
}

.search-section {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  border: 0.031em solid #474747;
  border-radius: 30px;
  padding: 5px 20px;
  color: rgb(227, 227, 227);
}
.search-section i {
  color: rgb(227, 227, 227);
}

.search-section img {
  margin-right: 10px;
}

.full-width-input {
  width: 100%;
  box-sizing: border-box;
  padding: 5px;
  border-radius: 40px;
  font-family: "Roboto Mono Regular";
}

.info-table {
  width: 100%;
  border-collapse: collapse;
}

.info-table td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}

.info-table {
  margin-bottom: 10px;
  background-color: #202020;
  padding: 20px;
  border-radius: 10px;
}
.info-table tbody tr {
  display: flex;
  justify-content: space-between;
  padding: 5px 10px;
  border-bottom: 1px solid #474747; /* Divider line */
}
.info-table tbody tr:last-child {
  border-bottom: none; /* Remove bottom border for the last row */
}
.info-table tbody tr td {
  border: none; /* Remove bottom border for the last row */
  font-family: "Roboto Mono Regular";
  text-transform: capitalize;
  line-height: 1.4;
  color: white;
  color: rgb(227, 227, 227);
}