@font-face {
  font-family: "SFU Eurostile";
  src: url("../font/SFU-Eurostile.eot");
  src: url("../font/SFU-Eurostile.eot?#iefix") format("embedded-opentype"),
    url("../font/SFU-Eurostile.woff2") format("woff2"),
    url("../font/SFU-Eurostile.woff") format("woff"),
    url("../font/SFU-Eurostile.ttf") format("truetype"),
    url("../font/SFU-Eurostile.svg#SFU-Eurostile") format("svg");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "SFU Eurostile Bold";
  src: url("../font/SFU-Eurostile-Bold.eot");
  src: url("../font/SFU-Eurostile-Bold.eot?#iefix") format("embedded-opentype"),
    url("../font/SFU-Eurostile-Bold.woff2") format("woff2"),
    url("../font/SFU-Eurostile-Bold.woff") format("woff"),
    url("../font/SFU-Eurostile-Bold.ttf") format("truetype"),
    url("../font/SFU-Eurostile-Bold.svg#SFU-Eurostile-Bold") format("svg");
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: "SFU Eurostile Demi";
  src: url("../font/SFU-Eurostile-Demi.eot");
  src: url("../font/SFU-Eurostile-Demi.eot?#iefix") format("embedded-opentype"),
    url("../font/SFU-Eurostile-Demi.woff2") format("woff2"),
    url("../font/SFU-Eurostile-Demi.woff") format("woff"),
    url("../font/SFU-Eurostile-Demi.ttf") format("truetype"),
    url("../font/SFU-Eurostile-Demi.svg#SFU-Eurostile-Demi") format("svg");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "SFU Eurostile Extended Two";
  src: url("../font/SFU-Eurostile-Extended-Two.eot");
  src: url("../font/SFU-Eurostile-Extended-Two.eot?#iefix") format("embedded-opentype"),
    url("../font/SFU-Eurostile-Extended-Two.woff2") format("woff2"),
    url("../font/SFU-Eurostile-Extended-Two.woff") format("woff"),
    url("../font/SFU-Eurostile-Extended-Two.ttf") format("truetype"),
    url("../font/SFU-Eurostile-Extended-Two.svg#SFU-Eurostile-Extended-Two") format("svg");
  font-style: normal;
  font-weight: 400;
}

html {
  height: auto;
  min-height: 100vh;
  max-width: 100%;
  background: #ffffff;
  margin: 0 auto;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0 auto;
  position: relative;
  overflow-x: hidden;
  width: 100%;
  font-family: "SFU Eurostile";
  font-size: 18px;
  line-height: 26px;
  color: #ffffff;
  background: #180734 url(../images/footer/background.png) no-repeat;
  background-size: 100% auto;
  background-position: center bottom;
}

:focus {
  outline: 0 !important;
  text-decoration: blink !important;
}

a {
  color: #ffffff;
  text-decoration: none;
}

a:hover {
  text-decoration: blink !important;
}

p {
  font-family: "SFU Eurostile";
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
}

strong {
  font-family: "SFU Eurostile Bold";
}

#wrapper {
  width: 100%;
  overflow-x: hidden;
  position: relative;
}

.remove_margin {
  margin: 0 -15px;
}

.remove_margin_30px {
  margin: 0 -30px;
}

