/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */
.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -ms-touch-action: none;
  touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.noUi-target {
  position: relative;
}
.noUi-base,
.noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
/* Wrapper for all connect elements.
 */
.noUi-connects {
  overflow: hidden;
  z-index: 0;
}
.noUi-connect,
.noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -webkit-transform-style: preserve-3d;
  transform-origin: 0 0;
  transform-style: flat;
}
/* Offset direction
 */
.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
  left: 0;
  right: auto;
}
/* Give origins 0 height/width so they don't interfere with clicking the
 * connect elements.
 */
.noUi-vertical .noUi-origin {
  top: -100%;
  width: 0;
}
.noUi-horizontal .noUi-origin {
  height: 0;
}
.noUi-handle {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
}
.noUi-touch-area {
  height: 100%;
  width: 100%;
}
.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  -webkit-transition: transform 0.3s;
  transition: transform 0.3s;
}
.noUi-state-drag * {
  cursor: inherit !important;
}
/* Slider size and handle placement;
 */
.noUi-horizontal {
  height: 18px;
}
.noUi-horizontal .noUi-handle {
  width: 34px;
  height: 28px;
  right: -17px;
  top: -6px;
}
.noUi-vertical {
  width: 18px;
}
.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  right: -6px;
  bottom: -17px;
}
.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
  left: -17px;
  right: auto;
}
/* Styling;
 * Giving the connect element a border radius causes issues with using transform: scale
 */
.noUi-target {
  background: #FAFAFA;
  border-radius: 4px;
  border: 1px solid #D3D3D3;
  box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB;
}
.noUi-connects {
  border-radius: 3px;
}
.noUi-connect {
  background: #3FB8AF;
}
/* Handles and cursors;
 */
.noUi-draggable {
  cursor: ew-resize;
}
.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}
.noUi-handle {
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #FFF;
  cursor: default;
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #EBEBEB, 0 3px 6px -3px #BBB;
}
.noUi-active {
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB;
}
/* Handle stripes;
 */
.noUi-handle:before,
.noUi-handle:after {
  content: "";
  display: block;
  position: absolute;
  height: 14px;
  width: 1px;
  background: #E8E7E6;
  left: 14px;
  top: 6px;
}
.noUi-handle:after {
  left: 17px;
}
.noUi-vertical .noUi-handle:before,
.noUi-vertical .noUi-handle:after {
  width: 14px;
  height: 1px;
  left: 6px;
  top: 14px;
}
.noUi-vertical .noUi-handle:after {
  top: 17px;
}
/* Disabled state;
 */
[disabled] .noUi-connect {
  background: #B8B8B8;
}
[disabled].noUi-target,
[disabled].noUi-handle,
[disabled] .noUi-handle {
  cursor: not-allowed;
}
/* Base;
 *
 */
.noUi-pips,
.noUi-pips * {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.noUi-pips {
  position: absolute;
  color: #999;
}
/* Values;
 *
 */
.noUi-value {
  position: absolute;
  white-space: nowrap;
  text-align: center;
}
.noUi-value-sub {
  color: #ccc;
  font-size: 10px;
}
/* Markings;
 *
 */
.noUi-marker {
  position: absolute;
  background: #CCC;
}
.noUi-marker-sub {
  background: #AAA;
}
.noUi-marker-large {
  background: #AAA;
}
/* Horizontal layout;
 *
 */
.noUi-pips-horizontal {
  padding: 10px 0;
  height: 80px;
  top: 100%;
  left: 0;
  width: 100%;
}
.noUi-value-horizontal {
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
}
.noUi-rtl .noUi-value-horizontal {
  -webkit-transform: translate(50%, 50%);
  transform: translate(50%, 50%);
}
.noUi-marker-horizontal.noUi-marker {
  margin-left: -1px;
  width: 2px;
  height: 5px;
}
.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px;
}
.noUi-marker-horizontal.noUi-marker-large {
  height: 15px;
}
/* Vertical layout;
 *
 */
