.btn {
  border-width: 2px;
}
body {
  font-family: 'Rubik', sans-serif;
}
.display-1 {
  font-family: 'Rubik', sans-serif;
  font-size: 3.7rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 4.625rem;
}
.display-2 {
  font-family: 'Rubik', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Rubik', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Rubik', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Rubik', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 2.96rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.59rem;
    font-size: calc( 1.945rem + (3.7 - 1.945) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.945rem + (3.7 - 1.945) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 2rem;
  border-radius: 10px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 10px;
}
.bg-primary {
  background-color: #4f4fe0 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #b9abe5 !important;
}
.bg-warning {
  background-color: #282b2f !important;
}
.bg-danger {
  background-color: #212428 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #4f4fe0 !important;
  border-color: #4f4fe0 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #4f4fe0 !important;
  border-color: #4f4fe0 !important;
  transform: translateY(-3px);
  /* moves it up 3px */
  transition: transform 0.2s ease;
  /* smooth animation */
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2020b8 !important;
  border-color: #2020b8 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #8364e2 !important;
  border-color: #8364e2 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #8364e2 !important;
  border-color: #8364e2 !important;
  transform: translateY(-3px);
  /* moves it up 3px */
  transition: transform 0.2s ease;
  /* smooth animation */
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #4e26ca !important;
  border-color: #4e26ca !important;
}
.btn-info,
.btn-info:active {
  background-color: #b9abe5 !important;
  border-color: #b9abe5 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #b9abe5 !important;
  border-color: #b9abe5 !important;
  transform: translateY(-3px);
  /* moves it up 3px */
  transition: transform 0.2s ease;
  /* smooth animation */
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #8269d1 !important;
  border-color: #8269d1 !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  transform: translateY(-3px);
  /* moves it up 3px */
  transition: transform 0.2s ease;
  /* smooth animation */
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #282b2f !important;
  border-color: #282b2f !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #282b2f !important;
  border-color: #282b2f !important;
  transform: translateY(-3px);
  /* moves it up 3px */
  transition: transform 0.2s ease;
  /* smooth animation */
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #212428 !important;
  border-color: #212428 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #212428 !important;
  border-color: #212428 !important;
  transform: translateY(-3px);
  /* moves it up 3px */
  transition: transform 0.2s ease;
  /* smooth animation */
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-white {
  color: #4f4fe0 !important;
  background-color: white;
}
.btn-white,
.btn-white:active {
  background-color: white !important;
  border-color: white !important;
  color: #000000 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #000000 !important;
  background-color: white !important;
  border-color: white !important;
  transform: translateY(-3px);
  /* moves it up 3px */
  transition: transform 0.2s ease;
  /* smooth animation */
}
.btn-white.disabled,
.btn-white:disabled {
  color: #000000 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-white:hover,
.btn-white:active {
  color: #4f4fe0 !important;
  box-shadow: #4f4fe0 2px 2px 20px 0px;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
  transform: translateY(-3px);
  /* moves it up 3px */
  transition: transform 0.2s ease;
  /* smooth animation */
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #4f4fe0;
  color: #4f4fe0;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  transform: translateY(-2px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: #2020b8 !important;
  background-color: transparent !important;
  border-color: #2020b8 !important;
  box-shadow: none !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #4f4fe0 !important;
  border-color: #4f4fe0 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #8364e2;
  color: #8364e2;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  transform: translateY(-2px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: #4e26ca !important;
  background-color: transparent !important;
  border-color: #4e26ca !important;
  box-shadow: none !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #8364e2 !important;
  border-color: #8364e2 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #b9abe5;
  color: #b9abe5;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  transform: translateY(-2px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: #8269d1 !important;
  background-color: transparent !important;
  border-color: #8269d1 !important;
  box-shadow: none !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #b9abe5 !important;
  border-color: #b9abe5 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #40b0bf;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  transform: translateY(-2px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: #2a747e !important;
  background-color: transparent !important;
  border-color: #2a747e !important;
  box-shadow: none !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #282b2f;
  color: #282b2f;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  transform: translateY(-2px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: #000000 !important;
  background-color: transparent !important;
  border-color: #000000 !important;
  box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #282b2f !important;
  border-color: #282b2f !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #212428;
  color: #212428;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  transform: translateY(-2px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: #000000 !important;
  background-color: transparent !important;
  border-color: #000000 !important;
  box-shadow: none !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #212428 !important;
  border-color: #212428 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  transform: translateY(-2px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: #000000 !important;
  background-color: transparent !important;
  border-color: #000000 !important;
  box-shadow: none !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  transform: translateY(-2px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: #cfcfcf !important;
  background-color: transparent !important;
  border-color: #cfcfcf !important;
  box-shadow: none !important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #4f4fe0 !important;
}
.text-secondary {
  color: #8364e2 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #b9abe5 !important;
}
.text-warning {
  color: #282b2f !important;
}
.text-danger {
  color: #212428 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #1e1eab !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #4923bd !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #785dcd !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #000000 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #000000 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #fafafa !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #4f4fe0;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #b9abe5;
}
.alert-warning {
  background-color: #282b2f;
}
.alert-danger {
  background-color: #212428;
}
.mbr-gallery-filter li.active .btn {
  background-color: #4f4fe0;
  border-color: #4f4fe0;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #4f4fe0;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fcfcff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #dbdee1;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #d3d6db;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Rubik', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #4f4fe0 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Rubik', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #4f4fe0;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #4f4fe0;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #4f4fe0;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #4f4fe0;
  border-bottom-color: #4f4fe0;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #4f4fe0 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #8364e2 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%234f4fe0' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-uYw6QqJMnV {
  z-index: 1000;
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYw6QqJMnV {
    flex-wrap: wrap;
  }
  .cid-uYw6QqJMnV .navbar > .container {
    flex-wrap: nowrap;
  }
}
.cid-uYw6QqJMnV .sales-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #4f4fe0;
  color: #fff;
  text-align: center;
  font-size: 16px;
  padding: 8px 15px;
  z-index: 1050;
  box-sizing: border-box;
}
.cid-uYw6QqJMnV .sales-banner p {
  margin: 0;
  font-weight: 500;
}
.cid-uYw6QqJMnV .sales-banner span {
  font-weight: 700;
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 6px;
  border-radius: 5px;
}
.cid-uYw6QqJMnV .navbar {
  top: 32px;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(0, 0, 48, 0);
}
.cid-uYw6QqJMnV .navbar.opened {
  transition: all 0.3s;
}
.cid-uYw6QqJMnV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uYw6QqJMnV .navbar .navbar-logo img {
  width: auto;
}
.cid-uYw6QqJMnV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  flex-basis: auto!important;
}
.cid-uYw6QqJMnV .navbar.collapsed {
  justify-content: center;
}
.cid-uYw6QqJMnV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uYw6QqJMnV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uYw6QqJMnV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uYw6QqJMnV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uYw6QqJMnV .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uYw6QqJMnV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uYw6QqJMnV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uYw6QqJMnV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
@media (max-width: 991px) {
  .cid-uYw6QqJMnV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uYw6QqJMnV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uYw6QqJMnV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uYw6QqJMnV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uYw6QqJMnV .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uYw6QqJMnV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uYw6QqJMnV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uYw6QqJMnV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uYw6QqJMnV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uYw6QqJMnV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uYw6QqJMnV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uYw6QqJMnV .navbar.navbar-short {
  min-height: 60px;
}
.cid-uYw6QqJMnV .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uYw6QqJMnV .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uYw6QqJMnV .opened .container {
    flex-wrap: wrap;
  }
}
.cid-uYw6QqJMnV .opened .container .navbar-collapse {
  width: 100%;
}
.cid-uYw6QqJMnV .btn {
  padding: 0.3rem 2rem;
}
.cid-uYw6QqJMnV .nav-link {
  position: relative;
}
.cid-uYw6QqJMnV .nav-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  transition: all 0.3s;
  background: #4f4fe0;
}
.cid-uYw6QqJMnV .nav-link:hover:before {
  width: 100%;
}
.cid-uYw6QqJMnV nav.navbar {
  position: fixed;
}
.cid-uYw6QqJMnV .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uYw6QqJMnV .dropdown-item small {
  display: block;
  font-size: 0.8em;
  color: #bbbbbb;
  margin-top: 2px;
}
.cid-uYw6QqJMnV .dropdown-menu {
  padding: 0;
  border-radius: 10px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uYw6QqJMnV .dropdown-item:hover,
.cid-uYw6QqJMnV .dropdown-item:focus {
  background: rgba(255, 255, 255, 0.04) !important;
  color: white !important;
}
.cid-uYw6QqJMnV .dropdown-item:first-child {
  border-radius: 10px;
}
.cid-uYw6QqJMnV .dropdown-item:last-child {
  border-radius: 10px;
}
.cid-uYw6QqJMnV .nav-dropdown .link {
  padding: 0 !important;
  margin: 0.667em 1em !important;
}
.cid-uYw6QqJMnV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
}
.cid-uYw6QqJMnV .container {
  display: flex;
  margin: auto;
}
.cid-uYw6QqJMnV .iconfont-wrapper {
  color: #4f4fe0 !important;
  font-size: 2rem;
  padding-right: 0.5rem;
}
.cid-uYw6QqJMnV .dropdown-menu,
.cid-uYw6QqJMnV .navbar.opened {
  background: #000030 !important;
}
.cid-uYw6QqJMnV .nav-item:focus,
.cid-uYw6QqJMnV .nav-link:focus {
  outline: none;
}
.cid-uYw6QqJMnV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uYw6QqJMnV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uYw6QqJMnV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uYw6QqJMnV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uYw6QqJMnV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uYw6QqJMnV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uYw6QqJMnV .navbar-short {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000030 !important;
  transition: all 0.3s;
}
.cid-uYw6QqJMnV .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uYw6QqJMnV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uYw6QqJMnV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uYw6QqJMnV .dropdown-item.active,
.cid-uYw6QqJMnV .dropdown-item:active {
  background-color: transparent;
}
.cid-uYw6QqJMnV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uYw6QqJMnV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uYw6QqJMnV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uYw6QqJMnV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000030;
}
.cid-uYw6QqJMnV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uYw6QqJMnV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uYw6QqJMnV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uYw6QqJMnV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uYw6QqJMnV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uYw6QqJMnV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uYw6QqJMnV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uYw6QqJMnV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uYw6QqJMnV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uYw6QqJMnV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uYw6QqJMnV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYw6QqJMnV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uYw6QqJMnV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uYw6QqJMnV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYw6QqJMnV .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uYw6QqJMnV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uYw6QqJMnV .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uYw6QqJMnV .navbar {
    height: 70px;
  }
  .cid-uYw6QqJMnV .navbar.opened {
    height: auto;
  }
  .cid-uYw6QqJMnV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uYBhkDpx3R {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/testbanner.jpg");
}
.cid-uYBhkDpx3R .mbr-text,
.cid-uYBhkDpx3R .mbr-section-btn {
  color: #f4f4f4;
}
.cid-uYBhkDpx3R .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYBhkDpx3R .bg {
  display: inline-block;
  width: 100%;
  max-width: 500px;
  text-align: center;
  background: rgba(79, 79, 224, 0.18);
  border: 1px solid rgba(79, 79, 224, 0.25);
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  padding: 20px 30px;
  box-sizing: border-box;
  font-size: 1rem;
  margin: 10px auto;
}
@media (max-width: 600px) {
  .cid-uYBhkDpx3R .bg {
    padding: 15px 20px;
    font-size: 0.9rem;
  }
}
.cid-uYBhkDpx3R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYBhkDpx3R .mbr-section-title {
  color: #ffffff;
}
.cid-uYBhkDpx3R .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYBhkDpx3R .mbr-section-tag {
  background-color: #4f4fe080;
  color: #ffffff;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: 10px;
  margin-bottom: 0.75rem;
}
.cid-uYBhkDpx3R .custom-shape-divider-bottom-1759527512 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.cid-uYBhkDpx3R .custom-shape-divider-bottom-1759527512 svg {
  position: relative;
  display: block;
  width: calc(101.3%);
  height: 100px;
}
.cid-uYBhkDpx3R .custom-shape-divider-bottom-1759527512 .shape-fill {
  fill: #000030;
}
.cid-uYBmKUVsjP {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000030;
}
.cid-uYBmKUVsjP .mbr-iconfont {
  display: block;
  font-size: 2.5rem;
  color: #4f4fe0;
  margin-bottom: 0.5rem;
}
.cid-uYBmKUVsjP .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-uYBmKUVsjP .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-uYBmKUVsjP .card-wrapper {
  transition: all 0.2s ease;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-uYBmKUVsjP .card-wrapper:hover {
  transform: translateY(-3px);
}
.cid-uYBmKUVsjP .card-title,
.cid-uYBmKUVsjP .card-box {
  color: #fafafa;
  text-align: center;
}
.cid-uYBmKUVsjP .main-title,
.cid-uYBmKUVsjP .title-col {
  text-align: center;
  color: #ffffff;
}
.cid-uYBmKUVsjP .card-text {
  color: #bbbbbb;
}
.cid-uYBmKUVsjP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYBmKUVsjP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYBojNSZr6 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000030;
}
.cid-uYBojNSZr6 .mbr-section-head {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding-top: 20px;
  padding-bottom: 20px;
}
.cid-uYBojNSZr6 .item-img {
  position: relative;
}
@media (max-width: 768px) {
  .cid-uYBojNSZr6 .badge-grey {
    padding: 8px 16px;
    font-size: 14px;
    top: -40px;
    max-width: 80%;
    white-space: nowrap;
  }
}
.cid-uYBojNSZr6 #searchBar,
.cid-uYBojNSZr6 #sortSelect {
  padding: 10px 20px;
  font-size: 16px;
  color: #888;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  outline: none;
  transition: all 0.3s ease;
}
.cid-uYBojNSZr6 #searchBar {
  flex: 1;
  min-width: 250px;
}
.cid-uYBojNSZr6 #sortSelect option {
  background: rgba(25, 25, 25, 0.95);
  color: #ccc;
}
.cid-uYBojNSZr6 #sortSelect {
  min-width: 180px;
  appearance: none;
  background: rgba(255, 255, 255, 0.04);
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  cursor: pointer;
}
.cid-uYBojNSZr6 #searchBar:hover,
.cid-uYBojNSZr6 #searchBar:focus,
.cid-uYBojNSZr6 #sortSelect:hover,
.cid-uYBojNSZr6 #sortSelect:focus {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.cid-uYBojNSZr6 #searchBar::placeholder {
  color: #888;
  opacity: 1;
}
.cid-uYBojNSZr6 .text-center.mb-4 {
  margin-bottom: 30px;
}
.cid-uYBojNSZr6 .tag {
  position: absolute;
  left: 0.5rem;
  top: 0.5rem;
}
.cid-uYBojNSZr6 .btn-tag {
  padding: 0.3rem 1rem;
  padding-top: 6px;
  border-radius: 6px !important;
}
.cid-uYBojNSZr6 .btn-tag:hover,
.cid-uYBojNSZr6 .btn-tag:focus {
  box-shadow: none;
}
.cid-uYBojNSZr6 img,
.cid-uYBojNSZr6 .item-img {
  width: 100%;
  margin-bottom: 0.5rem;
}
.cid-uYBojNSZr6 .item:focus,
.cid-uYBojNSZr6 span:focus {
  outline: none;
}
.cid-uYBojNSZr6 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uYBojNSZr6 .item-wrapper {
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0 0 10px 10px;
  position: relative;
  transition: transform 300ms ease, box-shadow 300ms ease;
}
.cid-uYBojNSZr6 .item-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.cid-uYBojNSZr6 .item-wrapper > * {
  position: relative;
  z-index: 2;
}
.cid-uYBojNSZr6 .item-wrapper:hover {
  transform: translateY(-3px);
}
.cid-uYBojNSZr6 .mbr-section-btn {
  margin-top: auto !important;
  padding: 0 1rem;
}
.cid-uYBojNSZr6 .mbr-section-title {
  color: #ffffff;
  padding-top: 10px;
}
.cid-uYBojNSZr6 .mbr-text,
.cid-uYBojNSZr6 .mbr-section-btn {
  color: #ffffff;
  padding: 0 1rem;
  text-align: left;
}
.cid-uYBojNSZr6 .item-title {
  color: #ffffff;
  padding: 0 1rem;
  text-align: left;
}
.cid-uYBojNSZr6 .item-subtitle {
  color: #5518fa;
  text-align: center;
}
.cid-uYBojNSZr6 .mbr-section-subtitle {
  text-align: center;
  color: #bbbbbb;
}
.cid-uYBojNSZr6 .mbr-section-subtitle1 {
  text-align: center;
  color: #4f4fe0;
}
.cid-uYBojNSZr6 .price-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #4f4fe0;
  color: #fff;
  font-weight: bold;
  padding: 5px 10px;
  font-size: 1.1em;
  border-radius: 5px;
  z-index: 10;
}
.cid-uYBDjKX5HH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000030;
}
.cid-uYBDjKX5HH .discord-banner {
  max-width: 1290px;
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px;
  margin: 20px auto;
}
.cid-uYBDjKX5HH .banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cid-uYBDjKX5HH .mbr-iconfont {
  color: #4f4fe0;
  font-size: 22px;
}
.cid-uYBDjKX5HH .banner-icon {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.05);
}
.cid-uYBDjKX5HH .banner-text {
  flex: 1;
  color: #fff;
}
.cid-uYBDjKX5HH .banner-text .mbr-section-title {
  margin: 0;
  font-weight: 600;
}
.cid-uYBDjKX5HH .banner-text .mbr-section-subtitle {
  margin: 5px 0 0;
  color: #bbbbbb;
}
.cid-uYBDjKX5HH .banner-btn .btn-support {
  background: #4f4fe0;
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  padding: 12px 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 0 20px rgba(79, 79, 224, 0.6);
  transition: all 0.3s ease-in-out;
}
.cid-uYBDjKX5HH .banner-btn .btn-support:hover {
  box-shadow: 0 0 12px #4f4fe0;
}
.cid-uYBDjKX5HH P {
  color: #bbbbbb;
}
@media (max-width: 768px) {
  .cid-uYBDjKX5HH .banner-content {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .cid-uYBDjKX5HH .banner-btn {
    width: 100%;
    margin-top: 10px;
    display: flex;
    justify-content: center;
  }
  .cid-uYBDjKX5HH .banner-btn .btn-support {
    width: auto;
    justify-content: center;
  }
}
.cid-uYBFnkrhMw {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #000030;
}
.cid-uYBFnkrhMw .mbr-section-title {
  color: #ffffff;
}
.cid-uYBFnkrhMw .mbr-text b::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #f8363c;
  border-radius: 50%;
}
.cid-uYBFnkrhMw .mbr-text,
.cid-uYBFnkrhMw .mbr-section-btn {
  color: #bbbbbb;
}
.cid-uYBFnkrhMw .mbr-section-subtitle {
  color: #4f4fe0;
}
.cid-uYBFnkrhMw img {
  border-radius: 10px;
}
.cid-uYBFnkrhMw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYBFnkrhMw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYBEsMTrg2 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000030;
}
.cid-uYBEsMTrg2 .mbr-section-subtitle {
  letter-spacing: 1px;
  margin-bottom: 1rem;
  color: #b4d8a4;
}
.cid-uYBEsMTrg2 .first-column .mbr-text {
  margin: 0;
}
.cid-uYBEsMTrg2 .row {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
  padding: 1.5rem;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .cid-uYBEsMTrg2 .row {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
}
.cid-uYBEsMTrg2 .form-group {
  max-width: 55%;
}
.cid-uYBEsMTrg2 .form-group,
.cid-uYBEsMTrg2 .mbr-section-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-uYBEsMTrg2 .form-control {
  font-size: 0.9rem;
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border: none !important;
  width: 100%;
  padding: 0.3rem 1rem;
  background: #353535;
  color: #bbbbbb;
}
.cid-uYBEsMTrg2 .form-control::-webkit-input-placeholder {
  color: #bbbbbb;
}
.cid-uYBEsMTrg2 .form-control::-moz-placeholder {
  color: #bbbbbb;
}
.cid-uYBEsMTrg2 .form-control:-moz-placeholder {
  color: #bbbbbb;
}
.cid-uYBEsMTrg2 .form-control:-ms-input-placeholder {
  color: #bbbbbb;
}
.cid-uYBEsMTrg2 .form-control:hover,
.cid-uYBEsMTrg2 .form-control:focus {
  border: none !important;
}
.cid-uYBEsMTrg2 .col + .mbr-section-btn .btn,
.cid-uYBEsMTrg2 .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-top-right-radius: 1rem !important;
  border-bottom-right-radius: 1rem !important;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  padding: 0 2.2rem !important;
}
.cid-uYBEsMTrg2 .dragArea > *:nth-last-child(2).col,
.cid-uYBEsMTrg2 .dragArea > *:nth-last-child(2).col-auto,
.cid-uYBEsMTrg2 .col + .mbr-section-btn,
.cid-uYBEsMTrg2 .col-auto + .mbr-section-btn {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uYBEsMTrg2 .mbr-form .row {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uYBEsMTrg2 .mbr-section-title {
  color: #e6e6e6;
}
.cid-uYBEsMTrg2 .mbr-section-subtitle,
.cid-uYBEsMTrg2 .icons-wrapper {
  color: #bbbbbb;
}
.cid-uYBEsMTrg2 P {
  color: #ffffff;
}
.cid-uYBEsMTrg2 .mbr-section-title,
.cid-uYBEsMTrg2 .icons-wrapper {
  color: #ffffff;
}
.cid-uYBEsMTrg2 .custom-gradient {
  background-image: linear-gradient(90deg, #7311d0, #a74dfd);
  text-shadow: 0 0 18px #7311d0;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}
.cid-uZ0cOYJ0K2 {
  z-index: 1000;
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uZ0cOYJ0K2 {
    flex-wrap: wrap;
  }
  .cid-uZ0cOYJ0K2 .navbar > .container {
    flex-wrap: nowrap;
  }
}
.cid-uZ0cOYJ0K2 .sales-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #4f4fe0;
  color: #fff;
  text-align: center;
  font-size: 16px;
  padding: 8px 15px;
  z-index: 1050;
  box-sizing: border-box;
}
.cid-uZ0cOYJ0K2 .sales-banner p {
  margin: 0;
  font-weight: 500;
}
.cid-uZ0cOYJ0K2 .sales-banner span {
  font-weight: 700;
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 6px;
  border-radius: 5px;
}
.cid-uZ0cOYJ0K2 .navbar {
  top: 32px;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(0, 0, 48, 0);
}
.cid-uZ0cOYJ0K2 .navbar.opened {
  transition: all 0.3s;
}
.cid-uZ0cOYJ0K2 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uZ0cOYJ0K2 .navbar .navbar-logo img {
  width: auto;
}
.cid-uZ0cOYJ0K2 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  flex-basis: auto!important;
}
.cid-uZ0cOYJ0K2 .navbar.collapsed {
  justify-content: center;
}
.cid-uZ0cOYJ0K2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uZ0cOYJ0K2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uZ0cOYJ0K2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uZ0cOYJ0K2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uZ0cOYJ0K2 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uZ0cOYJ0K2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uZ0cOYJ0K2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uZ0cOYJ0K2 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
@media (max-width: 991px) {
  .cid-uZ0cOYJ0K2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uZ0cOYJ0K2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uZ0cOYJ0K2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uZ0cOYJ0K2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uZ0cOYJ0K2 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uZ0cOYJ0K2 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uZ0cOYJ0K2 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uZ0cOYJ0K2 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uZ0cOYJ0K2 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uZ0cOYJ0K2 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uZ0cOYJ0K2 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uZ0cOYJ0K2 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uZ0cOYJ0K2 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uZ0cOYJ0K2 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uZ0cOYJ0K2 .opened .container {
    flex-wrap: wrap;
  }
}
.cid-uZ0cOYJ0K2 .opened .container .navbar-collapse {
  width: 100%;
}
.cid-uZ0cOYJ0K2 .btn {
  padding: 0.3rem 2rem;
}
.cid-uZ0cOYJ0K2 .nav-link {
  position: relative;
}
.cid-uZ0cOYJ0K2 .nav-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  transition: all 0.3s;
  background: #4f4fe0;
}
.cid-uZ0cOYJ0K2 .nav-link:hover:before {
  width: 100%;
}
.cid-uZ0cOYJ0K2 nav.navbar {
  position: fixed;
}
.cid-uZ0cOYJ0K2 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uZ0cOYJ0K2 .dropdown-item small {
  display: block;
  font-size: 0.8em;
  color: #bbbbbb;
  margin-top: 2px;
}
.cid-uZ0cOYJ0K2 .dropdown-menu {
  padding: 0;
  border-radius: 10px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uZ0cOYJ0K2 .dropdown-item:hover,
.cid-uZ0cOYJ0K2 .dropdown-item:focus {
  background: rgba(255, 255, 255, 0.04) !important;
  color: white !important;
}
.cid-uZ0cOYJ0K2 .dropdown-item:first-child {
  border-radius: 10px;
}
.cid-uZ0cOYJ0K2 .dropdown-item:last-child {
  border-radius: 10px;
}
.cid-uZ0cOYJ0K2 .nav-dropdown .link {
  padding: 0 !important;
  margin: 0.667em 1em !important;
}
.cid-uZ0cOYJ0K2 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
}
.cid-uZ0cOYJ0K2 .container {
  display: flex;
  margin: auto;
}
.cid-uZ0cOYJ0K2 .iconfont-wrapper {
  color: #4f4fe0 !important;
  font-size: 2rem;
  padding-right: 0.5rem;
}
.cid-uZ0cOYJ0K2 .dropdown-menu,
.cid-uZ0cOYJ0K2 .navbar.opened {
  background: #000030 !important;
}
.cid-uZ0cOYJ0K2 .nav-item:focus,
.cid-uZ0cOYJ0K2 .nav-link:focus {
  outline: none;
}
.cid-uZ0cOYJ0K2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uZ0cOYJ0K2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uZ0cOYJ0K2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uZ0cOYJ0K2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uZ0cOYJ0K2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uZ0cOYJ0K2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uZ0cOYJ0K2 .navbar-short {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000030 !important;
  transition: all 0.3s;
}
.cid-uZ0cOYJ0K2 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uZ0cOYJ0K2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uZ0cOYJ0K2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uZ0cOYJ0K2 .dropdown-item.active,
.cid-uZ0cOYJ0K2 .dropdown-item:active {
  background-color: transparent;
}
.cid-uZ0cOYJ0K2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uZ0cOYJ0K2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uZ0cOYJ0K2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uZ0cOYJ0K2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000030;
}
.cid-uZ0cOYJ0K2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uZ0cOYJ0K2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uZ0cOYJ0K2 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uZ0cOYJ0K2 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uZ0cOYJ0K2 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uZ0cOYJ0K2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uZ0cOYJ0K2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uZ0cOYJ0K2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uZ0cOYJ0K2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uZ0cOYJ0K2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uZ0cOYJ0K2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uZ0cOYJ0K2 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uZ0cOYJ0K2 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uZ0cOYJ0K2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uZ0cOYJ0K2 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uZ0cOYJ0K2 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uZ0cOYJ0K2 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uZ0cOYJ0K2 .navbar {
    height: 70px;
  }
  .cid-uZ0cOYJ0K2 .navbar.opened {
    height: auto;
  }
  .cid-uZ0cOYJ0K2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uZ0cOZr8hX {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/testbanner.jpg");
}
.cid-uZ0cOZr8hX .mbr-text,
.cid-uZ0cOZr8hX .mbr-section-btn {
  color: #f4f4f4;
}
.cid-uZ0cOZr8hX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ0cOZr8hX .bg {
  display: inline-block;
  width: 100%;
  max-width: 500px;
  text-align: center;
  background: rgba(79, 79, 224, 0.18);
  border: 1px solid rgba(79, 79, 224, 0.25);
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  padding: 20px 30px;
  box-sizing: border-box;
  font-size: 1rem;
  margin: 10px auto;
}
@media (max-width: 600px) {
  .cid-uZ0cOZr8hX .bg {
    padding: 15px 20px;
    font-size: 0.9rem;
  }
}
.cid-uZ0cOZr8hX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ0cOZr8hX .mbr-section-title {
  color: #ffffff;
}
.cid-uZ0cOZr8hX .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZ0cOZr8hX .mbr-section-tag {
  background-color: #4f4fe080;
  color: #ffffff;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: 10px;
  margin-bottom: 0.75rem;
}
.cid-uZ0cOZr8hX .custom-shape-divider-bottom-1759527512 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.cid-uZ0cOZr8hX .custom-shape-divider-bottom-1759527512 svg {
  position: relative;
  display: block;
  width: calc(101.3%);
  height: 100px;
}
.cid-uZ0cOZr8hX .custom-shape-divider-bottom-1759527512 .shape-fill {
  fill: #000030;
}
.cid-uZ0cP0Nm1X {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000030;
}
.cid-uZ0cP0Nm1X .mbr-section-head {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding-top: 20px;
  padding-bottom: 20px;
}
.cid-uZ0cP0Nm1X .item-img {
  position: relative;
}
@media (max-width: 768px) {
  .cid-uZ0cP0Nm1X .badge-grey {
    padding: 8px 16px;
    font-size: 14px;
    top: -40px;
    max-width: 80%;
    white-space: nowrap;
  }
}
.cid-uZ0cP0Nm1X #searchBar,
.cid-uZ0cP0Nm1X #sortSelect {
  padding: 10px 20px;
  font-size: 16px;
  color: #888;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  outline: none;
  transition: all 0.3s ease;
}
.cid-uZ0cP0Nm1X #searchBar {
  flex: 1;
  min-width: 250px;
}
.cid-uZ0cP0Nm1X #sortSelect option {
  background: rgba(25, 25, 25, 0.95);
  color: #ccc;
}
.cid-uZ0cP0Nm1X #sortSelect {
  min-width: 180px;
  appearance: none;
  background: rgba(255, 255, 255, 0.04);
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  cursor: pointer;
}
.cid-uZ0cP0Nm1X #searchBar:hover,
.cid-uZ0cP0Nm1X #searchBar:focus,
.cid-uZ0cP0Nm1X #sortSelect:hover,
.cid-uZ0cP0Nm1X #sortSelect:focus {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.cid-uZ0cP0Nm1X #searchBar::placeholder {
  color: #888;
  opacity: 1;
}
.cid-uZ0cP0Nm1X .text-center.mb-4 {
  margin-bottom: 30px;
}
.cid-uZ0cP0Nm1X .tag {
  position: absolute;
  left: 0.5rem;
  top: 0.5rem;
}
.cid-uZ0cP0Nm1X .btn-tag {
  padding: 0.3rem 1rem;
  padding-top: 6px;
  border-radius: 6px !important;
}
.cid-uZ0cP0Nm1X .btn-tag:hover,
.cid-uZ0cP0Nm1X .btn-tag:focus {
  box-shadow: none;
}
.cid-uZ0cP0Nm1X img,
.cid-uZ0cP0Nm1X .item-img {
  width: 100%;
  margin-bottom: 0.5rem;
}
.cid-uZ0cP0Nm1X .item:focus,
.cid-uZ0cP0Nm1X span:focus {
  outline: none;
}
.cid-uZ0cP0Nm1X .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uZ0cP0Nm1X .item-wrapper {
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0 0 10px 10px;
  position: relative;
  transition: transform 300ms ease, box-shadow 300ms ease;
}
.cid-uZ0cP0Nm1X .item-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.cid-uZ0cP0Nm1X .item-wrapper > * {
  position: relative;
  z-index: 2;
}
.cid-uZ0cP0Nm1X .item-wrapper:hover {
  transform: translateY(-3px);
}
.cid-uZ0cP0Nm1X .mbr-section-btn {
  margin-top: auto !important;
  padding: 0 1rem;
}
.cid-uZ0cP0Nm1X .mbr-section-title {
  color: #ffffff;
  padding-top: 10px;
}
.cid-uZ0cP0Nm1X .mbr-text,
.cid-uZ0cP0Nm1X .mbr-section-btn {
  color: #ffffff;
  padding: 0 1rem;
  text-align: left;
}
.cid-uZ0cP0Nm1X .item-title {
  color: #ffffff;
  padding: 0 1rem;
  text-align: left;
}
.cid-uZ0cP0Nm1X .item-subtitle {
  color: #5518fa;
  text-align: center;
}
.cid-uZ0cP0Nm1X .mbr-section-subtitle {
  text-align: center;
  color: #bbbbbb;
}
.cid-uZ0cP0Nm1X .mbr-section-subtitle1 {
  text-align: center;
  color: #4f4fe0;
}
.cid-uZ0cP0Nm1X .price-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #4f4fe0;
  color: #fff;
  font-weight: bold;
  padding: 5px 10px;
  font-size: 1.1em;
  border-radius: 5px;
  z-index: 10;
}
.cid-uZ0cP1OBBB {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000030;
}
.cid-uZ0cP1OBBB .discord-banner {
  max-width: 1290px;
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px;
  margin: 20px auto;
}
.cid-uZ0cP1OBBB .banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cid-uZ0cP1OBBB .mbr-iconfont {
  color: #4f4fe0;
  font-size: 22px;
}
.cid-uZ0cP1OBBB .banner-icon {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.05);
}
.cid-uZ0cP1OBBB .banner-text {
  flex: 1;
  color: #fff;
}
.cid-uZ0cP1OBBB .banner-text .mbr-section-title {
  margin: 0;
  font-weight: 600;
}
.cid-uZ0cP1OBBB .banner-text .mbr-section-subtitle {
  margin: 5px 0 0;
  color: #bbbbbb;
}
.cid-uZ0cP1OBBB .banner-btn .btn-support {
  background: #4f4fe0;
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  padding: 12px 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 0 20px rgba(79, 79, 224, 0.6);
  transition: all 0.3s ease-in-out;
}
.cid-uZ0cP1OBBB .banner-btn .btn-support:hover {
  box-shadow: 0 0 12px #4f4fe0;
}
.cid-uZ0cP1OBBB P {
  color: #bbbbbb;
}
@media (max-width: 768px) {
  .cid-uZ0cP1OBBB .banner-content {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .cid-uZ0cP1OBBB .banner-btn {
    width: 100%;
    margin-top: 10px;
    display: flex;
    justify-content: center;
  }
  .cid-uZ0cP1OBBB .banner-btn .btn-support {
    width: auto;
    justify-content: center;
  }
}
.cid-uZ0cP01AAL {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000030;
}
.cid-uZ0cP01AAL .mbr-iconfont {
  display: block;
  font-size: 2.5rem;
  color: #4f4fe0;
  margin-bottom: 0.5rem;
}
.cid-uZ0cP01AAL .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-uZ0cP01AAL .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-uZ0cP01AAL .card-wrapper {
  transition: all 0.2s ease;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-uZ0cP01AAL .card-wrapper:hover {
  transform: translateY(-3px);
}
.cid-uZ0cP01AAL .card-title,
.cid-uZ0cP01AAL .card-box {
  color: #fafafa;
  text-align: center;
}
.cid-uZ0cP01AAL .main-title,
.cid-uZ0cP01AAL .title-col {
  text-align: center;
  color: #ffffff;
}
.cid-uZ0cP01AAL .card-text {
  color: #bbbbbb;
}
.cid-uZ0cP01AAL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ0cP01AAL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ0cP2NMvq {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #000030;
}
.cid-uZ0cP2NMvq .mbr-section-title {
  color: #ffffff;
}
.cid-uZ0cP2NMvq .mbr-text b::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #f8363c;
  border-radius: 50%;
}
.cid-uZ0cP2NMvq .mbr-text,
.cid-uZ0cP2NMvq .mbr-section-btn {
  color: #bbbbbb;
}
.cid-uZ0cP2NMvq .mbr-section-subtitle {
  color: #4f4fe0;
}
.cid-uZ0cP2NMvq img {
  border-radius: 10px;
}
.cid-uZ0cP2NMvq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ0cP2NMvq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ0cP3yK2Z {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000030;
}
.cid-uZ0cP3yK2Z .mbr-section-subtitle {
  letter-spacing: 1px;
  margin-bottom: 1rem;
  color: #b4d8a4;
}
.cid-uZ0cP3yK2Z .first-column .mbr-text {
  margin: 0;
}
.cid-uZ0cP3yK2Z .row {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
  padding: 1.5rem;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .cid-uZ0cP3yK2Z .row {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
}
.cid-uZ0cP3yK2Z .form-group {
  max-width: 55%;
}
.cid-uZ0cP3yK2Z .form-group,
.cid-uZ0cP3yK2Z .mbr-section-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-uZ0cP3yK2Z .form-control {
  font-size: 0.9rem;
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border: none !important;
  width: 100%;
  padding: 0.3rem 1rem;
  background: #353535;
  color: #bbbbbb;
}
.cid-uZ0cP3yK2Z .form-control::-webkit-input-placeholder {
  color: #bbbbbb;
}
.cid-uZ0cP3yK2Z .form-control::-moz-placeholder {
  color: #bbbbbb;
}
.cid-uZ0cP3yK2Z .form-control:-moz-placeholder {
  color: #bbbbbb;
}
.cid-uZ0cP3yK2Z .form-control:-ms-input-placeholder {
  color: #bbbbbb;
}
.cid-uZ0cP3yK2Z .form-control:hover,
.cid-uZ0cP3yK2Z .form-control:focus {
  border: none !important;
}
.cid-uZ0cP3yK2Z .col + .mbr-section-btn .btn,
.cid-uZ0cP3yK2Z .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-top-right-radius: 1rem !important;
  border-bottom-right-radius: 1rem !important;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  padding: 0 2.2rem !important;
}
.cid-uZ0cP3yK2Z .dragArea > *:nth-last-child(2).col,
.cid-uZ0cP3yK2Z .dragArea > *:nth-last-child(2).col-auto,
.cid-uZ0cP3yK2Z .col + .mbr-section-btn,
.cid-uZ0cP3yK2Z .col-auto + .mbr-section-btn {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uZ0cP3yK2Z .mbr-form .row {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uZ0cP3yK2Z .mbr-section-title {
  color: #e6e6e6;
}
.cid-uZ0cP3yK2Z .mbr-section-subtitle,
.cid-uZ0cP3yK2Z .icons-wrapper {
  color: #bbbbbb;
}
.cid-uZ0cP3yK2Z P {
  color: #ffffff;
}
.cid-uZ0cP3yK2Z .mbr-section-title,
.cid-uZ0cP3yK2Z .icons-wrapper {
  color: #ffffff;
}
.cid-uZ0cP3yK2Z .custom-gradient {
  background-image: linear-gradient(90deg, #7311d0, #a74dfd);
  text-shadow: 0 0 18px #7311d0;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}
.cid-uZ0dcsYhuj {
  z-index: 1000;
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uZ0dcsYhuj {
    flex-wrap: wrap;
  }
  .cid-uZ0dcsYhuj .navbar > .container {
    flex-wrap: nowrap;
  }
}
.cid-uZ0dcsYhuj .sales-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #4f4fe0;
  color: #fff;
  text-align: center;
  font-size: 16px;
  padding: 8px 15px;
  z-index: 1050;
  box-sizing: border-box;
}
.cid-uZ0dcsYhuj .sales-banner p {
  margin: 0;
  font-weight: 500;
}
.cid-uZ0dcsYhuj .sales-banner span {
  font-weight: 700;
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 6px;
  border-radius: 5px;
}
.cid-uZ0dcsYhuj .navbar {
  top: 32px;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(0, 0, 48, 0);
}
.cid-uZ0dcsYhuj .navbar.opened {
  transition: all 0.3s;
}
.cid-uZ0dcsYhuj .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uZ0dcsYhuj .navbar .navbar-logo img {
  width: auto;
}
.cid-uZ0dcsYhuj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  flex-basis: auto!important;
}
.cid-uZ0dcsYhuj .navbar.collapsed {
  justify-content: center;
}
.cid-uZ0dcsYhuj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uZ0dcsYhuj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uZ0dcsYhuj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uZ0dcsYhuj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uZ0dcsYhuj .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uZ0dcsYhuj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uZ0dcsYhuj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uZ0dcsYhuj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
@media (max-width: 991px) {
  .cid-uZ0dcsYhuj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uZ0dcsYhuj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uZ0dcsYhuj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uZ0dcsYhuj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uZ0dcsYhuj .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uZ0dcsYhuj .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uZ0dcsYhuj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uZ0dcsYhuj .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uZ0dcsYhuj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uZ0dcsYhuj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uZ0dcsYhuj .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uZ0dcsYhuj .navbar.navbar-short {
  min-height: 60px;
}
.cid-uZ0dcsYhuj .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uZ0dcsYhuj .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uZ0dcsYhuj .opened .container {
    flex-wrap: wrap;
  }
}
.cid-uZ0dcsYhuj .opened .container .navbar-collapse {
  width: 100%;
}
.cid-uZ0dcsYhuj .btn {
  padding: 0.3rem 2rem;
}
.cid-uZ0dcsYhuj .nav-link {
  position: relative;
}
.cid-uZ0dcsYhuj .nav-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  transition: all 0.3s;
  background: #4f4fe0;
}
.cid-uZ0dcsYhuj .nav-link:hover:before {
  width: 100%;
}
.cid-uZ0dcsYhuj nav.navbar {
  position: fixed;
}
.cid-uZ0dcsYhuj .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uZ0dcsYhuj .dropdown-item small {
  display: block;
  font-size: 0.8em;
  color: #bbbbbb;
  margin-top: 2px;
}
.cid-uZ0dcsYhuj .dropdown-menu {
  padding: 0;
  border-radius: 10px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uZ0dcsYhuj .dropdown-item:hover,
.cid-uZ0dcsYhuj .dropdown-item:focus {
  background: rgba(255, 255, 255, 0.04) !important;
  color: white !important;
}
.cid-uZ0dcsYhuj .dropdown-item:first-child {
  border-radius: 10px;
}
.cid-uZ0dcsYhuj .dropdown-item:last-child {
  border-radius: 10px;
}
.cid-uZ0dcsYhuj .nav-dropdown .link {
  padding: 0 !important;
  margin: 0.667em 1em !important;
}
.cid-uZ0dcsYhuj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
}
.cid-uZ0dcsYhuj .container {
  display: flex;
  margin: auto;
}
.cid-uZ0dcsYhuj .iconfont-wrapper {
  color: #4f4fe0 !important;
  font-size: 2rem;
  padding-right: 0.5rem;
}
.cid-uZ0dcsYhuj .dropdown-menu,
.cid-uZ0dcsYhuj .navbar.opened {
  background: #000030 !important;
}
.cid-uZ0dcsYhuj .nav-item:focus,
.cid-uZ0dcsYhuj .nav-link:focus {
  outline: none;
}
.cid-uZ0dcsYhuj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uZ0dcsYhuj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uZ0dcsYhuj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uZ0dcsYhuj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uZ0dcsYhuj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uZ0dcsYhuj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uZ0dcsYhuj .navbar-short {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000030 !important;
  transition: all 0.3s;
}
.cid-uZ0dcsYhuj .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uZ0dcsYhuj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uZ0dcsYhuj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uZ0dcsYhuj .dropdown-item.active,
.cid-uZ0dcsYhuj .dropdown-item:active {
  background-color: transparent;
}
.cid-uZ0dcsYhuj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uZ0dcsYhuj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uZ0dcsYhuj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uZ0dcsYhuj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000030;
}
.cid-uZ0dcsYhuj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uZ0dcsYhuj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uZ0dcsYhuj ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uZ0dcsYhuj .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uZ0dcsYhuj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uZ0dcsYhuj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uZ0dcsYhuj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uZ0dcsYhuj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uZ0dcsYhuj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uZ0dcsYhuj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uZ0dcsYhuj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uZ0dcsYhuj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uZ0dcsYhuj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uZ0dcsYhuj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uZ0dcsYhuj .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uZ0dcsYhuj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uZ0dcsYhuj .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uZ0dcsYhuj .navbar {
    height: 70px;
  }
  .cid-uZ0dcsYhuj .navbar.opened {
    height: auto;
  }
  .cid-uZ0dcsYhuj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uZ0dctKQnO {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/testbanner.jpg");
}
.cid-uZ0dctKQnO .mbr-text,
.cid-uZ0dctKQnO .mbr-section-btn {
  color: #f4f4f4;
}
.cid-uZ0dctKQnO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ0dctKQnO .bg {
  display: inline-block;
  width: 100%;
  max-width: 500px;
  text-align: center;
  background: rgba(79, 79, 224, 0.18);
  border: 1px solid rgba(79, 79, 224, 0.25);
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  padding: 20px 30px;
  box-sizing: border-box;
  font-size: 1rem;
  margin: 10px auto;
}
@media (max-width: 600px) {
  .cid-uZ0dctKQnO .bg {
    padding: 15px 20px;
    font-size: 0.9rem;
  }
}
.cid-uZ0dctKQnO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ0dctKQnO .mbr-section-title {
  color: #ffffff;
}
.cid-uZ0dctKQnO .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZ0dctKQnO .mbr-section-tag {
  background-color: #4f4fe080;
  color: #ffffff;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: 10px;
  margin-bottom: 0.75rem;
}
.cid-uZ0dctKQnO .custom-shape-divider-bottom-1759527512 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.cid-uZ0dctKQnO .custom-shape-divider-bottom-1759527512 svg {
  position: relative;
  display: block;
  width: calc(101.3%);
  height: 100px;
}
.cid-uZ0dctKQnO .custom-shape-divider-bottom-1759527512 .shape-fill {
  fill: #000030;
}
.cid-uZ0dcuhGIs {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000030;
}
.cid-uZ0dcuhGIs .mbr-section-head {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding-top: 20px;
  padding-bottom: 20px;
}
.cid-uZ0dcuhGIs .item-img {
  position: relative;
}
@media (max-width: 768px) {
  .cid-uZ0dcuhGIs .badge-grey {
    padding: 8px 16px;
    font-size: 14px;
    top: -40px;
    max-width: 80%;
    white-space: nowrap;
  }
}
.cid-uZ0dcuhGIs #searchBar,
.cid-uZ0dcuhGIs #sortSelect {
  padding: 10px 20px;
  font-size: 16px;
  color: #888;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  outline: none;
  transition: all 0.3s ease;
}
.cid-uZ0dcuhGIs #searchBar {
  flex: 1;
  min-width: 250px;
}
.cid-uZ0dcuhGIs #sortSelect option {
  background: rgba(25, 25, 25, 0.95);
  color: #ccc;
}
.cid-uZ0dcuhGIs #sortSelect {
  min-width: 180px;
  appearance: none;
  background: rgba(255, 255, 255, 0.04);
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  cursor: pointer;
}
.cid-uZ0dcuhGIs #searchBar:hover,
.cid-uZ0dcuhGIs #searchBar:focus,
.cid-uZ0dcuhGIs #sortSelect:hover,
.cid-uZ0dcuhGIs #sortSelect:focus {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.cid-uZ0dcuhGIs #searchBar::placeholder {
  color: #888;
  opacity: 1;
}
.cid-uZ0dcuhGIs .text-center.mb-4 {
  margin-bottom: 30px;
}
.cid-uZ0dcuhGIs .tag {
  position: absolute;
  left: 0.5rem;
  top: 0.5rem;
}
.cid-uZ0dcuhGIs .btn-tag {
  padding: 0.3rem 1rem;
  padding-top: 6px;
  border-radius: 6px !important;
}
.cid-uZ0dcuhGIs .btn-tag:hover,
.cid-uZ0dcuhGIs .btn-tag:focus {
  box-shadow: none;
}
.cid-uZ0dcuhGIs img,
.cid-uZ0dcuhGIs .item-img {
  width: 100%;
  margin-bottom: 0.5rem;
}
.cid-uZ0dcuhGIs .item:focus,
.cid-uZ0dcuhGIs span:focus {
  outline: none;
}
.cid-uZ0dcuhGIs .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uZ0dcuhGIs .item-wrapper {
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0 0 10px 10px;
  position: relative;
  transition: transform 300ms ease, box-shadow 300ms ease;
}
.cid-uZ0dcuhGIs .item-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.cid-uZ0dcuhGIs .item-wrapper > * {
  position: relative;
  z-index: 2;
}
.cid-uZ0dcuhGIs .item-wrapper:hover {
  transform: translateY(-3px);
}
.cid-uZ0dcuhGIs .mbr-section-btn {
  margin-top: auto !important;
  padding: 0 1rem;
}
.cid-uZ0dcuhGIs .mbr-section-title {
  color: #ffffff;
  padding-top: 10px;
}
.cid-uZ0dcuhGIs .mbr-text,
.cid-uZ0dcuhGIs .mbr-section-btn {
  color: #ffffff;
  padding: 0 1rem;
  text-align: left;
}
.cid-uZ0dcuhGIs .item-title {
  color: #ffffff;
  padding: 0 1rem;
  text-align: left;
}
.cid-uZ0dcuhGIs .item-subtitle {
  color: #5518fa;
  text-align: center;
}
.cid-uZ0dcuhGIs .mbr-section-subtitle {
  text-align: center;
  color: #bbbbbb;
}
.cid-uZ0dcuhGIs .mbr-section-subtitle1 {
  text-align: center;
  color: #4f4fe0;
}
.cid-uZ0dcuhGIs .price-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #4f4fe0;
  color: #fff;
  font-weight: bold;
  padding: 5px 10px;
  font-size: 1.1em;
  border-radius: 5px;
  z-index: 10;
}
.cid-uZ0dcvgaAv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000030;
}
.cid-uZ0dcvgaAv .discord-banner {
  max-width: 1290px;
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px;
  margin: 20px auto;
}
.cid-uZ0dcvgaAv .banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cid-uZ0dcvgaAv .mbr-iconfont {
  color: #4f4fe0;
  font-size: 22px;
}
.cid-uZ0dcvgaAv .banner-icon {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.05);
}
.cid-uZ0dcvgaAv .banner-text {
  flex: 1;
  color: #fff;
}
.cid-uZ0dcvgaAv .banner-text .mbr-section-title {
  margin: 0;
  font-weight: 600;
}
.cid-uZ0dcvgaAv .banner-text .mbr-section-subtitle {
  margin: 5px 0 0;
  color: #bbbbbb;
}
.cid-uZ0dcvgaAv .banner-btn .btn-support {
  background: #4f4fe0;
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  padding: 12px 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 0 20px rgba(79, 79, 224, 0.6);
  transition: all 0.3s ease-in-out;
}
.cid-uZ0dcvgaAv .banner-btn .btn-support:hover {
  box-shadow: 0 0 12px #4f4fe0;
}
.cid-uZ0dcvgaAv P {
  color: #bbbbbb;
}
@media (max-width: 768px) {
  .cid-uZ0dcvgaAv .banner-content {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .cid-uZ0dcvgaAv .banner-btn {
    width: 100%;
    margin-top: 10px;
    display: flex;
    justify-content: center;
  }
  .cid-uZ0dcvgaAv .banner-btn .btn-support {
    width: auto;
    justify-content: center;
  }
}
.cid-uZ0dcvMEXW {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000030;
}
.cid-uZ0dcvMEXW .mbr-iconfont {
  display: block;
  font-size: 2.5rem;
  color: #4f4fe0;
  margin-bottom: 0.5rem;
}
.cid-uZ0dcvMEXW .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-uZ0dcvMEXW .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-uZ0dcvMEXW .card-wrapper {
  transition: all 0.2s ease;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-uZ0dcvMEXW .card-wrapper:hover {
  transform: translateY(-3px);
}
.cid-uZ0dcvMEXW .card-title,
.cid-uZ0dcvMEXW .card-box {
  color: #fafafa;
  text-align: center;
}
.cid-uZ0dcvMEXW .main-title,
.cid-uZ0dcvMEXW .title-col {
  text-align: center;
  color: #ffffff;
}
.cid-uZ0dcvMEXW .card-text {
  color: #bbbbbb;
}
.cid-uZ0dcvMEXW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ0dcvMEXW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ0dcx6t52 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #000030;
}
.cid-uZ0dcx6t52 .mbr-section-title {
  color: #ffffff;
}
.cid-uZ0dcx6t52 .mbr-text b::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #f8363c;
  border-radius: 50%;
}
.cid-uZ0dcx6t52 .mbr-text,
.cid-uZ0dcx6t52 .mbr-section-btn {
  color: #bbbbbb;
}
.cid-uZ0dcx6t52 .mbr-section-subtitle {
  color: #4f4fe0;
}
.cid-uZ0dcx6t52 img {
  border-radius: 10px;
}
.cid-uZ0dcx6t52 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ0dcx6t52 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ0dcxS0A7 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000030;
}
.cid-uZ0dcxS0A7 .mbr-section-subtitle {
  letter-spacing: 1px;
  margin-bottom: 1rem;
  color: #b4d8a4;
}
.cid-uZ0dcxS0A7 .first-column .mbr-text {
  margin: 0;
}
.cid-uZ0dcxS0A7 .row {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
  padding: 1.5rem;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .cid-uZ0dcxS0A7 .row {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
}
.cid-uZ0dcxS0A7 .form-group {
  max-width: 55%;
}
.cid-uZ0dcxS0A7 .form-group,
.cid-uZ0dcxS0A7 .mbr-section-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-uZ0dcxS0A7 .form-control {
  font-size: 0.9rem;
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border: none !important;
  width: 100%;
  padding: 0.3rem 1rem;
  background: #353535;
  color: #bbbbbb;
}
.cid-uZ0dcxS0A7 .form-control::-webkit-input-placeholder {
  color: #bbbbbb;
}
.cid-uZ0dcxS0A7 .form-control::-moz-placeholder {
  color: #bbbbbb;
}
.cid-uZ0dcxS0A7 .form-control:-moz-placeholder {
  color: #bbbbbb;
}
.cid-uZ0dcxS0A7 .form-control:-ms-input-placeholder {
  color: #bbbbbb;
}
.cid-uZ0dcxS0A7 .form-control:hover,
.cid-uZ0dcxS0A7 .form-control:focus {
  border: none !important;
}
.cid-uZ0dcxS0A7 .col + .mbr-section-btn .btn,
.cid-uZ0dcxS0A7 .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-top-right-radius: 1rem !important;
  border-bottom-right-radius: 1rem !important;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  padding: 0 2.2rem !important;
}
.cid-uZ0dcxS0A7 .dragArea > *:nth-last-child(2).col,
.cid-uZ0dcxS0A7 .dragArea > *:nth-last-child(2).col-auto,
.cid-uZ0dcxS0A7 .col + .mbr-section-btn,
.cid-uZ0dcxS0A7 .col-auto + .mbr-section-btn {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uZ0dcxS0A7 .mbr-form .row {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uZ0dcxS0A7 .mbr-section-title {
  color: #e6e6e6;
}
.cid-uZ0dcxS0A7 .mbr-section-subtitle,
.cid-uZ0dcxS0A7 .icons-wrapper {
  color: #bbbbbb;
}
.cid-uZ0dcxS0A7 P {
  color: #ffffff;
}
.cid-uZ0dcxS0A7 .mbr-section-title,
.cid-uZ0dcxS0A7 .icons-wrapper {
  color: #ffffff;
}
.cid-uZ0dcxS0A7 .custom-gradient {
  background-image: linear-gradient(90deg, #7311d0, #a74dfd);
  text-shadow: 0 0 18px #7311d0;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}
.cid-uZ0tpyUYIU {
  z-index: 1000;
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uZ0tpyUYIU {
    flex-wrap: wrap;
  }
  .cid-uZ0tpyUYIU .navbar > .container {
    flex-wrap: nowrap;
  }
}
.cid-uZ0tpyUYIU .sales-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #4f4fe0;
  color: #fff;
  text-align: center;
  font-size: 16px;
  padding: 8px 15px;
  z-index: 1050;
  box-sizing: border-box;
}
.cid-uZ0tpyUYIU .sales-banner p {
  margin: 0;
  font-weight: 500;
}
.cid-uZ0tpyUYIU .sales-banner span {
  font-weight: 700;
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 6px;
  border-radius: 5px;
}
.cid-uZ0tpyUYIU .navbar {
  top: 32px;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(0, 0, 48, 0);
}
.cid-uZ0tpyUYIU .navbar.opened {
  transition: all 0.3s;
}
.cid-uZ0tpyUYIU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uZ0tpyUYIU .navbar .navbar-logo img {
  width: auto;
}
.cid-uZ0tpyUYIU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  flex-basis: auto!important;
}
.cid-uZ0tpyUYIU .navbar.collapsed {
  justify-content: center;
}
.cid-uZ0tpyUYIU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uZ0tpyUYIU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uZ0tpyUYIU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uZ0tpyUYIU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uZ0tpyUYIU .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uZ0tpyUYIU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uZ0tpyUYIU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uZ0tpyUYIU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
@media (max-width: 991px) {
  .cid-uZ0tpyUYIU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uZ0tpyUYIU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uZ0tpyUYIU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uZ0tpyUYIU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uZ0tpyUYIU .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uZ0tpyUYIU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uZ0tpyUYIU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uZ0tpyUYIU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uZ0tpyUYIU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uZ0tpyUYIU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uZ0tpyUYIU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uZ0tpyUYIU .navbar.navbar-short {
  min-height: 60px;
}
.cid-uZ0tpyUYIU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uZ0tpyUYIU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uZ0tpyUYIU .opened .container {
    flex-wrap: wrap;
  }
}
.cid-uZ0tpyUYIU .opened .container .navbar-collapse {
  width: 100%;
}
.cid-uZ0tpyUYIU .btn {
  padding: 0.3rem 2rem;
}
.cid-uZ0tpyUYIU .nav-link {
  position: relative;
}
.cid-uZ0tpyUYIU .nav-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  transition: all 0.3s;
  background: #4f4fe0;
}
.cid-uZ0tpyUYIU .nav-link:hover:before {
  width: 100%;
}
.cid-uZ0tpyUYIU nav.navbar {
  position: fixed;
}
.cid-uZ0tpyUYIU .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uZ0tpyUYIU .dropdown-item small {
  display: block;
  font-size: 0.8em;
  color: #bbbbbb;
  margin-top: 2px;
}
.cid-uZ0tpyUYIU .dropdown-menu {
  padding: 0;
  border-radius: 10px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uZ0tpyUYIU .dropdown-item:hover,
.cid-uZ0tpyUYIU .dropdown-item:focus {
  background: rgba(255, 255, 255, 0.04) !important;
  color: white !important;
}
.cid-uZ0tpyUYIU .dropdown-item:first-child {
  border-radius: 10px;
}
.cid-uZ0tpyUYIU .dropdown-item:last-child {
  border-radius: 10px;
}
.cid-uZ0tpyUYIU .nav-dropdown .link {
  padding: 0 !important;
  margin: 0.667em 1em !important;
}
.cid-uZ0tpyUYIU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
}
.cid-uZ0tpyUYIU .container {
  display: flex;
  margin: auto;
}
.cid-uZ0tpyUYIU .iconfont-wrapper {
  color: #4f4fe0 !important;
  font-size: 2rem;
  padding-right: 0.5rem;
}
.cid-uZ0tpyUYIU .dropdown-menu,
.cid-uZ0tpyUYIU .navbar.opened {
  background: #000030 !important;
}
.cid-uZ0tpyUYIU .nav-item:focus,
.cid-uZ0tpyUYIU .nav-link:focus {
  outline: none;
}
.cid-uZ0tpyUYIU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uZ0tpyUYIU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uZ0tpyUYIU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uZ0tpyUYIU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uZ0tpyUYIU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uZ0tpyUYIU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uZ0tpyUYIU .navbar-short {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000030 !important;
  transition: all 0.3s;
}
.cid-uZ0tpyUYIU .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uZ0tpyUYIU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uZ0tpyUYIU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uZ0tpyUYIU .dropdown-item.active,
.cid-uZ0tpyUYIU .dropdown-item:active {
  background-color: transparent;
}
.cid-uZ0tpyUYIU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uZ0tpyUYIU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uZ0tpyUYIU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uZ0tpyUYIU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000030;
}
.cid-uZ0tpyUYIU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uZ0tpyUYIU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uZ0tpyUYIU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uZ0tpyUYIU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uZ0tpyUYIU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uZ0tpyUYIU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uZ0tpyUYIU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uZ0tpyUYIU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uZ0tpyUYIU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uZ0tpyUYIU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uZ0tpyUYIU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uZ0tpyUYIU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uZ0tpyUYIU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uZ0tpyUYIU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uZ0tpyUYIU .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uZ0tpyUYIU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uZ0tpyUYIU .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uZ0tpyUYIU .navbar {
    height: 70px;
  }
  .cid-uZ0tpyUYIU .navbar.opened {
    height: auto;
  }
  .cid-uZ0tpyUYIU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uZ0tpzyFV1 {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/testbanner.jpg");
}
.cid-uZ0tpzyFV1 .mbr-text,
.cid-uZ0tpzyFV1 .mbr-section-btn {
  color: #f4f4f4;
}
.cid-uZ0tpzyFV1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ0tpzyFV1 .bg {
  display: inline-block;
  width: 100%;
  max-width: 500px;
  text-align: center;
  background: rgba(79, 79, 224, 0.18);
  border: 1px solid rgba(79, 79, 224, 0.25);
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  padding: 20px 30px;
  box-sizing: border-box;
  font-size: 1rem;
  margin: 10px auto;
}
@media (max-width: 600px) {
  .cid-uZ0tpzyFV1 .bg {
    padding: 15px 20px;
    font-size: 0.9rem;
  }
}
.cid-uZ0tpzyFV1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ0tpzyFV1 .mbr-section-title {
  color: #ffffff;
}
.cid-uZ0tpzyFV1 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZ0tpzyFV1 .mbr-section-tag {
  background-color: #4f4fe080;
  color: #ffffff;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: 10px;
  margin-bottom: 0.75rem;
}
.cid-uZ0tpzyFV1 .custom-shape-divider-bottom-1759527512 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.cid-uZ0tpzyFV1 .custom-shape-divider-bottom-1759527512 svg {
  position: relative;
  display: block;
  width: calc(101.3%);
  height: 100px;
}
.cid-uZ0tpzyFV1 .custom-shape-divider-bottom-1759527512 .shape-fill {
  fill: #000030;
}
.cid-uZ0tDzlqtY {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000030;
}
.cid-uZ0tDzlqtY blockquote {
  border-color: currentColor;
  padding: 1rem;
}
.cid-uZ0tDzlqtY .quote {
  color: #e43f3f;
}
.cid-uZ0tDzlqtY .quote,
.cid-uZ0tDzlqtY blockquote {
  color: #ffffff;
}
.cid-uZ0tDzlqtY .mbr-section-title {
  color: #ffffff;
}
.cid-uZ0tDzlqtY .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uZ0tDzlqtY .row {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 15px;
}
.cid-uZ0tDzlqtY .product-banner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}
.cid-uZ0tDzlqtY .divider {
  width: 75%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 12px 0;
  border-radius: 2px;
}
.cid-uZ0tpB3aXX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000030;
}
.cid-uZ0tpB3aXX .discord-banner {
  max-width: 1290px;
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px;
  margin: 20px auto;
}
.cid-uZ0tpB3aXX .banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cid-uZ0tpB3aXX .mbr-iconfont {
  color: #4f4fe0;
  font-size: 22px;
}
.cid-uZ0tpB3aXX .banner-icon {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.05);
}
.cid-uZ0tpB3aXX .banner-text {
  flex: 1;
  color: #fff;
}
.cid-uZ0tpB3aXX .banner-text .mbr-section-title {
  margin: 0;
  font-weight: 600;
}
.cid-uZ0tpB3aXX .banner-text .mbr-section-subtitle {
  margin: 5px 0 0;
  color: #bbbbbb;
}
.cid-uZ0tpB3aXX .banner-btn .btn-support {
  background: #4f4fe0;
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  padding: 12px 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 0 20px rgba(79, 79, 224, 0.6);
  transition: all 0.3s ease-in-out;
}
.cid-uZ0tpB3aXX .banner-btn .btn-support:hover {
  box-shadow: 0 0 12px #4f4fe0;
}
.cid-uZ0tpB3aXX P {
  color: #bbbbbb;
}
@media (max-width: 768px) {
  .cid-uZ0tpB3aXX .banner-content {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .cid-uZ0tpB3aXX .banner-btn {
    width: 100%;
    margin-top: 10px;
    display: flex;
    justify-content: center;
  }
  .cid-uZ0tpB3aXX .banner-btn .btn-support {
    width: auto;
    justify-content: center;
  }
}
.cid-uZ0tpCO5AD {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #000030;
}
.cid-uZ0tpCO5AD .mbr-section-title {
  color: #ffffff;
}
.cid-uZ0tpCO5AD .mbr-text b::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #f8363c;
  border-radius: 50%;
}
.cid-uZ0tpCO5AD .mbr-text,
.cid-uZ0tpCO5AD .mbr-section-btn {
  color: #bbbbbb;
}
.cid-uZ0tpCO5AD .mbr-section-subtitle {
  color: #4f4fe0;
}
.cid-uZ0tpCO5AD img {
  border-radius: 10px;
}
.cid-uZ0tpCO5AD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ0tpCO5AD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ0tpDAPaG {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000030;
}
.cid-uZ0tpDAPaG .mbr-section-subtitle {
  letter-spacing: 1px;
  margin-bottom: 1rem;
  color: #b4d8a4;
}
.cid-uZ0tpDAPaG .first-column .mbr-text {
  margin: 0;
}
.cid-uZ0tpDAPaG .row {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
  padding: 1.5rem;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .cid-uZ0tpDAPaG .row {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
}
.cid-uZ0tpDAPaG .form-group {
  max-width: 55%;
}
.cid-uZ0tpDAPaG .form-group,
.cid-uZ0tpDAPaG .mbr-section-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-uZ0tpDAPaG .form-control {
  font-size: 0.9rem;
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border: none !important;
  width: 100%;
  padding: 0.3rem 1rem;
  background: #353535;
  color: #bbbbbb;
}
.cid-uZ0tpDAPaG .form-control::-webkit-input-placeholder {
  color: #bbbbbb;
}
.cid-uZ0tpDAPaG .form-control::-moz-placeholder {
  color: #bbbbbb;
}
.cid-uZ0tpDAPaG .form-control:-moz-placeholder {
  color: #bbbbbb;
}
.cid-uZ0tpDAPaG .form-control:-ms-input-placeholder {
  color: #bbbbbb;
}
.cid-uZ0tpDAPaG .form-control:hover,
.cid-uZ0tpDAPaG .form-control:focus {
  border: none !important;
}
.cid-uZ0tpDAPaG .col + .mbr-section-btn .btn,
.cid-uZ0tpDAPaG .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-top-right-radius: 1rem !important;
  border-bottom-right-radius: 1rem !important;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  padding: 0 2.2rem !important;
}
.cid-uZ0tpDAPaG .dragArea > *:nth-last-child(2).col,
.cid-uZ0tpDAPaG .dragArea > *:nth-last-child(2).col-auto,
.cid-uZ0tpDAPaG .col + .mbr-section-btn,
.cid-uZ0tpDAPaG .col-auto + .mbr-section-btn {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uZ0tpDAPaG .mbr-form .row {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uZ0tpDAPaG .mbr-section-title {
  color: #e6e6e6;
}
.cid-uZ0tpDAPaG .mbr-section-subtitle,
.cid-uZ0tpDAPaG .icons-wrapper {
  color: #bbbbbb;
}
.cid-uZ0tpDAPaG P {
  color: #ffffff;
}
.cid-uZ0tpDAPaG .mbr-section-title,
.cid-uZ0tpDAPaG .icons-wrapper {
  color: #ffffff;
}
.cid-uZ0tpDAPaG .custom-gradient {
  background-image: linear-gradient(90deg, #7311d0, #a74dfd);
  text-shadow: 0 0 18px #7311d0;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}
.cid-uZ0CBinaYc {
  z-index: 1000;
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uZ0CBinaYc {
    flex-wrap: wrap;
  }
  .cid-uZ0CBinaYc .navbar > .container {
    flex-wrap: nowrap;
  }
}
.cid-uZ0CBinaYc .sales-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #4f4fe0;
  color: #fff;
  text-align: center;
  font-size: 16px;
  padding: 8px 15px;
  z-index: 1050;
  box-sizing: border-box;
}
.cid-uZ0CBinaYc .sales-banner p {
  margin: 0;
  font-weight: 500;
}
.cid-uZ0CBinaYc .sales-banner span {
  font-weight: 700;
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 6px;
  border-radius: 5px;
}
.cid-uZ0CBinaYc .navbar {
  top: 32px;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(0, 0, 48, 0);
}
.cid-uZ0CBinaYc .navbar.opened {
  transition: all 0.3s;
}
.cid-uZ0CBinaYc .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uZ0CBinaYc .navbar .navbar-logo img {
  width: auto;
}
.cid-uZ0CBinaYc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  flex-basis: auto!important;
}
.cid-uZ0CBinaYc .navbar.collapsed {
  justify-content: center;
}
.cid-uZ0CBinaYc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uZ0CBinaYc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uZ0CBinaYc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uZ0CBinaYc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uZ0CBinaYc .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uZ0CBinaYc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uZ0CBinaYc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uZ0CBinaYc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
@media (max-width: 991px) {
  .cid-uZ0CBinaYc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uZ0CBinaYc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uZ0CBinaYc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uZ0CBinaYc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uZ0CBinaYc .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uZ0CBinaYc .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uZ0CBinaYc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uZ0CBinaYc .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uZ0CBinaYc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uZ0CBinaYc .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uZ0CBinaYc .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uZ0CBinaYc .navbar.navbar-short {
  min-height: 60px;
}
.cid-uZ0CBinaYc .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uZ0CBinaYc .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uZ0CBinaYc .opened .container {
    flex-wrap: wrap;
  }
}
.cid-uZ0CBinaYc .opened .container .navbar-collapse {
  width: 100%;
}
.cid-uZ0CBinaYc .btn {
  padding: 0.3rem 2rem;
}
.cid-uZ0CBinaYc .nav-link {
  position: relative;
}
.cid-uZ0CBinaYc .nav-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  transition: all 0.3s;
  background: #4f4fe0;
}
.cid-uZ0CBinaYc .nav-link:hover:before {
  width: 100%;
}
.cid-uZ0CBinaYc nav.navbar {
  position: fixed;
}
.cid-uZ0CBinaYc .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uZ0CBinaYc .dropdown-item small {
  display: block;
  font-size: 0.8em;
  color: #bbbbbb;
  margin-top: 2px;
}
.cid-uZ0CBinaYc .dropdown-menu {
  padding: 0;
  border-radius: 10px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uZ0CBinaYc .dropdown-item:hover,
.cid-uZ0CBinaYc .dropdown-item:focus {
  background: rgba(255, 255, 255, 0.04) !important;
  color: white !important;
}
.cid-uZ0CBinaYc .dropdown-item:first-child {
  border-radius: 10px;
}
.cid-uZ0CBinaYc .dropdown-item:last-child {
  border-radius: 10px;
}
.cid-uZ0CBinaYc .nav-dropdown .link {
  padding: 0 !important;
  margin: 0.667em 1em !important;
}
.cid-uZ0CBinaYc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
}
.cid-uZ0CBinaYc .container {
  display: flex;
  margin: auto;
}
.cid-uZ0CBinaYc .iconfont-wrapper {
  color: #4f4fe0 !important;
  font-size: 2rem;
  padding-right: 0.5rem;
}
.cid-uZ0CBinaYc .dropdown-menu,
.cid-uZ0CBinaYc .navbar.opened {
  background: #000030 !important;
}
.cid-uZ0CBinaYc .nav-item:focus,
.cid-uZ0CBinaYc .nav-link:focus {
  outline: none;
}
.cid-uZ0CBinaYc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uZ0CBinaYc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uZ0CBinaYc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uZ0CBinaYc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uZ0CBinaYc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uZ0CBinaYc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uZ0CBinaYc .navbar-short {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000030 !important;
  transition: all 0.3s;
}
.cid-uZ0CBinaYc .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uZ0CBinaYc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uZ0CBinaYc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uZ0CBinaYc .dropdown-item.active,
.cid-uZ0CBinaYc .dropdown-item:active {
  background-color: transparent;
}
.cid-uZ0CBinaYc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uZ0CBinaYc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uZ0CBinaYc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uZ0CBinaYc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000030;
}
.cid-uZ0CBinaYc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uZ0CBinaYc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uZ0CBinaYc ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uZ0CBinaYc .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uZ0CBinaYc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uZ0CBinaYc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uZ0CBinaYc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uZ0CBinaYc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uZ0CBinaYc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uZ0CBinaYc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uZ0CBinaYc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uZ0CBinaYc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uZ0CBinaYc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uZ0CBinaYc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uZ0CBinaYc .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uZ0CBinaYc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uZ0CBinaYc .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uZ0CBinaYc .navbar {
    height: 70px;
  }
  .cid-uZ0CBinaYc .navbar.opened {
    height: auto;
  }
  .cid-uZ0CBinaYc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uZ0CBj3w2i {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/testbanner.jpg");
}
.cid-uZ0CBj3w2i .mbr-text,
.cid-uZ0CBj3w2i .mbr-section-btn {
  color: #f4f4f4;
}
.cid-uZ0CBj3w2i .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ0CBj3w2i .bg {
  display: inline-block;
  width: 100%;
  max-width: 500px;
  text-align: center;
  background: rgba(79, 79, 224, 0.18);
  border: 1px solid rgba(79, 79, 224, 0.25);
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  padding: 20px 30px;
  box-sizing: border-box;
  font-size: 1rem;
  margin: 10px auto;
}
@media (max-width: 600px) {
  .cid-uZ0CBj3w2i .bg {
    padding: 15px 20px;
    font-size: 0.9rem;
  }
}
.cid-uZ0CBj3w2i .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ0CBj3w2i .mbr-section-title {
  color: #ffffff;
}
.cid-uZ0CBj3w2i .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZ0CBj3w2i .mbr-section-tag {
  background-color: #4f4fe080;
  color: #ffffff;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: 10px;
  margin-bottom: 0.75rem;
}
.cid-uZ0CBj3w2i .custom-shape-divider-bottom-1759527512 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.cid-uZ0CBj3w2i .custom-shape-divider-bottom-1759527512 svg {
  position: relative;
  display: block;
  width: calc(101.3%);
  height: 100px;
}
.cid-uZ0CBj3w2i .custom-shape-divider-bottom-1759527512 .shape-fill {
  fill: #000030;
}
.cid-uZ0CBjBUB1 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000030;
}
.cid-uZ0CBjBUB1 blockquote {
  border-color: currentColor;
  padding: 1rem;
}
.cid-uZ0CBjBUB1 .quote {
  color: #e43f3f;
}
.cid-uZ0CBjBUB1 .quote,
.cid-uZ0CBjBUB1 blockquote {
  color: #ffffff;
}
.cid-uZ0CBjBUB1 .mbr-section-title {
  color: #ffffff;
}
.cid-uZ0CBjBUB1 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uZ0CBjBUB1 .row {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 15px;
}
.cid-uZ0CBjBUB1 .product-banner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}
.cid-uZ0CBjBUB1 .divider {
  width: 75%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 12px 0;
  border-radius: 2px;
}
.cid-uZ0CBk7GoU {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000030;
}
.cid-uZ0CBk7GoU .discord-banner {
  max-width: 1290px;
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px;
  margin: 20px auto;
}
.cid-uZ0CBk7GoU .banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cid-uZ0CBk7GoU .mbr-iconfont {
  color: #4f4fe0;
  font-size: 22px;
}
.cid-uZ0CBk7GoU .banner-icon {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.05);
}
.cid-uZ0CBk7GoU .banner-text {
  flex: 1;
  color: #fff;
}
.cid-uZ0CBk7GoU .banner-text .mbr-section-title {
  margin: 0;
  font-weight: 600;
}
.cid-uZ0CBk7GoU .banner-text .mbr-section-subtitle {
  margin: 5px 0 0;
  color: #bbbbbb;
}
.cid-uZ0CBk7GoU .banner-btn .btn-support {
  background: #4f4fe0;
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  padding: 12px 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 0 20px rgba(79, 79, 224, 0.6);
  transition: all 0.3s ease-in-out;
}
.cid-uZ0CBk7GoU .banner-btn .btn-support:hover {
  box-shadow: 0 0 12px #4f4fe0;
}
.cid-uZ0CBk7GoU P {
  color: #bbbbbb;
}
@media (max-width: 768px) {
  .cid-uZ0CBk7GoU .banner-content {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .cid-uZ0CBk7GoU .banner-btn {
    width: 100%;
    margin-top: 10px;
    display: flex;
    justify-content: center;
  }
  .cid-uZ0CBk7GoU .banner-btn .btn-support {
    width: auto;
    justify-content: center;
  }
}
.cid-uZ0CBkyVR5 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #000030;
}
.cid-uZ0CBkyVR5 .mbr-section-title {
  color: #ffffff;
}
.cid-uZ0CBkyVR5 .mbr-text b::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #f8363c;
  border-radius: 50%;
}
.cid-uZ0CBkyVR5 .mbr-text,
.cid-uZ0CBkyVR5 .mbr-section-btn {
  color: #bbbbbb;
}
.cid-uZ0CBkyVR5 .mbr-section-subtitle {
  color: #4f4fe0;
}
.cid-uZ0CBkyVR5 img {
  border-radius: 10px;
}
.cid-uZ0CBkyVR5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ0CBkyVR5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ0CBl8Oll {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000030;
}
.cid-uZ0CBl8Oll .mbr-section-subtitle {
  letter-spacing: 1px;
  margin-bottom: 1rem;
  color: #b4d8a4;
}
.cid-uZ0CBl8Oll .first-column .mbr-text {
  margin: 0;
}
.cid-uZ0CBl8Oll .row {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
  padding: 1.5rem;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .cid-uZ0CBl8Oll .row {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
}
.cid-uZ0CBl8Oll .form-group {
  max-width: 55%;
}
.cid-uZ0CBl8Oll .form-group,
.cid-uZ0CBl8Oll .mbr-section-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-uZ0CBl8Oll .form-control {
  font-size: 0.9rem;
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border: none !important;
  width: 100%;
  padding: 0.3rem 1rem;
  background: #353535;
  color: #bbbbbb;
}
.cid-uZ0CBl8Oll .form-control::-webkit-input-placeholder {
  color: #bbbbbb;
}
.cid-uZ0CBl8Oll .form-control::-moz-placeholder {
  color: #bbbbbb;
}
.cid-uZ0CBl8Oll .form-control:-moz-placeholder {
  color: #bbbbbb;
}
.cid-uZ0CBl8Oll .form-control:-ms-input-placeholder {
  color: #bbbbbb;
}
.cid-uZ0CBl8Oll .form-control:hover,
.cid-uZ0CBl8Oll .form-control:focus {
  border: none !important;
}
.cid-uZ0CBl8Oll .col + .mbr-section-btn .btn,
.cid-uZ0CBl8Oll .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-top-right-radius: 1rem !important;
  border-bottom-right-radius: 1rem !important;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  padding: 0 2.2rem !important;
}
.cid-uZ0CBl8Oll .dragArea > *:nth-last-child(2).col,
.cid-uZ0CBl8Oll .dragArea > *:nth-last-child(2).col-auto,
.cid-uZ0CBl8Oll .col + .mbr-section-btn,
.cid-uZ0CBl8Oll .col-auto + .mbr-section-btn {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uZ0CBl8Oll .mbr-form .row {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uZ0CBl8Oll .mbr-section-title {
  color: #e6e6e6;
}
.cid-uZ0CBl8Oll .mbr-section-subtitle,
.cid-uZ0CBl8Oll .icons-wrapper {
  color: #bbbbbb;
}
.cid-uZ0CBl8Oll P {
  color: #ffffff;
}
.cid-uZ0CBl8Oll .mbr-section-title,
.cid-uZ0CBl8Oll .icons-wrapper {
  color: #ffffff;
}
.cid-uZ0CBl8Oll .custom-gradient {
  background-image: linear-gradient(90deg, #7311d0, #a74dfd);
  text-shadow: 0 0 18px #7311d0;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}
.cid-uZ0DQOvV9b {
  z-index: 1000;
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uZ0DQOvV9b {
    flex-wrap: wrap;
  }
  .cid-uZ0DQOvV9b .navbar > .container {
    flex-wrap: nowrap;
  }
}
.cid-uZ0DQOvV9b .sales-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #4f4fe0;
  color: #fff;
  text-align: center;
  font-size: 16px;
  padding: 8px 15px;
  z-index: 1050;
  box-sizing: border-box;
}
.cid-uZ0DQOvV9b .sales-banner p {
  margin: 0;
  font-weight: 500;
}
.cid-uZ0DQOvV9b .sales-banner span {
  font-weight: 700;
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 6px;
  border-radius: 5px;
}
.cid-uZ0DQOvV9b .navbar {
  top: 32px;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(0, 0, 48, 0);
}
.cid-uZ0DQOvV9b .navbar.opened {
  transition: all 0.3s;
}
.cid-uZ0DQOvV9b .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uZ0DQOvV9b .navbar .navbar-logo img {
  width: auto;
}
.cid-uZ0DQOvV9b .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  flex-basis: auto!important;
}
.cid-uZ0DQOvV9b .navbar.collapsed {
  justify-content: center;
}
.cid-uZ0DQOvV9b .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uZ0DQOvV9b .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uZ0DQOvV9b .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uZ0DQOvV9b .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uZ0DQOvV9b .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uZ0DQOvV9b .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uZ0DQOvV9b .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uZ0DQOvV9b .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
@media (max-width: 991px) {
  .cid-uZ0DQOvV9b .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uZ0DQOvV9b .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uZ0DQOvV9b .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uZ0DQOvV9b .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uZ0DQOvV9b .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uZ0DQOvV9b .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uZ0DQOvV9b .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uZ0DQOvV9b .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uZ0DQOvV9b .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uZ0DQOvV9b .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uZ0DQOvV9b .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uZ0DQOvV9b .navbar.navbar-short {
  min-height: 60px;
}
.cid-uZ0DQOvV9b .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uZ0DQOvV9b .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uZ0DQOvV9b .opened .container {
    flex-wrap: wrap;
  }
}
.cid-uZ0DQOvV9b .opened .container .navbar-collapse {
  width: 100%;
}
.cid-uZ0DQOvV9b .btn {
  padding: 0.3rem 2rem;
}
.cid-uZ0DQOvV9b .nav-link {
  position: relative;
}
.cid-uZ0DQOvV9b .nav-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  transition: all 0.3s;
  background: #4f4fe0;
}
.cid-uZ0DQOvV9b .nav-link:hover:before {
  width: 100%;
}
.cid-uZ0DQOvV9b nav.navbar {
  position: fixed;
}
.cid-uZ0DQOvV9b .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uZ0DQOvV9b .dropdown-item small {
  display: block;
  font-size: 0.8em;
  color: #bbbbbb;
  margin-top: 2px;
}
.cid-uZ0DQOvV9b .dropdown-menu {
  padding: 0;
  border-radius: 10px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uZ0DQOvV9b .dropdown-item:hover,
.cid-uZ0DQOvV9b .dropdown-item:focus {
  background: rgba(255, 255, 255, 0.04) !important;
  color: white !important;
}
.cid-uZ0DQOvV9b .dropdown-item:first-child {
  border-radius: 10px;
}
.cid-uZ0DQOvV9b .dropdown-item:last-child {
  border-radius: 10px;
}
.cid-uZ0DQOvV9b .nav-dropdown .link {
  padding: 0 !important;
  margin: 0.667em 1em !important;
}
.cid-uZ0DQOvV9b .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
}
.cid-uZ0DQOvV9b .container {
  display: flex;
  margin: auto;
}
.cid-uZ0DQOvV9b .iconfont-wrapper {
  color: #4f4fe0 !important;
  font-size: 2rem;
  padding-right: 0.5rem;
}
.cid-uZ0DQOvV9b .dropdown-menu,
.cid-uZ0DQOvV9b .navbar.opened {
  background: #000030 !important;
}
.cid-uZ0DQOvV9b .nav-item:focus,
.cid-uZ0DQOvV9b .nav-link:focus {
  outline: none;
}
.cid-uZ0DQOvV9b .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uZ0DQOvV9b .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uZ0DQOvV9b .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uZ0DQOvV9b .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uZ0DQOvV9b .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uZ0DQOvV9b .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uZ0DQOvV9b .navbar-short {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000030 !important;
  transition: all 0.3s;
}
.cid-uZ0DQOvV9b .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uZ0DQOvV9b .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uZ0DQOvV9b .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uZ0DQOvV9b .dropdown-item.active,
.cid-uZ0DQOvV9b .dropdown-item:active {
  background-color: transparent;
}
.cid-uZ0DQOvV9b .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uZ0DQOvV9b .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uZ0DQOvV9b .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uZ0DQOvV9b .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000030;
}
.cid-uZ0DQOvV9b .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uZ0DQOvV9b .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uZ0DQOvV9b ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uZ0DQOvV9b .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uZ0DQOvV9b button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uZ0DQOvV9b button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uZ0DQOvV9b button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uZ0DQOvV9b button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uZ0DQOvV9b button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uZ0DQOvV9b button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uZ0DQOvV9b nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uZ0DQOvV9b nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uZ0DQOvV9b nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uZ0DQOvV9b nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uZ0DQOvV9b .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uZ0DQOvV9b a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uZ0DQOvV9b .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uZ0DQOvV9b .navbar {
    height: 70px;
  }
  .cid-uZ0DQOvV9b .navbar.opened {
    height: auto;
  }
  .cid-uZ0DQOvV9b .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uZ0DQPaSG3 {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/testbanner.jpg");
}
.cid-uZ0DQPaSG3 .mbr-text,
.cid-uZ0DQPaSG3 .mbr-section-btn {
  color: #f4f4f4;
}
.cid-uZ0DQPaSG3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ0DQPaSG3 .bg {
  display: inline-block;
  width: 100%;
  max-width: 500px;
  text-align: center;
  background: rgba(79, 79, 224, 0.18);
  border: 1px solid rgba(79, 79, 224, 0.25);
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  padding: 20px 30px;
  box-sizing: border-box;
  font-size: 1rem;
  margin: 10px auto;
}
@media (max-width: 600px) {
  .cid-uZ0DQPaSG3 .bg {
    padding: 15px 20px;
    font-size: 0.9rem;
  }
}
.cid-uZ0DQPaSG3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ0DQPaSG3 .mbr-section-title {
  color: #ffffff;
}
.cid-uZ0DQPaSG3 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZ0DQPaSG3 .mbr-section-tag {
  background-color: #4f4fe080;
  color: #ffffff;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: 10px;
  margin-bottom: 0.75rem;
}
.cid-uZ0DQPaSG3 .custom-shape-divider-bottom-1759527512 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.cid-uZ0DQPaSG3 .custom-shape-divider-bottom-1759527512 svg {
  position: relative;
  display: block;
  width: calc(101.3%);
  height: 100px;
}
.cid-uZ0DQPaSG3 .custom-shape-divider-bottom-1759527512 .shape-fill {
  fill: #000030;
}
.cid-uZ0DQPJnTq {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000030;
}
.cid-uZ0DQPJnTq blockquote {
  border-color: currentColor;
  padding: 1rem;
}
.cid-uZ0DQPJnTq .quote {
  color: #e43f3f;
}
.cid-uZ0DQPJnTq .quote,
.cid-uZ0DQPJnTq blockquote {
  color: #ffffff;
}
.cid-uZ0DQPJnTq .mbr-section-title {
  color: #ffffff;
}
.cid-uZ0DQPJnTq .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uZ0DQPJnTq .row {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 15px;
}
.cid-uZ0DQPJnTq .product-banner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}
.cid-uZ0DQPJnTq .divider {
  width: 75%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 12px 0;
  border-radius: 2px;
}
.cid-uZ0DQQaNGZ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000030;
}
.cid-uZ0DQQaNGZ .discord-banner {
  max-width: 1290px;
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px;
  margin: 20px auto;
}
.cid-uZ0DQQaNGZ .banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cid-uZ0DQQaNGZ .mbr-iconfont {
  color: #4f4fe0;
  font-size: 22px;
}
.cid-uZ0DQQaNGZ .banner-icon {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.05);
}
.cid-uZ0DQQaNGZ .banner-text {
  flex: 1;
  color: #fff;
}
.cid-uZ0DQQaNGZ .banner-text .mbr-section-title {
  margin: 0;
  font-weight: 600;
}
.cid-uZ0DQQaNGZ .banner-text .mbr-section-subtitle {
  margin: 5px 0 0;
  color: #bbbbbb;
}
.cid-uZ0DQQaNGZ .banner-btn .btn-support {
  background: #4f4fe0;
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  padding: 12px 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 0 20px rgba(79, 79, 224, 0.6);
  transition: all 0.3s ease-in-out;
}
.cid-uZ0DQQaNGZ .banner-btn .btn-support:hover {
  box-shadow: 0 0 12px #4f4fe0;
}
.cid-uZ0DQQaNGZ P {
  color: #bbbbbb;
}
@media (max-width: 768px) {
  .cid-uZ0DQQaNGZ .banner-content {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .cid-uZ0DQQaNGZ .banner-btn {
    width: 100%;
    margin-top: 10px;
    display: flex;
    justify-content: center;
  }
  .cid-uZ0DQQaNGZ .banner-btn .btn-support {
    width: auto;
    justify-content: center;
  }
}
.cid-uZ0DQQz1nF {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #000030;
}
.cid-uZ0DQQz1nF .mbr-section-title {
  color: #ffffff;
}
.cid-uZ0DQQz1nF .mbr-text b::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #f8363c;
  border-radius: 50%;
}
.cid-uZ0DQQz1nF .mbr-text,
.cid-uZ0DQQz1nF .mbr-section-btn {
  color: #bbbbbb;
}
.cid-uZ0DQQz1nF .mbr-section-subtitle {
  color: #4f4fe0;
}
.cid-uZ0DQQz1nF img {
  border-radius: 10px;
}
.cid-uZ0DQQz1nF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ0DQQz1nF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ0DQR6qTo {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000030;
}
.cid-uZ0DQR6qTo .mbr-section-subtitle {
  letter-spacing: 1px;
  margin-bottom: 1rem;
  color: #b4d8a4;
}
.cid-uZ0DQR6qTo .first-column .mbr-text {
  margin: 0;
}
.cid-uZ0DQR6qTo .row {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
  padding: 1.5rem;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .cid-uZ0DQR6qTo .row {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
}
.cid-uZ0DQR6qTo .form-group {
  max-width: 55%;
}
.cid-uZ0DQR6qTo .form-group,
.cid-uZ0DQR6qTo .mbr-section-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-uZ0DQR6qTo .form-control {
  font-size: 0.9rem;
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border: none !important;
  width: 100%;
  padding: 0.3rem 1rem;
  background: #353535;
  color: #bbbbbb;
}
.cid-uZ0DQR6qTo .form-control::-webkit-input-placeholder {
  color: #bbbbbb;
}
.cid-uZ0DQR6qTo .form-control::-moz-placeholder {
  color: #bbbbbb;
}
.cid-uZ0DQR6qTo .form-control:-moz-placeholder {
  color: #bbbbbb;
}
.cid-uZ0DQR6qTo .form-control:-ms-input-placeholder {
  color: #bbbbbb;
}
.cid-uZ0DQR6qTo .form-control:hover,
.cid-uZ0DQR6qTo .form-control:focus {
  border: none !important;
}
.cid-uZ0DQR6qTo .col + .mbr-section-btn .btn,
.cid-uZ0DQR6qTo .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-top-right-radius: 1rem !important;
  border-bottom-right-radius: 1rem !important;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  padding: 0 2.2rem !important;
}
.cid-uZ0DQR6qTo .dragArea > *:nth-last-child(2).col,
.cid-uZ0DQR6qTo .dragArea > *:nth-last-child(2).col-auto,
.cid-uZ0DQR6qTo .col + .mbr-section-btn,
.cid-uZ0DQR6qTo .col-auto + .mbr-section-btn {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uZ0DQR6qTo .mbr-form .row {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uZ0DQR6qTo .mbr-section-title {
  color: #e6e6e6;
}
.cid-uZ0DQR6qTo .mbr-section-subtitle,
.cid-uZ0DQR6qTo .icons-wrapper {
  color: #bbbbbb;
}
.cid-uZ0DQR6qTo P {
  color: #ffffff;
}
.cid-uZ0DQR6qTo .mbr-section-title,
.cid-uZ0DQR6qTo .icons-wrapper {
  color: #ffffff;
}
.cid-uZ0DQR6qTo .custom-gradient {
  background-image: linear-gradient(90deg, #7311d0, #a74dfd);
  text-shadow: 0 0 18px #7311d0;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}
.cid-uZ58HMBdEj {
  z-index: 1000;
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uZ58HMBdEj {
    flex-wrap: wrap;
  }
  .cid-uZ58HMBdEj .navbar > .container {
    flex-wrap: nowrap;
  }
}
.cid-uZ58HMBdEj .sales-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #4f4fe0;
  color: #fff;
  text-align: center;
  font-size: 16px;
  padding: 8px 15px;
  z-index: 1050;
  box-sizing: border-box;
}
.cid-uZ58HMBdEj .sales-banner p {
  margin: 0;
  font-weight: 500;
}
.cid-uZ58HMBdEj .sales-banner span {
  font-weight: 700;
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 6px;
  border-radius: 5px;
}
.cid-uZ58HMBdEj .navbar {
  top: 32px;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(0, 0, 48, 0);
}
.cid-uZ58HMBdEj .navbar.opened {
  transition: all 0.3s;
}
.cid-uZ58HMBdEj .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uZ58HMBdEj .navbar .navbar-logo img {
  width: auto;
}
.cid-uZ58HMBdEj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  flex-basis: auto!important;
}
.cid-uZ58HMBdEj .navbar.collapsed {
  justify-content: center;
}
.cid-uZ58HMBdEj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uZ58HMBdEj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uZ58HMBdEj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uZ58HMBdEj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uZ58HMBdEj .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uZ58HMBdEj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uZ58HMBdEj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uZ58HMBdEj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
@media (max-width: 991px) {
  .cid-uZ58HMBdEj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uZ58HMBdEj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uZ58HMBdEj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uZ58HMBdEj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uZ58HMBdEj .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uZ58HMBdEj .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uZ58HMBdEj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uZ58HMBdEj .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uZ58HMBdEj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uZ58HMBdEj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uZ58HMBdEj .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uZ58HMBdEj .navbar.navbar-short {
  min-height: 60px;
}
.cid-uZ58HMBdEj .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uZ58HMBdEj .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uZ58HMBdEj .opened .container {
    flex-wrap: wrap;
  }
}
.cid-uZ58HMBdEj .opened .container .navbar-collapse {
  width: 100%;
}
.cid-uZ58HMBdEj .btn {
  padding: 0.3rem 2rem;
}
.cid-uZ58HMBdEj .nav-link {
  position: relative;
}
.cid-uZ58HMBdEj .nav-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  transition: all 0.3s;
  background: #4f4fe0;
}
.cid-uZ58HMBdEj .nav-link:hover:before {
  width: 100%;
}
.cid-uZ58HMBdEj nav.navbar {
  position: fixed;
}
.cid-uZ58HMBdEj .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uZ58HMBdEj .dropdown-item small {
  display: block;
  font-size: 0.8em;
  color: #bbbbbb;
  margin-top: 2px;
}
.cid-uZ58HMBdEj .dropdown-menu {
  padding: 0;
  border-radius: 10px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uZ58HMBdEj .dropdown-item:hover,
.cid-uZ58HMBdEj .dropdown-item:focus {
  background: rgba(255, 255, 255, 0.04) !important;
  color: white !important;
}
.cid-uZ58HMBdEj .dropdown-item:first-child {
  border-radius: 10px;
}
.cid-uZ58HMBdEj .dropdown-item:last-child {
  border-radius: 10px;
}
.cid-uZ58HMBdEj .nav-dropdown .link {
  padding: 0 !important;
  margin: 0.667em 1em !important;
}
.cid-uZ58HMBdEj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
}
.cid-uZ58HMBdEj .container {
  display: flex;
  margin: auto;
}
.cid-uZ58HMBdEj .iconfont-wrapper {
  color: #4f4fe0 !important;
  font-size: 2rem;
  padding-right: 0.5rem;
}
.cid-uZ58HMBdEj .dropdown-menu,
.cid-uZ58HMBdEj .navbar.opened {
  background: #000030 !important;
}
.cid-uZ58HMBdEj .nav-item:focus,
.cid-uZ58HMBdEj .nav-link:focus {
  outline: none;
}
.cid-uZ58HMBdEj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uZ58HMBdEj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uZ58HMBdEj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uZ58HMBdEj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uZ58HMBdEj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uZ58HMBdEj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uZ58HMBdEj .navbar-short {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000030 !important;
  transition: all 0.3s;
}
.cid-uZ58HMBdEj .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uZ58HMBdEj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uZ58HMBdEj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uZ58HMBdEj .dropdown-item.active,
.cid-uZ58HMBdEj .dropdown-item:active {
  background-color: transparent;
}
.cid-uZ58HMBdEj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uZ58HMBdEj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uZ58HMBdEj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uZ58HMBdEj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000030;
}
.cid-uZ58HMBdEj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uZ58HMBdEj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uZ58HMBdEj ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uZ58HMBdEj .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uZ58HMBdEj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uZ58HMBdEj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uZ58HMBdEj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uZ58HMBdEj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uZ58HMBdEj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uZ58HMBdEj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uZ58HMBdEj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uZ58HMBdEj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uZ58HMBdEj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uZ58HMBdEj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uZ58HMBdEj .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uZ58HMBdEj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uZ58HMBdEj .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uZ58HMBdEj .navbar {
    height: 70px;
  }
  .cid-uZ58HMBdEj .navbar.opened {
    height: auto;
  }
  .cid-uZ58HMBdEj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uZ58HNsp14 {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/testbanner.jpg");
}
.cid-uZ58HNsp14 .mbr-text,
.cid-uZ58HNsp14 .mbr-section-btn {
  color: #f4f4f4;
}
.cid-uZ58HNsp14 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ58HNsp14 .bg {
  display: inline-block;
  width: 100%;
  max-width: 500px;
  text-align: center;
  background: rgba(79, 79, 224, 0.18);
  border: 1px solid rgba(79, 79, 224, 0.25);
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  padding: 20px 30px;
  box-sizing: border-box;
  font-size: 1rem;
  margin: 10px auto;
}
@media (max-width: 600px) {
  .cid-uZ58HNsp14 .bg {
    padding: 15px 20px;
    font-size: 0.9rem;
  }
}
.cid-uZ58HNsp14 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ58HNsp14 .mbr-section-title {
  color: #ffffff;
}
.cid-uZ58HNsp14 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZ58HNsp14 .mbr-section-tag {
  background-color: #4f4fe080;
  color: #ffffff;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: 10px;
  margin-bottom: 0.75rem;
}
.cid-uZ58HNsp14 .custom-shape-divider-bottom-1759527512 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.cid-uZ58HNsp14 .custom-shape-divider-bottom-1759527512 svg {
  position: relative;
  display: block;
  width: calc(101.3%);
  height: 100px;
}
.cid-uZ58HNsp14 .custom-shape-divider-bottom-1759527512 .shape-fill {
  fill: #000030;
}
.cid-uZ58Qw9mCQ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000030;
}
.cid-uZ58Qw9mCQ .row {
  flex-direction: row-reverse;
}
.cid-uZ58Qw9mCQ .divider {
  width: 75%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 12px 0;
  border-radius: 2px;
}
@media (max-width: 768px) {
  .cid-uZ58Qw9mCQ .divider {
    margin-left: auto;
    margin-right: auto;
    width: 90%;
  }
  .cid-uZ58Qw9mCQ .product-tags {
    justify-content: center;
  }
}
.cid-uZ58Qw9mCQ .product-price {
  margin-top: 10px;
}
.cid-uZ58Qw9mCQ .product-price .price {
  display: inline-block;
  background: #4f4fe0;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 10px;
}
.cid-uZ58Qw9mCQ .product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cid-uZ58Qw9mCQ .product-tags .tag {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 0.85rem;
  padding: 4px 10px;
  border-radius: 10px;
  white-space: nowrap;
  transition: background 0.2s ease;
}
.cid-uZ58Qw9mCQ .main-image {
  margin-bottom: 12px;
  max-height: 400px;
  object-fit: contain;
  border-radius: 10px;
  transition: opacity 0.3s ease-in-out;
}
.cid-uZ58Qw9mCQ .thumbnail-container {
  position: relative;
  display: flex;
  align-items: center;
}
.cid-uZ58Qw9mCQ .thumbnail-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.cid-uZ58Qw9mCQ .thumbnail-row::-webkit-scrollbar {
  display: none;
}
.cid-uZ58Qw9mCQ .thumbnail {
  flex: 0 0 auto;
  width: 80px;
  height: 60px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 2px;
}
.cid-uZ58Qw9mCQ .thumb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 6px;
  font-size: 18px;
  z-index: 2;
}
.cid-uZ58Qw9mCQ .thumb-arrow.left {
  left: -15px;
}
.cid-uZ58Qw9mCQ .thumb-arrow.right {
  right: -15px;
}
.cid-uZ58Qw9mCQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ58Qw9mCQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ58Qw9mCQ .mbr-text,
.cid-uZ58Qw9mCQ .mbr-section-btn {
  color: #bbbbbb;
}
.cid-uZ58Qw9mCQ .mbr-section-title {
  color: #ffffff;
}
.cid-uZ58Qw9mCQ .mbr-section-subtitle {
  color: #4f4fe0;
}
.cid-uZ58HNUgmB {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000030;
}
.cid-uZ58HNUgmB .mbr-iconfont {
  display: block;
  font-size: 2.5rem;
  color: #4f4fe0;
  margin-bottom: 0.5rem;
}
.cid-uZ58HNUgmB .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-uZ58HNUgmB .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-uZ58HNUgmB .card-wrapper {
  transition: all 0.2s ease;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-uZ58HNUgmB .card-wrapper:hover {
  transform: translateY(-3px);
}
.cid-uZ58HNUgmB .card-title,
.cid-uZ58HNUgmB .card-box {
  color: #fafafa;
  text-align: center;
}
.cid-uZ58HNUgmB .main-title,
.cid-uZ58HNUgmB .title-col {
  text-align: center;
  color: #ffffff;
}
.cid-uZ58HNUgmB .card-text {
  color: #bbbbbb;
}
.cid-uZ58HNUgmB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ58HNUgmB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ58RyblTH {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #000030;
}
.cid-uZ58RyblTH blockquote {
  border-color: currentColor;
  padding: 1rem;
}
.cid-uZ58RyblTH .quote {
  color: #e43f3f;
}
.cid-uZ58RyblTH .quote,
.cid-uZ58RyblTH blockquote {
  color: #ffffff;
}
.cid-uZ58RyblTH .mbr-section-title {
  color: #ffffff;
}
.cid-uZ58RyblTH .mbr-text {
  color: #bbbbbb;
}
.cid-uZ58RyblTH .row {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 15px;
}
.cid-uZ58RyblTH .product-banner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}
.cid-uZ58RyblTH .divider {
  width: 75%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 12px 0;
  border-radius: 2px;
}
.cid-uZ58HPormQ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000030;
}
.cid-uZ58HPormQ .discord-banner {
  max-width: 1290px;
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px;
  margin: 20px auto;
}
.cid-uZ58HPormQ .banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cid-uZ58HPormQ .mbr-iconfont {
  color: #4f4fe0;
  font-size: 22px;
}
.cid-uZ58HPormQ .banner-icon {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.05);
}
.cid-uZ58HPormQ .banner-text {
  flex: 1;
  color: #fff;
}
.cid-uZ58HPormQ .banner-text .mbr-section-title {
  margin: 0;
  font-weight: 600;
}
.cid-uZ58HPormQ .banner-text .mbr-section-subtitle {
  margin: 5px 0 0;
  color: #bbbbbb;
}
.cid-uZ58HPormQ .banner-btn .btn-support {
  background: #4f4fe0;
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  padding: 12px 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 0 20px rgba(79, 79, 224, 0.6);
  transition: all 0.3s ease-in-out;
}
.cid-uZ58HPormQ .banner-btn .btn-support:hover {
  box-shadow: 0 0 12px #4f4fe0;
}
.cid-uZ58HPormQ P {
  color: #bbbbbb;
}
@media (max-width: 768px) {
  .cid-uZ58HPormQ .banner-content {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .cid-uZ58HPormQ .banner-btn {
    width: 100%;
    margin-top: 10px;
    display: flex;
    justify-content: center;
  }
  .cid-uZ58HPormQ .banner-btn .btn-support {
    width: auto;
    justify-content: center;
  }
}
.cid-uZ58HQaUrj {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #000030;
}
.cid-uZ58HQaUrj .mbr-section-title {
  color: #ffffff;
}
.cid-uZ58HQaUrj .mbr-text b::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #f8363c;
  border-radius: 50%;
}
.cid-uZ58HQaUrj .mbr-text,
.cid-uZ58HQaUrj .mbr-section-btn {
  color: #bbbbbb;
}
.cid-uZ58HQaUrj .mbr-section-subtitle {
  color: #4f4fe0;
}
.cid-uZ58HQaUrj img {
  border-radius: 10px;
}
.cid-uZ58HQaUrj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ58HQaUrj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ58HQPZyt {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000030;
}
.cid-uZ58HQPZyt .mbr-section-subtitle {
  letter-spacing: 1px;
  margin-bottom: 1rem;
  color: #b4d8a4;
}
.cid-uZ58HQPZyt .first-column .mbr-text {
  margin: 0;
}
.cid-uZ58HQPZyt .row {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
  padding: 1.5rem;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .cid-uZ58HQPZyt .row {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
}
.cid-uZ58HQPZyt .form-group {
  max-width: 55%;
}
.cid-uZ58HQPZyt .form-group,
.cid-uZ58HQPZyt .mbr-section-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-uZ58HQPZyt .form-control {
  font-size: 0.9rem;
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border: none !important;
  width: 100%;
  padding: 0.3rem 1rem;
  background: #353535;
  color: #bbbbbb;
}
.cid-uZ58HQPZyt .form-control::-webkit-input-placeholder {
  color: #bbbbbb;
}
.cid-uZ58HQPZyt .form-control::-moz-placeholder {
  color: #bbbbbb;
}
.cid-uZ58HQPZyt .form-control:-moz-placeholder {
  color: #bbbbbb;
}
.cid-uZ58HQPZyt .form-control:-ms-input-placeholder {
  color: #bbbbbb;
}
.cid-uZ58HQPZyt .form-control:hover,
.cid-uZ58HQPZyt .form-control:focus {
  border: none !important;
}
.cid-uZ58HQPZyt .col + .mbr-section-btn .btn,
.cid-uZ58HQPZyt .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-top-right-radius: 1rem !important;
  border-bottom-right-radius: 1rem !important;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  padding: 0 2.2rem !important;
}
.cid-uZ58HQPZyt .dragArea > *:nth-last-child(2).col,
.cid-uZ58HQPZyt .dragArea > *:nth-last-child(2).col-auto,
.cid-uZ58HQPZyt .col + .mbr-section-btn,
.cid-uZ58HQPZyt .col-auto + .mbr-section-btn {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uZ58HQPZyt .mbr-form .row {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uZ58HQPZyt .mbr-section-title {
  color: #e6e6e6;
}
.cid-uZ58HQPZyt .mbr-section-subtitle,
.cid-uZ58HQPZyt .icons-wrapper {
  color: #bbbbbb;
}
.cid-uZ58HQPZyt P {
  color: #ffffff;
}
.cid-uZ58HQPZyt .mbr-section-title,
.cid-uZ58HQPZyt .icons-wrapper {
  color: #ffffff;
}
.cid-uZ58HQPZyt .custom-gradient {
  background-image: linear-gradient(90deg, #7311d0, #a74dfd);
  text-shadow: 0 0 18px #7311d0;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}
