@import url("https://fonts.googleapis.com/css2?family=Geist:wght@100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  font-family: "Geist", sans-serif;
  font-style: normal;
  background: #000;
}

a {
  text-decoration: none;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

p {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

.my-80 {
  margin: 80px 0;
}

.mt-80 {
  margin-top: 80px;
}

.mb-80 {
  margin-bottom: 80px;
}

.my-100 {
  margin: 100px 0;
}

.mt-100 {
  margin-top: 100px;
}

.mb-100 {
  margin-bottom: 100px;
}

.gap-2 {
  gap: 2px;
}

.gap-4 {
  gap: 4px;
}

.gap-10 {
  gap: 10px;
}

.gap-20 {
  gap: 20px;
}

#change_mode {
  background: #000;
  overflow-x: hidden;
}

#toggle-mode-cb {
  display: none;
}

.toggle-mood {
  position: relative;
  box-sizing: border-box;
}
.toggle-mood label {
  width: 60px;
  height: 30px;
  border-radius: 40px;
  background: #2f3133;
  cursor: pointer;
}
.toggle-mood label:after {
  content: "\e93a";
  font-family: "icomoon";
  width: 26px;
  height: 26px;
  position: absolute;
  right: 2px;
  left: unset;
  top: 2px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: transparent;
  color: #999;
  font-size: 14px;
}
.toggle-mood label:before {
  content: "\e921";
  font-family: "icomoon";
  width: 26px;
  height: 26px;
  position: absolute;
  left: 2px;
  top: 2px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #000;
  color: #fff;
  font-size: 14px;
}

.AZ-img-container {
  position: relative;
  overflow: hidden;
  display: block;
}
.AZ-img-container::after {
  content: "";
  display: block;
}

.AZ-img-container-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.AZ-img-cover img {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
}

.AZ-field-group {
  display: flex;
  align-items: flex-end;
  margin-bottom: 15px;
  flex-grow: 1;
  background: #222222;
  border: 1px solid #222222;
  transition: all 0.2s linear;
  border-radius: 6px;
  padding: 8px 10px;
}
.AZ-field-group:focus-within, .AZ-field-group:hover {
  border: 1px solid #fff;
}
.AZ-field-group label {
  font-size: 12px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 5px;
  transition: all 0.2s linear;
}
.AZ-field-group input,
.AZ-field-group textarea {
  font-size: 16px;
  color: #ffffff;
  font-weight: 400;
  border: 0;
  background: transparent;
  flex-grow: 1;
  background: transparent;
  height: 100%;
}
.AZ-field-group .field-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.AZ-field-group .field-link {
  font-size: 12px;
  color: #fff;
  font-weight: 400;
}
.AZ-field-group .field-link span {
  font-size: 14px;
}

.AZ-primary-btn,
.AZ-secondary-btn {
  font-size: 18px;
  /* color: #131f00; */
  color: #fff;
  font-weight: 500;
  transition: all 0.2s linear;
  border-radius: 6px;
  padding: 0 48px;
  background: #1c39bb;
  border: 1px solid #1c39bb;
  height: 56px;
}
.AZ-primary-btn:hover,
.AZ-secondary-btn:hover {
  /* color: #131f00; */
  color: #fff;
  background: #3257ff;
}

.AZ-secondary-btn {
  background: transparent;
  border: 1px solid #1c39bb;
  color: #1c39bb;
}
.AZ-secondary-btn:hover {
  border: 1px solid #71a1ff;
}

#accordian .level-two {
  right: 100%;
  top: 0;
}
#accordian .show-dropdown {
  display: flex;
  align-items: center;
}
#accordian .has-dropdown {
  position: relative;
  width: 100%;
  margin-top: 4px;
}
#accordian .has-dropdown a {
  padding: 8px 24px 8px 54px;
  margin-bottom: 4px;
}
#accordian ul {
  padding: 0;
  margin: 0;
  width: 100%;
}
#accordian ul li {
  width: 100%;
}

#accordian > ul.show-dropdown > li.active > a,
#accordian > ul > li > ul.show-dropdown > li.active > a,
#accordian > ul > li > ul > li > ul.show-dropdown > li.active > a,
#accordian > ul > li > ul > li > ul > li > ul.show-dropdown > li.active > a,
#accordian > ul > li > ul > li > ul > li > ul > li > ul.show-dropdown > li.active > a {
  width: 100%;
}

#accordian > ul > li > ul,
#accordian > ul > li > ul > li > ul,
#accordian > ul > li > ul > li > ul > li > ul,
#accordian > ul > li > ul > li > ul > li > ul > li > ul {
  display: none;
  position: absolute;
  background: #121212;
  border-radius: 10px;
  min-width: 250px;
  width: 250px;
  border: 1px solid #292929;
  padding: 15px;
}

#accordian > ul > li.active > ul.show-dropdown,
#accordian > ul > li > ul > li.active > ul.show-dropdown,
#accordian > ul > li > ul > li > ul > li.active > ul.show-dropdown,
#accordian > ul > li > ul > li > ul > li > ul > li.active > ul.show-dropdown {
  display: block;
}

#accordian a:not(:only-child) {
  padding-right: 15px !important;
}
#accordian a:not(:only-child):after {
  content: "\e913";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  font-family: "icomoon";
  display: inline-block;
  padding-right: 3px;
  vertical-align: middle;
  transition: 0.2s;
}

#accordian > ul > li > ul li a,
#accordian > ul > li > ul > li > ul li a,
#accordian > ul > li > ul > li > ul > li > ul li a,
#accordian > ul > li > ul > li > ul > li > ul > li > ul li a {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  width: 100%;
  padding: 10px 10px 10px 20px !important;
  transition: all 0.3s;
  white-space: nowrap;
  position: relative;
  transition: all 0.2s linear;
  border-radius: 10px;
}
#accordian > ul > li > ul li a::after,
#accordian > ul > li > ul > li > ul li a::after,
#accordian > ul > li > ul > li > ul > li > ul li a::after,
#accordian > ul > li > ul > li > ul > li > ul > li > ul li a::after {
  top: 5px;
  left: 10px !important;
}
#accordian > ul > li > ul li a:hover,
#accordian > ul > li > ul > li > ul li a:hover,
#accordian > ul > li > ul > li > ul > li > ul li a:hover,
#accordian > ul > li > ul > li > ul > li > ul > li > ul li a:hover {
  background: #19191a;
}

