.btn {
  border-width: 2px;
}
.video-wrapper {
  overflow: hidden;
}
body {
  font-family: Inter;
}
.display-1 {
  font-family: 'League Spartan', sans-serif;
  font-size: 3.8rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 4.75rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  line-height: 1.125;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  line-height: 1.14;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 1.3;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.04rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.66rem;
    font-size: calc( 1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.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))));
  }
  .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.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1.25rem 2rem;
  border-radius: 4px;
  padding: 0.75rem 1.5rem;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1.25rem 2rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #272b2e !important;
}
.bg-success {
  background-color: #5e17eb !important;
}
.bg-info {
  background-color: #ffffff !important;
}
.bg-warning {
  background-color: #ff9e08 !important;
}
.bg-danger {
  background-color: #a997ce !important;
}
.btn-primary {
  background: linear-gradient(140deg, #272b2e, #1b1e20 50%, #565f65) !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #272b2e !important;
  border-color: #272b2e !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: inherit;
  background-color: #3e454a !important;
  border-color: #3e454a !important;
  box-shadow: none;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #3e454a !important;
  border-color: #3e454a !important;
}
.btn-secondary {
  background: linear-gradient(140deg, #f96e47, #f85b2e 50%, #fcbcaa) !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #f96e47 !important;
  border-color: #f96e47 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: inherit;
  background-color: #fb9578 !important;
  border-color: #fb9578 !important;
  box-shadow: none;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #fb9578 !important;
  border-color: #fb9578 !important;
}
.btn-info {
  background: linear-gradient(140deg, #ffffff, #f2f2f2 50%, #ffffff) !important;
}
.btn-info,
.btn-info:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: none;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: inherit;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: none;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-success {
  background: linear-gradient(140deg, #5e17eb, #5412d6 50%, #9f75f3) !important;
}
.btn-success,
.btn-success:active {
  background-color: #5e17eb !important;
  border-color: #5e17eb !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: inherit;
  background-color: #7f46ef !important;
  border-color: #7f46ef !important;
  box-shadow: none;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #7f46ef !important;
  border-color: #7f46ef !important;
}
.btn-warning {
  background: linear-gradient(140deg, #ff9e08, #ed9000 50%, #ffc66e) !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ff9e08 !important;
  border-color: #ff9e08 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: inherit;
  background-color: #ffb23b !important;
  border-color: #ffb23b !important;
  box-shadow: none;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #ffb23b !important;
  border-color: #ffb23b !important;
}
.btn-danger {
  background: linear-gradient(140deg, #a997ce, #9b86c6 50%, #e2dcef) !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #a997ce !important;
  border-color: #a997ce !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: inherit;
  background-color: #c6bade !important;
  border-color: #c6bade !important;
  box-shadow: none;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #c6bade !important;
  border-color: #c6bade !important;
}
.btn-white {
  background: linear-gradient(140deg, #ffffff, #f2f2f2 50%, #ffffff) !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: none;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: inherit;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: none;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-black {
  background: linear-gradient(140deg, #232323, #161616 50%, #565656) !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: inherit;
  background-color: #3d3d3d !important;
  border-color: #3d3d3d !important;
  box-shadow: none;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #3d3d3d !important;
  border-color: #3d3d3d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #272b2e;
  color: #272b2e;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: #000000 !important;
  box-shadow: none !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #272b2e !important;
  border-color: #272b2e !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #f96e47;
  color: #f96e47;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #e23707 !important;
  background-color: transparent !important;
  border-color: #e23707 !important;
  box-shadow: none !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #f96e47 !important;
  border-color: #f96e47 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent !important;
  border-color: #d4d4d4 !important;
  box-shadow: none !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #5e17eb;
  color: #5e17eb;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #3e0e9e !important;
  background-color: transparent !important;
  border-color: #3e0e9e !important;
  box-shadow: none !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #5e17eb !important;
  border-color: #5e17eb !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ff9e08;
  color: #ff9e08;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #b06b00 !important;
  background-color: transparent !important;
  border-color: #b06b00 !important;
  box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9e08 !important;
  border-color: #ff9e08 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #a997ce;
  color: #a997ce;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #785cb2 !important;
  background-color: transparent !important;
  border-color: #785cb2 !important;
  box-shadow: none !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #a997ce !important;
  border-color: #a997ce !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;
  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;
  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: #272b2e !important;
}
.text-secondary {
  color: #f96e47 !important;
}
.text-success {
  color: #5e17eb !important;
}
.text-info {
  color: #ffffff !important;
}
.text-warning {
  color: #ff9e08 !important;
}
.text-danger {
  color: #a997ce !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #d33407 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #380c90 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #cccccc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #a16200 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #7052ad !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: #272b2e;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ffffff;
}
.alert-warning {
  background-color: #ff9e08;
}
.alert-danger {
  background-color: #a997ce;
}
.mbr-section-btn .btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #272b2e;
  border-color: #272b2e;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #272b2e;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #dadde0;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #e0d3fb;
}
.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: #ffeed4;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 400;
  border-radius: 100px !important;
}
.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: #272b2e !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #272b2e;
}
/* Forms */
.mbr-form .input-group-btn .btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn .btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #272b2e;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #272b2e;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #232323;
  border-bottom-color: #232323;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #272b2e;
  border-bottom-color: #272b2e;
}
.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: #272b2e !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: #f96e47 !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='%23272b2e' %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;
}
.mbr-section-btn .btn {
  padding: 14px 64px;
  border-radius: 3.5rem;
}
@media (max-width: 992px) {
  .mbr-section-btn .btn {
    padding: 14px;
  }
}
.mbr-section-btn .btn-primary,
.mbr-section-btn .btn-secondary,
.mbr-section-btn .btn-success,
.mbr-section-btn .btn-info,
.mbr-section-btn .btn-warning,
.mbr-section-btn .btn-danger,
.mbr-section-btn .btn-black,
.mbr-section-btn .btn-white {
  border: none !important;
}
.mbr-section-btn .btn-primary:hover,
.mbr-section-btn .btn-secondary:hover,
.mbr-section-btn .btn-success:hover,
.mbr-section-btn .btn-info:hover,
.mbr-section-btn .btn-warning:hover,
.mbr-section-btn .btn-danger:hover,
.mbr-section-btn .btn-black:hover,
.mbr-section-btn .btn-white:hover,
.mbr-section-btn .btn-primary:focus,
.mbr-section-btn .btn-secondary:focus,
.mbr-section-btn .btn-success:focus,
.mbr-section-btn .btn-info:focus,
.mbr-section-btn .btn-warning:focus,
.mbr-section-btn .btn-danger:focus,
.mbr-section-btn .btn-black:focus,
.mbr-section-btn .btn-white:focus {
  opacity: .75 !important;
}
.mbr-section-btn .btn-primary-outline:hover,
.mbr-section-btn .btn-secondary-outline:hover,
.mbr-section-btn .btn-success-outline:hover,
.mbr-section-btn .btn-info-outline:hover,
.mbr-section-btn .btn-warning-outline:hover,
.mbr-section-btn .btn-danger-outline:hover,
.mbr-section-btn .btn-black-outline:hover,
.mbr-section-btn .btn-white-outline:hover,
.mbr-section-btn .btn-primary-outline:focus,
.mbr-section-btn .btn-secondary-outline:focus,
.mbr-section-btn .btn-success-outline:focus,
.mbr-section-btn .btn-info-outline:focus,
.mbr-section-btn .btn-warning-outline:focus,
.mbr-section-btn .btn-danger-outline:focus,
.mbr-section-btn .btn-black-outline:focus,
.mbr-section-btn .btn-white-outline:focus {
  opacity: .6 !important;
}
img,
.card-wrap,
.card-wrapper,
.video-wrapper,
.mbr-figure iframe,
.google-map iframe,
.slide-content,
.plan,
.card,
.item-wrapper,
.item-wrap,
.item-content,
.form-wrapper,
.embla {
  border-radius: 1rem !important;
}
.item-tag {
  border-radius: 12.5rem;
}
.nav.nav-tabs .nav-link {
  border-radius: .5rem !important;
}
.form-control {
  border-radius: .5rem !important;
}
.cid-v3LaOErBZ3 {
  background-color: #190f2a;
  overflow: hidden;
}
.cid-v3LaOErBZ3 .card {
  position: relative;
}
.cid-v3LaOErBZ3 .card .gradient-wrap {
  position: absolute;
  bottom: -40%;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-image: linear-gradient(90deg, #1c4eff, #ca45ff 50%, #fe881b);
  filter: blur(4rem);
  pointer-events: none;
}
.cid-v3LaOErBZ3 .card .gradient-wrap::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #190f2a;
  filter: blur(5rem);
  pointer-events: none;
}
.cid-v3LaOErBZ3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3LaOErBZ3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3LaOErBZ3 .content-wrapper {
  position: relative;
  z-index: 1;
  width: 60%;
  margin: 0 auto;
}
@media (max-width: 1440px) {
  .cid-v3LaOErBZ3 .content-wrapper {
    width: 80%;
  }
}
@media (max-width: 992px) {
  .cid-v3LaOErBZ3 .content-wrapper {
    width: 100%;
  }
}
.cid-v3LaOErBZ3 .content-wrapper .label-wrapper {
  margin-bottom: 56px;
}
@media (max-width: 992px) {
  .cid-v3LaOErBZ3 .content-wrapper .label-wrapper {
    margin-bottom: 28px;
  }
}
.cid-v3LaOErBZ3 .content-wrapper .label-wrapper .mbr-label {
  display: inline-block;
  margin-bottom: 0;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, #2ba7ff, #ca45ff 50%, #fe881b);
}
.cid-v3LaOErBZ3 .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-v3LaOErBZ3 .content-wrapper .mbr-section-title {
    margin-bottom: 18px;
  }
}
.cid-v3LaOErBZ3 .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v3LaOErBZ3 .content-wrapper .mbr-section-btn {
  margin-top: 46px;
}
@media (max-width: 992px) {
  .cid-v3LaOErBZ3 .content-wrapper .mbr-section-btn {
    margin-top: 18px;
  }
}
.cid-v3LaOErBZ3 .mbr-label,
.cid-v3LaOErBZ3 .label-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-v3LaOErBZ3 .mbr-section-title {
  color: #ffffff;
}
.cid-v3LaOErBZ3 .mbr-text {
  color: #beaee0;
  text-align: center;
}
.cid-v3LaOErBZ3 .mbr-section-title,
.cid-v3LaOErBZ3 .mbr-section-btn {
  text-align: center;
}
.cid-v3LaPqNtrH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #190f2a;
}
.cid-v3LaPqNtrH .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3LaPqNtrH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3LaPqNtrH .title-wrapper {
  position: relative;
  z-index: 1;
  width: 60%;
  margin: 0 auto;
  margin-bottom: 82px;
}
@media (max-width: 1440px) {
  .cid-v3LaPqNtrH .title-wrapper {
    width: 80%;
  }
}
@media (max-width: 992px) {
  .cid-v3LaPqNtrH .title-wrapper {
    width: 100%;
    margin-bottom: 28px;
  }
}
.cid-v3LaPqNtrH .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v3LaPqNtrH .title-wrapper .subtitle-wrapper .mbr-section-subtitle {
  display: inline-block;
  margin-bottom: 0;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, #2ba7ff, #ca45ff 50%, #fe881b);
}
.cid-v3LaPqNtrH .title-wrapper .mbr-text {
  margin-top: 22px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v3LaPqNtrH .title-wrapper .mbr-text {
    margin-top: 18px;
  }
}
.cid-v3LaPqNtrH .items-wrapper .item {
  margin-bottom: 82px;
}
.cid-v3LaPqNtrH .items-wrapper .item:last-child {
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .cid-v3LaPqNtrH .items-wrapper .item {
    margin-bottom: 46px;
  }
  .cid-v3LaPqNtrH .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 992px) {
  .cid-v3LaPqNtrH .items-wrapper .item {
    margin-bottom: 16px;
  }
  .cid-v3LaPqNtrH .items-wrapper .item:last-child {
    margin-bottom: 16px;
  }
}
.cid-v3LaPqNtrH .items-wrapper .item .item-wrapper {
  min-height: 460px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 82px;
  background-image: radial-gradient(circle at 5% 113%, #362c52, #190f2a 110%);
}
@media (max-width: 1440px) {
  .cid-v3LaPqNtrH .items-wrapper .item .item-wrapper {
    padding: 46px;
  }
}
@media (max-width: 992px) {
  .cid-v3LaPqNtrH .items-wrapper .item .item-wrapper {
    min-height: auto;
    padding: 18px;
  }
}
.cid-v3LaPqNtrH .items-wrapper .item .item-wrapper .label-wrapper {
  position: relative;
  z-index: 2;
  margin-bottom: 22px;
}
.cid-v3LaPqNtrH .items-wrapper .item .item-wrapper .label-wrapper .label-wrap {
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  background-color: #362c52;
}
@media (max-width: 992px) {
  .cid-v3LaPqNtrH .items-wrapper .item .item-wrapper .label-wrapper .label-wrap {
    padding: 10px 16px;
  }
}
.cid-v3LaPqNtrH .items-wrapper .item .item-wrapper .label-wrapper .label-wrap .iconfont-wrapper {
  display: inline-flex;
  margin-right: 14px;
}
.cid-v3LaPqNtrH .items-wrapper .item .item-wrapper .label-wrapper .label-wrap .iconfont-wrapper .mbr-iconfont {
  font-size: 19px;
}
.cid-v3LaPqNtrH .items-wrapper .item .item-wrapper .label-wrapper .label-wrap .item-label {
  margin-bottom: 0;
}
.cid-v3LaPqNtrH .items-wrapper .item .item-wrapper .card-box {
  position: relative;
}
.cid-v3LaPqNtrH .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-v3LaPqNtrH .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 22px;
}
.cid-v3LaPqNtrH .items-wrapper .item .item-wrapper .card-box .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-v3LaPqNtrH .image-wrapper {
  padding: 0 115px;
  height: 100%;
}
@media (max-width: 1440px) {
  .cid-v3LaPqNtrH .image-wrapper {
    padding: 0 46px;
  }
}
@media (max-width: 992px) {
  .cid-v3LaPqNtrH .image-wrapper {
    padding: 0;
  }
}
.cid-v3LaPqNtrH .image-wrapper img {
  position: sticky;
  top: 91px;
  height: 460px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 1440px) {
  .cid-v3LaPqNtrH .image-wrapper img {
    top: 46px;
  }
}
@media (max-width: 992px) {
  .cid-v3LaPqNtrH .image-wrapper img {
    height: 300px;
  }
}
.cid-v3LaPqNtrH .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v3LaPqNtrH .mbr-section-subtitle,
.cid-v3LaPqNtrH .subtitle-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-v3LaPqNtrH .mbr-text {
  color: #a997ce;
  text-align: center;
}
.cid-v3LaPqNtrH .item-label {
  color: #ffffff;
}
.cid-v3LaPqNtrH .item-text {
  color: #a997ce;
}
.cid-v3LaRHYnqo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #190f2a;
}
.cid-v3LaRHYnqo .mbr-section-title {
  margin-bottom: 40px;
  color: #ffffff;
  text-align: center;
}
.cid-v3LaRHYnqo .item:focus,
.cid-v3LaRHYnqo span:focus {
  outline: none;
}
.cid-v3LaRHYnqo .item {
  cursor: pointer;
}
.cid-v3LaRHYnqo .grid-container {
  grid-row-gap: 40px;
}
@media (max-width: 992px) {
  .cid-v3LaRHYnqo .grid-container {
    grid-row-gap: 20px;
  }
}
.cid-v3LaRHYnqo .grid-container-1,
.cid-v3LaRHYnqo .grid-container-2,
.cid-v3LaRHYnqo .grid-container-3 {
  gap: 0 40px;
}
@media (max-width: 992px) {
  .cid-v3LaRHYnqo .grid-container-1,
  .cid-v3LaRHYnqo .grid-container-2,
  .cid-v3LaRHYnqo .grid-container-3 {
    gap: 0 20px;
  }
}
.cid-v3LaRHYnqo .content-head {
  max-width: 800px;
}
.cid-v3LaRHYnqo .container,
.cid-v3LaRHYnqo .container-fluid {
  overflow: hidden;
}
.cid-v3LaRHYnqo .grid-container {
  display: grid;
  transform: translate3d(-3rem, 0, 0);
  width: 115vw;
  grid-column-gap: 1rem;
}
.cid-v3LaRHYnqo .grid-item {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.cid-v3LaRHYnqo .grid-item img {
  min-width: 30vw;
  max-width: 100%;
  height: 500px;
  object-fit: cover;
}
@media (max-width: 1200px) {
  .cid-v3LaRHYnqo .grid-item img {
    height: 350px;
  }
}
@media (max-width: 767px) {
  .cid-v3LaRHYnqo .grid-item img {
    min-width: 35vw;
    height: 150px;
  }
}
.cid-v3LaRHYnqo .grid-item:nth-child(2) img {
  height: 400px;
}
@media (max-width: 1200px) {
  .cid-v3LaRHYnqo .grid-item:nth-child(2) img {
    height: 250px;
  }
}
@media (max-width: 767px) {
  .cid-v3LaRHYnqo .grid-item:nth-child(2) img {
    height: 150px;
  }
}
.cid-v3LaRHYnqo .grid-item:nth-child(3) img {
  height: 450px;
}
@media (max-width: 1200px) {
  .cid-v3LaRHYnqo .grid-item:nth-child(3) img {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .cid-v3LaRHYnqo .grid-item:nth-child(3) img {
    height: 150px;
  }
}
.cid-v3LaRHYnqo .grid-item:nth-child(4) img {
  height: 350px;
}
@media (max-width: 1200px) {
  .cid-v3LaRHYnqo .grid-item:nth-child(4) img {
    height: 200px;
  }
}
@media (max-width: 767px) {
  .cid-v3LaRHYnqo .grid-item:nth-child(4) img {
    height: 150px;
  }
}
.cid-v3LaRHYnqo .grid-container-1,
.cid-v3LaRHYnqo .grid-container-2,
.cid-v3LaRHYnqo .grid-container-3 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
}
.cid-v3LaRHYnqo .grid-container-1 {
  align-items: flex-end;
}
.cid-v3LaRHYnqo .grid-container-2 {
  align-items: flex-start;
}
.cid-v3LaRigval {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #190f2a;
}
.cid-v3LaRigval .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3LaRigval .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3LaRigval .items-wrapper {
  justify-content: center;
  margin: 0 -40px;
}
.cid-v3LaRigval .items-wrapper .item {
  position: relative;
  padding: 0 40px;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-v3LaRigval .items-wrapper .item {
    margin-bottom: 40px;
  }
}
.cid-v3LaRigval .items-wrapper .item .item-wrapper .icon-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-v3LaRigval .items-wrapper .item .item-wrapper .icon-wrapper {
    margin-bottom: 24px;
  }
}
.cid-v3LaRigval .items-wrapper .item .item-wrapper .icon-wrapper .mbr-iconfont {
  width: 56px;
  height: 56px;
  min-width: 56px;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #1c1c1c;
}
.cid-v3LaRigval .items-wrapper .item .item-wrapper .item-title {
  margin-bottom: 16px;
}
.cid-v3LaRigval .items-wrapper .item .item-wrapper .item-text {
  margin-bottom: 0;
}
.cid-v3LaRigval .items-wrapper .item .item-wrapper .mbr-section-btn {
  margin-top: 16px;
}
.cid-v3LaRigval .items-wrapper .item .item-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-v3LaRigval .item-title {
  color: #ffffff;
}
.cid-v3LaRigval .item-text {
  color: #beaee0;
}
.cid-v4Sz8oMl1N {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #190f2a;
}
.cid-v4Sz8oMl1N .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4Sz8oMl1N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4Sz8oMl1N .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 40%;
  margin-bottom: 40px;
}
@media (max-width: 1440px) {
  .cid-v4Sz8oMl1N .title-wrapper .mbr-section-title {
    width: 60%;
    margin-bottom: 30px;
  }
}
@media (max-width: 992px) {
  .cid-v4Sz8oMl1N .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 30px;
  }
}
.cid-v4Sz8oMl1N .border-wrapper {
  width: 100%;
  height: 1px;
  background-color: #bac0cc;
  margin-bottom: 20px;
}
.cid-v4Sz8oMl1N .items-wrapper {
  margin: 0;
}
.cid-v4Sz8oMl1N .items-wrapper .item {
  padding: 0;
  margin-bottom: 20px;
}
.cid-v4Sz8oMl1N .items-wrapper .item:nth-child(3n) .item-wrapper {
  border-right: none;
}
@media (max-width: 992px) {
  .cid-v4Sz8oMl1N .items-wrapper .item:nth-child(3n) .item-wrapper {
    border-right: 1px solid #bac0cc;
  }
}
.cid-v4Sz8oMl1N .items-wrapper .item .item-wrapper {
  padding: 0 20px 20px 0;
  height: 100%;
  padding: 0 20px 20px 20px;
  border-right: 1px solid #bac0cc;
  border-bottom: 1px solid #bac0cc;
}
@media (max-width: 992px) {
  .cid-v4Sz8oMl1N .items-wrapper .item .item-wrapper {
    padding: 0 20px 20px 0;
  }
}
.cid-v4Sz8oMl1N .items-wrapper .item .item-wrapper .item-content .number-wrapper {
  padding-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-v4Sz8oMl1N .items-wrapper .item .item-wrapper .item-content .number-wrapper {
    padding-bottom: 20px;
  }
}
.cid-v4Sz8oMl1N .items-wrapper .item .item-wrapper .item-content .number-wrapper .item-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 5px;
  border-radius: 1rem;
  background-color: #d7d2d2;
}
.cid-v4Sz8oMl1N .items-wrapper .item .item-wrapper .item-content .item-title {
  margin-bottom: 10px;
}
.cid-v4Sz8oMl1N .items-wrapper .item .item-wrapper .item-content .text-wrapper .item-text {
  display: inline-block;
  width: 90%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v4Sz8oMl1N .items-wrapper .item .item-wrapper .item-content .text-wrapper .item-text {
    width: 100%;
  }
}
.cid-v4Sz8oMl1N .items-wrapper .item .item-wrapper .item-content .mbr-section-btn {
  margin-top: 20px;
}
.cid-v4Sz8oMl1N .items-wrapper .item .item-wrapper .item-content .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-v4Sz8oMl1N .mbr-section-title {
  color: #093388;
}
.cid-v4Sz8oMl1N .item-number {
  color: #f4f4f4;
}
.cid-v4Sz8oMl1N .item-title {
  color: #093388;
}
.cid-v4Sz8oMl1N .item-text {
  color: #58595b;
}
.cid-v4Sz8oMl1N .mbr-section-title,
.cid-v4Sz8oMl1N .title-wrapper {
  color: #f9f8f8;
}
.cid-v4Sz8oMl1N .item-title,
.cid-v4Sz8oMl1N .mbr-section-btn {
  color: #ffffff;
}
.cid-v4Sz8oMl1N .item-text,
.cid-v4Sz8oMl1N .text-wrapper {
  color: #beaee0;
}
.cid-v4Sz8oMl1N .item-number,
.cid-v4Sz8oMl1N .number-wrapper {
  color: #190f2a;
}
.cid-v3LaQT2Q5O {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #190f2a;
  overflow: hidden;
}
.cid-v3LaQT2Q5O .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3LaQT2Q5O .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3LaQT2Q5O .row {
  flex-direction: row-reverse;
}
.cid-v3LaQT2Q5O .col-text {
  position: relative;
  z-index: 10;
}
@media (min-width: 992px) {
  .cid-v3LaQT2Q5O .col-text {
    padding-left: 28px;
  }
}
@media (max-width: 991px) {
  .cid-v3LaQT2Q5O .col-text {
    order: 2;
  }
}
.cid-v3LaQT2Q5O .col-img {
  position: relative;
}
@media (min-width: 992px) {
  .cid-v3LaQT2Q5O .col-img {
    padding-right: 28px;
  }
}
@media (max-width: 991px) {
  .cid-v3LaQT2Q5O .col-img {
    order: 1;
  }
}
.cid-v3LaQT2Q5O .card-title {
  color: #161616;
  margin-top: 1rem;
  margin-bottom: 0 !important;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-v3LaQT2Q5O .card-title {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    text-align: center !important;
  }
}
.cid-v3LaQT2Q5O .mbr-text {
  color: #161616;
  margin-top: 2rem;
  margin-bottom: 0 !important;
  width: 100%;
  max-width: 480px;
}
@media (max-width: 991px) {
  .cid-v3LaQT2Q5O .mbr-text {
    text-align: center !important;
    padding-right: 0;
    margin-top: 1.5rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.cid-v3LaQT2Q5O .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 991px) {
  .cid-v3LaQT2Q5O .mbr-section-btn {
    text-align: center !important;
  }
}
@media (max-width: 575px) {
  .cid-v3LaQT2Q5O .mbr-section-btn {
    width: 100%;
  }
}
.cid-v3LaQT2Q5O .image-wrapper {
  display: flex;
  position: relative;
  z-index: 10;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  height: 306px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-v3LaQT2Q5O .image-wrapper {
    height: 216px;
    margin-bottom: 24px;
  }
}
@media (max-width: 575px) {
  .cid-v3LaQT2Q5O .image-wrapper {
    height: auto;
  }
}
.cid-v3LaQT2Q5O .image-wrapper img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
}
.cid-v3LaQT2Q5O .circle-blur {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  display: block;
  width: 560px;
  height: 560px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  background-image: linear-gradient(132deg, #22a5e5 27%, #b776d6 50%, #ff398a 79%);
  opacity: .97;
  -webkit-filter: blur(64px) blur(64px);
  filter: blur(64px) blur(64px);
}
@media (max-width: 991px) {
  .cid-v3LaQT2Q5O .circle-blur {
    width: 320px;
    height: 320px;
    top: -10%;
    right: -5%;
    transform: translate(0, 0);
  }
}
.cid-v3LaQT2Q5O .card-title,
.cid-v3LaQT2Q5O .mbr-section-btn {
  color: #f9f8f8;
}
.cid-v3LaQT2Q5O .mbr-text,
.cid-v3LaQT2Q5O .link-wrap {
  color: #beaee0;
}
.cid-v37aS18UXj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #190f2a;
}
.cid-v37aS18UXj .mbr-fallback-image.disabled {
  display: none;
}
.cid-v37aS18UXj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v37aS18UXj .content-wrapper {
  position: relative;
  z-index: 1;
  width: 60%;
  margin: 0 auto;
}
@media (max-width: 1440px) {
  .cid-v37aS18UXj .content-wrapper {
    width: 80%;
  }
}
@media (max-width: 992px) {
  .cid-v37aS18UXj .content-wrapper {
    width: 100%;
  }
}
.cid-v37aS18UXj .content-wrapper .content-wrap {
  margin-bottom: 82px;
}
@media (max-width: 992px) {
  .cid-v37aS18UXj .content-wrapper .content-wrap {
    margin-bottom: 28px;
  }
}
.cid-v37aS18UXj .content-wrapper .content-wrap .logo-wrapper {
  margin-bottom: 42px;
}
@media (max-width: 992px) {
  .cid-v37aS18UXj .content-wrapper .content-wrap .logo-wrapper {
    margin-bottom: 22px;
  }
}
.cid-v37aS18UXj .content-wrapper .content-wrap .logo-wrapper img {
  display: inline-flex;
  width: 54px;
  height: 54px;
  border-radius: 100%;
  object-fit: cover;
}
.cid-v37aS18UXj .content-wrapper .content-wrap .title-wrapper .mbr-section-title {
  display: inline-flex;
  margin-bottom: 42px;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, #2ba7ff, #ca45ff 50%, #fe881b);
}
@media (max-width: 992px) {
  .cid-v37aS18UXj .content-wrapper .content-wrap .title-wrapper .mbr-section-title {
    margin-bottom: 22px;
  }
}
.cid-v37aS18UXj .content-wrapper .content-wrap .social-wrapper {
  margin-bottom: 42px;
}
@media (max-width: 992px) {
  .cid-v37aS18UXj .content-wrapper .content-wrap .social-wrapper {
    margin-bottom: 22px;
  }
}
.cid-v37aS18UXj .content-wrapper .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}
.cid-v37aS18UXj .content-wrapper .content-wrap .social-wrapper .social-wrap .soc-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 130px;
  background-color: #291f39;
  transition: all .5s ease;
}
@media (max-width: 992px) {
  .cid-v37aS18UXj .content-wrapper .content-wrap .social-wrapper .social-wrap .soc-item {
    width: 80px;
    height: 80px;
  }
}
.cid-v37aS18UXj .content-wrapper .content-wrap .social-wrapper .social-wrap .soc-item:hover a .mbr-iconfont,
.cid-v37aS18UXj .content-wrapper .content-wrap .social-wrapper .social-wrap .soc-item:focus a .mbr-iconfont {
  transform: scale(1.2);
}
.cid-v37aS18UXj .content-wrapper .content-wrap .social-wrapper .social-wrap .soc-item a {
  position: relative;
  z-index: 1;
  display: block;
}
.cid-v37aS18UXj .content-wrapper .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: inline-flex;
  font-size: 54px;
  transition: all 0.3s ease-in-out;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, #1c4eff, #ca45ff 50%, #fe881b);
}
@media (max-width: 992px) {
  .cid-v37aS18UXj .content-wrapper .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
    font-size: 32px;
  }
}
.cid-v37aS18UXj .content-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v37aS18UXj .mbr-section-title {
  color: #ffffff;
}
.cid-v37aS18UXj .mbr-copy {
  color: #a997ce;
  text-align: center;
}
.cid-v37aS18UXj .mbr-section-title,
.cid-v37aS18UXj .logo-wrapper,
.cid-v37aS18UXj .social-wrapper,
.cid-v37aS18UXj .title-wrapper {
  text-align: center;
}
.cid-uYjHwcqT0h {
  padding-top: 12rem;
  padding-bottom: 7rem;
  background-color: #232323;
  position: relative;
  overflow: hidden;
}
.cid-uYjHwcqT0h::before {
  content: '';
  position: absolute;
  right: -14%;
  bottom: 0;
  width: 550px;
  height: 550px;
  border-radius: 100%;
  background-image: linear-gradient(#8caff0 -10%, transparent 95%);
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uYjHwcqT0h::before {
    opacity: .4;
  }
}
.cid-uYjHwcqT0h::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -20%;
  width: 550px;
  height: 550px;
  border-radius: 100%;
  background-image: linear-gradient(90deg, #ff398a -10%, transparent 95%);
}
@media (max-width: 992px) {
  .cid-uYjHwcqT0h::after {
    opacity: .4;
  }
}
.cid-uYjHwcqT0h .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYjHwcqT0h .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uYjHwcqT0h .container {
    padding: 0 16px;
  }
}
.cid-uYjHwcqT0h .row {
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.cid-uYjHwcqT0h .row .card {
  justify-content: flex-end;
}
.cid-uYjHwcqT0h .title-wrapper {
  margin-bottom: 246px;
}
@media (max-width: 1200px) {
  .cid-uYjHwcqT0h .title-wrapper {
    margin-bottom: 148px;
  }
}
@media (max-width: 992px) {
  .cid-uYjHwcqT0h .title-wrapper {
    margin-bottom: 90px;
  }
}
.cid-uYjHwcqT0h .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uYjHwcqT0h .title-wrapper .mbr-section-title span {
  color: #ff398a;
}
.cid-uYjHwcqT0h .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uYjHwcqT0h .text-wrapper .text_2 {
  margin-top: 32px;
}
.cid-uYjHwcqT0h .text-wrapper .mbr-section-btn {
  margin-top: 14px;
}
.cid-uYjHwcqT0h .text-wrapper .mbr-section-btn .btn-primary-outline,
.cid-uYjHwcqT0h .text-wrapper .mbr-section-btn .btn-secondary-outline,
.cid-uYjHwcqT0h .text-wrapper .mbr-section-btn .btn-success-outline,
.cid-uYjHwcqT0h .text-wrapper .mbr-section-btn .btn-info-outline,
.cid-uYjHwcqT0h .text-wrapper .mbr-section-btn .btn-warning-outline,
.cid-uYjHwcqT0h .text-wrapper .mbr-section-btn .btn-danger-outline,
.cid-uYjHwcqT0h .text-wrapper .mbr-section-btn .btn-black-outline,
.cid-uYjHwcqT0h .text-wrapper .mbr-section-btn .btn-white-outline {
  border: none !important;
  padding: 0;
  border-radius: 0;
}
.cid-uYjHwcqT0h .text-wrapper .mbr-section-btn .btn-primary-outline .mbr-iconfont,
.cid-uYjHwcqT0h .text-wrapper .mbr-section-btn .btn-secondary-outline .mbr-iconfont,
.cid-uYjHwcqT0h .text-wrapper .mbr-section-btn .btn-success-outline .mbr-iconfont,
.cid-uYjHwcqT0h .text-wrapper .mbr-section-btn .btn-info-outline .mbr-iconfont,
.cid-uYjHwcqT0h .text-wrapper .mbr-section-btn .btn-warning-outline .mbr-iconfont,
.cid-uYjHwcqT0h .text-wrapper .mbr-section-btn .btn-danger-outline .mbr-iconfont,
.cid-uYjHwcqT0h .text-wrapper .mbr-section-btn .btn-black-outline .mbr-iconfont,
.cid-uYjHwcqT0h .text-wrapper .mbr-section-btn .btn-white-outline .mbr-iconfont {
  transform: rotate(0deg);
}
.cid-uYjHwcqT0h .text-wrapper .mbr-section-btn .btn-primary-outline:hover,
.cid-uYjHwcqT0h .text-wrapper .mbr-section-btn .btn-secondary-outline:hover,
.cid-uYjHwcqT0h .text-wrapper .mbr-section-btn .btn-success-outline:hover,
.cid-uYjHwcqT0h .text-wrapper .mbr-section-btn .btn-info-outline:hover,
.cid-uYjHwcqT0h .text-wrapper .mbr-section-btn .btn-warning-outline:hover,
.cid-uYjHwcqT0h .text-wrapper .mbr-section-btn .btn-danger-outline:hover,
.cid-uYjHwcqT0h .text-wrapper .mbr-section-btn .btn-black-outline:hover,
.cid-uYjHwcqT0h .text-wrapper .mbr-section-btn .btn-white-outline:hover,
.cid-uYjHwcqT0h .text-wrapper .mbr-section-btn .btn-primary-outline:focus,
.cid-uYjHwcqT0h .text-wrapper .mbr-section-btn .btn-secondary-outline:focus,
.cid-uYjHwcqT0h .text-wrapper .mbr-section-btn .btn-success-outline:focus,
.cid-uYjHwcqT0h .text-wrapper .mbr-section-btn .btn-info-outline:focus,
.cid-uYjHwcqT0h .text-wrapper .mbr-section-btn .btn-warning-outline:focus,
.cid-uYjHwcqT0h .text-wrapper .mbr-section-btn .btn-danger-outline:focus,
.cid-uYjHwcqT0h .text-wrapper .mbr-section-btn .btn-black-outline:focus,
.cid-uYjHwcqT0h .text-wrapper .mbr-section-btn .btn-white-outline:focus {
  background-color: transparent !important;
}
.cid-uYjHwcqT0h .text-wrapper .mbr-section-btn .btn-primary-outline:hover .mbr-iconfont,
.cid-uYjHwcqT0h .text-wrapper .mbr-section-btn .btn-secondary-outline:hover .mbr-iconfont,
.cid-uYjHwcqT0h .text-wrapper .mbr-section-btn .btn-success-outline:hover .mbr-iconfont,
.cid-uYjHwcqT0h .text-wrapper .mbr-section-btn .btn-info-outline:hover .mbr-iconfont,
.cid-uYjHwcqT0h .text-wrapper .mbr-section-btn .btn-warning-outline:hover .mbr-iconfont,
.cid-uYjHwcqT0h .text-wrapper .mbr-section-btn .btn-danger-outline:hover .mbr-iconfont,
.cid-uYjHwcqT0h .text-wrapper .mbr-section-btn .btn-black-outline:hover .mbr-iconfont,
.cid-uYjHwcqT0h .text-wrapper .mbr-section-btn .btn-white-outline:hover .mbr-iconfont,
.cid-uYjHwcqT0h .text-wrapper .mbr-section-btn .btn-primary-outline:focus .mbr-iconfont,
.cid-uYjHwcqT0h .text-wrapper .mbr-section-btn .btn-secondary-outline:focus .mbr-iconfont,
.cid-uYjHwcqT0h .text-wrapper .mbr-section-btn .btn-success-outline:focus .mbr-iconfont,
.cid-uYjHwcqT0h .text-wrapper .mbr-section-btn .btn-info-outline:focus .mbr-iconfont,
.cid-uYjHwcqT0h .text-wrapper .mbr-section-btn .btn-warning-outline:focus .mbr-iconfont,
.cid-uYjHwcqT0h .text-wrapper .mbr-section-btn .btn-danger-outline:focus .mbr-iconfont,
.cid-uYjHwcqT0h .text-wrapper .mbr-section-btn .btn-black-outline:focus .mbr-iconfont,
.cid-uYjHwcqT0h .text-wrapper .mbr-section-btn .btn-white-outline:focus .mbr-iconfont {
  transform: translateX(10px);
}
.cid-uYjHwcqT0h .text-wrapper .mbr-section-btn .btn-primary-outline:hover,
.cid-uYjHwcqT0h .text-wrapper .mbr-section-btn .btn-primary-outline:focus {
  color: #272b2e !important;
}
.cid-uYjHwcqT0h .text-wrapper .mbr-section-btn .btn-secondary-outline:hover,
.cid-uYjHwcqT0h .text-wrapper .mbr-section-btn .btn-secondary-outline:focus {
  color: #f96e47 !important;
}
.cid-uYjHwcqT0h .text-wrapper .mbr-section-btn .btn-success-outline:hover,
.cid-uYjHwcqT0h .text-wrapper .mbr-section-btn .btn-success-outline:focus {
  color: #5e17eb !important;
}
.cid-uYjHwcqT0h .text-wrapper .mbr-section-btn .btn-info-outline:hover,
.cid-uYjHwcqT0h .text-wrapper .mbr-section-btn .btn-info-outline:focus {
  color: #ffffff !important;
}
.cid-uYjHwcqT0h .text-wrapper .mbr-section-btn .btn-warning-outline:hover,
.cid-uYjHwcqT0h .text-wrapper .mbr-section-btn .btn-warning-outline:focus {
  color: #ff9e08 !important;
}
.cid-uYjHwcqT0h .text-wrapper .mbr-section-btn .btn-danger-outline:hover,
.cid-uYjHwcqT0h .text-wrapper .mbr-section-btn .btn-danger-outline:focus {
  color: #a997ce !important;
}
.cid-uYjHwcqT0h .text-wrapper .mbr-section-btn .btn-black-outline:hover,
.cid-uYjHwcqT0h .text-wrapper .mbr-section-btn .btn-black-outline:focus {
  color: #000000 !important;
}
.cid-uYjHwcqT0h .text-wrapper .mbr-section-btn .btn-white-outline:hover,
.cid-uYjHwcqT0h .text-wrapper .mbr-section-btn .btn-white-outline:focus {
  color: #ffffff !important;
}
.cid-uYjHwcqT0h .mbr-section-title {
  color: #000000;
}
.cid-uYjHwcqT0h .mbr-text {
  color: #000000;
}
.cid-uYjHwcqT0h .mbr-section-title,
.cid-uYjHwcqT0h .mbr-section-btn-main {
  color: #ffffff;
}
.cid-uYjHwcqT0h .mbr-text,
.cid-uYjHwcqT0h .mbr-section-btn {
  color: #ffffff;
}
.cid-v37aS18UXj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #190f2a;
}
.cid-v37aS18UXj .mbr-fallback-image.disabled {
  display: none;
}
.cid-v37aS18UXj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v37aS18UXj .content-wrapper {
  position: relative;
  z-index: 1;
  width: 60%;
  margin: 0 auto;
}
@media (max-width: 1440px) {
  .cid-v37aS18UXj .content-wrapper {
    width: 80%;
  }
}
@media (max-width: 992px) {
  .cid-v37aS18UXj .content-wrapper {
    width: 100%;
  }
}
.cid-v37aS18UXj .content-wrapper .content-wrap {
  margin-bottom: 82px;
}
@media (max-width: 992px) {
  .cid-v37aS18UXj .content-wrapper .content-wrap {
    margin-bottom: 28px;
  }
}
.cid-v37aS18UXj .content-wrapper .content-wrap .logo-wrapper {
  margin-bottom: 42px;
}
@media (max-width: 992px) {
  .cid-v37aS18UXj .content-wrapper .content-wrap .logo-wrapper {
    margin-bottom: 22px;
  }
}
.cid-v37aS18UXj .content-wrapper .content-wrap .logo-wrapper img {
  display: inline-flex;
  width: 54px;
  height: 54px;
  border-radius: 100%;
  object-fit: cover;
}
.cid-v37aS18UXj .content-wrapper .content-wrap .title-wrapper .mbr-section-title {
  display: inline-flex;
  margin-bottom: 42px;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, #2ba7ff, #ca45ff 50%, #fe881b);
}
@media (max-width: 992px) {
  .cid-v37aS18UXj .content-wrapper .content-wrap .title-wrapper .mbr-section-title {
    margin-bottom: 22px;
  }
}
.cid-v37aS18UXj .content-wrapper .content-wrap .social-wrapper {
  margin-bottom: 42px;
}
@media (max-width: 992px) {
  .cid-v37aS18UXj .content-wrapper .content-wrap .social-wrapper {
    margin-bottom: 22px;
  }
}
.cid-v37aS18UXj .content-wrapper .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}
.cid-v37aS18UXj .content-wrapper .content-wrap .social-wrapper .social-wrap .soc-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 130px;
  background-color: #291f39;
  transition: all .5s ease;
}
@media (max-width: 992px) {
  .cid-v37aS18UXj .content-wrapper .content-wrap .social-wrapper .social-wrap .soc-item {
    width: 80px;
    height: 80px;
  }
}
.cid-v37aS18UXj .content-wrapper .content-wrap .social-wrapper .social-wrap .soc-item:hover a .mbr-iconfont,
.cid-v37aS18UXj .content-wrapper .content-wrap .social-wrapper .social-wrap .soc-item:focus a .mbr-iconfont {
  transform: scale(1.2);
}
.cid-v37aS18UXj .content-wrapper .content-wrap .social-wrapper .social-wrap .soc-item a {
  position: relative;
  z-index: 1;
  display: block;
}
.cid-v37aS18UXj .content-wrapper .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: inline-flex;
  font-size: 54px;
  transition: all 0.3s ease-in-out;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, #1c4eff, #ca45ff 50%, #fe881b);
}
@media (max-width: 992px) {
  .cid-v37aS18UXj .content-wrapper .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
    font-size: 32px;
  }
}
.cid-v37aS18UXj .content-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v37aS18UXj .mbr-section-title {
  color: #ffffff;
}
.cid-v37aS18UXj .mbr-copy {
  color: #a997ce;
  text-align: center;
}
.cid-v37aS18UXj .mbr-section-title,
.cid-v37aS18UXj .logo-wrapper,
.cid-v37aS18UXj .social-wrapper,
.cid-v37aS18UXj .title-wrapper {
  text-align: center;
}
.cid-uYjITE3jQJ {
  background-color: #1e2124;
  position: relative;
  overflow: hidden;
}
.cid-uYjITE3jQJ::before {
  content: '';
  position: absolute;
  top: 0;
  right: 4rem;
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background-image: linear-gradient(180deg, #bed3f9 -10%, transparent 70%);
}
.cid-uYjITE3jQJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYjITE3jQJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYjITE3jQJ .container-fluid {
  padding: 0 24px;
}
@media (max-width: 768px) {
  .cid-uYjITE3jQJ .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uYjITE3jQJ .container {
    padding: 0 16px;
  }
}
.cid-uYjITE3jQJ .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-uYjITE3jQJ .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uYjITE3jQJ .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uYjITE3jQJ .mbr-section-title {
  color: #f9f8f8;
}
.cid-uYjITE3jQJ .mbr-text {
  color: #000000;
}
.cid-uYjITE3jQJ .mbr-text,
.cid-uYjITE3jQJ .icon-wrapper {
  color: #f9f8f8;
}
.cid-v37aS18UXj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #190f2a;
}
.cid-v37aS18UXj .mbr-fallback-image.disabled {
  display: none;
}
.cid-v37aS18UXj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v37aS18UXj .content-wrapper {
  position: relative;
  z-index: 1;
  width: 60%;
  margin: 0 auto;
}
@media (max-width: 1440px) {
  .cid-v37aS18UXj .content-wrapper {
    width: 80%;
  }
}
@media (max-width: 992px) {
  .cid-v37aS18UXj .content-wrapper {
    width: 100%;
  }
}
.cid-v37aS18UXj .content-wrapper .content-wrap {
  margin-bottom: 82px;
}
@media (max-width: 992px) {
  .cid-v37aS18UXj .content-wrapper .content-wrap {
    margin-bottom: 28px;
  }
}
.cid-v37aS18UXj .content-wrapper .content-wrap .logo-wrapper {
  margin-bottom: 42px;
}
@media (max-width: 992px) {
  .cid-v37aS18UXj .content-wrapper .content-wrap .logo-wrapper {
    margin-bottom: 22px;
  }
}
.cid-v37aS18UXj .content-wrapper .content-wrap .logo-wrapper img {
  display: inline-flex;
  width: 54px;
  height: 54px;
  border-radius: 100%;
  object-fit: cover;
}
.cid-v37aS18UXj .content-wrapper .content-wrap .title-wrapper .mbr-section-title {
  display: inline-flex;
  margin-bottom: 42px;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, #2ba7ff, #ca45ff 50%, #fe881b);
}
@media (max-width: 992px) {
  .cid-v37aS18UXj .content-wrapper .content-wrap .title-wrapper .mbr-section-title {
    margin-bottom: 22px;
  }
}
.cid-v37aS18UXj .content-wrapper .content-wrap .social-wrapper {
  margin-bottom: 42px;
}
@media (max-width: 992px) {
  .cid-v37aS18UXj .content-wrapper .content-wrap .social-wrapper {
    margin-bottom: 22px;
  }
}
.cid-v37aS18UXj .content-wrapper .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}
.cid-v37aS18UXj .content-wrapper .content-wrap .social-wrapper .social-wrap .soc-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 130px;
  background-color: #291f39;
  transition: all .5s ease;
}
@media (max-width: 992px) {
  .cid-v37aS18UXj .content-wrapper .content-wrap .social-wrapper .social-wrap .soc-item {
    width: 80px;
    height: 80px;
  }
}
.cid-v37aS18UXj .content-wrapper .content-wrap .social-wrapper .social-wrap .soc-item:hover a .mbr-iconfont,
.cid-v37aS18UXj .content-wrapper .content-wrap .social-wrapper .social-wrap .soc-item:focus a .mbr-iconfont {
  transform: scale(1.2);
}
.cid-v37aS18UXj .content-wrapper .content-wrap .social-wrapper .social-wrap .soc-item a {
  position: relative;
  z-index: 1;
  display: block;
}
.cid-v37aS18UXj .content-wrapper .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: inline-flex;
  font-size: 54px;
  transition: all 0.3s ease-in-out;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, #1c4eff, #ca45ff 50%, #fe881b);
}
@media (max-width: 992px) {
  .cid-v37aS18UXj .content-wrapper .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
    font-size: 32px;
  }
}
.cid-v37aS18UXj .content-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v37aS18UXj .mbr-section-title {
  color: #ffffff;
}
.cid-v37aS18UXj .mbr-copy {
  color: #a997ce;
  text-align: center;
}
.cid-v37aS18UXj .mbr-section-title,
.cid-v37aS18UXj .logo-wrapper,
.cid-v37aS18UXj .social-wrapper,
.cid-v37aS18UXj .title-wrapper {
  text-align: center;
}
.cid-v36jAILwqi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #190f2a;
  overflow: hidden;
}
.cid-v36jAILwqi .card {
  position: relative;
  align-items: center;
}
.cid-v36jAILwqi .card .gradient-wrap {
  position: absolute;
  top: -3rem;
  width: 600px;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  background-image: linear-gradient(135deg, #ca45ff, transparent);
  filter: blur(0.5rem);
  pointer-events: none;
}
.cid-v36jAILwqi .card .gradient-wrap::before {
  content: '';
  position: absolute;
  width: 98%;
  height: 98%;
  border-radius: 50%;
  background-color: #190f2a;
  pointer-events: none;
}
.cid-v36jAILwqi .mbr-fallback-image.disabled {
  display: none;
}
.cid-v36jAILwqi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v36jAILwqi .content-wrapper {
  position: relative;
  z-index: 1;
  width: 80%;
  margin: 0 auto;
  margin-bottom: 82px;
}
@media (max-width: 992px) {
  .cid-v36jAILwqi .content-wrapper {
    width: 100%;
    margin-bottom: 28px;
  }
}
.cid-v36jAILwqi .content-wrapper .label-wrapper {
  margin-bottom: 42px;
}
@media (max-width: 992px) {
  .cid-v36jAILwqi .content-wrapper .label-wrapper {
    margin-bottom: 28px;
  }
}
.cid-v36jAILwqi .content-wrapper .label-wrapper .label-wrap {
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  background-color: #362c52;
}
@media (max-width: 992px) {
  .cid-v36jAILwqi .content-wrapper .label-wrapper .label-wrap {
    padding: 10px 16px;
  }
}
.cid-v36jAILwqi .content-wrapper .label-wrapper .label-wrap .iconfont-wrapper {
  display: inline-flex;
  margin-right: 14px;
}
.cid-v36jAILwqi .content-wrapper .label-wrapper .label-wrap .iconfont-wrapper .mbr-iconfont {
  font-size: 19px;
}
.cid-v36jAILwqi .content-wrapper .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-v36jAILwqi .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v36jAILwqi .items-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 -7px;
}
.cid-v36jAILwqi .items-wrapper .item {
  width: 33.33%;
  padding: 0 7px;
  margin-bottom: 14px;
  animation: none !important;
}
@media (max-width: 1440px) {
  .cid-v36jAILwqi .items-wrapper .item {
    width: 50%;
  }
}
@media (max-width: 992px) {
  .cid-v36jAILwqi .items-wrapper .item {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-v36jAILwqi .items-wrapper .item:hover .item-wrapper .item-img img,
.cid-v36jAILwqi .items-wrapper .item:focus .item-wrapper .item-img img {
  opacity: 1;
}
.cid-v36jAILwqi .items-wrapper .item .item-wrapper {
  position: relative;
  height: 100%;
  overflow: hidden !important;
  background-image: radial-gradient(circle at 50% 100%, #362c52, #190f2a 80%);
}
.cid-v36jAILwqi .items-wrapper .item .item-wrapper .item-img img {
  height: 350px;
  width: 100%;
  object-fit: cover;
  border-radius: 0 !important;
  transition: all .5s ease;
  opacity: .3;
}
@media (max-width: 992px) {
  .cid-v36jAILwqi .items-wrapper .item .item-wrapper .item-img img {
    height: 300px;
  }
}
.cid-v36jAILwqi .items-wrapper .item .item-wrapper .card-box {
  padding: 46px;
}
@media (max-width: 992px) {
  .cid-v36jAILwqi .items-wrapper .item .item-wrapper .card-box {
    padding: 18px;
  }
}
.cid-v36jAILwqi .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 22px;
}
.cid-v36jAILwqi .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-v36jAILwqi .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 22px;
  width: 100%;
}
.cid-v36jAILwqi .items-wrapper .item .item-wrapper .card-box .mbr-section-btn .btn {
  width: 100%;
  margin-bottom: 0;
}
.cid-v36jAILwqi .mbr-label,
.cid-v36jAILwqi .label-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-v36jAILwqi .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v36jAILwqi .item-title {
  color: #ffffff;
}
.cid-v36jAILwqi .item-text {
  color: #a997ce;
}
.cid-v36jp7eIWa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #190f2a;
  overflow: hidden;
  position: relative;
}
.cid-v36jp7eIWa .gradient-wrap {
  position: absolute;
  bottom: -30%;
  left: 0;
  width: 100%;
  height: 70%;
  border-radius: 100%;
  background-image: linear-gradient(180deg, #1c4eff 0, #ca45ff 40%, #ffffff 0);
  filter: blur(8rem);
  pointer-events: none;
}
@media (max-width: 992px) {
  .cid-v36jp7eIWa .gradient-wrap {
    bottom: -25%;
    height: 100%;
  }
}
.cid-v36jp7eIWa .mbr-fallback-image.disabled {
  display: none;
}
.cid-v36jp7eIWa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v36jp7eIWa .content-wrapper {
  position: relative;
  z-index: 1;
  width: 60%;
  margin: 0 auto;
  margin-bottom: 82px;
}
@media (max-width: 1440px) {
  .cid-v36jp7eIWa .content-wrapper {
    width: 80%;
  }
}
@media (max-width: 992px) {
  .cid-v36jp7eIWa .content-wrapper {
    width: 100%;
    margin-bottom: 28px;
  }
}
.cid-v36jp7eIWa .content-wrapper .title-wrapper {
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-v36jp7eIWa .content-wrapper .title-wrapper {
    margin-bottom: 18px;
  }
}
.cid-v36jp7eIWa .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v36jp7eIWa .content-wrapper .title-wrapper .subtitle-wrapper .mbr-section-subtitle {
  display: inline-block;
  margin-bottom: 0;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, #2ba7ff, #ca45ff 50%, #fe881b);
}
.cid-v36jp7eIWa .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v36jp7eIWa .items-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 -7px;
}
.cid-v36jp7eIWa .items-wrapper .item {
  width: 25%;
  padding: 0 7px;
  margin-bottom: 14px;
  animation: none !important;
}
@media (max-width: 1640px) {
  .cid-v36jp7eIWa .items-wrapper .item {
    width: 50%;
  }
}
@media (max-width: 992px) {
  .cid-v36jp7eIWa .items-wrapper .item {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-v36jp7eIWa .items-wrapper .item:hover .item-wrapper::after,
.cid-v36jp7eIWa .items-wrapper .item:focus .item-wrapper::after {
  width: 100%;
  height: 200px;
  top: -155px;
}
.cid-v36jp7eIWa .items-wrapper .item .item-wrapper {
  position: relative;
  padding: 38px 46px 46px 46px;
  min-height: 485px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden !important;
}
@media (max-width: 992px) {
  .cid-v36jp7eIWa .items-wrapper .item .item-wrapper {
    min-height: auto;
    padding: 18px;
  }
}
.cid-v36jp7eIWa .items-wrapper .item .item-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #190f2a;
  opacity: .5;
  backdrop-filter: blur(36px);
  z-index: 1;
  pointer-events: none;
}
.cid-v36jp7eIWa .items-wrapper .item .item-wrapper::after {
  content: '';
  position: absolute;
  top: -200px;
  left: 0;
  width: 0;
  height: 0;
  border-radius: 100%;
  background-image: linear-gradient(45deg, #ca45ff 30%, #fe881b);
  filter: blur(2rem);
  z-index: 1;
  pointer-events: none;
  transition: all .5s ease;
}
.cid-v36jp7eIWa .items-wrapper .item .item-wrapper .label-wrapper {
  position: relative;
  z-index: 2;
  margin-bottom: 22px;
}
.cid-v36jp7eIWa .items-wrapper .item .item-wrapper .label-wrapper .label-wrap {
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  background-color: #362c52;
}
@media (max-width: 992px) {
  .cid-v36jp7eIWa .items-wrapper .item .item-wrapper .label-wrapper .label-wrap {
    padding: 10px 16px;
  }
}
.cid-v36jp7eIWa .items-wrapper .item .item-wrapper .label-wrapper .label-wrap .iconfont-wrapper {
  display: inline-flex;
  margin-right: 14px;
}
.cid-v36jp7eIWa .items-wrapper .item .item-wrapper .label-wrapper .label-wrap .iconfont-wrapper .mbr-iconfont {
  font-size: 19px;
}
.cid-v36jp7eIWa .items-wrapper .item .item-wrapper .label-wrapper .label-wrap .item-label {
  margin-bottom: 0;
}
.cid-v36jp7eIWa .items-wrapper .item .item-wrapper .card-box {
  position: relative;
  z-index: 2;
}
.cid-v36jp7eIWa .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 22px;
}
.cid-v36jp7eIWa .items-wrapper .item .item-wrapper .card-box .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v36jp7eIWa .items-wrapper .item .item-wrapper .card-box .list-wrapper .list .item-wrap {
  position: relative;
  padding-left: 38px;
  margin-bottom: 14px;
}
.cid-v36jp7eIWa .items-wrapper .item .item-wrapper .card-box .list-wrapper .list .item-wrap::before {
  content: '✓';
  position: absolute;
  top: 0;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 100%;
  background-image: linear-gradient(135deg, #1c4eff, #ca45ff);
  color: #ffffff;
  font-size: 15px;
}
.cid-v36jp7eIWa .items-wrapper .item .item-wrapper .card-box .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v36jp7eIWa .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 22px;
  width: 100%;
}
.cid-v36jp7eIWa .items-wrapper .item .item-wrapper .card-box .mbr-section-btn .btn {
  width: 100%;
  margin-bottom: 0;
}
.cid-v36jp7eIWa .btn-wrapper {
  margin-top: 0;
}
.cid-v36jp7eIWa .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v36jp7eIWa .mbr-section-subtitle,
.cid-v36jp7eIWa .subtitle-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-v36jp7eIWa .mbr-text {
  color: #a997ce;
  text-align: center;
}
.cid-v36jp7eIWa .item-label {
  color: #ffffff;
}
.cid-v36jp7eIWa .item-title {
  color: #ffffff;
}
.cid-v36jp7eIWa .list {
  color: #a997ce;
}
.cid-v37aS18UXj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #190f2a;
}
.cid-v37aS18UXj .mbr-fallback-image.disabled {
  display: none;
}
.cid-v37aS18UXj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v37aS18UXj .content-wrapper {
  position: relative;
  z-index: 1;
  width: 60%;
  margin: 0 auto;
}
@media (max-width: 1440px) {
  .cid-v37aS18UXj .content-wrapper {
    width: 80%;
  }
}
@media (max-width: 992px) {
  .cid-v37aS18UXj .content-wrapper {
    width: 100%;
  }
}
.cid-v37aS18UXj .content-wrapper .content-wrap {
  margin-bottom: 82px;
}
@media (max-width: 992px) {
  .cid-v37aS18UXj .content-wrapper .content-wrap {
    margin-bottom: 28px;
  }
}
.cid-v37aS18UXj .content-wrapper .content-wrap .logo-wrapper {
  margin-bottom: 42px;
}
@media (max-width: 992px) {
  .cid-v37aS18UXj .content-wrapper .content-wrap .logo-wrapper {
    margin-bottom: 22px;
  }
}
.cid-v37aS18UXj .content-wrapper .content-wrap .logo-wrapper img {
  display: inline-flex;
  width: 54px;
  height: 54px;
  border-radius: 100%;
  object-fit: cover;
}
.cid-v37aS18UXj .content-wrapper .content-wrap .title-wrapper .mbr-section-title {
  display: inline-flex;
  margin-bottom: 42px;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, #2ba7ff, #ca45ff 50%, #fe881b);
}
@media (max-width: 992px) {
  .cid-v37aS18UXj .content-wrapper .content-wrap .title-wrapper .mbr-section-title {
    margin-bottom: 22px;
  }
}
.cid-v37aS18UXj .content-wrapper .content-wrap .social-wrapper {
  margin-bottom: 42px;
}
@media (max-width: 992px) {
  .cid-v37aS18UXj .content-wrapper .content-wrap .social-wrapper {
    margin-bottom: 22px;
  }
}
.cid-v37aS18UXj .content-wrapper .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}
.cid-v37aS18UXj .content-wrapper .content-wrap .social-wrapper .social-wrap .soc-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 130px;
  background-color: #291f39;
  transition: all .5s ease;
}
@media (max-width: 992px) {
  .cid-v37aS18UXj .content-wrapper .content-wrap .social-wrapper .social-wrap .soc-item {
    width: 80px;
    height: 80px;
  }
}
.cid-v37aS18UXj .content-wrapper .content-wrap .social-wrapper .social-wrap .soc-item:hover a .mbr-iconfont,
.cid-v37aS18UXj .content-wrapper .content-wrap .social-wrapper .social-wrap .soc-item:focus a .mbr-iconfont {
  transform: scale(1.2);
}
.cid-v37aS18UXj .content-wrapper .content-wrap .social-wrapper .social-wrap .soc-item a {
  position: relative;
  z-index: 1;
  display: block;
}
.cid-v37aS18UXj .content-wrapper .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: inline-flex;
  font-size: 54px;
  transition: all 0.3s ease-in-out;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, #1c4eff, #ca45ff 50%, #fe881b);
}
@media (max-width: 992px) {
  .cid-v37aS18UXj .content-wrapper .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
    font-size: 32px;
  }
}
.cid-v37aS18UXj .content-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v37aS18UXj .mbr-section-title {
  color: #ffffff;
}
.cid-v37aS18UXj .mbr-copy {
  color: #a997ce;
  text-align: center;
}
.cid-v37aS18UXj .mbr-section-title,
.cid-v37aS18UXj .logo-wrapper,
.cid-v37aS18UXj .social-wrapper,
.cid-v37aS18UXj .title-wrapper {
  text-align: center;
}
.cid-v3y5A01KCc {
  background-color: #190f2a;
  overflow: hidden;
}
.cid-v3y5A01KCc .card {
  position: relative;
}
.cid-v3y5A01KCc .card .gradient-wrap {
  position: absolute;
  bottom: -40%;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-image: linear-gradient(90deg, #1c4eff, #ca45ff 50%, #fe881b);
  filter: blur(4rem);
  pointer-events: none;
}
.cid-v3y5A01KCc .card .gradient-wrap::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #190f2a;
  filter: blur(5rem);
  pointer-events: none;
}
.cid-v3y5A01KCc .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3y5A01KCc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3y5A01KCc .content-wrapper {
  position: relative;
  z-index: 1;
  width: 60%;
  margin: 0 auto;
}
@media (max-width: 1440px) {
  .cid-v3y5A01KCc .content-wrapper {
    width: 80%;
  }
}
@media (max-width: 992px) {
  .cid-v3y5A01KCc .content-wrapper {
    width: 100%;
  }
}
.cid-v3y5A01KCc .content-wrapper .label-wrapper {
  margin-bottom: 56px;
}
@media (max-width: 992px) {
  .cid-v3y5A01KCc .content-wrapper .label-wrapper {
    margin-bottom: 28px;
  }
}
.cid-v3y5A01KCc .content-wrapper .label-wrapper .mbr-label {
  display: inline-block;
  margin-bottom: 0;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, #2ba7ff, #ca45ff 50%, #fe881b);
}
.cid-v3y5A01KCc .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-v3y5A01KCc .content-wrapper .mbr-section-title {
    margin-bottom: 18px;
  }
}
.cid-v3y5A01KCc .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v3y5A01KCc .content-wrapper .mbr-section-btn {
  margin-top: 46px;
}
@media (max-width: 992px) {
  .cid-v3y5A01KCc .content-wrapper .mbr-section-btn {
    margin-top: 18px;
  }
}
.cid-v3y5A01KCc .mbr-label,
.cid-v3y5A01KCc .label-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-v3y5A01KCc .mbr-section-title {
  color: #ffffff;
}
.cid-v3y5A01KCc .mbr-text {
  color: #beaee0;
  text-align: center;
}
.cid-v3y5A01KCc .mbr-section-title,
.cid-v3y5A01KCc .mbr-section-btn {
  text-align: center;
}
.cid-v3y5I0aJVY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #190f2a;
}
.cid-v3y5I0aJVY .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3y5I0aJVY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3y5I0aJVY .title-wrapper {
  position: relative;
  z-index: 1;
  width: 60%;
  margin: 0 auto;
  margin-bottom: 82px;
}
@media (max-width: 1440px) {
  .cid-v3y5I0aJVY .title-wrapper {
    width: 80%;
  }
}
@media (max-width: 992px) {
  .cid-v3y5I0aJVY .title-wrapper {
    width: 100%;
    margin-bottom: 28px;
  }
}
.cid-v3y5I0aJVY .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v3y5I0aJVY .title-wrapper .subtitle-wrapper .mbr-section-subtitle {
  display: inline-block;
  margin-bottom: 0;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, #2ba7ff, #ca45ff 50%, #fe881b);
}
.cid-v3y5I0aJVY .title-wrapper .mbr-text {
  margin-top: 22px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v3y5I0aJVY .title-wrapper .mbr-text {
    margin-top: 18px;
  }
}
.cid-v3y5I0aJVY .items-wrapper .item {
  margin-bottom: 82px;
}
.cid-v3y5I0aJVY .items-wrapper .item:last-child {
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .cid-v3y5I0aJVY .items-wrapper .item {
    margin-bottom: 46px;
  }
  .cid-v3y5I0aJVY .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 992px) {
  .cid-v3y5I0aJVY .items-wrapper .item {
    margin-bottom: 16px;
  }
  .cid-v3y5I0aJVY .items-wrapper .item:last-child {
    margin-bottom: 16px;
  }
}
.cid-v3y5I0aJVY .items-wrapper .item .item-wrapper {
  min-height: 460px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 82px;
  background-image: radial-gradient(circle at 5% 113%, #362c52, #190f2a 110%);
}
@media (max-width: 1440px) {
  .cid-v3y5I0aJVY .items-wrapper .item .item-wrapper {
    padding: 46px;
  }
}
@media (max-width: 992px) {
  .cid-v3y5I0aJVY .items-wrapper .item .item-wrapper {
    min-height: auto;
    padding: 18px;
  }
}
.cid-v3y5I0aJVY .items-wrapper .item .item-wrapper .label-wrapper {
  position: relative;
  z-index: 2;
  margin-bottom: 22px;
}
.cid-v3y5I0aJVY .items-wrapper .item .item-wrapper .label-wrapper .label-wrap {
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  background-color: #362c52;
}
@media (max-width: 992px) {
  .cid-v3y5I0aJVY .items-wrapper .item .item-wrapper .label-wrapper .label-wrap {
    padding: 10px 16px;
  }
}
.cid-v3y5I0aJVY .items-wrapper .item .item-wrapper .label-wrapper .label-wrap .iconfont-wrapper {
  display: inline-flex;
  margin-right: 14px;
}
.cid-v3y5I0aJVY .items-wrapper .item .item-wrapper .label-wrapper .label-wrap .iconfont-wrapper .mbr-iconfont {
  font-size: 19px;
}
.cid-v3y5I0aJVY .items-wrapper .item .item-wrapper .label-wrapper .label-wrap .item-label {
  margin-bottom: 0;
}
.cid-v3y5I0aJVY .items-wrapper .item .item-wrapper .card-box {
  position: relative;
}
.cid-v3y5I0aJVY .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-v3y5I0aJVY .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 22px;
}
.cid-v3y5I0aJVY .items-wrapper .item .item-wrapper .card-box .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-v3y5I0aJVY .image-wrapper {
  padding: 0 115px;
  height: 100%;
}
@media (max-width: 1440px) {
  .cid-v3y5I0aJVY .image-wrapper {
    padding: 0 46px;
  }
}
@media (max-width: 992px) {
  .cid-v3y5I0aJVY .image-wrapper {
    padding: 0;
  }
}
.cid-v3y5I0aJVY .image-wrapper img {
  position: sticky;
  top: 91px;
  height: 460px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 1440px) {
  .cid-v3y5I0aJVY .image-wrapper img {
    top: 46px;
  }
}
@media (max-width: 992px) {
  .cid-v3y5I0aJVY .image-wrapper img {
    height: 300px;
  }
}
.cid-v3y5I0aJVY .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v3y5I0aJVY .mbr-section-subtitle,
.cid-v3y5I0aJVY .subtitle-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-v3y5I0aJVY .mbr-text {
  color: #a997ce;
  text-align: center;
}
.cid-v3y5I0aJVY .item-label {
  color: #ffffff;
}
.cid-v3y5I0aJVY .item-text {
  color: #a997ce;
}
.cid-v3yaW4omQE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #190f2a;
}
.cid-v3yaW4omQE .mbr-section-title {
  margin-bottom: 40px;
  color: #ffffff;
  text-align: center;
}
.cid-v3yaW4omQE .item:focus,
.cid-v3yaW4omQE span:focus {
  outline: none;
}
.cid-v3yaW4omQE .item {
  cursor: pointer;
}
.cid-v3yaW4omQE .grid-container {
  grid-row-gap: 40px;
}
@media (max-width: 992px) {
  .cid-v3yaW4omQE .grid-container {
    grid-row-gap: 20px;
  }
}
.cid-v3yaW4omQE .grid-container-1,
.cid-v3yaW4omQE .grid-container-2,
.cid-v3yaW4omQE .grid-container-3 {
  gap: 0 40px;
}
@media (max-width: 992px) {
  .cid-v3yaW4omQE .grid-container-1,
  .cid-v3yaW4omQE .grid-container-2,
  .cid-v3yaW4omQE .grid-container-3 {
    gap: 0 20px;
  }
}
.cid-v3yaW4omQE .content-head {
  max-width: 800px;
}
.cid-v3yaW4omQE .container,
.cid-v3yaW4omQE .container-fluid {
  overflow: hidden;
}
.cid-v3yaW4omQE .grid-container {
  display: grid;
  transform: translate3d(-3rem, 0, 0);
  width: 115vw;
  grid-column-gap: 1rem;
}
.cid-v3yaW4omQE .grid-item {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.cid-v3yaW4omQE .grid-item img {
  min-width: 30vw;
  max-width: 100%;
  height: 500px;
  object-fit: cover;
}
@media (max-width: 1200px) {
  .cid-v3yaW4omQE .grid-item img {
    height: 350px;
  }
}
@media (max-width: 767px) {
  .cid-v3yaW4omQE .grid-item img {
    min-width: 35vw;
    height: 150px;
  }
}
.cid-v3yaW4omQE .grid-item:nth-child(2) img {
  height: 400px;
}
@media (max-width: 1200px) {
  .cid-v3yaW4omQE .grid-item:nth-child(2) img {
    height: 250px;
  }
}
@media (max-width: 767px) {
  .cid-v3yaW4omQE .grid-item:nth-child(2) img {
    height: 150px;
  }
}
.cid-v3yaW4omQE .grid-item:nth-child(3) img {
  height: 450px;
}
@media (max-width: 1200px) {
  .cid-v3yaW4omQE .grid-item:nth-child(3) img {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .cid-v3yaW4omQE .grid-item:nth-child(3) img {
    height: 150px;
  }
}
.cid-v3yaW4omQE .grid-item:nth-child(4) img {
  height: 350px;
}
@media (max-width: 1200px) {
  .cid-v3yaW4omQE .grid-item:nth-child(4) img {
    height: 200px;
  }
}
@media (max-width: 767px) {
  .cid-v3yaW4omQE .grid-item:nth-child(4) img {
    height: 150px;
  }
}
.cid-v3yaW4omQE .grid-container-1,
.cid-v3yaW4omQE .grid-container-2,
.cid-v3yaW4omQE .grid-container-3 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
}
.cid-v3yaW4omQE .grid-container-1 {
  align-items: flex-end;
}
.cid-v3yaW4omQE .grid-container-2 {
  align-items: flex-start;
}
.cid-v3ycZhAFSZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #190f2a;
}
.cid-v3ycZhAFSZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3ycZhAFSZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3ycZhAFSZ .items-wrapper {
  justify-content: center;
  margin: 0 -40px;
}
.cid-v3ycZhAFSZ .items-wrapper .item {
  position: relative;
  padding: 0 40px;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-v3ycZhAFSZ .items-wrapper .item {
    margin-bottom: 40px;
  }
}
.cid-v3ycZhAFSZ .items-wrapper .item .item-wrapper .icon-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-v3ycZhAFSZ .items-wrapper .item .item-wrapper .icon-wrapper {
    margin-bottom: 24px;
  }
}
.cid-v3ycZhAFSZ .items-wrapper .item .item-wrapper .icon-wrapper .mbr-iconfont {
  width: 56px;
  height: 56px;
  min-width: 56px;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #1c1c1c;
}
.cid-v3ycZhAFSZ .items-wrapper .item .item-wrapper .item-title {
  margin-bottom: 16px;
}
.cid-v3ycZhAFSZ .items-wrapper .item .item-wrapper .item-text {
  margin-bottom: 0;
}
.cid-v3ycZhAFSZ .items-wrapper .item .item-wrapper .mbr-section-btn {
  margin-top: 16px;
}
.cid-v3ycZhAFSZ .items-wrapper .item .item-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-v3ycZhAFSZ .item-title {
  color: #ffffff;
}
.cid-v3ycZhAFSZ .item-text {
  color: #beaee0;
}
.cid-v3yh111hka {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #190f2a;
  overflow: hidden;
}
.cid-v3yh111hka .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3yh111hka .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3yh111hka .row {
  flex-direction: row-reverse;
}
.cid-v3yh111hka .col-text {
  position: relative;
  z-index: 10;
}
@media (min-width: 992px) {
  .cid-v3yh111hka .col-text {
    padding-left: 28px;
  }
}
@media (max-width: 991px) {
  .cid-v3yh111hka .col-text {
    order: 2;
  }
}
.cid-v3yh111hka .col-img {
  position: relative;
}
@media (min-width: 992px) {
  .cid-v3yh111hka .col-img {
    padding-right: 28px;
  }
}
@media (max-width: 991px) {
  .cid-v3yh111hka .col-img {
    order: 1;
  }
}
.cid-v3yh111hka .card-title {
  color: #161616;
  margin-top: 1rem;
  margin-bottom: 0 !important;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-v3yh111hka .card-title {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    text-align: center !important;
  }
}
.cid-v3yh111hka .mbr-text {
  color: #161616;
  margin-top: 2rem;
  margin-bottom: 0 !important;
  width: 100%;
  max-width: 480px;
}
@media (max-width: 991px) {
  .cid-v3yh111hka .mbr-text {
    text-align: center !important;
    padding-right: 0;
    margin-top: 1.5rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.cid-v3yh111hka .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 991px) {
  .cid-v3yh111hka .mbr-section-btn {
    text-align: center !important;
  }
}
@media (max-width: 575px) {
  .cid-v3yh111hka .mbr-section-btn {
    width: 100%;
  }
}
.cid-v3yh111hka .image-wrapper {
  display: flex;
  position: relative;
  z-index: 10;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  height: 306px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-v3yh111hka .image-wrapper {
    height: 216px;
    margin-bottom: 24px;
  }
}
@media (max-width: 575px) {
  .cid-v3yh111hka .image-wrapper {
    height: auto;
  }
}
.cid-v3yh111hka .image-wrapper img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
}
.cid-v3yh111hka .circle-blur {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  display: block;
  width: 560px;
  height: 560px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  background-image: linear-gradient(132deg, #22a5e5 27%, #b776d6 50%, #ff398a 79%);
  opacity: .97;
  -webkit-filter: blur(64px) blur(64px);
  filter: blur(64px) blur(64px);
}
@media (max-width: 991px) {
  .cid-v3yh111hka .circle-blur {
    width: 320px;
    height: 320px;
    top: -10%;
    right: -5%;
    transform: translate(0, 0);
  }
}
.cid-v3yh111hka .card-title,
.cid-v3yh111hka .mbr-section-btn {
  color: #f9f8f8;
}
.cid-v3yh111hka .mbr-text,
.cid-v3yh111hka .link-wrap {
  color: #beaee0;
}
.cid-v37aS18UXj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #190f2a;
}
.cid-v37aS18UXj .mbr-fallback-image.disabled {
  display: none;
}
.cid-v37aS18UXj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v37aS18UXj .content-wrapper {
  position: relative;
  z-index: 1;
  width: 60%;
  margin: 0 auto;
}
@media (max-width: 1440px) {
  .cid-v37aS18UXj .content-wrapper {
    width: 80%;
  }
}
@media (max-width: 992px) {
  .cid-v37aS18UXj .content-wrapper {
    width: 100%;
  }
}
.cid-v37aS18UXj .content-wrapper .content-wrap {
  margin-bottom: 82px;
}
@media (max-width: 992px) {
  .cid-v37aS18UXj .content-wrapper .content-wrap {
    margin-bottom: 28px;
  }
}
.cid-v37aS18UXj .content-wrapper .content-wrap .logo-wrapper {
  margin-bottom: 42px;
}
@media (max-width: 992px) {
  .cid-v37aS18UXj .content-wrapper .content-wrap .logo-wrapper {
    margin-bottom: 22px;
  }
}
.cid-v37aS18UXj .content-wrapper .content-wrap .logo-wrapper img {
  display: inline-flex;
  width: 54px;
  height: 54px;
  border-radius: 100%;
  object-fit: cover;
}
.cid-v37aS18UXj .content-wrapper .content-wrap .title-wrapper .mbr-section-title {
  display: inline-flex;
  margin-bottom: 42px;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, #2ba7ff, #ca45ff 50%, #fe881b);
}
@media (max-width: 992px) {
  .cid-v37aS18UXj .content-wrapper .content-wrap .title-wrapper .mbr-section-title {
    margin-bottom: 22px;
  }
}
.cid-v37aS18UXj .content-wrapper .content-wrap .social-wrapper {
  margin-bottom: 42px;
}
@media (max-width: 992px) {
  .cid-v37aS18UXj .content-wrapper .content-wrap .social-wrapper {
    margin-bottom: 22px;
  }
}
.cid-v37aS18UXj .content-wrapper .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}
.cid-v37aS18UXj .content-wrapper .content-wrap .social-wrapper .social-wrap .soc-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 130px;
  background-color: #291f39;
  transition: all .5s ease;
}
@media (max-width: 992px) {
  .cid-v37aS18UXj .content-wrapper .content-wrap .social-wrapper .social-wrap .soc-item {
    width: 80px;
    height: 80px;
  }
}
.cid-v37aS18UXj .content-wrapper .content-wrap .social-wrapper .social-wrap .soc-item:hover a .mbr-iconfont,
.cid-v37aS18UXj .content-wrapper .content-wrap .social-wrapper .social-wrap .soc-item:focus a .mbr-iconfont {
  transform: scale(1.2);
}
.cid-v37aS18UXj .content-wrapper .content-wrap .social-wrapper .social-wrap .soc-item a {
  position: relative;
  z-index: 1;
  display: block;
}
.cid-v37aS18UXj .content-wrapper .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: inline-flex;
  font-size: 54px;
  transition: all 0.3s ease-in-out;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, #1c4eff, #ca45ff 50%, #fe881b);
}
@media (max-width: 992px) {
  .cid-v37aS18UXj .content-wrapper .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
    font-size: 32px;
  }
}
.cid-v37aS18UXj .content-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v37aS18UXj .mbr-section-title {
  color: #ffffff;
}
.cid-v37aS18UXj .mbr-copy {
  color: #a997ce;
  text-align: center;
}
.cid-v37aS18UXj .mbr-section-title,
.cid-v37aS18UXj .logo-wrapper,
.cid-v37aS18UXj .social-wrapper,
.cid-v37aS18UXj .title-wrapper {
  text-align: center;
}
.cid-v3K73nmsyO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f8f8;
  position: relative;
  overflow: hidden;
}
.cid-v3K73nmsyO::before {
  content: '';
  position: absolute;
  top: 0;
  right: 4rem;
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background-image: linear-gradient(180deg, #ffc9d9 -10%, transparent 70%);
}
.cid-v3K73nmsyO .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3K73nmsyO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3K73nmsyO .container-fluid {
  padding: 0 24px;
}
@media (max-width: 768px) {
  .cid-v3K73nmsyO .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-v3K73nmsyO .container {
    padding: 0 16px;
  }
}
.cid-v3K73nmsyO .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-v3K73nmsyO .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-v3K73nmsyO .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v3K73nmsyO .mbr-section-title {
  color: #ff6d99;
}
.cid-v3K73nmsyO .mbr-text {
  color: #000000;
}
.cid-v37aS18UXj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #190f2a;
}
.cid-v37aS18UXj .mbr-fallback-image.disabled {
  display: none;
}
.cid-v37aS18UXj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v37aS18UXj .content-wrapper {
  position: relative;
  z-index: 1;
  width: 60%;
  margin: 0 auto;
}
@media (max-width: 1440px) {
  .cid-v37aS18UXj .content-wrapper {
    width: 80%;
  }
}
@media (max-width: 992px) {
  .cid-v37aS18UXj .content-wrapper {
    width: 100%;
  }
}
.cid-v37aS18UXj .content-wrapper .content-wrap {
  margin-bottom: 82px;
}
@media (max-width: 992px) {
  .cid-v37aS18UXj .content-wrapper .content-wrap {
    margin-bottom: 28px;
  }
}
.cid-v37aS18UXj .content-wrapper .content-wrap .logo-wrapper {
  margin-bottom: 42px;
}
@media (max-width: 992px) {
  .cid-v37aS18UXj .content-wrapper .content-wrap .logo-wrapper {
    margin-bottom: 22px;
  }
}
.cid-v37aS18UXj .content-wrapper .content-wrap .logo-wrapper img {
  display: inline-flex;
  width: 54px;
  height: 54px;
  border-radius: 100%;
  object-fit: cover;
}
.cid-v37aS18UXj .content-wrapper .content-wrap .title-wrapper .mbr-section-title {
  display: inline-flex;
  margin-bottom: 42px;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, #2ba7ff, #ca45ff 50%, #fe881b);
}
@media (max-width: 992px) {
  .cid-v37aS18UXj .content-wrapper .content-wrap .title-wrapper .mbr-section-title {
    margin-bottom: 22px;
  }
}
.cid-v37aS18UXj .content-wrapper .content-wrap .social-wrapper {
  margin-bottom: 42px;
}
@media (max-width: 992px) {
  .cid-v37aS18UXj .content-wrapper .content-wrap .social-wrapper {
    margin-bottom: 22px;
  }
}
.cid-v37aS18UXj .content-wrapper .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}
.cid-v37aS18UXj .content-wrapper .content-wrap .social-wrapper .social-wrap .soc-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 130px;
  background-color: #291f39;
  transition: all .5s ease;
}
@media (max-width: 992px) {
  .cid-v37aS18UXj .content-wrapper .content-wrap .social-wrapper .social-wrap .soc-item {
    width: 80px;
    height: 80px;
  }
}
.cid-v37aS18UXj .content-wrapper .content-wrap .social-wrapper .social-wrap .soc-item:hover a .mbr-iconfont,
.cid-v37aS18UXj .content-wrapper .content-wrap .social-wrapper .social-wrap .soc-item:focus a .mbr-iconfont {
  transform: scale(1.2);
}
.cid-v37aS18UXj .content-wrapper .content-wrap .social-wrapper .social-wrap .soc-item a {
  position: relative;
  z-index: 1;
  display: block;
}
.cid-v37aS18UXj .content-wrapper .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: inline-flex;
  font-size: 54px;
  transition: all 0.3s ease-in-out;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, #1c4eff, #ca45ff 50%, #fe881b);
}
@media (max-width: 992px) {
  .cid-v37aS18UXj .content-wrapper .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
    font-size: 32px;
  }
}
.cid-v37aS18UXj .content-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v37aS18UXj .mbr-section-title {
  color: #ffffff;
}
.cid-v37aS18UXj .mbr-copy {
  color: #a997ce;
  text-align: center;
}
.cid-v37aS18UXj .mbr-section-title,
.cid-v37aS18UXj .logo-wrapper,
.cid-v37aS18UXj .social-wrapper,
.cid-v37aS18UXj .title-wrapper {
  text-align: center;
}