/* wow animated */

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
    -ms-transform: translateX(100px);
    transform: translateX(100px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
    -ms-transform: translateX(-100px);
    transform: translateX(-100px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    transform: translateY(-50px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes flipInY {
  0% {
    opacity: 0;
    transform: rotateY(90deg);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes flipInY {
  0% {
    opacity: 0;
    transform: rotateY(90deg);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

.flipInY {
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

/*  */

.slick-next,
.slick-prev {
  position: absolute;
  display: block;
  padding: 0;
}

.slick-next,
.slick-prev {
  font-size: 0;
  line-height: 0;
  bottom: 0;
  top: 0;
  margin: auto 0;
  z-index: 99;
  cursor: pointer;
  border: none;
  outline: 0;
  transition: all 0.3s;
  opacity: 1;
}

.slick-disabled:hover,
.slick-disabled:focus,
.slick-next:focus,
.slick-next:hover,
.slick-prev:focus,
.slick-prev:hover {
  opacity: 0.8;
}

.slick-prev {
  left: -30px;
  width: 16px;
  height: 28px;
  position: absolute;
  background: url(../images/prev.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.slick-next {
  right: -30px;
  width: 16px;
  height: 28px;
  position: absolute;
  background: url(../images/next.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.slick-list,
.slick-slider,
.slick-track {
  position: relative;
  display: block;
}

.slick-loading .slick-slide,
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slider {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  overflow: hidden;
  margin: 0;
  height: 100%;
  padding: 0;
}

.slick-list:focus {
  outline: 0;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-list,
.slick-slider .slick-track {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  top: 0;
  left: 0;
  height: 100%;
}

.slick-track:after,
.slick-track:before {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-dots {
  position: absolute;
  display: block;
  padding: 0;
  width: 100%;
  list-style: none;
  bottom: -20px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 100;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  margin: 5px;
  padding: 0;
  width: auto;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  padding: 0;
  display: block;
  border-radius: 12px;
  width: 12px;
  height: 12px;
  overflow: hidden;
  outline: none;
  cursor: pointer;
  opacity: 1;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.5s;
  border: 0;
}

.slick-dots li.slick-active button {
  background: rgba(255, 255, 255, 1);
}

/*  */

#header {
  width: 100%;
  margin: 0 auto;
  position: absolute;
  z-index: 99;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  transition: all 0.3s;
  background: linear-gradient(180deg,
      #1c0e25 -71.07%,
      rgba(28, 14, 37, 0) 100%);
}

#header.header_fixed {
  position: fixed;
  background: linear-gradient(169.75deg,
      rgba(27, 4, 65, 1) 6.23%,
      rgba(82, 13, 161, 1) 149.84%);
}

#btn_open_menu {
  display: none;
}

.logo {
  position: absolute;
  left: 0px;
  top: 0px;
}

.logo img {
  width: auto;
  height: 80px;
  padding: 15px 15px 20px;
}

.menu_header {
  width: max-content;
  position: absolute;
  right: 15px;
  margin: 0;
  top: 0;
  z-index: 10;
}

.menu_header .menu {
  width: max-content;
}

.menu_header .menu ul {
  width: max-content;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.menu_header .menu ul li.menu_item {
  width: max-content;
  position: relative;
  float: left;
  padding: 25px 25px;
}

.menu_header .menu ul li.menu_item:last-child {
  padding-right: 0;
}

.menu_header .menu ul li.menu_item a.menu_link {
  font-family: "SFU Eurostile Demi";
  font-size: 16px;
  line-height: 30px;
  color: #ffffff;
  transition: all 0.3s;
  position: relative;
  cursor: pointer;
  text-transform: uppercase;
}

.menu_header .menu ul li.menu_item:hover a.menu_link,
.menu_header .menu ul li.menu_item.current a.menu_link {
  background: linear-gradient(273.98deg, #2345f7 3.25%, #f50fc3 96.75%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  text-shadow: 0px 4px 14px rgba(0, 0, 0, 0.35);
}

/*  */

.title {
  width: 100%;
  position: relative;
}

.title.center {
  text-align: center;
}

.title h2 {
  position: relative;
  margin: 0 0 20px;
  font-family: "SFU Eurostile Bold";
  font-size: 34px;
  line-height: 44px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.5);
}

.content {
  width: 100%;
  position: relative;
}

.content.center {
  text-align: center;
}

.content p {
  font-family: "SFU Eurostile";
  font-size: 20px;
  line-height: 30px;
  color: #ffffff;
}

/*  */

/*  */
.buttons-what-bizverse-wrap {
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 24px;
  align-items: center;
  margin-top: 50px;
}

.button_more.center {
  position: relative;
  clear: both;
  margin: 0 auto;
  text-align: center;
}

.button_more {
  margin: 0;
}

.button_more a,
.button_more .button_add_token {
  width: max-content;
  position: relative;
  font-family: "SFU Eurostile Extended Two";
  text-transform: uppercase;
  font-size: 14px;
  line-height: 14px;
  padding: 15px 25px;
  color: #ffffff;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  background-color: var(--button-background-color);
  background-image: var(--button-background-image);
  background-position: var(--button-background-position);
  background-size: var(--button-background-size);
  transition: background var(--button-transition-duration, 0.25s) ease-in-out;
  will-change: background;
  --button-background-image: linear-gradient(110deg, #f50fc3, #2345f7, #f50fc3);
  --button-background-position: 0 0;
  --button-background-size: 200% 100%;
}

.button_more:hover a {
  --button-background-position: 100% 0;
}

.button_more:hover .button_add_token {
  cursor: pointer;
  --button-background-position: 100% 0;
}

.button_more .button_add_token {
  margin-top: 16px;
  text-transform: unset;
  font-family: "SFU Eurostile";
  white-space: nowrap;
}

/*  */

@keyframes male {
  0% {
    transform: rotate(0deg) translate(0);
  }

  25% {
    transform: rotate(-3deg) translateY(15px);
  }

  50% {
    transform: rotate(2deg) translateY(-5px);
  }

  75% {
    transform: rotate(-2deg) translateY(15px);
  }

  100% {
    transform: rotate(0deg) translate(0);
  }
}

@keyframes female {
  0% {
    transform: rotate(0deg) translate(0);
  }

  25% {
    transform: rotate(3deg) translateY(15px);
  }

  50% {
    transform: rotate(-2deg) translateY(-5px);
  }

  75% {
    transform: rotate(3deg) translateY(15px);
  }

  100% {
    transform: rotate(0deg) translate(0);
  }
}

/*  */

.section_home {
  width: 100%;
  position: relative;
  clear: both;
  background: url(../images/home/banner.png) no-repeat;
  background-size: cover;
  background-position: center;
  padding: 100px 0 60px;
}

.person_male {
  width: 260px;
  position: absolute;
  left: calc(50% - 600px);
  bottom: 10%;
  margin: 0;
  animation: male 6s linear infinite;
}

.person_female {
  width: 230px;
  position: absolute;
  right: calc(50% - 600px);
  bottom: 10%;
  margin: 0;
  animation: female 7s linear infinite;
}

.box_content_home {
  width: 760px;
  max-width: 100%;
  position: relative;
  margin: 0 auto;
  text-align: center;
}

.logo_bizverse {
  clear: both;
  width: 360px;
  margin: 0 auto;
  position: relative;
}

.logo_bizverse img {
  width: 100%;
}

.title_home {
  width: 100%;
  position: relative;
  clear: both;
}

.title_home h1 {
  margin: 0 0 40px;
  font-family: "SFU Eurostile Bold";
  font-size: 40px;
  line-height: 55px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #ffffff;
}

.list_audit {
  width: 100%;
  position: relative;
  clear: both;
  margin-top: 30px;
}

.list_buy_trade {
  width: 100%;
  position: relative;
  clear: both;
  margin-top: 20px;
}

.list_buy_trade .icons-exchange {
  display: flex;
  align-items: center;
  /* flex-wrap: wrap; */
  justify-content: space-evenly;
  padding: 0 !important;
}

.list_buy_trade .stakings-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
  /* flex-wrap: wrap; */
}

.list_buy_trade .stakings-button a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px;
}

.list_buy_trade .stakings-button .button_more .coming-soon {
  position: absolute;
  bottom: 2px;
  left: 0;
  font-size: 10px;
  width: 100%;
  text-transform: capitalize;
}

.list_buy_trade .stakings-button .button_more:hover {
  box-shadow: 0px 0px 15px rgba(236, 0, 140, 0.7);
}

.list_buy_trade .stakings-button img {
  width: 32px;
  height: 32px;

}

.title_audit {
  width: 100%;
}

.title_audit p {
  font-family: "SFU Eurostile Demi";
  font-size: 18px;
  line-height: 26px;
  text-transform: uppercase;
  color: #ffffff;
}

.button_audit {
  position: relative;
  display: inline-block;
  margin: 5px 10px;
}

.button_buy_trade {
  position: relative;
  display: flex;
  margin: 5px 10px;
  background: transparent;
  padding: 8px;
  /* border: solid 1px transparent; */
  height: 38px;
  transition: all 0.3s;
  border: 1px solid #ffffff99;
  border-radius: 8px;

}

.button_buy_trade:hover {
  box-shadow: 0px 0px 15px rgba(236, 0, 140, 0.7);
  border: solid 1px rgba(236, 0, 140, 0.7);
  border-radius: 8px;
  transform: scale(1.1);
}

.button_audit a img {
  width: 80px;
}

.button_buy_trade a {
  display: flex;
}

.button_buy_trade a img {
  width: 100px;
}

/* section_whats_bizverse */

.section_whats_bizverse {
  width: 100%;
  position: relative;
  clear: both;
  padding: 80px 0 0;
}

.box_img_whats_bizverse {
  width: 555px;
  float: right;
  position: relative;
}

.box_img_whats_bizverse .img_whats_bizverse {
  width: 100%;
  position: relative;
  z-index: 1;
}

.box_img_whats_bizverse .img_whats_bizverse img {
  width: 100%;
}

.list_whats_bizverse {
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
}

.box_whats_bizverse {
  width: 100%;
  cursor: pointer;
  height: max-content;
  position: absolute;
}

.box_whats_bizverse .number_whats_bizverse {
  position: absolute;
  width: 38px;
  height: 38px;
  border: 1px solid #ffffff;
  border-radius: 38px;
  text-align: center;
}

.box_whats_bizverse:hover .number_whats_bizverse {
  background: linear-gradient(311.06deg,
      rgba(35, 69, 247, 0.6) -20.95%,
      rgba(245, 15, 195, 0.6) 100%);
}

@keyframes number-animation {
  0% {
    transform: translate(0);
  }

  25% {
    transform: translateY(5px);
  }

  50% {
    transform: translateY(0px);
  }

  75% {
    transform: translateY(5px);
  }

  100% {
    transform: translate(0);
  }
}

@keyframes number-opacity {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.box_whats_bizverse:nth-child(1) .number_whats_bizverse {
  left: 177px;
  top: 62px;
  animation: number-animation 3.6s both infinite;
}

.box_whats_bizverse:nth-child(2) .number_whats_bizverse {
  left: 116px;
  top: 125px;
  animation: number-animation 3.3s both infinite;
}

.box_whats_bizverse:nth-child(3) .number_whats_bizverse {
  left: 54px;
  top: 200px;
  animation: number-animation 3.5s both infinite;
}

.box_whats_bizverse:nth-child(4) .number_whats_bizverse {
  right: 152px;
  top: 350px;
  animation: number-animation 3.7s both infinite;
}

.box_whats_bizverse:nth-child(5) .number_whats_bizverse {
  right: 90px;
  top: 275px;
  animation: number-animation 3s 0.6s both infinite;
}

.box_whats_bizverse .number_whats_bizverse span {
  font-family: "SFU Eurostile Demi";
  font-size: 24px;
  line-height: 32px;
  color: #ffffff;
}

.box_whats_bizverse .content_whats_bizverse {
  position: absolute;
  width: 320px;
  padding: 20px 20px 30px;
  height: max-content;
  display: none;
  opacity: 0;
  z-index: 3;
  border-radius: 10px;
  background: linear-gradient(311.06deg,
      rgba(35, 69, 247, 0.8) -20.95%,
      rgba(245, 15, 195, 0.8) 100%);
}

.box_whats_bizverse:hover .content_whats_bizverse {
  display: block;
  opacity: 1;
}

.box_whats_bizverse:nth-child(1) .content_whats_bizverse::after,
.box_whats_bizverse:nth-child(2) .content_whats_bizverse::after,
.box_whats_bizverse:nth-child(3) .content_whats_bizverse::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  left: 100%;
  bottom: 0;
  height: 100%;
  width: 40px;
}

.box_whats_bizverse:nth-child(1) .content_whats_bizverse::before,
.box_whats_bizverse:nth-child(2) .content_whats_bizverse::before,
.box_whats_bizverse:nth-child(3) .content_whats_bizverse::before {
  content: "";
  position: absolute;
  right: -8px;
  z-index: 4;
  top: calc(50% - 8px);
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid rgba(141, 88, 231, 0.5);
}

.box_whats_bizverse:nth-child(4) .content_whats_bizverse::after,
.box_whats_bizverse:nth-child(5) .content_whats_bizverse::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  height: 40px;
}

.box_whats_bizverse:nth-child(4) .content_whats_bizverse::before,
.box_whats_bizverse:nth-child(5) .content_whats_bizverse::before {
  content: "";
  position: absolute;
  right: calc(50% - 8px);
  z-index: 4;
  top: 100%;
  width: 0;
  height: 0;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  border-top: 8px solid rgba(141, 88, 231, 0.5);
}

.box_whats_bizverse:nth-child(1) .content_whats_bizverse {
  top: -30px;
  left: -150px;
}

.box_whats_bizverse:nth-child(2) .content_whats_bizverse {
  top: 30px;
  left: -212px;
}

.box_whats_bizverse:nth-child(3) .content_whats_bizverse {
  top: 130px;
  left: -275px;
}

.box_whats_bizverse:nth-child(4) .content_whats_bizverse {
  top: 90px;
  right: 12px;
}

.box_whats_bizverse:nth-child(5) .content_whats_bizverse {
  top: 85px;
  right: -50px;
}

.box_whats_bizverse .content_whats_bizverse p {
  position: relative;
  width: 100%;
  font-family: "SFU Eurostile";
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
}

.box_whats_bizverse .content_whats_bizverse p strong {
  font-family: "SFU Eurostile Demi";
  text-transform: uppercase;
  font-size: 18px;
  line-height: 26px;
  color: #ffffff;
}

.box_whats_bizverse .content_whats_bizverse .explore {
  clear: both;
  margin-top: 20px;
}

.box_whats_bizverse .content_whats_bizverse .explore a {
  font-family: "SFU Eurostile Extended Two";
  font-size: 14px;
  line-height: 14px;
  padding: 10px 20px;
  color: #ffffff;
  border: 1px solid #ffffff;
  filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.5));
  border-radius: 4px;
}

.box_whats_bizverse .content_whats_bizverse .explore:hover a {
  background: rgba(255, 255, 255, 0.3);
}

.box_content_whats_bizverse {
  width: calc(50% - 50px);
  float: left;
  position: relative;
  /* padding: 10% 0; */
}

.box_content_whats_bizverse .content {
  margin-bottom: 40px;
  text-align: justify;
}

.button_introduce_video {
  width: auto;
  float: left;
}

.button_introduce_video a {
  width: max-content;
  position: relative;
  font-family: "SFU Eurostile Extended Two";
  text-transform: uppercase;
  font-size: 14px;
  line-height: 18px;
  padding: 15px 25px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0);
  transition: all 0.5s;
  border-radius: 4px;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.5);
  border: 1px solid #ffffff;
}

.button_introduce_video:hover {
  background: rgba(255, 255, 255, 0.4);
}

.box_content_whats_bizverse .button_more {
  float: left;
  margin: 10px 15px 0 0;
}

/* section_bizverse_vision */

.section_bizverse_vision {
  width: 100%;
  clear: both;
  position: relative;
  padding: 80px 0 0;
}

.box_content_bizverse_vision {
  width: 100%;
  position: relative;
  text-align: center;
}

.quote_bizverse_vision {
  width: 40px;
  position: relative;
  margin: 0 auto 20px;
}

.line_bizverse_vision {
  width: 600px;
  position: relative;
  margin: 20px auto 0px;
}

/* section_application_platform */

.section_application_platform {
  width: 100%;
  clear: both;
  padding: 80px 0 0;
}

.slider_app_platform {
  width: 100%;
  clear: both;
  display: inline-block;
  position: relative;
}

.box_app_platform {
  width: 20%;
  float: left;
  padding: 15px;
  position: relative;
}

.box_app_platform .app_platform {
  width: 100%;
  position: relative;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 0.5px solid rgba(255, 255, 255, 0.4);
  padding: 45px 20px;
}

.box_app_platform .app_platform .img_app_platform {
  width: 100px;
  position: relative;
  margin: 0 auto 30px;
}

.box_app_platform .app_platform .img_app_platform img {
  width: 100%;
}

.box_app_platform .app_platform .name_app_platform {
  text-align: center;
  position: relative;
  clear: both;
}

.box_app_platform .app_platform .name_app_platform strong {
  font-family: "SFU Eurostile Demi";
  font-size: 18px;
  line-height: 26px;
  text-align: center;
  color: #ffffff;
}

.box_app_platform .app_platform .content_app_platform {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  opacity: 0;
  transition: 0.5s;
  background: linear-gradient(320.47deg, #2345f7 -2.32%, #f50fc3 100%);
  border: 0;
  border-radius: 8px;
  overflow-y: auto;
  padding: 20px;
}

.box_app_platform .app_platform .content_app_platform ul {
  width: 100%;
  padding-left: 20px;
  margin: 0;
  position: relative;
}

.box_app_platform .app_platform .content_app_platform ul li {
  width: 100%;
  margin-bottom: 5px;
  font-family: "SFU Eurostile";
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
}

.box_app_platform .app_platform .content_app_platform ul li a {
  font-family: "SFU Eurostile";
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
}

.box_app_platform:hover .app_platform .content_app_platform {
  opacity: 1;
  display: block;
}

.box_app_platform .app_platform .content_app_platform .name_app_platform {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 15px;
  border-bottom: 1px solid #ffffff;
}

/* section_apps_ecosystem */

.section_apps_ecosystem {
  width: 100%;
  position: relative;
  clear: both;
  padding: 80px 0 0;
}

.box_img_apps_ecosystem {
  max-width: 100%;
  width: 730px;
  margin: 15px auto;
  position: relative;
  clear: both;
}

.box_img_apps_ecosystem img {
  width: 100%;
}

.box_content_apps_ecosystem {
  width: 580px;
  margin: 15px auto;
  position: relative;
  clear: both;
}

.box_content_apps_ecosystem .download {
  width: 100%;
  clear: both;
}

.box_content_apps_ecosystem .download ul {
  padding: 0;
  width: 100%;
  list-style-type: none;
  text-align: center;
}

.box_content_apps_ecosystem .download ul li {
  display: inline-block;
  margin: 20px 8px 0;
}

.box_content_apps_ecosystem .download ul li img {
  width: 140px;
  transition: all 0.5s;
}

.box_content_apps_ecosystem .download ul li:hover img {
  transform: scale(1.1);
}

/* section_slider_bring_business */

.section_slider_bring_business {
  width: 100%;
  clear: both;
  position: relative;
  padding: 80px 0 0;
}

.slider_bring_business {
  width: 100%;
  position: relative;
  clear: both;
  display: inline-block;
}

.slider_banner {
  width: 100%;
  position: relative;
  clear: both;
  display: inline-block;
}

.box_bring_business {
  width: 33.33%;
  float: left;
  position: relative;
  padding: 15px;
}

.box-banner-slider {
  width: 100%;
  float: left;
  position: relative;
  padding: 15px;
}

.box-banner-slider img {
  height: 100%;
  width: 60%;
  object-fit: cover;
  margin: auto;
}

.box_bring_business .bring_business {
  width: 100%;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0px 0px 15px rgba(236, 0, 140, 0);
  transition: all 0.5s;
}

.box_bring_business .bring_business .img_bring_business {
  width: 100%;
  overflow: hidden;
}

.box_bring_business .bring_business .img_bring_business img {
  width: 100%;
  transition: all 0.5s;
}

.box_bring_business:hover .bring_business .img_bring_business img {
  transform: scale(1.1);
}

.box_bring_business.slick-current.slick-active .bring_business,
.box_bring_business:hover .bring_business {
  box-shadow: 0px 0px 15px rgba(236, 0, 140, 0.7);
}

.box_bring_business .bring_business .name_bring_business {
  opacity: 0;
  transition: all 0.5s;
  width: 100%;
  padding: 15px;
  height: max-content;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  background: linear-gradient(0deg, #1c0e25 0%, rgba(0, 0, 0, 0) 100%);
}

.box_bring_business.slick-current.slick-active .bring_business .name_bring_business,
.box_bring_business:hover .bring_business .name_bring_business {
  opacity: 1;
}

.box_bring_business .bring_business .name_bring_business strong {
  font-family: "SFU Eurostile";
  font-size: 18px;
  line-height: 28px;
  color: #ffffff;
}

/* section_running_beta */

.section_running_beta {
  width: 100%;
  position: relative;
  clear: both;
  padding: 80px 0;
}

.button_title {
  text-align: center;
  position: relative;
  margin: 0 auto 30px;
  width: max-content;
  height: max-content;
  border-radius: 8px;
  border: 3px dashed #180734;
  background: linear-gradient(#180734 0 0) padding-box,
    linear-gradient(to bottom, #a70388, #3755f0) border-box;
}

.button_title h3 {
  margin: 0;
  width: max-content;
  padding: 15px 90px;
  font-family: "SFU Eurostile Demi";
  font-size: 22px;
  line-height: 30px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.5);
}

.list_running_beta {
  width: 100%;
  display: inline-block;
  position: relative;
  clear: both;
}

.box_running_beta {
  width: 25%;
  float: left;
  padding: 15px;
  position: relative;
}

.box_running_beta .running_beta {
  width: 100%;
  position: relative;
  border-radius: 8px;
  padding: 20px 10px;
  text-align: center;
  transition: all 0.5s;
  box-shadow: rgb(0, 0, 0, 0) 0px 2px 4px;
}

.box_running_beta:hover .running_beta {
  transform: scale(1.1);
  box-shadow: rgb(0, 0, 0, 0.5) 0px 2px 4px;
}

.box_running_beta:nth-child(1) .running_beta {
  background: #ffffff;
}

.box_running_beta:nth-child(2) .running_beta {
  background: #3755f0;
}

.box_running_beta:nth-child(3) .running_beta {
  background: #c00297;
}

.box_running_beta:nth-child(4) .running_beta {
  background: #31d8ff;
}

.box_running_beta .running_beta .img_running_beta {
  position: relative;
  width: 70px;
  margin: 15px auto;
}

.box_running_beta .running_beta .img_running_beta img {
  width: 100%;
  transition: all 0.5s;
}

.box_running_beta:hover .running_beta .img_running_beta img {
  transform: scale(1.1);
}

.box_running_beta .running_beta .count_number_running_beta {
  width: 100%;
  text-align: center;
}

.box_running_beta .running_beta .count_number_running_beta span {
  font-family: "SFU Eurostile Bold";
  font-size: 20px;
  line-height: 30px;
  color: #ffffff;
}

.box_running_beta:nth-child(1) .running_beta .count_number_running_beta span {
  color: #180734;
}

/* section_register */

.section_register {
  width: 100%;
  position: relative;
  clear: both;
  padding: 0;
  background: url(../images/register/background.png) no-repeat;
  background-size: cover;
  background-position: center;
}

.box_img_register {
  width: 45%;
  position: relative;
  float: left;
}

.box_img_register img {
  width: 100%;
}

.box_content_register {
  width: 50%;
  position: relative;
  float: right;
  padding: 10% 0;
}

.box_content_register .content {
  margin-bottom: 40px;
}

/* section_list_brings_business */

.section_list_brings_business {
  width: 100%;
  position: relative;
  clear: both;
  padding: 80px 0;
}

.list_brings_business {
  width: 100%;
  position: relative;
  display: inline-block;
  clear: both;
}

.box_brings_business {
  width: 20%;
  float: left;
  padding: 20px 30px 0;
  position: relative;
}

.box_brings_business .brings_business {
  width: 100%;
  position: relative;
}

.box_brings_business .brings_business .img_brings_business {
  width: 100%;
  position: relative;
  border-radius: 8px;
}

.box_brings_business:hover .brings_business .img_brings_business {
  background: linear-gradient(320.47deg, #2345f7 -2.32%, #f50fc3 100%);
}

.box_brings_business .brings_business .img_brings_business img {
  width: 100%;
}

.box_brings_business .brings_business .name_brings_business {
  margin-top: 10px;
  width: 100%;
  text-align: center;
}

.box_brings_business .brings_business .name_brings_business span {
  font-family: "SFU Eurostile";
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
}

/* section_metaverse_space */

.section_metaverse_space {
  width: 100%;
  clear: both;
  position: relative;
  padding: 140px 0;
  background: url(../images/metaverse_space/background.png) no-repeat;
  background-size: cover;
  background-position: center;
}

.section_metaverse_space .button_more {
  margin-top: 40px;
}

.popup_create_now {
  overflow: hidden;
  z-index: 9999999;
  background: rgba(24, 7, 52, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: fixed;
  display: none;
  opacity: 0;
}

.popup_create_now.show_popup {
  display: block;
  opacity: 1;
}

.content_metaverse_space {
  width: 400px;
  max-width: 100%;
  height: max-content;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999999;
  background: linear-gradient(28.98deg,
      rgba(35, 69, 246, 0.8) -8.03%,
      rgba(245, 15, 195, 0.8) 92.58%);
  border-radius: 20px;
  text-align: center;
  padding: 80px 30px;
  margin: auto;
}

.content_metaverse_space p {
  font-family: "SFU Eurostile";
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.05em;
  color: #ffffff;
}

.close_popup {
  width: 40px;
  position: absolute;
  right: -40px;
  top: -40px;
}

.close_popup img {
  width: 100%;
}

/* section_metaverse_assets */

.section_metaverse_assets {
  width: 100%;
  position: relative;
  clear: both;
  padding: 0;
}

.box_content_metaverse_assets {
  width: 60%;
  padding: 80px 0;
  float: left;
  position: relative;
}

.box_content_metaverse_assets .content {
  margin-bottom: 40px;
}

.box_img_metaverse_assets {
  width: 40%;
  margin-top: 20px;
  float: right;
  position: relative;
}

.box_img_metaverse_assets img {
  width: 100%;
}

/* section_benefits_nft */

.section_benefits_nft {
  width: 100%;
  position: relative;
  clear: both;
  padding: 80px 0 0;
}

.slider_benefits_nft {
  width: 100%;
  display: inline-block;
  position: relative;
  clear: both;
}

.box_benefits_nft {
  width: 16.66%;
  float: left;
  padding: 15px;
  position: relative;
}

.box_benefits_nft .benefits_nft {
  width: 100%;
  text-align: center;
  position: relative;
  transition: all 0.5s;
}

.box_benefits_nft:hover .benefits_nft {
  transform: scale(1.05);
}

.box_benefits_nft .benefits_nft .img_benefits_nft {
  width: 130px;
  margin: 5px auto;
}

.box_benefits_nft .benefits_nft .img_benefits_nft img {
  width: 100%;
}

.box_benefits_nft .benefits_nft .name_benefits_nft {
  width: 145px;
  margin: 0px auto;
  position: relative;
}

.box_benefits_nft .benefits_nft .name_benefits_nft span {
  font-family: "SFU Eurostile";
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.01em;
  color: #ffffff;
}

/* section_token_bizverse */

.section_token_bizverse {
  width: 100%;
  position: relative;
  clear: both;
  padding: 80px 0 0;
}

.box_content_token_bizverse {
  margin-top: 15px;
  display: inline-block;
  width: 100%;
  position: relative;
  clear: both;
  padding: 50px;
  background: linear-gradient(28.98deg, #3755f0 -8.03%, #c00297 92.58%);
  border-radius: 20px;
}

.box_token_bizverse {
  float: left;
  position: relative;
}

.box_token_bizverse:nth-child(1) {
  width: 20%;
}

.box_token_bizverse:nth-child(2) {
  width: 50%;
}

.box_token_bizverse:nth-child(3) {
  width: 30%;
}

.box_token_bizverse .img_token_bizverse {
  position: relative;
  width: 130px;
  height: 130px;
  margin: 0 auto;
}

.box_token_bizverse .img_token_bizverse img {
  width: 100%;
  height: 100%;
}

.box_token_bizverse .content_token_bizverse {
  width: 100%;
  position: relative;
}

.box_token_bizverse .content_token_bizverse ul {
  width: 100%;
  padding: 0;
  list-style-type: none;
  margin: 0;
  text-align: center;
}

.box_token_bizverse .content_token_bizverse ul li {
  padding-top: 20px;
  font-family: "SFU Eurostile";
  font-size: 22px;
  line-height: 30px;
  color: #ffffff;
}

.box_token_bizverse:nth-child(1) .content_token_bizverse ul {
  list-style-type: disc;
  text-align: left;
  padding-left: 20px;
}

.box_token_bizverse:nth-child(1) .content_token_bizverse ul li {
  font-family: "SFU Eurostile Demi";
}

/* section_token_allocation */

.section_token_allocation {
  width: 100%;
  position: relative;
  clear: both;
  padding: 80px 0 0;
}

.box_img_token_allocation {
  width: 800px;
  margin: 0 auto;
  padding-top: 20px;
  clear: both;
  position: relative;
}

.box_img_token_allocation img {
  width: 100%;
}

/* section_supported_chain */

.section_supported_chain {
  width: 100%;
  clear: both;
  position: relative;
  padding: 80px 0 0;
}

.slider_supported_chain {
  width: 100%;
  position: relative;
  clear: both;
  display: inline-block;
}

.slider_supported_chain .slick-next,
.slider_supported_chain .slick-prev {
  top: 28%;
  bottom: auto;
}

.box_supported_chain {
  width: 25%;
  float: left;
  position: relative;
  padding: 15px;
}

.box_supported_chain_binance {
  width: 240px;
  padding: 15px;
}

.box_supported_chain_binance img {
  width: 100%;
}

.box_supported_chain .supported_chain {
  width: 100%;
  position: relative;
}

.box_supported_chain .supported_chain img {
  width: 100%;
  transition: all 0.5s;
}

.box_supported_chain:hover .supported_chain img {
  transform: scale(1.1);
}

/* section_road_map */

.section_road_map {
  width: 100%;
  position: relative;
  clear: both;
  padding: 80px 0 0;
}

.slider_road_map {
  width: 100%;
  position: relative;
  clear: both;
  display: inline-block;
}

.slider_road_map .slick-next {
  top: 25px;
  margin-top: 0;
  right: 0px;
  width: 30px;
  height: 30px;
  position: absolute;
  opacity: 1;
  background: url(../images/next_roadmap.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.slider_road_map .slick-prev {
  top: 25px;
  margin-top: 0;
  left: -20px;
  width: 30px;
  height: 30px;
  position: absolute;
  opacity: 1;
  background: url(../images/prev_roadmap.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
}

.slider_road_map .slick-prev.slick-arrow {
  opacity: 1 !important;
  display: block !important;
}

.slider_road_map .slick-next.slick-arrow.slick-disabled {
  opacity: 0.8 !important;
  display: block !important;
}

.slider_road_map .slick-prev.slick-arrow.slick-disabled {
  opacity: 0 !important;
  display: none !important;
}

.box_road_map {
  width: 20%;
  float: left;
  padding: 15px;
  position: relative;
}

.box_road_map .road_map {
  width: 100%;
  position: relative;
}

.box_road_map .road_map .milestones_road_map {
  position: relative;
  width: 160px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.5);
  border-radius: 40px;
  padding: 10px 10px 15px;
  text-align: center;
}

.box_road_map .road_map::before {
  content: "";
  width: calc(100% - 140px);
  height: 1px;
  background: #dc40d5;
  position: absolute;
  right: -25px;
  top: 25px;
  z-index: 0;
}

.box_road_map:last-child .road_map::before {
  display: none;
}

.box_road_map.slick-current.slick-active .road_map .milestones_road_map,
.box_road_map:hover .road_map .milestones_road_map {
  background: linear-gradient(273.98deg, #2345f7 3.25%, #f50fc3 96.75%);
  border-radius: 40px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  border-right: 0px solid transparent;
  border-left: 0px solid transparent;
}

.box_road_map .road_map .milestones_road_map strong {
  font-family: "SFU Eurostile Bold";
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
}

.box_road_map .road_map .content_road_map {
  width: 100%;
  position: relative;
}

.box_road_map .road_map .content_road_map ul {
  width: 100%;
  padding-left: 20px;
  margin: 20px 0;
}

.box_road_map .road_map .content_road_map ul li {
  width: 100%;
  padding: 5px 0;
  font-family: "SFU Eurostile";
  font-size: 14px;
  line-height: 20px;
  color: #ffffff;
}

/* section_our_team */

.section_our_team {
  width: 100%;
  clear: both;
  position: relative;
  padding: 80px 0 0;
}

.list_our_team {
  width: 100%;
  display: inline-block;
  position: relative;
  clear: both;
}

.box_our_team {
  cursor: pointer;
  width: 25%;
  float: left;
  padding: 15px;
  position: relative;
}

.box_our_team .our_team {
  width: 100%;
  position: relative;
}

.box_our_team .our_team .img_our_team {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  border: 2px solid transparent;
  background: linear-gradient(rgba(255, 255, 255, 0.5) 0 0) padding-box,
    linear-gradient(to bottom, #a70388, #3755f0) border-box;
}

.box_our_team .our_team .img_our_team img.img_avatar {
  max-height: 305px;
  width: 100%;
  position: relative;
  z-index: 1;
  transition: all 0.5s;
  object-fit: cover;
  object-position: top;
}

.box_our_team:hover .our_team .img_our_team img.img_avatar {
  transform: scale(1.1);
}

.box_our_team .our_team .info_our_team {
  width: 100%;
  margin-top: 15px;
  text-align: center;
}

.box_our_team .our_team .info_our_team strong {
  font-family: "SFU Eurostile Bold";
  text-transform: uppercase;
  font-size: 20px;
  line-height: 30px;
  color: #ffffff;
}

.box_our_team .our_team .info_our_team span {
  font-family: "SFU Eurostile";
  font-size: 18px;
  line-height: 26px;
  color: #ffffff;
}

.box_our_team .our_team .img_our_team .content_our_team {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  position: absolute;
  padding: 20px;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: all 0.5s;
  z-index: 10;
  overflow: hidden;
  background: linear-gradient(28.98deg,
      rgba(55, 85, 240, 0.8) -8.03%,
      rgba(192, 2, 151, 0.8) 92.58%);
}

.box_our_team:hover .our_team .img_our_team .content_our_team::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: rgba(255, 255, 255, 1);
  width: 5px;
}

.box_our_team:hover .our_team .img_our_team .content_our_team::-webkit-scrollbar-track {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
  width: 5px;
}

.box_our_team:hover .our_team .img_our_team .content_our_team::-webkit-scrollbar {
  width: 5px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
}

.box_our_team:hover .our_team .img_our_team .content_our_team {
  opacity: 1;
  overflow-x: hidden;
  overflow-y: auto;
}

.box_our_team .our_team .img_our_team .content_our_team .avatar {
  position: relative;
  width: 60px !important;
  height: 60px !important;
  border-radius: 60px;
  object-fit: cover;
  object-position: center;
}

.box_our_team .our_team .img_our_team .content_our_team p {
  margin: 10px 0;
  font-family: "SFU Eurostile";
  font-size: 18px;
  line-height: 28px;
  text-transform: uppercase;
  color: #ffffff;
}

.box_our_team .our_team .img_our_team .content_our_team p strong {
  font-family: "SFU Eurostile Bold";
}

.box_our_team .our_team .img_our_team .content_our_team ul {
  padding-left: 15px;
  position: relative;
  width: 100%;
  clear: both;
}

.box_our_team .our_team .img_our_team .content_our_team ul li {
  padding-bottom: 10px;
  font-family: "SFU Eurostile";
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
}

.box_our_team .our_team .img_our_team .content_our_team .linkedin_our_team {
  margin: 10px 0 25px;
}

.box_our_team .our_team .img_our_team .content_our_team .linkedin_our_team a {
  position: relative;
  font-family: "SFU Eurostile Extended Two";
  padding: 6px 20px 10px;
  border: 1px solid #ffffff;
  filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.5));
  border-radius: 4px;
  font-size: 16px;
  line-height: 16px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0);
  transition: all 0.5s;
}

.box_our_team .our_team .img_our_team .content_our_team .linkedin_our_team:hover a {
  background: rgba(255, 255, 255, 0.4);
}

.box_our_team .our_team .img_our_team .content_our_team .linkedin_our_team a::before {
  content: url(../images/linkedin.svg);
  position: relative;
  padding-right: 5px;
  top: 5px;
}

/* section_vcs_backers */

.section_vcs_backers {
  width: 100%;
  position: relative;
  clear: both;
  padding: 80px 0 0;
}

.list_company {
  width: 100%;
  position: relative;
  clear: both;
  display: inline-block;
}

.box_company {
  width: 16.66%;
  float: left;
  padding: 15px;
  position: relative;
}

.box_company .company {
  width: 100%;
  border-radius: 8px;
  transition: all 0.5s;
  border: 2px solid #ffffff;
  background: linear-gradient(rgba(255, 255, 255, 1) 0px,
      rgba(255, 255, 255, 1) 0px) padding-box padding-box,
    linear-gradient(rgb(167, 3, 136), rgb(55, 85, 240)) border-box border-box;
}

.box_company:hover .company {
  border: 2px solid transparent;
  transform: scale(1.1);
}

.box_company .company img {
  width: 100%;
  border-radius: 8px;
}

/* section_partners_custumers */

.section_partners_custumers {
  width: 100%;
  position: relative;
  clear: both;
  padding: 80px 0 0;
}

/* section_news */

.section_news {
  width: 100%;
  position: relative;
  clear: both;
  padding: 80px 0 0;
}

.slider_news {
  width: 100%;
  position: relative;
  clear: both;
  display: inline-block;
}

.box_news {
  width: 33.33%;
  float: left;
  position: relative;
  padding: 15px;
}

.box_news .news {
  cursor: pointer;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.box_news .news .img_news {
  width: 100%;
  z-index: 1;
  position: relative;
}

.box_news .news .img_news img {
  width: 100%;
  transition: all 0.5s;
  aspect-ratio: calc(370 / 247);
}

.box_news:hover .news .img_news img {
  transform: scale(1.1);
}

.box_news .news .content_news {
  background: linear-gradient(28.98deg, #3755f0 -8.03%, #c00297 92.58%);
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 3;
  top: 100%;
  transition: all 0.5s;
  left: 0;
  right: 0;
  padding: 15px;
  overflow: hidden;
  overflow-y: auto;
}

.box_news:hover .news .content_news {
  top: 0;
}

.box_news .news .name_news {
  /* position: absolute; */
  /* bottom: 0;
    left: 0;
    right: 0; */
  z-index: 2;
  transition: all 0s;
  width: 100%;
  height: max-content;
  opacity: 1;
  padding: 15px;
  text-align: center;
  background: linear-gradient(28.98deg, #3755f0 -8.03%, #c00297 92.58%);

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 112px;
}

.box_news:hover .news .name_news {
  opacity: 0;
}

.box_news:hover .news .content_news .title_news {
  width: 100%;
  text-align: left;
}

.box_news .news .name_news strong,
.box_news .news .content_news .title_news strong {
  font-family: "SFU Eurostile Bold";
  font-size: 16px;
  line-height: 30px;
  text-transform: uppercase;
  color: #ffffff;
}

.box_news .news .content_news .date_post_news {
  width: 100%;
  margin: 5px 0 10px;
}

.box_news .news .content_news .date_post_news span {
  width: 100%;
  font-family: "SFU Eurostile Demi";
  font-size: 16px;
  line-height: 16px;
  text-transform: uppercase;
  color: #ffffff;
}

.box_news .news .content_news .des_news {
  width: 100%;
}

.box_news .news .content_news .des_news p {
  font-family: "SFU Eurostile";
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
}

.box_news .news .content_news .more_news {
  border: 1px solid #ffffff;
  filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.5));
  border-radius: 4px;
  width: max-content;
  padding: 5px 20px 10px;
  background: rgba(255, 255, 255, 0);
  transition: all 0.5s;
}

.box_news .news .content_news .more_news:hover {
  background: rgba(255, 255, 255, 0.2);
}

.box_news .news .content_news .more_news span {
  font-family: "SFU Eurostile Extended Two";
  font-size: 16px;
  line-height: 16px;
  color: #ffffff;
}

/*  */

.section_vrland_bizverse {
  width: 100%;
  position: relative;
  clear: both;
  padding: 80px 0 0;
}

.slider_vrland_bizverse {
  width: 100%;
  padding: 15px 0;
  display: inline-block;
  z-index: 1;
  position: relative;
  clear: both;
}

.slider_vrland_bizverse .slick-list {
  padding: 0px 200px !important;
}

.box_vrland_bizverse .vrland_bizverse {
  text-align: center;
  padding: 60px 0;
  height: 400px;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(23, 8, 47, 0) 0%, #17082f 100%);
}

.box_vrland_bizverse .vrland_bizverse .name_vrland_bizverse {
  position: absolute;
  opacity: 0;
  left: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: auto;
  padding: 15px 25px 30px;
  transition: all 0.5s;
  text-align: left;
  background: linear-gradient(0deg, rgba(23, 8, 47, 0) 0%, #17082f 100%);
}

.box_vrland_bizverse.slick-slide.slick-center .vrland_bizverse .name_vrland_bizverse {
  opacity: 1;
}

.box_vrland_bizverse .vrland_bizverse .name_vrland_bizverse strong {
  font-family: "SFU Eurostile Demi";
  font-size: 18px;
  line-height: 26px;
  text-transform: uppercase;
  color: #ffffff;
}

.box_vrland_bizverse .vrland_bizverse::before {
  content: "";
  width: 80px;
  height: 80px;
  z-index: 1;
  border-radius: 80px;
  overflow: hidden;
  filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.5));
  background: url(../images/play.svg) no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  opacity: 0;
  transition: all 0.5s;
}

.box_vrland_bizverse .vrland_bizverse::after {
  content: "";
  width: 100%;
  height: 50%;
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(178.59deg,
      rgba(23, 8, 47, 0) 1.2%,
      #17082f 92.02%);
}

.box_vrland_bizverse .vrland_bizverse img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.5s;
}

.box_vrland_bizverse.slick-slide.slick-center .vrland_bizverse:hover img {
  transform: scale(1.1);
}

.box_vrland_bizverse.slick-slide.slick-center {
  position: relative;
  z-index: 2;
}

.box_vrland_bizverse.slick-slide.slick-center .vrland_bizverse {
  height: 400px;
  overflow: hidden;
  padding: 0;
}

.box_vrland_bizverse.slick-slide.slick-center .vrland_bizverse::before {
  opacity: 1;
}

.box_vrland_bizverse.slick-slide.slick-center .vrland_bizverse::after {
  opacity: 0;
}

/* footer */

footer {
  width: 100%;
  position: relative;
  clear: both;
  padding: 80px 0;
}

.box_list_social {
  width: 100%;
  position: relative;
  clear: both;
}

.box_list_social::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 1.5px;
  background: linear-gradient(87.18deg,
      #3755f0 2.33%,
      rgba(192, 2, 151, 0.65) 43.68%);
}

.box_list_social ul {
  width: 100%;
  position: relative;
  margin: 0;
  padding: 0;
  list-style-type: none;
  text-align: center;
}

.box_list_social ul li {
  margin: 0 35px 20px;
  display: inline-block;
}

.box_list_social ul li img {
  width: 40px;
  transition: all 0.5s;
}

.box_list_social ul li:hover img {
  transform: scale(1.1);
}

.box_official_email {
  width: 100%;
  position: relative;
  clear: both;
  margin: 15px 0;
  text-align: center;
}

.box_official_email a {
  font-family: "SFU Eurostile Demi";
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.05em;
  color: #ffffff;
}

.box_official_email a strong {
  font-family: "SFU Eurostile Bold";
}

.box_official_email a::before {
  content: url(../images/social/email.svg);
  padding-right: 10px;
  position: relative;
  top: 1px;
}

.box_coppyright {
  padding: 80px 0px;
  width: 450px;
  position: relative;
  float: left;
}

.logo_footer {
  width: 180px;
  position: relative;
}

.logo_footer img {
  width: 100%;
}

.coppyright {
  width: 100%;
}

.coppyright p {
  margin: 15px 0;
  font-family: "SFU Eurostile";
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
}

.box_menu_link {
  width: calc(100% - 750px);
  padding: 80px 30px;
  float: left;
  position: relative;
}

.box_menu_link ul {
  width: 50%;
  float: left;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.box_menu_link ul li {
  padding: 10px 15px 0;
  width: 100%;
  position: relative;
  transition: all 0.5s;
  left: 0;
}

.box_menu_link ul li a {
  font-family: "SFU Eurostile";
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
}

.box_menu_link ul li:hover {
  left: 10px;
}

.box_menu_link ul li a::before {
  content: url(../images/right.svg);
  position: relative;
  left: 0;
  opacity: 0;
}

.box_menu_link ul li:hover a::before {
  left: -5px;
  opacity: 1;
}

.box_download {
  padding: 80px 0px;
  width: 300px;
  float: right;
  position: relative;
}

.box_download ul {
  list-style-type: none;
  width: 100%;
  position: relative;
  padding: 0;
  margin: 0;
}

.box_download ul li {
  width: 50%;
  float: left;
}

.box_download ul li:last-child {
  float: right;
}

.box_download ul li img {
  width: 90%;
  box-shadow: 0px 4px 4px #000000;
  border-radius: 8px;
  transition: all 0.5s;
}

.box_download ul li:hover img {
  transform: scale(1.1);
}

#main_popup {
  width: 80vw;
  height: 90vh;
  max-width: 1400px;
  background: linear-gradient(308.13deg, #1b0441 -0.75%, #521698 80.06%) padding-box,
    linear-gradient(114.44deg, #3755f0 29.89%, #c00297 64.73%) border-box;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 0;
}

.box_main_popup {
  width: 100%;
  height: 100%;
  padding: 15px 30px;
  background-color: #090532;
  background-image: url(../images/popup-background.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50%;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 2%;
}

.box_main_popup .logo_bizverse_popup {
  width: 80%;
  max-width: 1400px;
  margin: 0 auto;
  max-height: 20%;
  object-fit: contain;
}

#main_popup .popup-title {
  font-style: normal;
  font-weight: 700;
  font-size: 1.5em;
  line-height: 1.5em;
  text-align: center;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  background: linear-gradient(175deg, #b832aa 26.85%, #693d96 75%);
  -webkit-background-clip: text;
  text-shadow: none;
  margin-top: 20px;
}

/* #main_popup .box_main_popup {

} */
#main_popup .close-modal {
  top: 3px;
  right: 3px;
}

.blocker {
  z-index: 100 !important;
}

.list-ido-exchange {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  background: linear-gradient(90deg,
      rgb(64 60 242 / 33%) 0%,
      rgb(78 10 153 / 40%) 100%);
  padding: 18px 22px;
  border: 0.5px solid rgba(255, 255, 255, 0.2);
}

.list-ido-exchange .listing-item {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 11%;
}

.list-ido-exchange .listing-item div {
  /* background: #7544cc; */
  /* backdrop-filter: blur(5px); */
  /* box-shadow: inset 0px 0px 4px 0px #fdfdfdb5; */
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: 4px;
  display: flex;
  cursor: pointer;
  background: linear-gradient(90deg,
      rgba(46, 43, 207, 0.4) 0%,
      rgba(132, 51, 222, 0.4) 100%);
  border: 0.5px solid rgba(255, 255, 255, 0.2);
  box-shadow: inset 0px 0px 6px #8a2edf;
}

.list-ido-exchange .listing-item.title div {
  background: linear-gradient(90deg, #2e2bcf 0%, #8433de 100%);
  box-shadow: inset 0px 0px 6px rgba(255, 255, 255, 0.6);
  color: rgba(21, 213, 255, 1);
  cursor: default;
}

.list-ido-exchange .listing-item .exchange-logo {
  height: 100%;
  width: 38%;
}

.list-ido-exchange .listing-item:hover div {
  /* backdrop-filter: blur(0px); */
  box-shadow: 0px 0px 8px 0px rgb(246, 0, 236);
}

.list-ido-exchange .listing-item.title:hover div {
  /* backdrop-filter: blur(0px); */
  box-shadow: none;
  box-shadow: inset 0px 0px 6px rgba(255, 255, 255, 0.6);
}

.list-ido-exchange .listing-item .exchange-logo img {
  height: 100%;
  max-height: 30px;
}

.list-ido-exchange .listing-item .listing-time {
  flex-grow: 1;
  height: 100%;
  font-weight: 600;
}

.list-ido-exchange .listing-item.title div {
  font-weight: 700;
}