.AZ-navbar {
  position: sticky;
  top: 0;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  z-index: 100;
  background: #0a0b0d;
}
.AZ-navbar .navbar {
  padding: 5px 0;
}
.AZ-navbar .download-dropdown .dropdown-toggle::after,
.AZ-navbar .options-dropdown .dropdown-toggle::after {
  content: none;
}
.AZ-navbar .download-dropdown .dropdown-menu,
.AZ-navbar .options-dropdown .dropdown-menu {
  background: #141519;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(var(--bg-6-rgb), 0.05);
  padding: 20px;
  border: 0;
  left: unset;
  right: 0;
  width: -moz-max-content;
  width: max-content;
}
.AZ-navbar .download-dropdown .dropdown-menu .qr-code .img,
.AZ-navbar .options-dropdown .dropdown-menu .qr-code .img {
  width: 96px;
  height: 96px;
  border: 1px solid #e0e0e0;
  padding: 5px;
}
.AZ-navbar .download-dropdown .dropdown-menu .qr-code .img img,
.AZ-navbar .options-dropdown .dropdown-menu .qr-code .img img {
  width: 100%;
}
.AZ-navbar .download-dropdown .dropdown-menu .qr-code .text,
.AZ-navbar .options-dropdown .dropdown-menu .qr-code .text {
  font-size: 12px;
  color: #ffffff;
  font-weight: 400;
}
.AZ-navbar .download-dropdown .dropdown-item,
.AZ-navbar .options-dropdown .dropdown-item {
  font-size: 14px;
  color: #ffffff;
  font-weight: 400;
  transition: all 0.2s linear;
  background: transparent;
  border-radius: 6px;
  padding: 12px 16px;
}
.AZ-navbar .download-dropdown .dropdown-item span,
.AZ-navbar .options-dropdown .dropdown-item span {
  font-size: 24px;
}
.AZ-navbar .download-dropdown .dropdown-item:hover,
.AZ-navbar .options-dropdown .dropdown-item:hover {
  background: #23242b;
  color: #1c39bb;
}
.AZ-navbar .download-dropdown .dropdown-link,
.AZ-navbar .options-dropdown .dropdown-link {
  padding: 10px;
}
.AZ-navbar .download-dropdown .dropdown-link p,
.AZ-navbar .options-dropdown .dropdown-link p {
  font-size: 16px;
  color: #fff;
  font-weight: 400;
}
.AZ-navbar .download-dropdown .dropdown-link span,
.AZ-navbar .options-dropdown .dropdown-link span {
  font-size: 14px;
  color: #999;
  font-weight: 400;
}
.AZ-navbar .navbar-icon {
  font-size: 24px;
  color: #ffffff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: all 0.2s linear;
}
.AZ-navbar .navbar-icon:hover {
  background: #141519;
}
.AZ-navbar .navbar-toggler {
  font-size: 24px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.AZ-navbar .navbar-toggler:focus {
  box-shadow: none;
}
.AZ-navbar .offcanvas-start {
  top: 0;
  right: 0;
  width: 250px;
  background: #f5f1e5;
}
.AZ-navbar .offcanvas-start .offcanvas-header {
  background: #2e7f3d;
}
.AZ-navbar .offcanvas-start .close-canvas {
  color: #ffe8ec;
}
.AZ-navbar .navbar-brand svg path {
  fill: #fff;
}
.AZ-navbar .navbar-nav {
  overflow-x: auto;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.AZ-navbar .navbar-nav::-webkit-scrollbar {
  display: none;
}
.AZ-navbar .menu {
  min-width: 100px;
  width: 100px;
  flex-grow: 1;
}
.AZ-navbar .nav-link {
  padding: 8px 10px !important;
  position: relative;
  overflow: hidden;
  font-size: 13px;
  color: #ffffff;
  font-weight: 500;
  transition: all 0.2s linear;
  white-space: nowrap;
}
.AZ-navbar .nav-link:hover p {
  color: #999;
}
.AZ-navbar .navbar-arrow {
  background: linear-gradient(to left, rgba(0, 0, 0, 0.5137254902), rgba(0, 0, 0, 0.8705882353));
  border: 0;
  height: 100%;
  width: 20px;
  position: absolute;
  top: 0;
  z-index: 1;
  color: #fff;
  font-size: 30px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
}
.AZ-navbar .navbar-arrow.hidden {
  display: none;
}
.AZ-navbar #scrollLeft {
  left: 0;
}
.AZ-navbar #scrollRight {
  right: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.5137254902), rgba(0, 0, 0, 0.8705882353));
}
.AZ-navbar .signup-btn,
.AZ-navbar .login-btn {
  font-size: 13px;
  font-weight: 400;
  color: #ffffff;
  background: transparent;
  border: 0;
  border-radius: 3px;
  padding: 0 15px;
  transition: all 0.2s linear;
  height: 28px;
}
.AZ-navbar .signup-btn span,
.AZ-navbar .login-btn span {
  font-size: 14px;
  opacity: 0;
  transform: translateX(8px);
  transition: all 0.2s linear;
}
.AZ-navbar .signup-btn p,
.AZ-navbar .login-btn p {
  transform: translateX(8px);
  transition: all 0.2s linear;
}
.AZ-navbar .signup-btn:hover,
.AZ-navbar .login-btn:hover {
  color: #ffffff;
  background: #141519;
}
.AZ-navbar .signup-btn:hover span,
.AZ-navbar .login-btn:hover span {
  transform: translateX(0);
  opacity: 1;
}
.AZ-navbar .signup-btn:hover p,
.AZ-navbar .login-btn:hover p {
  transform: translateX(0);
}
.AZ-navbar .signup-btn {
  background: #1c39bb;
  color: #fff;
  /* color: #000; */
}
.AZ-navbar .signup-btn:hover {
  background: #3257ff;
  color: "#fff";
  /* color: #000; */
}

