﻿.btn {
  border-width: 2px;
}
body {
  font-family: 'Rubik', sans-serif;
}
.display-1 {
  font-family: 'Rubik', sans-serif;
  font-size: 3.7rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 4.625rem;
}
.display-2 {
  font-family: 'Rubik', sans-serif;
  font-size: 2.2rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2.75rem;
}
.display-4 {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Rubik', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Rubik', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 2.96rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.59rem;
    font-size: calc( 1.945rem + (3.7 - 1.945) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.945rem + (3.7 - 1.945) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 2rem;
  border-radius: 10px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 10px;
}
.bg-primary {
  background-color: #d119fb !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: #d119fb !important;
  border-color: #d119fb !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #d119fb !important;
  border-color: #d119fb !important;
  transform: translateY(-3px);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #9803ba !important;
  border-color: #9803ba !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #8364e2 !important;
  border-color: #8364e2 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #8364e2 !important;
  border-color: #8364e2 !important;
  transform: translateY(-3px);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #4e26ca !important;
  border-color: #4e26ca !important;
}
.btn-info,
.btn-info:active {
  background-color: #b9abe5 !important;
  border-color: #b9abe5 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #b9abe5 !important;
  border-color: #b9abe5 !important;
  transform: translateY(-3px);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #8269d1 !important;
  border-color: #8269d1 !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  transform: translateY(-3px);
}
.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;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  transform: translateY(-3px);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #212428 !important;
  border-color: #212428 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #212428 !important;
  border-color: #212428 !important;
  transform: translateY(-3px);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-white {
  color: #d119fb !important;
  background-color: white;
}
.btn-white,
.btn-white:active {
  background-color: white !important;
  border-color: white !important;
  color: #000000 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #000000 !important;
  background-color: white !important;
  border-color: white !important;
  transform: translateY(-3px);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #000000 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-white:hover,
.btn-white:active {
  color: #d119fb !important;
  box-shadow: #d119fb 2px 2px 20px 0px;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
  transform: translateY(-3px);
}
.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: #d119fb;
  color: #d119fb;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #9803ba !important;
  background-color: transparent !important;
  transform: translateY(-3px);
  border-color: #9803ba !important;
  box-shadow: none !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #d119fb !important;
  border-color: #d119fb !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #8364e2;
  color: #8364e2;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #4e26ca !important;
  background-color: transparent !important;
  transform: translateY(-3px);
  border-color: #4e26ca !important;
  box-shadow: none !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #8364e2 !important;
  border-color: #8364e2 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #b9abe5;
  color: #b9abe5;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #8269d1 !important;
  background-color: transparent !important;
  transform: translateY(-3px);
  border-color: #8269d1 !important;
  box-shadow: none !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #b9abe5 !important;
  border-color: #b9abe5 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #40b0bf;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent !important;
  transform: translateY(-3px);
  border-color: #2a747e !important;
  box-shadow: none !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffe161;
  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;
  transform: translateY(-3px);
  border-color: #ffd10a !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: #212428;
  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;
  transform: translateY(-3px);
  border-color: #000000 !important;
  box-shadow: none !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #212428 !important;
  border-color: #212428 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  transform: translateY(-3px);
  border-color: #000000 !important;
  box-shadow: none !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent !important;
  transform: translateY(-3px);
  border-color: #cfcfcf !important;
  box-shadow: none !important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #d119fb !important;
}
.text-secondary {
  color: #8364e2 !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: #8c03ab !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #4923bd !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #785dcd !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #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: #d119fb;
}
.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: #d119fb;
  border-color: #d119fb;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #d119fb;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #f9e2fe;
}
.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: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #d119fb !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #d119fb;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #d119fb;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #d119fb;
}
.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: #d119fb;
  border-bottom-color: #d119fb;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #d119fb !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #8364e2 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23d119fb' %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-v1ktNq2cWl {
  z-index: 1000;
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v1ktNq2cWl {
    flex-wrap: wrap;
  }
  .cid-v1ktNq2cWl .navbar-collapse {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
  }
  .cid-v1ktNq2cWl .navbar-nav {
    margin: 0 auto;
    display: flex;
    gap: 1.5rem;
  }
  .cid-v1ktNq2cWl .icons-menu,
  .cid-v1ktNq2cWl .navbar-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .cid-v1ktNq2cWl .navbar > .container {
    flex-wrap: nowrap;
  }
}
.cid-v1ktNq2cWl .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(11, 5, 12, 0);
}
.cid-v1ktNq2cWl .navbar.opened {
  transition: all 0.3s;
}
.cid-v1ktNq2cWl .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v1ktNq2cWl .navbar .navbar-logo img {
  width: auto;
}
.cid-v1ktNq2cWl .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  flex-basis: auto!important;
}
.cid-v1ktNq2cWl .navbar.collapsed {
  justify-content: center;
}
.cid-v1ktNq2cWl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v1ktNq2cWl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v1ktNq2cWl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v1ktNq2cWl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v1ktNq2cWl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v1ktNq2cWl .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-v1ktNq2cWl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v1ktNq2cWl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v1ktNq2cWl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
@media (max-width: 991px) {
  .cid-v1ktNq2cWl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v1ktNq2cWl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v1ktNq2cWl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v1ktNq2cWl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v1ktNq2cWl .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-v1ktNq2cWl .navbar .navbar-logo img {
    height: 4rem !important;
  }
  .cid-v1ktNq2cWl .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v1ktNq2cWl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v1ktNq2cWl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v1ktNq2cWl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v1ktNq2cWl .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v1ktNq2cWl .navbar.navbar-short {
  min-height: 60px;
}
.cid-v1ktNq2cWl .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v1ktNq2cWl .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (max-width: 992px) {
  .cid-v1ktNq2cWl .opened .container {
    flex-wrap: wrap;
  }
}
.cid-v1ktNq2cWl .opened .container .navbar-collapse {
  width: 100%;
}
.cid-v1ktNq2cWl .btn {
  padding: 0.3rem 2rem;
}
.cid-v1ktNq2cWl .nav-link {
  position: relative;
}
.cid-v1ktNq2cWl .nav-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  transition: all 0.3s;
  background: #d119fb;
}
.cid-v1ktNq2cWl .nav-link:hover:before {
  width: 100%;
}
.cid-v1ktNq2cWl nav.navbar {
  position: fixed;
}
.cid-v1ktNq2cWl .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-v1ktNq2cWl .dropdown-item small {
  display: block;
  font-size: 0.8em;
  color: #bbbbbb;
  margin-top: 2px;
}
.cid-v1ktNq2cWl .dropdown-menu {
  padding: 0;
  border-radius: 10px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v1ktNq2cWl .dropdown-item:hover,
.cid-v1ktNq2cWl .dropdown-item:focus {
  background: rgba(255, 255, 255, 0.04) !important;
  color: white !important;
}
.cid-v1ktNq2cWl .dropdown-item:first-child {
  border-radius: 10px;
}
.cid-v1ktNq2cWl .dropdown-item:last-child {
  border-radius: 10px;
}
.cid-v1ktNq2cWl .nav-dropdown .link {
  padding: 0 !important;
  margin: 0.667em 1em !important;
}
.cid-v1ktNq2cWl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
}
.cid-v1ktNq2cWl .container {
  display: flex;
  margin: auto;
}
.cid-v1ktNq2cWl .iconfont-wrapper {
  color: #4f4fe0 !important;
  font-size: 2rem;
  padding-right: 0.5rem;
}
.cid-v1ktNq2cWl .dropdown-menu,
.cid-v1ktNq2cWl .navbar.opened {
  background: #0b050c !important;
}
.cid-v1ktNq2cWl .nav-item:focus,
.cid-v1ktNq2cWl .nav-link:focus {
  outline: none;
}
.cid-v1ktNq2cWl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v1ktNq2cWl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v1ktNq2cWl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v1ktNq2cWl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v1ktNq2cWl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v1ktNq2cWl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v1ktNq2cWl .navbar-short {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #0b050c !important;
  transition: all 0.3s;
}
.cid-v1ktNq2cWl .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-v1ktNq2cWl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v1ktNq2cWl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v1ktNq2cWl .dropdown-item.active,
.cid-v1ktNq2cWl .dropdown-item:active {
  background-color: transparent;
}
.cid-v1ktNq2cWl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v1ktNq2cWl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v1ktNq2cWl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v1ktNq2cWl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0b050c;
}
.cid-v1ktNq2cWl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v1ktNq2cWl .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v1ktNq2cWl ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v1ktNq2cWl .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v1ktNq2cWl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v1ktNq2cWl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v1ktNq2cWl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v1ktNq2cWl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v1ktNq2cWl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v1ktNq2cWl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v1ktNq2cWl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v1ktNq2cWl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v1ktNq2cWl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v1ktNq2cWl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v1ktNq2cWl .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v1ktNq2cWl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v1ktNq2cWl .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-v1ktNq2cWl .navbar {
    height: 70px;
  }
  .cid-v1ktNq2cWl .navbar.opened {
    height: auto;
  }
  .cid-v1ktNq2cWl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v1ktNq2cWl img {
  border-radius: 10px;
}
.cid-v1ktPRcXgJ {
  padding-top: 9rem;
  padding-bottom: 2rem;
  background-image: url("../../images/boostbg-5-1.jpeg");
}
.cid-v1ktPRcXgJ .mbr-text,
.cid-v1ktPRcXgJ .mbr-section-btn {
  color: #f4f4f4;
}
.cid-v1ktPRcXgJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1ktPRcXgJ #particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
}
.cid-v1ktPRcXgJ .scroll-down-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}
.cid-v1ktPRcXgJ .scroll-down {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.cid-v1ktPRcXgJ .scroll-down span {
  display: block;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid #d119fb;
  border-right: 2px solid #d119fb;
  transform: rotate(45deg);
  animation: bounce 1.5s infinite;
}
.cid-v1ktPRcXgJ .scroll-down span:nth-child(1) {
  animation-delay: 0s;
}
.cid-v1ktPRcXgJ .scroll-down span:nth-child(2) {
  animation-delay: 0.2s;
}
.cid-v1ktPRcXgJ .scroll-down span:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) rotate(45deg);
  }
  40% {
    transform: translateY(6px) rotate(45deg);
  }
  60% {
    transform: translateY(3px) rotate(45deg);
  }
}
.cid-v1ktPRcXgJ .bg {
  display: inline-block;
  width: 100%;
  max-width: 500px;
  text-align: center;
  background: rgba(79, 79, 224, 0.18);
  border: 1px solid rgba(79, 79, 224, 0.25);
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  padding: 20px 30px;
  box-sizing: border-box;
  font-size: 1rem;
  margin: 10px auto;
}
@media (max-width: 600px) {
  .cid-v1ktPRcXgJ .bg {
    padding: 15px 20px;
    font-size: 0.9rem;
  }
}
.cid-v1ktPRcXgJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1ktPRcXgJ .mbr-section-title {
  color: #ffffff;
}
.cid-v1ktPRcXgJ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v1ktPRcXgJ .mbr-section-tag {
  background-color: #d119fb80;
  color: #ffffff;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: 10px;
  margin-bottom: 0.75rem;
}
#about-us {
  /* Steps container */
  /* Individual step */
  /* Step number box */
  /* Arrow between steps */
  /* Hide arrows on screens smaller than 768px (mobile) */
  /* Step text */
  /* Steps Bar */
}
#about-us .about-section {
  background: transparent;
  padding: 4rem 1rem 1rem;
  display: flex;
  justify-content: center;
  color: #e8e8e8;
  position: relative;
  overflow: hidden;
  z-index: 99;
}
#about-us .mbr-iconfont {
  display: block;
  font-size: 1.5rem;
  color: white;
}
#about-us .steps-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}
#about-us .step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex: 1;
  text-align: center;
  z-index: 99;
}
#about-us .step-square {
  width: 50px;
  height: 50px;
  background-color: #4f46e5;
  /* example color */
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  margin-bottom: 0.5rem;
  z-index: 99;
}
#about-us .step:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -25px;
  top: 25%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: white;
  z-index: 99;
}
@media (max-width: 768px) {
  #about-us .step:not(:last-child)::after {
    display: none;
  }
}
#about-us .step-text {
  font-size: 0.9rem;
  max-width: 120px;
  z-index: 99;
}
#about-us .about-container {
  max-width: 1290px;
  width: 100%;
  position: relative;
  z-index: 1;
  z-index: 99;
}
#about-us .about-heading {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
#about-us .icon-box {
  width: 48px;
  height: 48px;
  border: 2px solid #d119fb;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle, rgba(209, 25, 251, 0.15), rgba(255, 101, 255, 0.05));
  box-shadow: 0 0 15px rgba(209, 25, 251, 0.3);
  transition: all 0.4s ease;
  flex-shrink: 0;
}
#about-us .icon-box i {
  color: white;
  transition: all 0.3s ease;
}
#about-us .about-col:hover .icon-box {
  box-shadow: 0 0 25px rgba(209, 25, 251, 0.5);
  border-color: #ff65ff;
}
#about-us .about-col:hover .icon-box i {
  color: #fff;
}
#about-us .about-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 4rem;
  z-index: 99;
}
#about-us .about-col {
  flex: 1 1 48%;
  min-width: 280px;
  background: #d119fb15;
  border: 1px solid #d119fb;
  border-radius: 12px;
  z-index: 99;
  padding: 1.5rem;
  box-shadow: 0 0 12px rgba(209, 25, 251, 0.1);
  backdrop-filter: blur(6px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
#about-us .about-col:hover {
  transform: translateY(-6px) scale(1.02);
  background: linear-gradient(135deg, rgba(255, 101, 255, 0.08), rgba(255, 101, 255, 0.02));
  border-color: #d119fb;
  box-shadow: 0 0 20px rgba(255, 102, 242, 0.4), 0 10px 30px rgba(0, 0, 0, 0.4);
}
#about-us .about-col:before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 102, 242, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 99;
}
#about-us .about-col:hover::before {
  opacity: 1;
}
#about-us .about-col * {
  position: relative;
  z-index: 1;
}
#about-us .about-title {
  font-size: 1.8rem;
  color: white;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
}
#about-us .about-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #f4f4f4;
}
#about-us .steps-bar {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  z-index: 99;
  padding: 1rem 0 1rem;
}
#about-us .step {
  position: relative;
  flex: 1 1 calc(23%);
  min-width: 200px;
  text-align: center;
  z-index: 99;
}
#about-us .step-square {
  width: 70px;
  height: 70px;
  background: radial-gradient(circle, rgba(209, 25, 251, 0.4), rgba(209, 25, 251, 0.15));
  border: 3px solid #d119fb;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  z-index: 99;
  align-items: center;
  backdrop-filter: blur(6px);
  font-weight: 700;
  color: #fff;
  font-size: 1.4rem;
  margin: 0 auto 1rem;
  box-shadow: 0 0 25px rgba(209, 25, 251, 0.3);
  transition: all 0.4s ease;
  position: relative;
}
#about-us .step-square::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 10px;
  z-index: 99;
}
#about-us .step:hover .step-square {
  transform: scale(1.1);
}
#about-us .step-text {
  font-size: 1rem;
  color: #f4f4f4;
  line-height: 1.5;
  margin-top: 0.3rem;
}
#about-us .mbr-section-btn a {
  margin: 0 0.5rem;
}
@media (max-width: 768px) {
  #about-us .steps-bar {
    flex-direction: column;
    align-items: center;
  }
  #about-us .steps-bar::before {
    content: none;
  }
  #about-us .step {
    flex: none;
  }
  #about-us .step-square {
    margin-bottom: 0.5rem;
  }
  #about-us .footer-heading {
    font-size: 1.3rem;
  }
}
#about-us .section-title-bar::before {
  content: "";
  display: block;
  width: 40px;
  border-radius: 11px;
  height: 6px;
  background-color: #d119fb;
  margin-bottom: 12px;
}
.cid-v1kURznf8A {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: transparent;
}
.cid-v1kURznf8A .mbr-section-head {
  background: #d119fb15;
  border: 1px solid #d119fb;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding-top: 20px;
  padding-bottom: 20px;
  backdrop-filter: blur(6px);
  z-index: 99;
}
.cid-v1kURznf8A .item-img {
  position: relative;
}
@media (max-width: 768px) {
  .cid-v1kURznf8A .badge-grey {
    padding: 8px 16px;
    font-size: 14px;
    top: -40px;
    max-width: 80%;
    white-space: nowrap;
  }
}
.cid-v1kURznf8A #searchBar,
.cid-v1kURznf8A #sortSelect {
  padding: 10px 20px;
  font-size: 16px;
  color: #777;
  background: #d119fb15;
  border: 1px solid #d119fb;
  backdrop-filter: blur(6px);
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  outline: none;
  transition: all 0.3s ease;
}
.cid-v1kURznf8A #searchBar {
  flex: 1;
  min-width: 250px;
}
.cid-v1kURznf8A #sortSelect option {
  background: rgba(25, 25, 25, 0.95);
  color: #ccc;
}
.cid-v1kURznf8A #sortSelect {
  min-width: 180px;
  appearance: none;
  background: #d119fb15;
  backdrop-filter: blur(6px);
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  cursor: pointer;
}
.cid-v1kURznf8A #searchBar:hover,
.cid-v1kURznf8A #searchBar:focus,
.cid-v1kURznf8A #sortSelect:hover,
.cid-v1kURznf8A #sortSelect:focus {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.cid-v1kURznf8A #searchBar::placeholder {
  color: #888;
  opacity: 1;
}
.cid-v1kURznf8A .text-center.mb-4 {
  margin-bottom: 30px;
}
.cid-v1kURznf8A .tag {
  position: absolute;
  left: 0.5rem;
  top: 0.5rem;
}
.cid-v1kURznf8A .btn-tag {
  padding: 0.3rem 1rem;
  padding-top: 6px;
  border-radius: 6px !important;
}
.cid-v1kURznf8A .btn-tag:hover,
.cid-v1kURznf8A .btn-tag:focus {
  box-shadow: none;
}
.cid-v1kURznf8A img,
.cid-v1kURznf8A .item-img {
  width: 100%;
  margin-bottom: 0.5rem;
}
.cid-v1kURznf8A .item:focus,
.cid-v1kURznf8A span:focus {
  outline: none;
}
.cid-v1kURznf8A .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v1kURznf8A .item-wrapper {
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  background: #d119fb15;
  border: 1px solid #d119fb;
  backdrop-filter: blur(6px);
  border-radius: 10px;
  position: relative;
  transition: transform 300ms ease, box-shadow 300ms ease;
}
.cid-v1kURznf8A .item-wrapper:hover {
  background: linear-gradient(135deg, rgba(255, 101, 255, 0.08), rgba(255, 101, 255, 0.02));
  border-color: #d119fb;
  box-shadow: 0 0 20px rgba(255, 102, 242, 0.4), 0 10px 30px rgba(0, 0, 0, 0.4);
}
.cid-v1kURznf8A .item-wrapper:before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 102, 242, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}
.cid-v1kURznf8A .item-wrapper:hover::before {
  opacity: 1;
}
.cid-v1kURznf8A .item-wrapper * {
  position: relative;
  z-index: 1;
}
.cid-v1kURznf8A .item-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.cid-v1kURznf8A .item-wrapper > * {
  position: relative;
  z-index: 2;
}
.cid-v1kURznf8A .item-wrapper:hover {
  transform: translateY(-3px);
}
.cid-v1kURznf8A .mbr-section-btn {
  margin-top: auto !important;
  padding: 0 1rem;
}
.cid-v1kURznf8A .mbr-section-title {
  color: #ffffff;
  padding-top: 10px;
}
.cid-v1kURznf8A .mbr-text,
.cid-v1kURznf8A .mbr-section-btn {
  color: #ffffff;
  padding: 0 1rem;
  text-align: left;
}
.cid-v1kURznf8A .item-title {
  color: #ffffff;
  padding: 0 1rem;
  text-align: left;
}
.cid-v1kURznf8A .item-subtitle {
  color: #5518fa;
  text-align: center;
}
.cid-v1kURznf8A .mbr-section-subtitle {
  text-align: center;
  color: #bbbbbb;
}
.cid-v1kURznf8A .mbr-section-subtitle1 {
  text-align: center;
  color: #d119fb;
}
.cid-v1kURznf8A .price-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #d119fb;
  color: #fff;
  font-weight: bold;
  padding: 5px 10px;
  font-size: 1.1em;
  border-radius: 5px;
  z-index: 10;
}
.cid-v1kURznf8A .responsive-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.cid-v1kURznf8A .responsive-buttons button {
  background: linear-gradient(135deg, #ff65ff, #ff3dff);
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 30px;
  white-space: nowrap;
  transition: all 0.25s ease;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.cid-v1kURznf8A .responsive-buttons button:hover {
  background: linear-gradient(135deg, #e255e0, #d000d9);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
.cid-v1kURznf8A .responsive-buttons .highlight {
  background-color: #fff;
  color: #ff65ff;
  border: 2px solid #ff65ff;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(255, 101, 255, 0.3);
}
.cid-v1kURznf8A .wrapped-buttons {
  display: flex;
  flex-wrap: wrap;
  font-weight: bold;
  justify-content: center;
  gap: 10px;
}
.cid-v1kURznf8A .wrapped-buttons button {
  background: linear-gradient(135deg, #d119fb, #a010e0);
  color: #fff;
  border: none;
  padding: 8px 18px;
  font-size: 13px;
  border-radius: 12px;
  white-space: nowrap;
  transition: all 0.25s ease;
  cursor: pointer;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.12);
}
.cid-v1kURznf8A .wrapped-buttons button:hover {
  background: linear-gradient(135deg, #bd14e3, #960fcf);
  transform: translateY(-1.5px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}
.cid-v1kURznf8A .highlight {
  background-color: #fff;
  color: #ff65ff;
  border: 2px solid #ff65ff;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(255, 101, 255, 0.25);
}
@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
#custom-html-g .pulse-bar {
  animation: pulse 2s infinite;
}
.cid-v1kyWRFbtS {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: transparent;
}
.cid-v1kyWRFbtS .mbr-iconfont {
  display: block;
  font-size: 2.5rem;
  color: #ff65ff;
  margin-bottom: 1rem;
}
.cid-v1kyWRFbtS .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-v1kyWRFbtS .card-wrapper {
  transition: all 0.4s ease;
  border: 1px solid #d119fb;
  padding: 2rem 2rem;
  background: #d119fb15;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  backdrop-filter: blur(6px);
  align-items: center;
  margin-bottom: 2rem;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}
.cid-v1kyWRFbtS .card-wrapper:hover {
  transform: translateY(-6px) scale(1.02);
  background: linear-gradient(135deg, rgba(255, 101, 255, 0.08), rgba(255, 101, 255, 0.02));
  border-color: #d119fb;
  box-shadow: 0 0 20px rgba(255, 102, 242, 0.4), 0 10px 30px rgba(0, 0, 0, 0.4);
}
.cid-v1kyWRFbtS .card-wrapper:before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 102, 242, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}
.cid-v1kyWRFbtS .card-wrapper:hover::before {
  opacity: 1;
}
.cid-v1kyWRFbtS .card-wrapper * {
  position: relative;
  z-index: 1;
}
.cid-v1kyWRFbtS .card-title,
.cid-v1kyWRFbtS .card-box {
  color: #ffffff;
}
.cid-v1kyWRFbtS .main-title,
.cid-v1kyWRFbtS .title-col {
  text-align: center;
  color: #ffffff;
}
.cid-v1kyWRFbtS .card-text {
  color: #ffffff;
}
.cid-v1kyWRFbtS .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1kyWRFbtS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
#support {
  /* Mobirise-style container */
  /* Desktop layout */
  /* Mobile layout */
  /* support-card fixed width on large screens */
  /* Hide image on mobile (below 768px) */
  /* Content styling */
  /* Image section */
  /* Desktop layout */
}
#support .container {
  max-width: 1290px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
@media (min-width: 768px) {
  #support .container {
    width: 95%;
  }
}
#support .support-section {
  background-color: transparent;
  padding: 1rem 0;
  display: flex;
  justify-content: center;
  /* center card horizontally */
}
@media (min-width: 768px) {
  #support .support-card {
    flex-direction: row;
    height: 400px;
    max-width: 95%;
  }
  #support .support-content {
    flex: 1;
    padding: 3rem;
    text-align: left;
  }
  #support .support-image {
    flex: 1;
  }
}
@media (max-width: 767px) {
  #support .support-image {
    display: none;
  }
}
#support .support-card {
  display: flex;
  flex-direction: column;
  background: #d119fb15;
  border: 1px solid #d119fb;
  backdrop-filter: blur(6px);
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  max-width: 1290px;
  /* card will not exceed 1290px */
}
@media (max-width: 767px) {
  #support .support-image {
    display: none;
  }
}
#support .support-content {
  padding: 2rem;
  color: #ffffff;
  text-align: center;
}
#support .support-content h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
#support .support-content h2 span {
  display: inline-block;
}
#support .support-content p {
  font-size: 1rem;
  color: #f4f4f4;
  margin-bottom: 1.5rem;
}
#support .discord-btn {
  display: inline-block;
  background-color: #ff5cff;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