.noUi-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%;
}
.noUi-value-vertical {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding-left: 25px;
}
.noUi-rtl .noUi-value-vertical {
  -webkit-transform: translate(0, 50%);
  transform: translate(0, 50%);
}
.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px;
}
.noUi-marker-vertical.noUi-marker-sub {
  width: 10px;
}
.noUi-marker-vertical.noUi-marker-large {
  width: 15px;
}
.noUi-tooltip {
  display: block;
  position: absolute;
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #fff;
  color: #000;
  padding: 5px;
  text-align: center;
  white-space: nowrap;
}
.noUi-horizontal .noUi-tooltip {
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  left: 50%;
  bottom: 120%;
}
.noUi-vertical .noUi-tooltip {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  top: 50%;
  right: 120%;
}
.noUi-horizontal .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(50%, 0);
  transform: translate(50%, 0);
  left: auto;
  bottom: 10px;
}
.noUi-vertical .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(0, -18px);
  transform: translate(0, -18px);
  top: auto;
  right: 28px;
}
ul, ul li {
  list-style: none;
  padding: 0;
  margin: 0;
}
a {
  text-decoration: none;
}
:root {
  --black-text: #111;
  --green-text: #2BF2AD;
  --red-text: #E6352D;
  --bg-black: #0B0D1E;
  --bg-light-black: #12152B;
  --bg-grey: #F2F4F7;
  --link-color: #1681FF;
}
body {
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 400;
  color: var(--black-text);
  background-color: #fff;
}
html.lenis, html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-smooth iframe {
  pointer-events: none;
}
.swiper-wrapper {
  transition-timing-function: linear;
}
.btn-circle {
  width: 210px;
  height: 210px;
  display: flex;
  align-items: center;
  text-align: center;
  font-weight: 600;
  font-size: 15px;
  position: relative;
  transition: all 0.25s ease;
}
.btn-circle:hover {
  opacity: 1;
}
.btn-circle:hover:before {
  transform: scale(1.2);
}
.btn-circle span {
  position: relative;
  z-index: 2;
}
.btn-circle:before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 100%;
  color: #000;
  background-color: #BDF841;
  transition: transform 0.25s ease-out;
}
.btn-circle__outline {
  font-weight: 400;
}
.btn-circle__outline:before {
  color: #000;
  background-color: transparent;
  border: 1px solid #111;
}
.btn-glow {
  padding: 0.95rem 3rem;
  transition: all 0.45s ease;
  -webkit-box-shadow: 0px 4px 50px 0px rgba(230, 53, 45, 0.4);
  -moz-box-shadow: 0px 4px 50px 0px rgba(230, 53, 45, 0.4);
  box-shadow: 0px 4px 50px 0px rgba(230, 53, 45, 0.4);
}
.btn-glow:hover {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.link-line-animate:before {
  position: absolute;
  top: 100%;
  left: 0;
  width: 0;
  height: 1px;
  background-color: rgb(255, 255, 255);
  content: "";
  transition: width 0.3s ease;
}
.link-line-animate:hover:before {
  width: 100%;
}
img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
.box-bg {
  background-color: var(--black);
  border-radius: 50px;
}
.page-indent {
  padding-top: 128px;
}
.img-radius {
  border-radius: 8px;
}
a {
  color: var(--black-text);
  transition: opacity 0.25s ease;
}
a:hover {
  opacity: 0.8;
}
video {
  max-width: 100%;
  border-radius: 8px;
  overflow: hidden;
  filter: drop-shadow(0px 0px 32px rgba(0, 0, 0, 0.16));
}
.fix-scroll {
  overflow: hidden;
}
.align-center {
  text-align: center;
}
.align-left {
  text-align: left;
}
.align-right {
  text-align: right;
}
.fill-light-grey {
  fill: var(--light-grey) !important;
}
.fill-white {
  fill: var(--white-text) !important;
}
.fill-green {
  fill: var(--green-text) !important;
}
.fill-grey3 {
  fill: var(--grey3-text) !important;
}
.bg-grey {
  background-color: #F6F6F6;
}
@media (max-width: 991px) {
  .page-indent {
    padding-top: 64px;
  }
}
@media (max-width: 767px) {
  .box-bg {
    border-radius: 25px;
  }
}
.sub-title {
  font-size: 17px;
}
.bg-gradient-succes {
  background: linear-gradient(35deg, rgba(37, 65, 164, 0) 31.24%, rgba(37, 65, 164, 0.13) 51.41%, rgba(43, 242, 173, 0.7) 95.77%);
  border-radius: 20px;
}
.link {
  font-size: 15px;
  font-weight: 500;
  color: white;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
}
.link:before {
  position: absolute;
  top: 1.7em;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  content: "";
  transition: width 0.3s ease;
}
.link:hover:before {
  width: 0;
}
.link:hover {
  opacity: 0.7;
}
.copyright-dev a {
  color: white;
  opacity: 0.75;
  transition: all 0.25s ease;
}
.copyright-dev a:hover {
  opacity: 1;
}
.copyright-dev a:hover svg {
  fill: #ED0D0D;
  stroke: #ED0D0D;
}
.copyright-dev-icon {
  display: inline-block;
  position: relative;
  top: -1px;
}
.copyright-dev-icon span {
  display: inline-block;
  width: 15px;
}
.copyright-dev-icon span svg {
  fill: white;
  stroke: white;
}
@keyframes heartbeat {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
}
.copyright-dev a:hover .copyright-dev-icon {
  color: #e72e2e;
}
.copyright-dev a:hover .copyright-dev-icon span {
  animation: heartbeat 1s infinite;
}
.modal-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #596f7e;
  display: none;
  z-index: 101;
  backdrop-filter: blur(7px);
  background-color: rgba(255, 255, 255, 0.1);
}
.bg-active .modal-bg {
  display: block;
}
.search-info__wrap {
  font-size: 14px;
  color: #888;
}
.search-info__body {
  position: relative;
  overflow: hidden;
  max-height: 220px;
}
.search-info__wrap.show .search-info__body {
  max-height: none;
}
.search-info__wrap.show .search-info__body:before {
  display: none;
}
.search-info__body h2, .search-info__body h3 {
  font-size: 17px;
  font-weight: 500;
}
.search-info__body ul, .search-info__body p {
  margin-bottom: 20px;
}
.search-info__body:before {
  z-index: 10;
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #fff 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(100%, #ffffff));
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #fff 100%);
  background: -ms-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #fff 100%);
  background: linear-gradient(top, rgba(255, 255, 255, 0) 0%, #fff 100%);
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 50px;
  bottom: 0;
}
.search-info__btn {
  cursor: pointer;
  margin-top: 11px;
  color: #292929;
  display: inline-block;
  font-size: 13px;
  border-bottom: 1px dotted #606060;
  line-height: normal;
}
.search-info__btn:hover {
  border-bottom: none;
  margin-bottom: 1px;
}
/*===== FONTS =====*/
@font-face {
  font-family: Montserrat;
  src: url("/fonts/Montserrat/Montserrat-Light.woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Montserrat;
  src: url("/fonts/Montserrat/Montserrat-Regular.woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Montserrat;
  src: url("/fonts/Montserrat/Montserrat-Medium.woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Montserrat;
  src: url("/fonts/Montserrat/Montserrat-SemiBold.woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Montserrat;
  src: url("/fonts/Montserrat/Montserrat-Bold.woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/*===== FONTS =====*/
html, body {
  height: 100%;
}
.wrapper {
  overflow-x: hidden;
}
.h-decor {
  position: absolute;
  top: -90px;
}
.glow_container .bg-glow:nth-child(1) {
  top: 0%;
}
.glow_container .bg-glow:nth-child(2) {
  top: 25%;
}
.glow_container .bg-glow:nth-child(3) {
  top: 50%;
}
.glow_container .bg-glow:nth-child(4) {
  top: 65%;
}
.glow_container .bg-glow-primary {
  right: -450px;
}
.glow_container .bg-glow-secondary {
  left: -450px;
}
@media (max-width: 767px) {
  .glow_container .bg-glow-primary {
    right: -550px;
  }
  .glow_container .bg-glow-secondary {
    left: -550px;
  }
}
#scrollbar {
  max-width: 100%;
  height: 100%;
}
footer {
  margin-top: auto;
  position: relative;
}
.bg-glow {
  width: 854px;
  height: 822px;
  position: absolute;
}
.bg-glow-secondary {
  background: url("/img/bg-glow-1.png") no-repeat center;
  background-size: contain;
}
.bg-glow-primary {
  background: url("/img/bg-glow-2.png") no-repeat center;
  background-size: contain;
}
.particles {
  position: absolute;
  width: 100%;
  height: 100%;
}
.particle {
  position: absolute;
  border-radius: 50%;
}
@keyframes particle-animation-1 {
  100% {
    transform: translate3d(653px, 670px, 28px);
  }
}
.particle:nth-child(1) {
  animation: particle-animation-1 50s infinite alternate;
  height: 5px;
  width: 5px;
  transform: translate3d(55px, 213px, 25px);
  background: var(--green-text);
}
@keyframes particle-animation-2 {
  100% {
    transform: translate3d(526px, 548px, 9px);
  }
}
.particle:nth-child(2) {
  animation: particle-animation-2 40s infinite alternate;
  height: 4px;
  width: 4px;
  transform: translate3d(353px, 424px, 68px);
  background: var(--green-text);
}
@keyframes particle-animation-3 {
  100% {
    transform: translate3d(692px, 210px, 20px);
  }
}
.particle:nth-child(3) {
  animation: particle-animation-3 50s infinite alternate;
  height: 6px;
  width: 6px;
  transform: translate3d(452px, 314px, 66px);
  background: var(--green-text);
}
@keyframes particle-animation-4 {
  100% {
    transform: translate3d(26px, 220px, 19px);
  }
}
.particle:nth-child(4) {
  animation: particle-animation-4 60s infinite alternate;
  height: 7px;
  width: 7px;
  transform: translate3d(120px, 638px, 65px);
  background: var(--green-text);
}
@keyframes particle-animation-5 {
  100% {
    transform: translate3d(694px, 558px, 47px);
  }
}
.particle:nth-child(5) {
  animation: particle-animation-5 50s infinite alternate;
  height: 5px;
  width: 5px;
  transform: translate3d(461px, 474px, 70px);
  background: var(--green-text);
}
@keyframes particle-animation-6 {
  100% {
    transform: translate3d(314px, 242px, 74px);
  }
}
.particle:nth-child(6) {
  animation: particle-animation-6 40s infinite alternate;
  height: 7px;
  width: 7px;
  transform: translate3d(533px, 688px, 82px);
  background: var(--green-text);
}
@keyframes particle-animation-7 {
  100% {
    transform: translate3d(611px, 82px, 26px);
  }
}
.particle:nth-child(7) {
  animation: particle-animation-7 60s infinite alternate;
  height: 6px;
  width: 6px;
  transform: translate3d(355px, 225px, 54px);
  background: var(--green-text);
}
@keyframes particle-animation-8 {
  100% {
    transform: translate3d(288px, 626px, 62px);
  }
}
.page-buyers, .page-sellers {
  display: none;
}
.js-page-buyers .page-buyers {
  display: block;
}
.js-page-sellers .page-sellers {
  display: block;
}
.gradient-text {
  background: linear-gradient(to right, #000000, white, #000000);
  background-size: 200% 200%;
  animation: rainbow 7s ease-in-out infinite;
  background-clip: text;
  -webkit-background-clip: text;
  color: rgba(0, 0, 0, 0);
}
@keyframes rainbow {
  0% {
    background-position: left;
  }
  50% {
    background-position: right;
  }
  100% {
    background-position: left;
  }
}
.lines-animate-wrap {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  overflow: hidden;
  z-index: 1;
}
.lines-animate-wrap .container {
  height: 100%;
}
.lines-animate-wrap .lines-animate {
  height: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.lines-animate-wrap .lines-animate__item {
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  top: 0;
  left: 0;
  position: relative;
}
.background-glow:before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  animation: bg-glow 10s ease-in-out infinite;
}
.background-glow-green:before {
  background-image: url(/img/bg-glow.jpg);
}
.background-glow-orange:before {
  background-image: url(/img/bg-glow-2.jpg);
}
.background-glow-gray:before {
  background-image: url(/img/bg-glow-3.jpg);
}
.background-glow-green2:before {
  background-image: url(/img/bg-glow-4.jpg);
}
@keyframes bg-glow {
  0% {
    opacity: 0.3;
  }
  30% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0.3;
  }
}
.promo {
  margin-top: -160px;
}
.promo .btn-circle {
  font-size: 20px;
  transition: all 0.25s ease-out;
}
.promo .btn-circle:hover:before {
  background-color: #000;
}
.promo .btn-circle:hover {
  color: white;
}
.promo .btn-circle span {
  transition: all 0.25s ease-out;
}
.promo .btn-circle:hover span {
  transform: rotate(20deg);
}
.promo .btn-circle-wrap.left {
  bottom: -110px;
  left: -320px;
}
.promo .btn-circle-wrap.right {
  bottom: 20px;
  right: -320px;
}
.promo__item {
  display: block;
  position: absolute;
  padding: 15px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.1);
  z-index: 10;
  width: 124px;
  height: 124px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.promo__item-1 {
  left: -15px;
  top: -100px;
}
.promo__item-2 {
  right: -15px;
  top: -100px;
}
.promo__item-3 {
  right: -80px;
  top: 60px;
  padding: 10px;
}
.promo__item-4 {
  left: -80px;
  top: 60px;
}
.promo__item_text {
  font-size: 13px;
  font-weight: 500;
  color: white;
  margin-top: 7px;
}
@media (max-width: 1199px) {
  .promo .btn-circle-wrap.right {
    right: -240px;
  }
  .promo .btn-circle-wrap.left {
    left: -240px;
  }
}
@media (max-width: 991px) {
  .btn-circle-wrap {
    position: static !important;
  }
}
@media (max-width: 767px) {
  .promo__item-1 {
    top: -170px;
    left: 20px;
  }
  .promo__item-2 {
    top: -170px;
    right: 20px;
  }
  .promo__item-3 {
    right: 20px;
    top: -20px;
  }
  .promo__item-4 {
    left: 20px;
    top: -20px;
  }
}
.card-two-column {
  background-color: #F3F3F3;
  position: relative;
}
.card-two-column__number {
  position: absolute;
  left: 30px;
  top: 20px;
  font-size: 45px;
  font-weight: 300;
}
.card-two-column__text {
  font-size: 17px;
  line-height: 1.8;
}
.card-two-column-success {
  background-color: #BDF841;
}
.card-two-column-dark {
  background-color: #000000;
}
.card-two-column-dark .card-two-column__number {
  color: #BDF841;
}
.card-two-column-dark .card-two-column__text a {
  color: #BDF841;
}
.card-two-column-dark .card-two-column__title {
  color: white;
}
.card-two-column-dark .card-two-column__text {
  color: white;
}
@media (max-width: 991px) {
  .card-two-column__number {
    top: 35px;
    font-size: 35px;
    left: 48px;
  }
  .card-two-column img {
    max-width: 70px;
  }
}
.js-lottie-animation {
  width: 100%;
}
.header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 100;
}
.header .nav {
  margin-top: -10px;
}
.header .nav li a {
  font-size: 15px;
  font-weight: 600;
  color: #111;
  position: relative;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.header .nav li a:before {
  position: absolute;
  top: 34px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.5);
  content: "";
  -webkit-transition: width 0.3s ease;
  -moz-transition: width 0.3s ease;
  -ms-transition: width 0.3s ease;
  -o-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
.header .nav li a:hover:before {
  width: 0;
}
.header .nav li a.js-click-toggle-page.active {
  color: rgba(255, 255, 255, 0.4);
}
.header .nav li a.js-click-toggle-page.active:before {
  display: none;
}
.header__action {
  padding-left: 20px;
}
.logo img {
  width: 243px;
}
.header .hamburger__line, .header .hamburger__line:before, .header .hamburger__line:after {
  background-color: #fff;
}
.footer {
  position: relative;
  background-color: #000;
}
.footer .lines-animate__item:nth-child(2n) .lines-animate__item__animate {
  position: relative;
  top: -30px;
  width: 1px;
  height: 30px;
  background-color: #fff;
  animation: moveDownFade 3s ease-out infinite;
}
@keyframes moveDownFade {
  0% {
    top: -30px;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  100% {
    top: 220px;
    opacity: 0;
  }
}
.footer .btn-circle-wrap {
  top: -500px;
  width: 100%;
}
.footer .btn-circle {
  font-size: 60px;
  width: 430px;
  height: 430px;
  line-height: 1.2;
  font-weight: 700;
}
.footer .gradient-text {
  transition: all 0.5s ease;
}
.footer .gradient-text:hover {
  color: white;
  opacity: 1;
}
.footer__in {
  height: 70vh;
  min-height: 500px;
}
.footer__copyright {
  width: 100%;
  color: #fff;
  font-size: 0.95rem;
}
.footer__action p {
  font-size: 16px;
  line-height: 1.7;
  color: white;
  opacity: 0.7;
}
.footer__in {
  position: relative;
}
@media (max-width: 767px) {
  .footer .btn-circle-wrap {
    top: -370px;
  }
  .footer__container {
    padding-top: 7rem;
  }
  .footer .btn-circle {
    font-size: 45px;
    width: 300px;
    height: 300px;
  }
  .footer.background-glow:before {
    background-image: none;
  }
}
.informer {
  position: relative;
  overflow: hidden;
  min-height: 960px;
  max-height: 1200px;
  background-color: #000;
}
.informer__in {
  position: relative;
  z-index: 10;
  margin-top: 150px;
  margin-bottom: 220px;
}
.informer__col__right {
  align-self: flex-end;
}
.informer .container {
  position: relative;
}
.informer__title {
  color: #fff;
  line-height: 1.35;
  font-weight: 700;
}
.informer__text {
  font-size: 18px;
  color: #fff;
}
.informer__text p {
  line-height: 2;
}
.informer .bg-glow-secondary {
  top: -450px;
  left: -350px;
}
.informer .bg-glow-primary {
  top: -450px;
  right: -450px;
}
.informer .btn {
  font-size: 17px;
}
@media (max-width: 767px) {
  .informer .bg-glow-secondary {
    left: -24%;
  }
  .informer__in {
    margin-top: 80px;
    margin-bottom: 280px;
  }
  .informer__text {
    font-size: 0.9rem;
  }
  .informer .background-glow {
    background-position: center right !important;
  }
  .informer.background-glow:before {
    background-position: center right;
  }
}
@media (max-width: 575px) {
  .promo .btn-circle {
    width: 140px;
    height: 140px;
    font-size: 18px;
  }
}
.informer2 {
  position: relative;
  overflow: hidden;
  background-color: #000;
}
.informer2__in {
  position: relative;
  z-index: 10;
}
.informer2__col__right {
  align-self: flex-end;
}
.informer2 .container {
  position: relative;
}
.informer2__title {
  color: #fff;
  line-height: 1.35;
  font-weight: 700;
}
.informer2__text {
  font-size: 18px;
  color: #fff;
}
.informer2__text p {
  line-height: 2;
}
.informer2 .bg-glow-secondary {
  top: -450px;
  left: -350px;
}
.informer2 .bg-glow-primary {
  top: -450px;
  right: -450px;
}
.informer2 .btn {
  font-size: 17px;
}
@media (max-width: 767px) {
  .informer2 .bg-glow-secondary {
    left: -24%;
  }
  .informer2__text {
    font-size: 0.9rem;
  }
  .informer2 .background-glow {
    background-position: center right !important;
  }
  .informer2.background-glow:before {
    background-position: center right;
  }
}
.rows .layer__parent {
  position: relative;
}
.rows .layer2 {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
}
.rows__item__title {
  line-height: 1.4;
  font-weight: 700;
}
.rows__item__text {
  line-height: 1.9;
  font-size: 18px;
}
@keyframes levitation {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes levitation_and_rotate {
  0% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(10px) rotate(10deg);
    transform: translateY(10px) rotate(10deg);
  }
  to {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
}
@media (min-width: 1200px) {
  .rows__container {
    max-width: 1000px;
  }
}
@media (max-width: 767px) {
  .rows img, .rows svg {
    max-width: 300px;
  }
  .rows__item__title {
    font-size: 1.8rem;
  }
  .rows__item__text {
    font-size: 0.9rem;
  }
}
@media (max-width: 575px) {
  .rows img, .rows svg {
    max-width: 250px;
  }
}
.faq {
  position: relative;
}
.faq .lines-animate__item {
  background-color: white;
}
.faq .container {
  max-width: 740px;
  position: relative;
  z-index: 10;
}
.faq .accordion-button {
  color: #111;
}
.faq .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23111111'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}
.faq .accordion-item {
  border-bottom: 1px solid #d3d3d3;
  color: #111;
}
.faq__item__title {
  line-height: 1.4;
}
.faq__item__text {
  line-height: 1.9;
}
.js-page-sellers .faq {
  background-color: white !important;
}
.toggle {
  margin-top: -75px;
  position: relative;
  z-index: 3;
}
.toggle__title {
  color: white;
  font-size: 1rem;
  text-align: center;
  margin-bottom: 1.1rem;
}
/* Mode Toggle / */
.btn-mode {
  padding: 0 70px;
  position: relative;
}
.btn-mode__text {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
  font-size: 0.85rem;
  position: absolute;
  top: 5px;
}
.btn-mode__text.active {
  color: white;
}
.btn-mode__text--left {
  right: 70px;
}
.btn-mode__text--right {
  left: 70px;
}
.btn-mode .checkbox {
  opacity: 0;
  position: absolute;
}
.btn-mode .checkbox-label {
  background-color: #000;
  width: 60px;
  height: 30px;
  border-radius: 50px;
  position: relative;
  padding: 5px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.btn-mode__icon {
  position: relative;
  z-index: 10;
}
.btn-mode__icon--moon {
  fill: #4F4F4F;
  margin-right: 3px;
}
.btn-mode__icon--sun {
  fill: #F0880D;
  margin-left: 3px;
}
.btn-mode .checkbox-label .ball {
  background-color: #fff;
  width: 22px;
  height: 22px;
  position: absolute;
  left: 4px;
  top: 4px;
  border-radius: 50%;
  transition: all 0.2s linear;
}
.btn-mode .checkbox:checked + .checkbox-label .ball {
  transform: translateX(30px);
}
/* Mode Toggle / */
/* Mode Toggle 2 / */
.btn-mode2 {
  display: flex;
  justify-content: center;
}
.btn-mode2 .checkbox {
  opacity: 0;
  position: absolute;
}
.btn-mode2 .checkbox-label {
  background-color: #22212F;
  width: 303px;
  height: 76px;
  border-radius: 50px;
  position: relative;
  padding: 5px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  border: 7px solid white;
}
.btn-mode2__text {
  position: relative;
  z-index: 10;
  display: inline-block;
  width: 50%;
  text-align: center;
  font-weight: 600;
}
.btn-mode2__text.active {
  color: #111;
}
.btn-mode2 .checkbox-label .ball {
  background-color: #fff;
  width: 133px;
  height: 48px;
  position: absolute;
  left: 8px;
  top: 7px;
  border-radius: 100px;
  transition: all 0.35s ease-out;
}
.btn-mode2 .checkbox:checked + .checkbox-label .ball {
  transform: translateX(141px);
}
/* Mode Toggle 2 / */
@media (max-width: 767px) {
  .btn-mode2__text {
    font-size: 0.9rem;
  }
  .btn-mode2 .checkbox-label {
    height: 70px;
    width: 240px;
  }
  .btn-mode2 .checkbox-label .ball {
    height: 42px;
    width: 100px;
  }
  .btn-mode2 .checkbox:checked + .checkbox-label .ball {
    transform: translateX(110px);
  }
}
.noUi-target {
  background-color: white;
  border: none;
  box-shadow: none;
}
.noUi-horizontal {
  height: 7px;
}
.noUi-connect {
  background: #111111;
}
.noUi-handle {
  border: none;
  border-radius: 30px;
  background: #111111;
  box-shadow: none;
}
.noUi-horizontal .noUi-handle {
  width: 20px;
  height: 20px;
  right: -17px;
  top: -7px;
}
.noUi-handle:before, .noUi-handle:after {
  display: none;
}
.noUi-tooltip {
  border: none;
  border-radius: 30px;
  background: #111111;
  color: white;
  padding: 7px 25px;
  font-size: 1rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .noUi-tooltip {
    padding: 7px 15px;
  }
}
.hamburger {
  cursor: pointer;
}
.active > .hamburger .hamburger__line {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.active > .hamburger .hamburger__line::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}
.active > .hamburger .hamburger__line::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger__box {
  width: 28px;
  height: 24px;
  position: relative;
  vertical-align: middle;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hamburger__line, .hamburger__line:before, .hamburger__line:after {
  width: 28px;
  height: 1px;
  border-radius: 10px;
  background-color: #111;
  position: absolute;
  transition-property: transform, width;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger__line:before {
  top: -8px;
  content: "";
  display: block;
}
.hamburger__line:after {
  bottom: -8px;
  content: "";
  display: block;
}
.nav-mobile__inner {
  padding: 30px 40px;
}
.nav-mobile {
  display: block;
  overflow: hidden;
  width: 340px;
  height: 100%;
  position: fixed;
  z-index: 110;
  top: 0;
  left: -340px;
  background: #f5f5f5;
  overflow-y: auto;
  visibility: hidden;
  transition: all 0.5s ease;
}
.nav-mobile.active {
  transform: translateX(100%);
  visibility: visible;
}
.nav-mobile li {
  margin-bottom: 32px;
  margin-top: 32px;
}
.nav-mobile li a {
  color: #000;
}
.nav-mobile li a:before {
  background-color: #000;
}
.nav-mobile li a:hover {
  opacity: 1;
}
.nav-mobile__button {
  position: absolute;
  top: 20px;
  right: 20px;
}
.nav-mobile__link {
  font-size: 36px;
  line-height: 1.2;
  cursor: pointer;
  color: #111;
  font-weight: 500;
}
.nav-mobile__link svg {
  width: 35px;
  height: 35px;
  margin-left: 4px;
  display: inline-block;
  vertical-align: middle;
  transition: transform 0.15s ease;
}
/* Make clicks pass-through */
#nprogress {
  pointer-events: none;
}
#nprogress .bar {
  background: #596f7e;
  position: fixed;
  z-index: 100031;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
}
/* Fancy blur effect */
#nprogress .peg {
  display: block;
  position: absolute;
  right: 0px;
  width: 100px;
  height: 100%;
  box-shadow: 0 0 10px #fdb72f, 0 0 5px #fdb72f;
  opacity: 1;
  -webkit-transform: rotate(3deg) translate(0px, -4px);
  -ms-transform: rotate(3deg) translate(0px, -4px);
  transform: rotate(3deg) translate(0px, -4px);
}
/* Remove these to get rid of the spinner */
#nprogress .spinner {
  display: block;
  position: fixed;
  z-index: 1031;
  top: 15px;
  right: 15px;
}
#nprogress .spinner-icon {
  width: 18px;
  height: 18px;
  box-sizing: border-box;
  border: solid 2px transparent;
  border-top-color: #29d;
  border-left-color: #29d;
  border-radius: 50%;
  -webkit-animation: nprogress-spinner 400ms linear infinite;
  animation: nprogress-spinner 400ms linear infinite;
}
.nprogress-custom-parent {
  overflow: hidden;
  position: relative;
}
.nprogress-custom-parent #nprogress .spinner,
.nprogress-custom-parent #nprogress .bar {
  position: absolute;
}
@-webkit-keyframes nprogress-spinner {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes nprogress-spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.results__pair_text {
  height: 90px;
}
.button-clear {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}
.get_started__line {
  width: 1px;
  background: rgb(255, 255, 255);
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3477766106) 0%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  bottom: -50px;
  left: 50%;
  height: 110%;
}
.get_started__item {
  width: 240px;
  height: 240px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}
.get_started__item:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  transition: all 0.5s ease;
  background: rgb(255, 255, 255);
  background: linear-gradient(45deg, rgba(255, 255, 255, 0) 35%, rgba(255, 255, 255, 0.3477766106) 100%);
}
.get_started__item_in {
  position: relative;
  z-index: 10;
}
.get_started__item:hover {
  opacity: 1;
  border: 1px solid rgba(255, 255, 255, 0.75);
}
.get_started__item:hover:before {
  opacity: 0;
}
.get_started__item_name {
  font-size: 20px;
  font-weight: 500;
  color: white;
}
.other-crypto {
  text-align: center;
}
.other-crypto svg {
  width: 66px;
  height: 66px;
}
.other-crypto__item {
  width: 150px;
}
a.other-crypto__item svg {
  transition: all 0.25s ease-out;
}
a.other-crypto__item:hover svg {
  transform: translateY(-10px);
}
.animate-hover-up {
  transition: all 0.25s ease-out;
}
.animate-hover-up:hover {
  transform: translateY(-10px) !important;
}