.AZ-main-page {
  padding: 4px 0;
  background: #000000;
}
.AZ-main-page .anim-field {
  background: #000000;
  border-radius: 8px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.AZ-main-page .anim-field .AZ-field-group {
  margin-bottom: 0;
}
.AZ-main-page .anim-field .anim-btn {
  font-size: 12px;
  color: #bfbfbf;
  font-weight: 500;
  height: 100%;
  padding: 10px;
}
.AZ-main-page .anim-field .anim-btn:hover {
  color: #fff;
}
.AZ-main-page .anim-field .overlay-field {
  position: absolute;
  left: 100%;
  top: 0;
  transition: all 0.2s linear;
  width: 100%;
  height: 100%;
  background: #000000;
}
.AZ-main-page .anim-field .overlay-field.show {
  left: 0;
}
.AZ-main-page .anim-field .overlay-text {
  background-color: #222222;
  border-radius: 6px;
  padding: 10px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.AZ-main-page .short-btn,
.AZ-main-page .long-btn {
  font-size: 14px;
  color: #ffffff;
  font-weight: 500;
  transition: all 0.2s linear;
  border-radius: 6px;
  padding: 8px 16px;
  background: #20ac95;
  border: 1px solid #20ac95;
}
.AZ-main-page .short-btn:hover,
.AZ-main-page .long-btn:hover {
  color: #ffffff;
  background: #2bc7ad;
}
.AZ-main-page .short-btn {
  background: #e2464a;
  border: 1px solid #e2464a;
}
.AZ-main-page .short-btn:hover {
  color: #ffffff;
  background: #e2575b;
}
.AZ-main-page iframe {
  height: 508px !important;
}
.AZ-main-page .empty-box {
  width: 300px;
  margin: 40px auto;
}
.AZ-main-page .empty-box_icon {
  font-size: 32px;
  color: #fff;
}
.AZ-main-page .empty-box_icon:before {
  color: #ffffff;
}
.AZ-main-page .table {
  width: 100%;
  background: #191c24;
  border-radius: 5px;
}
.AZ-main-page .table thead tr {
  position: relative;
}
.AZ-main-page .table thead th {
  padding: 10px;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}
.AZ-main-page .table td,
.AZ-main-page .table th {
  border: none;
  text-align: right;
  vertical-align: middle;
}
.AZ-main-page .table tbody {
  border-radius: 10px;
}
.AZ-main-page .table tbody tr {
  border-bottom: 1px solid #222f49;
}
.AZ-main-page .table tbody tr:last-child {
  border-bottom: 0;
}
.AZ-main-page .table tbody td {
  padding: 15px 10px;
}
.AZ-main-page .table .table-btn {
  font-size: 12px;
  color: #ffffff;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s linear;
  background: #222f49;
}
.AZ-main-page .table .table-btn:hover {
  color: #000;
}
.AZ-main-page .table .row-img {
  width: 20px;
}
.AZ-main-page .table .table-content {
  font-size: 10px;
  color: #ffffff;
  font-weight: 500;
  white-space: nowrap;
}
.AZ-main-page .table .danger {
  color: red;
}
.AZ-main-page .table .status {
  font-size: 9px;
  color: rgb(28, 114, 28);
  font-weight: 500;
  background: rgb(217, 233, 212);
  padding: 0 3px;
  border-radius: 2px;
}
.AZ-main-page .table .table-taxt {
  font-size: 10px;
  color: #767680;
  font-weight: 400;
  white-space: nowrap;
}
.AZ-main-page .table .percentage {
  background: rgb(82, 62, 62);
  padding: 0 3px;
  border-radius: 3px;
  color: red;
}
.AZ-main-page .radio_order {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}
.AZ-main-page .radio_order label {
  padding: 20px 16px;
  background: #222222;
  border: 1px solid #222222;
  transition: all 0.2s linear;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
}
.AZ-main-page .radio_order label .radio_title {
  font-size: 14px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 8px;
}
.AZ-main-page .radio_order label .radio_text {
  font-size: 12px;
  color: #808080;
  font-weight: 400;
}
.AZ-main-page .radio_order label::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  border-left: 28px solid transparent;
  transition: all 0.2s linear;
}
.AZ-main-page .radio_order label::before {
  content: "";
  font-family: "icomoon";
  color: #fff;
  font-size: 14px;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  transition: all 0.2s linear;
}
.AZ-main-page .radio_order input {
  display: none;
}
.AZ-main-page .radio_order input:checked ~ label {
  border: 1px solid #1c39bb;
}
.AZ-main-page .radio_order input:checked ~ label::before {
  content: "\e92f";
}
.AZ-main-page .radio_order input:checked ~ label::after {
  border-bottom: 28px solid #1c39bb;
}
.AZ-main-page .assets-link {
  font-size: 12px;
  color: #fff;
  font-weight: 500;
  padding: 0 2px;
  background-color: transparent;
  border: 1px solid #424242;
  border-radius: 6px;
  min-height: 36px;
  min-width: 90px;
  transition: all 0.2s linear;
}
.AZ-main-page .assets-link:hover {
  border: 1px solid #ffffff;
}
.AZ-main-page .modal-link {
  font-size: 12px;
  font-weight: 500;
}
.AZ-main-page .modal-link .green {
  color: #20ac95;
}
.AZ-main-page .modal-link .red {
  color: #e2575b;
}
.AZ-main-page .avail-title {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5019607843);
  font-weight: 400;
}
.AZ-main-page .avail-title span {
  font-size: 14px;
  color: #fff;
}
.AZ-main-page .avail-link {
  font-size: 18px;
  color: #fff;
}

.AZ-box {
  padding: 8px 12px;
  background: #0e0e0e;
}

.tab__list {
  display: flex;
  margin-bottom: 24px;
  gap: 6px;
  border-bottom: 1px solid #2a2d34;
}
.tab__item {
  cursor: pointer;
  padding: 6px 8px;
  transition: all 0.2s linear;
  font-size: 14px;
  font-weight: 700;
  position: relative;
  color: #808080;
  display: flex;
  align-items: center;
  gap: 2px;
}
.tab__item:hover {
  color: #bfbfbf;
}
.tab__item span {
  font-size: 12px;
  color: #ffffff;
  font-weight: 500;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  background: #222f49;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tab__item:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background: #ffffff;
  transition: all 0.2s linear;
  visibility: hidden;
  opacity: 0;
}
.tab__item.is--active {
  color: #bfbfbf;
  position: relative;
}
.tab__item.is--active:before {
  visibility: visible;
  opacity: 1;
}
.tab__item.is--active::after {
  color: #bfbfbf;
}
.tab__content-item {
  /* display: none; */
}
.tab__content-item.is--active {
  display: block;
}

.hasdropdown {
  position: relative;
}
.hasdropdown::after {
  content: "\e913";
  font-family: "icomoon";
  position: absolute;
  top: 50%;
  right: -5px;
  color: #808080;
  font-size: 14px;
  transform: translateY(-50%);
}
.hasdropdown .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #191919;
  padding: 10px 12px;
  transform: perspective(1px) scale(0.75);
  transform-origin: 50% 0;
  border-radius: 3px;
  box-shadow: 0 0 1px #777, 0 6px 6px rgba(0, 0, 0, 0.2392156863);
  transition: all 0.2s linear;
  min-width: 88px;
  opacity: 0;
  z-index: -1;
}
.hasdropdown .submenu li {
  font-size: 12px;
  color: #ffe8ec;
  font-weight: 400;
  padding: 8px;
  transition: all 0.2s linear;
  white-space: nowrap;
  border-radius: 3px;
}
.hasdropdown .submenu li:hover {
  background: #222222;
}
.hasdropdown:hover .submenu {
  transform: perspective(1px) scale(1);
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.list-one {
  height: 36px;
  display: flex;
  justify-content: space-between;
  border-bottom: 0;
}
.list-one .tab__item {
  width: 44%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #222222;
  border-radius: 6px;
  height: 100%;
  position: relative;
}
.list-one .tab__item::before {
  content: none;
}
.list-one .tab__item::after {
  content: "";
  position: absolute;
  right: -20px;
  left: unset;
  height: 100%;
  top: 0;
  background: #222222;
  border-radius: 0 7px 5px 0;
  transition: all 0.2s linear;
  width: 36px;
  transform: skew(30deg);
}
.list-one .tab__item.red::after {
  right: unset;
  left: -20px;
  border-radius: 5px 0 0 7px;
  background: #222222;
  transform: skew(-30deg);
}
.list-one .tab__item.is--active.green {
  background: #20ac95;
}
.list-one .tab__item.is--active.green::after {
  background: #20ac95;
  transform: skew(-30deg);
}
.list-one .tab__item.is--active.red {
  background: #e2464a;
}
.list-one .tab__item.is--active.red::after {
  background: #e2464a;
  transform: skew(30deg);
}

.AZ-page-title {
  font-size: 14px;
  color: #fff;
  font-weight: 400;
}

.AZ-page-text {
  font-size: 12px;
  color: #838ea5;
  font-weight: 400;
}

.modal-wrapper .modal-content {
  border-radius: 12px;
  padding: 16px 24px 24px;
  background-color: #191919;
  box-shadow: 0 0 1px #747474, 0 24px 24px -6px rgba(0, 0, 0, 0.6392156863);
}
.modal-wrapper .modal-title {
  font-size: 16px;
  color: #fff;
  font-weight: 400;
}
.modal-wrapper .modal-close {
  font-size: 18px;
  color: white;
}

.radio .radio__toggle {
  position: relative;
  width: 39px;
  height: 19px;
  margin: 0;
  vertical-align: top;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: all 0.3s cubic-bezier(0.2, 0.85, 0.32, 1.2);
  box-sizing: border-box;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  background: #222222;
}
.radio .radio__toggle::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 11px;
  height: 11px;
  background-color: #ffffff;
  border-radius: 50%;
  transform: translate(calc(100% - 7px), -50%);
  transition: all 0.5s cubic-bezier(0.2, 0.85, 0.32, 1.2);
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
}
.radio .radio__toggle:checked {
  background: #1c39bb;
}
.radio .radio__toggle:checked::after {
  left: 50%;
  transform: translate(calc(100% - 7px), -50%);
}

