body {
  font-family: 'Rubik', sans-serif;
}
.display-1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 3rem;
}
.display-2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Rubik', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Rubik', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.375rem;
}
/* ---- 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: 1.92rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.68rem;
    font-size: calc( 1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* 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: #30b7f0 !important;
}
.bg-success {
  background-color: #40b0bf !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: #30b7f0 !important;
  border-color: #30b7f0 !important;
  color: #ffffff !important;
  position: relative;
  /* To ensure positioning of pseudo-elements */
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #30b7f0 !important;
  border-color: #30b7f0 !important;
  animation: shake 0.3s ease-in-out;
  /* Apply shake animation on hover */
}
@keyframes shake {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-3px);
  }
  50% {
    transform: translateX(3px);
  }
  75% {
    transform: translateX(-3px);
  }
  100% {
    transform: translateX(0);
  }
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #0e88bc !important;
  border-color: #0e88bc !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #000000 !important;
  position: relative;
  /* To ensure positioning of pseudo-elements */
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #000000 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  animation: shake 0.3s ease-in-out;
  /* Apply shake animation on hover */
}
@keyframes shake {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-3px);
  }
  50% {
    transform: translateX(3px);
  }
  75% {
    transform: translateX(-3px);
  }
  100% {
    transform: translateX(0);
  }
}
.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;
  position: relative;
  /* To ensure positioning of pseudo-elements */
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #b9abe5 !important;
  border-color: #b9abe5 !important;
  animation: shake 0.3s ease-in-out;
  /* Apply shake animation on hover */
}
@keyframes shake {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-3px);
  }
  50% {
    transform: translateX(3px);
  }
  75% {
    transform: translateX(-3px);
  }
  100% {
    transform: translateX(0);
  }
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #8269d1 !important;
  border-color: #8269d1 !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  position: relative;
  /* To ensure positioning of pseudo-elements */
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  animation: shake 0.3s ease-in-out;
  /* Apply shake animation on hover */
}
@keyframes shake {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-3px);
  }
  50% {
    transform: translateX(3px);
  }
  75% {
    transform: translateX(-3px);
  }
  100% {
    transform: translateX(0);
  }
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #ffffff !important;
  position: relative;
  /* To ensure positioning of pseudo-elements */
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  animation: shake 0.3s ease-in-out;
  /* Apply shake animation on hover */
}
@keyframes shake {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-3px);
  }
  50% {
    transform: translateX(3px);
  }
  75% {
    transform: translateX(-3px);
  }
  100% {
    transform: translateX(0);
  }
}
.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;
  position: relative;
  /* To ensure positioning of pseudo-elements */
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #212428 !important;
  border-color: #212428 !important;
  animation: shake 0.3s ease-in-out;
  /* Apply shake animation on hover */
}
@keyframes shake {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-3px);
  }
  50% {
    transform: translateX(3px);
  }
  75% {
    transform: translateX(-3px);
  }
  100% {
    transform: translateX(0);
  }
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-white {
  color: #30b7f0 !important;
  background-color: white;
}
.btn-white,
.btn-white:active {
  background-color: white !important;
  border-color: white !important;
  color: #000000 !important;
  position: relative;
  /* To ensure positioning of pseudo-elements */
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #000000 !important;
  background-color: white !important;
  border-color: white !important;
  animation: shake 0.3s ease-in-out;
  /* Apply shake animation on hover */
}
@keyframes shake {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-3px);
  }
  50% {
    transform: translateX(3px);
  }
  75% {
    transform: translateX(-3px);
  }
  100% {
    transform: translateX(0);
  }
}
.btn-white.disabled,
.btn-white:disabled {
  color: #000000 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-white:hover,
.btn-white:active {
  color: #30b7f0 !important;
  box-shadow: #30b7f0 2px 2px 20px 0px;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  position: relative;
  /* To ensure positioning of pseudo-elements */
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
  animation: shake 0.3s ease-in-out;
  /* Apply shake animation on hover */
}
@keyframes shake {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-3px);
  }
  50% {
    transform: translateX(3px);
  }
  75% {
    transform: translateX(-3px);
  }
  100% {
    transform: translateX(0);
  }
}
.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: #30b7f0;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #0e88bc !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: #30b7f0 !important;
  border-color: #30b7f0 !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: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !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: #40b0bf !important;
  border-color: #40b0bf !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: #30b7f0 !important;
}
.text-secondary {
  color: #ffffff !important;
}
.text-success {
  color: #40b0bf !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: #0d7ead !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: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #785dcd !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #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: #30b7f0;
}
.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: #30b7f0;
  border-color: #30b7f0;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #30b7f0;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #eef9fe;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #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: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #30b7f0 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Rubik', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #30b7f0;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #30b7f0;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #30b7f0;
}
.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: #30b7f0;
  border-bottom-color: #30b7f0;
}
.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: #000000 !important;
  background-color: #30b7f0 !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='%2330b7f0' %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-uJ9FbipEIh {
  z-index: 1000;
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uJ9FbipEIh {
    flex-wrap: wrap;
  }
  .cid-uJ9FbipEIh .navbar > .container {
    flex-wrap: nowrap;
  }
}
@media (max-width: 992px) {
  .cid-uJ9FbipEIh .opened .container {
    flex-wrap: wrap;
  }
}
.cid-uJ9FbipEIh .opened .container .navbar-collapse {
  width: 100%;
}
.cid-uJ9FbipEIh .btn {
  padding: 0.3rem 2rem;
}
.cid-uJ9FbipEIh .nav-link {
  position: relative;
}
.cid-uJ9FbipEIh .nav-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  transition: all 0.3s;
  background: #30b7f0;
}
.cid-uJ9FbipEIh .nav-link:hover:before {
  width: 100%;
}
.cid-uJ9FbipEIh nav.navbar {
  position: fixed;
}
.cid-uJ9FbipEIh .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-uJ9FbipEIh .dropdown-menu {
  padding: 0;
  border-radius: 0px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uJ9FbipEIh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uJ9FbipEIh .dropdown-item:hover,
.cid-uJ9FbipEIh .dropdown-item:focus {
  background: #30b7f0 !important;
  color: white !important;
}
.cid-uJ9FbipEIh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uJ9FbipEIh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uJ9FbipEIh .nav-dropdown .link {
  padding: 0 !important;
  margin: 0.667em 1em !important;
}
.cid-uJ9FbipEIh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uJ9FbipEIh .container {
  display: flex;
  margin: auto;
}
.cid-uJ9FbipEIh .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uJ9FbipEIh .dropdown-menu,
.cid-uJ9FbipEIh .navbar.opened {
  background: #204362 !important;
}
.cid-uJ9FbipEIh .nav-item:focus,
.cid-uJ9FbipEIh .nav-link:focus {
  outline: none;
}
.cid-uJ9FbipEIh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uJ9FbipEIh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uJ9FbipEIh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uJ9FbipEIh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uJ9FbipEIh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uJ9FbipEIh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uJ9FbipEIh .navbar-short {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #204362 !important;
  transition: all 0.3s;
}
.cid-uJ9FbipEIh .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(32, 67, 98, 0);
}
.cid-uJ9FbipEIh .navbar.opened {
  transition: all 0.3s;
}
.cid-uJ9FbipEIh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uJ9FbipEIh .navbar .navbar-logo img {
  width: auto;
}
.cid-uJ9FbipEIh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  flex-basis: auto!important;
}
.cid-uJ9FbipEIh .navbar.collapsed {
  justify-content: center;
}
.cid-uJ9FbipEIh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uJ9FbipEIh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uJ9FbipEIh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uJ9FbipEIh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uJ9FbipEIh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uJ9FbipEIh .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-uJ9FbipEIh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uJ9FbipEIh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uJ9FbipEIh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uJ9FbipEIh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uJ9FbipEIh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uJ9FbipEIh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uJ9FbipEIh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uJ9FbipEIh .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-uJ9FbipEIh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uJ9FbipEIh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uJ9FbipEIh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uJ9FbipEIh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uJ9FbipEIh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uJ9FbipEIh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uJ9FbipEIh .navbar.navbar-short {
  min-height: 60px;
}
.cid-uJ9FbipEIh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uJ9FbipEIh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uJ9FbipEIh .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-uJ9FbipEIh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uJ9FbipEIh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uJ9FbipEIh .dropdown-item.active,
.cid-uJ9FbipEIh .dropdown-item:active {
  background-color: transparent;
}
.cid-uJ9FbipEIh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uJ9FbipEIh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uJ9FbipEIh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uJ9FbipEIh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #204362;
}
.cid-uJ9FbipEIh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uJ9FbipEIh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uJ9FbipEIh ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uJ9FbipEIh .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uJ9FbipEIh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uJ9FbipEIh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uJ9FbipEIh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uJ9FbipEIh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJ9FbipEIh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJ9FbipEIh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uJ9FbipEIh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJ9FbipEIh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uJ9FbipEIh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uJ9FbipEIh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJ9FbipEIh .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uJ9FbipEIh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uJ9FbipEIh .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-uJ9FbipEIh .navbar {
    height: 70px;
  }
  .cid-uJ9FbipEIh .navbar.opened {
    height: auto;
  }
  .cid-uJ9FbipEIh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uJ9Fc75BDL {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: transparent;
}
.cid-uJ9Fc75BDL .mbr-section-title {
  color: #ffffff;
}
.cid-uJ9Fc75BDL img {
  animation: hover-up-down 2s ease-in-out infinite;
}
@keyframes hover-up-down {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
.cid-uJ9Fc75BDL #particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}
.cid-uJ9Fc75BDL .btn-custom2 {
  background: linear-gradient(135deg, #30b7f0, #1e88e5);
  background-size: 200% 200%;
  border-radius: 10px;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: background-position 0.4s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.cid-uJ9Fc75BDL .btn-custom2:hover {
  background-position: right center;
}
.cid-uJ9Fc75BDL .mbr-text-custom {
  display: inline-block;
  max-width: 400px;
  text-align: left;
  background: rgba(48, 183, 240, 0.2);
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border-left: 4px solid #30b7f0;
  border-radius: 6px;
  margin: 1.5rem auto 0;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  .cid-uJ9Fc75BDL .mbr-section-btn {
    justify-content: center !important;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .cid-uJ9Fc75BDL .mbr-text,
  .cid-uJ9Fc75BDL .mbr-section-title,
  .cid-uJ9Fc75BDL .mbr-section-subtitle,
  .cid-uJ9Fc75BDL .mbr-text-custom {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
  }
  .cid-uJ9Fc75BDL .mbr-section-btn a {
    text-align: center;
  }
}
.cid-uJ9Fc75BDL .mbr-text,
.cid-uJ9Fc75BDL .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-uJ9Fc75BDL .mbr-section-subtitle {
  position: relative;
  color: #ffffff;
  background: rgba(0, 119, 182, 0.1);
  padding: 8px 16px;
  display: inline-block;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 20px;
  font-size: 0.75rem;
  border: 2px solid #00e5ff;
  box-shadow: none;
}
.cid-uJ9Fc75BDL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ9Fc75BDL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
#features .divider-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3rem 0;
  padding-top: 25px;
  padding-bottom: 25px;
}
#features .divider {
  width: 50%;
  height: 5px;
  /* Make it thicker for impact */
  background: rgba(48, 183, 240, 0.7);
  /* Neon blue */
  box-shadow: 0 0 10px #30b7f0, 0 0 20px rgba(48, 183, 240, 0.5);
  position: relative;
  animation: pulse 2s infinite ease-in-out;
}
@keyframes pulse {
  0% {
    transform: scaleX(1);
    box-shadow: 0 0 10px rgba(48, 183, 240, 0.6), 0 0 20px rgba(48, 183, 240, 0.3);
  }
  50% {
    transform: scaleX(1.1);
    box-shadow: 0 0 20px #30b7f0, 0 0 30px rgba(48, 183, 240, 0.6);
  }
  100% {
    transform: scaleX(1);
    box-shadow: 0 0 10px rgba(48, 183, 240, 0.6), 0 0 20px rgba(48, 183, 240, 0.3);
  }
}
.cid-uJ9LEGPF9r {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: transparent;
}
.cid-uJ9LEGPF9r .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.5rem;
  color: #ffffff;
  background-color: #30b7f0;
  border-radius: 50%;
  margin-bottom: 0.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.cid-uJ9LEGPF9r .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-uJ9LEGPF9r .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-uJ9LEGPF9r .card-wrapper {
  position: relative;
  color: #ffffff;
  background: rgba(48, 183, 240, 0.2);
  padding: 0.75rem 1rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 1.5rem auto 0;
  max-width: 400px;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: all 0.25s ease-in-out;
  z-index: 1;
  overflow: hidden;
}
.cid-uJ9LEGPF9r .card-wrapper:hover {
  transform: translate(0px, -3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}
.cid-uJ9LEGPF9r .card-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  border-radius: 6px;
  padding: 2px;
  box-sizing: border-box;
  filter: none;
  opacity: 1;
  z-index: -1;
}
.cid-uJ9LEGPF9r .card-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, #30b7f0 50%, transparent 100%);
  animation: shimmer-border 2s infinite;
  z-index: 2;
}
@keyframes shimmer-border {
  0% {
    top: -50%;
    opacity: 0;
  }
  50% {
    top: 25%;
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}
.cid-uJ9LEGPF9r .card-title,
.cid-uJ9LEGPF9r .card-box {
  color: #ffffff;
  text-align: center;
}
.cid-uJ9LEGPF9r .main-title,
.cid-uJ9LEGPF9r .title-col {
  text-align: center;
  color: #ffffff;
}
.cid-uJ9LEGPF9r .card-text {
  color: #ffffff;
}
.cid-uJ9LEGPF9r .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ9LEGPF9r .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJknVPSfQf {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: transparent;
}
.cid-uJknVPSfQf .discord-banner {
  max-width: 1290px;
  width: 100%;
  background: rgba(48, 183, 240, 0.2);
  color: #ffffff;
  padding: 40px 20px;
  border-radius: 6px;
  border-left: 4px solid #30b7f0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  margin-bottom: 30px;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 600px) {
  .cid-uJknVPSfQf .discord-banner {
    width: 95%;
  }
}
.cid-uJknVPSfQf .discord-banner:hover {
  transform: translate(0px, -3px);
  border-left: 4px solid #30b7f0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}
.cid-uJknVPSfQf .discord-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  border-radius: 6px;
  padding: 2px;
  box-sizing: border-box;
  filter: none;
  opacity: 1;
  z-index: -1;
}
.cid-uJknVPSfQf .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uJknVPSfQf .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uJknVPSfQf .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uJknVPSfQf .btn-custom2 {
  background: linear-gradient(135deg, #30b7f0, #1e88e5);
  background-size: 200% 200%;
  border-radius: 10px;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: background-position 0.4s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.cid-uJknVPSfQf .btn-custom2:hover {
  background-position: right center;
}
.cid-uJkyD1iyii {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: transparent;
}
.cid-uJkyD1iyii .row {
  flex-direction: row-reverse;
}
.cid-uJkyD1iyii .mbr-section-title {
  color: #ffffff;
}
.cid-uJkyD1iyii img {
  animation: hover-up-down 2s ease-in-out infinite;
}
@keyframes hover-up-down {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
.cid-uJkyD1iyii .mbr-text-custom {
  display: inline-block;
  max-width: 600px;
  text-align: left;
  background: rgba(48, 183, 240, 0.2);
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border-left: 4px solid #30b7f0;
  border-radius: 6px;
  margin: 1.5rem auto 0;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.cid-uJkyD1iyii .mbr-text,
.cid-uJkyD1iyii .mbr-section-btn {
  color: #ffffff;
}
.cid-uJkyD1iyii .mbr-section-subtitle {
  color: #8364e2;
}
@media (min-width: 992px) {
  .cid-uJkyD1iyii .image-wrapper {
    padding-right: 4rem;
  }
}
.cid-uJkyD1iyii .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJkyD1iyii .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJkLbz5oj8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: transparent;
}
.cid-uJkLbz5oj8 .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uJkLbz5oj8 .team-card:hover {
  transform: translateY(-10px);
}
.cid-uJkLbz5oj8 .card-wrap {
  background: rgba(48, 183, 240, 0.2);
  overflow: hidden;
  transition: all 0.25s ease-in-out;
  padding: 0.75rem 1rem;
  border-left: 4px solid #30b7f0;
  border-radius: 6px;
  margin: 1.5rem auto 0;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
@media (max-width: 991px) {
  .cid-uJkLbz5oj8 .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uJkLbz5oj8 .card-wrap .image-wrap img {
  width: 100%;
  height: 256px;
  object-fit: contain;
}
@media (min-width: 768px) {
  .cid-uJkLbz5oj8 .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uJkLbz5oj8 .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-uJkLbz5oj8 .card-wrap:hover {
  transform: translate(0px, -3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}
.cid-uJkLbz5oj8 .card-text {
  padding-bottom: 1rem;
}
.cid-uJkLbz5oj8 .social-row {
  text-align: center;
}
.cid-uJkLbz5oj8 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 12px;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.8rem;
  background: #ef7018;
  transition: all 0.3s;
}
.cid-uJkLbz5oj8 .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #ffffff;
  font-size: 1.2rem;
}
.cid-uJkLbz5oj8 .social-row .soc-item:hover {
  background: #ffffff;
}
.cid-uJkLbz5oj8 .social-row .soc-item:hover .mbr-iconfont {
  color: #ef7018;
}
.cid-uJkLbz5oj8 .mbr-role,
.cid-uJkLbz5oj8 .social-row {
  color: #ffffff;
}
.cid-uJkLbz5oj8 .card-title,
.cid-uJkLbz5oj8 .social-row {
  color: #e43f3f;
}
.cid-uJkLbz5oj8 .card-text,
.cid-uJkLbz5oj8 .mbr-section-btn,
.cid-uJkLbz5oj8 .social-row {
  color: #bbbbbb;
}
.cid-uJkLbz5oj8 .mbr-section-title {
  color: #ffffff;
}
.cid-uJkLbz5oj8 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uJkLbz5oj8 .main-title {
  color: #ffffff;
}
.cid-uJkLbz5oj8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJkLbz5oj8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
#premium .divider-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3rem 0;
  padding-top: 25px;
  padding-bottom: 25px;
}
#premium .divider {
  width: 50%;
  height: 5px;
  /* Make it thicker for impact */
  background: rgba(48, 183, 240, 0.7);
  /* Neon blue */
  box-shadow: 0 0 10px #30b7f0, 0 0 20px rgba(48, 183, 240, 0.5);
  position: relative;
  animation: pulse 2s infinite ease-in-out;
}
@keyframes pulse {
  0% {
    transform: scaleX(1);
    box-shadow: 0 0 10px rgba(48, 183, 240, 0.6), 0 0 20px rgba(48, 183, 240, 0.3);
  }
  50% {
    transform: scaleX(1.1);
    box-shadow: 0 0 20px #30b7f0, 0 0 30px rgba(48, 183, 240, 0.6);
  }
  100% {
    transform: scaleX(1);
    box-shadow: 0 0 10px rgba(48, 183, 240, 0.6), 0 0 20px rgba(48, 183, 240, 0.3);
  }
}
.cid-uJkZOfHKO2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: transparent;
}
.cid-uJkZOfHKO2 .item-img {
  position: relative;
}
.cid-uJkZOfHKO2 .btn-custom2 {
  background: linear-gradient(135deg, #30b7f0, #1e88e5);
  background-size: 200% 200%;
  border-radius: 10px;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: background-position 0.4s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.cid-uJkZOfHKO2 .btn-custom2:hover {
  background-position: right center;
}
.cid-uJkZOfHKO2 .smaller-text {
  font-size: 0.6em;
  color: #30b7f0;
}
@media (max-width: 768px) {
  .cid-uJkZOfHKO2 .badge-grey {
    padding: 8px 16px;
    font-size: 14px;
    top: -40px;
    max-width: 80%;
    white-space: nowrap;
  }
}
.cid-uJkZOfHKO2 #searchBar {
  width: 100%;
  margin: 0 auto 20px;
  padding: 10px 20px;
  font-size: 16px;
  color: #888;
  background: #0b0e14;
  border: 2px solid #00e5ff;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  outline: none;
  transition: all 0.3s ease;
}
.cid-uJkZOfHKO2 #searchBar:hover,
.cid-uJkZOfHKO2 #searchBar:focus {
  border-color: #00e5ff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.cid-uJkZOfHKO2 #searchBar::placeholder {
  color: #888;
  opacity: 1;
}
.cid-uJkZOfHKO2 .text-center.mb-4 {
  margin-bottom: 30px;
}
.cid-uJkZOfHKO2 .tag {
  position: absolute;
  left: 1rem;
  top: 0.5rem;
}
.cid-uJkZOfHKO2 .btn-tag {
  padding: 0.3rem 1rem;
  padding-top: 6px;
  border-radius: 6px !important;
}
.cid-uJkZOfHKO2 .btn-tag:hover,
.cid-uJkZOfHKO2 .btn-tag:focus {
  box-shadow: none;
}
.cid-uJkZOfHKO2 img,
.cid-uJkZOfHKO2 .item-img {
  width: 100%;
  margin-bottom: 1rem;
}
.cid-uJkZOfHKO2 .item:focus,
.cid-uJkZOfHKO2 span:focus {
  outline: none;
}
.cid-uJkZOfHKO2 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uJkZOfHKO2 .item-wrapper {
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  background: rgba(48, 183, 240, 0.2);
  transition: all 0.25s ease-in-out;
  padding: 0.75rem 1rem;
  border-left: 4px solid #30b7f0;
  border-radius: 6px;
  position: relative;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.cid-uJkZOfHKO2 .item-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.cid-uJkZOfHKO2 .item-wrapper > * {
  position: relative;
  z-index: 2;
}
.cid-uJkZOfHKO2 .item-wrapper:hover {
  transform: translate(0px, -3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}
.cid-uJkZOfHKO2 .mbr-section-btn {
  margin-top: auto !important;
  padding: 0 1rem;
  text-align: center;
}
.cid-uJkZOfHKO2 .mbr-section-title {
  color: #ffffff;
  padding-top: 10px;
  letter-spacing: 0.05em;
}
.cid-uJkZOfHKO2 .mbr-text {
  color: #ffffff;
  padding: 0 1rem;
  text-align: left;
}
.cid-uJkZOfHKO2 .item-title {
  color: #ffffff;
  padding: 0 1rem;
  text-align: left;
}
.cid-uJkZOfHKO2 .item-subtitle {
  color: #5518fa;
  text-align: center;
}
.cid-uJkZOfHKO2 .custom-gradient {
  background-image: linear-gradient(90deg, #7311d0, #a74dfd);
  text-shadow: 0 0 18px #7311d0;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}
.cid-uJlcVKyKaC {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: transparent;
}
.cid-uJlcVKyKaC .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: "Moririse2" !important;
  color: #30b7f0;
  margin-left: 1rem;
}
.cid-uJlcVKyKaC .panel-group,
.cid-uJlcVKyKaC .card-header {
  border: none;
}
.cid-uJlcVKyKaC .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uJlcVKyKaC .card-header {
  background: transparent;
}
.cid-uJlcVKyKaC .panel-title-edit {
  color: #ffffff;
  text-align: left;
}
.cid-uJlcVKyKaC .card {
  background: rgba(48, 183, 240, 0.2);
  transition: all 0.25s ease-in-out;
  padding: 0.75rem 1rem;
  border-left: 4px solid #30b7f0;
  border-radius: 6px;
  margin-bottom: 0;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.cid-uJlcVKyKaC .panel-body {
  padding: 1rem 1rem;
}
.cid-uJlcVKyKaC .panel-text {
  color: #ffffff;
  margin: 0;
}
.cid-uJlcVKyKaC H3 {
  color: #ffffff;
}
.cid-uJlcVKyKaC H4 {
  color: #ffffff;
}
.cid-uJlcVKyKaC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJlcVKyKaC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJlcVKyKaC .custom-gradient {
  background-image: linear-gradient(90deg, #008cff, #008cff);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}
#custom-html-h .divider-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3rem 0;
  padding-top: 25px;
  padding-bottom: 25px;
}
#custom-html-h .divider {
  width: 50%;
  height: 5px;
  /* Make it thicker for impact */
  background: rgba(48, 183, 240, 0.7);
  /* Neon blue */
  box-shadow: 0 0 10px #30b7f0, 0 0 20px rgba(48, 183, 240, 0.5);
  position: relative;
  animation: pulse 2s infinite ease-in-out;
}
@keyframes pulse {
  0% {
    transform: scaleX(1);
    box-shadow: 0 0 10px rgba(48, 183, 240, 0.6), 0 0 20px rgba(48, 183, 240, 0.3);
  }
  50% {
    transform: scaleX(1.1);
    box-shadow: 0 0 20px #30b7f0, 0 0 30px rgba(48, 183, 240, 0.6);
  }
  100% {
    transform: scaleX(1);
    box-shadow: 0 0 10px rgba(48, 183, 240, 0.6), 0 0 20px rgba(48, 183, 240, 0.3);
  }
}
.cid-uJld0QUszB {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: transparent;
}
.cid-uJld0QUszB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJld0QUszB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJld0QUszB .feature-item {
  display: inline-block;
  background: rgba(48, 183, 240, 0.2);
  border-radius: 6px;
  border-left: 4px solid #30b7f0;
  padding: 10px 20px;
  margin-bottom: 5px;
  margin-right: 10px;
  font-size: 16px;
  line-height: 1.5;
  vertical-align: middle;
  white-space: nowrap;
  color: #ffffff;
}
.cid-uJld0QUszB .feature-item:hover {
  cursor: pointer;
}
.cid-uJld0QUszB .item-wrapper {
  background: rgba(48, 183, 240, 0.2);
  transition: all 0.25s ease-in-out;
  padding: 0.75rem 1rem;
  border-left: 4px solid #30b7f0;
  border-radius: 6px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.cid-uJld0QUszB .item-wrapper:hover {
  transform: translate(0px, -3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}
.cid-uJld0QUszB img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50% !important;
  margin: auto;
  margin-bottom: 0.5rem;
}
.cid-uJld0QUszB .mbr-iconfont {
  margin: auto;
  display: inline-flex;
  font-size: 1.5rem;
  color: #30b7f0;
  width: 25px;
  justify-content: center;
  align-items: center;
}
.cid-uJld0QUszB .card-title,
.cid-uJld0QUszB .iconfont-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uJld0QUszB .card-text {
  color: #ffffff;
  text-align: center;
}
.cid-uJld0QUszB .mbr-section-title {
  color: #ffffff;
}
.cid-uJld0QUszB .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uJld0QUszB .content-head {
  max-width: 800px;
}
.cid-uJld0QUszB .card-subtitle {
  color: #30b7f0;
  text-align: center;
}
.cid-uJld0QUszB .review-scroll-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.cid-uJld0QUszB .review-scroll-track {
  display: flex;
  width: max-content;
  animation: scrollLeft 30s linear infinite;
  gap: 0.5rem;
}
@keyframes scrollLeft {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
.cid-uJld0QUszB .review-scroll-wrapper:hover .review-scroll-track {
  animation-play-state: paused;
}
.cid-uJld0QUszB .review-card {
  flex-shrink: 0;
  width: 350px;
  max-width: 90vw;
  padding: 1rem;
  color: transparent;
  border-radius: 20px;
}
.cid-uJld0QUszB .review-scroll-wrapper2 {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.cid-uJld0QUszB .review-scroll-track2 {
  display: flex;
  width: max-content;
  animation: scrollRight 30s linear infinite;
  gap: 0.5rem;
}
.cid-uJld0QUszB .review-scroll-wrapper2:hover .review-scroll-track2 {
  animation-play-state: paused;
}
@keyframes scrollRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}
.cid-uJlBCdYoyT {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: transparent;
}
.cid-uJlBCdYoyT .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uJlBCdYoyT .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uJlBCdYoyT .discord-banner {
  max-width: 1290px;
  width: 100%;
  background: rgba(48, 183, 240, 0.2);
  color: #ffffff;
  padding: 40px 20px;
  border-radius: 6px;
  border-left: 4px solid #30b7f0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  margin-bottom: 30px;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 600px) {
  .cid-uJlBCdYoyT .discord-banner {
    width: 95%;
  }
}
.cid-uJlBCdYoyT .discord-banner:hover {
  transform: translate(0px, -3px);
  border-left: 4px solid #30b7f0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}
.cid-uJlBCdYoyT .discord-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  border-radius: 6px;
  padding: 2px;
  box-sizing: border-box;
  filter: none;
  opacity: 1;
  z-index: -1;
}
.cid-uJlBCdYoyT .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uJlBCdYoyT .btn-custom2 {
  background: linear-gradient(135deg, #30b7f0, #1e88e5);
  background-size: 200% 200%;
  border-radius: 10px;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: background-position 0.4s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.cid-uJlBCdYoyT .btn-custom2:hover {
  background-position: right center;
}
.cid-uJld2yUyAl {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #204362;
}
.cid-uJld2yUyAl .mbr-section-subtitle {
  letter-spacing: 1px;
  margin-bottom: 1rem;
  color: #b4d8a4;
}
.cid-uJld2yUyAl .first-column .mbr-text {
  margin: 0;
}
.cid-uJld2yUyAl .form-group {
  max-width: 55%;
}
.cid-uJld2yUyAl .form-group,
.cid-uJld2yUyAl .mbr-section-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-uJld2yUyAl .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-uJld2yUyAl .form-control::-webkit-input-placeholder {
  color: #bbbbbb;
}
.cid-uJld2yUyAl .form-control::-moz-placeholder {
  color: #bbbbbb;
}
.cid-uJld2yUyAl .form-control:-moz-placeholder {
  color: #bbbbbb;
}
.cid-uJld2yUyAl .form-control:-ms-input-placeholder {
  color: #bbbbbb;
}
.cid-uJld2yUyAl .form-control:hover,
.cid-uJld2yUyAl .form-control:focus {
  border: none !important;
}
.cid-uJld2yUyAl .col + .mbr-section-btn .btn,
.cid-uJld2yUyAl .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-uJld2yUyAl .dragArea > *:nth-last-child(2).col,
.cid-uJld2yUyAl .dragArea > *:nth-last-child(2).col-auto,
.cid-uJld2yUyAl .col + .mbr-section-btn,
.cid-uJld2yUyAl .col-auto + .mbr-section-btn {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uJld2yUyAl .mbr-form .row {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uJld2yUyAl .mbr-section-title {
  color: #e6e6e6;
}
.cid-uJld2yUyAl .mbr-section-subtitle,
.cid-uJld2yUyAl .icons-wrapper {
  color: #ffffff;
}
.cid-uJld2yUyAl P {
  color: #ffffff;
}
.cid-uJld2yUyAl .mbr-section-title,
.cid-uJld2yUyAl .icons-wrapper {
  color: #ffffff;
}
.cid-uJld2yUyAl .custom-gradient {
  background-image: linear-gradient(90deg, #7311d0, #a74dfd);
  text-shadow: 0 0 18px #7311d0;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}
.cid-uJriUnyLX9 {
  z-index: 1000;
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uJriUnyLX9 {
    flex-wrap: wrap;
  }
  .cid-uJriUnyLX9 .navbar > .container {
    flex-wrap: nowrap;
  }
}
@media (max-width: 992px) {
  .cid-uJriUnyLX9 .opened .container {
    flex-wrap: wrap;
  }
}
.cid-uJriUnyLX9 .opened .container .navbar-collapse {
  width: 100%;
}
.cid-uJriUnyLX9 .btn {
  padding: 0.3rem 2rem;
}
.cid-uJriUnyLX9 .nav-link {
  position: relative;
}
.cid-uJriUnyLX9 .nav-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  transition: all 0.3s;
  background: #30b7f0;
}
.cid-uJriUnyLX9 .nav-link:hover:before {
  width: 100%;
}
.cid-uJriUnyLX9 nav.navbar {
  position: fixed;
}
.cid-uJriUnyLX9 .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-uJriUnyLX9 .dropdown-menu {
  padding: 0;
  border-radius: 0px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uJriUnyLX9 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uJriUnyLX9 .dropdown-item:hover,
.cid-uJriUnyLX9 .dropdown-item:focus {
  background: #30b7f0 !important;
  color: white !important;
}
.cid-uJriUnyLX9 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uJriUnyLX9 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uJriUnyLX9 .nav-dropdown .link {
  padding: 0 !important;
  margin: 0.667em 1em !important;
}
.cid-uJriUnyLX9 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uJriUnyLX9 .container {
  display: flex;
  margin: auto;
}
.cid-uJriUnyLX9 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uJriUnyLX9 .dropdown-menu,
.cid-uJriUnyLX9 .navbar.opened {
  background: #204362 !important;
}
.cid-uJriUnyLX9 .nav-item:focus,
.cid-uJriUnyLX9 .nav-link:focus {
  outline: none;
}
.cid-uJriUnyLX9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uJriUnyLX9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uJriUnyLX9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uJriUnyLX9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uJriUnyLX9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uJriUnyLX9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uJriUnyLX9 .navbar-short {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #204362 !important;
  transition: all 0.3s;
}
.cid-uJriUnyLX9 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(32, 67, 98, 0);
}
.cid-uJriUnyLX9 .navbar.opened {
  transition: all 0.3s;
}
.cid-uJriUnyLX9 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uJriUnyLX9 .navbar .navbar-logo img {
  width: auto;
}
.cid-uJriUnyLX9 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  flex-basis: auto!important;
}
.cid-uJriUnyLX9 .navbar.collapsed {
  justify-content: center;
}
.cid-uJriUnyLX9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uJriUnyLX9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uJriUnyLX9 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uJriUnyLX9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uJriUnyLX9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uJriUnyLX9 .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-uJriUnyLX9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uJriUnyLX9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uJriUnyLX9 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uJriUnyLX9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uJriUnyLX9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uJriUnyLX9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uJriUnyLX9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uJriUnyLX9 .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-uJriUnyLX9 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uJriUnyLX9 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uJriUnyLX9 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uJriUnyLX9 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uJriUnyLX9 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uJriUnyLX9 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uJriUnyLX9 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uJriUnyLX9 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uJriUnyLX9 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uJriUnyLX9 .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-uJriUnyLX9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uJriUnyLX9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uJriUnyLX9 .dropdown-item.active,
.cid-uJriUnyLX9 .dropdown-item:active {
  background-color: transparent;
}
.cid-uJriUnyLX9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uJriUnyLX9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uJriUnyLX9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uJriUnyLX9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #204362;
}
.cid-uJriUnyLX9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uJriUnyLX9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uJriUnyLX9 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uJriUnyLX9 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uJriUnyLX9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uJriUnyLX9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uJriUnyLX9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uJriUnyLX9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJriUnyLX9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJriUnyLX9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uJriUnyLX9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJriUnyLX9 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uJriUnyLX9 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uJriUnyLX9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJriUnyLX9 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uJriUnyLX9 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uJriUnyLX9 .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-uJriUnyLX9 .navbar {
    height: 70px;
  }
  .cid-uJriUnyLX9 .navbar.opened {
    height: auto;
  }
  .cid-uJriUnyLX9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uJriUoa7If {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: transparent;
}
.cid-uJriUoa7If .mbr-section-title {
  color: #ffffff;
}
.cid-uJriUoa7If img {
  animation: hover-up-down 2s ease-in-out infinite;
}
@keyframes hover-up-down {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
.cid-uJriUoa7If #particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}
.cid-uJriUoa7If .btn-custom2 {
  background: linear-gradient(135deg, #30b7f0, #1e88e5);
  background-size: 200% 200%;
  border-radius: 10px;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: background-position 0.4s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.cid-uJriUoa7If .btn-custom2:hover {
  background-position: right center;
}
.cid-uJriUoa7If .mbr-text-custom {
  display: inline-block;
  max-width: 400px;
  text-align: left;
  background: rgba(48, 183, 240, 0.2);
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border-left: 4px solid #30b7f0;
  border-radius: 6px;
  margin: 1.5rem auto 0;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  .cid-uJriUoa7If .mbr-section-btn {
    justify-content: center !important;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .cid-uJriUoa7If .mbr-text,
  .cid-uJriUoa7If .mbr-section-title,
  .cid-uJriUoa7If .mbr-section-subtitle,
  .cid-uJriUoa7If .mbr-text-custom {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
  }
  .cid-uJriUoa7If .mbr-section-btn a {
    text-align: center;
  }
}
.cid-uJriUoa7If .mbr-text,
.cid-uJriUoa7If .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-uJriUoa7If .mbr-section-subtitle {
  position: relative;
  color: #ffffff;
  background: rgba(0, 119, 182, 0.1);
  padding: 8px 16px;
  display: inline-block;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 20px;
  font-size: 0.75rem;
  border: 2px solid #00e5ff;
  box-shadow: none;
}
.cid-uJriUoa7If .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJriUoa7If .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
#custom-html-11 .divider-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3rem 0;
  padding-top: 25px;
  padding-bottom: 25px;
}
#custom-html-11 .divider {
  width: 50%;
  height: 5px;
  /* Make it thicker for impact */
  background: rgba(48, 183, 240, 0.7);
  /* Neon blue */
  box-shadow: 0 0 10px #30b7f0, 0 0 20px rgba(48, 183, 240, 0.5);
  position: relative;
  animation: pulse 2s infinite ease-in-out;
}
@keyframes pulse {
  0% {
    transform: scaleX(1);
    box-shadow: 0 0 10px rgba(48, 183, 240, 0.6), 0 0 20px rgba(48, 183, 240, 0.3);
  }
  50% {
    transform: scaleX(1.1);
    box-shadow: 0 0 20px #30b7f0, 0 0 30px rgba(48, 183, 240, 0.6);
  }
  100% {
    transform: scaleX(1);
    box-shadow: 0 0 10px rgba(48, 183, 240, 0.6), 0 0 20px rgba(48, 183, 240, 0.3);
  }
}
.cid-uJrjl8TvCV {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: transparent;
}
.cid-uJrjl8TvCV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJrjl8TvCV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJrjl8TvCV .card-wrapper {
  background: rgba(48, 183, 240, 0.2);
  border-radius: 6px;
  padding: 15px;
  border-left: 4px solid #30b7f0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  margin-bottom: 30px;
  transition: all 0.25s ease-in-out;
}
.cid-uJrjl8TvCV .card-wrapper a {
  text-decoration: underline;
  font-weight: bold;
}
@media (max-width: 767px) {
  .cid-uJrjl8TvCV .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-uJrjl8TvCV .card-wrapper:hover {
  transform: translate(0px, -3px);
  border-left: 4px solid #30b7f0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}
.cid-uJrjl8TvCV .mbr-section-title {
  color: #ffffff;
}
.cid-uJrjl8TvCV .mbr-text {
  color: #ffffff;
}
.cid-uJrjl8TvCV .custom-gradient {
  background-image: linear-gradient(90deg, #7311d0, #a74dfd);
  text-shadow: 0 0 18px #7311d0;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}
.cid-uJriUs614v {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: transparent;
}
.cid-uJriUs614v .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: "Moririse2" !important;
  color: #30b7f0;
  margin-left: 1rem;
}
.cid-uJriUs614v .panel-group,
.cid-uJriUs614v .card-header {
  border: none;
}
.cid-uJriUs614v .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uJriUs614v .card-header {
  background: transparent;
}
.cid-uJriUs614v .panel-title-edit {
  color: #ffffff;
  text-align: left;
}
.cid-uJriUs614v .card {
  background: rgba(48, 183, 240, 0.2);
  transition: all 0.25s ease-in-out;
  padding: 0.75rem 1rem;
  border-left: 4px solid #30b7f0;
  border-radius: 6px;
  margin-bottom: 0;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.cid-uJriUs614v .panel-body {
  padding: 1rem 1rem;
}
.cid-uJriUs614v .panel-text {
  color: #ffffff;
  margin: 0;
}
.cid-uJriUs614v H3 {
  color: #ffffff;
}
.cid-uJriUs614v H4 {
  color: #ffffff;
}
.cid-uJriUs614v .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJriUs614v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJriUs614v .custom-gradient {
  background-image: linear-gradient(90deg, #008cff, #008cff);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}
.cid-uJriUvrjR0 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: transparent;
}
.cid-uJriUvrjR0 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uJriUvrjR0 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uJriUvrjR0 .discord-banner {
  max-width: 1290px;
  width: 100%;
  background: rgba(48, 183, 240, 0.2);
  color: #ffffff;
  padding: 40px 20px;
  border-radius: 6px;
  border-left: 4px solid #30b7f0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  margin-bottom: 30px;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 600px) {
  .cid-uJriUvrjR0 .discord-banner {
    width: 95%;
  }
}
.cid-uJriUvrjR0 .discord-banner:hover {
  transform: translate(0px, -3px);
  border-left: 4px solid #30b7f0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}
.cid-uJriUvrjR0 .discord-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  border-radius: 6px;
  padding: 2px;
  box-sizing: border-box;
  filter: none;
  opacity: 1;
  z-index: -1;
}
.cid-uJriUvrjR0 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uJriUvrjR0 .btn-custom2 {
  background: linear-gradient(135deg, #30b7f0, #1e88e5);
  background-size: 200% 200%;
  border-radius: 10px;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: background-position 0.4s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.cid-uJriUvrjR0 .btn-custom2:hover {
  background-position: right center;
}
.cid-uJriUwdty2 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #204362;
}
.cid-uJriUwdty2 .mbr-section-subtitle {
  letter-spacing: 1px;
  margin-bottom: 1rem;
  color: #b4d8a4;
}
.cid-uJriUwdty2 .first-column .mbr-text {
  margin: 0;
}
.cid-uJriUwdty2 .form-group {
  max-width: 55%;
}
.cid-uJriUwdty2 .form-group,
.cid-uJriUwdty2 .mbr-section-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-uJriUwdty2 .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-uJriUwdty2 .form-control::-webkit-input-placeholder {
  color: #bbbbbb;
}
.cid-uJriUwdty2 .form-control::-moz-placeholder {
  color: #bbbbbb;
}
.cid-uJriUwdty2 .form-control:-moz-placeholder {
  color: #bbbbbb;
}
.cid-uJriUwdty2 .form-control:-ms-input-placeholder {
  color: #bbbbbb;
}
.cid-uJriUwdty2 .form-control:hover,
.cid-uJriUwdty2 .form-control:focus {
  border: none !important;
}
.cid-uJriUwdty2 .col + .mbr-section-btn .btn,
.cid-uJriUwdty2 .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-uJriUwdty2 .dragArea > *:nth-last-child(2).col,
.cid-uJriUwdty2 .dragArea > *:nth-last-child(2).col-auto,
.cid-uJriUwdty2 .col + .mbr-section-btn,
.cid-uJriUwdty2 .col-auto + .mbr-section-btn {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uJriUwdty2 .mbr-form .row {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uJriUwdty2 .mbr-section-title {
  color: #e6e6e6;
}
.cid-uJriUwdty2 .mbr-section-subtitle,
.cid-uJriUwdty2 .icons-wrapper {
  color: #ffffff;
}
.cid-uJriUwdty2 P {
  color: #ffffff;
}
.cid-uJriUwdty2 .mbr-section-title,
.cid-uJriUwdty2 .icons-wrapper {
  color: #ffffff;
}
.cid-uJriUwdty2 .custom-gradient {
  background-image: linear-gradient(90deg, #7311d0, #a74dfd);
  text-shadow: 0 0 18px #7311d0;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}
.cid-uJrlEJFB40 {
  z-index: 1000;
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uJrlEJFB40 {
    flex-wrap: wrap;
  }
  .cid-uJrlEJFB40 .navbar > .container {
    flex-wrap: nowrap;
  }
}
@media (max-width: 992px) {
  .cid-uJrlEJFB40 .opened .container {
    flex-wrap: wrap;
  }
}
.cid-uJrlEJFB40 .opened .container .navbar-collapse {
  width: 100%;
}
.cid-uJrlEJFB40 .btn {
  padding: 0.3rem 2rem;
}
.cid-uJrlEJFB40 .nav-link {
  position: relative;
}
.cid-uJrlEJFB40 .nav-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  transition: all 0.3s;
  background: #30b7f0;
}
.cid-uJrlEJFB40 .nav-link:hover:before {
  width: 100%;
}
.cid-uJrlEJFB40 nav.navbar {
  position: fixed;
}
.cid-uJrlEJFB40 .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-uJrlEJFB40 .dropdown-menu {
  padding: 0;
  border-radius: 0px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uJrlEJFB40 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uJrlEJFB40 .dropdown-item:hover,
.cid-uJrlEJFB40 .dropdown-item:focus {
  background: #30b7f0 !important;
  color: white !important;
}
.cid-uJrlEJFB40 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uJrlEJFB40 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uJrlEJFB40 .nav-dropdown .link {
  padding: 0 !important;
  margin: 0.667em 1em !important;
}
.cid-uJrlEJFB40 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uJrlEJFB40 .container {
  display: flex;
  margin: auto;
}
.cid-uJrlEJFB40 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uJrlEJFB40 .dropdown-menu,
.cid-uJrlEJFB40 .navbar.opened {
  background: #204362 !important;
}
.cid-uJrlEJFB40 .nav-item:focus,
.cid-uJrlEJFB40 .nav-link:focus {
  outline: none;
}
.cid-uJrlEJFB40 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uJrlEJFB40 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uJrlEJFB40 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uJrlEJFB40 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uJrlEJFB40 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uJrlEJFB40 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uJrlEJFB40 .navbar-short {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #204362 !important;
  transition: all 0.3s;
}
.cid-uJrlEJFB40 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(32, 67, 98, 0);
}
.cid-uJrlEJFB40 .navbar.opened {
  transition: all 0.3s;
}
.cid-uJrlEJFB40 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uJrlEJFB40 .navbar .navbar-logo img {
  width: auto;
}
.cid-uJrlEJFB40 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  flex-basis: auto!important;
}
.cid-uJrlEJFB40 .navbar.collapsed {
  justify-content: center;
}
.cid-uJrlEJFB40 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uJrlEJFB40 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uJrlEJFB40 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uJrlEJFB40 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uJrlEJFB40 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uJrlEJFB40 .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-uJrlEJFB40 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uJrlEJFB40 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uJrlEJFB40 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uJrlEJFB40 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uJrlEJFB40 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uJrlEJFB40 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uJrlEJFB40 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uJrlEJFB40 .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-uJrlEJFB40 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uJrlEJFB40 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uJrlEJFB40 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uJrlEJFB40 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uJrlEJFB40 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uJrlEJFB40 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uJrlEJFB40 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uJrlEJFB40 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uJrlEJFB40 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uJrlEJFB40 .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-uJrlEJFB40 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uJrlEJFB40 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uJrlEJFB40 .dropdown-item.active,
.cid-uJrlEJFB40 .dropdown-item:active {
  background-color: transparent;
}
.cid-uJrlEJFB40 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uJrlEJFB40 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uJrlEJFB40 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uJrlEJFB40 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #204362;
}
.cid-uJrlEJFB40 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uJrlEJFB40 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uJrlEJFB40 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uJrlEJFB40 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uJrlEJFB40 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uJrlEJFB40 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uJrlEJFB40 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uJrlEJFB40 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJrlEJFB40 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJrlEJFB40 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uJrlEJFB40 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJrlEJFB40 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uJrlEJFB40 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uJrlEJFB40 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJrlEJFB40 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uJrlEJFB40 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uJrlEJFB40 .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-uJrlEJFB40 .navbar {
    height: 70px;
  }
  .cid-uJrlEJFB40 .navbar.opened {
    height: auto;
  }
  .cid-uJrlEJFB40 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uJrlEKar0v {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: transparent;
}
.cid-uJrlEKar0v .mbr-section-title {
  color: #ffffff;
}
.cid-uJrlEKar0v img {
  animation: hover-up-down 2s ease-in-out infinite;
}
@keyframes hover-up-down {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
.cid-uJrlEKar0v #particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}
.cid-uJrlEKar0v .btn-custom2 {
  background: linear-gradient(135deg, #30b7f0, #1e88e5);
  background-size: 200% 200%;
  border-radius: 10px;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: background-position 0.4s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.cid-uJrlEKar0v .btn-custom2:hover {
  background-position: right center;
}
.cid-uJrlEKar0v .mbr-text-custom {
  display: inline-block;
  max-width: 400px;
  text-align: left;
  background: rgba(48, 183, 240, 0.2);
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border-left: 4px solid #30b7f0;
  border-radius: 6px;
  margin: 1.5rem auto 0;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  .cid-uJrlEKar0v .mbr-section-btn {
    justify-content: center !important;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .cid-uJrlEKar0v .mbr-text,
  .cid-uJrlEKar0v .mbr-section-title,
  .cid-uJrlEKar0v .mbr-section-subtitle,
  .cid-uJrlEKar0v .mbr-text-custom {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
  }
  .cid-uJrlEKar0v .mbr-section-btn a {
    text-align: center;
  }
}
.cid-uJrlEKar0v .mbr-text,
.cid-uJrlEKar0v .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-uJrlEKar0v .mbr-section-subtitle {
  position: relative;
  color: #ffffff;
  background: rgba(0, 119, 182, 0.1);
  padding: 8px 16px;
  display: inline-block;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 20px;
  font-size: 0.75rem;
  border: 2px solid #00e5ff;
  box-shadow: none;
}
.cid-uJrlEKar0v .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJrlEKar0v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
#custom-html-1g .divider-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3rem 0;
  padding-top: 25px;
  padding-bottom: 25px;
}
#custom-html-1g .divider {
  width: 50%;
  height: 5px;
  /* Make it thicker for impact */
  background: rgba(48, 183, 240, 0.7);
  /* Neon blue */
  box-shadow: 0 0 10px #30b7f0, 0 0 20px rgba(48, 183, 240, 0.5);
  position: relative;
  animation: pulse 2s infinite ease-in-out;
}
@keyframes pulse {
  0% {
    transform: scaleX(1);
    box-shadow: 0 0 10px rgba(48, 183, 240, 0.6), 0 0 20px rgba(48, 183, 240, 0.3);
  }
  50% {
    transform: scaleX(1.1);
    box-shadow: 0 0 20px #30b7f0, 0 0 30px rgba(48, 183, 240, 0.6);
  }
  100% {
    transform: scaleX(1);
    box-shadow: 0 0 10px rgba(48, 183, 240, 0.6), 0 0 20px rgba(48, 183, 240, 0.3);
  }
}
.cid-uJrlEKDJby {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: transparent;
}
.cid-uJrlEKDJby .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJrlEKDJby .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJrlEKDJby .card-wrapper {
  background: rgba(48, 183, 240, 0.2);
  border-radius: 6px;
  padding: 15px;
  border-left: 4px solid #30b7f0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  margin-bottom: 30px;
  transition: all 0.25s ease-in-out;
}
.cid-uJrlEKDJby .card-wrapper a {
  text-decoration: underline;
  font-weight: bold;
}
@media (max-width: 767px) {
  .cid-uJrlEKDJby .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-uJrlEKDJby .card-wrapper:hover {
  transform: translate(0px, -3px);
  border-left: 4px solid #30b7f0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}
.cid-uJrlEKDJby .mbr-section-title {
  color: #ffffff;
}
.cid-uJrlEKDJby .mbr-text {
  color: #ffffff;
}
.cid-uJrlEKDJby .custom-gradient {
  background-image: linear-gradient(90deg, #7311d0, #a74dfd);
  text-shadow: 0 0 18px #7311d0;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}
.cid-uJrlEL4Yc0 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: transparent;
}
.cid-uJrlEL4Yc0 .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: "Moririse2" !important;
  color: #30b7f0;
  margin-left: 1rem;
}
.cid-uJrlEL4Yc0 .panel-group,
.cid-uJrlEL4Yc0 .card-header {
  border: none;
}
.cid-uJrlEL4Yc0 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uJrlEL4Yc0 .card-header {
  background: transparent;
}
.cid-uJrlEL4Yc0 .panel-title-edit {
  color: #ffffff;
  text-align: left;
}
.cid-uJrlEL4Yc0 .card {
  background: rgba(48, 183, 240, 0.2);
  transition: all 0.25s ease-in-out;
  padding: 0.75rem 1rem;
  border-left: 4px solid #30b7f0;
  border-radius: 6px;
  margin-bottom: 0;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.cid-uJrlEL4Yc0 .panel-body {
  padding: 1rem 1rem;
}
.cid-uJrlEL4Yc0 .panel-text {
  color: #ffffff;
  margin: 0;
}
.cid-uJrlEL4Yc0 H3 {
  color: #ffffff;
}
.cid-uJrlEL4Yc0 H4 {
  color: #ffffff;
}
.cid-uJrlEL4Yc0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJrlEL4Yc0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJrlEL4Yc0 .custom-gradient {
  background-image: linear-gradient(90deg, #008cff, #008cff);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}
.cid-uJrlELBqk2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: transparent;
}
.cid-uJrlELBqk2 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uJrlELBqk2 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uJrlELBqk2 .discord-banner {
  max-width: 1290px;
  width: 100%;
  background: rgba(48, 183, 240, 0.2);
  color: #ffffff;
  padding: 40px 20px;
  border-radius: 6px;
  border-left: 4px solid #30b7f0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  margin-bottom: 30px;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 600px) {
  .cid-uJrlELBqk2 .discord-banner {
    width: 95%;
  }
}
.cid-uJrlELBqk2 .discord-banner:hover {
  transform: translate(0px, -3px);
  border-left: 4px solid #30b7f0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}
.cid-uJrlELBqk2 .discord-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  border-radius: 6px;
  padding: 2px;
  box-sizing: border-box;
  filter: none;
  opacity: 1;
  z-index: -1;
}
.cid-uJrlELBqk2 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uJrlELBqk2 .btn-custom2 {
  background: linear-gradient(135deg, #30b7f0, #1e88e5);
  background-size: 200% 200%;
  border-radius: 10px;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: background-position 0.4s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.cid-uJrlELBqk2 .btn-custom2:hover {
  background-position: right center;
}
.cid-uJrlEM2M3P {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #204362;
}
.cid-uJrlEM2M3P .mbr-section-subtitle {
  letter-spacing: 1px;
  margin-bottom: 1rem;
  color: #b4d8a4;
}
.cid-uJrlEM2M3P .first-column .mbr-text {
  margin: 0;
}
.cid-uJrlEM2M3P .form-group {
  max-width: 55%;
}
.cid-uJrlEM2M3P .form-group,
.cid-uJrlEM2M3P .mbr-section-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-uJrlEM2M3P .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-uJrlEM2M3P .form-control::-webkit-input-placeholder {
  color: #bbbbbb;
}
.cid-uJrlEM2M3P .form-control::-moz-placeholder {
  color: #bbbbbb;
}
.cid-uJrlEM2M3P .form-control:-moz-placeholder {
  color: #bbbbbb;
}
.cid-uJrlEM2M3P .form-control:-ms-input-placeholder {
  color: #bbbbbb;
}
.cid-uJrlEM2M3P .form-control:hover,
.cid-uJrlEM2M3P .form-control:focus {
  border: none !important;
}
.cid-uJrlEM2M3P .col + .mbr-section-btn .btn,
.cid-uJrlEM2M3P .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-uJrlEM2M3P .dragArea > *:nth-last-child(2).col,
.cid-uJrlEM2M3P .dragArea > *:nth-last-child(2).col-auto,
.cid-uJrlEM2M3P .col + .mbr-section-btn,
.cid-uJrlEM2M3P .col-auto + .mbr-section-btn {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uJrlEM2M3P .mbr-form .row {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uJrlEM2M3P .mbr-section-title {
  color: #e6e6e6;
}
.cid-uJrlEM2M3P .mbr-section-subtitle,
.cid-uJrlEM2M3P .icons-wrapper {
  color: #ffffff;
}
.cid-uJrlEM2M3P P {
  color: #ffffff;
}
.cid-uJrlEM2M3P .mbr-section-title,
.cid-uJrlEM2M3P .icons-wrapper {
  color: #ffffff;
}
.cid-uJrlEM2M3P .custom-gradient {
  background-image: linear-gradient(90deg, #7311d0, #a74dfd);
  text-shadow: 0 0 18px #7311d0;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}
.cid-uJrm5C9vEO {
  z-index: 1000;
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uJrm5C9vEO {
    flex-wrap: wrap;
  }
  .cid-uJrm5C9vEO .navbar > .container {
    flex-wrap: nowrap;
  }
}
@media (max-width: 992px) {
  .cid-uJrm5C9vEO .opened .container {
    flex-wrap: wrap;
  }
}
.cid-uJrm5C9vEO .opened .container .navbar-collapse {
  width: 100%;
}
.cid-uJrm5C9vEO .btn {
  padding: 0.3rem 2rem;
}
.cid-uJrm5C9vEO .nav-link {
  position: relative;
}
.cid-uJrm5C9vEO .nav-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  transition: all 0.3s;
  background: #30b7f0;
}
.cid-uJrm5C9vEO .nav-link:hover:before {
  width: 100%;
}
.cid-uJrm5C9vEO nav.navbar {
  position: fixed;
}
.cid-uJrm5C9vEO .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-uJrm5C9vEO .dropdown-menu {
  padding: 0;
  border-radius: 0px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uJrm5C9vEO .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uJrm5C9vEO .dropdown-item:hover,
.cid-uJrm5C9vEO .dropdown-item:focus {
  background: #30b7f0 !important;
  color: white !important;
}
.cid-uJrm5C9vEO .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uJrm5C9vEO .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uJrm5C9vEO .nav-dropdown .link {
  padding: 0 !important;
  margin: 0.667em 1em !important;
}
.cid-uJrm5C9vEO .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uJrm5C9vEO .container {
  display: flex;
  margin: auto;
}
.cid-uJrm5C9vEO .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uJrm5C9vEO .dropdown-menu,
.cid-uJrm5C9vEO .navbar.opened {
  background: #204362 !important;
}
.cid-uJrm5C9vEO .nav-item:focus,
.cid-uJrm5C9vEO .nav-link:focus {
  outline: none;
}
.cid-uJrm5C9vEO .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uJrm5C9vEO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uJrm5C9vEO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uJrm5C9vEO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uJrm5C9vEO .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uJrm5C9vEO .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uJrm5C9vEO .navbar-short {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #204362 !important;
  transition: all 0.3s;
}
.cid-uJrm5C9vEO .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(32, 67, 98, 0);
}
.cid-uJrm5C9vEO .navbar.opened {
  transition: all 0.3s;
}
.cid-uJrm5C9vEO .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uJrm5C9vEO .navbar .navbar-logo img {
  width: auto;
}
.cid-uJrm5C9vEO .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  flex-basis: auto!important;
}
.cid-uJrm5C9vEO .navbar.collapsed {
  justify-content: center;
}
.cid-uJrm5C9vEO .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uJrm5C9vEO .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uJrm5C9vEO .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uJrm5C9vEO .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uJrm5C9vEO .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uJrm5C9vEO .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-uJrm5C9vEO .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uJrm5C9vEO .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uJrm5C9vEO .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uJrm5C9vEO .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uJrm5C9vEO .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uJrm5C9vEO .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uJrm5C9vEO .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uJrm5C9vEO .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-uJrm5C9vEO .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uJrm5C9vEO .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uJrm5C9vEO .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uJrm5C9vEO .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uJrm5C9vEO .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uJrm5C9vEO .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uJrm5C9vEO .navbar.navbar-short {
  min-height: 60px;
}
.cid-uJrm5C9vEO .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uJrm5C9vEO .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uJrm5C9vEO .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-uJrm5C9vEO .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uJrm5C9vEO .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uJrm5C9vEO .dropdown-item.active,
.cid-uJrm5C9vEO .dropdown-item:active {
  background-color: transparent;
}
.cid-uJrm5C9vEO .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uJrm5C9vEO .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uJrm5C9vEO .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uJrm5C9vEO .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #204362;
}
.cid-uJrm5C9vEO .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uJrm5C9vEO .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uJrm5C9vEO ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uJrm5C9vEO .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uJrm5C9vEO button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uJrm5C9vEO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uJrm5C9vEO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uJrm5C9vEO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJrm5C9vEO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJrm5C9vEO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uJrm5C9vEO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJrm5C9vEO nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uJrm5C9vEO nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uJrm5C9vEO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJrm5C9vEO .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uJrm5C9vEO a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uJrm5C9vEO .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-uJrm5C9vEO .navbar {
    height: 70px;
  }
  .cid-uJrm5C9vEO .navbar.opened {
    height: auto;
  }
  .cid-uJrm5C9vEO .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uJrm5CHcyf {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: transparent;
}
.cid-uJrm5CHcyf .mbr-section-title {
  color: #ffffff;
}
.cid-uJrm5CHcyf img {
  animation: hover-up-down 2s ease-in-out infinite;
}
@keyframes hover-up-down {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
.cid-uJrm5CHcyf #particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}
.cid-uJrm5CHcyf .btn-custom2 {
  background: linear-gradient(135deg, #30b7f0, #1e88e5);
  background-size: 200% 200%;
  border-radius: 10px;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: background-position 0.4s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.cid-uJrm5CHcyf .btn-custom2:hover {
  background-position: right center;
}
.cid-uJrm5CHcyf .mbr-text-custom {
  display: inline-block;
  max-width: 400px;
  text-align: left;
  background: rgba(48, 183, 240, 0.2);
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border-left: 4px solid #30b7f0;
  border-radius: 6px;
  margin: 1.5rem auto 0;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  .cid-uJrm5CHcyf .mbr-section-btn {
    justify-content: center !important;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .cid-uJrm5CHcyf .mbr-text,
  .cid-uJrm5CHcyf .mbr-section-title,
  .cid-uJrm5CHcyf .mbr-section-subtitle,
  .cid-uJrm5CHcyf .mbr-text-custom {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
  }
  .cid-uJrm5CHcyf .mbr-section-btn a {
    text-align: center;
  }
}
.cid-uJrm5CHcyf .mbr-text,
.cid-uJrm5CHcyf .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-uJrm5CHcyf .mbr-section-subtitle {
  position: relative;
  color: #ffffff;
  background: rgba(0, 119, 182, 0.1);
  padding: 8px 16px;
  display: inline-block;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 20px;
  font-size: 0.75rem;
  border: 2px solid #00e5ff;
  box-shadow: none;
}
.cid-uJrm5CHcyf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJrm5CHcyf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
#custom-html-1n .divider-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3rem 0;
  padding-top: 25px;
  padding-bottom: 25px;
}
#custom-html-1n .divider {
  width: 50%;
  height: 5px;
  /* Make it thicker for impact */
  background: rgba(48, 183, 240, 0.7);
  /* Neon blue */
  box-shadow: 0 0 10px #30b7f0, 0 0 20px rgba(48, 183, 240, 0.5);
  position: relative;
  animation: pulse 2s infinite ease-in-out;
}
@keyframes pulse {
  0% {
    transform: scaleX(1);
    box-shadow: 0 0 10px rgba(48, 183, 240, 0.6), 0 0 20px rgba(48, 183, 240, 0.3);
  }
  50% {
    transform: scaleX(1.1);
    box-shadow: 0 0 20px #30b7f0, 0 0 30px rgba(48, 183, 240, 0.6);
  }
  100% {
    transform: scaleX(1);
    box-shadow: 0 0 10px rgba(48, 183, 240, 0.6), 0 0 20px rgba(48, 183, 240, 0.3);
  }
}
.cid-uJrm5DeVvV {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: transparent;
}
.cid-uJrm5DeVvV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJrm5DeVvV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJrm5DeVvV .card-wrapper {
  background: rgba(48, 183, 240, 0.2);
  border-radius: 6px;
  padding: 15px;
  border-left: 4px solid #30b7f0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  margin-bottom: 30px;
  transition: all 0.25s ease-in-out;
}
.cid-uJrm5DeVvV .card-wrapper a {
  text-decoration: underline;
  font-weight: bold;
}
@media (max-width: 767px) {
  .cid-uJrm5DeVvV .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-uJrm5DeVvV .card-wrapper:hover {
  transform: translate(0px, -3px);
  border-left: 4px solid #30b7f0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}
.cid-uJrm5DeVvV .mbr-section-title {
  color: #ffffff;
}
.cid-uJrm5DeVvV .mbr-text {
  color: #ffffff;
}
.cid-uJrm5DeVvV .custom-gradient {
  background-image: linear-gradient(90deg, #7311d0, #a74dfd);
  text-shadow: 0 0 18px #7311d0;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}
.cid-uJrm5DFmrR {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: transparent;
}
.cid-uJrm5DFmrR .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: "Moririse2" !important;
  color: #30b7f0;
  margin-left: 1rem;
}
.cid-uJrm5DFmrR .panel-group,
.cid-uJrm5DFmrR .card-header {
  border: none;
}
.cid-uJrm5DFmrR .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uJrm5DFmrR .card-header {
  background: transparent;
}
.cid-uJrm5DFmrR .panel-title-edit {
  color: #ffffff;
  text-align: left;
}
.cid-uJrm5DFmrR .card {
  background: rgba(48, 183, 240, 0.2);
  transition: all 0.25s ease-in-out;
  padding: 0.75rem 1rem;
  border-left: 4px solid #30b7f0;
  border-radius: 6px;
  margin-bottom: 0;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.cid-uJrm5DFmrR .panel-body {
  padding: 1rem 1rem;
}
.cid-uJrm5DFmrR .panel-text {
  color: #ffffff;
  margin: 0;
}
.cid-uJrm5DFmrR H3 {
  color: #ffffff;
}
.cid-uJrm5DFmrR H4 {
  color: #ffffff;
}
.cid-uJrm5DFmrR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJrm5DFmrR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJrm5DFmrR .custom-gradient {
  background-image: linear-gradient(90deg, #008cff, #008cff);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}
.cid-uJrm5EcAqp {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: transparent;
}
.cid-uJrm5EcAqp .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uJrm5EcAqp .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uJrm5EcAqp .discord-banner {
  max-width: 1290px;
  width: 100%;
  background: rgba(48, 183, 240, 0.2);
  color: #ffffff;
  padding: 40px 20px;
  border-radius: 6px;
  border-left: 4px solid #30b7f0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  margin-bottom: 30px;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 600px) {
  .cid-uJrm5EcAqp .discord-banner {
    width: 95%;
  }
}
.cid-uJrm5EcAqp .discord-banner:hover {
  transform: translate(0px, -3px);
  border-left: 4px solid #30b7f0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}
.cid-uJrm5EcAqp .discord-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  border-radius: 6px;
  padding: 2px;
  box-sizing: border-box;
  filter: none;
  opacity: 1;
  z-index: -1;
}
.cid-uJrm5EcAqp .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uJrm5EcAqp .btn-custom2 {
  background: linear-gradient(135deg, #30b7f0, #1e88e5);
  background-size: 200% 200%;
  border-radius: 10px;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: background-position 0.4s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.cid-uJrm5EcAqp .btn-custom2:hover {
  background-position: right center;
}
.cid-uJrm5EC1iL {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #204362;
}
.cid-uJrm5EC1iL .mbr-section-subtitle {
  letter-spacing: 1px;
  margin-bottom: 1rem;
  color: #b4d8a4;
}
.cid-uJrm5EC1iL .first-column .mbr-text {
  margin: 0;
}
.cid-uJrm5EC1iL .form-group {
  max-width: 55%;
}
.cid-uJrm5EC1iL .form-group,
.cid-uJrm5EC1iL .mbr-section-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-uJrm5EC1iL .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-uJrm5EC1iL .form-control::-webkit-input-placeholder {
  color: #bbbbbb;
}
.cid-uJrm5EC1iL .form-control::-moz-placeholder {
  color: #bbbbbb;
}
.cid-uJrm5EC1iL .form-control:-moz-placeholder {
  color: #bbbbbb;
}
.cid-uJrm5EC1iL .form-control:-ms-input-placeholder {
  color: #bbbbbb;
}
.cid-uJrm5EC1iL .form-control:hover,
.cid-uJrm5EC1iL .form-control:focus {
  border: none !important;
}
.cid-uJrm5EC1iL .col + .mbr-section-btn .btn,
.cid-uJrm5EC1iL .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-uJrm5EC1iL .dragArea > *:nth-last-child(2).col,
.cid-uJrm5EC1iL .dragArea > *:nth-last-child(2).col-auto,
.cid-uJrm5EC1iL .col + .mbr-section-btn,
.cid-uJrm5EC1iL .col-auto + .mbr-section-btn {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uJrm5EC1iL .mbr-form .row {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uJrm5EC1iL .mbr-section-title {
  color: #e6e6e6;
}
.cid-uJrm5EC1iL .mbr-section-subtitle,
.cid-uJrm5EC1iL .icons-wrapper {
  color: #ffffff;
}
.cid-uJrm5EC1iL P {
  color: #ffffff;
}
.cid-uJrm5EC1iL .mbr-section-title,
.cid-uJrm5EC1iL .icons-wrapper {
  color: #ffffff;
}
.cid-uJrm5EC1iL .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;
}
