@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Rubik:ital,wght@1,300..900&display=swap");

*,
::after,
::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  scroll-behavior: smooth;
}
:root {
  --body-bg: #0b0b0b;
  --cl-white: #fff;
  --cl-border: #31313b;
  --cl-description: #ebebeb;
  --theme-green: #00cc0a;
  --theme-blue: #0075ff;
  --conthrax: "conthrax" !important;
  --roboto-mono: "roboto-mono-reg" !important;
  --border-col: #2e2e2e;
  --text-col: #0b0b0b;
  --gray-border: #707070;
}
body {
  font-family: "Poppins", sans-serif;
  color: var(--cl-white);
  line-height: 1.8;
  background-color: var(--body-bg);
}
p {
  font-size: 14px;
}
@font-face {
  font-family: "annapolis";
  src: url("../fonts/annapolis.woff") format("woff");
}
@font-face {
  font-family: "conthrax";
  src: url("../fonts/Conthrax-SemiBold.woff") format("woff");
}
@font-face {
  font-family: "roboto-mono";
  src: url("../fonts/RobotoMono-Medium.woff") format("woff");
}
@font-face {
  font-family: "roboto-mono-reg";
  src: url("../fonts/RobotoMono-Regular.woff") format("woff");
}
@font-face {
  font-family: "roboto-mono-semi";
  src: url("../fonts/RobotoMono-SemiBold.woff") format("woff");
}

.blue {
  background-color: #131313db;
}
.status-heads {
  font-size: 16px;
}
li {
  list-style: none;
}
header {
  border-bottom: 1px solid #2e2e2e;
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  background: transparent;
  padding: 15px 30px 15px !important;
  background-color: #0b0b0b !important;
}
.border-none {
  border: unset !important;
}
header .header-row-main {
  justify-content: space-between;
  align-items: center;
  display: flex;
}
p {
  font-size: 14px;
  font-weight: 300;
  color: #737373;
  font-family: var(--roboto-mono) !important;
}
header .hamburger-icon {
  cursor: pointer;
  position: absolute;
  right: 0;
  z-index: 2;
  margin: 25px;
  display: none;
}
header .hamburger-icon .bar {
  transition: 0.4s;
  margin: 25px;
}
header .hamburger-icon .bar-1 {
  display: block;
  width: 25px;
  border-top: 2px solid var(--cl-white);
  padding-top: 5px;
  cursor: pointer;
  transition: 0.4s;
}
header .hamburger-icon .bar-2 {
  display: block;
  width: 20px;
  border-top: 2px solid var(--cl-white);
  padding-top: 5px;
  transition: 0.4s;
}
header .hamburger-icon .bar-3 {
  display: block;
  width: 14px;
  border-top: 2px solid var(--cl-white);
  padding-top: 5px;
  transition: 0.4s;
}
header .hamburger-icon .change .bar-1 {
  transform: rotate(-45deg) translate(-4px, 8px);
  width: 26px;
}
header .hamburger-icon .change .bar-2 {
  opacity: 1;
  transform: rotate(45deg) translate(1px, 1.5px);
  width: 26px;
}
header .hamburger-icon .change .bar-3 {
  transform: rotate(45deg) translate(-14px, -9.8px);
  display: none;
}
header .menu-items {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  justify-content: end;
  border-radius: 40px;
  position: relative;
}
header .menu-items li {
  list-style-type: none;
}
header .menu-items li a {
  text-decoration: none;
  padding: 0px 17px;
  font-weight: 400;
  font-size: 17px;
  color: var(--cl-white);
  cursor: pointer;
  align-items: center;
}
header .menu-items .menu-parent-list:hover a {
  color: #01ea0d;
}