.AZ-hero-section {
  padding: 50px 0;
  position: relative;
  overflow-x: hidden;
  margin-bottom: 100px;
  background: #000;
}
.AZ-hero-section .hero-video {
  width: 240px;
  border: 1px solid #fff;
  border-radius: 30px;
  min-height: 520px;
  overflow: hidden;
}
.AZ-hero-section .hero-social_text {
  font-size: 14px;
  color: #666;
  font-weight: 400;
}
.AZ-hero-section .hero-social a {
  font-size: 16px;
  color: #fff;
  background-color: #121212;
  border-radius: 6px;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s linear;
}
.AZ-hero-section .hero-social a:hover {
  opacity: 0.8;
}
.AZ-hero-section .hero-title {
  font-size: 60px;
  color: #fff;
  font-weight: 700;
}
.AZ-hero-section .hero-text {
  font-size: 24px;
  color: #1c39bb;
  font-weight: 500;
}
.AZ-hero-section .hero-desc {
  font-size: 14px;
  color: #fff;
  font-weight: 400;
}
.AZ-hero-section .hero-desc span {
  color: #1c39bb;
}
.AZ-hero-section .join-form {
  margin-top: 40px;
}

.join-form input {
  font-size: 16px;
  color: #e6e6e6;
  font-weight: 400;
  height: 50px;
  background: #1a1c1e;
  border: 0;
  padding: 10px;
  border-radius: 6px;
  flex-grow: 1;
  max-width: 300px;
  width: 300px;
  transition: all 0.2s linear;
  height: 56px;
}
.join-form input::-moz-placeholder {
  color: #e6e6e6;
}
.join-form input::placeholder {
  color: #e6e6e6;
}
.join-form input:focus {
  border: 1px solid rgb(185, 246, 65);
}

.AZ-products-section {
  margin: 0 20px 80px;
}
.AZ-products-section .productsSwiper .swiper-slide {
  width: 460px;
}
.AZ-products-section .productsSwiper:hover .swiper-button-prev,
.AZ-products-section .productsSwiper:hover .swiper-button-next {
  opacity: 1;
}
.AZ-products-section .swiper-button-prev,
.AZ-products-section .swiper-button-next {
  opacity: 0;
  transition: all 0.2s linear;
}
.AZ-products-section .products-box {
  border-radius: 20px 20px 0;
  padding: 80px 0 105px;
  background: #000;
  background-image: url("../img/shape.svg");
  background-position: right bottom;
  background-size: 320px;
  background-repeat: no-repeat;
}
.AZ-products-section .products-title {
  font-size: 40px;
  color: #ffffff;
  font-weight: 500;
}
.AZ-products-section .counter_num {
  font-size: 32px;
  color: #ffffff;
  font-weight: 400;
}
.AZ-products-section .counter_title {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}
.AZ-products-section .line {
  margin: 80px 0 100px;
  width: 100%;
  height: 1px;
  background: hsla(0, 0%, 100%, 0.1);
}
.AZ-products-section .features-box_img {
  width: 90px;
  margin-bottom: 40px;
}
.AZ-products-section .features-box_title {
  font-size: 42px;
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 16px;
}
.AZ-products-section .features-box_text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5019607843);
  font-weight: 400;
  margin-bottom: 40px;
}
.AZ-products-section .features-box_text span {
  color: #fff;
}
.AZ-products-section .features-box .learn-more-link {
  font-size: 16px;
  color: white;
  font-weight: 500;
  transition: all 0.2s linear;
}
.AZ-products-section .features-box .learn-more-link span {
  font-size: 22px;
}
.AZ-products-section .features-box .learn-more-link:hover {
  color: #1c39bb;
}

.AZ-product-box {
  width: 460px;
  padding: 22px;
  background: #0a0b0d;
  display: block;
  border: 1px solid #141519;
  border-radius: 22px;
}
.AZ-product-box .profile-img {
  width: 34px;
  border-radius: 50%;
}
.AZ-product-box .profile-img::after {
  padding-bottom: 100%;
}
.AZ-product-box .username {
  font-size: 20px;
  color: white;
  font-weight: 500;
}
.AZ-product-box .value {
  font-size: 30px;
  color: #27ad75;
  font-weight: 400;
  margin-bottom: 10px;
}
.AZ-product-box .label {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.7019607843);
  font-weight: 400;
}

.swiper-button-prev,
.swiper-button-next {
  width: 48px;
  height: 48px;
  background: white;
  border-radius: 50%;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 16px;
  color: #000;
  font-weight: 700;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0 !important;
}

.AZ-section-title {
  font-size: 54px;
  color: #ffffff;
  font-weight: 700;
}

.AZ-section-text {
  font-size: 28px;
  color: rgba(255, 255, 255, 0.7019607843);
  font-weight: 400;
}

.AZ-footer .footer-link {
  font-size: 14px;
  color: #fff;
  font-weight: 400;
  transition: all 0.2s linear;
  padding: 8px 0;
}
.AZ-footer .footer-link:hover {
  color: #1c39bb;
}
.AZ-footer .footer-title {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 20px;
}
.AZ-footer .footer-text {
  font-size: 12px;
  color: #fff;
  font-weight: 400;
}
.AZ-footer .footer-copyright {
  font-size: 12px;
  color: #fff;
  font-weight: 400;
  padding: 24px 0;
  border-top: 1px solid #292929;
}
.AZ-footer .footer-wrapper {
  padding: 70px 0;
}
.AZ-footer .footer-brand {
  margin-bottom: 24px;
}
.AZ-footer .footer-brand svg {
  width: 106px;
}
.AZ-footer .AZ-social {
  margin-top: 20px;
}
.AZ-footer .AZ-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #767676;
  font-size: 18px;
  transition: all 0.2s linear;
}
.AZ-footer .AZ-social a:hover {
  color: #1c39bb;
}

.global-partner-wrap {
  padding: 50px 0;
}
.global-partner-wrap.light {
  display: none;
}

