body {
  font-family: 'Rubik', sans-serif;
}
.display-1 {
  font-family: 'Rubik', sans-serif;
  font-size: 4.2rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.25rem;
}
.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: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Rubik', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.875rem;
}
.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: 3.36rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.94rem;
    font-size: calc( 2.12rem + (4.2 - 2.12) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.12rem + (4.2 - 2.12) * ((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.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((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: #3f7df0 !important;
}
.bg-success {
  background-color: #3f7df0 !important;
}
.bg-info {
  background-color: #b9abe5 !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #212428 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #3f7df0 !important;
  border-color: #3f7df0 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #3f7df0 !important;
  border-color: #3f7df0 !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: #501517 !important;
  border-color: #501517 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #000000 !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #000000 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  transform: translateY(-3px);
  /* moves it up 3px */
  transition: transform 0.2s ease;
  /* smooth animation */
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #000000 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !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: #3f7df0 !important;
  border-color: #3f7df0 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #3f7df0 !important;
  border-color: #3f7df0 !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: #3f7df0 !important;
  border-color: #3f7df0 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !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: #ffd10a !important;
  border-color: #ffd10a !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: #3f7df0 !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: #3f7df0 !important;
  box-shadow: #3f7df0 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: transparent;
  color: #3f7df0;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #501517 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #3f7df0 !important;
  border-color: #3f7df0 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #b9abe5;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #8269d1 !important;
  background-color: transparent !important;
  border-color: transparent !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: transparent;
  color: #3f7df0;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #3f7df0 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #3f7df0 !important;
  border-color: #3f7df0 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #212428;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: transparent !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: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: transparent !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: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent !important;
  border-color: transparent !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: #3f7df0 !important;
}
.text-secondary {
  color: #ffffff !important;
}
.text-success {
  color: #3f7df0 !important;
}
.text-info {
  color: #b9abe5 !important;
}
.text-warning {
  color: #ffe161 !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: #441213 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #cccccc !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #3f7df0 !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: #facb00 !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: #3f7df0;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #b9abe5;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #212428;
}
.mbr-gallery-filter li.active .btn {
  background-color: #3f7df0;
  border-color: #3f7df0;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #3f7df0;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #d76568;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #fffbfb;
}
.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: #ffffff;
}
.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: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.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: #3f7df0 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #3f7df0;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #3f7df0;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #3f7df0;
}
.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: #3f7df0;
  border-bottom-color: #3f7df0;
}
.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: #3f7df0 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ffffff !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='%2395272a' %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-v3fXBQ5bxy {
  z-index: 1000;
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3fXBQ5bxy {
    flex-wrap: wrap;
  }
  .cid-v3fXBQ5bxy .navbar-collapse {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
  }
  .cid-v3fXBQ5bxy .navbar-nav {
    margin: 0 auto;
    display: flex;
    gap: 1.5rem;
  }
  .cid-v3fXBQ5bxy .icons-menu,
  .cid-v3fXBQ5bxy .navbar-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .cid-v3fXBQ5bxy .navbar > .container {
    flex-wrap: nowrap;
  }
}
.cid-v3fXBQ5bxy img {
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}
.cid-v3fXBQ5bxy .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(3, 7, 18, 0);
}
.cid-v3fXBQ5bxy .navbar.opened {
  transition: all 0.3s;
}
.cid-v3fXBQ5bxy .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v3fXBQ5bxy .navbar .navbar-logo img {
  width: auto;
}
.cid-v3fXBQ5bxy .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  flex-basis: auto!important;
}
.cid-v3fXBQ5bxy .navbar.collapsed {
  justify-content: center;
}
.cid-v3fXBQ5bxy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v3fXBQ5bxy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v3fXBQ5bxy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v3fXBQ5bxy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v3fXBQ5bxy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v3fXBQ5bxy .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-v3fXBQ5bxy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v3fXBQ5bxy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v3fXBQ5bxy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
@media (max-width: 991px) {
  .cid-v3fXBQ5bxy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v3fXBQ5bxy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v3fXBQ5bxy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v3fXBQ5bxy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v3fXBQ5bxy .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-v3fXBQ5bxy .navbar .navbar-logo img {
    height: 5rem !important;
  }
  .cid-v3fXBQ5bxy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v3fXBQ5bxy .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v3fXBQ5bxy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v3fXBQ5bxy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v3fXBQ5bxy .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v3fXBQ5bxy .navbar.navbar-short {
  min-height: 60px;
}
.cid-v3fXBQ5bxy .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v3fXBQ5bxy .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (max-width: 992px) {
  .cid-v3fXBQ5bxy .opened .container {
    flex-wrap: wrap;
  }
}
.cid-v3fXBQ5bxy .opened .container .navbar-collapse {
  width: 100%;
}
.cid-v3fXBQ5bxy .btn {
  padding: 0.3rem 2rem;
}
.cid-v3fXBQ5bxy .nav-link {
  position: relative;
}
.cid-v3fXBQ5bxy .nav-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  transition: all 0.3s;
  background: #3f7df0;
}
.cid-v3fXBQ5bxy .nav-link:hover:before {
  width: 100%;
}
.cid-v3fXBQ5bxy nav.navbar {
  position: fixed;
}
.cid-v3fXBQ5bxy .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-v3fXBQ5bxy .dropdown-item small {
  display: block;
  font-size: 0.8em;
  color: #d1d5dc;
}
.cid-v3fXBQ5bxy .dropdown-menu {
  padding: 0;
  border-radius: 10px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v3fXBQ5bxy .dropdown-item:hover,
.cid-v3fXBQ5bxy .dropdown-item:focus {
  background: rgba(255, 255, 255, 0.04) !important;
  color: white !important;
}
.cid-v3fXBQ5bxy .dropdown-item:first-child {
  border-radius: 10px;
}
.cid-v3fXBQ5bxy .dropdown-item:last-child {
  border-radius: 10px;
}
.cid-v3fXBQ5bxy .nav-dropdown .link {
  padding: 0 !important;
  margin: 0.667em 1em !important;
}
.cid-v3fXBQ5bxy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
}
.cid-v3fXBQ5bxy .container {
  display: flex;
  margin: auto;
}
.cid-v3fXBQ5bxy .iconfont-wrapper {
  color: #4f4fe0 !important;
  font-size: 2rem;
  padding-right: 0.5rem;
}
.cid-v3fXBQ5bxy .dropdown-menu,
.cid-v3fXBQ5bxy .navbar.opened {
  background: #030712 !important;
}
.cid-v3fXBQ5bxy .nav-item:focus,
.cid-v3fXBQ5bxy .nav-link:focus {
  outline: none;
}
.cid-v3fXBQ5bxy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v3fXBQ5bxy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3fXBQ5bxy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v3fXBQ5bxy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v3fXBQ5bxy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v3fXBQ5bxy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v3fXBQ5bxy .navbar-short {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #030712 !important;
  transition: all 0.3s;
}
.cid-v3fXBQ5bxy .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-v3fXBQ5bxy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v3fXBQ5bxy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v3fXBQ5bxy .dropdown-item.active,
.cid-v3fXBQ5bxy .dropdown-item:active {
  background-color: transparent;
}
.cid-v3fXBQ5bxy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v3fXBQ5bxy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v3fXBQ5bxy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v3fXBQ5bxy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #030712;
}
.cid-v3fXBQ5bxy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v3fXBQ5bxy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3fXBQ5bxy ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v3fXBQ5bxy .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v3fXBQ5bxy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v3fXBQ5bxy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3fXBQ5bxy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v3fXBQ5bxy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3fXBQ5bxy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3fXBQ5bxy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v3fXBQ5bxy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3fXBQ5bxy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v3fXBQ5bxy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v3fXBQ5bxy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3fXBQ5bxy .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v3fXBQ5bxy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v3fXBQ5bxy .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-v3fXBQ5bxy .navbar {
    height: 70px;
  }
  .cid-v3fXBQ5bxy .navbar.opened {
    height: auto;
  }
  .cid-v3fXBQ5bxy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v3I5ye43Cs {
  padding-top: 8rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/red-space-1920-x-1080-background-adgrrp7kid1gpr45.jpg-1920x1080.jpg");
}
.cid-v3I5ye43Cs .mbr-text,
.cid-v3I5ye43Cs .mbr-section-btn {
  color: #d1d5dc;
}
.cid-v3I5ye43Cs .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3I5ye43Cs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3I5ye43Cs .mbr-section-title {
  color: #ffffff;
}
.cid-v3I5ye43Cs .status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #08254b;
  padding: 6px 14px;
  border-radius: 100px;
  font-weight: 600;
  position: relative;
}
.cid-v3I5ye43Cs .status-pill::before {
  content: "";
  position: relative;
  width: 10px;
  height: 10px;
  background: #52ff2f;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(9, 255, 0, 0.8);
  animation: pulse 1.8s infinite ease-out;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  60% {
    transform: scale(1.7);
    opacity: 0.15;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}
.cid-v3I5ye43Cs .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v3I5ye43Cs .custom-shape-divider-bottom-1764122333 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}
.cid-v3I5ye43Cs .custom-shape-divider-bottom-1764122333 svg {
  position: relative;
  display: block;
  width: calc(101.3%);
  height: 76px;
}
.cid-v3I5ye43Cs .custom-shape-divider-bottom-1764122333 .shape-fill {
  fill: #030712;
}
.cid-v3g1E4zU3w {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #030712;
}
.cid-v3g1E4zU3w .mbr-iconfont {
  display: block;
  font-size: 2.5rem;
  color: #3f7df0;
  margin-bottom: 0.5rem;
}
.cid-v3g1E4zU3w .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-v3g1E4zU3w .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-v3g1E4zU3w .card-wrapper {
  transition: all 0.3s;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
}
.cid-v3g1E4zU3w .card-wrapper:hover {
  transform: translateY(-2px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.cid-v3g1E4zU3w .card-title,
.cid-v3g1E4zU3w .card-box {
  color: #fafafa;
  text-align: center;
}
.cid-v3g1E4zU3w .main-title,
.cid-v3g1E4zU3w .title-col {
  text-align: center;
  color: #ffffff;
}
.cid-v3g1E4zU3w .card-text {
  color: #d1d5dc;
}
.cid-v3g1E4zU3w .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3g1E4zU3w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3g33hVftV {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #030712;
}
.cid-v3g33hVftV .item-img {
  position: relative;
}
.cid-v3g33hVftV .tag {
  position: absolute;
  left: 1rem;
  top: 0.5rem;
}
.cid-v3g33hVftV .price {
  text-align: left;
}
.cid-v3g33hVftV .btn-tag {
  padding: 0.3rem 1rem;
  padding-top: 6px;
  border-radius: 10px !important;
}
.cid-v3g33hVftV .btn-tag:hover,
.cid-v3g33hVftV .btn-tag:focus {
  box-shadow: none;
}
.cid-v3g33hVftV img,
.cid-v3g33hVftV .item-img {
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 10px;
  display: block;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-v3g33hVftV .item:focus,
.cid-v3g33hVftV span:focus {
  outline: none;
}
.cid-v3g33hVftV .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3g33hVftV .item-wrapper {
  position: relative;
  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: 10px;
  transition: all 0.3s;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
  padding: 15px;
}
.cid-v3g33hVftV .item-wrapper:hover {
  transform: translateY(-2px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.cid-v3g33hVftV .mbr-section-btn {
  margin-top: auto !important;
  text-align: center;
}
.cid-v3g33hVftV .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v3g33hVftV .mbr-text {
  color: #013220;
  text-align: left;
}
.cid-v3g33hVftV .item-title {
  display: inline-block;
  background-color: #ffffff;
  color: #09090b;
  padding: 4px 10px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.85rem;
  text-align: left;
}
.cid-v3g33hVftV .item-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-v3g33hVftV .mbr-text,
.cid-v3g33hVftV .mbr-section-btn {
  color: #d4d4d8;
  text-align: left;
}
.cid-v3g33hVftV .mbr-section-subtitle {
  color: #d4d4d8;
  text-align: center;
}
.cid-v3Iy6e2G8r {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #030712;
}
.cid-v3Iy6e2G8r .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: 10px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
  padding: 30px;
  transition: all 0.3s;
  margin: 20px auto;
}
.cid-v3Iy6e2G8r .discord-banner:hover {
  transform: translateY(-2px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.cid-v3Iy6e2G8r .banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cid-v3Iy6e2G8r .mbr-iconfont {
  color: #3f7df0;
  font-size: 22px;
}
.cid-v3Iy6e2G8r .banner-icon {
  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: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
}
.cid-v3Iy6e2G8r .banner-text {
  flex: 1;
  color: #fff;
}
.cid-v3Iy6e2G8r .banner-text .mbr-section-title {
  margin: 0;
  font-weight: 600;
}
.cid-v3Iy6e2G8r .banner-text .mbr-section-subtitle {
  margin: 5px 0 0;
  color: #bbbbbb;
}
.cid-v3Iy6e2G8r .banner-btn .btn-support {
  background: #3f7df0;
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  padding: 12px 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s ease;
}
.cid-v3Iy6e2G8r .banner-btn .btn-support:hover {
  transform: translateY(-3px);
}
.cid-v3Iy6e2G8r P {
  color: #d1d5dc;
  text-align: left;
}
.cid-v3Iy6e2G8r .mbr-section-subtitle {
  color: #d1d5dc;
}
@media (max-width: 768px) {
  .cid-v3Iy6e2G8r .banner-content {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .cid-v3Iy6e2G8r .banner-btn {
    width: 100%;
    margin-top: 10px;
    display: flex;
    justify-content: center;
  }
  .cid-v3Iy6e2G8r .banner-btn .btn-support {
    width: auto;
    justify-content: center;
  }
}
.cid-v3Iy6e2G8r H4 {
  color: #ffffff;
}
.cid-v3jMTZBFnQ {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #030712;
}
.cid-v3jMTZBFnQ .mbr-section-title {
  color: #ffffff;
}
.cid-v3jMTZBFnQ .text-wrapper {
  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;
}
.cid-v3jMTZBFnQ .mbr-text b::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #3f7df0;
  border-radius: 50%;
}
.cid-v3jMTZBFnQ .mbr-text,
.cid-v3jMTZBFnQ .mbr-section-btn {
  color: #d1d5dc;
}
.cid-v3jMTZBFnQ .mbr-section-subtitle {
  color: #3f7df0;
}
.cid-v3jMTZBFnQ img {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.cid-v3jMTZBFnQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3jMTZBFnQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3jMp2XH7D {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #030712;
}
@media (max-width: 991px) {
  .cid-v3jMp2XH7D .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3jMp2XH7D .row {
  flex-direction: row-reverse;
}
.cid-v3jMp2XH7D img {
  width: 100%;
  transition: all 0.3s 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);
}
.cid-v3jMp2XH7D img:hover {
  transform: translateY(-2px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.cid-v3jMp2XH7D .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3jMp2XH7D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3jMp2XH7D .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-v3qn0tQrOz {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #030712;
}
.cid-v3qn0tQrOz .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #3f7df0;
  margin-bottom: 1rem;
}
.cid-v3qn0tQrOz .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-v3qn0tQrOz .card-wrapper {
  transition: all 0.3s ease;
  padding: 2rem 2rem;
  display: flex;
  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);
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}
.cid-v3qn0tQrOz .card-wrapper:hover {
  transform: translateY(-2px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.cid-v3qn0tQrOz .card-title,
.cid-v3qn0tQrOz .card-box {
  color: #ffffff;
}
.cid-v3qn0tQrOz .main-title,
.cid-v3qn0tQrOz .title-col {
  text-align: center;
  color: #ffffff;
}
.cid-v3qn0tQrOz .card-text {
  color: #ffffff;
}
.cid-v3qn0tQrOz .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3qn0tQrOz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3qn0tQrOz .mbr-text,
.cid-v3qn0tQrOz .mbr-section-btn {
  color: #d1d5dc;
}
.cid-v3MZgtxygC {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #030712;
}
.cid-v3MZgtxygC .iconfont-wrapper {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.cid-v3MZgtxygC .card-box {
  z-index: 2;
  position: relative;
}
.cid-v3MZgtxygC .card-title,
.cid-v3MZgtxygC .card-text {
  transition: all 0.3s;
}
.cid-v3MZgtxygC .card-wrapper {
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  padding: 3rem 2rem;
  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);
}
.cid-v3MZgtxygC .card-wrapper:hover {
  transform: translateY(-2px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
@media (max-width: 767px) {
  .cid-v3MZgtxygC .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-v3MZgtxygC .card-title,
.cid-v3MZgtxygC .iconfont-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-v3MZgtxygC .card-text {
  color: #353535;
}
.cid-v3MZgtxygC .card-text,
.cid-v3MZgtxygC .mbr-section-btn {
  text-align: center;
  color: #d1d5dc;
}
.cid-v3MZgtxygC .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3MZgtxygC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3MZgtxygC .mbr-section-title {
  color: #d5d5d5;
  text-align: center;
}
.cid-v3MZgtxygC .mbr-section-subtitle {
  color: #d5d5d5;
}
.cid-v3jQKDJHDF {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #030712;
}
.cid-v3jQKDJHDF .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: "Moririse2" !important;
  color: #3f7df0;
  margin-left: 1rem;
}
.cid-v3jQKDJHDF .panel-group,
.cid-v3jQKDJHDF .card-header {
  border: none;
}
.cid-v3jQKDJHDF .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-v3jQKDJHDF .card-header {
  background: transparent;
}
.cid-v3jQKDJHDF .panel-title-edit {
  color: #ffffff;
  text-align: left;
}
.cid-v3jQKDJHDF .card {
  transition: all 0.3s 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);
  margin-bottom: 0;
  padding: 1rem 1rem;
}
.cid-v3jQKDJHDF .card:hover {
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.cid-v3jQKDJHDF .panel-body {
  padding: 1rem 1rem;
}
.cid-v3jQKDJHDF .panel-text {
  color: #d1d5dc;
  margin: 0;
}
.cid-v3jQKDJHDF H3 {
  color: #ffffff;
}
.cid-v3jQKDJHDF H4 {
  color: #ffffff;
}
.cid-v3jQKDJHDF .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3jQKDJHDF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3jPUMxwes {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #030712;
}
.cid-v3jPUMxwes .mbr-section-subtitle {
  letter-spacing: 1px;
  margin-bottom: 1rem;
  color: #b4d8a4;
}
.cid-v3jPUMxwes .first-column .mbr-text {
  margin: 0;
}
.cid-v3jPUMxwes .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;
  color: white;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .cid-v3jPUMxwes .row {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
}
.cid-v3jPUMxwes .form-group {
  max-width: 55%;
}
.cid-v3jPUMxwes .form-group,
.cid-v3jPUMxwes .mbr-section-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-v3jPUMxwes .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-v3jPUMxwes .form-control::-webkit-input-placeholder {
  color: #bbbbbb;
}
.cid-v3jPUMxwes .form-control::-moz-placeholder {
  color: #bbbbbb;
}
.cid-v3jPUMxwes .form-control:-moz-placeholder {
  color: #bbbbbb;
}
.cid-v3jPUMxwes .form-control:-ms-input-placeholder {
  color: #bbbbbb;
}
.cid-v3jPUMxwes .form-control:hover,
.cid-v3jPUMxwes .form-control:focus {
  border: none !important;
}
.cid-v3jPUMxwes .col + .mbr-section-btn .btn,
.cid-v3jPUMxwes .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-v3jPUMxwes .dragArea > *:nth-last-child(2).col,
.cid-v3jPUMxwes .dragArea > *:nth-last-child(2).col-auto,
.cid-v3jPUMxwes .col + .mbr-section-btn,
.cid-v3jPUMxwes .col-auto + .mbr-section-btn {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-v3jPUMxwes .mbr-form .row {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v3jPUMxwes .mbr-section-title {
  color: #e6e6e6;
}
.cid-v3jPUMxwes .mbr-section-subtitle,
.cid-v3jPUMxwes .icons-wrapper {
  color: #d4d4d8;
}
.cid-v3jPUMxwes P {
  color: #ffffff;
}
.cid-v3jPUMxwes .mbr-section-title,
.cid-v3jPUMxwes .icons-wrapper {
  color: #ffffff;
}
.cid-v3jPUMxwes .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;
}
#custom-html-9 #progressBar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: #3f7df0;
  width: 0%;
  z-index: 9999;
}
.cid-v3xFIAxuZe {
  z-index: 1000;
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3xFIAxuZe {
    flex-wrap: wrap;
  }
  .cid-v3xFIAxuZe .navbar-collapse {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
  }
  .cid-v3xFIAxuZe .navbar-nav {
    margin: 0 auto;
    display: flex;
    gap: 1.5rem;
  }
  .cid-v3xFIAxuZe .icons-menu,
  .cid-v3xFIAxuZe .navbar-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .cid-v3xFIAxuZe .navbar > .container {
    flex-wrap: nowrap;
  }
}
.cid-v3xFIAxuZe img {
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}
.cid-v3xFIAxuZe .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(3, 7, 18, 0);
}
.cid-v3xFIAxuZe .navbar.opened {
  transition: all 0.3s;
}
.cid-v3xFIAxuZe .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v3xFIAxuZe .navbar .navbar-logo img {
  width: auto;
}
.cid-v3xFIAxuZe .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  flex-basis: auto!important;
}
.cid-v3xFIAxuZe .navbar.collapsed {
  justify-content: center;
}
.cid-v3xFIAxuZe .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v3xFIAxuZe .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v3xFIAxuZe .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v3xFIAxuZe .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v3xFIAxuZe .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v3xFIAxuZe .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-v3xFIAxuZe .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v3xFIAxuZe .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v3xFIAxuZe .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
@media (max-width: 991px) {
  .cid-v3xFIAxuZe .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v3xFIAxuZe .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v3xFIAxuZe .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v3xFIAxuZe .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v3xFIAxuZe .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-v3xFIAxuZe .navbar .navbar-logo img {
    height: 5rem !important;
  }
  .cid-v3xFIAxuZe .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v3xFIAxuZe .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v3xFIAxuZe .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v3xFIAxuZe .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v3xFIAxuZe .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v3xFIAxuZe .navbar.navbar-short {
  min-height: 60px;
}
.cid-v3xFIAxuZe .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v3xFIAxuZe .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (max-width: 992px) {
  .cid-v3xFIAxuZe .opened .container {
    flex-wrap: wrap;
  }
}
.cid-v3xFIAxuZe .opened .container .navbar-collapse {
  width: 100%;
}
.cid-v3xFIAxuZe .btn {
  padding: 0.3rem 2rem;
}
.cid-v3xFIAxuZe .nav-link {
  position: relative;
}
.cid-v3xFIAxuZe .nav-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  transition: all 0.3s;
  background: #3f7df0;
}
.cid-v3xFIAxuZe .nav-link:hover:before {
  width: 100%;
}
.cid-v3xFIAxuZe nav.navbar {
  position: fixed;
}
.cid-v3xFIAxuZe .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-v3xFIAxuZe .dropdown-item small {
  display: block;
  font-size: 0.8em;
  color: #d1d5dc;
}
.cid-v3xFIAxuZe .dropdown-menu {
  padding: 0;
  border-radius: 10px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v3xFIAxuZe .dropdown-item:hover,
.cid-v3xFIAxuZe .dropdown-item:focus {
  background: rgba(255, 255, 255, 0.04) !important;
  color: white !important;
}
.cid-v3xFIAxuZe .dropdown-item:first-child {
  border-radius: 10px;
}
.cid-v3xFIAxuZe .dropdown-item:last-child {
  border-radius: 10px;
}
.cid-v3xFIAxuZe .nav-dropdown .link {
  padding: 0 !important;
  margin: 0.667em 1em !important;
}
.cid-v3xFIAxuZe .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
}
.cid-v3xFIAxuZe .container {
  display: flex;
  margin: auto;
}
.cid-v3xFIAxuZe .iconfont-wrapper {
  color: #4f4fe0 !important;
  font-size: 2rem;
  padding-right: 0.5rem;
}
.cid-v3xFIAxuZe .dropdown-menu,
.cid-v3xFIAxuZe .navbar.opened {
  background: #030712 !important;
}
.cid-v3xFIAxuZe .nav-item:focus,
.cid-v3xFIAxuZe .nav-link:focus {
  outline: none;
}
.cid-v3xFIAxuZe .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v3xFIAxuZe .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3xFIAxuZe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v3xFIAxuZe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v3xFIAxuZe .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v3xFIAxuZe .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v3xFIAxuZe .navbar-short {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #030712 !important;
  transition: all 0.3s;
}
.cid-v3xFIAxuZe .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-v3xFIAxuZe .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v3xFIAxuZe .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v3xFIAxuZe .dropdown-item.active,
.cid-v3xFIAxuZe .dropdown-item:active {
  background-color: transparent;
}
.cid-v3xFIAxuZe .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v3xFIAxuZe .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v3xFIAxuZe .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v3xFIAxuZe .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #030712;
}
.cid-v3xFIAxuZe .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v3xFIAxuZe .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3xFIAxuZe ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v3xFIAxuZe .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v3xFIAxuZe button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v3xFIAxuZe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3xFIAxuZe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v3xFIAxuZe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3xFIAxuZe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3xFIAxuZe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v3xFIAxuZe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3xFIAxuZe nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v3xFIAxuZe nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v3xFIAxuZe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3xFIAxuZe .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v3xFIAxuZe a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v3xFIAxuZe .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-v3xFIAxuZe .navbar {
    height: 70px;
  }
  .cid-v3xFIAxuZe .navbar.opened {
    height: auto;
  }
  .cid-v3xFIAxuZe .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v3xFIBf9eb {
  padding-top: 8rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/download.jpg-1920x1080.jpg");
}
.cid-v3xFIBf9eb .mbr-text,
.cid-v3xFIBf9eb .mbr-section-btn {
  color: #d1d5dc;
}
.cid-v3xFIBf9eb .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3xFIBf9eb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3xFIBf9eb .mbr-section-title {
  color: #ffffff;
}
.cid-v3xFIBf9eb .status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #08254b;
  padding: 6px 14px;
  border-radius: 100px;
  font-weight: 600;
  position: relative;
}
.cid-v3xFIBf9eb .status-pill::before {
  content: "";
  position: relative;
  width: 10px;
  height: 10px;
  background: #00ff22ad;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(131, 255, 100, 0.8);
  animation: pulse 1.8s infinite ease-out;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  60% {
    transform: scale(1.7);
    opacity: 0.15;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}
.cid-v3xFIBf9eb .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v3xFIBf9eb .custom-shape-divider-bottom-1764122333 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}
.cid-v3xFIBf9eb .custom-shape-divider-bottom-1764122333 svg {
  position: relative;
  display: block;
  width: calc(101.3%);
  height: 76px;
}
.cid-v3xFIBf9eb .custom-shape-divider-bottom-1764122333 .shape-fill {
  fill: #030712;
}
.cid-v3xFIBN8bv {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #030712;
}
.cid-v3xFIBN8bv .mbr-iconfont {
  display: block;
  font-size: 2.5rem;
  color: #3f7df0;
  margin-bottom: 0.5rem;
}
.cid-v3xFIBN8bv .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-v3xFIBN8bv .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-v3xFIBN8bv .card-wrapper {
  transition: all 0.3s;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
}
.cid-v3xFIBN8bv .card-wrapper:hover {
  transform: translateY(-2px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.cid-v3xFIBN8bv .card-title,
.cid-v3xFIBN8bv .card-box {
  color: #fafafa;
  text-align: center;
}
.cid-v3xFIBN8bv .main-title,
.cid-v3xFIBN8bv .title-col {
  text-align: center;
  color: #ffffff;
}
.cid-v3xFIBN8bv .card-text {
  color: #d1d5dc;
}
.cid-v3xFIBN8bv .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3xFIBN8bv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3xFICy43o {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #030712;
}
.cid-v3xFICy43o .item-img {
  position: relative;
}
.cid-v3xFICy43o .btn-tag {
  padding: 0.3rem 1rem;
  padding-top: 6px;
  border-radius: 10px !important;
}
.cid-v3xFICy43o .btn-tag:hover,
.cid-v3xFICy43o .btn-tag:focus {
  box-shadow: none;
}
.cid-v3xFICy43o img,
.cid-v3xFICy43o .item-img {
  width: 65%;
  display: block;
  margin: 0 auto;
}
.cid-v3xFICy43o .item:focus,
.cid-v3xFICy43o span:focus {
  outline: none;
}
.cid-v3xFICy43o .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3xFICy43o .item-wrapper {
  position: relative;
  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: 10px;
  transition: all 0.3s;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
  padding: 15px;
}
.cid-v3xFICy43o .item-wrapper:hover {
  transform: translateY(-2px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.cid-v3xFICy43o .mbr-section-btn {
  margin-top: auto !important;
  text-align: center;
}
.cid-v3xFICy43o .mbr-section-title {
  color: #ffffff;
}
.cid-v3xFICy43o .mbr-text {
  color: #013220;
  text-align: left;
}
.cid-v3xFICy43o .price {
  text-align: left;
}
.cid-v3xFICy43o .item-title {
  display: inline-block;
  background-color: #ffffff;
  color: #09090b;
  padding: 4px 10px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.85rem;
  text-align: left;
}
.cid-v3xFICy43o .item-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-v3xFICy43o .mbr-text,
.cid-v3xFICy43o .mbr-section-btn {
  color: #d4d4d8;
  text-align: left;
}
.cid-v3xFICy43o .mbr-section-subtitle {
  color: #d4d4d8;
  text-align: center;
}
.cid-v3DOIy1kg9 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #030712;
}
.cid-v3DOIy1kg9 .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: 10px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
  padding: 30px;
  transition: all 0.3s;
  margin: 20px auto;
}
.cid-v3DOIy1kg9 .discord-banner:hover {
  transform: translateY(-2px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.cid-v3DOIy1kg9 .banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cid-v3DOIy1kg9 .mbr-iconfont {
  color: #3f7df0;
  font-size: 22px;
}
.cid-v3DOIy1kg9 .banner-icon {
  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: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
}
.cid-v3DOIy1kg9 .banner-text {
  flex: 1;
  color: #fff;
}
.cid-v3DOIy1kg9 .banner-text .mbr-section-title {
  margin: 0;
  font-weight: 600;
}
.cid-v3DOIy1kg9 .banner-text .mbr-section-subtitle {
  margin: 5px 0 0;
  color: #bbbbbb;
}
.cid-v3DOIy1kg9 .banner-btn .btn-support {
  background: #3f7df0;
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  padding: 12px 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s ease;
}
.cid-v3DOIy1kg9 .banner-btn .btn-support:hover {
  transform: translateY(-3px);
}
.cid-v3DOIy1kg9 P {
  color: #d1d5dc;
  text-align: left;
}
.cid-v3DOIy1kg9 .mbr-section-subtitle {
  color: #d1d5dc;
}
@media (max-width: 768px) {
  .cid-v3DOIy1kg9 .banner-content {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .cid-v3DOIy1kg9 .banner-btn {
    width: 100%;
    margin-top: 10px;
    display: flex;
    justify-content: center;
  }
  .cid-v3DOIy1kg9 .banner-btn .btn-support {
    width: auto;
    justify-content: center;
  }
}
.cid-v3DOIy1kg9 H4 {
  color: #ffffff;
}
.cid-v3CiXHKabp {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #030712;
}
.cid-v3CiXHKabp .mbr-section-title {
  color: #ffffff;
}
.cid-v3CiXHKabp .text-wrapper {
  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;
}
.cid-v3CiXHKabp .mbr-text,
.cid-v3CiXHKabp .mbr-section-btn {
  color: #d1d5dc;
  text-align: left;
}
.cid-v3CiXHKabp .mbr-section-subtitle {
  color: #8364e2;
}
.cid-v3CiXHKabp img {
  border-radius: 10px;
}
.cid-v3CiXHKabp .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3CiXHKabp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3MZpvQYsy {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #030712;
}
.cid-v3MZpvQYsy .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #3f7df0;
  margin-bottom: 1rem;
}
.cid-v3MZpvQYsy .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-v3MZpvQYsy .card-wrapper {
  transition: all 0.3s ease;
  padding: 2rem 2rem;
  display: flex;
  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);
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}
.cid-v3MZpvQYsy .card-wrapper:hover {
  transform: translateY(-2px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.cid-v3MZpvQYsy .card-title,
.cid-v3MZpvQYsy .card-box {
  color: #ffffff;
}
.cid-v3MZpvQYsy .main-title,
.cid-v3MZpvQYsy .title-col {
  text-align: center;
  color: #ffffff;
}
.cid-v3MZpvQYsy .card-text {
  color: #ffffff;
}
.cid-v3MZpvQYsy .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3MZpvQYsy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3MZpvQYsy .mbr-text,
.cid-v3MZpvQYsy .mbr-section-btn {
  color: #d1d5dc;
}
.cid-v3xFIF6R3h {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #030712;
}
.cid-v3xFIF6R3h .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: "Moririse2" !important;
  color: #3f7df0;
  margin-left: 1rem;
}
.cid-v3xFIF6R3h .panel-group,
.cid-v3xFIF6R3h .card-header {
  border: none;
}
.cid-v3xFIF6R3h .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-v3xFIF6R3h .card-header {
  background: transparent;
}
.cid-v3xFIF6R3h .panel-title-edit {
  color: #ffffff;
  text-align: left;
}
.cid-v3xFIF6R3h .card {
  transition: all 0.3s 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);
  margin-bottom: 0;
  padding: 1rem 1rem;
}
.cid-v3xFIF6R3h .card:hover {
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.cid-v3xFIF6R3h .panel-body {
  padding: 1rem 1rem;
}
.cid-v3xFIF6R3h .panel-text {
  color: #d1d5dc;
  margin: 0;
}
.cid-v3xFIF6R3h H3 {
  color: #ffffff;
}
.cid-v3xFIF6R3h H4 {
  color: #ffffff;
}
.cid-v3xFIF6R3h .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3xFIF6R3h .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3xFIFQLQ0 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #030712;
}
.cid-v3xFIFQLQ0 .mbr-section-subtitle {
  letter-spacing: 1px;
  margin-bottom: 1rem;
  color: #b4d8a4;
}
.cid-v3xFIFQLQ0 .first-column .mbr-text {
  margin: 0;
}
.cid-v3xFIFQLQ0 .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;
  color: white;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .cid-v3xFIFQLQ0 .row {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
}
.cid-v3xFIFQLQ0 .form-group {
  max-width: 55%;
}
.cid-v3xFIFQLQ0 .form-group,
.cid-v3xFIFQLQ0 .mbr-section-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-v3xFIFQLQ0 .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-v3xFIFQLQ0 .form-control::-webkit-input-placeholder {
  color: #bbbbbb;
}
.cid-v3xFIFQLQ0 .form-control::-moz-placeholder {
  color: #bbbbbb;
}
.cid-v3xFIFQLQ0 .form-control:-moz-placeholder {
  color: #bbbbbb;
}
.cid-v3xFIFQLQ0 .form-control:-ms-input-placeholder {
  color: #bbbbbb;
}
.cid-v3xFIFQLQ0 .form-control:hover,
.cid-v3xFIFQLQ0 .form-control:focus {
  border: none !important;
}
.cid-v3xFIFQLQ0 .col + .mbr-section-btn .btn,
.cid-v3xFIFQLQ0 .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-v3xFIFQLQ0 .dragArea > *:nth-last-child(2).col,
.cid-v3xFIFQLQ0 .dragArea > *:nth-last-child(2).col-auto,
.cid-v3xFIFQLQ0 .col + .mbr-section-btn,
.cid-v3xFIFQLQ0 .col-auto + .mbr-section-btn {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-v3xFIFQLQ0 .mbr-form .row {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v3xFIFQLQ0 .mbr-section-title {
  color: #e6e6e6;
}
.cid-v3xFIFQLQ0 .mbr-section-subtitle,
.cid-v3xFIFQLQ0 .icons-wrapper {
  color: #d4d4d8;
}
.cid-v3xFIFQLQ0 P {
  color: #ffffff;
}
.cid-v3xFIFQLQ0 .mbr-section-title,
.cid-v3xFIFQLQ0 .icons-wrapper {
  color: #ffffff;
}
.cid-v3xFIFQLQ0 .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;
}
#custom-html-l #progressBar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: #3f7df0;
  width: 0%;
  z-index: 9999;
}
.cid-v3IaE42gWr {
  z-index: 1000;
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3IaE42gWr {
    flex-wrap: wrap;
  }
  .cid-v3IaE42gWr .navbar-collapse {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
  }
  .cid-v3IaE42gWr .navbar-nav {
    margin: 0 auto;
    display: flex;
    gap: 1.5rem;
  }
  .cid-v3IaE42gWr .icons-menu,
  .cid-v3IaE42gWr .navbar-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .cid-v3IaE42gWr .navbar > .container {
    flex-wrap: nowrap;
  }
}
.cid-v3IaE42gWr img {
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}
.cid-v3IaE42gWr .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(3, 7, 18, 0);
}
.cid-v3IaE42gWr .navbar.opened {
  transition: all 0.3s;
}
.cid-v3IaE42gWr .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v3IaE42gWr .navbar .navbar-logo img {
  width: auto;
}
.cid-v3IaE42gWr .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  flex-basis: auto!important;
}
.cid-v3IaE42gWr .navbar.collapsed {
  justify-content: center;
}
.cid-v3IaE42gWr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v3IaE42gWr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v3IaE42gWr .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v3IaE42gWr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v3IaE42gWr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v3IaE42gWr .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-v3IaE42gWr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v3IaE42gWr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v3IaE42gWr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
@media (max-width: 991px) {
  .cid-v3IaE42gWr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v3IaE42gWr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v3IaE42gWr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v3IaE42gWr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v3IaE42gWr .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-v3IaE42gWr .navbar .navbar-logo img {
    height: 5rem !important;
  }
  .cid-v3IaE42gWr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v3IaE42gWr .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v3IaE42gWr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v3IaE42gWr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v3IaE42gWr .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v3IaE42gWr .navbar.navbar-short {
  min-height: 60px;
}
.cid-v3IaE42gWr .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v3IaE42gWr .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (max-width: 992px) {
  .cid-v3IaE42gWr .opened .container {
    flex-wrap: wrap;
  }
}
.cid-v3IaE42gWr .opened .container .navbar-collapse {
  width: 100%;
}
.cid-v3IaE42gWr .btn {
  padding: 0.3rem 2rem;
}
.cid-v3IaE42gWr .nav-link {
  position: relative;
}
.cid-v3IaE42gWr .nav-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  transition: all 0.3s;
  background: #3f7df0;
}
.cid-v3IaE42gWr .nav-link:hover:before {
  width: 100%;
}
.cid-v3IaE42gWr nav.navbar {
  position: fixed;
}
.cid-v3IaE42gWr .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-v3IaE42gWr .dropdown-item small {
  display: block;
  font-size: 0.8em;
  color: #d1d5dc;
}
.cid-v3IaE42gWr .dropdown-menu {
  padding: 0;
  border-radius: 10px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v3IaE42gWr .dropdown-item:hover,
.cid-v3IaE42gWr .dropdown-item:focus {
  background: rgba(255, 255, 255, 0.04) !important;
  color: white !important;
}
.cid-v3IaE42gWr .dropdown-item:first-child {
  border-radius: 10px;
}
.cid-v3IaE42gWr .dropdown-item:last-child {
  border-radius: 10px;
}
.cid-v3IaE42gWr .nav-dropdown .link {
  padding: 0 !important;
  margin: 0.667em 1em !important;
}
.cid-v3IaE42gWr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
}
.cid-v3IaE42gWr .container {
  display: flex;
  margin: auto;
}
.cid-v3IaE42gWr .iconfont-wrapper {
  color: #4f4fe0 !important;
  font-size: 2rem;
  padding-right: 0.5rem;
}
.cid-v3IaE42gWr .dropdown-menu,
.cid-v3IaE42gWr .navbar.opened {
  background: #030712 !important;
}
.cid-v3IaE42gWr .nav-item:focus,
.cid-v3IaE42gWr .nav-link:focus {
  outline: none;
}
.cid-v3IaE42gWr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v3IaE42gWr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3IaE42gWr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v3IaE42gWr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v3IaE42gWr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v3IaE42gWr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v3IaE42gWr .navbar-short {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #030712 !important;
  transition: all 0.3s;
}
.cid-v3IaE42gWr .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-v3IaE42gWr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v3IaE42gWr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v3IaE42gWr .dropdown-item.active,
.cid-v3IaE42gWr .dropdown-item:active {
  background-color: transparent;
}
.cid-v3IaE42gWr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v3IaE42gWr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v3IaE42gWr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v3IaE42gWr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #030712;
}
.cid-v3IaE42gWr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v3IaE42gWr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3IaE42gWr ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v3IaE42gWr .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v3IaE42gWr button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v3IaE42gWr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3IaE42gWr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v3IaE42gWr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3IaE42gWr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3IaE42gWr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v3IaE42gWr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3IaE42gWr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v3IaE42gWr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v3IaE42gWr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3IaE42gWr .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v3IaE42gWr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v3IaE42gWr .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-v3IaE42gWr .navbar {
    height: 70px;
  }
  .cid-v3IaE42gWr .navbar.opened {
    height: auto;
  }
  .cid-v3IaE42gWr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v3IaE4Dl9e {
  padding-top: 8rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/fivem-7bwofe8i6z3mfbs8.jpg-1920x724.jpg");
}
.cid-v3IaE4Dl9e .mbr-text,
.cid-v3IaE4Dl9e .mbr-section-btn {
  color: #d1d5dc;
}
.cid-v3IaE4Dl9e .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3IaE4Dl9e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3IaE4Dl9e .mbr-section-title {
  color: #ff6467;
}
.cid-v3IaE4Dl9e .status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #440707;
  padding: 6px 14px;
  border-radius: 100px;
  font-weight: 600;
  position: relative;
}
.cid-v3IaE4Dl9e .status-pill::before {
  content: "";
  position: relative;
  width: 10px;
  height: 10px;
  background: #ff6467;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(255, 100, 103, 0.8);
  animation: pulse 1.8s infinite ease-out;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  60% {
    transform: scale(1.7);
    opacity: 0.15;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}
.cid-v3IaE4Dl9e .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v3IaE4Dl9e .custom-shape-divider-bottom-1764122333 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}
.cid-v3IaE4Dl9e .custom-shape-divider-bottom-1764122333 svg {
  position: relative;
  display: block;
  width: calc(101.3%);
  height: 76px;
}
.cid-v3IaE4Dl9e .custom-shape-divider-bottom-1764122333 .shape-fill {
  fill: #030712;
}
.cid-v3IaE59D8V {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #030712;
}
.cid-v3IaE59D8V .mbr-iconfont {
  display: block;
  font-size: 2.5rem;
  color: #3f7df0;
  margin-bottom: 0.5rem;
}
.cid-v3IaE59D8V .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-v3IaE59D8V .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-v3IaE59D8V .card-wrapper {
  transition: all 0.3s;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
}
.cid-v3IaE59D8V .card-wrapper:hover {
  transform: translateY(-2px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.cid-v3IaE59D8V .card-title,
.cid-v3IaE59D8V .card-box {
  color: #fafafa;
  text-align: center;
}
.cid-v3IaE59D8V .main-title,
.cid-v3IaE59D8V .title-col {
  text-align: center;
  color: #ffffff;
}
.cid-v3IaE59D8V .card-text {
  color: #d1d5dc;
}
.cid-v3IaE59D8V .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3IaE59D8V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3IaE5SNcL {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #030712;
}
.cid-v3IaE5SNcL .item-img {
  position: relative;
}
.cid-v3IaE5SNcL img {
  border-radius: 10px;
}
.cid-v3IaE5SNcL .btn-tag {
  padding: 0.3rem 1rem;
  padding-top: 6px;
  border-radius: 10px !important;
}
.cid-v3IaE5SNcL .btn-tag:hover,
.cid-v3IaE5SNcL .btn-tag:focus {
  box-shadow: none;
}
.cid-v3IaE5SNcL img,
.cid-v3IaE5SNcL .item-img {
  width: 65%;
  display: block;
  margin: 0 auto;
}
.cid-v3IaE5SNcL .item:focus,
.cid-v3IaE5SNcL span:focus {
  outline: none;
}
.cid-v3IaE5SNcL .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3IaE5SNcL .item-wrapper {
  position: relative;
  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: 10px;
  transition: all 0.3s;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
  padding: 15px;
}
.cid-v3IaE5SNcL .item-wrapper:hover {
  transform: translateY(-2px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.cid-v3IaE5SNcL .mbr-section-btn {
  margin-top: auto !important;
  text-align: center;
}
.cid-v3IaE5SNcL .mbr-section-title {
  color: #ffffff;
}
.cid-v3IaE5SNcL .mbr-text {
  color: #013220;
  text-align: left;
}
.cid-v3IaE5SNcL .price {
  text-align: left;
}
.cid-v3IaE5SNcL .item-title {
  display: inline-block;
  background-color: #ffffff;
  color: #09090b;
  padding: 4px 10px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.85rem;
  text-align: left;
}
.cid-v3IaE5SNcL .item-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-v3IaE5SNcL .mbr-text,
.cid-v3IaE5SNcL .mbr-section-btn {
  color: #d4d4d8;
  text-align: left;
}
.cid-v3IaE5SNcL .mbr-section-subtitle {
  color: #d4d4d8;
  text-align: center;
}
.cid-v3IaE6VmR7 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #030712;
}
.cid-v3IaE6VmR7 .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: 10px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
  padding: 30px;
  transition: all 0.3s;
  margin: 20px auto;
}
.cid-v3IaE6VmR7 .discord-banner:hover {
  transform: translateY(-2px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.cid-v3IaE6VmR7 .banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cid-v3IaE6VmR7 .mbr-iconfont {
  color: #3f7df0;
  font-size: 22px;
}
.cid-v3IaE6VmR7 .banner-icon {
  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: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
}
.cid-v3IaE6VmR7 .banner-text {
  flex: 1;
  color: #fff;
}
.cid-v3IaE6VmR7 .banner-text .mbr-section-title {
  margin: 0;
  font-weight: 600;
}
.cid-v3IaE6VmR7 .banner-text .mbr-section-subtitle {
  margin: 5px 0 0;
  color: #bbbbbb;
}
.cid-v3IaE6VmR7 .banner-btn .btn-support {
  background: #3f7df0;
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  padding: 12px 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s ease;
}
.cid-v3IaE6VmR7 .banner-btn .btn-support:hover {
  transform: translateY(-3px);
}
.cid-v3IaE6VmR7 P {
  color: #d1d5dc;
  text-align: left;
}
.cid-v3IaE6VmR7 .mbr-section-subtitle {
  color: #d1d5dc;
}
@media (max-width: 768px) {
  .cid-v3IaE6VmR7 .banner-content {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .cid-v3IaE6VmR7 .banner-btn {
    width: 100%;
    margin-top: 10px;
    display: flex;
    justify-content: center;
  }
  .cid-v3IaE6VmR7 .banner-btn .btn-support {
    width: auto;
    justify-content: center;
  }
}
.cid-v3IaE6VmR7 H4 {
  color: #ffffff;
}
.cid-v3IaE7wIpr {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #030712;
}
.cid-v3IaE7wIpr .mbr-section-title {
  color: #ffffff;
}
.cid-v3IaE7wIpr .text-wrapper {
  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;
}
.cid-v3IaE7wIpr .mbr-text,
.cid-v3IaE7wIpr .mbr-section-btn {
  color: #d1d5dc;
  text-align: left;
}
.cid-v3IaE7wIpr .mbr-section-subtitle {
  color: #8364e2;
}
.cid-v3IaE7wIpr img {
  border-radius: 10px;
}
.cid-v3IaE7wIpr .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3IaE7wIpr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3MZvO6tba {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #030712;
}
.cid-v3MZvO6tba .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #3f7df0;
  margin-bottom: 1rem;
}
.cid-v3MZvO6tba .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-v3MZvO6tba .card-wrapper {
  transition: all 0.3s ease;
  padding: 2rem 2rem;
  display: flex;
  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);
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}
.cid-v3MZvO6tba .card-wrapper:hover {
  transform: translateY(-2px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.cid-v3MZvO6tba .card-title,
.cid-v3MZvO6tba .card-box {
  color: #ffffff;
}
.cid-v3MZvO6tba .main-title,
.cid-v3MZvO6tba .title-col {
  text-align: center;
  color: #ffffff;
}
.cid-v3MZvO6tba .card-text {
  color: #ffffff;
}
.cid-v3MZvO6tba .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3MZvO6tba .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3MZvO6tba .mbr-text,
.cid-v3MZvO6tba .mbr-section-btn {
  color: #d1d5dc;
}
.cid-v3IaE9JMTF {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #030712;
}
.cid-v3IaE9JMTF .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: "Moririse2" !important;
  color: #3f7df0;
  margin-left: 1rem;
}
.cid-v3IaE9JMTF .panel-group,
.cid-v3IaE9JMTF .card-header {
  border: none;
}
.cid-v3IaE9JMTF .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-v3IaE9JMTF .card-header {
  background: transparent;
}
.cid-v3IaE9JMTF .panel-title-edit {
  color: #ffffff;
  text-align: left;
}
.cid-v3IaE9JMTF .card {
  transition: all 0.3s 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);
  margin-bottom: 0;
  padding: 1rem 1rem;
}
.cid-v3IaE9JMTF .card:hover {
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.cid-v3IaE9JMTF .panel-body {
  padding: 1rem 1rem;
}
.cid-v3IaE9JMTF .panel-text {
  color: #d1d5dc;
  margin: 0;
}
.cid-v3IaE9JMTF H3 {
  color: #ffffff;
}
.cid-v3IaE9JMTF H4 {
  color: #ffffff;
}
.cid-v3IaE9JMTF .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3IaE9JMTF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3IaEauQNC {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #030712;
}
.cid-v3IaEauQNC .mbr-section-subtitle {
  letter-spacing: 1px;
  margin-bottom: 1rem;
  color: #b4d8a4;
}
.cid-v3IaEauQNC .first-column .mbr-text {
  margin: 0;
}
.cid-v3IaEauQNC .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;
  color: white;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .cid-v3IaEauQNC .row {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
}
.cid-v3IaEauQNC .form-group {
  max-width: 55%;
}
.cid-v3IaEauQNC .form-group,
.cid-v3IaEauQNC .mbr-section-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-v3IaEauQNC .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-v3IaEauQNC .form-control::-webkit-input-placeholder {
  color: #bbbbbb;
}
.cid-v3IaEauQNC .form-control::-moz-placeholder {
  color: #bbbbbb;
}
.cid-v3IaEauQNC .form-control:-moz-placeholder {
  color: #bbbbbb;
}
.cid-v3IaEauQNC .form-control:-ms-input-placeholder {
  color: #bbbbbb;
}
.cid-v3IaEauQNC .form-control:hover,
.cid-v3IaEauQNC .form-control:focus {
  border: none !important;
}
.cid-v3IaEauQNC .col + .mbr-section-btn .btn,
.cid-v3IaEauQNC .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-v3IaEauQNC .dragArea > *:nth-last-child(2).col,
.cid-v3IaEauQNC .dragArea > *:nth-last-child(2).col-auto,
.cid-v3IaEauQNC .col + .mbr-section-btn,
.cid-v3IaEauQNC .col-auto + .mbr-section-btn {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-v3IaEauQNC .mbr-form .row {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v3IaEauQNC .mbr-section-title {
  color: #e6e6e6;
}
.cid-v3IaEauQNC .mbr-section-subtitle,
.cid-v3IaEauQNC .icons-wrapper {
  color: #d4d4d8;
}
.cid-v3IaEauQNC P {
  color: #ffffff;
}
.cid-v3IaEauQNC .mbr-section-title,
.cid-v3IaEauQNC .icons-wrapper {
  color: #ffffff;
}
.cid-v3IaEauQNC .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;
}
#custom-html-11 #progressBar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: #3f7df0;
  width: 0%;
  z-index: 9999;
}
.cid-v3MIcxoZIi {
  z-index: 1000;
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3MIcxoZIi {
    flex-wrap: wrap;
  }
  .cid-v3MIcxoZIi .navbar-collapse {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
  }
  .cid-v3MIcxoZIi .navbar-nav {
    margin: 0 auto;
    display: flex;
    gap: 1.5rem;
  }
  .cid-v3MIcxoZIi .icons-menu,
  .cid-v3MIcxoZIi .navbar-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .cid-v3MIcxoZIi .navbar > .container {
    flex-wrap: nowrap;
  }
}
.cid-v3MIcxoZIi img {
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}
.cid-v3MIcxoZIi .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(3, 7, 18, 0);
}
.cid-v3MIcxoZIi .navbar.opened {
  transition: all 0.3s;
}
.cid-v3MIcxoZIi .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v3MIcxoZIi .navbar .navbar-logo img {
  width: auto;
}
.cid-v3MIcxoZIi .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  flex-basis: auto!important;
}
.cid-v3MIcxoZIi .navbar.collapsed {
  justify-content: center;
}
.cid-v3MIcxoZIi .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v3MIcxoZIi .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v3MIcxoZIi .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v3MIcxoZIi .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v3MIcxoZIi .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v3MIcxoZIi .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-v3MIcxoZIi .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v3MIcxoZIi .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v3MIcxoZIi .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
@media (max-width: 991px) {
  .cid-v3MIcxoZIi .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v3MIcxoZIi .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v3MIcxoZIi .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v3MIcxoZIi .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v3MIcxoZIi .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-v3MIcxoZIi .navbar .navbar-logo img {
    height: 5rem !important;
  }
  .cid-v3MIcxoZIi .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v3MIcxoZIi .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v3MIcxoZIi .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v3MIcxoZIi .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v3MIcxoZIi .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v3MIcxoZIi .navbar.navbar-short {
  min-height: 60px;
}
.cid-v3MIcxoZIi .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v3MIcxoZIi .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (max-width: 992px) {
  .cid-v3MIcxoZIi .opened .container {
    flex-wrap: wrap;
  }
}
.cid-v3MIcxoZIi .opened .container .navbar-collapse {
  width: 100%;
}
.cid-v3MIcxoZIi .btn {
  padding: 0.3rem 2rem;
}
.cid-v3MIcxoZIi .nav-link {
  position: relative;
}
.cid-v3MIcxoZIi .nav-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  transition: all 0.3s;
  background: #3f7df0;
}
.cid-v3MIcxoZIi .nav-link:hover:before {
  width: 100%;
}
.cid-v3MIcxoZIi nav.navbar {
  position: fixed;
}
.cid-v3MIcxoZIi .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-v3MIcxoZIi .dropdown-item small {
  display: block;
  font-size: 0.8em;
  color: #d1d5dc;
}
.cid-v3MIcxoZIi .dropdown-menu {
  padding: 0;
  border-radius: 10px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v3MIcxoZIi .dropdown-item:hover,
.cid-v3MIcxoZIi .dropdown-item:focus {
  background: rgba(255, 255, 255, 0.04) !important;
  color: white !important;
}
.cid-v3MIcxoZIi .dropdown-item:first-child {
  border-radius: 10px;
}
.cid-v3MIcxoZIi .dropdown-item:last-child {
  border-radius: 10px;
}
.cid-v3MIcxoZIi .nav-dropdown .link {
  padding: 0 !important;
  margin: 0.667em 1em !important;
}
.cid-v3MIcxoZIi .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
}
.cid-v3MIcxoZIi .container {
  display: flex;
  margin: auto;
}
.cid-v3MIcxoZIi .iconfont-wrapper {
  color: #4f4fe0 !important;
  font-size: 2rem;
  padding-right: 0.5rem;
}
.cid-v3MIcxoZIi .dropdown-menu,
.cid-v3MIcxoZIi .navbar.opened {
  background: #030712 !important;
}
.cid-v3MIcxoZIi .nav-item:focus,
.cid-v3MIcxoZIi .nav-link:focus {
  outline: none;
}
.cid-v3MIcxoZIi .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v3MIcxoZIi .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3MIcxoZIi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v3MIcxoZIi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v3MIcxoZIi .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v3MIcxoZIi .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v3MIcxoZIi .navbar-short {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #030712 !important;
  transition: all 0.3s;
}
.cid-v3MIcxoZIi .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-v3MIcxoZIi .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v3MIcxoZIi .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v3MIcxoZIi .dropdown-item.active,
.cid-v3MIcxoZIi .dropdown-item:active {
  background-color: transparent;
}
.cid-v3MIcxoZIi .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v3MIcxoZIi .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v3MIcxoZIi .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v3MIcxoZIi .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #030712;
}
.cid-v3MIcxoZIi .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v3MIcxoZIi .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3MIcxoZIi ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v3MIcxoZIi .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v3MIcxoZIi button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v3MIcxoZIi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3MIcxoZIi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v3MIcxoZIi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3MIcxoZIi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3MIcxoZIi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v3MIcxoZIi nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3MIcxoZIi nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v3MIcxoZIi nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v3MIcxoZIi nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3MIcxoZIi .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v3MIcxoZIi a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v3MIcxoZIi .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-v3MIcxoZIi .navbar {
    height: 70px;
  }
  .cid-v3MIcxoZIi .navbar.opened {
    height: auto;
  }
  .cid-v3MIcxoZIi .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v3MIcxYXIP {
  padding-top: 8rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/csgo-image-hu-2bd45b721a886a3.jpg-1920x1080.jpg");
}
.cid-v3MIcxYXIP .mbr-text,
.cid-v3MIcxYXIP .mbr-section-btn {
  color: #d1d5dc;
}
.cid-v3MIcxYXIP .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3MIcxYXIP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3MIcxYXIP .mbr-section-title {
  color: #ff6467;
}
.cid-v3MIcxYXIP .status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #440707;
  padding: 6px 14px;
  border-radius: 100px;
  font-weight: 600;
  position: relative;
}
.cid-v3MIcxYXIP .status-pill::before {
  content: "";
  position: relative;
  width: 10px;
  height: 10px;
  background: #ff6467;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(255, 100, 103, 0.8);
  animation: pulse 1.8s infinite ease-out;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  60% {
    transform: scale(1.7);
    opacity: 0.15;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}
.cid-v3MIcxYXIP .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v3MIcxYXIP .custom-shape-divider-bottom-1764122333 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}
.cid-v3MIcxYXIP .custom-shape-divider-bottom-1764122333 svg {
  position: relative;
  display: block;
  width: calc(101.3%);
  height: 76px;
}
.cid-v3MIcxYXIP .custom-shape-divider-bottom-1764122333 .shape-fill {
  fill: #030712;
}
.cid-v3MIcyu5FX {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #030712;
}
.cid-v3MIcyu5FX .mbr-iconfont {
  display: block;
  font-size: 2.5rem;
  color: #3f7df0;
  margin-bottom: 0.5rem;
}
.cid-v3MIcyu5FX .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-v3MIcyu5FX .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-v3MIcyu5FX .card-wrapper {
  transition: all 0.3s;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
}
.cid-v3MIcyu5FX .card-wrapper:hover {
  transform: translateY(-2px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.cid-v3MIcyu5FX .card-title,
.cid-v3MIcyu5FX .card-box {
  color: #fafafa;
  text-align: center;
}
.cid-v3MIcyu5FX .main-title,
.cid-v3MIcyu5FX .title-col {
  text-align: center;
  color: #ffffff;
}
.cid-v3MIcyu5FX .card-text {
  color: #d1d5dc;
}
.cid-v3MIcyu5FX .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3MIcyu5FX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3MIczcnI3 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #030712;
}
.cid-v3MIczcnI3 .item-img {
  position: relative;
}
.cid-v3MIczcnI3 img {
  border-radius: 10px;
}
.cid-v3MIczcnI3 .btn-tag {
  padding: 0.3rem 1rem;
  padding-top: 6px;
  border-radius: 10px !important;
}
.cid-v3MIczcnI3 .btn-tag:hover,
.cid-v3MIczcnI3 .btn-tag:focus {
  box-shadow: none;
}
.cid-v3MIczcnI3 img,
.cid-v3MIczcnI3 .item-img {
  width: 65%;
  display: block;
  margin: 0 auto;
}
.cid-v3MIczcnI3 .item:focus,
.cid-v3MIczcnI3 span:focus {
  outline: none;
}
.cid-v3MIczcnI3 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3MIczcnI3 .item-wrapper {
  position: relative;
  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: 10px;
  transition: all 0.3s;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
  padding: 15px;
}
.cid-v3MIczcnI3 .item-wrapper:hover {
  transform: translateY(-2px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.cid-v3MIczcnI3 .mbr-section-btn {
  margin-top: auto !important;
  text-align: center;
}
.cid-v3MIczcnI3 .mbr-section-title {
  color: #ffffff;
}
.cid-v3MIczcnI3 .mbr-text {
  color: #013220;
  text-align: left;
}
.cid-v3MIczcnI3 .price {
  text-align: left;
}
.cid-v3MIczcnI3 .item-title {
  display: inline-block;
  background-color: #ffffff;
  color: #09090b;
  padding: 4px 10px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.85rem;
  text-align: left;
}
.cid-v3MIczcnI3 .item-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-v3MIczcnI3 .mbr-text,
.cid-v3MIczcnI3 .mbr-section-btn {
  color: #d4d4d8;
  text-align: left;
}
.cid-v3MIczcnI3 .mbr-section-subtitle {
  color: #d4d4d8;
  text-align: center;
}
.cid-v3MIczXLEk {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #030712;
}
.cid-v3MIczXLEk .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: 10px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
  padding: 30px;
  transition: all 0.3s;
  margin: 20px auto;
}
.cid-v3MIczXLEk .discord-banner:hover {
  transform: translateY(-2px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.cid-v3MIczXLEk .banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cid-v3MIczXLEk .mbr-iconfont {
  color: #3f7df0;
  font-size: 22px;
}
.cid-v3MIczXLEk .banner-icon {
  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: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
}
.cid-v3MIczXLEk .banner-text {
  flex: 1;
  color: #fff;
}
.cid-v3MIczXLEk .banner-text .mbr-section-title {
  margin: 0;
  font-weight: 600;
}
.cid-v3MIczXLEk .banner-text .mbr-section-subtitle {
  margin: 5px 0 0;
  color: #bbbbbb;
}
.cid-v3MIczXLEk .banner-btn .btn-support {
  background: #3f7df0;
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  padding: 12px 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s ease;
}
.cid-v3MIczXLEk .banner-btn .btn-support:hover {
  transform: translateY(-3px);
}
.cid-v3MIczXLEk P {
  color: #d1d5dc;
  text-align: left;
}
.cid-v3MIczXLEk .mbr-section-subtitle {
  color: #d1d5dc;
}
@media (max-width: 768px) {
  .cid-v3MIczXLEk .banner-content {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .cid-v3MIczXLEk .banner-btn {
    width: 100%;
    margin-top: 10px;
    display: flex;
    justify-content: center;
  }
  .cid-v3MIczXLEk .banner-btn .btn-support {
    width: auto;
    justify-content: center;
  }
}
.cid-v3MIczXLEk H4 {
  color: #ffffff;
}
.cid-v3MIcAqEVt {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #030712;
}
.cid-v3MIcAqEVt .mbr-section-title {
  color: #ffffff;
}
.cid-v3MIcAqEVt .text-wrapper {
  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;
}
.cid-v3MIcAqEVt .mbr-text,
.cid-v3MIcAqEVt .mbr-section-btn {
  color: #d1d5dc;
  text-align: left;
}
.cid-v3MIcAqEVt .mbr-section-subtitle {
  color: #8364e2;
}
.cid-v3MIcAqEVt img {
  border-radius: 10px;
}
.cid-v3MIcAqEVt .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3MIcAqEVt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3MZzIjAei {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #030712;
}
.cid-v3MZzIjAei .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #3f7df0;
  margin-bottom: 1rem;
}
.cid-v3MZzIjAei .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-v3MZzIjAei .card-wrapper {
  transition: all 0.3s ease;
  padding: 2rem 2rem;
  display: flex;
  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);
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}
.cid-v3MZzIjAei .card-wrapper:hover {
  transform: translateY(-2px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.cid-v3MZzIjAei .card-title,
.cid-v3MZzIjAei .card-box {
  color: #ffffff;
}
.cid-v3MZzIjAei .main-title,
.cid-v3MZzIjAei .title-col {
  text-align: center;
  color: #ffffff;
}
.cid-v3MZzIjAei .card-text {
  color: #ffffff;
}
.cid-v3MZzIjAei .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3MZzIjAei .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3MZzIjAei .mbr-text,
.cid-v3MZzIjAei .mbr-section-btn {
  color: #d1d5dc;
}
.cid-v3MIcCCqd1 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #030712;
}
.cid-v3MIcCCqd1 .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: "Moririse2" !important;
  color: #3f7df0;
  margin-left: 1rem;
}
.cid-v3MIcCCqd1 .panel-group,
.cid-v3MIcCCqd1 .card-header {
  border: none;
}
.cid-v3MIcCCqd1 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-v3MIcCCqd1 .card-header {
  background: transparent;
}
.cid-v3MIcCCqd1 .panel-title-edit {
  color: #ffffff;
  text-align: left;
}
.cid-v3MIcCCqd1 .card {
  transition: all 0.3s 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);
  margin-bottom: 0;
  padding: 1rem 1rem;
}
.cid-v3MIcCCqd1 .card:hover {
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.cid-v3MIcCCqd1 .panel-body {
  padding: 1rem 1rem;
}
.cid-v3MIcCCqd1 .panel-text {
  color: #d1d5dc;
  margin: 0;
}
.cid-v3MIcCCqd1 H3 {
  color: #ffffff;
}
.cid-v3MIcCCqd1 H4 {
  color: #ffffff;
}
.cid-v3MIcCCqd1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3MIcCCqd1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3MIcDsbwa {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #030712;
}
.cid-v3MIcDsbwa .mbr-section-subtitle {
  letter-spacing: 1px;
  margin-bottom: 1rem;
  color: #b4d8a4;
}
.cid-v3MIcDsbwa .first-column .mbr-text {
  margin: 0;
}
.cid-v3MIcDsbwa .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;
  color: white;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .cid-v3MIcDsbwa .row {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
}
.cid-v3MIcDsbwa .form-group {
  max-width: 55%;
}
.cid-v3MIcDsbwa .form-group,
.cid-v3MIcDsbwa .mbr-section-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-v3MIcDsbwa .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-v3MIcDsbwa .form-control::-webkit-input-placeholder {
  color: #bbbbbb;
}
.cid-v3MIcDsbwa .form-control::-moz-placeholder {
  color: #bbbbbb;
}
.cid-v3MIcDsbwa .form-control:-moz-placeholder {
  color: #bbbbbb;
}
.cid-v3MIcDsbwa .form-control:-ms-input-placeholder {
  color: #bbbbbb;
}
.cid-v3MIcDsbwa .form-control:hover,
.cid-v3MIcDsbwa .form-control:focus {
  border: none !important;
}
.cid-v3MIcDsbwa .col + .mbr-section-btn .btn,
.cid-v3MIcDsbwa .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-v3MIcDsbwa .dragArea > *:nth-last-child(2).col,
.cid-v3MIcDsbwa .dragArea > *:nth-last-child(2).col-auto,
.cid-v3MIcDsbwa .col + .mbr-section-btn,
.cid-v3MIcDsbwa .col-auto + .mbr-section-btn {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-v3MIcDsbwa .mbr-form .row {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v3MIcDsbwa .mbr-section-title {
  color: #e6e6e6;
}
.cid-v3MIcDsbwa .mbr-section-subtitle,
.cid-v3MIcDsbwa .icons-wrapper {
  color: #d4d4d8;
}
.cid-v3MIcDsbwa P {
  color: #ffffff;
}
.cid-v3MIcDsbwa .mbr-section-title,
.cid-v3MIcDsbwa .icons-wrapper {
  color: #ffffff;
}
.cid-v3MIcDsbwa .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;
}
#custom-html-1d #progressBar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: #3f7df0;
  width: 0%;
  z-index: 9999;
}
.cid-v3MLsBZ6Ez {
  z-index: 1000;
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3MLsBZ6Ez {
    flex-wrap: wrap;
  }
  .cid-v3MLsBZ6Ez .navbar-collapse {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
  }
  .cid-v3MLsBZ6Ez .navbar-nav {
    margin: 0 auto;
    display: flex;
    gap: 1.5rem;
  }
  .cid-v3MLsBZ6Ez .icons-menu,
  .cid-v3MLsBZ6Ez .navbar-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .cid-v3MLsBZ6Ez .navbar > .container {
    flex-wrap: nowrap;
  }
}
.cid-v3MLsBZ6Ez img {
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}
.cid-v3MLsBZ6Ez .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(3, 7, 18, 0);
}
.cid-v3MLsBZ6Ez .navbar.opened {
  transition: all 0.3s;
}
.cid-v3MLsBZ6Ez .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v3MLsBZ6Ez .navbar .navbar-logo img {
  width: auto;
}
.cid-v3MLsBZ6Ez .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  flex-basis: auto!important;
}
.cid-v3MLsBZ6Ez .navbar.collapsed {
  justify-content: center;
}
.cid-v3MLsBZ6Ez .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v3MLsBZ6Ez .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v3MLsBZ6Ez .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v3MLsBZ6Ez .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v3MLsBZ6Ez .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v3MLsBZ6Ez .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-v3MLsBZ6Ez .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v3MLsBZ6Ez .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v3MLsBZ6Ez .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
@media (max-width: 991px) {
  .cid-v3MLsBZ6Ez .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v3MLsBZ6Ez .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v3MLsBZ6Ez .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v3MLsBZ6Ez .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v3MLsBZ6Ez .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-v3MLsBZ6Ez .navbar .navbar-logo img {
    height: 5rem !important;
  }
  .cid-v3MLsBZ6Ez .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v3MLsBZ6Ez .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v3MLsBZ6Ez .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v3MLsBZ6Ez .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v3MLsBZ6Ez .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v3MLsBZ6Ez .navbar.navbar-short {
  min-height: 60px;
}
.cid-v3MLsBZ6Ez .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v3MLsBZ6Ez .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (max-width: 992px) {
  .cid-v3MLsBZ6Ez .opened .container {
    flex-wrap: wrap;
  }
}
.cid-v3MLsBZ6Ez .opened .container .navbar-collapse {
  width: 100%;
}
.cid-v3MLsBZ6Ez .btn {
  padding: 0.3rem 2rem;
}
.cid-v3MLsBZ6Ez .nav-link {
  position: relative;
}
.cid-v3MLsBZ6Ez .nav-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  transition: all 0.3s;
  background: #3f7df0;
}
.cid-v3MLsBZ6Ez .nav-link:hover:before {
  width: 100%;
}
.cid-v3MLsBZ6Ez nav.navbar {
  position: fixed;
}
.cid-v3MLsBZ6Ez .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-v3MLsBZ6Ez .dropdown-item small {
  display: block;
  font-size: 0.8em;
  color: #d1d5dc;
}
.cid-v3MLsBZ6Ez .dropdown-menu {
  padding: 0;
  border-radius: 10px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v3MLsBZ6Ez .dropdown-item:hover,
.cid-v3MLsBZ6Ez .dropdown-item:focus {
  background: rgba(255, 255, 255, 0.04) !important;
  color: white !important;
}
.cid-v3MLsBZ6Ez .dropdown-item:first-child {
  border-radius: 10px;
}
.cid-v3MLsBZ6Ez .dropdown-item:last-child {
  border-radius: 10px;
}
.cid-v3MLsBZ6Ez .nav-dropdown .link {
  padding: 0 !important;
  margin: 0.667em 1em !important;
}
.cid-v3MLsBZ6Ez .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
}
.cid-v3MLsBZ6Ez .container {
  display: flex;
  margin: auto;
}
.cid-v3MLsBZ6Ez .iconfont-wrapper {
  color: #4f4fe0 !important;
  font-size: 2rem;
  padding-right: 0.5rem;
}
.cid-v3MLsBZ6Ez .dropdown-menu,
.cid-v3MLsBZ6Ez .navbar.opened {
  background: #030712 !important;
}
.cid-v3MLsBZ6Ez .nav-item:focus,
.cid-v3MLsBZ6Ez .nav-link:focus {
  outline: none;
}
.cid-v3MLsBZ6Ez .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v3MLsBZ6Ez .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3MLsBZ6Ez .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v3MLsBZ6Ez .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v3MLsBZ6Ez .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v3MLsBZ6Ez .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v3MLsBZ6Ez .navbar-short {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #030712 !important;
  transition: all 0.3s;
}
.cid-v3MLsBZ6Ez .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-v3MLsBZ6Ez .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v3MLsBZ6Ez .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v3MLsBZ6Ez .dropdown-item.active,
.cid-v3MLsBZ6Ez .dropdown-item:active {
  background-color: transparent;
}
.cid-v3MLsBZ6Ez .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v3MLsBZ6Ez .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v3MLsBZ6Ez .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v3MLsBZ6Ez .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #030712;
}
.cid-v3MLsBZ6Ez .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v3MLsBZ6Ez .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3MLsBZ6Ez ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v3MLsBZ6Ez .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v3MLsBZ6Ez button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v3MLsBZ6Ez button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3MLsBZ6Ez button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v3MLsBZ6Ez button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3MLsBZ6Ez button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3MLsBZ6Ez button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v3MLsBZ6Ez nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3MLsBZ6Ez nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v3MLsBZ6Ez nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v3MLsBZ6Ez nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3MLsBZ6Ez .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v3MLsBZ6Ez a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v3MLsBZ6Ez .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-v3MLsBZ6Ez .navbar {
    height: 70px;
  }
  .cid-v3MLsBZ6Ez .navbar.opened {
    height: auto;
  }
  .cid-v3MLsBZ6Ez .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v3MLsCA7w4 {
  padding-top: 8rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/red-space-1920-x-1080-background-adgrrp7kid1gpr45.jpg-1920x1080.jpg");
}
.cid-v3MLsCA7w4 .mbr-text,
.cid-v3MLsCA7w4 .mbr-section-btn {
  color: #d1d5dc;
}
.cid-v3MLsCA7w4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3MLsCA7w4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3MLsCA7w4 .mbr-section-title {
  color: #ff6467;
}
.cid-v3MLsCA7w4 .status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #440707;
  padding: 6px 14px;
  border-radius: 100px;
  font-weight: 600;
  position: relative;
}
.cid-v3MLsCA7w4 .status-pill::before {
  content: "";
  position: relative;
  width: 10px;
  height: 10px;
  background: #ff6467;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(255, 100, 103, 0.8);
  animation: pulse 1.8s infinite ease-out;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  60% {
    transform: scale(1.7);
    opacity: 0.15;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}
.cid-v3MLsCA7w4 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v3MLsCA7w4 .custom-shape-divider-bottom-1764122333 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}
.cid-v3MLsCA7w4 .custom-shape-divider-bottom-1764122333 svg {
  position: relative;
  display: block;
  width: calc(101.3%);
  height: 76px;
}
.cid-v3MLsCA7w4 .custom-shape-divider-bottom-1764122333 .shape-fill {
  fill: #030712;
}
.cid-v3MM1udSAO {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #030712;
}
.cid-v3MM1udSAO blockquote {
  border-color: currentColor;
  padding: 1rem;
}
.cid-v3MM1udSAO .quote {
  color: #e43f3f;
}
.cid-v3MM1udSAO .quote,
.cid-v3MM1udSAO blockquote {
  color: #ffffff;
}
.cid-v3MM1udSAO .mbr-section-title {
  color: #ffffff;
}
.cid-v3MM1udSAO .mbr-text {
  color: #d1d5dc;
}
.cid-v3MM1udSAO .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: 15px;
}
.cid-v3MM1udSAO .product-banner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}
.cid-v3MM1udSAO .divider {
  width: 75%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 12px 0;
  border-radius: 2px;
}
.cid-v3MLsEyFOG {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #030712;
}
.cid-v3MLsEyFOG .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: 10px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
  padding: 30px;
  transition: all 0.3s;
  margin: 20px auto;
}
.cid-v3MLsEyFOG .discord-banner:hover {
  transform: translateY(-2px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.cid-v3MLsEyFOG .banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cid-v3MLsEyFOG .mbr-iconfont {
  color: #3f7df0;
  font-size: 22px;
}
.cid-v3MLsEyFOG .banner-icon {
  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: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
}
.cid-v3MLsEyFOG .banner-text {
  flex: 1;
  color: #fff;
}
.cid-v3MLsEyFOG .banner-text .mbr-section-title {
  margin: 0;
  font-weight: 600;
}
.cid-v3MLsEyFOG .banner-text .mbr-section-subtitle {
  margin: 5px 0 0;
  color: #bbbbbb;
}
.cid-v3MLsEyFOG .banner-btn .btn-support {
  background: #3f7df0;
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  padding: 12px 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s ease;
}
.cid-v3MLsEyFOG .banner-btn .btn-support:hover {
  transform: translateY(-3px);
}
.cid-v3MLsEyFOG P {
  color: #d1d5dc;
  text-align: left;
}
.cid-v3MLsEyFOG .mbr-section-subtitle {
  color: #d1d5dc;
}
@media (max-width: 768px) {
  .cid-v3MLsEyFOG .banner-content {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .cid-v3MLsEyFOG .banner-btn {
    width: 100%;
    margin-top: 10px;
    display: flex;
    justify-content: center;
  }
  .cid-v3MLsEyFOG .banner-btn .btn-support {
    width: auto;
    justify-content: center;
  }
}
.cid-v3MLsEyFOG H4 {
  color: #ffffff;
}
.cid-v3MLsH4SUm {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #030712;
}
.cid-v3MLsH4SUm .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: "Moririse2" !important;
  color: #3f7df0;
  margin-left: 1rem;
}
.cid-v3MLsH4SUm .panel-group,
.cid-v3MLsH4SUm .card-header {
  border: none;
}
.cid-v3MLsH4SUm .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-v3MLsH4SUm .card-header {
  background: transparent;
}
.cid-v3MLsH4SUm .panel-title-edit {
  color: #ffffff;
  text-align: left;
}
.cid-v3MLsH4SUm .card {
  transition: all 0.3s 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);
  margin-bottom: 0;
  padding: 1rem 1rem;
}
.cid-v3MLsH4SUm .card:hover {
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.cid-v3MLsH4SUm .panel-body {
  padding: 1rem 1rem;
}
.cid-v3MLsH4SUm .panel-text {
  color: #d1d5dc;
  margin: 0;
}
.cid-v3MLsH4SUm H3 {
  color: #ffffff;
}
.cid-v3MLsH4SUm H4 {
  color: #ffffff;
}
.cid-v3MLsH4SUm .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3MLsH4SUm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3MLsHRI7x {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #030712;
}
.cid-v3MLsHRI7x .mbr-section-subtitle {
  letter-spacing: 1px;
  margin-bottom: 1rem;
  color: #b4d8a4;
}
.cid-v3MLsHRI7x .first-column .mbr-text {
  margin: 0;
}
.cid-v3MLsHRI7x .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;
  color: white;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .cid-v3MLsHRI7x .row {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
}
.cid-v3MLsHRI7x .form-group {
  max-width: 55%;
}
.cid-v3MLsHRI7x .form-group,
.cid-v3MLsHRI7x .mbr-section-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-v3MLsHRI7x .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-v3MLsHRI7x .form-control::-webkit-input-placeholder {
  color: #bbbbbb;
}
.cid-v3MLsHRI7x .form-control::-moz-placeholder {
  color: #bbbbbb;
}
.cid-v3MLsHRI7x .form-control:-moz-placeholder {
  color: #bbbbbb;
}
.cid-v3MLsHRI7x .form-control:-ms-input-placeholder {
  color: #bbbbbb;
}
.cid-v3MLsHRI7x .form-control:hover,
.cid-v3MLsHRI7x .form-control:focus {
  border: none !important;
}
.cid-v3MLsHRI7x .col + .mbr-section-btn .btn,
.cid-v3MLsHRI7x .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-v3MLsHRI7x .dragArea > *:nth-last-child(2).col,
.cid-v3MLsHRI7x .dragArea > *:nth-last-child(2).col-auto,
.cid-v3MLsHRI7x .col + .mbr-section-btn,
.cid-v3MLsHRI7x .col-auto + .mbr-section-btn {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-v3MLsHRI7x .mbr-form .row {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v3MLsHRI7x .mbr-section-title {
  color: #e6e6e6;
}
.cid-v3MLsHRI7x .mbr-section-subtitle,
.cid-v3MLsHRI7x .icons-wrapper {
  color: #d4d4d8;
}
.cid-v3MLsHRI7x P {
  color: #ffffff;
}
.cid-v3MLsHRI7x .mbr-section-title,
.cid-v3MLsHRI7x .icons-wrapper {
  color: #ffffff;
}
.cid-v3MLsHRI7x .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;
}
#custom-html-1o #progressBar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: #3f7df0;
  width: 0%;
  z-index: 9999;
}
.cid-v3MNOJHm5b {
  z-index: 1000;
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3MNOJHm5b {
    flex-wrap: wrap;
  }
  .cid-v3MNOJHm5b .navbar-collapse {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
  }
  .cid-v3MNOJHm5b .navbar-nav {
    margin: 0 auto;
    display: flex;
    gap: 1.5rem;
  }
  .cid-v3MNOJHm5b .icons-menu,
  .cid-v3MNOJHm5b .navbar-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .cid-v3MNOJHm5b .navbar > .container {
    flex-wrap: nowrap;
  }
}
.cid-v3MNOJHm5b img {
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}
.cid-v3MNOJHm5b .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(3, 7, 18, 0);
}
.cid-v3MNOJHm5b .navbar.opened {
  transition: all 0.3s;
}
.cid-v3MNOJHm5b .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v3MNOJHm5b .navbar .navbar-logo img {
  width: auto;
}
.cid-v3MNOJHm5b .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  flex-basis: auto!important;
}
.cid-v3MNOJHm5b .navbar.collapsed {
  justify-content: center;
}
.cid-v3MNOJHm5b .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v3MNOJHm5b .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v3MNOJHm5b .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v3MNOJHm5b .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v3MNOJHm5b .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v3MNOJHm5b .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-v3MNOJHm5b .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v3MNOJHm5b .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v3MNOJHm5b .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
@media (max-width: 991px) {
  .cid-v3MNOJHm5b .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v3MNOJHm5b .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v3MNOJHm5b .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v3MNOJHm5b .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v3MNOJHm5b .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-v3MNOJHm5b .navbar .navbar-logo img {
    height: 5rem !important;
  }
  .cid-v3MNOJHm5b .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v3MNOJHm5b .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v3MNOJHm5b .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v3MNOJHm5b .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v3MNOJHm5b .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v3MNOJHm5b .navbar.navbar-short {
  min-height: 60px;
}
.cid-v3MNOJHm5b .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v3MNOJHm5b .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (max-width: 992px) {
  .cid-v3MNOJHm5b .opened .container {
    flex-wrap: wrap;
  }
}
.cid-v3MNOJHm5b .opened .container .navbar-collapse {
  width: 100%;
}
.cid-v3MNOJHm5b .btn {
  padding: 0.3rem 2rem;
}
.cid-v3MNOJHm5b .nav-link {
  position: relative;
}
.cid-v3MNOJHm5b .nav-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  transition: all 0.3s;
  background: #3f7df0;
}
.cid-v3MNOJHm5b .nav-link:hover:before {
  width: 100%;
}
.cid-v3MNOJHm5b nav.navbar {
  position: fixed;
}
.cid-v3MNOJHm5b .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-v3MNOJHm5b .dropdown-item small {
  display: block;
  font-size: 0.8em;
  color: #d1d5dc;
}
.cid-v3MNOJHm5b .dropdown-menu {
  padding: 0;
  border-radius: 10px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v3MNOJHm5b .dropdown-item:hover,
.cid-v3MNOJHm5b .dropdown-item:focus {
  background: rgba(255, 255, 255, 0.04) !important;
  color: white !important;
}
.cid-v3MNOJHm5b .dropdown-item:first-child {
  border-radius: 10px;
}
.cid-v3MNOJHm5b .dropdown-item:last-child {
  border-radius: 10px;
}
.cid-v3MNOJHm5b .nav-dropdown .link {
  padding: 0 !important;
  margin: 0.667em 1em !important;
}
.cid-v3MNOJHm5b .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
}
.cid-v3MNOJHm5b .container {
  display: flex;
  margin: auto;
}
.cid-v3MNOJHm5b .iconfont-wrapper {
  color: #4f4fe0 !important;
  font-size: 2rem;
  padding-right: 0.5rem;
}
.cid-v3MNOJHm5b .dropdown-menu,
.cid-v3MNOJHm5b .navbar.opened {
  background: #030712 !important;
}
.cid-v3MNOJHm5b .nav-item:focus,
.cid-v3MNOJHm5b .nav-link:focus {
  outline: none;
}
.cid-v3MNOJHm5b .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v3MNOJHm5b .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3MNOJHm5b .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v3MNOJHm5b .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v3MNOJHm5b .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v3MNOJHm5b .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v3MNOJHm5b .navbar-short {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #030712 !important;
  transition: all 0.3s;
}
.cid-v3MNOJHm5b .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-v3MNOJHm5b .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v3MNOJHm5b .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v3MNOJHm5b .dropdown-item.active,
.cid-v3MNOJHm5b .dropdown-item:active {
  background-color: transparent;
}
.cid-v3MNOJHm5b .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v3MNOJHm5b .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v3MNOJHm5b .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v3MNOJHm5b .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #030712;
}
.cid-v3MNOJHm5b .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v3MNOJHm5b .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3MNOJHm5b ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v3MNOJHm5b .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v3MNOJHm5b button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v3MNOJHm5b button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3MNOJHm5b button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v3MNOJHm5b button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3MNOJHm5b button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3MNOJHm5b button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v3MNOJHm5b nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3MNOJHm5b nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v3MNOJHm5b nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v3MNOJHm5b nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3MNOJHm5b .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v3MNOJHm5b a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v3MNOJHm5b .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-v3MNOJHm5b .navbar {
    height: 70px;
  }
  .cid-v3MNOJHm5b .navbar.opened {
    height: auto;
  }
  .cid-v3MNOJHm5b .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v3MNOKJY9p {
  padding-top: 8rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/red-space-1920-x-1080-background-adgrrp7kid1gpr45.jpg-1920x1080.jpg");
}
.cid-v3MNOKJY9p .mbr-text,
.cid-v3MNOKJY9p .mbr-section-btn {
  color: #d1d5dc;
}
.cid-v3MNOKJY9p .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3MNOKJY9p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3MNOKJY9p .mbr-section-title {
  color: #ff6467;
}
.cid-v3MNOKJY9p .status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #440707;
  padding: 6px 14px;
  border-radius: 100px;
  font-weight: 600;
  position: relative;
}
.cid-v3MNOKJY9p .status-pill::before {
  content: "";
  position: relative;
  width: 10px;
  height: 10px;
  background: #ff6467;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(255, 100, 103, 0.8);
  animation: pulse 1.8s infinite ease-out;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  60% {
    transform: scale(1.7);
    opacity: 0.15;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}
.cid-v3MNOKJY9p .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v3MNOKJY9p .custom-shape-divider-bottom-1764122333 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}
.cid-v3MNOKJY9p .custom-shape-divider-bottom-1764122333 svg {
  position: relative;
  display: block;
  width: calc(101.3%);
  height: 76px;
}
.cid-v3MNOKJY9p .custom-shape-divider-bottom-1764122333 .shape-fill {
  fill: #030712;
}
.cid-v3MNOLKA5x {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #030712;
}
.cid-v3MNOLKA5x blockquote {
  border-color: currentColor;
  padding: 1rem;
}
.cid-v3MNOLKA5x .quote {
  color: #e43f3f;
}
.cid-v3MNOLKA5x .quote,
.cid-v3MNOLKA5x blockquote {
  color: #ffffff;
}
.cid-v3MNOLKA5x .mbr-section-title {
  color: #ffffff;
}
.cid-v3MNOLKA5x .mbr-text {
  color: #d1d5dc;
}
.cid-v3MNOLKA5x .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: 15px;
}
.cid-v3MNOLKA5x .product-banner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}
.cid-v3MNOLKA5x .divider {
  width: 75%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 12px 0;
  border-radius: 2px;
}
.cid-v3MOXaqvai {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #030712;
}
.cid-v3MOXaqvai .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: 10px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
  padding: 30px;
  transition: all 0.3s;
  margin: 20px auto;
}
.cid-v3MOXaqvai .discord-banner:hover {
  transform: translateY(-2px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.cid-v3MOXaqvai .banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cid-v3MOXaqvai .mbr-iconfont {
  color: #3f7df0;
  font-size: 22px;
}
.cid-v3MOXaqvai .banner-icon {
  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: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
}
.cid-v3MOXaqvai .banner-text {
  flex: 1;
  color: #fff;
}
.cid-v3MOXaqvai .banner-text .mbr-section-title {
  margin: 0;
  font-weight: 600;
}
.cid-v3MOXaqvai .banner-text .mbr-section-subtitle {
  margin: 5px 0 0;
  color: #bbbbbb;
}
.cid-v3MOXaqvai .banner-btn .btn-support {
  background: #3f7df0;
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  padding: 12px 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s ease;
}
.cid-v3MOXaqvai .banner-btn .btn-support:hover {
  transform: translateY(-3px);
}
.cid-v3MOXaqvai P {
  color: #d1d5dc;
  text-align: left;
}
.cid-v3MOXaqvai .mbr-section-subtitle {
  color: #d1d5dc;
}
@media (max-width: 768px) {
  .cid-v3MOXaqvai .banner-content {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .cid-v3MOXaqvai .banner-btn {
    width: 100%;
    margin-top: 10px;
    display: flex;
    justify-content: center;
  }
  .cid-v3MOXaqvai .banner-btn .btn-support {
    width: auto;
    justify-content: center;
  }
}
.cid-v3MOXaqvai H4 {
  color: #ffffff;
}
.cid-v3MNOMxPJe {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #030712;
}
.cid-v3MNOMxPJe .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: "Moririse2" !important;
  color: #3f7df0;
  margin-left: 1rem;
}
.cid-v3MNOMxPJe .panel-group,
.cid-v3MNOMxPJe .card-header {
  border: none;
}
.cid-v3MNOMxPJe .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-v3MNOMxPJe .card-header {
  background: transparent;
}
.cid-v3MNOMxPJe .panel-title-edit {
  color: #ffffff;
  text-align: left;
}
.cid-v3MNOMxPJe .card {
  transition: all 0.3s 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);
  margin-bottom: 0;
  padding: 1rem 1rem;
}
.cid-v3MNOMxPJe .card:hover {
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.cid-v3MNOMxPJe .panel-body {
  padding: 1rem 1rem;
}
.cid-v3MNOMxPJe .panel-text {
  color: #d1d5dc;
  margin: 0;
}
.cid-v3MNOMxPJe H3 {
  color: #ffffff;
}
.cid-v3MNOMxPJe H4 {
  color: #ffffff;
}
.cid-v3MNOMxPJe .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3MNOMxPJe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3MNONcxdX {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #030712;
}
.cid-v3MNONcxdX .mbr-section-subtitle {
  letter-spacing: 1px;
  margin-bottom: 1rem;
  color: #b4d8a4;
}
.cid-v3MNONcxdX .first-column .mbr-text {
  margin: 0;
}
.cid-v3MNONcxdX .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;
  color: white;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .cid-v3MNONcxdX .row {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
}
.cid-v3MNONcxdX .form-group {
  max-width: 55%;
}
.cid-v3MNONcxdX .form-group,
.cid-v3MNONcxdX .mbr-section-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-v3MNONcxdX .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-v3MNONcxdX .form-control::-webkit-input-placeholder {
  color: #bbbbbb;
}
.cid-v3MNONcxdX .form-control::-moz-placeholder {
  color: #bbbbbb;
}
.cid-v3MNONcxdX .form-control:-moz-placeholder {
  color: #bbbbbb;
}
.cid-v3MNONcxdX .form-control:-ms-input-placeholder {
  color: #bbbbbb;
}
.cid-v3MNONcxdX .form-control:hover,
.cid-v3MNONcxdX .form-control:focus {
  border: none !important;
}
.cid-v3MNONcxdX .col + .mbr-section-btn .btn,
.cid-v3MNONcxdX .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-v3MNONcxdX .dragArea > *:nth-last-child(2).col,
.cid-v3MNONcxdX .dragArea > *:nth-last-child(2).col-auto,
.cid-v3MNONcxdX .col + .mbr-section-btn,
.cid-v3MNONcxdX .col-auto + .mbr-section-btn {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-v3MNONcxdX .mbr-form .row {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v3MNONcxdX .mbr-section-title {
  color: #e6e6e6;
}
.cid-v3MNONcxdX .mbr-section-subtitle,
.cid-v3MNONcxdX .icons-wrapper {
  color: #d4d4d8;
}
.cid-v3MNONcxdX P {
  color: #ffffff;
}
.cid-v3MNONcxdX .mbr-section-title,
.cid-v3MNONcxdX .icons-wrapper {
  color: #ffffff;
}
.cid-v3MNONcxdX .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;
}
#custom-html-1w #progressBar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: #3f7df0;
  width: 0%;
  z-index: 9999;
}
.cid-v3MOkalHvE {
  z-index: 1000;
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3MOkalHvE {
    flex-wrap: wrap;
  }
  .cid-v3MOkalHvE .navbar-collapse {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
  }
  .cid-v3MOkalHvE .navbar-nav {
    margin: 0 auto;
    display: flex;
    gap: 1.5rem;
  }
  .cid-v3MOkalHvE .icons-menu,
  .cid-v3MOkalHvE .navbar-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .cid-v3MOkalHvE .navbar > .container {
    flex-wrap: nowrap;
  }
}
.cid-v3MOkalHvE img {
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}
.cid-v3MOkalHvE .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(3, 7, 18, 0);
}
.cid-v3MOkalHvE .navbar.opened {
  transition: all 0.3s;
}
.cid-v3MOkalHvE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v3MOkalHvE .navbar .navbar-logo img {
  width: auto;
}
.cid-v3MOkalHvE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  flex-basis: auto!important;
}
.cid-v3MOkalHvE .navbar.collapsed {
  justify-content: center;
}
.cid-v3MOkalHvE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v3MOkalHvE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v3MOkalHvE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v3MOkalHvE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v3MOkalHvE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v3MOkalHvE .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-v3MOkalHvE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v3MOkalHvE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v3MOkalHvE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
@media (max-width: 991px) {
  .cid-v3MOkalHvE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v3MOkalHvE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v3MOkalHvE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v3MOkalHvE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v3MOkalHvE .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-v3MOkalHvE .navbar .navbar-logo img {
    height: 5rem !important;
  }
  .cid-v3MOkalHvE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v3MOkalHvE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v3MOkalHvE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v3MOkalHvE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v3MOkalHvE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v3MOkalHvE .navbar.navbar-short {
  min-height: 60px;
}
.cid-v3MOkalHvE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v3MOkalHvE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (max-width: 992px) {
  .cid-v3MOkalHvE .opened .container {
    flex-wrap: wrap;
  }
}
.cid-v3MOkalHvE .opened .container .navbar-collapse {
  width: 100%;
}
.cid-v3MOkalHvE .btn {
  padding: 0.3rem 2rem;
}
.cid-v3MOkalHvE .nav-link {
  position: relative;
}
.cid-v3MOkalHvE .nav-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  transition: all 0.3s;
  background: #3f7df0;
}
.cid-v3MOkalHvE .nav-link:hover:before {
  width: 100%;
}
.cid-v3MOkalHvE nav.navbar {
  position: fixed;
}
.cid-v3MOkalHvE .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-v3MOkalHvE .dropdown-item small {
  display: block;
  font-size: 0.8em;
  color: #d1d5dc;
}
.cid-v3MOkalHvE .dropdown-menu {
  padding: 0;
  border-radius: 10px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v3MOkalHvE .dropdown-item:hover,
.cid-v3MOkalHvE .dropdown-item:focus {
  background: rgba(255, 255, 255, 0.04) !important;
  color: white !important;
}
.cid-v3MOkalHvE .dropdown-item:first-child {
  border-radius: 10px;
}
.cid-v3MOkalHvE .dropdown-item:last-child {
  border-radius: 10px;
}
.cid-v3MOkalHvE .nav-dropdown .link {
  padding: 0 !important;
  margin: 0.667em 1em !important;
}
.cid-v3MOkalHvE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
}
.cid-v3MOkalHvE .container {
  display: flex;
  margin: auto;
}
.cid-v3MOkalHvE .iconfont-wrapper {
  color: #4f4fe0 !important;
  font-size: 2rem;
  padding-right: 0.5rem;
}
.cid-v3MOkalHvE .dropdown-menu,
.cid-v3MOkalHvE .navbar.opened {
  background: #030712 !important;
}
.cid-v3MOkalHvE .nav-item:focus,
.cid-v3MOkalHvE .nav-link:focus {
  outline: none;
}
.cid-v3MOkalHvE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v3MOkalHvE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3MOkalHvE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v3MOkalHvE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v3MOkalHvE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v3MOkalHvE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v3MOkalHvE .navbar-short {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #030712 !important;
  transition: all 0.3s;
}
.cid-v3MOkalHvE .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-v3MOkalHvE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v3MOkalHvE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v3MOkalHvE .dropdown-item.active,
.cid-v3MOkalHvE .dropdown-item:active {
  background-color: transparent;
}
.cid-v3MOkalHvE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v3MOkalHvE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v3MOkalHvE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v3MOkalHvE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #030712;
}
.cid-v3MOkalHvE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v3MOkalHvE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3MOkalHvE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v3MOkalHvE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v3MOkalHvE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v3MOkalHvE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3MOkalHvE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v3MOkalHvE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3MOkalHvE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3MOkalHvE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v3MOkalHvE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3MOkalHvE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v3MOkalHvE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v3MOkalHvE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3MOkalHvE .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v3MOkalHvE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v3MOkalHvE .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-v3MOkalHvE .navbar {
    height: 70px;
  }
  .cid-v3MOkalHvE .navbar.opened {
    height: auto;
  }
  .cid-v3MOkalHvE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v3MOkaTycq {
  padding-top: 8rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/red-space-1920-x-1080-background-adgrrp7kid1gpr45.jpg-1920x1080.jpg");
}
.cid-v3MOkaTycq .mbr-text,
.cid-v3MOkaTycq .mbr-section-btn {
  color: #d1d5dc;
}
.cid-v3MOkaTycq .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3MOkaTycq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3MOkaTycq .mbr-section-title {
  color: #ff6467;
}
.cid-v3MOkaTycq .status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #440707;
  padding: 6px 14px;
  border-radius: 100px;
  font-weight: 600;
  position: relative;
}
.cid-v3MOkaTycq .status-pill::before {
  content: "";
  position: relative;
  width: 10px;
  height: 10px;
  background: #ff6467;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(255, 100, 103, 0.8);
  animation: pulse 1.8s infinite ease-out;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  60% {
    transform: scale(1.7);
    opacity: 0.15;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}
.cid-v3MOkaTycq .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v3MOkaTycq .custom-shape-divider-bottom-1764122333 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}
.cid-v3MOkaTycq .custom-shape-divider-bottom-1764122333 svg {
  position: relative;
  display: block;
  width: calc(101.3%);
  height: 76px;
}
.cid-v3MOkaTycq .custom-shape-divider-bottom-1764122333 .shape-fill {
  fill: #030712;
}
.cid-v3MOkbqE28 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #030712;
}
.cid-v3MOkbqE28 blockquote {
  border-color: currentColor;
  padding: 1rem;
}
.cid-v3MOkbqE28 .quote {
  color: #e43f3f;
}
.cid-v3MOkbqE28 .quote,
.cid-v3MOkbqE28 blockquote {
  color: #ffffff;
}
.cid-v3MOkbqE28 .mbr-section-title {
  color: #ffffff;
}
.cid-v3MOkbqE28 .mbr-text {
  color: #d1d5dc;
}
.cid-v3MOkbqE28 .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: 15px;
}
.cid-v3MOkbqE28 .product-banner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}
.cid-v3MOkbqE28 .divider {
  width: 75%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 12px 0;
  border-radius: 2px;
}
.cid-v3MOZAoO3y {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #030712;
}
.cid-v3MOZAoO3y .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: 10px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
  padding: 30px;
  transition: all 0.3s;
  margin: 20px auto;
}
.cid-v3MOZAoO3y .discord-banner:hover {
  transform: translateY(-2px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.cid-v3MOZAoO3y .banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cid-v3MOZAoO3y .mbr-iconfont {
  color: #3f7df0;
  font-size: 22px;
}
.cid-v3MOZAoO3y .banner-icon {
  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: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
}
.cid-v3MOZAoO3y .banner-text {
  flex: 1;
  color: #fff;
}
.cid-v3MOZAoO3y .banner-text .mbr-section-title {
  margin: 0;
  font-weight: 600;
}
.cid-v3MOZAoO3y .banner-text .mbr-section-subtitle {
  margin: 5px 0 0;
  color: #bbbbbb;
}
.cid-v3MOZAoO3y .banner-btn .btn-support {
  background: #3f7df0;
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  padding: 12px 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s ease;
}
.cid-v3MOZAoO3y .banner-btn .btn-support:hover {
  transform: translateY(-3px);
}
.cid-v3MOZAoO3y P {
  color: #d1d5dc;
  text-align: left;
}
.cid-v3MOZAoO3y .mbr-section-subtitle {
  color: #d1d5dc;
}
@media (max-width: 768px) {
  .cid-v3MOZAoO3y .banner-content {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .cid-v3MOZAoO3y .banner-btn {
    width: 100%;
    margin-top: 10px;
    display: flex;
    justify-content: center;
  }
  .cid-v3MOZAoO3y .banner-btn .btn-support {
    width: auto;
    justify-content: center;
  }
}
.cid-v3MOZAoO3y H4 {
  color: #ffffff;
}
.cid-v3MOkcgADv {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #030712;
}
.cid-v3MOkcgADv .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: "Moririse2" !important;
  color: #3f7df0;
  margin-left: 1rem;
}
.cid-v3MOkcgADv .panel-group,
.cid-v3MOkcgADv .card-header {
  border: none;
}
.cid-v3MOkcgADv .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-v3MOkcgADv .card-header {
  background: transparent;
}
.cid-v3MOkcgADv .panel-title-edit {
  color: #ffffff;
  text-align: left;
}
.cid-v3MOkcgADv .card {
  transition: all 0.3s 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);
  margin-bottom: 0;
  padding: 1rem 1rem;
}
.cid-v3MOkcgADv .card:hover {
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.cid-v3MOkcgADv .panel-body {
  padding: 1rem 1rem;
}
.cid-v3MOkcgADv .panel-text {
  color: #d1d5dc;
  margin: 0;
}
.cid-v3MOkcgADv H3 {
  color: #ffffff;
}
.cid-v3MOkcgADv H4 {
  color: #ffffff;
}
.cid-v3MOkcgADv .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3MOkcgADv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3MOkcTiwu {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #030712;
}
.cid-v3MOkcTiwu .mbr-section-subtitle {
  letter-spacing: 1px;
  margin-bottom: 1rem;
  color: #b4d8a4;
}
.cid-v3MOkcTiwu .first-column .mbr-text {
  margin: 0;
}
.cid-v3MOkcTiwu .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;
  color: white;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .cid-v3MOkcTiwu .row {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
}
.cid-v3MOkcTiwu .form-group {
  max-width: 55%;
}
.cid-v3MOkcTiwu .form-group,
.cid-v3MOkcTiwu .mbr-section-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-v3MOkcTiwu .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-v3MOkcTiwu .form-control::-webkit-input-placeholder {
  color: #bbbbbb;
}
.cid-v3MOkcTiwu .form-control::-moz-placeholder {
  color: #bbbbbb;
}
.cid-v3MOkcTiwu .form-control:-moz-placeholder {
  color: #bbbbbb;
}
.cid-v3MOkcTiwu .form-control:-ms-input-placeholder {
  color: #bbbbbb;
}
.cid-v3MOkcTiwu .form-control:hover,
.cid-v3MOkcTiwu .form-control:focus {
  border: none !important;
}
.cid-v3MOkcTiwu .col + .mbr-section-btn .btn,
.cid-v3MOkcTiwu .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-v3MOkcTiwu .dragArea > *:nth-last-child(2).col,
.cid-v3MOkcTiwu .dragArea > *:nth-last-child(2).col-auto,
.cid-v3MOkcTiwu .col + .mbr-section-btn,
.cid-v3MOkcTiwu .col-auto + .mbr-section-btn {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-v3MOkcTiwu .mbr-form .row {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v3MOkcTiwu .mbr-section-title {
  color: #e6e6e6;
}
.cid-v3MOkcTiwu .mbr-section-subtitle,
.cid-v3MOkcTiwu .icons-wrapper {
  color: #d4d4d8;
}
.cid-v3MOkcTiwu P {
  color: #ffffff;
}
.cid-v3MOkcTiwu .mbr-section-title,
.cid-v3MOkcTiwu .icons-wrapper {
  color: #ffffff;
}
.cid-v3MOkcTiwu .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;
}
#custom-html-23 #progressBar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: #3f7df0;
  width: 0%;
  z-index: 9999;
}
.cid-v3N1MOLgT9 {
  z-index: 1000;
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3N1MOLgT9 {
    flex-wrap: wrap;
  }
  .cid-v3N1MOLgT9 .navbar-collapse {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
  }
  .cid-v3N1MOLgT9 .navbar-nav {
    margin: 0 auto;
    display: flex;
    gap: 1.5rem;
  }
  .cid-v3N1MOLgT9 .icons-menu,
  .cid-v3N1MOLgT9 .navbar-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .cid-v3N1MOLgT9 .navbar > .container {
    flex-wrap: nowrap;
  }
}
.cid-v3N1MOLgT9 img {
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}
.cid-v3N1MOLgT9 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(3, 7, 18, 0);
}
.cid-v3N1MOLgT9 .navbar.opened {
  transition: all 0.3s;
}
.cid-v3N1MOLgT9 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v3N1MOLgT9 .navbar .navbar-logo img {
  width: auto;
}
.cid-v3N1MOLgT9 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  flex-basis: auto!important;
}
.cid-v3N1MOLgT9 .navbar.collapsed {
  justify-content: center;
}
.cid-v3N1MOLgT9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v3N1MOLgT9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v3N1MOLgT9 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v3N1MOLgT9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v3N1MOLgT9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v3N1MOLgT9 .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-v3N1MOLgT9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v3N1MOLgT9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v3N1MOLgT9 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
@media (max-width: 991px) {
  .cid-v3N1MOLgT9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v3N1MOLgT9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v3N1MOLgT9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v3N1MOLgT9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v3N1MOLgT9 .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-v3N1MOLgT9 .navbar .navbar-logo img {
    height: 5rem !important;
  }
  .cid-v3N1MOLgT9 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v3N1MOLgT9 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v3N1MOLgT9 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v3N1MOLgT9 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v3N1MOLgT9 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v3N1MOLgT9 .navbar.navbar-short {
  min-height: 60px;
}
.cid-v3N1MOLgT9 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v3N1MOLgT9 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (max-width: 992px) {
  .cid-v3N1MOLgT9 .opened .container {
    flex-wrap: wrap;
  }
}
.cid-v3N1MOLgT9 .opened .container .navbar-collapse {
  width: 100%;
}
.cid-v3N1MOLgT9 .btn {
  padding: 0.3rem 2rem;
}
.cid-v3N1MOLgT9 .nav-link {
  position: relative;
}
.cid-v3N1MOLgT9 .nav-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  transition: all 0.3s;
  background: #3f7df0;
}
.cid-v3N1MOLgT9 .nav-link:hover:before {
  width: 100%;
}
.cid-v3N1MOLgT9 nav.navbar {
  position: fixed;
}
.cid-v3N1MOLgT9 .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-v3N1MOLgT9 .dropdown-item small {
  display: block;
  font-size: 0.8em;
  color: #d1d5dc;
}
.cid-v3N1MOLgT9 .dropdown-menu {
  padding: 0;
  border-radius: 10px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v3N1MOLgT9 .dropdown-item:hover,
.cid-v3N1MOLgT9 .dropdown-item:focus {
  background: rgba(255, 255, 255, 0.04) !important;
  color: white !important;
}
.cid-v3N1MOLgT9 .dropdown-item:first-child {
  border-radius: 10px;
}
.cid-v3N1MOLgT9 .dropdown-item:last-child {
  border-radius: 10px;
}
.cid-v3N1MOLgT9 .nav-dropdown .link {
  padding: 0 !important;
  margin: 0.667em 1em !important;
}
.cid-v3N1MOLgT9 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
}
.cid-v3N1MOLgT9 .container {
  display: flex;
  margin: auto;
}
.cid-v3N1MOLgT9 .iconfont-wrapper {
  color: #4f4fe0 !important;
  font-size: 2rem;
  padding-right: 0.5rem;
}
.cid-v3N1MOLgT9 .dropdown-menu,
.cid-v3N1MOLgT9 .navbar.opened {
  background: #030712 !important;
}
.cid-v3N1MOLgT9 .nav-item:focus,
.cid-v3N1MOLgT9 .nav-link:focus {
  outline: none;
}
.cid-v3N1MOLgT9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v3N1MOLgT9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3N1MOLgT9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v3N1MOLgT9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v3N1MOLgT9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v3N1MOLgT9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v3N1MOLgT9 .navbar-short {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #030712 !important;
  transition: all 0.3s;
}
.cid-v3N1MOLgT9 .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-v3N1MOLgT9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v3N1MOLgT9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v3N1MOLgT9 .dropdown-item.active,
.cid-v3N1MOLgT9 .dropdown-item:active {
  background-color: transparent;
}
.cid-v3N1MOLgT9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v3N1MOLgT9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v3N1MOLgT9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v3N1MOLgT9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #030712;
}
.cid-v3N1MOLgT9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v3N1MOLgT9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3N1MOLgT9 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v3N1MOLgT9 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v3N1MOLgT9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v3N1MOLgT9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3N1MOLgT9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v3N1MOLgT9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3N1MOLgT9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3N1MOLgT9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v3N1MOLgT9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3N1MOLgT9 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v3N1MOLgT9 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v3N1MOLgT9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3N1MOLgT9 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v3N1MOLgT9 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v3N1MOLgT9 .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-v3N1MOLgT9 .navbar {
    height: 70px;
  }
  .cid-v3N1MOLgT9 .navbar.opened {
    height: auto;
  }
  .cid-v3N1MOLgT9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v3N1MPwuPs {
  padding-top: 8rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/red-space-1920-x-1080-background-adgrrp7kid1gpr45.jpg-1920x1080.jpg");
}
.cid-v3N1MPwuPs .mbr-text,
.cid-v3N1MPwuPs .mbr-section-btn {
  color: #d1d5dc;
}
.cid-v3N1MPwuPs .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3N1MPwuPs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3N1MPwuPs .mbr-section-title {
  color: #ff6467;
}
.cid-v3N1MPwuPs .status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #440707;
  padding: 6px 14px;
  border-radius: 100px;
  font-weight: 600;
  position: relative;
}
.cid-v3N1MPwuPs .status-pill::before {
  content: "";
  position: relative;
  width: 10px;
  height: 10px;
  background: #ff6467;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(255, 100, 103, 0.8);
  animation: pulse 1.8s infinite ease-out;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  60% {
    transform: scale(1.7);
    opacity: 0.15;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}
.cid-v3N1MPwuPs .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v3N1MPwuPs .custom-shape-divider-bottom-1764122333 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}
.cid-v3N1MPwuPs .custom-shape-divider-bottom-1764122333 svg {
  position: relative;
  display: block;
  width: calc(101.3%);
  height: 76px;
}
.cid-v3N1MPwuPs .custom-shape-divider-bottom-1764122333 .shape-fill {
  fill: #030712;
}
.cid-v3N1MQfiiP {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #030712;
}
.cid-v3N1MQfiiP .mbr-iconfont {
  display: block;
  font-size: 2.5rem;
  color: #3f7df0;
  margin-bottom: 0.5rem;
}
.cid-v3N1MQfiiP .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-v3N1MQfiiP .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-v3N1MQfiiP .card-wrapper {
  transition: all 0.3s;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
}
.cid-v3N1MQfiiP .card-wrapper:hover {
  transform: translateY(-2px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.cid-v3N1MQfiiP .card-title,
.cid-v3N1MQfiiP .card-box {
  color: #fafafa;
  text-align: center;
}
.cid-v3N1MQfiiP .main-title,
.cid-v3N1MQfiiP .title-col {
  text-align: center;
  color: #ffffff;
}
.cid-v3N1MQfiiP .card-text {
  color: #d1d5dc;
}
.cid-v3N1MQfiiP .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3N1MQfiiP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3N1MRvRh6 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #030712;
}
.cid-v3N1MRvRh6 .item-img {
  position: relative;
}
.cid-v3N1MRvRh6 img {
  border-radius: 10px;
}
.cid-v3N1MRvRh6 .btn-tag {
  padding: 0.3rem 1rem;
  padding-top: 6px;
  border-radius: 10px !important;
}
.cid-v3N1MRvRh6 .btn-tag:hover,
.cid-v3N1MRvRh6 .btn-tag:focus {
  box-shadow: none;
}
.cid-v3N1MRvRh6 img,
.cid-v3N1MRvRh6 .item-img {
  width: 65%;
  display: block;
  margin: 0 auto;
}
.cid-v3N1MRvRh6 .item:focus,
.cid-v3N1MRvRh6 span:focus {
  outline: none;
}
.cid-v3N1MRvRh6 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3N1MRvRh6 .item-wrapper {
  position: relative;
  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: 10px;
  transition: all 0.3s;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
  padding: 15px;
}
.cid-v3N1MRvRh6 .item-wrapper:hover {
  transform: translateY(-2px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.cid-v3N1MRvRh6 .mbr-section-btn {
  margin-top: auto !important;
  text-align: center;
}
.cid-v3N1MRvRh6 .mbr-section-title {
  color: #ffffff;
}
.cid-v3N1MRvRh6 .mbr-text {
  color: #013220;
  text-align: left;
}
.cid-v3N1MRvRh6 .price {
  text-align: left;
}
.cid-v3N1MRvRh6 .item-title {
  display: inline-block;
  background-color: #ffffff;
  color: #09090b;
  padding: 4px 10px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.85rem;
  text-align: left;
}
.cid-v3N1MRvRh6 .item-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-v3N1MRvRh6 .mbr-text,
.cid-v3N1MRvRh6 .mbr-section-btn {
  color: #d4d4d8;
  text-align: left;
}
.cid-v3N1MRvRh6 .mbr-section-subtitle {
  color: #d4d4d8;
  text-align: center;
}
.cid-v3N1MTfoFT {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #030712;
}
.cid-v3N1MTfoFT .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: 10px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
  padding: 30px;
  transition: all 0.3s;
  margin: 20px auto;
}
.cid-v3N1MTfoFT .discord-banner:hover {
  transform: translateY(-2px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.cid-v3N1MTfoFT .banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cid-v3N1MTfoFT .mbr-iconfont {
  color: #3f7df0;
  font-size: 22px;
}
.cid-v3N1MTfoFT .banner-icon {
  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: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
}
.cid-v3N1MTfoFT .banner-text {
  flex: 1;
  color: #fff;
}
.cid-v3N1MTfoFT .banner-text .mbr-section-title {
  margin: 0;
  font-weight: 600;
}
.cid-v3N1MTfoFT .banner-text .mbr-section-subtitle {
  margin: 5px 0 0;
  color: #bbbbbb;
}
.cid-v3N1MTfoFT .banner-btn .btn-support {
  background: #3f7df0;
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  padding: 12px 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s ease;
}
.cid-v3N1MTfoFT .banner-btn .btn-support:hover {
  transform: translateY(-3px);
}
.cid-v3N1MTfoFT P {
  color: #d1d5dc;
  text-align: left;
}
.cid-v3N1MTfoFT .mbr-section-subtitle {
  color: #d1d5dc;
}
@media (max-width: 768px) {
  .cid-v3N1MTfoFT .banner-content {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .cid-v3N1MTfoFT .banner-btn {
    width: 100%;
    margin-top: 10px;
    display: flex;
    justify-content: center;
  }
  .cid-v3N1MTfoFT .banner-btn .btn-support {
    width: auto;
    justify-content: center;
  }
}
.cid-v3N1MTfoFT H4 {
  color: #ffffff;
}
.cid-v3N1MUdSOB {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #030712;
}
.cid-v3N1MUdSOB .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #3f7df0;
  margin-bottom: 1rem;
}
.cid-v3N1MUdSOB .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-v3N1MUdSOB .card-wrapper {
  transition: all 0.3s ease;
  padding: 2rem 2rem;
  display: flex;
  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);
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}
.cid-v3N1MUdSOB .card-wrapper:hover {
  transform: translateY(-2px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.cid-v3N1MUdSOB .card-title,
.cid-v3N1MUdSOB .card-box {
  color: #ffffff;
}
.cid-v3N1MUdSOB .main-title,
.cid-v3N1MUdSOB .title-col {
  text-align: center;
  color: #ffffff;
}
.cid-v3N1MUdSOB .card-text {
  color: #ffffff;
}
.cid-v3N1MUdSOB .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3N1MUdSOB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3N1MUdSOB .mbr-text,
.cid-v3N1MUdSOB .mbr-section-btn {
  color: #d1d5dc;
}
.cid-v3N1MUTEoC {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #030712;
}
.cid-v3N1MUTEoC .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: "Moririse2" !important;
  color: #3f7df0;
  margin-left: 1rem;
}
.cid-v3N1MUTEoC .panel-group,
.cid-v3N1MUTEoC .card-header {
  border: none;
}
.cid-v3N1MUTEoC .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-v3N1MUTEoC .card-header {
  background: transparent;
}
.cid-v3N1MUTEoC .panel-title-edit {
  color: #ffffff;
  text-align: left;
}
.cid-v3N1MUTEoC .card {
  transition: all 0.3s 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);
  margin-bottom: 0;
  padding: 1rem 1rem;
}
.cid-v3N1MUTEoC .card:hover {
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.cid-v3N1MUTEoC .panel-body {
  padding: 1rem 1rem;
}
.cid-v3N1MUTEoC .panel-text {
  color: #d1d5dc;
  margin: 0;
}
.cid-v3N1MUTEoC H3 {
  color: #ffffff;
}
.cid-v3N1MUTEoC H4 {
  color: #ffffff;
}
.cid-v3N1MUTEoC .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3N1MUTEoC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3N1MVx4vK {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #030712;
}
.cid-v3N1MVx4vK .mbr-section-subtitle {
  letter-spacing: 1px;
  margin-bottom: 1rem;
  color: #b4d8a4;
}
.cid-v3N1MVx4vK .first-column .mbr-text {
  margin: 0;
}
.cid-v3N1MVx4vK .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;
  color: white;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .cid-v3N1MVx4vK .row {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
}
.cid-v3N1MVx4vK .form-group {
  max-width: 55%;
}
.cid-v3N1MVx4vK .form-group,
.cid-v3N1MVx4vK .mbr-section-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-v3N1MVx4vK .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-v3N1MVx4vK .form-control::-webkit-input-placeholder {
  color: #bbbbbb;
}
.cid-v3N1MVx4vK .form-control::-moz-placeholder {
  color: #bbbbbb;
}
.cid-v3N1MVx4vK .form-control:-moz-placeholder {
  color: #bbbbbb;
}
.cid-v3N1MVx4vK .form-control:-ms-input-placeholder {
  color: #bbbbbb;
}
.cid-v3N1MVx4vK .form-control:hover,
.cid-v3N1MVx4vK .form-control:focus {
  border: none !important;
}
.cid-v3N1MVx4vK .col + .mbr-section-btn .btn,
.cid-v3N1MVx4vK .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-v3N1MVx4vK .dragArea > *:nth-last-child(2).col,
.cid-v3N1MVx4vK .dragArea > *:nth-last-child(2).col-auto,
.cid-v3N1MVx4vK .col + .mbr-section-btn,
.cid-v3N1MVx4vK .col-auto + .mbr-section-btn {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-v3N1MVx4vK .mbr-form .row {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v3N1MVx4vK .mbr-section-title {
  color: #e6e6e6;
}
.cid-v3N1MVx4vK .mbr-section-subtitle,
.cid-v3N1MVx4vK .icons-wrapper {
  color: #d4d4d8;
}
.cid-v3N1MVx4vK P {
  color: #ffffff;
}
.cid-v3N1MVx4vK .mbr-section-title,
.cid-v3N1MVx4vK .icons-wrapper {
  color: #ffffff;
}
.cid-v3N1MVx4vK .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;
}
#custom-html-2j #progressBar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: #3f7df0;
  width: 0%;
  z-index: 9999;
}
.cid-v3N2FxJIZD {
  z-index: 1000;
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3N2FxJIZD {
    flex-wrap: wrap;
  }
  .cid-v3N2FxJIZD .navbar-collapse {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
  }
  .cid-v3N2FxJIZD .navbar-nav {
    margin: 0 auto;
    display: flex;
    gap: 1.5rem;
  }
  .cid-v3N2FxJIZD .icons-menu,
  .cid-v3N2FxJIZD .navbar-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .cid-v3N2FxJIZD .navbar > .container {
    flex-wrap: nowrap;
  }
}
.cid-v3N2FxJIZD img {
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}
.cid-v3N2FxJIZD .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(3, 7, 18, 0);
}
.cid-v3N2FxJIZD .navbar.opened {
  transition: all 0.3s;
}
.cid-v3N2FxJIZD .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v3N2FxJIZD .navbar .navbar-logo img {
  width: auto;
}
.cid-v3N2FxJIZD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  flex-basis: auto!important;
}
.cid-v3N2FxJIZD .navbar.collapsed {
  justify-content: center;
}
.cid-v3N2FxJIZD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v3N2FxJIZD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v3N2FxJIZD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v3N2FxJIZD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v3N2FxJIZD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v3N2FxJIZD .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-v3N2FxJIZD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v3N2FxJIZD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v3N2FxJIZD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
@media (max-width: 991px) {
  .cid-v3N2FxJIZD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v3N2FxJIZD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v3N2FxJIZD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v3N2FxJIZD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v3N2FxJIZD .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-v3N2FxJIZD .navbar .navbar-logo img {
    height: 5rem !important;
  }
  .cid-v3N2FxJIZD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v3N2FxJIZD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v3N2FxJIZD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v3N2FxJIZD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v3N2FxJIZD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v3N2FxJIZD .navbar.navbar-short {
  min-height: 60px;
}
.cid-v3N2FxJIZD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v3N2FxJIZD .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (max-width: 992px) {
  .cid-v3N2FxJIZD .opened .container {
    flex-wrap: wrap;
  }
}
.cid-v3N2FxJIZD .opened .container .navbar-collapse {
  width: 100%;
}
.cid-v3N2FxJIZD .btn {
  padding: 0.3rem 2rem;
}
.cid-v3N2FxJIZD .nav-link {
  position: relative;
}
.cid-v3N2FxJIZD .nav-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  transition: all 0.3s;
  background: #3f7df0;
}
.cid-v3N2FxJIZD .nav-link:hover:before {
  width: 100%;
}
.cid-v3N2FxJIZD nav.navbar {
  position: fixed;
}
.cid-v3N2FxJIZD .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-v3N2FxJIZD .dropdown-item small {
  display: block;
  font-size: 0.8em;
  color: #d1d5dc;
}
.cid-v3N2FxJIZD .dropdown-menu {
  padding: 0;
  border-radius: 10px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v3N2FxJIZD .dropdown-item:hover,
.cid-v3N2FxJIZD .dropdown-item:focus {
  background: rgba(255, 255, 255, 0.04) !important;
  color: white !important;
}
.cid-v3N2FxJIZD .dropdown-item:first-child {
  border-radius: 10px;
}
.cid-v3N2FxJIZD .dropdown-item:last-child {
  border-radius: 10px;
}
.cid-v3N2FxJIZD .nav-dropdown .link {
  padding: 0 !important;
  margin: 0.667em 1em !important;
}
.cid-v3N2FxJIZD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
}
.cid-v3N2FxJIZD .container {
  display: flex;
  margin: auto;
}
.cid-v3N2FxJIZD .iconfont-wrapper {
  color: #4f4fe0 !important;
  font-size: 2rem;
  padding-right: 0.5rem;
}
.cid-v3N2FxJIZD .dropdown-menu,
.cid-v3N2FxJIZD .navbar.opened {
  background: #030712 !important;
}
.cid-v3N2FxJIZD .nav-item:focus,
.cid-v3N2FxJIZD .nav-link:focus {
  outline: none;
}
.cid-v3N2FxJIZD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v3N2FxJIZD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3N2FxJIZD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v3N2FxJIZD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v3N2FxJIZD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v3N2FxJIZD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v3N2FxJIZD .navbar-short {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #030712 !important;
  transition: all 0.3s;
}
.cid-v3N2FxJIZD .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-v3N2FxJIZD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v3N2FxJIZD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v3N2FxJIZD .dropdown-item.active,
.cid-v3N2FxJIZD .dropdown-item:active {
  background-color: transparent;
}
.cid-v3N2FxJIZD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v3N2FxJIZD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v3N2FxJIZD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v3N2FxJIZD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #030712;
}
.cid-v3N2FxJIZD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v3N2FxJIZD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3N2FxJIZD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v3N2FxJIZD .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v3N2FxJIZD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v3N2FxJIZD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3N2FxJIZD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v3N2FxJIZD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3N2FxJIZD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3N2FxJIZD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v3N2FxJIZD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3N2FxJIZD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v3N2FxJIZD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v3N2FxJIZD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3N2FxJIZD .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v3N2FxJIZD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v3N2FxJIZD .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-v3N2FxJIZD .navbar {
    height: 70px;
  }
  .cid-v3N2FxJIZD .navbar.opened {
    height: auto;
  }
  .cid-v3N2FxJIZD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v3N2FyiAIP {
  padding-top: 8rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/red-space-1920-x-1080-background-adgrrp7kid1gpr45.jpg-1920x1080.jpg");
}
.cid-v3N2FyiAIP .mbr-text,
.cid-v3N2FyiAIP .mbr-section-btn {
  color: #d1d5dc;
}
.cid-v3N2FyiAIP .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3N2FyiAIP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3N2FyiAIP .mbr-section-title {
  color: #ff6467;
}
.cid-v3N2FyiAIP .status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #440707;
  padding: 6px 14px;
  border-radius: 100px;
  font-weight: 600;
  position: relative;
}
.cid-v3N2FyiAIP .status-pill::before {
  content: "";
  position: relative;
  width: 10px;
  height: 10px;
  background: #ff6467;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(255, 100, 103, 0.8);
  animation: pulse 1.8s infinite ease-out;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  60% {
    transform: scale(1.7);
    opacity: 0.15;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}
.cid-v3N2FyiAIP .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v3N2FyiAIP .custom-shape-divider-bottom-1764122333 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}
.cid-v3N2FyiAIP .custom-shape-divider-bottom-1764122333 svg {
  position: relative;
  display: block;
  width: calc(101.3%);
  height: 76px;
}
.cid-v3N2FyiAIP .custom-shape-divider-bottom-1764122333 .shape-fill {
  fill: #030712;
}
.cid-v3N2FyP35u {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #030712;
}
.cid-v3N2FyP35u .mbr-iconfont {
  display: block;
  font-size: 2.5rem;
  color: #3f7df0;
  margin-bottom: 0.5rem;
}
.cid-v3N2FyP35u .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-v3N2FyP35u .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-v3N2FyP35u .card-wrapper {
  transition: all 0.3s;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
}
.cid-v3N2FyP35u .card-wrapper:hover {
  transform: translateY(-2px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.cid-v3N2FyP35u .card-title,
.cid-v3N2FyP35u .card-box {
  color: #fafafa;
  text-align: center;
}
.cid-v3N2FyP35u .main-title,
.cid-v3N2FyP35u .title-col {
  text-align: center;
  color: #ffffff;
}
.cid-v3N2FyP35u .card-text {
  color: #d1d5dc;
}
.cid-v3N2FyP35u .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3N2FyP35u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3N2FzyumM {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #030712;
}
.cid-v3N2FzyumM .item-img {
  position: relative;
}
.cid-v3N2FzyumM img {
  border-radius: 10px;
}
.cid-v3N2FzyumM .btn-tag {
  padding: 0.3rem 1rem;
  padding-top: 6px;
  border-radius: 10px !important;
}
.cid-v3N2FzyumM .btn-tag:hover,
.cid-v3N2FzyumM .btn-tag:focus {
  box-shadow: none;
}
.cid-v3N2FzyumM img,
.cid-v3N2FzyumM .item-img {
  width: 65%;
  display: block;
  margin: 0 auto;
}
.cid-v3N2FzyumM .item:focus,
.cid-v3N2FzyumM span:focus {
  outline: none;
}
.cid-v3N2FzyumM .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3N2FzyumM .item-wrapper {
  position: relative;
  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: 10px;
  transition: all 0.3s;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
  padding: 15px;
}
.cid-v3N2FzyumM .item-wrapper:hover {
  transform: translateY(-2px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.cid-v3N2FzyumM .mbr-section-btn {
  margin-top: auto !important;
  text-align: center;
}
.cid-v3N2FzyumM .mbr-section-title {
  color: #ffffff;
}
.cid-v3N2FzyumM .mbr-text {
  color: #013220;
  text-align: left;
}
.cid-v3N2FzyumM .price {
  text-align: left;
}
.cid-v3N2FzyumM .item-title {
  display: inline-block;
  background-color: #ffffff;
  color: #09090b;
  padding: 4px 10px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.85rem;
  text-align: left;
}
.cid-v3N2FzyumM .item-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-v3N2FzyumM .mbr-text,
.cid-v3N2FzyumM .mbr-section-btn {
  color: #d4d4d8;
  text-align: left;
}
.cid-v3N2FzyumM .mbr-section-subtitle {
  color: #d4d4d8;
  text-align: center;
}
.cid-v3N2FAlgFI {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #030712;
}
.cid-v3N2FAlgFI .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: 10px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
  padding: 30px;
  transition: all 0.3s;
  margin: 20px auto;
}
.cid-v3N2FAlgFI .discord-banner:hover {
  transform: translateY(-2px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.cid-v3N2FAlgFI .banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cid-v3N2FAlgFI .mbr-iconfont {
  color: #3f7df0;
  font-size: 22px;
}
.cid-v3N2FAlgFI .banner-icon {
  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: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
}
.cid-v3N2FAlgFI .banner-text {
  flex: 1;
  color: #fff;
}
.cid-v3N2FAlgFI .banner-text .mbr-section-title {
  margin: 0;
  font-weight: 600;
}
.cid-v3N2FAlgFI .banner-text .mbr-section-subtitle {
  margin: 5px 0 0;
  color: #bbbbbb;
}
.cid-v3N2FAlgFI .banner-btn .btn-support {
  background: #3f7df0;
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  padding: 12px 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s ease;
}
.cid-v3N2FAlgFI .banner-btn .btn-support:hover {
  transform: translateY(-3px);
}
.cid-v3N2FAlgFI P {
  color: #d1d5dc;
  text-align: left;
}
.cid-v3N2FAlgFI .mbr-section-subtitle {
  color: #d1d5dc;
}
@media (max-width: 768px) {
  .cid-v3N2FAlgFI .banner-content {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .cid-v3N2FAlgFI .banner-btn {
    width: 100%;
    margin-top: 10px;
    display: flex;
    justify-content: center;
  }
  .cid-v3N2FAlgFI .banner-btn .btn-support {
    width: auto;
    justify-content: center;
  }
}
.cid-v3N2FAlgFI H4 {
  color: #ffffff;
}
.cid-v3N2FAPONr {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #030712;
}
.cid-v3N2FAPONr .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #3f7df0;
  margin-bottom: 1rem;
}
.cid-v3N2FAPONr .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-v3N2FAPONr .card-wrapper {
  transition: all 0.3s ease;
  padding: 2rem 2rem;
  display: flex;
  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);
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}
.cid-v3N2FAPONr .card-wrapper:hover {
  transform: translateY(-2px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.cid-v3N2FAPONr .card-title,
.cid-v3N2FAPONr .card-box {
  color: #ffffff;
}
.cid-v3N2FAPONr .main-title,
.cid-v3N2FAPONr .title-col {
  text-align: center;
  color: #ffffff;
}
.cid-v3N2FAPONr .card-text {
  color: #ffffff;
}
.cid-v3N2FAPONr .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3N2FAPONr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3N2FAPONr .mbr-text,
.cid-v3N2FAPONr .mbr-section-btn {
  color: #d1d5dc;
}
.cid-v3N2FBxZ3R {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #030712;
}
.cid-v3N2FBxZ3R .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: "Moririse2" !important;
  color: #3f7df0;
  margin-left: 1rem;
}
.cid-v3N2FBxZ3R .panel-group,
.cid-v3N2FBxZ3R .card-header {
  border: none;
}
.cid-v3N2FBxZ3R .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-v3N2FBxZ3R .card-header {
  background: transparent;
}
.cid-v3N2FBxZ3R .panel-title-edit {
  color: #ffffff;
  text-align: left;
}
.cid-v3N2FBxZ3R .card {
  transition: all 0.3s 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);
  margin-bottom: 0;
  padding: 1rem 1rem;
}
.cid-v3N2FBxZ3R .card:hover {
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.cid-v3N2FBxZ3R .panel-body {
  padding: 1rem 1rem;
}
.cid-v3N2FBxZ3R .panel-text {
  color: #d1d5dc;
  margin: 0;
}
.cid-v3N2FBxZ3R H3 {
  color: #ffffff;
}
.cid-v3N2FBxZ3R H4 {
  color: #ffffff;
}
.cid-v3N2FBxZ3R .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3N2FBxZ3R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3N2FChkFw {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #030712;
}
.cid-v3N2FChkFw .mbr-section-subtitle {
  letter-spacing: 1px;
  margin-bottom: 1rem;
  color: #b4d8a4;
}
.cid-v3N2FChkFw .first-column .mbr-text {
  margin: 0;
}
.cid-v3N2FChkFw .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;
  color: white;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .cid-v3N2FChkFw .row {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
}
.cid-v3N2FChkFw .form-group {
  max-width: 55%;
}
.cid-v3N2FChkFw .form-group,
.cid-v3N2FChkFw .mbr-section-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-v3N2FChkFw .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-v3N2FChkFw .form-control::-webkit-input-placeholder {
  color: #bbbbbb;
}
.cid-v3N2FChkFw .form-control::-moz-placeholder {
  color: #bbbbbb;
}
.cid-v3N2FChkFw .form-control:-moz-placeholder {
  color: #bbbbbb;
}
.cid-v3N2FChkFw .form-control:-ms-input-placeholder {
  color: #bbbbbb;
}
.cid-v3N2FChkFw .form-control:hover,
.cid-v3N2FChkFw .form-control:focus {
  border: none !important;
}
.cid-v3N2FChkFw .col + .mbr-section-btn .btn,
.cid-v3N2FChkFw .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-v3N2FChkFw .dragArea > *:nth-last-child(2).col,
.cid-v3N2FChkFw .dragArea > *:nth-last-child(2).col-auto,
.cid-v3N2FChkFw .col + .mbr-section-btn,
.cid-v3N2FChkFw .col-auto + .mbr-section-btn {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-v3N2FChkFw .mbr-form .row {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v3N2FChkFw .mbr-section-title {
  color: #e6e6e6;
}
.cid-v3N2FChkFw .mbr-section-subtitle,
.cid-v3N2FChkFw .icons-wrapper {
  color: #d4d4d8;
}
.cid-v3N2FChkFw P {
  color: #ffffff;
}
.cid-v3N2FChkFw .mbr-section-title,
.cid-v3N2FChkFw .icons-wrapper {
  color: #ffffff;
}
.cid-v3N2FChkFw .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;
}
#custom-html-2s #progressBar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: #3f7df0;
  width: 0%;
  z-index: 9999;
}
