body {
  font-family: Anek Latin;
}
.display-1 {
  font-family: 'Anek Latin', sans-serif;
  font-size: 5.625rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 7.03125rem;
}
.display-2 {
  font-family: 'Anek Latin', sans-serif;
  font-size: 4.25rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 5.3125rem;
}
.display-4 {
  font-family: 'Anek Latin', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.875rem;
}
.display-5 {
  font-family: 'Anek Latin', sans-serif;
  font-size: 3.125rem;
  line-height: 1.2;
}
.display-5 > .mbr-iconfont {
  font-size: 3.90625rem;
}
.display-7 {
  font-family: 'Anek Latin', sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.40625rem;
}
/* ---- 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: 4.5rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.9375rem;
    font-size: calc( 2.61875rem + (5.625 - 2.61875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.61875rem + (5.625 - 2.61875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 3.4rem;
    font-size: calc( 2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 2.5rem;
    font-size: calc( 1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.9rem;
    font-size: calc( 1.04375rem + (1.125 - 1.04375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.04375rem + (1.125 - 1.04375) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #ae5eff !important;
}
.bg-success {
  background-color: #c19c1c !important;
}
.bg-info {
  background-color: #8d59ff !important;
}
.bg-warning {
  background-color: #ffaa5c !important;
}
.bg-danger {
  background-color: #c06816 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ae5eff !important;
  border-color: #ae5eff !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  border-color: #8207ff !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #8207ff !important;
  border-color: #8207ff !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ffdd65 !important;
  border-color: #ffdd65 !important;
  color: #654f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  border-color: #ffca0e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #654f00 !important;
  background-color: #ffca0e !important;
  border-color: #ffca0e !important;
}
.btn-info,
.btn-info:active {
  background-color: #8d59ff !important;
  border-color: #8d59ff !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  border-color: #5102ff !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #5102ff !important;
  border-color: #5102ff !important;
}
.btn-success,
.btn-success:active {
  background-color: #c19c1c !important;
  border-color: #c19c1c !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  border-color: #755f11 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #755f11 !important;
  border-color: #755f11 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffaa5c !important;
  border-color: #ffaa5c !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  border-color: #ff7d05 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #ff7d05 !important;
  border-color: #ff7d05 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #c06816 !important;
  border-color: #c06816 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  border-color: #723e0d !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #723e0d !important;
  border-color: #723e0d !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #212132 !important;
  border-color: #212132 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.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: #ae5eff;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ae5eff !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: #ae5eff !important;
  border-color: #ae5eff !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffdd65;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffdd65 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #654f00 !important;
  background-color: #ffdd65 !important;
  border-color: #ffdd65 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #8d59ff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #8d59ff !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: #8d59ff !important;
  border-color: #8d59ff !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #c19c1c;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #c19c1c !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: #c19c1c !important;
  border-color: #c19c1c !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffaa5c;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffaa5c !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #ffaa5c !important;
  border-color: #ffaa5c !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #c06816;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #c06816 !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: #c06816 !important;
  border-color: #c06816 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #212132;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #212132 !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: #212132 !important;
  border-color: #212132 !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: #fafafa !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: #ae5eff !important;
}
.text-secondary {
  color: #ffdd65 !important;
}
.text-success {
  color: #c19c1c !important;
}
.text-info {
  color: #8d59ff !important;
}
.text-warning {
  color: #ffaa5c !important;
}
.text-danger {
  color: #c06816 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #212132 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #7b00f7 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #fec600 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #68540f !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #4c00f2 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #f57500 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #64360c !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !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;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #ae5eff;
}
.nav-tabs .nav-link:not(.active) {
  color: #212132;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #8d59ff;
}
.alert-warning {
  background-color: #ffaa5c;
}
.alert-danger {
  background-color: #c06816;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ae5eff;
  border-color: #ae5eff;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ae5eff;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ebd072;
}
.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: #eea868;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Anek Latin', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.875rem;
}
.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: #ae5eff !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Anek Latin', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.875rem;
}
blockquote {
  border-color: #ae5eff;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ae5eff;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ae5eff;
}
.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: #ae5eff;
  border-bottom-color: #ae5eff;
}
.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: #ae5eff !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: #ffdd65 !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='%23ae5eff' %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-duration: .2s;
}
a:hover {
  background-image: none !important;
}
.container {
  max-width: 1440px;
  padding-left: 6vw;
  padding-right: 6vw;
}
@media (max-width: 991px) {
  .container {
    max-width: 80vw;
  }
}
@media (max-width: 767px) {
  .container {
    padding-left: 3vw;
    padding-right: 3vw;
  }
}
@media (min-width: 1600px) {
  .container {
    padding-left: 96px;
    padding-right: 96px;
  }
}
.container-fluid {
  padding-left: 6vw;
  padding-right: 6vw;
}
@media (max-width: 767px) {
  .container-fluid {
    padding-left: 3vw;
    padding-right: 3vw;
  }
}
@media (min-width: 1600px) {
  .container-fluid {
    padding-left: 96px;
    padding-right: 96px;
  }
}
.row {
  margin-left: -6vw;
  margin-right: -6vw;
}
.row > [class*="col"] {
  padding-left: 6vw;
  padding-right: 6vw;
}
@media (max-width: 767px) {
  .row {
    margin-left: -3vw;
    margin-right: -3vw;
  }
  .row > [class*="col"] {
    padding-left: 3vw;
    padding-right: 3vw;
  }
}
@media (min-width: 1600px) {
  .row {
    margin-left: -96px;
    margin-right: -96px;
  }
  .row > [class*="col"] {
    padding-left: 96px;
    padding-right: 96px;
  }
}
.row {
  justify-content: center;
}
.mbr-section-btn .btn {
  min-width: 100px;
  min-height: 40px;
  padding: 20px 40px;
  line-height: 1.55;
  font-weight: 500;
  transition-duration: .2s;
  border-radius: 0.75rem !important;
  box-shadow: none !important;
  border: none !important;
}
@media (max-width: 575px) {
  .mbr-section-btn {
    width: 100%;
  }
  .mbr-section-btn .btn {
    width: 100%;
    min-width: auto !important;
  }
}
.custom-mbr-section-btn {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.custom-section-btn {
  display: inline-block;
  padding: 3px;
  position: relative;
  border-radius: 0.75rem !important;
  margin-top: 0.42rem;
  margin-left: 0.42rem;
}
.custom-section-btn::after {
  content: "";
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.75rem !important;
  transition: all 300ms ease;
  transform: translate3d(-0.42rem, -0.42rem, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.custom-section-btn .btn {
  transform: translate3d(-0.42rem, -0.42rem, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  position: relative;
  z-index: 11;
  transform-style: preserve-3d;
  transition: all 300ms ease;
  border: none !important;
  margin: 0 !important;
  min-height: 106px;
  padding: 20px 40px;
}
@media (max-width: 767px) {
  .custom-section-btn .btn {
    padding: 12px 24px;
    min-height: 68px;
  }
}
.custom-section-btn:hover .btn {
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.custom-section-btn:hover::after {
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.cid-uQVrSl1euV {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #212132;
}
.cid-uQVrSl1euV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQVrSl1euV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQVrSl1euV .row {
  justify-content: left;
}
.cid-uQVrSl1euV .mbr-section-title {
  color: #FFDD65;
  background-image: linear-gradient(90deg, currentColor 2.76%, #c19c1c 29.66%, #c286ff 61%, #8e59ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uQVrSl1euV .btn-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 96px;
}
@media (max-width: 991px) {
  .cid-uQVrSl1euV .btn-container {
    padding-top: 50px;
    flex-direction: column;
    align-items: center;
  }
}
.cid-uQVrSl1euV .custom-mbr-section-btn {
  padding-bottom: 0.42rem;
}
@media (max-width: 991px) {
  .cid-uQVrSl1euV .custom-mbr-section-btn {
    padding-bottom: 0;
  }
}
.cid-uQVrSl1euV .custom-section-btn {
  height: 100%;
  background-image: linear-gradient(90deg, #c19c1c 2.76%, #c19c1c 29.66%, #c286ff 61%, #8e59ff 99.93%);
}
.cid-uQVrSl1euV .custom-section-btn::after {
  background-image: linear-gradient(90deg, #c19c1c 2.76%, #c19c1c 29.66%, #c286ff 61%, #8e59ff 99.93%);
}
.cid-uQVrSl1euV .custom-section-btn .btn {
  height: 100%;
}
.cid-uQVrSl1euV .text-container {
  max-width: 384px;
  margin-left: 40px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uQVrSl1euV .text-container {
    margin: 26px auto 0;
  }
}
.cid-uQVrSl1euV .mbr-text {
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .cid-uQVrSl1euV .mbr-text {
    text-align: center !important;
  }
}
.cid-uQVrSl1euV .text-item-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-top: 26px;
}
@media (max-width: 991px) {
  .cid-uQVrSl1euV .text-item-container {
    flex-wrap: wrap;
  }
}
.cid-uQVrSl1euV .text-item {
  display: flex;
  align-items: center;
  max-width: 48%;
}
@media (max-width: 991px) {
  .cid-uQVrSl1euV .text-item {
    max-width: 100%;
    width: 100%;
    justify-content: center;
    margin-bottom: 6px;
  }
}
.cid-uQVrSl1euV .icon-text {
  color: #ffffff;
  opacity: 0.6;
}
.cid-uQVrSl1euV .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.cid-uQVrSl1euV .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 24px;
  color: #ae5eff;
}
.cid-uQVAZgc5Ch {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uQVAZgc5Ch .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQVAZgc5Ch .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQVAZgc5Ch .container {
  max-width: 1280px;
}
.cid-uQVAZgc5Ch .content-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  background: #212132;
  padding: 4rem;
  border-radius: 4.17rem;
}
@media (max-width: 991px) {
  .cid-uQVAZgc5Ch .content-wrapper {
    flex-wrap: wrap;
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .cid-uQVAZgc5Ch .content-wrapper {
    padding: 40px 6vw;
  }
}
.cid-uQVAZgc5Ch .text-wrapper {
  display: flex;
  flex-direction: column;
  width: 45%;
}
@media (max-width: 991px) {
  .cid-uQVAZgc5Ch .text-wrapper {
    width: 100%;
    margin-bottom: 10px;
  }
}
.cid-uQVAZgc5Ch .label-container {
  padding: 4px 12px;
  border-radius: 100vw;
  background-color: #ffffff;
  margin-bottom: 20px;
  width: max-content;
  margin-right: auto;
}
@media (max-width: 991px) {
  .cid-uQVAZgc5Ch .label-container {
    margin-bottom: 12px;
  }
}
.cid-uQVAZgc5Ch .label-text {
  color: #212132;
}
.cid-uQVAZgc5Ch .mbr-section-title {
  color: #FFDD65;
  margin-bottom: 1.5rem;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uQVAZgc5Ch .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uQVAZgc5Ch .mbr-section-subtitle {
  color: #ffffff;
  margin-top: auto;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uQVAZgc5Ch .mbr-section-subtitle {
    margin-top: 0;
  }
}
.cid-uQVAZgc5Ch .card-container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  width: 60%;
  right: -8rem;
}
@media (max-width: 1599px) {
  .cid-uQVAZgc5Ch .card-container {
    right: calc(-4vw - 4rem);
  }
}
@media (max-width: 991px) {
  .cid-uQVAZgc5Ch .card-container {
    width: 100%;
    margin-top: 40px;
    left: 0;
    right: 0;
  }
}
.cid-uQVAZgc5Ch .card-item {
  position: relative;
  width: 46%;
  margin: 2%;
  transition: .3s all;
  min-height: 290px;
}
@media (max-width: 1599px) {
  .cid-uQVAZgc5Ch .card-item {
    min-height: 240px;
  }
}
@media (max-width: 1199px) {
  .cid-uQVAZgc5Ch .card-item {
    min-height: 185px;
  }
}
.cid-uQVAZgc5Ch .card-item:hover {
  transform: scale(0.96);
}
@media (max-width: 575px) {
  .cid-uQVAZgc5Ch .card-item {
    width: 96%;
    margin: 2%;
    min-height: auto;
  }
}
.cid-uQVAZgc5Ch .card-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  filter: blur(1rem);
}
.cid-uQVAZgc5Ch .card-border {
  position: relative;
  z-index: 6;
  width: 100%;
  height: 100%;
  padding: 5px;
  border-radius: 2.08rem;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
}
.cid-uQVAZgc5Ch .card-box {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  height: 100%;
  padding: 40px;
  background-color: #212132;
  border-radius: 1.76rem;
}
@media (max-width: 991px) {
  .cid-uQVAZgc5Ch .card-box {
    padding: 16px;
  }
}
.cid-uQVAZgc5Ch .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  padding: 3px;
  min-width: 32px;
  min-height: 32px;
  width: max-content;
  margin-right: auto;
}
@media (max-width: 991px) {
  .cid-uQVAZgc5Ch .iconfont-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uQVAZgc5Ch .iconfont-wrapper .mbr-iconfont {
  color: #ffdd65;
  font-size: 64px;
}
.cid-uQVAZgc5Ch .card-title {
  margin-top: auto;
  color: #ffffff;
}
.cid-uQVIGE5Cs9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uQVIGE5Cs9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQVIGE5Cs9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQVIGE5Cs9 .container {
  max-width: 1280px;
}
.cid-uQVIGE5Cs9 .content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #212132;
  padding: 4rem;
  border-radius: 4.17rem;
}
@media (max-width: 767px) {
  .cid-uQVIGE5Cs9 .content-wrapper {
    flex-wrap: wrap;
    padding: 4rem 6vw;
  }
}
.cid-uQVIGE5Cs9 .text-wrapper {
  width: 70%;
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .cid-uQVIGE5Cs9 .text-wrapper {
    width: 100%;
    order: 2;
    margin-bottom: 50px;
  }
}
.cid-uQVIGE5Cs9 .card-title {
  color: #FFDD65;
}
.cid-uQVIGE5Cs9 .colored-text {
  line-height: inherit;
  color: inherit;
  color: #ae5eff;
}
.cid-uQVIGE5Cs9 .mbr-text {
  color: #ffffff;
  margin-top: 24px;
}
@media (max-width: 991px) {
  .cid-uQVIGE5Cs9 .mbr-text {
    margin-top: 16px;
  }
}
.cid-uQVIGE5Cs9 .img-container {
  width: 25%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-uQVIGE5Cs9 .img-container {
    order: 1;
    width: 100%;
    justify-content: flex-start;
    margin-bottom: 24px;
  }
}
.cid-uQVIGE5Cs9 .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-uQVIGE5Cs9 .image-wrapper {
    width: 25%;
  }
}
@media (max-width: 575px) {
  .cid-uQVIGE5Cs9 .image-wrapper {
    width: 50%;
  }
}
.cid-uQVIGE5Cs9 .image-wrapper .img-box {
  height: 100%;
}
.cid-uQVIGE5Cs9 .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uQVIGE5Cs9 .custom-section-btn {
  background-image: linear-gradient(90deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
}
.cid-uQVIGE5Cs9 .custom-section-btn::after {
  background-image: linear-gradient(90deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
}
.cid-uQVIGE5Cs9 .btn-container {
  width: 70%;
  padding-left: 4rem;
  margin-right: auto;
  margin-top: -3.5rem;
}
@media (max-width: 767px) {
  .cid-uQVIGE5Cs9 .btn-container {
    padding: 0 6vw;
    width: 100%;
  }
  .cid-uQVIGE5Cs9 .btn-container .custom-section-btn {
    width: 100%;
  }
  .cid-uQVIGE5Cs9 .btn-container .btn {
    width: 100%;
  }
}
.cid-uQVJpUy9ZG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uQVJpUy9ZG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQVJpUy9ZG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQVJpUy9ZG .container {
  max-width: 1280px;
}
.cid-uQVJpUy9ZG .content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #212132;
  padding: 4rem;
  border-radius: 4.17rem;
}
@media (max-width: 767px) {
  .cid-uQVJpUy9ZG .content-wrapper {
    flex-wrap: wrap;
    padding: 4rem 6vw;
  }
}
.cid-uQVJpUy9ZG .text-wrapper {
  width: 70%;
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .cid-uQVJpUy9ZG .text-wrapper {
    width: 100%;
    order: 2;
    margin-bottom: 50px;
  }
}
.cid-uQVJpUy9ZG .card-title {
  color: #FFDD65;
}
.cid-uQVJpUy9ZG .colored-text {
  line-height: inherit;
  color: inherit;
  color: #ae5eff;
}
.cid-uQVJpUy9ZG .mbr-text {
  color: #ffffff;
  margin-top: 24px;
}
@media (max-width: 991px) {
  .cid-uQVJpUy9ZG .mbr-text {
    margin-top: 16px;
  }
}
.cid-uQVJpUy9ZG .img-container {
  width: 25%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-uQVJpUy9ZG .img-container {
    order: 1;
    width: 100%;
    justify-content: flex-start;
    margin-bottom: 24px;
  }
}
.cid-uQVJpUy9ZG .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-uQVJpUy9ZG .image-wrapper {
    width: 25%;
  }
}
@media (max-width: 575px) {
  .cid-uQVJpUy9ZG .image-wrapper {
    width: 50%;
  }
}
.cid-uQVJpUy9ZG .image-wrapper .img-box {
  height: 100%;
}
.cid-uQVJpUy9ZG .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uQVJpUy9ZG .custom-section-btn {
  background-image: linear-gradient(90deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
}
.cid-uQVJpUy9ZG .custom-section-btn::after {
  background-image: linear-gradient(90deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
}
.cid-uQVJpUy9ZG .btn-container {
  width: 70%;
  padding-left: 4rem;
  margin-right: auto;
  margin-top: -3.5rem;
}
@media (max-width: 767px) {
  .cid-uQVJpUy9ZG .btn-container {
    padding: 0 6vw;
    width: 100%;
  }
  .cid-uQVJpUy9ZG .btn-container .custom-section-btn {
    width: 100%;
  }
  .cid-uQVJpUy9ZG .btn-container .btn {
    width: 100%;
  }
}
.cid-uQVL2dzwWr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uQVL2dzwWr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQVL2dzwWr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQVL2dzwWr .container {
  max-width: 1280px;
}
.cid-uQVL2dzwWr .content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #212132;
  padding: 4rem;
  border-radius: 4.17rem;
}
@media (max-width: 767px) {
  .cid-uQVL2dzwWr .content-wrapper {
    flex-wrap: wrap;
    padding: 4rem 6vw;
  }
}
.cid-uQVL2dzwWr .text-wrapper {
  width: 70%;
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .cid-uQVL2dzwWr .text-wrapper {
    width: 100%;
    order: 2;
    margin-bottom: 50px;
  }
}
.cid-uQVL2dzwWr .card-title {
  color: #FFDD65;
}
.cid-uQVL2dzwWr .colored-text {
  line-height: inherit;
  color: inherit;
  color: #ae5eff;
}
.cid-uQVL2dzwWr .mbr-text {
  color: #ffffff;
  margin-top: 24px;
}
@media (max-width: 991px) {
  .cid-uQVL2dzwWr .mbr-text {
    margin-top: 16px;
  }
}
.cid-uQVL2dzwWr .img-container {
  width: 25%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-uQVL2dzwWr .img-container {
    order: 1;
    width: 100%;
    justify-content: flex-start;
    margin-bottom: 24px;
  }
}
.cid-uQVL2dzwWr .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-uQVL2dzwWr .image-wrapper {
    width: 25%;
  }
}
@media (max-width: 575px) {
  .cid-uQVL2dzwWr .image-wrapper {
    width: 50%;
  }
}
.cid-uQVL2dzwWr .image-wrapper .img-box {
  height: 100%;
}
.cid-uQVL2dzwWr .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uQVL2dzwWr .custom-section-btn {
  background-image: linear-gradient(90deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
}
.cid-uQVL2dzwWr .custom-section-btn::after {
  background-image: linear-gradient(90deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
}
.cid-uQVL2dzwWr .btn-container {
  width: 70%;
  padding-left: 4rem;
  margin-right: auto;
  margin-top: -3.5rem;
}
@media (max-width: 767px) {
  .cid-uQVL2dzwWr .btn-container {
    padding: 0 6vw;
    width: 100%;
  }
  .cid-uQVL2dzwWr .btn-container .custom-section-btn {
    width: 100%;
  }
  .cid-uQVL2dzwWr .btn-container .btn {
    width: 100%;
  }
}
.cid-uQVMk125fm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uQVMk125fm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQVMk125fm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQVMk125fm .container {
  max-width: 1280px;
}
.cid-uQVMk125fm .content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #212132;
  padding: 4rem;
  border-radius: 4.17rem;
}
@media (max-width: 767px) {
  .cid-uQVMk125fm .content-wrapper {
    flex-wrap: wrap;
    padding: 4rem 6vw;
  }
}
.cid-uQVMk125fm .text-wrapper {
  width: 70%;
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .cid-uQVMk125fm .text-wrapper {
    width: 100%;
    order: 2;
    margin-bottom: 50px;
  }
}
.cid-uQVMk125fm .card-title {
  color: #FFDD65;
}
.cid-uQVMk125fm .colored-text {
  line-height: inherit;
  color: inherit;
  color: #ae5eff;
}
.cid-uQVMk125fm .mbr-text {
  color: #ffffff;
  margin-top: 24px;
}
@media (max-width: 991px) {
  .cid-uQVMk125fm .mbr-text {
    margin-top: 16px;
  }
}
.cid-uQVMk125fm .img-container {
  width: 25%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-uQVMk125fm .img-container {
    order: 1;
    width: 100%;
    justify-content: flex-start;
    margin-bottom: 24px;
  }
}
.cid-uQVMk125fm .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-uQVMk125fm .image-wrapper {
    width: 25%;
  }
}
@media (max-width: 575px) {
  .cid-uQVMk125fm .image-wrapper {
    width: 50%;
  }
}
.cid-uQVMk125fm .image-wrapper .img-box {
  height: 100%;
}
.cid-uQVMk125fm .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uQVMk125fm .custom-section-btn {
  background-image: linear-gradient(90deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
}
.cid-uQVMk125fm .custom-section-btn::after {
  background-image: linear-gradient(90deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
}
.cid-uQVMk125fm .btn-container {
  width: 70%;
  padding-left: 4rem;
  margin-right: auto;
  margin-top: -3.5rem;
}
@media (max-width: 767px) {
  .cid-uQVMk125fm .btn-container {
    padding: 0 6vw;
    width: 100%;
  }
  .cid-uQVMk125fm .btn-container .custom-section-btn {
    width: 100%;
  }
  .cid-uQVMk125fm .btn-container .btn {
    width: 100%;
  }
}
.cid-uQVMk125fm .card-title,
.cid-uQVMk125fm .mbr-section-btn {
  color: #ffdd65;
}
.cid-uTllcaCvZd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uTllcaCvZd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTllcaCvZd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTllcaCvZd .container {
  max-width: 1280px;
}
.cid-uTllcaCvZd .content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #212132;
  padding: 4rem;
  border-radius: 4.17rem;
}
@media (max-width: 767px) {
  .cid-uTllcaCvZd .content-wrapper {
    flex-wrap: wrap;
    padding: 4rem 6vw;
  }
}
.cid-uTllcaCvZd .text-wrapper {
  width: 70%;
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .cid-uTllcaCvZd .text-wrapper {
    width: 100%;
    order: 2;
    margin-bottom: 50px;
  }
}
.cid-uTllcaCvZd .card-title {
  color: #FFDD65;
}
.cid-uTllcaCvZd .colored-text {
  line-height: inherit;
  color: inherit;
  color: #ae5eff;
}
.cid-uTllcaCvZd .mbr-text {
  color: #ffffff;
  margin-top: 24px;
}
@media (max-width: 991px) {
  .cid-uTllcaCvZd .mbr-text {
    margin-top: 16px;
  }
}
.cid-uTllcaCvZd .img-container {
  width: 25%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-uTllcaCvZd .img-container {
    order: 1;
    width: 100%;
    justify-content: flex-start;
    margin-bottom: 24px;
  }
}
.cid-uTllcaCvZd .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-uTllcaCvZd .image-wrapper {
    width: 25%;
  }
}
@media (max-width: 575px) {
  .cid-uTllcaCvZd .image-wrapper {
    width: 50%;
  }
}
.cid-uTllcaCvZd .image-wrapper .img-box {
  height: 100%;
}
.cid-uTllcaCvZd .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uTllcaCvZd .custom-section-btn {
  background-image: linear-gradient(90deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
}
.cid-uTllcaCvZd .custom-section-btn::after {
  background-image: linear-gradient(90deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
}
.cid-uTllcaCvZd .btn-container {
  width: 70%;
  padding-left: 4rem;
  margin-right: auto;
  margin-top: -3.5rem;
}
@media (max-width: 767px) {
  .cid-uTllcaCvZd .btn-container {
    padding: 0 6vw;
    width: 100%;
  }
  .cid-uTllcaCvZd .btn-container .custom-section-btn {
    width: 100%;
  }
  .cid-uTllcaCvZd .btn-container .btn {
    width: 100%;
  }
}
.cid-uTllcaCvZd .card-title,
.cid-uTllcaCvZd .mbr-section-btn {
  color: #ffdd65;
}
.cid-uTlmaRwjbF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uTlmaRwjbF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTlmaRwjbF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTlmaRwjbF .container {
  max-width: 1280px;
}
.cid-uTlmaRwjbF .content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #212132;
  padding: 4rem;
  border-radius: 4.17rem;
}
@media (max-width: 767px) {
  .cid-uTlmaRwjbF .content-wrapper {
    flex-wrap: wrap;
    padding: 4rem 6vw;
  }
}
.cid-uTlmaRwjbF .text-wrapper {
  width: 70%;
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .cid-uTlmaRwjbF .text-wrapper {
    width: 100%;
    order: 2;
    margin-bottom: 50px;
  }
}
.cid-uTlmaRwjbF .card-title {
  color: #FFDD65;
}
.cid-uTlmaRwjbF .colored-text {
  line-height: inherit;
  color: inherit;
  color: #ae5eff;
}
.cid-uTlmaRwjbF .mbr-text {
  color: #ffffff;
  margin-top: 24px;
}
@media (max-width: 991px) {
  .cid-uTlmaRwjbF .mbr-text {
    margin-top: 16px;
  }
}
.cid-uTlmaRwjbF .img-container {
  width: 25%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-uTlmaRwjbF .img-container {
    order: 1;
    width: 100%;
    justify-content: flex-start;
    margin-bottom: 24px;
  }
}
.cid-uTlmaRwjbF .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-uTlmaRwjbF .image-wrapper {
    width: 25%;
  }
}
@media (max-width: 575px) {
  .cid-uTlmaRwjbF .image-wrapper {
    width: 50%;
  }
}
.cid-uTlmaRwjbF .image-wrapper .img-box {
  height: 100%;
}
.cid-uTlmaRwjbF .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uTlmaRwjbF .custom-section-btn {
  background-image: linear-gradient(90deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
}
.cid-uTlmaRwjbF .custom-section-btn::after {
  background-image: linear-gradient(90deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
}
.cid-uTlmaRwjbF .btn-container {
  width: 70%;
  padding-left: 4rem;
  margin-right: auto;
  margin-top: -3.5rem;
}
@media (max-width: 767px) {
  .cid-uTlmaRwjbF .btn-container {
    padding: 0 6vw;
    width: 100%;
  }
  .cid-uTlmaRwjbF .btn-container .custom-section-btn {
    width: 100%;
  }
  .cid-uTlmaRwjbF .btn-container .btn {
    width: 100%;
  }
}
.cid-uTlmaRwjbF .card-title,
.cid-uTlmaRwjbF .mbr-section-btn {
  color: #ffdd65;
}
.cid-uQVOle3Lwa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uQVOle3Lwa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQVOle3Lwa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQVOle3Lwa .container {
  max-width: 1280px;
}
.cid-uQVOle3Lwa .content-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  background: #212132;
  padding: 4rem;
  border-radius: 4.17rem;
}
@media (max-width: 991px) {
  .cid-uQVOle3Lwa .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .cid-uQVOle3Lwa .content-wrapper {
    padding: 40px 6vw;
  }
}
.cid-uQVOle3Lwa .text-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 720px;
  margin-bottom: 28px;
}
@media (max-width: 991px) {
  .cid-uQVOle3Lwa .text-wrapper {
    margin-bottom: 12px;
  }
}
.cid-uQVOle3Lwa .mbr-section-title {
  color: #FFDD65;
  margin-bottom: 100px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uQVOle3Lwa .mbr-section-title {
    margin-bottom: 60px;
  }
}
.cid-uQVOle3Lwa .mbr-section-subtitle {
  color: #ffffff;
  width: 100%;
}
.cid-uQVOle3Lwa .card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
}
.cid-uQVOle3Lwa .card-item {
  width: max-content;
  max-width: 100%;
  margin-right: 12px;
  min-width: 160px;
  margin-bottom: 12px;
  margin-top: 12px;
}
.cid-uQVOle3Lwa .card-box {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: max-content;
  height: 100%;
  margin: auto;
}
.cid-uQVOle3Lwa .iconfont-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  width: 100%;
  margin-right: auto;
}
@media (max-width: 991px) {
  .cid-uQVOle3Lwa .iconfont-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uQVOle3Lwa .iconfont-wrapper .mbr-iconfont {
  color: #ffdd65;
  font-size: 80px;
}
.cid-uQVOle3Lwa .card-title {
  color: #c286ff;
}
.cid-uRxd4f0pFy {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uRxd4f0pFy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRxd4f0pFy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRxd4f0pFy .container {
  max-width: 1280px;
}
.cid-uRxd4f0pFy .content-wrapper {
  display: flex;
  align-items: stretch;
  background: #212132;
  padding: 4rem 0;
  border-radius: 4.17rem;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uRxd4f0pFy .content-wrapper {
    flex-wrap: wrap;
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .cid-uRxd4f0pFy .content-wrapper {
    padding: 40px 6vw;
  }
}
.cid-uRxd4f0pFy .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 50%;
  padding-right: 4rem;
  margin-bottom: 24px;
  padding-right: 0;
  padding-left: 4rem;
}
@media (max-width: 991px) {
  .cid-uRxd4f0pFy .text-wrapper {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
  }
}
.cid-uRxd4f0pFy .card-title {
  color: #FFDD65;
  margin-bottom: auto;
}
.cid-uRxd4f0pFy .mbr-text {
  color: #ffffff;
  margin-top: 24px;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-uRxd4f0pFy .mbr-text {
    margin-top: 16px;
  }
}
.cid-uRxd4f0pFy .img-container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  right: -6rem;
}
@media (max-width: 1599px) {
  .cid-uRxd4f0pFy .img-container {
    right: -4vw;
  }
}
@media (max-width: 1400px) {
  .cid-uRxd4f0pFy .img-container {
    right: 0rem;
    left: 0;
    padding: 0 3rem;
  }
}
@media (max-width: 991px) {
  .cid-uRxd4f0pFy .img-container {
    width: 100%;
    margin-bottom: 34px;
    left: 0;
    right: 0;
    padding: 0;
  }
}
.cid-uRxd4f0pFy .image-wrapper {
  aspect-ratio: 1;
  position: relative;
  border-radius: 2.08rem;
  padding: 32px;
  background-image: linear-gradient(135deg, #d6c071 2.76%, #ae5eff 29.66%, #8510fc 61%, #ff49c0 99.93%);
}
@media (max-width: 767px) {
  .cid-uRxd4f0pFy .image-wrapper {
    padding: 20px;
  }
}
.cid-uRxd4f0pFy .image-wrapper .img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2.08rem;
  background-image: linear-gradient(135deg, #d6c071 2.76%, #ae5eff 29.66%, #8510fc 61%, #ff49c0 99.93%);
  -webkit-filter: blur(1rem);
  filter: blur(1rem);
}
.cid-uRxd4f0pFy .image-wrapper .img-box {
  position: relative;
  z-index: 11;
  border-radius: 2.08rem;
  overflow: hidden;
  height: 100%;
}
.cid-uRxd4f0pFy .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uRxd4t1B44 {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uRxd4t1B44 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRxd4t1B44 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRxd4t1B44 .container {
  max-width: 1280px;
}
.cid-uRxd4t1B44 .content-wrapper {
  display: flex;
  align-items: stretch;
  background: #212132;
  padding: 4rem 0;
  border-radius: 4.17rem;
}
@media (max-width: 991px) {
  .cid-uRxd4t1B44 .content-wrapper {
    flex-wrap: wrap;
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .cid-uRxd4t1B44 .content-wrapper {
    padding: 40px 6vw;
  }
}
.cid-uRxd4t1B44 .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 50%;
  padding-right: 4rem;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-uRxd4t1B44 .text-wrapper {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
  }
}
.cid-uRxd4t1B44 .card-title {
  color: #FFDD65;
  margin-bottom: auto;
}
.cid-uRxd4t1B44 .mbr-text {
  color: #ffffff;
  margin-top: 24px;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-uRxd4t1B44 .mbr-text {
    margin-top: 16px;
  }
}
.cid-uRxd4t1B44 .img-container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  left: -6rem;
}
@media (max-width: 1599px) {
  .cid-uRxd4t1B44 .img-container {
    left: -4vw;
  }
}
@media (max-width: 1400px) {
  .cid-uRxd4t1B44 .img-container {
    right: 0rem;
    left: 0;
    padding: 0 3rem;
  }
}
@media (max-width: 991px) {
  .cid-uRxd4t1B44 .img-container {
    width: 100%;
    margin-bottom: 34px;
    left: 0;
    right: 0;
    padding: 0;
  }
}
.cid-uRxd4t1B44 .image-wrapper {
  aspect-ratio: 1;
  position: relative;
  border-radius: 2.08rem;
  padding: 32px;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
}
@media (max-width: 767px) {
  .cid-uRxd4t1B44 .image-wrapper {
    padding: 20px;
  }
}
.cid-uRxd4t1B44 .image-wrapper .img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2.08rem;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  -webkit-filter: blur(1rem);
  filter: blur(1rem);
}
.cid-uRxd4t1B44 .image-wrapper .img-box {
  position: relative;
  z-index: 11;
  border-radius: 2.08rem;
  overflow: hidden;
  height: 100%;
}
.cid-uRxd4t1B44 .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uRxd4t1B44 .card-title,
.cid-uRxd4t1B44 .mbr-section-btn {
  color: #ae5eff;
}
.cid-taI1vrEVAM {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #0c0c22;
  overflow: hidden;
}
.cid-taI1vrEVAM .container {
  max-width: 1472px;
}
.cid-taI1vrEVAM .mbr-text {
  color: #FFFFFF;
}
.cid-taI1vrEVAM .media-container-row .mbr-text {
  color: #c19c1c;
}