.customerSwiper .swiper-slide {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.customerSwiper .img-carosuel img {
  max-height: 26px;
  height: 26px;
  width: 200px;
}

.AZ-reviews-section {
  padding-bottom: 150px;
  padding-top: 150px;
}
.AZ-reviews-section .swiper-slide {
  padding-top: 100px;
}

.AZ-review-card .card-inner {
  border: 1px solid #292929;
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.2s linear;
}
.AZ-review-card .review-card_img {
  width: 100%;
}
.AZ-review-card .review-card_img::after {
  padding-bottom: 50%;
}
.AZ-review-card .review-card_body {
  padding: 20px;
}
.AZ-review-card .review-card_footer {
  padding: 15px;
  position: relative;
}
.AZ-review-card .review-card_footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: #1c39bb;
  transition: all 0.2s linear;
  z-index: -1;
}
.AZ-review-card .review-card_text {
  font-size: 16px;
  color: #999;
  font-weight: 400;
}
.AZ-review-card .review-card_link {
  font-size: 14px;
  color: #999;
  font-weight: 400;
  transition: all 0.2s linear;
}
.AZ-review-card .review-card_icon {
  font-size: 24px;
  transition: all 0.2s linear;
  color: #999;
}
.AZ-review-card .username {
  font-size: 24px;
  color: #fff;
  font-weight: 500;
}
.AZ-review-card .profile-img {
  width: 64px;
  border-radius: 50%;
}
.AZ-review-card .profile-img::after {
  padding-bottom: 100%;
}
.AZ-review-card:hover .card-inner {
  transform: translateY(-20px);
}
.AZ-review-card:hover .review-card_footer::after {
  height: 100%;
}
.AZ-review-card:hover .review-card_link {
  color: #fff;
}
.AZ-review-card:hover .review-card_icon {
  transform: rotate(-45deg);
}

.AZ-journey-section {
  padding: 150px 0;
  /* margin-bottom: 150px; */
  background: #0d0d0d;
}
.AZ-journey-section .journey-wrapper {
  border-radius: 8px;
  border: 1px solid #292929;
}
.AZ-journey-section .tabs-content img {
  width: 70%;
}
.AZ-journey-section .tabs-list {
  width: 50%;
  min-width: 600px;
  border-left: 1px solid #292929;
}
.AZ-journey-section li:last-child .journey_link {
  border-bottom: 0;
}
.AZ-journey-section .journey_link {
  font-size: 24px;
  color: #fff;
  font-weight: 400;
  padding: 60px;
  border-bottom: 1px solid #292929;
  transition: all 0.2s linear;
}
.AZ-journey-section .journey_link span {
  font-size: 60px;
  color: #1c39bb;
}
.AZ-journey-section .journey_link_img {
  width: 80px;
  border-radius: 50%;
  background: #000;
  transition: all 0.2s linear;
}
.AZ-journey-section .journey_link_img::after {
  padding-bottom: 100%;
}
.AZ-journey-section .journey_link_img img {
  max-height: 80%;
  max-width: 80%;
}
.AZ-journey-section .active .journey_link {
  color: #1c39bb;
}
.AZ-journey-section .active .journey_link_img {
  background: #1c39bb;
}

.AZ-contests-section {
  margin-bottom: 180px;
}
.AZ-contests-section .swiper-pagination-bullet {
  background: #7a7a7a;
  width: 4px;
  height: 2px;
  border-radius: 1rem;
  opacity: 1;
}
.AZ-contests-section .swiper-pagination-bullet-active {
  background: #ffffff;
  width: 10px;
}
.AZ-contests-section .contests-img {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #141519;
  transition: all 0.2s linear;
}
.AZ-contests-section .contests-img::after {
  padding-bottom: 50%;
}
.AZ-contests-section .contests-title {
  font-size: 14px;
  color: #fff;
  font-weight: 400;
  transition: all 0.2s linear;
}
.AZ-contests-section .contests-title:hover {
  color: rgba(255, 255, 255, 0.7019607843);
}

.more-btn span {
  font-size: 18px;
  color: #fff;
}
.more-btn .text {
  font-size: 14px;
  color: #fff;
  font-weight: 400;
}
.more-btn:hover .text {
  color: #1c39bb;
}

.AZ-tradingOpportunity-section {
  margin-bottom: 180px;
}
.AZ-tradingOpportunity-section .tab .tab__list {
  border-bottom: 0;
  margin-bottom: 40px;
  gap: 20px;
}
.AZ-tradingOpportunity-section .tab .tab__item {
  font-size: 24px;
  color: #686868;
  font-weight: 400;
  background: transparent;
}
.AZ-tradingOpportunity-section .tab .tab__item::before {
  content: none;
}
.AZ-tradingOpportunity-section .tab .is--active {
  color: #fff;
  font-weight: 600;
}
.AZ-tradingOpportunity-section .tab .tab__content-item {
  background: transparent;
}
.AZ-tradingOpportunity-section .tradingOpportunity_list li {
  padding: 8px 0;
}
.AZ-tradingOpportunity-section .tradingOpportunity_link {
  font-size: 16px;
  color: #ffffff;
  font-weight: 400;
}
.AZ-tradingOpportunity-section .tradingOpportunity_link:hover {
  text-decoration: underline;
}

.AZ-portfolio-section {
  padding: 150px 0 135px;
  background: #0d0d0d;
  margin-bottom: 150px;
}
.AZ-portfolio-section .portfolio-carousels {
  position: relative;
}
.AZ-portfolio-section .portfolio-carousels::before, .AZ-portfolio-section .portfolio-carousels::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100px;
  height: 100%;
  background: linear-gradient(to right, #0d0d0d, rgba(0, 0, 0, 0.0745098039));
  z-index: 10;
}
.AZ-portfolio-section .portfolio-carousels::before {
  left: unset;
  right: 0;
  background: linear-gradient(to left, #0d0d0d, rgba(0, 0, 0, 0.0745098039));
}
.AZ-portfolio-section .swiper-slide {
  width: auto;
}
.AZ-portfolio-section .portfolio_link {
  font-size: 24px;
  color: #fff;
  font-weight: 400;
  transition: all 0.2s linear;
  padding: 10px 20px 10px 10px;
  border-radius: 40px;
  border: 1px solid #999;
}
.AZ-portfolio-section .portfolio_link .portfolio-img {
  width: 40px;
  border-radius: 50%;
}
.AZ-portfolio-section .portfolio_link .portfolio-img::after {
  padding-bottom: 100%;
}
.AZ-portfolio-section .portfolio_link:hover {
  background: #1c39bb;
  border-color: #1c39bb;
  color: #fff;
}

.AZ-using-section {
  margin-bottom: 130px;
}
.AZ-using-section .swiper-slide {
  padding-top: 100px;
}

.AZ-features-section {
  padding-bottom: 180px;
}
.AZ-features-section .features-box {
  padding: 90px 35px 50px;
  border-radius: 18px;
  transition: all 0.2s linear;
  height: 100%;
}
.AZ-features-section .features-box .features-img {
  width: 113px;
  margin-bottom: 40px;
}
.AZ-features-section .features-box .features-img img {
  max-height: 100%;
  max-width: 100%;
}
.AZ-features-section .features-box .features-title {
  font-size: 24px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 20px;
  transition: all 0.2s linear;
}
.AZ-features-section .features-box .features-text {
  font-size: 16px;
  color: #999;
  font-weight: 400;
  transition: all 0.2s linear;
}
.AZ-features-section .features-box:hover {
  transform: translateY(-60px);
  background: #1c39bb;
}
.AZ-features-section .features-box:hover .features-text,
.AZ-features-section .features-box:hover .features-title {
  color: #fff !important;
}

.mb-150 {
  margin-bottom: 150px;
}

.mb-100 {
  margin-bottom: 100px;
}

.AZ-step-section {
  margin-bottom: 80px;
}
.AZ-step-section .container {
  border-bottom: 1px solid #141519;
  padding-bottom: 80px;
}
.AZ-step-section .step-link {
  font-size: 22px;
  color: #ffffff;
  font-weight: 500;
  background: #141519;
  padding: 32px 24px;
  margin-bottom: 24px;
  border-radius: 20px;
}

.AZ-events-section {
  margin-bottom: 80px;
}
.AZ-events-section .container {
  border-bottom: 1px solid #141519;
  padding-bottom: 80px;
}
.AZ-events-section .events-img {
  width: 100%;
  border-radius: 10px;
}
.AZ-events-section .events-img::after {
  padding-bottom: 110%;
}
.AZ-events-section .events-img .overlay {
  padding: 20px;
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  min-height: 40%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.4));
  display: flex;
  align-items: flex-end;
}
.AZ-events-section .events-img .overlay.top {
  bottom: unset;
  top: 0;
}
.AZ-events-section .events-img .overlay.bg {
  background: #000;
}
.AZ-events-section .events-img img {
  transition: all 0.2s linear;
}
.AZ-events-section .events-img:hover img {
  transform: scale(1.1);
}
.AZ-events-section .events-img .events-text {
  font-size: 26px;
  color: #ffffff;
  font-weight: 500;
}