#support .discord-btn:hover {
  background-color: #e052e0;
}
#support .support-image {
  flex: 1;
  height: 100%;
}
#support .support-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (min-width: 768px) {
  #support .support-card {
    flex-direction: row;
    height: 400px;
  }
  #support .support-content {
    flex: 1;
    text-align: left;
    padding: 3rem;
  }
  #support .support-image {
    flex: 1;
  }
}
#support .section-title-bar::before {
  content: "";
  display: block;
  width: 40px;
  border-radius: 11px;
  height: 6px;
  background-color: #d119fb;
  margin-bottom: 12px;
}
.cid-v1qrnz6mWC {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: transparent;
}
.cid-v1qrnz6mWC .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1qrnz6mWC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1qrnz6mWC .feature-item {
  display: inline-block;
  background: #d119fb15;
  padding: 10px 20px;
  border: 1px solid #d119fb;
  border-radius: 10px;
  margin-bottom: 5px;
  margin-right: 10px;
  font-size: 16px;
  line-height: 1.5;
  vertical-align: middle;
  white-space: nowrap;
  color: #ffffff;
}
.cid-v1qrnz6mWC .feature-item:hover {
  cursor: pointer;
}
.cid-v1qrnz6mWC .item-wrapper {
  background: #d119fb15;
  position: relative;
  padding: 0.5rem;
  backdrop-filter: blur(6px);
  border: 1px solid #d119fb;
  border-radius: 10px;
  transition: all 0.25s ease-in-out;
}
.cid-v1qrnz6mWC .item-wrapper:hover {
  transform: translateY(-6px) scale(1.02);
  background: linear-gradient(135deg, rgba(255, 101, 255, 0.08), rgba(255, 101, 255, 0.02));
  border-color: #d119fb;
  box-shadow: 0 0 20px rgba(255, 102, 242, 0.4), 0 10px 30px rgba(0, 0, 0, 0.4);
}
.cid-v1qrnz6mWC .item-wrapper:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: radial-gradient(circle, rgba(255, 102, 242, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}
.cid-v1qrnz6mWC .item-wrapper:hover::before {
  opacity: 1;
}
.cid-v1qrnz6mWC .item-wrapper * {
  position: relative;
  z-index: 1;
}
.cid-v1qrnz6mWC img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50% !important;
  margin: auto;
  margin-bottom: 0.5rem;
}
.cid-v1qrnz6mWC .mbr-iconfont {
  margin: auto;
  display: inline-flex;
  font-size: 1.5rem;
  color: #d119fb;
  width: 25px;
  justify-content: center;
  align-items: center;
}
.cid-v1qrnz6mWC .card-title,
.cid-v1qrnz6mWC .iconfont-wrapper {
  color: #f4f4f4;
  text-align: center;
}
.cid-v1qrnz6mWC .card-text {
  color: #d119fb;
  text-align: center;
}
.cid-v1qrnz6mWC .mbr-section-title {
  color: #ffffff;
}
.cid-v1qrnz6mWC .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v1qrnz6mWC .content-head {
  max-width: 800px;
}
.cid-v1qrnz6mWC .card-subtitle {
  color: #f4f4f4;
  text-align: center;
}
.cid-v1qrnz6mWC .review-scroll-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.cid-v1qrnz6mWC .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-v1qrnz6mWC .trustpilot-btn-ghost {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  border: 2px solid #d119fb;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.cid-v1qrnz6mWC .trustpilot-btn-ghost .trustpilot-highlight {
  color: #d119fb;
}
.cid-v1qrnz6mWC .trustpilot-btn-ghost:hover {
  background-color: #d119fb;
  color: white;
}
.cid-v1qrnz6mWC .trustpilot-btn-ghost:hover .trustpilot-highlight {
  color: white;
}
.cid-v1qrnz6mWC .review-scroll-wrapper:hover .review-scroll-track {
  animation-play-state: paused;
}
.cid-v1qrnz6mWC .review-card {
  flex-shrink: 0;
  width: 350px;
  max-width: 90vw;
  padding: 1rem;
  color: #fff;
  border-radius: 10px;
}
.cid-v1qrnz6mWC .review-scroll-wrapper2 {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.cid-v1qrnz6mWC .review-scroll-track2 {
  display: flex;
  width: max-content;
  animation: scrollRight 30s linear infinite;
  gap: 0.5rem;
}
.cid-v1qrnz6mWC .review-scroll-wrapper2:hover .review-scroll-track2 {
  animation-play-state: paused;
}
@keyframes scrollRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}
.cid-v1mzRaivfC {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: transparent;
}
.cid-v1mzRaivfC .mbr-iconfont {
  font-size: 1.4rem !important;
}
.cid-v1mzRaivfC .panel-group,
.cid-v1mzRaivfC .card-header {
  border: none;
}
.cid-v1mzRaivfC .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-v1mzRaivfC .titlepadding {
  padding-left: 10px;
}
.cid-v1mzRaivfC .card-header {
  background: transparent;
}
.cid-v1mzRaivfC .panel-title-edit {
  color: #ffffff;
}
.cid-v1mzRaivfC .card {
  margin-bottom: 0;
  background: #d119fb15;
  padding: 0.5rem;
  backdrop-filter: blur(6px);
  border: 1px solid #d119fb;
  border-radius: 10px;
}
.cid-v1mzRaivfC .panel-body {
  padding: 1rem 1rem;
}
.cid-v1mzRaivfC .panel-text {
  color: #f4f4f4;
  margin: 0;
}
.cid-v1mzRaivfC H3 {
  color: #ffffff;
}
.cid-v1mzRaivfC H4 {
  color: #ffffff;
  text-align: center;
}
.cid-v1mzRaivfC .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1mzRaivfC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1mzRaivfC .icon-box {
  width: 48px;
  height: 48px;
  border: 2px solid #d119fb;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle, rgba(209, 25, 251, 0.15), rgba(255, 101, 255, 0.05));
  box-shadow: 0 0 15px rgba(209, 25, 251, 0.3);
  transition: all 0.4s ease;
  flex-shrink: 0;
}
.cid-v1mzRaivfC H6 {
  color: #ffffff;
}
.cid-v1kJyvNGWW {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../images/boostbg-6-1.jpeg");
}
.cid-v1kJyvNGWW .mbr-section-subtitle {
  letter-spacing: 1px;
  margin-bottom: 1rem;
  color: #b4d8a4;
}
.cid-v1kJyvNGWW .first-column .mbr-text {
  margin: 0;
}
.cid-v1kJyvNGWW .row {
  background-color: #d119fb15;
  padding: 1.5rem;
  border: 1px solid #d119fb;
  border-radius: 10px;
  color: white;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .cid-v1kJyvNGWW .row {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
}
.cid-v1kJyvNGWW .form-group {
  max-width: 55%;
}
.cid-v1kJyvNGWW .form-group,
.cid-v1kJyvNGWW .mbr-section-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-v1kJyvNGWW .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-v1kJyvNGWW .form-control::-webkit-input-placeholder {
  color: #bbbbbb;
}
.cid-v1kJyvNGWW .form-control::-moz-placeholder {
  color: #bbbbbb;
}
.cid-v1kJyvNGWW .form-control:-moz-placeholder {
  color: #bbbbbb;
}
.cid-v1kJyvNGWW .form-control:-ms-input-placeholder {
  color: #bbbbbb;
}
.cid-v1kJyvNGWW .form-control:hover,
.cid-v1kJyvNGWW .form-control:focus {
  border: none !important;
}
.cid-v1kJyvNGWW .col + .mbr-section-btn .btn,
.cid-v1kJyvNGWW .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-v1kJyvNGWW .dragArea > *:nth-last-child(2).col,
.cid-v1kJyvNGWW .dragArea > *:nth-last-child(2).col-auto,
.cid-v1kJyvNGWW .col + .mbr-section-btn,
.cid-v1kJyvNGWW .col-auto + .mbr-section-btn {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-v1kJyvNGWW .mbr-form .row {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v1kJyvNGWW .mbr-section-title {
  color: #ffffff;
}
.cid-v1kJyvNGWW .mbr-section-subtitle,
.cid-v1kJyvNGWW .icons-wrapper {
  color: #d4d4d8;
}
.cid-v1kJyvNGWW P {
  color: #ffffff;
}
.cid-v1kJyvNGWW .mbr-section-title,
.cid-v1kJyvNGWW .icons-wrapper {
  color: #ffffff;
}
.cid-v1kJyvNGWW .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-v1s0paSDNd {
  z-index: 1000;
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v1s0paSDNd {
    flex-wrap: wrap;
  }
  .cid-v1s0paSDNd .navbar-collapse {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
  }
  .cid-v1s0paSDNd .navbar-nav {
    margin: 0 auto;
    display: flex;
    gap: 1.5rem;
  }
  .cid-v1s0paSDNd .icons-menu,
  .cid-v1s0paSDNd .navbar-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .cid-v1s0paSDNd .navbar > .container {
    flex-wrap: nowrap;
  }
}
.cid-v1s0paSDNd .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(11, 5, 12, 0);
}
.cid-v1s0paSDNd .navbar.opened {
  transition: all 0.3s;
}
.cid-v1s0paSDNd .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v1s0paSDNd .navbar .navbar-logo img {
  width: auto;
}
.cid-v1s0paSDNd .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  flex-basis: auto!important;
}
.cid-v1s0paSDNd .navbar.collapsed {
  justify-content: center;
}
.cid-v1s0paSDNd .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v1s0paSDNd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v1s0paSDNd .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v1s0paSDNd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v1s0paSDNd .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v1s0paSDNd .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-v1s0paSDNd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v1s0paSDNd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v1s0paSDNd .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
@media (max-width: 991px) {
  .cid-v1s0paSDNd .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v1s0paSDNd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v1s0paSDNd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v1s0paSDNd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v1s0paSDNd .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-v1s0paSDNd .navbar .navbar-logo img {
    height: 4rem !important;
  }
  .cid-v1s0paSDNd .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v1s0paSDNd .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v1s0paSDNd .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v1s0paSDNd .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v1s0paSDNd .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v1s0paSDNd .navbar.navbar-short {
  min-height: 60px;
}
.cid-v1s0paSDNd .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v1s0paSDNd .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (max-width: 992px) {
  .cid-v1s0paSDNd .opened .container {
    flex-wrap: wrap;
  }
}
.cid-v1s0paSDNd .opened .container .navbar-collapse {
  width: 100%;
}
.cid-v1s0paSDNd .btn {
  padding: 0.3rem 2rem;
}
.cid-v1s0paSDNd .nav-link {
  position: relative;
}
.cid-v1s0paSDNd .nav-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  transition: all 0.3s;
  background: #d119fb;
}
.cid-v1s0paSDNd .nav-link:hover:before {
  width: 100%;
}
.cid-v1s0paSDNd nav.navbar {
  position: fixed;
}
.cid-v1s0paSDNd .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-v1s0paSDNd .dropdown-item small {
  display: block;
  font-size: 0.8em;
  color: #bbbbbb;
  margin-top: 2px;
}
.cid-v1s0paSDNd .dropdown-menu {
  padding: 0;
  border-radius: 10px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v1s0paSDNd .dropdown-item:hover,
.cid-v1s0paSDNd .dropdown-item:focus {
  background: rgba(255, 255, 255, 0.04) !important;
  color: white !important;
}
.cid-v1s0paSDNd .dropdown-item:first-child {
  border-radius: 10px;
}
.cid-v1s0paSDNd .dropdown-item:last-child {
  border-radius: 10px;
}
.cid-v1s0paSDNd .nav-dropdown .link {
  padding: 0 !important;
  margin: 0.667em 1em !important;
}
.cid-v1s0paSDNd .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
}
.cid-v1s0paSDNd .container {
  display: flex;
  margin: auto;
}
.cid-v1s0paSDNd .iconfont-wrapper {
  color: #4f4fe0 !important;
  font-size: 2rem;
  padding-right: 0.5rem;
}
.cid-v1s0paSDNd .dropdown-menu,
.cid-v1s0paSDNd .navbar.opened {
  background: #0b050c !important;
}
.cid-v1s0paSDNd .nav-item:focus,
.cid-v1s0paSDNd .nav-link:focus {
  outline: none;
}
.cid-v1s0paSDNd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v1s0paSDNd .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v1s0paSDNd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v1s0paSDNd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v1s0paSDNd .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v1s0paSDNd .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v1s0paSDNd .navbar-short {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #0b050c !important;
  transition: all 0.3s;
}
.cid-v1s0paSDNd .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-v1s0paSDNd .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v1s0paSDNd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v1s0paSDNd .dropdown-item.active,
.cid-v1s0paSDNd .dropdown-item:active {
  background-color: transparent;
}
.cid-v1s0paSDNd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v1s0paSDNd .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v1s0paSDNd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v1s0paSDNd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0b050c;
}
.cid-v1s0paSDNd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v1s0paSDNd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v1s0paSDNd ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v1s0paSDNd .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v1s0paSDNd button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v1s0paSDNd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v1s0paSDNd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v1s0paSDNd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v1s0paSDNd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v1s0paSDNd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v1s0paSDNd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v1s0paSDNd nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v1s0paSDNd nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v1s0paSDNd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v1s0paSDNd .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v1s0paSDNd a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v1s0paSDNd .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-v1s0paSDNd .navbar {
    height: 70px;
  }
  .cid-v1s0paSDNd .navbar.opened {
    height: auto;
  }
  .cid-v1s0paSDNd .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v1s0paSDNd img {
  border-radius: 10px;
}
.cid-v1sJjunYpL {
  padding-top: 9rem;
  padding-bottom: 2rem;
  background-image: url("../../images/boostbg-5-1.jpeg");
}
.cid-v1sJjunYpL .mbr-text,
.cid-v1sJjunYpL .mbr-section-btn {
  color: #f4f4f4;
}
.cid-v1sJjunYpL .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1sJjunYpL #particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
}
.cid-v1sJjunYpL .scroll-down-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}
.cid-v1sJjunYpL .scroll-down {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.cid-v1sJjunYpL .scroll-down span {
  display: block;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid #d119fb;
  border-right: 2px solid #d119fb;
  transform: rotate(45deg);
  animation: bounce 1.5s infinite;
}
.cid-v1sJjunYpL .scroll-down span:nth-child(1) {
  animation-delay: 0s;
}
.cid-v1sJjunYpL .scroll-down span:nth-child(2) {
  animation-delay: 0.2s;
}
.cid-v1sJjunYpL .scroll-down span:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) rotate(45deg);
  }
  40% {
    transform: translateY(6px) rotate(45deg);
  }
  60% {
    transform: translateY(3px) rotate(45deg);
  }
}
.cid-v1sJjunYpL .bg {
  display: inline-block;
  width: 100%;
  max-width: 500px;
  text-align: center;
  background: rgba(79, 79, 224, 0.18);
  border: 1px solid rgba(79, 79, 224, 0.25);
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  padding: 20px 30px;
  box-sizing: border-box;
  font-size: 1rem;
  margin: 10px auto;
}
@media (max-width: 600px) {
  .cid-v1sJjunYpL .bg {
    padding: 15px 20px;
    font-size: 0.9rem;
  }
}
.cid-v1sJjunYpL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1sJjunYpL .mbr-section-title {
  color: #ffffff;
}
.cid-v1sJjunYpL .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v1sJjunYpL .mbr-section-tag {
  background-color: #d119fb80;
  color: #ffffff;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: 10px;
  margin-bottom: 0.75rem;
}
.cid-v1s0UZRqyl {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: transparent;
}
.cid-v1s0UZRqyl .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1s0UZRqyl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1s0UZRqyl .card-wrapper {
  background: #d119fb15;
  padding: 1.5rem;
  border: 1px solid #d119fb;
  border-radius: 10px;
  margin-bottom: 30px;
  backdrop-filter: blur(6px);
}
.cid-v1s0UZRqyl .card-wrapper a {
  font-weight: bold;
}
@media (max-width: 767px) {
  .cid-v1s0UZRqyl .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-v1s0UZRqyl .card-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(2px);
  border-radius: 20px;
  pointer-events: none;
  z-index: 1;
}
.cid-v1s0UZRqyl .card-wrapper > * {
  position: relative;
  z-index: 2;
}
.cid-v1s0UZRqyl .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-v1s0UZRqyl .mbr-text {
  color: #f4f4f4;
  text-align: left;
}
.cid-v1s0UZRqyl P {
  color: #ffffff;
}
.cid-v1s0UZRqyl H4 {
  color: #ffffff;
}
@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
#custom-html-o .pulse-bar {
  animation: pulse 2s infinite;
}
#custom-html-q {
  /* Mobirise-style container */
  /* Desktop layout */
  /* Mobile layout */
  /* support-card fixed width on large screens */
  /* Hide image on mobile (below 768px) */
  /* Content styling */
  /* Image section */
  /* Desktop layout */
}
#custom-html-q .container {
  max-width: 1290px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