header .menu-items .menu-parent-list:hover .toggle-arrow-white {
  filter: brightness(0) saturate(100%) invert(58%) sepia(20%) saturate(7120%)
    hue-rotate(88deg) brightness(118%) contrast(122%);
  transform: rotate(-90deg);
  transition: transform 0.5s;
}
.header-menus-list {
  display: flex;
  align-items: center;
  gap: 30px;
  font-family: "inter";
}
.menus-header {
  margin-top: 9px;
  color: #ebebeb;
  font-family: "inter";
}
a {
  text-decoration: none;
}
.toggle-arrow-green {
  display: none;
  transition: transform 0.5s;
}
.toggle-arrow-green,
.toggle-arrow-white {
  margin-left: 5px;
  transition: transform 0.5s;
}
header .menu-items li a:hover svg path {
  fill: #01ea0d;
}
.logo-content img {
  width: 170px;
  margin-top: 5px;
}
.media-links img {
  width: 28px;
  height: 23px;
}
.media-links {
  display: flex;
  justify-content: end;
  gap: 35px;
  align-items: center;
}
.media-links .button-header {
  font-weight: 500;
  font-size: 17px;
}
.media-links .button-header a {
  color: #000;
  background-color: #fff;
  padding: 10px 23px;
  font-weight: 600;
  font-size: 18px;
  display: flex;
  align-items: center;
}
.media-links .button-header a img {
  margin-left: 15px;
  width: 7px;
}
.privacy-belnet {
  width: 75%;
  margin: auto;
  font-size: 15px;
}
.banner-ai-video {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
tr {
  font-family: var(--roboto-mono);
  font-size: 14px;
}
.banner-ai-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
}
a {
  font-family: var(--roboto-mono);
}
.main-wrapper {
  background: #0b0b0b;
  margin-top: 60px;
}
.hero-section-main {
  background: url(../img/dotted-bg.png);
  display: flex;
  align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 30px 0px 60px;
  overflow: hidden;
  position: relative;
}
.btn-grp-fff {
  color: #0b0b0b;
  background-color: #fff;
  padding: 12px 30px;
  font-weight: 500;
  font-size: 18px;
  display: inline-block;
  min-width: 200px;
  text-align: center;
  margin: 45px 15px 0px;
  font-family: "roboto-mono";
}
.btn-grp-border {
  color: #fff;
  border: 1px solid #ebebeb;
  background-color: #0b0b0b;
  padding: 14px 31px;
  font-weight: 500;
  font-size: 18px;
  display: inline-block;
  min-width: 200px;
  text-align: center;
  margin: 20px 15px 0px;
  font-family: "roboto-mono";
}
.btn-grp-theme-white {
  color: #0b0b0b;
  border: 1px solid #0b0b0b;
  padding: 14px 31px;
  font-weight: 500;
  font-size: 18px;
  display: inline-block;
  min-width: 200px;
  text-align: center;
  margin: 20px 15px 0px;
  font-family: "roboto-mono";
}
.btn-theme-primary {
  color: #0b0b0b;
  border: 1px solid #0b0b0b;
  padding: 8px 25px;
  font-weight: 500;
  font-size: 14px;
  display: inline-block;
  min-width: 155px;
  text-align: center;
  margin: 20px 0px 0px;
  font-family: "roboto-mono";
}
.btn-grp-fff-primary {
  color: #0b0b0b;
  background-color: #fff;
  padding: 12px 25px;
  font-weight: 500;
  font-size: 16px;
  display: inline-block;
  text-align: center;
  margin: 20px 0px 0px;
  font-family: "roboto-mono";
  min-width: 290px;
}
.btn-grp-border-primary {
  color: #fff;
  border: 1px solid #ebebeb;
  background-color: #0b0b0b;
  padding: 12px 25px;
  font-weight: 500;
  font-size: 16px;
  display: inline-block;
  min-width: 290px;
  text-align: center;
  margin: 20px 0px 0px;
  font-family: "roboto-mono";
}
.whole-main-section {
  background-color: #0b0b0b;
}
.banner-section {
  margin-top: 50px;
  background: url(../img/Dotted_BG_with_black.png);
  background-repeat: no-repeat;
  background-size: 100% 102%;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.banner-sec-wrapper{
  position: relative;
  padding: 12rem 0px 13rem;

}
.glow-main {
  animation: zoomGlow 3.5s ease-in-out infinite;
}
@keyframes zoomGlow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}
video {
  backdrop-filter: blur(1px);
}
.banner-section .glow-main {
  position: absolute;
  right: 0;
  z-index: 0;
}
.h1-home {
  font-size: 55px;
  font-family: var(--conthrax);
  line-height: 1.3;
}
.min-title {
  font-size: 22px;
  margin: 20px 0;
}
.features img {
  width: 350px;
}
.social_icons_header{
  margin-top: 30px;
}
.counts-wrapper p {
  margin: 0;
  color: #808080;
  font-family: var(--roboto-mono);
  font-size: 17px;
}
.footer-main-section .footer-main .products {
  padding-bottom: 0;
}
.whole-footer {
  margin-top: 60px;
}
.footer-main-section {
  background: #1b1b1b;
  background: url("../img/Dotted_BG_with_black.png");
}
.footer-main {
  padding: 60px 70px 0px;
}
.footer-main-section .footer-main .products {
  color: rgb(182, 182, 196);
  text-align: left;
}
.footer-main-section .footer-main .products ul {
  padding: 0;
}
.footer-main-section .footer-main .products-new {
  padding-left: 0;
}
.footer-main-section .footer-main .products h4 {
  font-size: 18px;
  font-weight: 400;
  font-family: var(--roboto-mono);
  margin-bottom: 15px;
}
.footer-main h4 {
  color: #fff;
}
.footer-main-section .media {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.footer-main .copy-rights-main {
  text-align: center;
  font-family: "inter";
  font-size: 15px;
  font-weight: 300;
  text-transform: uppercase;
  display: inline-block;
  color: #8d8d8d;
  margin: 22px 0px 4px;
  width: 100%;
}
.footer-main-section .footer-main .dropzone-wallet .dropdown-desktop,
.footer-main-section .footer-main .dropzone-wallet .dropdown-mobile,
.footer-main-section .footer-main .dropzone-wallet .drp-mobile,
.footer-main-section .footer-main .dropzone-wallet .drp-desktop,
.footer-main-section .footer-main .dropzone-wallet .bel-drp-desktop {
  padding: 10px 15px;
  border-radius: 3px;
  display: none;
  border: 1px solid #343434;
}
.footer-main-section .footer-main .dropzone-wallet li {
  cursor: pointer;
}
.footer-main-section .footer-main .dropzone-wallet li a .fa-caret-up {
  display: none;
}
.footer-main-section .footer-main .products li a {
  color: #8d8d8d;
  text-decoration: none;
  font-size: 14px;
  font-weight: 300;
  user-select: none;
  font-family: var(--roboto-mono);
}
.footer-main-section .footer-main li a:hover {
  color: #fff;
}
.blur-pic {
  filter: blur(2px);
}
.letter {
  width: 20px;
}
.footer-main-section .footer-main .products li {
  list-style-type: none;
}
.footer-main-section .footer-main .email-support {
  padding-left: 35px;
}
.footer-main-section .footer-main .email-support h4 {
  font-size: 13px;
  font-weight: 500;
  color: #b6b6c4;
  padding-top: 20px;
}
.footer-main .email-support h5 {
  color: #9898b1;
  font-size: 17px;
  font-weight: 500;
}
.footer-main .email-support p {
  color: #9898b1;
  text-decoration: none;
  font-size: 13px;
  font-weight: 100;
}
.footer-main .email-support p span {
  color: #acacbd;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}
.footer-main .email-support .input-field {
  position: relative;
}
.footer-main .email-support input {
  border: 1px solid #14bd18;
  padding: 15px 20px;
  width: 100%;
  border-radius: 29px;
  font-weight: 100;
  background-color: #131319;
  color: #9898b1;
  outline: none;
  font-size: 13px;
}
.footer-main .email-support .input-field span {
  position: absolute;
  right: 7px;
  top: 5px;
}
.footer-main .email-support .input-field span img {
  border-radius: 31px;
  width: 44px;
}
.footer-main .email-support .media a img {
  width: 21px;
  opacity: 0.6;
}
.footer-main .email-support .media a i {
  width: 21px;
  color: slategrey;
  opacity: 0.8;
}
.footer-main .email-support .media a img:hover {
  opacity: 1;
}
.footer-main .email-support .media a i:hover {
  opacity: 1;
}
.footer-main .email-support .media {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
}
.footer-main .beldex-position {
  padding: 0px 75px;
}
.footer-main .beldex-position h6 img {
  width: 150px;
  height: 35px;
}
.footer-main .beldex-position h6 span {
  color: #0094ff;
}
.footer-main .beldex-position .price-nd-volume {
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  padding: 10px 0px;
  align-items: center;
}
.footer-main .beldex-position .price-nd-volume h5 {
  display: inline-block;
  color: white;
  margin: 0;
  font-size: 17px;
}

.footer-main .beldex-position .price-nd-volume span {
  color: red;
}
.footer-main .beldex-position h5 span {
  color: red;
  font-size: 11px;
  font-weight: 100;
}
.footer-main .beldex-position .inner-status {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
  margin: 13px 0 5px;
  align-items: center;
  justify-content: space-between;
  font-family: "Inter";
  font-size: 13px;
  font-weight: 300;
  border: 1px solid #343434;
  padding: 0px 20px;
}
.footer-main .beldex-position .inner-status p {
  flex: 0 0 35%;
  color: #8d8d8d;
  font-size: 13px;
  font-weight: 100;
  margin: 0 0 15px;
}
.footer-main .beldex-position .inner-status p:nth-child(2) {
  flex: 0 0 50%;
  text-align: end;
  font-size: 16px;
  margin: 0;
  font-weight: 400;
  padding: 13px 0px;
}
.footer-main .build-by {
  color: #808080;
  font-family: "Inter";
}
.footer-main .beldex-position .inner-status h5 {
  background-color: unset;
  border: none;
  padding: 0;
  font-size: 16px;
  margin-bottom: 4px;
  display: inline-block;
}
.footer-main .beldex-position .inner-status h5:nth-of-type(2) {
  flex: 0 0 50%;
  background-color: unset;
  border: none;
  padding: 0;
}
.footer-main .beldex-position .inner-status .inner-status-content::before {
  left: 0;
  top: 43%;
}
.color-ash {
  color: #8d8d8d;
}
.footer-main .beldex-position .inner-status .inner-status-content {
  display: flex;
  align-items: center;
  width: 50%;
  text-align: end;
  justify-content: end;
}

.footer-main .beldex-position .inner-status .inner-status-content h5 {
  margin-bottom: 0px;
}
.color-fff {
  color: #fff;
}
.footer-main .beldex-position .inner-status .inner-status-content p {
  flex: unset;
  font-size: 17px;
  font-weight: unset;
  margin: 0px;
}
.footer-main .beldex-position .inner-status .inner-status-content::before {
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #343434;
  content: "";
  left: 0;
  top: 48%;
}
.footer-main .beldex-position .down-part-header h6 a {
  text-decoration: none;
  font-size: 10px;
  color: #9898b1;
  font-family: "Inter";
  text-transform: uppercase;
  font-weight: 300;
}
.footer-main .beldex-position .down-part-header h6 a img {
  width: 20px;
  height: 20px;
  border-radius: 50px;
}
.footer-main .beldex-position .down-part-header h6 a span {
  color: #fff;
}
.end-beldex-text {
  width: 100%;
}
.copy-rights {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
}
.copy-rights p {
  margin: 0;
  font-weight: 100;
  font-size: 13px;
  opacity: 0.9;
}
.copy-rights a {
  color: #ffffff;
  text-decoration: none;
}
.belnet-hero-image {
  position: absolute;
  bottom: 0px;
  width: 40rem;
  right: 0px;
}
li {
  font-family: var(--roboto-mono);
}
.download-belnet {
  border: 1px solid #0b0b0b;
  background-color: #ebebeb;
  color: #0b0b0b;
  padding: 12px 40px;
  font-weight: 500;
  font-size: 16px;
  display: inline-block;
  min-width: 200px;
  text-align: center;
  margin: 20px 0px 0px;
  font-family: "roboto-mono";
  cursor: pointer;
}
.download-belnet img {
  vertical-align: middle;
  transform: rotate(180deg);
  height: 16px;
}
.privacy_policy_first_header h6 {
  font-size: 16px;
  font-family: var(--roboto-mono);
  margin: 20px 0;
}
.sub-sections {
  padding: 70px 0 50px;
}
.belnet-privacy p {
  font-size: 15px;
  padding: 0px 35px 0px 0px;
}
.belnet-privacy {
  padding: 120px 0px 80px;
}
.video-belnet {
  width: 100%;
  border: 1px solid var(--border-col);
  padding: 1px;
}
h2 {
  font-family: var(--conthrax);
  font-size: 30px;
  font-weight: 700 !important;
  text-transform: uppercase;
}
.wrapper-box {
  padding: 0px 10px;
}
.wrapper {
  padding: 10px 25px;
  margin-bottom: 15px;
  border: 1px solid #444444;
}
.accordion-1 {
  margin: 0 auto;
}
.toggle,
.content {
  font-family: "Poppins", sans-serif;
}
.toggle {
  width: 100%;
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 10px 0;
  color: #ffffffde !important;
  font-size: 14.4px !important;
  font-weight: 400;
  text-align: left;
  font-family: var(--roboto-mono);
}
.master-content {
  height: 0;
  overflow: hidden;
  transition: all 1s;
  position: relative;
  font-size: 14px;
  font-weight: 100;
}
h3 {
  font-size: 18px;
  font-family: var(--conthrax);
  text-transform: uppercase;
}
h2 {
  font-family: var(--conthrax);
  font-size: 30px;
  font-weight: 700 !important;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.faq-section h3 {
  color: #00d701;
  text-align: center;
  font-size: 33px;
  font-weight: 700;
}
.belnet-right {
  padding: 25px 10rem 25px 10rem;
}
.belnet-right .box {
  margin: 60px 0;
}
.bs-gutter {
  --bs-gutter-x: unset;
  --bs-gutter-y: unset;
}
.white-theme {
  background: #ebebeb;
  color: #0b0b0b;
}
.belnet-right h3 {
  font-size: 18px;
  font-family: var(--roboto-mono);
  text-transform: unset;
}
.features-belnet .inner-box {
  padding: 5%;
  position: relative;
  height: 100%;
}
.features-belnet .box {
  height: 100%;
}
.features-belnet .inner-box img {
  width: 60px;
}
.features-belnet .inner-box h3 {
  margin: 30px 0 20px;
}
.features-belnet .inner-box p {
  margin-block-end: 50px;
}
.features-belnet .button img {
  vertical-align: inherit;
  width: 9px;
  margin-left: 5px;
}
.features-belnet .button a {
  position: absolute;
  bottom: 0;
}
.features-belnet {
  padding-bottom: 7rem;
}
.rotate {
  transform: rotate(0deg) !important;
  transition: 0.2s;
}
.wrapper-box .icon {
  transition: 0.2s;
  width: 32px;
  transform: rotate(45deg);
}
.download-belnet-2 {
  color: #000;
  background-color: #fff;
  padding: 8px 10px;
  font-size: 17px;
  display: inline-block;
  min-width: 190px;
  text-align: center;
  font-family: var(--roboto-mono);
  margin-left: 70px;
}
.mt-90 {
  margin-top: 90px;
}
h4 {
  font-family: var(--conthrax);
}
h5 {
  font-family: var(--conthrax);
}
.belnet-table .table-content {
  width: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
}

.belnet-table .table-content h1 span {
  display: inline-block;
}
.belnet-table .table-content h1 span::after {
  border-bottom: 2px solid #29f88f;
  position: absolute;
  content: "";
  width: 70px;
  bottom: -10px;
  left: 0;
}
.table-content {
  position: relative;
}
.table-content table td {
  border: 0 !important;
  text-align: left;
  width: 150px;
}
.table-content table td:nth-child(1) {
  min-width: 235px;
}
.table-content table td ul {
  padding: 0;
  list-style: none;
  font-size: 14px;
  margin-bottom: 0;
}
.table-content table td ul li {
  padding: 0px 25px;
  margin: 20px 0px;
}
.table-content table td ul li p {
  font-size: 14px;
  color: #bbb;
}
.table-content table td .headings .inner-side li {
  text-align: left;
}
.table-content table td .inner-side {
  width: 85%;
  margin-left: 15px;
  border: 0.5px solid var(--border-col);
  min-height: 625px;
  padding: 0px;
}
.table-content table td .inner-side-head {
  width: 90%;
}
.table-content table td .inner-side li:nth-child(3) {
  min-height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.table-content table td .inner-side li {
  text-align: center;
  min-height: 45px;
}
.table-content table td .inner-side li .fa-check {
  color: #29f98f;
}
.table-content table td .inner-side li .fa-xmark {
  color: #f00;
}
.table_white {
  text-align: center;
  font-weight: 100;
  font-size: 14px;
  padding: 21px 0px;
  border-bottom: 0.5px solid var(--border-col);
  min-height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-col);
}
.fa-times-circle {
  color: #4b4b58;
}
.fa-check-circle {
  color: #c9c8cb;
}
.table_header {
  width: 100%;
  position: relative;
}
.belnet-privacy h3 {
  font-family: var(--roboto-mono);
  margin: 20px 0;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 920px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1450px;
  }
}
.error-page {
  padding-top: 6%;
}
.error-page p {
  text-align: center;
  margin-top: 70px;
}
.error-page p img {
  width: 50%;
}
.download_btn {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer_bg {
  display: flex;
  flex-direction: row;
  padding: 0;
  border-radius: 8px;
  justify-content: space-around;
  align-items: center;
}
.footer_mble_content {
  border: 1px solid var(--gray-border);
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  margin-left: 50px;
  padding: 20px;
}
.footer-main-header {
  padding: 55px 20px;
  border: 1px solid var(--gray-border);
  margin: 0 auto;
}
.download_mble_header {
  display: flex;
  align-items: center;
}
.download_desktop_header {
  display: flex;
  align-items: center;
}
.download_mble {
  border: 1px solid var(--gray-border);
  height: 61px;
  padding: 14px 17px 15px 17px;
  position: relative;
}
.download_desktop {
  border: 1px solid rgb(112, 112, 112);
  height: 56px;
  padding: 16px 14px;
  position: relative;
}
.download_mble::before {
  content: " ";
  border-bottom: 1px solid #707070;
  position: absolute;
  left: 53px;
  width: 51px;
  height: 17px;
}
.download_desktop::before {
  content: " ";
  border-bottom: 1px solid rgb(112, 112, 112);
  position: absolute;
  left: 54px;
  width: 51px;
  height: 10px;
}
.download_mble img {
  width: 18px;
}
.download_desktop img {
  width: 25px;
}
.footer_mble_content .m_hover {
  font-size: 16px;
  color: #00d200;
  font-weight: 600;
}
.footer_desktop_content {
  border: 1px solid #707070;
  width: 195px;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  margin-left: 50px;
  padding: 20px;
  align-items: baseline;
}
.footer_desktop_content .d_hover {
  font-size: 22px;
  color: #0094ff;
  font-weight: 600;
  text-align: right;
  padding-bottom: 7px;
}
.m_wallet {
  padding-top: 10px;
  padding: 10px 0px 0px;
  margin: 0;
}
.d_wallet {
  padding: 0px 0px;
  margin: 0;
}
.d_wallet li {
  font-size: 16px;
  padding-bottom: 7px;
  font-weight: 100;
  color: #cbcbcb;
}
.d_wallet li a,
.m_wallet li a {
  color: #cbcbcb;
  font-size: 14px;
}
.d_wallet li a:hover,
.m_wallet li a:hover {
  color: #ffffff;
  font-size: 14px;
}
.d_wallet li a span,
.m_wallet li a span {
  font-size: 12px;
  color: #ffd600;
}

.d_wallet li a:hover {
  cursor: pointer;
}
.m_wallet li a:hover {
  cursor: pointer;
}
.belnet-work-video {
  width: 65%;
}
.belnet-works-inside {
  text-align: center;
}
.media-wrap,
.content-wrap {
  position: relative;
  overflow: hidden;
}
.media-wrap {
  aspect-ratio: 16 / 10.4;
}
.content-wrap {
  min-height: 160px;
}
.media-wrap video {
  position: absolute;
  inset: 0;
  width: 65%;
  object-fit: cover;
  cursor: pointer;
  margin: 0 auto;
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.content-wrap .content {
  position: absolute;
  inset: 0;
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.hidden {
  opacity: 0;
  transform: scale(0.96);
  pointer-events: none;
}
.visible {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.belnet-404 {
    color: #000;
    background-color: #fff;
    padding: 6px 23px;
    font-weight: bold;
    font-size: 18px;
    display: inline-block;
    min-width: 200px;
    text-align: center;
    margin-top: 20px;
    position: relative;
    z-index: 2;
}
::selection {
  background: #fff;
  color: black;
}
::-moz-selection {
  background: #fff;
  color: black;
}