.AZ-partners-section {
  margin-bottom: 80px;
}

.AZ-app-section {
  background: #1c39bb;
  padding: 75px 0;
}
.AZ-app-section .download-link {
  font-size: 12px;
  color: #fff;
  font-weight: 400;
  height: 48px;
  padding: 0 12px;
  border: 1px solid #fff;
  border-radius: 6px;
  transition: all 0.2s linear;
}
.AZ-app-section .download-link span {
  font-size: 18px;
}
.AZ-app-section .qr-box {
  background-color: #fff;
  border: 1px solid #111;
  border-radius: 8px;
  width: 110px;
  height: 110px;
  padding: 10px;
}
.AZ-app-section .qr-box img {
  width: 100%;
}
.AZ-app-section .AZ-section-title {
  color: #fff;
  line-height: 75px;
  margin-bottom: 48px;
}

.table-wrapper {
  overflow-x: auto;
}

.AZ-table {
  width: 100%;
}
.AZ-table thead tr {
  position: relative;
}
.AZ-table thead th {
  font-size: 14px;
  color: #666;
  font-weight: 700;
  padding: 10px;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  height: 80px;
}
.AZ-table thead th:last-child {
  text-align: right;
}
.AZ-table td,
.AZ-table th {
  border: none;
  text-align: left;
  vertical-align: middle;
}
.AZ-table tbody tr {
  cursor: pointer;
}
.AZ-table tbody tr:hover td {
  background: #19191a;
}
.AZ-table tbody tr:hover td:first-child {
  border-radius: 10px 0 0 10px;
}
.AZ-table tbody tr:hover td:last-child {
  border-radius: 0 10px 10px 0;
}
.AZ-table tbody tr:hover .view-btn {
  /* color: #131f00; */
  color: #fff;
  background: #1c39bb;
}
.AZ-table tbody td {
  padding: 15px;
  transition: all 0.2s linear;
}
.AZ-table tbody td p,
.AZ-table tbody td span {
  font-size: 14px;
  color: #fff;
  font-weight: 400;
}
.AZ-table .view-btn {
  font-size: 14px;
  font-size: 700;
  color: #fff;
  padding: 0 12px;
  height: 40px;
  background: #19191a;
  border-radius: 8px;
}
.AZ-table .view-btn:hover {
  /* color: #131f00; */
  color: #fff;
  background: #1c39bb;
}
.AZ-table .change {
  color: #e2464a !important;
}
.AZ-table .change-positive {
  color: #20ac95 !important;
}
.AZ-table .img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.AZ-table .gray {
  font-size: 12px;
  color: #999;
}

.AZ-partners-section .partners-img {
  width: 100%;
  border-radius: 10px;
  margin-top: 40px;
}
.AZ-partners-section .partners-img::after {
  padding-bottom: 50%;
}