@media (min-width: 768px) {
  #custom-html-q .container {
    width: 95%;
  }
}
#custom-html-q .support-section {
  background-color: transparent;
  padding: 1rem 0;
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: center;
  /* center card horizontally */
}
@media (min-width: 768px) {
  #custom-html-q .support-card {
    flex-direction: row;
    height: 400px;
    max-width: 95%;
  }
  #custom-html-q .support-content {
    flex: 1;
    padding: 3rem;
    text-align: left;
  }
  #custom-html-q .support-image {
    flex: 1;
  }
}
@media (min-width: 768px) and (max-width: 767px) {
  #custom-html-q .container {
    padding-left: 5%;
    padding-right: 5%;
  }
  #custom-html-q .support-card {
    max-width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 767px) and (max-width: 767px) {
  #custom-html-q .support-card {
    width: 90%;
    /* leave 5% space on each side */
    max-width: 90%;
    /* ensure it never exceeds this */
    margin: 0 auto;
    /* center it horizontally */
  }
}
@media (max-width: 767px) {
  #custom-html-q .support-image {
    display: none;
  }
}
#custom-html-q .support-card {
  display: flex;
  flex-direction: column;
  background: #d119fb15;
  border: 1px solid #d119fb;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  max-width: 1290px;
  /* card will not exceed 1290px */
}
@media (max-width: 767px) {
  #custom-html-q .support-image {
    display: none;
  }
}
#custom-html-q .support-content {
  padding: 2rem;
  color: #ffffff;
  text-align: center;
}
#custom-html-q .support-content h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
#custom-html-q .support-content h2 span {
  display: inline-block;
}
#custom-html-q .support-content p {
  font-size: 1rem;
  color: #f4f4f4;
  margin-bottom: 1.5rem;
}
#custom-html-q .discord-btn {
  display: inline-block;
  background-color: #ff5cff;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