.copy-link .copy-text,
.copy-link .count {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.7019607843);
  font-weight: 400;
}
.copy-link .count {
  color: #fff;
}
.copy-link .copy-btn {
  padding: 8px 16px;
  background: hsla(0, 0%, 100%, 0.1);
  border-radius: 22px;
  font-size: 20px;
  font-weight: 400;
  color: #fff;
}
.copy-link .copy {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  transition: all 0.1s ease;
}
.copy-link .tooltip {
  position: absolute;
  top: 30px;
  left: -30px;
  background: #1c39bb;
  padding: 10px 15px;
  display: flex;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  border-radius: 4px;
  letter-spacing: 1px;
  opacity: 0;
}
.copy-link .tooltip.appear {
  animation: appear 1s ease;
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  20% {
    transform: translateY(10px);
    opacity: 1;
  }
  80% {
    transform: translateY(0px);
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.nav-bottom {
  width: 100%;
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  transition: all 0.2s linear;
  z-index: 100;
}
.nav-bottom.nav-up {
  bottom: -85px;
  transform: scale(0.8);
}
.nav-bottom .nav-bottom_menu {
  width: 100%;
  height: 65px;
  background: #121212;
  transition: all 0.2s linear;
  box-shadow: 0 -6px 10px rgba(0, 0, 0, 0.1019607843);
  position: relative;
}
.nav-bottom .nav-bottom_menu::after {
  content: "";
  position: absolute;
  width: 56px;
  height: 30px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  border-radius: 0 0 10rem 10rem;
}
.nav-bottom .icon-nav {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #121212;
  margin-top: -33px;
  z-index: 1;
}
.nav-bottom .icon-nav svg {
  width: 95%;
}
.nav-bottom .nav-bottom-link {
  font-size: 12px;
  color: #666;
  font-weight: 400;
  position: relative;
  width: 20%;
  transition: all 0.2s linear;
  padding: 10px 0;
}
.nav-bottom .nav-bottom-link span {
  font-size: 20px;
}
.nav-bottom .is-active {
  color: #fff !important;
}

@media screen and (max-width: 1200px) {
  .AZ-navbar .nav-link {
    padding: 8px !important;
  }
  .AZ-section-title {
    font-size: 28px;
  }
  .AZ-section-text {
    font-size: 24px;
  }
}
@media screen and (max-width: 991px) {
  .w-md-100 {
    width: 100%;
  }
  .AZ-section-title {
    font-size: 24px;
  }
  .AZ-navbar .navbar-arrow {
    display: none;
  }
  .AZ-navbar .navbar {
    padding: 10px 0;
    height: 60px;
  }
  .AZ-navbar .menu {
    min-width: 100%;
    width: 100%;
  }
  .AZ-navbar .sidebar {
    position: absolute;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 100%;
    background: #000;
    padding: 20px;
    z-index: 100;
    transition: all 0.2s linear;
  }
  .AZ-navbar .sidebar.show {
    right: 0;
  }
  .AZ-navbar .close-sidebar {
    font-size: 24px;
    color: #fff;
  }
  #accordian > ul > li > ul,
  #accordian > ul > li > ul > li > ul,
  #accordian > ul > li > ul > li > ul > li > ul,
  #accordian > ul > li > ul > li > ul > li > ul > li > ul {
    position: unset;
    background: transparent;
    border-radius: 0;
    min-width: 100%;
    width: 100%;
    border: 0;
    padding: 0;
  }
  #accordian > ul > li > ul li a,
  #accordian > ul > li > ul > li > ul li a,
  #accordian > ul > li > ul > li > ul > li > ul li a,
  #accordian > ul > li > ul > li > ul > li > ul > li > ul li a {
    color: #999;
  }
  .tab__item {
    font-size: 12px;
  }
  .AZ-footer {
    display: none;
  }
  .AZ-app-section {
    padding: 46px 0 34px;
  }
  .AZ-app-section .app-img {
    width: 280px;
  }
  .AZ-app-section .AZ-section-title {
    line-height: unset;
  }
  .AZ-reviews-section {
    margin-top: 150px;
    padding-bottom: 50px;
  }
  .AZ-reviews-section .swiper-slide {
    padding-top: 0;
  }
  .AZ-review-card .profile-img {
    width: 36px;
  }
  .AZ-review-card:hover .card-inner {
    transform: unset;
  }
  .AZ-review-card .username {
    font-size: 16px;
  }
  .AZ-review-card .review-card_text {
    font-size: 14px;
  }
  .AZ-journey-section {
    padding: 0;
    margin-bottom: 50px;
    background: transparent;
  }
  .AZ-journey-section .journey-wrapper {
    border-radius: unset;
    border: 0;
  }
  .AZ-journey-section .journey_link {
    font-size: 16px;
    padding: 16px;
    border-bottom: 0;
    background: #19191a;
    border-radius: 10px;
  }
  .AZ-journey-section .journey_link span {
    font-size: 24px;
    color: #999;
  }
  .AZ-journey-section .tabs-content {
    display: none;
  }
  .AZ-journey-section .tabs-list {
    width: 100%;
    min-width: unset;
    display: flex;
    flex-direction: column;
    gap: 24px;
    border-left: 0;
  }
  .AZ-journey-section .journey_link_img {
    width: 48px;
  }
  .AZ-journey-section .active .journey_link_img {
    background: #000;
  }
  .AZ-journey-section .active .journey_link {
    color: #ffffff;
  }
  .mb-100 {
    margin-bottom: 24px;
  }
  .mb-150 {
    margin-bottom: 24px;
  }
  .AZ-features-section {
    padding-bottom: 50px;
  }
  .AZ-features-section .features-box {
    padding: 16px;
    border-radius: 10px;
  }
  .AZ-features-section .features-box:hover {
    transform: unset;
  }
  .AZ-features-section .features-box .features-img {
    min-width: 64px;
    width: 64px;
    height: 64px;
    margin-bottom: 0;
  }
  .AZ-features-section .features-box .features-img img {
    max-height: 100%;
    max-width: 100%;
  }
  .AZ-features-section .features-box .features-title {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .AZ-portfolio-section {
    padding: 0;
    background: transparent;
    margin-bottom: 24px;
    display: none;
  }
  .AZ-using-section {
    margin-bottom: 50px;
  }
  .AZ-using-section .swiper-slide {
    padding-top: 0;
  }
  .AZ-tradingOpportunity-section {
    margin-bottom: 50px;
  }
  .AZ-tradingOpportunity-section .tab .tab__list {
    margin-bottom: 0;
    overflow-x: auto;
  }
  .AZ-tradingOpportunity-section .tab .tab__list .is--active {
    border-bottom: 2px solid #fff;
  }
  .AZ-tradingOpportunity-section .tab .tab__item {
    font-size: 20px;
    padding: 8px 0;
    white-space: nowrap;
  }
  .AZ-table thead {
    display: none;
  }
  .AZ-table tbody td {
    padding: 15px 5px;
  }
  .AZ-table tbody td:nth-child(5), .AZ-table tbody td:nth-child(4), .AZ-table tbody td:nth-child(7), .AZ-table tbody td:nth-child(6) {
    display: none;
  }
  .AZ-table tbody td:nth-child(1) {
    width: 100%;
  }
  .AZ-table .gray {
    display: none;
  }
  .AZ-table .change {
    /* background: #f14b3f; */
    color: #fff;
    padding: 3px 10px;
    border-radius: 6px;
  }
  .AZ-contests-section {
    margin-bottom: 30px;
  }
  .AZ-contests-section .contestSwiper {
    border-radius: 12px;
    border: 1px solid #292929;
  }
  .AZ-contests-section .contests-img::after {
    padding-bottom: 60%;
  }
  .AZ-contests-section .box-link {
    font-size: 14px;
    color: #fff;
    font-weight: 400;
    border-radius: 12px;
    border: 1px solid #292929;
    padding: 0 10px;
    flex-grow: 1;
  }
  .AZ-contests-section .box-link img {
    width: 40px;
  }
  .AZ-contests-section .box-link p {
    font-size: 14px;
    color: #fff;
    font-weight: 400;
  }
  .AZ-hero-section {
    padding: 30px 0;
    margin-bottom: 0;
  }
  .AZ-hero-section .hero-title {
    font-size: 25px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 12px;
  }
  .AZ-hero-section .hero-text {
    font-size: 12px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 22px;
  }
  .AZ-hero-section .AZ-primary-btn {
    height: 40px;
    width: 80%;
    border-radius: 40px;
  }
  .facilities-box img {
    width: 30px;
  }
  .facilities-box .facilities-text {
    font-size: 12px;
    color: #999;
    font-weight: 400;
  }
  .AZ-primary-btn,
  .AZ-secondary-btn {
    font-size: 14px;
    height: 50px;
  }
}
#change_mode.dark {
  background: #ffffff;
}
#change_mode.dark .toggle-mood label::before {
  background: transparent;
}
#change_mode.dark .toggle-mood label:after {
  background: #fff;
  color: #000;
}
#change_mode.dark .AZ-navbar .download-dropdown .dropdown-menu {
  background: #fff;
}
#change_mode.dark .AZ-navbar .download-dropdown .dropdown-menu .dropdown-link p {
  color: #111;
}
#change_mode.dark .AZ-navbar .download-dropdown .dropdown-menu .qr-code .text {
  color: #111;
}
#change_mode.dark #accordian > ul > li > ul,
#change_mode.dark #accordian > ul > li > ul > li > ul,
#change_mode.dark #accordian > ul > li > ul > li > ul > li > ul,
#change_mode.dark #accordian > ul > li > ul > li > ul > li > ul > li > ul {
  background: #fff;
  border: 1px solid #ebebeb;
}
#change_mode.dark #accordian > ul > li > ul li a,
#change_mode.dark #accordian > ul > li > ul > li > ul li a,
#change_mode.dark #accordian > ul > li > ul > li > ul > li > ul li a,
#change_mode.dark #accordian > ul > li > ul > li > ul > li > ul > li > ul li a {
  color: #111;
}
#change_mode.dark #accordian > ul > li > ul li a:hover,
#change_mode.dark #accordian > ul > li > ul > li > ul li a:hover,
#change_mode.dark #accordian > ul > li > ul > li > ul > li > ul li a:hover,
#change_mode.dark #accordian > ul > li > ul > li > ul > li > ul > li > ul li a:hover {
  background: #f1f1f1;
}
#change_mode.dark .AZ-contests-section .contests-title {
  color: #000;
}
#change_mode.dark .AZ-contests-section .box-link {
  border: 1px solid #ebebeb;
  color: #111;
}
#change_mode.dark .AZ-contests-section p {
  color: #111;
}
#change_mode.dark .more-btn span {
  color: #000;
}
#change_mode.dark .AZ-section-title {
  color: #000;
}
#change_mode.dark .AZ-section-text {
  color: rgba(0, 0, 0, 0.4);
}
#change_mode.dark .AZ-tradingOpportunity-section .tab .tab__item {
  color: #9b9b9b;
}
#change_mode.dark .AZ-tradingOpportunity-section .tab .tab__content-item {
  background: transparent;
}
#change_mode.dark .AZ-table tbody td p,
#change_mode.dark .AZ-table tbody td span {
  color: #000;
}
#change_mode.dark .AZ-table tbody td:last-child span {
  color: #fff;
}
#change_mode.dark .AZ-table tbody tr {
  border-bottom: 1px solid #f4f5f6;
}
#change_mode.dark .AZ-table tbody tr:hover td {
  background: #f4f5f6;
}
#change_mode.dark .AZ-table thead th {
  color: rgba(0, 0, 0, 0.7019607843);
  border-bottom: 1px solid #f4f5f6;
}
#change_mode.dark .AZ-products-section .AZ-section-title {
  color: #fff;
}
#change_mode.dark .AZ-products-section .products-box {
  background-image: url("../img/shape-light.svg");
}
#change_mode.dark .AZ-step-section .container {
  border-bottom: 1px solid #f4f5f6;
}
#change_mode.dark .AZ-step-section .step-link {
  color: #000;
  background: #f4f5f6;
}
#change_mode.dark .AZ-secure-section .container {
  border-bottom: 1px solid #f4f5f6;
}
#change_mode.dark .AZ-events-section .container {
  border-bottom: 1px solid #f4f5f6;
}
#change_mode.dark .AZ-app-section .AZ-section-title {
  color: #fff;
}
#change_mode.dark .AZ-footer .footer-title {
  color: #111;
}
#change_mode.dark .AZ-footer .footer-link {
  color: #111;
}
#change_mode.dark .AZ-footer .footer-link:hover {
  color: #1c39bb;
}
#change_mode.dark .AZ-footer .footer-text {
  color: #111;
}
#change_mode.dark .AZ-footer .footer-copyright {
  color: rgba(0, 0, 0, 0.5);
  border-top: 1px solid #ebebeb;
}
#change_mode.dark .AZ-footer .footer-brand svg path {
  fill: #000;
}
#change_mode.dark .AZ-secure-section .secure-img {
  border: 1px solid #f4f5f6;
}
#change_mode.dark .AZ-secure-section .secure-img .light {
  display: block;
}
#change_mode.dark .AZ-secure-section .secure-img .dark {
  display: none;
}
#change_mode.dark .AZ-secure-section .secure-title {
  color: #000;
}
#change_mode.dark .AZ-secure-section .secure-text {
  color: rgba(0, 0, 0, 0.7);
}
#change_mode.dark .AZ-contests-section .swiper-pagination-bullet {
  background: rgba(0, 0, 0, 0.2);
}
#change_mode.dark .AZ-contests-section .swiper-pagination-bullet-active {
  background: #000;
}
#change_mode.dark .AZ-page-title {
  color: #000;
}
#change_mode.dark .AZ-main-page {
  background: #fff;
}
#change_mode.dark .AZ-main-page .avail-title {
  color: #000;
}
#change_mode.dark .AZ-main-page .assets-link {
  color: #000;
}
#change_mode.dark .tab__item.is--active {
  color: #000 !important;
}
#change_mode.dark .tab__item:before {
  background: #20ac95;
}
#change_mode.dark .AZ-box {
  background: #f4f5f6;
}
#change_mode.dark .AZ-review-card .review-card_text,
#change_mode.dark .AZ-review-card .review-card_link {
  color: #808080;
}
#change_mode.dark .AZ-review-card .card-inner {
  border: 1px solid #ebebeb;
}
#change_mode.dark .AZ-review-card .username {
  color: #000;
}
#change_mode.dark .AZ-portfolio-section {
  padding: 150px 0 135px;
  background: #fcfcfc;
}
#change_mode.dark .AZ-portfolio-section .portfolio-carousels::before,
#change_mode.dark .AZ-portfolio-section .portfolio-carousels::after {
  background: linear-gradient(to right, #fcfcfc, rgba(252, 252, 252, 0.1215686275));
}
#change_mode.dark .AZ-portfolio-section .portfolio-carousels::before {
  background: linear-gradient(to left, #fcfcfc, rgba(252, 252, 252, 0.1215686275));
}
#change_mode.dark .AZ-portfolio-section .portfolio_link {
  color: #111;
}
#change_mode.dark .AZ-portfolio-section .portfolio_link:hover {
  color: #fff;
}
#change_mode.dark .AZ-features-section .features-box .features-text {
  color: #808080;
}
#change_mode.dark .AZ-features-section .features-box .features-title {
  color: #111;
}
#change_mode.dark .AZ-journey-section {
  background: #fcfcfc;
}
#change_mode.dark .AZ-journey-section .journey-wrapper {
  border: 1px solid #ebebeb;
}
#change_mode.dark .AZ-journey-section .tabs-list {
  border-left: 1px solid #ebebeb;
}
#change_mode.dark .AZ-journey-section .journey_link {
  border-bottom: 1px solid #ebebeb;
  color: #111;
}
#change_mode.dark .AZ-journey-section li:last-child .journey_link {
  border-bottom: 0;
}
#change_mode.dark .AZ-app-section .AZ-section-title {
  color: #fff;
}
#change_mode.dark .nav-bottom .nav-bottom_menu {
  background: #fff;
}
#change_mode.dark .nav-bottom .nav-bottom_menu::after {
  background: #fff;
}
#change_mode.dark .nav-bottom .icon-nav {
  background: #f1f1f1;
}
#change_mode.dark .nav-bottom .nav-bottom-link {
  color: #c2c2c2;
}
#change_mode.dark .nav-bottom .is-active {
  color: #000 !important;
}
@media screen and (max-width: 991px) {
  #change_mode.dark .AZ-navbar .nav-link p {
    color: #fff;
  }
  #change_mode.dark .AZ-journey-section .journey-wrapper {
    border: 0;
  }
  #change_mode.dark .AZ-journey-section .tabs-list {
    border-left: 0;
  }
  #change_mode.dark .AZ-journey-section .journey_link {
    background: #f5f5f5;
  }
  #change_mode.dark .AZ-hero-section {
    background: transparent;
  }
}