#custom-html-q .discord-btn:hover {
  background-color: #e052e0;
}
#custom-html-q .support-image {
  flex: 1;
  height: 100%;
}
#custom-html-q .support-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (min-width: 768px) {
  #custom-html-q .support-card {
    flex-direction: row;
    height: 400px;
  }
  #custom-html-q .support-content {
    flex: 1;
    text-align: left;
    padding: 3rem;
  }
  #custom-html-q .support-image {
    flex: 1;
  }
}
#custom-html-q .section-title-bar::before {
  content: "";
  display: block;
  width: 40px;
  border-radius: 11px;
  height: 6px;
  background-color: #d119fb;
  margin-bottom: 12px;
}
.cid-v1wDCryFry {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: transparent;
}
.cid-v1wDCryFry .mbr-iconfont {
  font-size: 1.4rem !important;
}
.cid-v1wDCryFry .panel-group,
.cid-v1wDCryFry .card-header {
  border: none;
}
.cid-v1wDCryFry .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-v1wDCryFry .titlepadding {
  padding-left: 10px;
}
.cid-v1wDCryFry .card-header {
  background: transparent;
}
.cid-v1wDCryFry .panel-title-edit {
  color: #ffffff;
}
.cid-v1wDCryFry .card {
  margin-bottom: 0;
  background: #d119fb15;
  padding: 0.5rem;
  backdrop-filter: blur(6px);
  border: 1px solid #d119fb;
  border-radius: 10px;
}
.cid-v1wDCryFry .panel-body {
  padding: 1rem 1rem;
}
.cid-v1wDCryFry .panel-text {
  color: #f4f4f4;
  margin: 0;
}
.cid-v1wDCryFry H3 {
  color: #ffffff;
}
.cid-v1wDCryFry H4 {
  color: #ffffff;
  text-align: center;
}
.cid-v1wDCryFry .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1wDCryFry .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1wDCryFry .icon-box {
  width: 48px;
  height: 48px;
  border: 2px solid #d119fb;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle, rgba(209, 25, 251, 0.15), rgba(255, 101, 255, 0.05));
  box-shadow: 0 0 15px rgba(209, 25, 251, 0.3);
  transition: all 0.4s ease;
  flex-shrink: 0;
}
.cid-v1wDCryFry H6 {
  color: #ffffff;
}
.cid-v1s0phVWXh {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../images/boostbg-6-1.jpeg");
}
.cid-v1s0phVWXh .mbr-section-subtitle {
  letter-spacing: 1px;
  margin-bottom: 1rem;
  color: #b4d8a4;
}
.cid-v1s0phVWXh .first-column .mbr-text {
  margin: 0;
}
.cid-v1s0phVWXh .row {
  background-color: #d119fb15;
  padding: 1.5rem;
  border: 1px solid #d119fb;
  border-radius: 10px;
  color: white;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .cid-v1s0phVWXh .row {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
}
.cid-v1s0phVWXh .form-group {
  max-width: 55%;
}
.cid-v1s0phVWXh .form-group,
.cid-v1s0phVWXh .mbr-section-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-v1s0phVWXh .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-v1s0phVWXh .form-control::-webkit-input-placeholder {
  color: #bbbbbb;
}
.cid-v1s0phVWXh .form-control::-moz-placeholder {
  color: #bbbbbb;
}
.cid-v1s0phVWXh .form-control:-moz-placeholder {
  color: #bbbbbb;
}
.cid-v1s0phVWXh .form-control:-ms-input-placeholder {
  color: #bbbbbb;
}
.cid-v1s0phVWXh .form-control:hover,
.cid-v1s0phVWXh .form-control:focus {
  border: none !important;
}
.cid-v1s0phVWXh .col + .mbr-section-btn .btn,
.cid-v1s0phVWXh .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-v1s0phVWXh .dragArea > *:nth-last-child(2).col,
.cid-v1s0phVWXh .dragArea > *:nth-last-child(2).col-auto,
.cid-v1s0phVWXh .col + .mbr-section-btn,
.cid-v1s0phVWXh .col-auto + .mbr-section-btn {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-v1s0phVWXh .mbr-form .row {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v1s0phVWXh .mbr-section-title {
  color: #ffffff;
}
.cid-v1s0phVWXh .mbr-section-subtitle,
.cid-v1s0phVWXh .icons-wrapper {
  color: #d4d4d8;
}
.cid-v1s0phVWXh P {
  color: #ffffff;
}
.cid-v1s0phVWXh .mbr-section-title,
.cid-v1s0phVWXh .icons-wrapper {
  color: #ffffff;
}
.cid-v1s0phVWXh .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;
}
