body {
  font-family: Anek Latin;
}
.display-1 {
  font-family: 'Anek Latin', sans-serif;
  font-size: 5.625rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 7.03125rem;
}
.display-2 {
  font-family: 'Anek Latin', sans-serif;
  font-size: 4.25rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 5.3125rem;
}
.display-4 {
  font-family: 'Anek Latin', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.875rem;
}
.display-5 {
  font-family: 'Anek Latin', sans-serif;
  font-size: 3.125rem;
  line-height: 1.2;
}
.display-5 > .mbr-iconfont {
  font-size: 3.90625rem;
}
.display-7 {
  font-family: 'Anek Latin', sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.40625rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 4.5rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.9375rem;
    font-size: calc( 2.61875rem + (5.625 - 2.61875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.61875rem + (5.625 - 2.61875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 3.4rem;
    font-size: calc( 2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 2.5rem;
    font-size: calc( 1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.9rem;
    font-size: calc( 1.04375rem + (1.125 - 1.04375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.04375rem + (1.125 - 1.04375) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #ae5eff !important;
}
.bg-success {
  background-color: #c19c1c !important;
}
.bg-info {
  background-color: #8d59ff !important;
}
.bg-warning {
  background-color: #ffaa5c !important;
}
.bg-danger {
  background-color: #c06816 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ae5eff !important;
  border-color: #ae5eff !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  border-color: #8207ff !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #8207ff !important;
  border-color: #8207ff !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ffdd65 !important;
  border-color: #ffdd65 !important;
  color: #654f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  border-color: #ffca0e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #654f00 !important;
  background-color: #ffca0e !important;
  border-color: #ffca0e !important;
}
.btn-info,
.btn-info:active {
  background-color: #8d59ff !important;
  border-color: #8d59ff !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  border-color: #5102ff !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #5102ff !important;
  border-color: #5102ff !important;
}
.btn-success,
.btn-success:active {
  background-color: #c19c1c !important;
  border-color: #c19c1c !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  border-color: #755f11 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #755f11 !important;
  border-color: #755f11 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffaa5c !important;
  border-color: #ffaa5c !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  border-color: #ff7d05 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #ff7d05 !important;
  border-color: #ff7d05 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #c06816 !important;
  border-color: #c06816 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  border-color: #723e0d !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #723e0d !important;
  border-color: #723e0d !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #212132 !important;
  border-color: #212132 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ae5eff;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ae5eff !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ae5eff !important;
  border-color: #ae5eff !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffdd65;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffdd65 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #654f00 !important;
  background-color: #ffdd65 !important;
  border-color: #ffdd65 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #8d59ff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #8d59ff !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #8d59ff !important;
  border-color: #8d59ff !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #c19c1c;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #c19c1c !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #c19c1c !important;
  border-color: #c19c1c !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffaa5c;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffaa5c !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #ffaa5c !important;
  border-color: #ffaa5c !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #c06816;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #c06816 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #c06816 !important;
  border-color: #c06816 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #212132;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #212132 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #212132 !important;
  border-color: #212132 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #fafafa !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #ae5eff !important;
}
.text-secondary {
  color: #ffdd65 !important;
}
.text-success {
  color: #c19c1c !important;
}
.text-info {
  color: #8d59ff !important;
}
.text-warning {
  color: #ffaa5c !important;
}
.text-danger {
  color: #c06816 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #212132 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #7b00f7 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #fec600 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #68540f !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #4c00f2 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #f57500 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #64360c !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #ae5eff;
}
.nav-tabs .nav-link:not(.active) {
  color: #212132;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #8d59ff;
}
.alert-warning {
  background-color: #ffaa5c;
}
.alert-danger {
  background-color: #c06816;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ae5eff;
  border-color: #ae5eff;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ae5eff;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ebd072;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #eea868;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Anek Latin', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.875rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #ae5eff !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Anek Latin', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.875rem;
}
blockquote {
  border-color: #ae5eff;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ae5eff;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ae5eff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #ae5eff;
  border-bottom-color: #ae5eff;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #ae5eff !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ffdd65 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23ae5eff' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition-duration: .2s;
}
a:hover {
  background-image: none !important;
}
.container {
  max-width: 1440px;
  padding-left: 6vw;
  padding-right: 6vw;
}
@media (max-width: 991px) {
  .container {
    max-width: 80vw;
  }
}
@media (max-width: 767px) {
  .container {
    padding-left: 3vw;
    padding-right: 3vw;
  }
}
@media (min-width: 1600px) {
  .container {
    padding-left: 96px;
    padding-right: 96px;
  }
}
.container-fluid {
  padding-left: 6vw;
  padding-right: 6vw;
}
@media (max-width: 767px) {
  .container-fluid {
    padding-left: 3vw;
    padding-right: 3vw;
  }
}
@media (min-width: 1600px) {
  .container-fluid {
    padding-left: 96px;
    padding-right: 96px;
  }
}
.row {
  margin-left: -6vw;
  margin-right: -6vw;
}
.row > [class*="col"] {
  padding-left: 6vw;
  padding-right: 6vw;
}
@media (max-width: 767px) {
  .row {
    margin-left: -3vw;
    margin-right: -3vw;
  }
  .row > [class*="col"] {
    padding-left: 3vw;
    padding-right: 3vw;
  }
}
@media (min-width: 1600px) {
  .row {
    margin-left: -96px;
    margin-right: -96px;
  }
  .row > [class*="col"] {
    padding-left: 96px;
    padding-right: 96px;
  }
}
.row {
  justify-content: center;
}
.mbr-section-btn .btn {
  min-width: 100px;
  min-height: 40px;
  padding: 20px 40px;
  line-height: 1.55;
  font-weight: 500;
  transition-duration: .2s;
  border-radius: 0.75rem !important;
  box-shadow: none !important;
  border: none !important;
}
@media (max-width: 575px) {
  .mbr-section-btn {
    width: 100%;
  }
  .mbr-section-btn .btn {
    width: 100%;
    min-width: auto !important;
  }
}
.custom-mbr-section-btn {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.custom-section-btn {
  display: inline-block;
  background-image: linear-gradient(90deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  padding: 3px;
  position: relative;
  border-radius: 0.75rem !important;
  margin-top: 0.42rem;
  margin-left: 0.42rem;
}
.custom-section-btn::after {
  content: "";
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.75rem !important;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61.75%, #8e59ff 99.93%);
  transition: all 300ms ease;
  transform: translate3d(-0.42rem, -0.42rem, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.custom-section-btn .btn {
  transform: translate3d(-0.42rem, -0.42rem, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  position: relative;
  z-index: 11;
  transform-style: preserve-3d;
  transition: all 300ms ease;
  border: none !important;
  margin: 0 !important;
  min-height: 106px;
  padding: 20px 40px;
}
@media (max-width: 767px) {
  .custom-section-btn .btn {
    padding: 12px 24px;
    min-height: 68px;
  }
}
.custom-section-btn:hover .btn {
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.custom-section-btn:hover::after {
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.cid-taHEIhTMzF {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 96px;
}
.cid-taHEIhTMzF nav.navbar {
  position: fixed;
}
.cid-taHEIhTMzF .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-taHEIhTMzF .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-taHEIhTMzF .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-taHEIhTMzF .dropdown-item:hover,
.cid-taHEIhTMzF .dropdown-item:focus {
  background: #ae5eff !important;
  color: white !important;
}
.cid-taHEIhTMzF .dropdown-item:hover span {
  color: white;
}
.cid-taHEIhTMzF .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-taHEIhTMzF .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-taHEIhTMzF .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-taHEIhTMzF .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-taHEIhTMzF .nav-link {
  position: relative;
}
.cid-taHEIhTMzF .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-taHEIhTMzF .container {
    flex-wrap: nowrap;
  }
}
.cid-taHEIhTMzF .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
}
.cid-taHEIhTMzF .iconfont-wrapper:hover {
  color: #ffdd65 !important;
}
.cid-taHEIhTMzF .dropdown-menu,
.cid-taHEIhTMzF .navbar.opened {
  background: #212132 !important;
}
.cid-taHEIhTMzF .nav-item:focus,
.cid-taHEIhTMzF .nav-link:focus {
  outline: none;
}
.cid-taHEIhTMzF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-taHEIhTMzF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-taHEIhTMzF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-taHEIhTMzF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-taHEIhTMzF .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-taHEIhTMzF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-taHEIhTMzF .navbar {
  min-height: 96px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #212132;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-taHEIhTMzF .navbar.opened {
  transition: all 0.3s;
}
.cid-taHEIhTMzF .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-taHEIhTMzF .navbar .navbar-logo img {
  width: auto;
}
.cid-taHEIhTMzF .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-taHEIhTMzF .navbar.collapsed {
  justify-content: center;
}
.cid-taHEIhTMzF .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-taHEIhTMzF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-taHEIhTMzF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-taHEIhTMzF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-taHEIhTMzF .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-taHEIhTMzF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-taHEIhTMzF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-taHEIhTMzF .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-taHEIhTMzF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-taHEIhTMzF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-taHEIhTMzF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-taHEIhTMzF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-taHEIhTMzF .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-taHEIhTMzF .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-taHEIhTMzF .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-taHEIhTMzF .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-taHEIhTMzF .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 60%;
  }
  .cid-taHEIhTMzF .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-taHEIhTMzF .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-taHEIhTMzF .navbar.navbar-short {
  min-height: 96px;
}
.cid-taHEIhTMzF .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-taHEIhTMzF .navbar.navbar-short .navbar-brand {
  min-height: 96px;
  padding: 0;
}
.cid-taHEIhTMzF .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-taHEIhTMzF .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-taHEIhTMzF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-taHEIhTMzF .navbar-brand:hover {
  transform: scale(1.1);
}
.cid-taHEIhTMzF .dropdown-item.active,
.cid-taHEIhTMzF .dropdown-item:active {
  background-color: transparent;
}
.cid-taHEIhTMzF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-taHEIhTMzF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-taHEIhTMzF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-taHEIhTMzF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #212132;
}
.cid-taHEIhTMzF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-taHEIhTMzF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-taHEIhTMzF ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-taHEIhTMzF .navbar-buttons {
  text-align: center;
}
.cid-taHEIhTMzF .navbar-buttons .btn {
  padding: 9px 18px;
  min-width: 100px;
  min-height: 52px;
  border-radius: 0.3rem;
}
.cid-taHEIhTMzF .navbar-buttons .btn:hover {
  color: #ffdd65 !important;
}
@media (max-width: 575px) {
  .cid-taHEIhTMzF .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-taHEIhTMzF .navbar-buttons .btn-black {
  border: solid 2px #ae5eff !important;
  box-shadow: 3px 3px 0 0 #ae5eff !important;
}
.cid-taHEIhTMzF .navbar-buttons .btn-black:hover {
  border: solid 2px #ae5eff !important;
  color: #ffdd65 !important;
  box-shadow: 0 0 0 0 #ae5eff !important;
}
.cid-taHEIhTMzF button.navbar-toggler {
  outline: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 0.3rem;
  background-color: #212132 !important;
  border: solid 2px #ae5eff !important;
  box-shadow: 3px 3px 0 0 #ae5eff !important;
}
.cid-taHEIhTMzF button.navbar-toggler:hover {
  border: solid 2px #ae5eff !important;
  color: #ffdd65 !important;
  box-shadow: 0 0 0 0 #ae5eff !important;
}
.cid-taHEIhTMzF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-taHEIhTMzF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 9px;
  left: 8px;
  transition: all 0.2s;
}
.cid-taHEIhTMzF button.navbar-toggler .hamburger span:nth-child(2) {
  left: 8px;
  top: 17px;
  transition: all 0.15s;
}
.cid-taHEIhTMzF button.navbar-toggler .hamburger span:nth-child(3) {
  left: 8px;
  top: 17px;
  transition: all 0.15s;
}
.cid-taHEIhTMzF button.navbar-toggler .hamburger span:nth-child(4) {
  left: 8px;
  top: 25px;
  transition: all 0.2s;
}
.cid-taHEIhTMzF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-taHEIhTMzF nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-taHEIhTMzF nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-taHEIhTMzF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-taHEIhTMzF .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-taHEIhTMzF a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-taHEIhTMzF .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-taHEIhTMzF .navbar {
    height: 70px;
  }
  .cid-taHEIhTMzF .navbar.opened {
    height: auto;
  }
  .cid-taHEIhTMzF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-taHEIhTMzF .navbar-nav {
  margin: 0 auto;
}
.cid-taHEIhTMzF .nav-item {
  padding: 0;
  margin: 2px;
}
.cid-taHEIhTMzF .nav-item .nav-link {
  padding: 6px 32px !important;
  margin: 0 !important;
}
.cid-taHEIhTMzF .nav-item .nav-link::after {
  color: #ffdd65 !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-taHEIhTMzF .nav-item .nav-link:hover {
  color: #ffdd65 !important;
}
.cid-taHEIhTMzF .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-taHEIhTMzF .nav-item .dropdown-menu {
  background-color: #ffffff !important;
}
.cid-taHEIhTMzF .nav-item .dropdown-menu:hover {
  background-color: #ffffff !important;
}
.cid-taHEIhTMzF .nav-item .dropdown-menu .dropdown-item {
  color: #212132 !important;
  background-color: transparent !important;
}
.cid-taHEIhTMzF .nav-item .dropdown-menu .dropdown-item:hover {
  color: #ae5eff !important;
}
@media (max-width: 991px) {
  .cid-taHEIhTMzF .navbar {
    justify-content: flex-start !important;
  }
  .cid-taHEIhTMzF .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-taHEIhTMzF .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-taHEIhTMzF .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-taHEIhTMzF .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-taHEIhTMzF .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .cid-taHEIhTMzF .navbar-collapse .nav-item .nav-link {
    padding: 14px 0 !important;
    justify-content: flex-start;
  }
}
.cid-taHEPfgYe8 {
  background-image: url("../../../assets/images/pexels-fauxels-3183181.jpg");
}
.cid-taHEPfgYe8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-taHEPfgYe8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-taHEPfgYe8 .row {
  justify-content: left;
}
.cid-taHEPfgYe8 .mbr-section-title {
  color: #FFDD65;
}
.cid-taHEPfgYe8 .mbr-section-subtitle {
  color: #FFDD65;
  background-image: linear-gradient(90deg, currentColor 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-taHEPfgYe8 .btn-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 96px;
}
@media (max-width: 991px) {
  .cid-taHEPfgYe8 .btn-container {
    padding-top: 50px;
    flex-direction: column;
    align-items: center;
  }
}
.cid-taHEPfgYe8 .custom-mbr-section-btn {
  padding-bottom: 0.42rem;
}
@media (max-width: 991px) {
  .cid-taHEPfgYe8 .custom-mbr-section-btn {
    padding-bottom: 0;
  }
}
.cid-taHEPfgYe8 .custom-section-btn {
  height: 100%;
}
.cid-taHEPfgYe8 .custom-section-btn .btn {
  height: 100%;
}
.cid-taHEPfgYe8 .text-container {
  max-width: 384px;
  margin-left: 40px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-taHEPfgYe8 .text-container {
    margin: 26px auto 0;
  }
}
.cid-taHEPfgYe8 .mbr-text {
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .cid-taHEPfgYe8 .mbr-text {
    text-align: center !important;
  }
}
.cid-taHEPfgYe8 .text-item-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-top: 26px;
}
@media (max-width: 991px) {
  .cid-taHEPfgYe8 .text-item-container {
    flex-wrap: wrap;
  }
}
.cid-taHEPfgYe8 .text-item {
  display: flex;
  align-items: center;
  max-width: 48%;
}
@media (max-width: 991px) {
  .cid-taHEPfgYe8 .text-item {
    max-width: 100%;
    width: 100%;
    justify-content: center;
    margin-bottom: 6px;
  }
}
.cid-taHEPfgYe8 .icon-text {
  color: #ffffff;
  opacity: 0.6;
}
.cid-taHEPfgYe8 .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.cid-taHEPfgYe8 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 24px;
  color: #ae5eff;
}
.cid-taHHBqK206 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #212132;
}
.cid-taHHBqK206 .mbr-fallback-image.disabled {
  display: none;
}
.cid-taHHBqK206 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-taHHBqK206 .container {
  max-width: 1600px;
}
.cid-taHHBqK206 .row {
  justify-content: center;
}
.cid-taHHBqK206 .content-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  flex-wrap: wrap;
}
.cid-taHHBqK206 .title-container {
  width: 100%;
}
.cid-taHHBqK206 .mbr-section-title {
  color: #FFDD65;
  width: 100%;
}
.cid-taHHBqK206 .colored-text {
  line-height: inherit;
  color: inherit;
  color: #ae5eff;
}
.cid-taHHBqK206 .mbr-section-subtitle {
  color: #FFDD65;
  margin-top: 1.5rem;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-taHHBqK206 .mbr-section-subtitle {
    margin-top: 1rem;
  }
}
.cid-taHHBqK206 .btn-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 80px;
  margin-right: auto;
  margin-left: auto;
  gap: 40px;
}
@media (max-width: 991px) {
  .cid-taHHBqK206 .btn-container {
    margin-top: 50px;
    flex-wrap: wrap;
    gap: 0;
  }
}
.cid-taHHBqK206 .text-container {
  max-width: 400px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-taHHBqK206 .text-container {
    margin: 24px auto 0;
  }
}
.cid-taHHBqK206 .mbr-text {
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .cid-taHHBqK206 .mbr-text {
    text-align: center !important;
  }
}
.cid-taHHBqK206 .text-item-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-top: 26px;
}
@media (max-width: 991px) {
  .cid-taHHBqK206 .text-item-container {
    flex-wrap: wrap;
  }
}
.cid-taHHBqK206 .text-item {
  display: flex;
  align-items: center;
  max-width: 48%;
}
@media (max-width: 991px) {
  .cid-taHHBqK206 .text-item {
    max-width: 100%;
    width: 100%;
    justify-content: center;
    margin-bottom: 6px;
  }
}
.cid-taHHBqK206 .icon-text {
  color: #AE5EFF;
}
.cid-taHHBqK206 .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.cid-taHHBqK206 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 24px;
  color: #ae5eff;
}
.cid-taHHBqK206 .form-container {
  max-width: 535px;
  margin-right: auto;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .cid-taHHBqK206 .form-container {
    max-width: 100%;
    width: 100%;
  }
}
.cid-taHHBqK206 form {
  width: 100%;
}
.cid-taHHBqK206 form .dragArea.row {
  justify-content: flex-start;
  width: auto !important;
}
.cid-taHHBqK206 form p {
  color: #ffffff;
}
.cid-taHHBqK206 form .mbr-section-btn {
  width: max-content;
  max-width: 35%;
}
@media (max-width: 991px) {
  .cid-taHHBqK206 form .mbr-section-btn {
    max-width: 100%;
    width: 100%;
  }
}
.cid-taHHBqK206 form .mbr-section-btn .btn {
  padding: 10px 35px;
  height: 100%;
  border-radius: 0.75rem !important;
  border-bottom-left-radius: 0 !important;
  border-top-left-radius: 0 !important;
}
@media (max-width: 991px) {
  .cid-taHHBqK206 form .mbr-section-btn .btn {
    min-height: 64px;
    padding: 6px 24px;
    width: 100%;
    border-radius: 0.75rem !important;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }
}
.cid-taHHBqK206 form .form-group {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  flex-grow: 1;
}
.cid-taHHBqK206 form .group-container {
  position: relative;
  width: 100%;
  padding: 0;
  margin-top: 0.42rem;
}
.cid-taHHBqK206 form .group-bg {
  position: absolute;
  border-radius: 0.75rem;
  z-index: 5;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8a61ff 99.93%);
}
.cid-taHHBqK206 form .group-border {
  display: flex;
  align-items: stretch;
  position: relative;
  z-index: 6;
  padding: 3px;
  border-radius: 0.75rem;
  transition: all 300ms ease;
  background-image: linear-gradient(90deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8a61ff 99.93%);
  transform: translate3d(-0.42rem, -0.42rem, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.cid-taHHBqK206 form .group-border:hover {
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
@media (max-width: 991px) {
  .cid-taHHBqK206 form .group-border {
    flex-wrap: wrap;
  }
}
.cid-taHHBqK206 form .form-control {
  min-height: 100px;
  height: 100%;
  border: none !important;
  background: #ffffff;
  box-shadow: none !important;
  border-radius: 0.75rem;
  border-bottom-right-radius: 0 !important;
  border-top-right-radius: 0 !important;
  margin-bottom: 0;
  padding: 20px 40px;
  font-size: 24px;
  line-height: 32px;
  color: #212132;
  font-weight: 400;
}
@media (max-width: 991px) {
  .cid-taHHBqK206 form .form-control {
    min-height: 64px;
    padding: 6px 24px;
    width: 100%;
    border-radius: 0.75rem !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    text-align: center !important;
  }
}
.cid-taHHBqK206 form .form-control::-webkit-input-placeholder {
  color: #939292;
}
.cid-taHHBqK206 form .form-control::-moz-placeholder {
  color: #939292;
}
.cid-taHHBqK206 form .form-control:-moz-placeholder {
  color: #939292;
}
.cid-taHHBqK206 form .form-control:-ms-input-placeholder {
  color: #939292;
}
.cid-taHHBqK206 form .form-control:hover {
  outline: none !important;
}
.cid-taHHBqK206 form select {
  color: #939292 !important;
}
.cid-taHHBqK206 form textarea {
  height: 200px;
}
.cid-taHHBqK206 form input:active,
.cid-taHHBqK206 form textarea:active,
.cid-taHHBqK206 form input:focus,
.cid-taHHBqK206 form textarea:focus {
  background-color: #FFFFFF !important;
}
.cid-taHHBqK206 form input:active::-webkit-input-placeholder,
.cid-taHHBqK206 form textarea:active::-webkit-input-placeholder,
.cid-taHHBqK206 form input:focus::-webkit-input-placeholder,
.cid-taHHBqK206 form textarea:focus::-webkit-input-placeholder {
  color: #939292;
}
.cid-taHHBqK206 form input:active::-moz-placeholder,
.cid-taHHBqK206 form textarea:active::-moz-placeholder,
.cid-taHHBqK206 form input:focus::-moz-placeholder,
.cid-taHHBqK206 form textarea:focus::-moz-placeholder {
  color: #939292;
}
.cid-taHHBqK206 form input:active:-moz-placeholder,
.cid-taHHBqK206 form textarea:active:-moz-placeholder,
.cid-taHHBqK206 form input:focus:-moz-placeholder,
.cid-taHHBqK206 form textarea:focus:-moz-placeholder {
  color: #939292;
}
.cid-taHHBqK206 form input:active:-ms-input-placeholder,
.cid-taHHBqK206 form textarea:active:-ms-input-placeholder,
.cid-taHHBqK206 form input:focus:-ms-input-placeholder,
.cid-taHHBqK206 form textarea:focus:-ms-input-placeholder {
  color: #939292;
}
.cid-taHHBqK206 form .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.cid-taHHBqK206 form .row [class*=col] {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-taHHBqK206 form label {
  width: 100%;
  color: #ffffff;
  margin-bottom: 10px;
}
.cid-taHHBqK206 form .form-check-input {
  border-color: rgba(255, 255, 255, 0.25) !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}
.cid-taHHBqK206 form .form-check-input:focus,
.cid-taHHBqK206 form .form-check-input:hover {
  background-color: transparent !important;
  border-color: #ffffff !important;
}
.cid-taHHBqK206 form .form-check-input:checked {
  border-color: #ffffff !important;
}
.cid-taHGfyiX9g {
  background-color: #212132;
}
.cid-taHGfyiX9g .mbr-fallback-image.disabled {
  display: none;
}
.cid-taHGfyiX9g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-taHGfyiX9g .content-bg {
  border-top-left-radius: 6.67rem;
  border-top-right-radius: 6.67rem;
  width: 100%;
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: transparent;
  background: #ffdd65;
}
.cid-taHGfyiX9g .container {
  max-width: 1280px;
}
.cid-taHGfyiX9g .row {
  justify-content: center;
}
.cid-taHGfyiX9g .mbr-section-title {
  color: #212132;
}
.cid-taHGfyiX9g .mbr-section-subtitle {
  color: #212132;
  margin-top: 1rem;
}
.cid-tp4qnyNrCy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffdd65;
}
.cid-tp4qnyNrCy .mbr-fallback-image.disabled {
  display: none;
}
.cid-tp4qnyNrCy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tp4qnyNrCy .container {
  max-width: 1280px;
}
.cid-tp4qnyNrCy .content-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  background: #212132;
  padding: 4rem;
  border-radius: 4.17rem;
}
@media (max-width: 991px) {
  .cid-tp4qnyNrCy .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .cid-tp4qnyNrCy .content-wrapper {
    padding: 40px 6vw;
  }
}
.cid-tp4qnyNrCy .text-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 720px;
  margin-bottom: 28px;
}
@media (max-width: 991px) {
  .cid-tp4qnyNrCy .text-wrapper {
    margin-bottom: 12px;
  }
}
.cid-tp4qnyNrCy .mbr-section-title {
  color: #FFDD65;
  margin-bottom: 100px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tp4qnyNrCy .mbr-section-title {
    margin-bottom: 60px;
  }
}
.cid-tp4qnyNrCy .mbr-section-subtitle {
  color: #ffffff;
  width: 100%;
}
.cid-tp4qnyNrCy .card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
}
.cid-tp4qnyNrCy .card-item {
  width: max-content;
  max-width: 100%;
  margin-right: 12px;
  min-width: 160px;
  margin-bottom: 12px;
  margin-top: 12px;
}
.cid-tp4qnyNrCy .card-box {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: max-content;
  height: 100%;
  margin: auto;
}
.cid-tp4qnyNrCy .iconfont-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  width: 100%;
  margin-right: auto;
}
@media (max-width: 991px) {
  .cid-tp4qnyNrCy .iconfont-wrapper {
    margin-bottom: 24px;
  }
}
.cid-tp4qnyNrCy .iconfont-wrapper .mbr-iconfont {
  color: #ffdd65;
  font-size: 80px;
}
.cid-tp4qnyNrCy .card-title {
  color: #ffffff;
}
.cid-tp4pfQm3Ud {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffdd65;
}
.cid-tp4pfQm3Ud .mbr-fallback-image.disabled {
  display: none;
}
.cid-tp4pfQm3Ud .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tp4pfQm3Ud .container {
  max-width: 1280px;
}
.cid-tp4pfQm3Ud .content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #212132;
  padding: 4rem;
  border-radius: 4.17rem;
}
@media (max-width: 767px) {
  .cid-tp4pfQm3Ud .content-wrapper {
    flex-wrap: wrap;
    padding: 4rem 6vw;
  }
}
.cid-tp4pfQm3Ud .text-wrapper {
  width: 70%;
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .cid-tp4pfQm3Ud .text-wrapper {
    width: 100%;
    order: 2;
    margin-bottom: 50px;
  }
}
.cid-tp4pfQm3Ud .card-title {
  color: #FFDD65;
}
.cid-tp4pfQm3Ud .colored-text {
  line-height: inherit;
  color: inherit;
  color: #ae5eff;
}
.cid-tp4pfQm3Ud .mbr-text {
  color: #ffffff;
  margin-top: 24px;
}
@media (max-width: 991px) {
  .cid-tp4pfQm3Ud .mbr-text {
    margin-top: 16px;
  }
}
.cid-tp4pfQm3Ud .img-container {
  width: 25%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-tp4pfQm3Ud .img-container {
    order: 1;
    width: 100%;
    justify-content: flex-start;
    margin-bottom: 24px;
  }
}
.cid-tp4pfQm3Ud .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-tp4pfQm3Ud .image-wrapper {
    width: 25%;
  }
}
@media (max-width: 575px) {
  .cid-tp4pfQm3Ud .image-wrapper {
    width: 50%;
  }
}
.cid-tp4pfQm3Ud .image-wrapper .img-box {
  height: 100%;
}
.cid-tp4pfQm3Ud .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tp4pfQm3Ud .btn-container {
  width: 70%;
  padding-left: 4rem;
  margin-right: auto;
  margin-top: -3.5rem;
}
@media (max-width: 767px) {
  .cid-tp4pfQm3Ud .btn-container {
    padding: 0 6vw;
    width: 100%;
  }
  .cid-tp4pfQm3Ud .btn-container .custom-section-btn {
    width: 100%;
  }
  .cid-tp4pfQm3Ud .btn-container .btn {
    width: 100%;
  }
}
.cid-taHJbk3sOB {
  padding-top: 2rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffdd65;
}
.cid-taHJbk3sOB .container {
  max-width: 1600px;
}
.cid-taHJbk3sOB .row {
  justify-content: center;
}
.cid-taHJbk3sOB .text-container {
  width: 100%;
  margin-bottom: 80px;
}
@media (max-width: 991px) {
  .cid-taHJbk3sOB .text-container {
    margin-bottom: 50px;
  }
}
.cid-taHJbk3sOB .mbr-section-title {
  color: #212132;
  text-align: center;
}
.cid-taHJbk3sOB .mbr-section-subtitle {
  color: #212132;
  margin-top: 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-taHJbk3sOB .mbr-section-subtitle {
    margin-top: 1rem;
  }
}
.cid-taHJbk3sOB .cards-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.83rem;
}
@media (max-width: 991px) {
  .cid-taHJbk3sOB .cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .cid-taHJbk3sOB .cards-container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.cid-taHJbk3sOB .card {
  display: flex;
  width: 100%;
  height: 100%;
  border-radius: 1.67rem;
  overflow: hidden;
  background-color: #ffffff;
  transition: .18s all;
}
.cid-taHJbk3sOB .card:hover {
  transform: scale(0.96);
}
.cid-taHJbk3sOB .card-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  padding: 24px;
}
@media (max-width: 991px) {
  .cid-taHJbk3sOB .card-wrapper {
    padding: 16px;
  }
}
.cid-taHJbk3sOB .card-box {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-taHJbk3sOB .card-box {
    margin-bottom: 20px;
  }
}
.cid-taHJbk3sOB .card-title {
  width: 100%;
  margin-bottom: 0;
  color: #212132;
  opacity: 0.6;
}
.cid-taHJbk3sOB .card-text {
  width: 100%;
  color: #212132;
  margin-top: 12px;
  margin-bottom: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-taHJbk3sOB .card-text {
    margin-top: 8px;
  }
}
.cid-taHJbk3sOB .mbr-section-btn {
  margin-top: 0.5rem;
}
.cid-taHJbk3sOB .mbr-section-btn .btn {
  border: none !important;
  min-height: auto;
  min-width: auto;
}
.cid-taHJbk3sOB .card-img {
  width: 100%;
  height: 288px;
  border-radius: 1.67rem;
  overflow: hidden;
  margin-top: auto;
}
@media (max-width: 991px) {
  .cid-taHJbk3sOB .card-img {
    height: 375px;
  }
}
@media (max-width: 767px) {
  .cid-taHJbk3sOB .card-img {
    height: auto;
  }
}
.cid-taHJbk3sOB .card-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-width: 100%;
}
.cid-taHJbk3sOB .card-title,
.cid-taHJbk3sOB .mbr-section-btn {
  text-align: center;
}
.cid-taHMrWLK0N {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #8a61ff;
}
.cid-taHMrWLK0N .mbr-fallback-image.disabled {
  display: none;
}
.cid-taHMrWLK0N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-taHMrWLK0N .container {
  max-width: 1600px;
}
.cid-taHMrWLK0N .content-wrapper {
  display: flex;
  align-items: stretch;
  background: #212132;
  padding: 4rem 4rem 6.5rem;
  border-radius: 4.17rem;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-taHMrWLK0N .content-wrapper {
    padding: 40px 40px 5rem;
  }
}
@media (max-width: 767px) {
  .cid-taHMrWLK0N .content-wrapper {
    padding: 4rem 6vw 5rem;
  }
}
.cid-taHMrWLK0N .col-title {
  width: 100%;
  margin-bottom: 80px;
}
@media (max-width: 991px) {
  .cid-taHMrWLK0N .col-title {
    margin-bottom: 50px;
  }
}
.cid-taHMrWLK0N .mbr-section-title {
  color: #8a61ff;
}
.cid-taHMrWLK0N .panel-group {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 0.83rem;
  border: none;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-taHMrWLK0N .panel-group {
    grid-template-columns: 1fr;
    grid-column-gap: 0;
  }
}
.cid-taHMrWLK0N .card {
  padding: 0 !important;
  overflow: hidden;
  width: 100%;
  margin-bottom: 0.83rem;
  border-radius: 1.25rem !important;
  background-color: rgba(255, 255, 255, 0.01);
}
.cid-taHMrWLK0N .sign.mbr-iconfont {
  font-size: 22px !important;
  font-family: 'Moririse2' !important;
  color: #ae5eff;
  margin-left: 1.2rem;
  transition: all ease-in-out 0.3s;
}
.cid-taHMrWLK0N .card-header {
  border-bottom: none !important;
  padding: 0 !important;
}
.cid-taHMrWLK0N .card-header .panel-title[aria-expanded="true"] .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-taHMrWLK0N .panel-title-edit {
  color: #FFFFFF;
  transition: all ease-in-out 0.3s;
}
.cid-taHMrWLK0N .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 40px !important;
}
@media (max-width: 991px) {
  .cid-taHMrWLK0N .panel-title {
    padding: 16px 24px !important;
  }
}
.cid-taHMrWLK0N .panel-title:hover .panel-title-edit {
  color: #ae5eff;
}
.cid-taHMrWLK0N .panel-body {
  padding: 16px 40px 32px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-taHMrWLK0N .panel-body {
    padding: 16px 24px 24px;
  }
}
.cid-taHMrWLK0N .panel-text {
  color: #FFFFFF;
  margin-bottom: 0 !important;
}
.cid-taHMrWLK0N .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-taHMrWLK0N .col-text {
  width: 100%;
  margin-top: 64px;
}
@media (max-width: 991px) {
  .cid-taHMrWLK0N .col-text {
    margin-top: 40px;
  }
}
.cid-taHMrWLK0N .mbr-section-subtitle {
  color: #8a61ff;
}
.cid-taHMrWLK0N .mbr-text {
  margin-top: 24px;
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .cid-taHMrWLK0N .mbr-text {
    margin-top: 16px;
  }
}
.cid-taHMrWLK0N .btn-container {
  padding: 0 4rem;
  margin-top: -3.5rem;
}
@media (max-width: 767px) {
  .cid-taHMrWLK0N .btn-container {
    padding: 0 6vw;
    width: 100%;
  }
  .cid-taHMrWLK0N .btn-container .custom-section-btn {
    width: 100%;
  }
  .cid-taHMrWLK0N .btn-container .btn {
    width: 100%;
  }
}
.cid-taHNmp8MgW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #212132;
}
.cid-taHNmp8MgW .container {
  max-width: 1600px;
}
.cid-taHNmp8MgW .row {
  align-items: center;
}
.cid-taHNmp8MgW .content-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-taHNmp8MgW .content-container {
    flex-wrap: wrap;
  }
}
.cid-taHNmp8MgW .title-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  width: 45%;
  margin-right: auto;
}
@media (max-width: 991px) {
  .cid-taHNmp8MgW .title-container {
    max-width: 455px;
    margin-right: auto;
    margin-left: 0;
    width: 100%;
    margin-bottom: 40px;
  }
}
.cid-taHNmp8MgW .main-title {
  color: #FFDD65;
  width: 100%;
  margin-bottom: 0;
}
.cid-taHNmp8MgW .main-subtitle {
  color: #f1f5f7;
  opacity: 0.8;
  width: 100%;
  margin-top: 24px;
}
@media (max-width: 991px) {
  .cid-taHNmp8MgW .main-subtitle {
    margin-top: 12px;
  }
}
.cid-taHNmp8MgW .form-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 50%;
  background-color: #ffdd65;
  padding: 40px;
  border-radius: 2.08rem;
}
@media (max-width: 991px) {
  .cid-taHNmp8MgW .form-container {
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
    flex-wrap: nowrap;
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .cid-taHNmp8MgW .form-container {
    flex-direction: column;
    align-items: center;
  }
}
.cid-taHNmp8MgW .form-subtitle {
  color: #212132;
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-taHNmp8MgW .form-subtitle {
    width: 30%;
    padding-right: 20px;
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .cid-taHNmp8MgW .form-subtitle {
    width: 100%;
    padding-right: 0;
    margin-bottom: 20px;
    text-align: center !important;
  }
}
@media (max-width: 991px) {
  .cid-taHNmp8MgW .form-size {
    width: 70%;
  }
}
@media (max-width: 767px) {
  .cid-taHNmp8MgW .form-size {
    width: 100%;
  }
}
.cid-taHNmp8MgW form {
  width: 100%;
}
.cid-taHNmp8MgW form .dragArea.row {
  justify-content: flex-start;
  width: auto !important;
}
.cid-taHNmp8MgW form p {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-taHNmp8MgW form .mbr-section-btn {
    width: 100%;
  }
}
.cid-taHNmp8MgW form .mbr-section-btn .custom-section-btn {
  margin-left: 0 !important;
}
@media (max-width: 767px) {
  .cid-taHNmp8MgW form .mbr-section-btn .custom-section-btn {
    width: 100%;
  }
}
.cid-taHNmp8MgW form .form-group {
  margin-top: 0 !important;
  margin-bottom: 20px !important;
  flex-grow: 1;
}
@media (max-width: 767px) {
  .cid-taHNmp8MgW form .form-group {
    margin-bottom: 12px !important;
  }
}
.cid-taHNmp8MgW form .group-container {
  position: relative;
  width: 100%;
  margin-top: 0.42rem;
}
.cid-taHNmp8MgW form .group-bg {
  position: absolute;
  border-radius: 0.75rem;
  z-index: 5;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8a61ff 99.93%);
}
.cid-taHNmp8MgW form .group-border {
  position: relative;
  z-index: 6;
  padding: 3px;
  border-radius: 0.75rem;
  transition: all 300ms ease;
  background-image: linear-gradient(90deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8a61ff 99.93%);
  transform: translate3d(-0.42rem, -0.42rem, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.cid-taHNmp8MgW form .group-border:hover {
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.cid-taHNmp8MgW form .form-control {
  height: 100px;
  border: none !important;
  background: #ffffff;
  box-shadow: none !important;
  border-radius: 0.75rem;
  margin-bottom: 0;
  padding: 20px 40px;
  font-size: 24px;
  line-height: 32px;
  color: #212132;
  font-weight: 400;
}
@media (max-width: 767px) {
  .cid-taHNmp8MgW form .form-control {
    height: 62px;
    font-size: 16px;
    padding: 12px 24px;
  }
}
.cid-taHNmp8MgW form .form-control::-webkit-input-placeholder {
  color: #939292;
}
.cid-taHNmp8MgW form .form-control::-moz-placeholder {
  color: #939292;
}
.cid-taHNmp8MgW form .form-control:-moz-placeholder {
  color: #939292;
}
.cid-taHNmp8MgW form .form-control:-ms-input-placeholder {
  color: #939292;
}
.cid-taHNmp8MgW form .form-control:hover {
  outline: none !important;
}
.cid-taHNmp8MgW form select {
  color: #939292 !important;
}
.cid-taHNmp8MgW form textarea {
  height: 200px;
}
.cid-taHNmp8MgW form input:active,
.cid-taHNmp8MgW form textarea:active,
.cid-taHNmp8MgW form input:focus,
.cid-taHNmp8MgW form textarea:focus {
  background-color: #FFFFFF !important;
}
.cid-taHNmp8MgW form input:active::-webkit-input-placeholder,
.cid-taHNmp8MgW form textarea:active::-webkit-input-placeholder,
.cid-taHNmp8MgW form input:focus::-webkit-input-placeholder,
.cid-taHNmp8MgW form textarea:focus::-webkit-input-placeholder {
  color: #939292;
}
.cid-taHNmp8MgW form input:active::-moz-placeholder,
.cid-taHNmp8MgW form textarea:active::-moz-placeholder,
.cid-taHNmp8MgW form input:focus::-moz-placeholder,
.cid-taHNmp8MgW form textarea:focus::-moz-placeholder {
  color: #939292;
}
.cid-taHNmp8MgW form input:active:-moz-placeholder,
.cid-taHNmp8MgW form textarea:active:-moz-placeholder,
.cid-taHNmp8MgW form input:focus:-moz-placeholder,
.cid-taHNmp8MgW form textarea:focus:-moz-placeholder {
  color: #939292;
}
.cid-taHNmp8MgW form input:active:-ms-input-placeholder,
.cid-taHNmp8MgW form textarea:active:-ms-input-placeholder,
.cid-taHNmp8MgW form input:focus:-ms-input-placeholder,
.cid-taHNmp8MgW form textarea:focus:-ms-input-placeholder {
  color: #939292;
}
.cid-taHNmp8MgW form .row {
  margin-left: -10px !important;
  margin-right: -10px !important;
}
.cid-taHNmp8MgW form .row [class*=col] {
  padding-left: 10px !important;
  padding-right: 10px !important;
}
.cid-taHNmp8MgW form label {
  width: 100%;
  color: #ffffff;
  margin-bottom: 10px;
}
.cid-taHNmp8MgW form .form-check-input {
  border-color: rgba(255, 255, 255, 0.25) !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}
.cid-taHNmp8MgW form .form-check-input:focus,
.cid-taHNmp8MgW form .form-check-input:hover {
  background-color: transparent !important;
  border-color: #ffffff !important;
}
.cid-taHNmp8MgW form .form-check-input:checked {
  border-color: #ffffff !important;
}
.cid-taHKOAC06v {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-taHKOAC06v .container {
  max-width: 1472px;
}
.cid-taHKOAC06v .mbr-text {
  color: #FFFFFF;
}
.cid-tp4yrTNiVW {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 96px;
}
.cid-tp4yrTNiVW nav.navbar {
  position: fixed;
}
.cid-tp4yrTNiVW .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tp4yrTNiVW .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tp4yrTNiVW .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tp4yrTNiVW .dropdown-item:hover,
.cid-tp4yrTNiVW .dropdown-item:focus {
  background: #ae5eff !important;
  color: white !important;
}
.cid-tp4yrTNiVW .dropdown-item:hover span {
  color: white;
}
.cid-tp4yrTNiVW .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tp4yrTNiVW .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tp4yrTNiVW .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tp4yrTNiVW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tp4yrTNiVW .nav-link {
  position: relative;
}
.cid-tp4yrTNiVW .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-tp4yrTNiVW .container {
    flex-wrap: nowrap;
  }
}
.cid-tp4yrTNiVW .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
}
.cid-tp4yrTNiVW .iconfont-wrapper:hover {
  color: #ffdd65 !important;
}
.cid-tp4yrTNiVW .dropdown-menu,
.cid-tp4yrTNiVW .navbar.opened {
  background: #212132 !important;
}
.cid-tp4yrTNiVW .nav-item:focus,
.cid-tp4yrTNiVW .nav-link:focus {
  outline: none;
}
.cid-tp4yrTNiVW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tp4yrTNiVW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tp4yrTNiVW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tp4yrTNiVW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tp4yrTNiVW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tp4yrTNiVW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tp4yrTNiVW .navbar {
  min-height: 96px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #212132;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-tp4yrTNiVW .navbar.opened {
  transition: all 0.3s;
}
.cid-tp4yrTNiVW .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tp4yrTNiVW .navbar .navbar-logo img {
  width: auto;
}
.cid-tp4yrTNiVW .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tp4yrTNiVW .navbar.collapsed {
  justify-content: center;
}
.cid-tp4yrTNiVW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tp4yrTNiVW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tp4yrTNiVW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tp4yrTNiVW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tp4yrTNiVW .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tp4yrTNiVW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tp4yrTNiVW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tp4yrTNiVW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tp4yrTNiVW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tp4yrTNiVW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tp4yrTNiVW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tp4yrTNiVW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tp4yrTNiVW .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tp4yrTNiVW .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tp4yrTNiVW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tp4yrTNiVW .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tp4yrTNiVW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 60%;
  }
  .cid-tp4yrTNiVW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tp4yrTNiVW .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tp4yrTNiVW .navbar.navbar-short {
  min-height: 96px;
}
.cid-tp4yrTNiVW .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tp4yrTNiVW .navbar.navbar-short .navbar-brand {
  min-height: 96px;
  padding: 0;
}
.cid-tp4yrTNiVW .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-tp4yrTNiVW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tp4yrTNiVW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tp4yrTNiVW .navbar-brand:hover {
  transform: scale(1.1);
}
.cid-tp4yrTNiVW .dropdown-item.active,
.cid-tp4yrTNiVW .dropdown-item:active {
  background-color: transparent;
}
.cid-tp4yrTNiVW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tp4yrTNiVW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tp4yrTNiVW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tp4yrTNiVW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #212132;
}
.cid-tp4yrTNiVW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tp4yrTNiVW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tp4yrTNiVW ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tp4yrTNiVW .navbar-buttons {
  text-align: center;
}
.cid-tp4yrTNiVW .navbar-buttons .btn {
  padding: 9px 18px;
  min-width: 100px;
  min-height: 52px;
  border-radius: 0.3rem;
}
.cid-tp4yrTNiVW .navbar-buttons .btn:hover {
  color: #ffdd65 !important;
}
@media (max-width: 575px) {
  .cid-tp4yrTNiVW .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-tp4yrTNiVW .navbar-buttons .btn-black {
  border: solid 2px #ae5eff !important;
  box-shadow: 3px 3px 0 0 #ae5eff !important;
}
.cid-tp4yrTNiVW .navbar-buttons .btn-black:hover {
  border: solid 2px #ae5eff !important;
  color: #ffdd65 !important;
  box-shadow: 0 0 0 0 #ae5eff !important;
}
.cid-tp4yrTNiVW button.navbar-toggler {
  outline: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 0.3rem;
  background-color: #212132 !important;
  border: solid 2px #ae5eff !important;
  box-shadow: 3px 3px 0 0 #ae5eff !important;
}
.cid-tp4yrTNiVW button.navbar-toggler:hover {
  border: solid 2px #ae5eff !important;
  color: #ffdd65 !important;
  box-shadow: 0 0 0 0 #ae5eff !important;
}
.cid-tp4yrTNiVW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tp4yrTNiVW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 9px;
  left: 8px;
  transition: all 0.2s;
}
.cid-tp4yrTNiVW button.navbar-toggler .hamburger span:nth-child(2) {
  left: 8px;
  top: 17px;
  transition: all 0.15s;
}
.cid-tp4yrTNiVW button.navbar-toggler .hamburger span:nth-child(3) {
  left: 8px;
  top: 17px;
  transition: all 0.15s;
}
.cid-tp4yrTNiVW button.navbar-toggler .hamburger span:nth-child(4) {
  left: 8px;
  top: 25px;
  transition: all 0.2s;
}
.cid-tp4yrTNiVW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tp4yrTNiVW nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tp4yrTNiVW nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tp4yrTNiVW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tp4yrTNiVW .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tp4yrTNiVW a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tp4yrTNiVW .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tp4yrTNiVW .navbar {
    height: 70px;
  }
  .cid-tp4yrTNiVW .navbar.opened {
    height: auto;
  }
  .cid-tp4yrTNiVW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tp4yrTNiVW .navbar-nav {
  margin: 0 auto;
}
.cid-tp4yrTNiVW .nav-item {
  padding: 0;
  margin: 2px;
}
.cid-tp4yrTNiVW .nav-item .nav-link {
  padding: 6px 32px !important;
  margin: 0 !important;
}
.cid-tp4yrTNiVW .nav-item .nav-link::after {
  color: #ffdd65 !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-tp4yrTNiVW .nav-item .nav-link:hover {
  color: #ffdd65 !important;
}
.cid-tp4yrTNiVW .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-tp4yrTNiVW .nav-item .dropdown-menu {
  background-color: #ffffff !important;
}
.cid-tp4yrTNiVW .nav-item .dropdown-menu:hover {
  background-color: #ffffff !important;
}
.cid-tp4yrTNiVW .nav-item .dropdown-menu .dropdown-item {
  color: #212132 !important;
  background-color: transparent !important;
}
.cid-tp4yrTNiVW .nav-item .dropdown-menu .dropdown-item:hover {
  color: #ae5eff !important;
}
@media (max-width: 991px) {
  .cid-tp4yrTNiVW .navbar {
    justify-content: flex-start !important;
  }
  .cid-tp4yrTNiVW .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-tp4yrTNiVW .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-tp4yrTNiVW .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-tp4yrTNiVW .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-tp4yrTNiVW .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .cid-tp4yrTNiVW .navbar-collapse .nav-item .nav-link {
    padding: 14px 0 !important;
    justify-content: flex-start;
  }
}
.cid-tp4yrVXcm2 {
  background-image: url("../../../assets/images/pexels-fauxels-3183181.jpg");
}
.cid-tp4yrVXcm2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tp4yrVXcm2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tp4yrVXcm2 .row {
  justify-content: left;
}
.cid-tp4yrVXcm2 .mbr-section-title {
  color: #FFDD65;
}
.cid-tp4yrVXcm2 .mbr-section-subtitle {
  color: #FFDD65;
  background-image: linear-gradient(90deg, currentColor 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-tp4yrVXcm2 .btn-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 96px;
}
@media (max-width: 991px) {
  .cid-tp4yrVXcm2 .btn-container {
    padding-top: 50px;
    flex-direction: column;
    align-items: center;
  }
}
.cid-tp4yrVXcm2 .custom-mbr-section-btn {
  padding-bottom: 0.42rem;
}
@media (max-width: 991px) {
  .cid-tp4yrVXcm2 .custom-mbr-section-btn {
    padding-bottom: 0;
  }
}
.cid-tp4yrVXcm2 .custom-section-btn {
  height: 100%;
}
.cid-tp4yrVXcm2 .custom-section-btn .btn {
  height: 100%;
}
.cid-tp4yrVXcm2 .text-container {
  max-width: 384px;
  margin-left: 40px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tp4yrVXcm2 .text-container {
    margin: 26px auto 0;
  }
}
.cid-tp4yrVXcm2 .mbr-text {
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .cid-tp4yrVXcm2 .mbr-text {
    text-align: center !important;
  }
}
.cid-tp4yrVXcm2 .text-item-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-top: 26px;
}
@media (max-width: 991px) {
  .cid-tp4yrVXcm2 .text-item-container {
    flex-wrap: wrap;
  }
}
.cid-tp4yrVXcm2 .text-item {
  display: flex;
  align-items: center;
  max-width: 48%;
}
@media (max-width: 991px) {
  .cid-tp4yrVXcm2 .text-item {
    max-width: 100%;
    width: 100%;
    justify-content: center;
    margin-bottom: 6px;
  }
}
.cid-tp4yrVXcm2 .icon-text {
  color: #ffffff;
  opacity: 0.6;
}
.cid-tp4yrVXcm2 .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.cid-tp4yrVXcm2 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 24px;
  color: #ae5eff;
}
.cid-tp4yrXMaAZ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #212132;
}
.cid-tp4yrXMaAZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tp4yrXMaAZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tp4yrXMaAZ .container {
  max-width: 1600px;
}
.cid-tp4yrXMaAZ .row {
  justify-content: center;
}
.cid-tp4yrXMaAZ .content-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  flex-wrap: wrap;
}
.cid-tp4yrXMaAZ .title-container {
  width: 100%;
}
.cid-tp4yrXMaAZ .mbr-section-title {
  color: #FFDD65;
  width: 100%;
}
.cid-tp4yrXMaAZ .colored-text {
  line-height: inherit;
  color: inherit;
  color: #ae5eff;
}
.cid-tp4yrXMaAZ .mbr-section-subtitle {
  color: #FFDD65;
  margin-top: 1.5rem;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tp4yrXMaAZ .mbr-section-subtitle {
    margin-top: 1rem;
  }
}
.cid-tp4yrXMaAZ .btn-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 80px;
  margin-right: auto;
  margin-left: auto;
  gap: 40px;
}
@media (max-width: 991px) {
  .cid-tp4yrXMaAZ .btn-container {
    margin-top: 50px;
    flex-wrap: wrap;
    gap: 0;
  }
}
.cid-tp4yrXMaAZ .text-container {
  max-width: 400px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tp4yrXMaAZ .text-container {
    margin: 24px auto 0;
  }
}
.cid-tp4yrXMaAZ .mbr-text {
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .cid-tp4yrXMaAZ .mbr-text {
    text-align: center !important;
  }
}
.cid-tp4yrXMaAZ .text-item-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-top: 26px;
}
@media (max-width: 991px) {
  .cid-tp4yrXMaAZ .text-item-container {
    flex-wrap: wrap;
  }
}
.cid-tp4yrXMaAZ .text-item {
  display: flex;
  align-items: center;
  max-width: 48%;
}
@media (max-width: 991px) {
  .cid-tp4yrXMaAZ .text-item {
    max-width: 100%;
    width: 100%;
    justify-content: center;
    margin-bottom: 6px;
  }
}
.cid-tp4yrXMaAZ .icon-text {
  color: #AE5EFF;
}
.cid-tp4yrXMaAZ .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.cid-tp4yrXMaAZ .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 24px;
  color: #ae5eff;
}
.cid-tp4yrXMaAZ .form-container {
  max-width: 535px;
  margin-right: auto;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .cid-tp4yrXMaAZ .form-container {
    max-width: 100%;
    width: 100%;
  }
}
.cid-tp4yrXMaAZ form {
  width: 100%;
}
.cid-tp4yrXMaAZ form .dragArea.row {
  justify-content: flex-start;
  width: auto !important;
}
.cid-tp4yrXMaAZ form p {
  color: #ffffff;
}
.cid-tp4yrXMaAZ form .mbr-section-btn {
  width: max-content;
  max-width: 35%;
}
@media (max-width: 991px) {
  .cid-tp4yrXMaAZ form .mbr-section-btn {
    max-width: 100%;
    width: 100%;
  }
}
.cid-tp4yrXMaAZ form .mbr-section-btn .btn {
  padding: 10px 35px;
  height: 100%;
  border-radius: 0.75rem !important;
  border-bottom-left-radius: 0 !important;
  border-top-left-radius: 0 !important;
}
@media (max-width: 991px) {
  .cid-tp4yrXMaAZ form .mbr-section-btn .btn {
    min-height: 64px;
    padding: 6px 24px;
    width: 100%;
    border-radius: 0.75rem !important;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }
}
.cid-tp4yrXMaAZ form .form-group {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  flex-grow: 1;
}
.cid-tp4yrXMaAZ form .group-container {
  position: relative;
  width: 100%;
  padding: 0;
  margin-top: 0.42rem;
}
.cid-tp4yrXMaAZ form .group-bg {
  position: absolute;
  border-radius: 0.75rem;
  z-index: 5;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8a61ff 99.93%);
}
.cid-tp4yrXMaAZ form .group-border {
  display: flex;
  align-items: stretch;
  position: relative;
  z-index: 6;
  padding: 3px;
  border-radius: 0.75rem;
  transition: all 300ms ease;
  background-image: linear-gradient(90deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8a61ff 99.93%);
  transform: translate3d(-0.42rem, -0.42rem, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.cid-tp4yrXMaAZ form .group-border:hover {
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
@media (max-width: 991px) {
  .cid-tp4yrXMaAZ form .group-border {
    flex-wrap: wrap;
  }
}
.cid-tp4yrXMaAZ form .form-control {
  min-height: 100px;
  height: 100%;
  border: none !important;
  background: #ffffff;
  box-shadow: none !important;
  border-radius: 0.75rem;
  border-bottom-right-radius: 0 !important;
  border-top-right-radius: 0 !important;
  margin-bottom: 0;
  padding: 20px 40px;
  font-size: 24px;
  line-height: 32px;
  color: #212132;
  font-weight: 400;
}
@media (max-width: 991px) {
  .cid-tp4yrXMaAZ form .form-control {
    min-height: 64px;
    padding: 6px 24px;
    width: 100%;
    border-radius: 0.75rem !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    text-align: center !important;
  }
}
.cid-tp4yrXMaAZ form .form-control::-webkit-input-placeholder {
  color: #939292;
}
.cid-tp4yrXMaAZ form .form-control::-moz-placeholder {
  color: #939292;
}
.cid-tp4yrXMaAZ form .form-control:-moz-placeholder {
  color: #939292;
}
.cid-tp4yrXMaAZ form .form-control:-ms-input-placeholder {
  color: #939292;
}
.cid-tp4yrXMaAZ form .form-control:hover {
  outline: none !important;
}
.cid-tp4yrXMaAZ form select {
  color: #939292 !important;
}
.cid-tp4yrXMaAZ form textarea {
  height: 200px;
}
.cid-tp4yrXMaAZ form input:active,
.cid-tp4yrXMaAZ form textarea:active,
.cid-tp4yrXMaAZ form input:focus,
.cid-tp4yrXMaAZ form textarea:focus {
  background-color: #FFFFFF !important;
}
.cid-tp4yrXMaAZ form input:active::-webkit-input-placeholder,
.cid-tp4yrXMaAZ form textarea:active::-webkit-input-placeholder,
.cid-tp4yrXMaAZ form input:focus::-webkit-input-placeholder,
.cid-tp4yrXMaAZ form textarea:focus::-webkit-input-placeholder {
  color: #939292;
}
.cid-tp4yrXMaAZ form input:active::-moz-placeholder,
.cid-tp4yrXMaAZ form textarea:active::-moz-placeholder,
.cid-tp4yrXMaAZ form input:focus::-moz-placeholder,
.cid-tp4yrXMaAZ form textarea:focus::-moz-placeholder {
  color: #939292;
}
.cid-tp4yrXMaAZ form input:active:-moz-placeholder,
.cid-tp4yrXMaAZ form textarea:active:-moz-placeholder,
.cid-tp4yrXMaAZ form input:focus:-moz-placeholder,
.cid-tp4yrXMaAZ form textarea:focus:-moz-placeholder {
  color: #939292;
}
.cid-tp4yrXMaAZ form input:active:-ms-input-placeholder,
.cid-tp4yrXMaAZ form textarea:active:-ms-input-placeholder,
.cid-tp4yrXMaAZ form input:focus:-ms-input-placeholder,
.cid-tp4yrXMaAZ form textarea:focus:-ms-input-placeholder {
  color: #939292;
}
.cid-tp4yrXMaAZ form .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.cid-tp4yrXMaAZ form .row [class*=col] {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-tp4yrXMaAZ form label {
  width: 100%;
  color: #ffffff;
  margin-bottom: 10px;
}
.cid-tp4yrXMaAZ form .form-check-input {
  border-color: rgba(255, 255, 255, 0.25) !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}
.cid-tp4yrXMaAZ form .form-check-input:focus,
.cid-tp4yrXMaAZ form .form-check-input:hover {
  background-color: transparent !important;
  border-color: #ffffff !important;
}
.cid-tp4yrXMaAZ form .form-check-input:checked {
  border-color: #ffffff !important;
}
.cid-tp4yrZf4Vb {
  background-color: #212132;
}
.cid-tp4yrZf4Vb .mbr-fallback-image.disabled {
  display: none;
}
.cid-tp4yrZf4Vb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tp4yrZf4Vb .content-bg {
  border-top-left-radius: 6.67rem;
  border-top-right-radius: 6.67rem;
  width: 100%;
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: transparent;
  background: #ffdd65;
}
.cid-tp4yrZf4Vb .container {
  max-width: 1280px;
}
.cid-tp4yrZf4Vb .row {
  justify-content: center;
}
.cid-tp4yrZf4Vb .mbr-section-title {
  color: #212132;
}
.cid-tp4yrZf4Vb .mbr-section-subtitle {
  color: #212132;
  margin-top: 1rem;
}
.cid-tp4AmBj9Sv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #212132;
}
.cid-tp4AmBj9Sv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tp4AmBj9Sv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tp4AmBj9Sv .container {
  max-width: 1280px;
}
.cid-tp4AmBj9Sv .row {
  justify-content: center;
}
.cid-tp4AmBj9Sv .content-wrapper {
  display: flex;
  align-items: stretch;
  background: #8a61ff;
  justify-content: flex-start;
  padding: 4rem;
  border-radius: 4.17rem;
}
@media (max-width: 991px) {
  .cid-tp4AmBj9Sv .content-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-tp4AmBj9Sv .content-wrapper {
    padding: 4rem 6vw;
  }
}
@media (max-width: 575px) {
  .cid-tp4AmBj9Sv .content-wrapper {
    padding: 4rem 6vw 1.5rem;
  }
}
.cid-tp4AmBj9Sv .text-wrapper {
  width: 40%;
}
@media (max-width: 991px) {
  .cid-tp4AmBj9Sv .text-wrapper {
    width: 100%;
  }
}
.cid-tp4AmBj9Sv .mbr-section-title {
  color: #FFFFFF;
}
.cid-tp4AmBj9Sv .mbr-section-subtitle {
  color: #FFFFFF;
  opacity: 0.8;
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-tp4AmBj9Sv .mbr-section-subtitle {
    margin-top: 32px;
  }
}
@media (max-width: 767px) {
  .cid-tp4AmBj9Sv .mbr-section-subtitle {
    margin-top: 24px;
  }
}
.cid-tp4AmBj9Sv .link {
  text-decoration: underline !important;
}
.cid-tp4AmBj9Sv .col-video {
  position: relative;
  display: flex;
  width: 60%;
  right: -8rem;
}
@media (max-width: 1599px) {
  .cid-tp4AmBj9Sv .col-video {
    right: calc(-4rem - 4vw);
  }
}
@media (max-width: 991px) {
  .cid-tp4AmBj9Sv .col-video {
    left: 0;
    right: 0;
    width: 100%;
    margin-top: 40px;
    height: 350px;
  }
}
.cid-tp4AmBj9Sv .col-video img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 1.76rem;
}
.cid-tp4AmBj9Sv .col-video .box {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 2.08rem;
  position: relative;
  background-image: linear-gradient(90deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  padding: 5px;
}
.cid-tp4AmBj9Sv .col-video .box .box-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2.08rem;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  -webkit-filter: blur(1rem);
  filter: blur(1rem);
}
.cid-tp4AmBj9Sv .col-video .link-container {
  display: flex;
  margin-bottom: 2rem;
}
.cid-tp4AmBj9Sv .col-video .link {
  margin-right: 1rem;
}
.cid-tp4AmBj9Sv .col-video .mbr-media {
  display: flex;
  height: 100%;
  width: 100%;
  border-radius: 1.76rem;
  overflow: hidden;
}
.cid-tp4AmBj9Sv .col-video .mbr-media a:hover {
  background-image: none !important;
}
.cid-tp4AmBj9Sv .mbr-media {
  position: relative;
}
.cid-tp4AmBj9Sv .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tp4AmBj9Sv .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  transition: all .3s;
}
.cid-tp4AmBj9Sv .icon-wrap:hover {
  transform: translate(-50%, -50%);
}
.cid-tp4AmBj9Sv .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tp4AmBj9Sv .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tp4AmBj9Sv .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tp4AmBj9Sv .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tp4AmBj9Sv .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tp4AmBj9Sv .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tp4AmBj9Sv a:hover {
  text-decoration-line: none !important;
}
.cid-tp4EjhFzn3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #212132;
}
.cid-tp4EjhFzn3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tp4EjhFzn3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tp4EjhFzn3 .container {
  max-width: 1280px;
}
.cid-tp4EjhFzn3 .row {
  justify-content: center;
}
.cid-tp4EjhFzn3 .content-wrapper {
  display: flex;
  align-items: stretch;
  background: #8a61ff;
  justify-content: flex-start;
  padding: 4rem;
  border-radius: 4.17rem;
}
@media (max-width: 991px) {
  .cid-tp4EjhFzn3 .content-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-tp4EjhFzn3 .content-wrapper {
    padding: 4rem 6vw;
  }
}
@media (max-width: 575px) {
  .cid-tp4EjhFzn3 .content-wrapper {
    padding: 4rem 6vw 1.5rem;
  }
}
.cid-tp4EjhFzn3 .text-wrapper {
  width: 40%;
}
@media (max-width: 991px) {
  .cid-tp4EjhFzn3 .text-wrapper {
    width: 100%;
  }
}
.cid-tp4EjhFzn3 .mbr-section-title {
  color: #FFFFFF;
}
.cid-tp4EjhFzn3 .mbr-section-subtitle {
  color: #FFFFFF;
  opacity: 0.8;
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-tp4EjhFzn3 .mbr-section-subtitle {
    margin-top: 32px;
  }
}
@media (max-width: 767px) {
  .cid-tp4EjhFzn3 .mbr-section-subtitle {
    margin-top: 24px;
  }
}
.cid-tp4EjhFzn3 .link {
  text-decoration: underline !important;
}
.cid-tp4EjhFzn3 .col-video {
  position: relative;
  display: flex;
  width: 60%;
  right: -8rem;
}
@media (max-width: 1599px) {
  .cid-tp4EjhFzn3 .col-video {
    right: calc(-4rem - 4vw);
  }
}
@media (max-width: 991px) {
  .cid-tp4EjhFzn3 .col-video {
    left: 0;
    right: 0;
    width: 100%;
    margin-top: 40px;
    height: 350px;
  }
}
.cid-tp4EjhFzn3 .col-video img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 1.76rem;
}
.cid-tp4EjhFzn3 .col-video .box {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 2.08rem;
  position: relative;
  background-image: linear-gradient(90deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  padding: 5px;
}
.cid-tp4EjhFzn3 .col-video .box .box-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2.08rem;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  -webkit-filter: blur(1rem);
  filter: blur(1rem);
}
.cid-tp4EjhFzn3 .col-video .link-container {
  display: flex;
  margin-bottom: 2rem;
}
.cid-tp4EjhFzn3 .col-video .link {
  margin-right: 1rem;
}
.cid-tp4EjhFzn3 .col-video .mbr-media {
  display: flex;
  height: 100%;
  width: 100%;
  border-radius: 1.76rem;
  overflow: hidden;
}
.cid-tp4EjhFzn3 .col-video .mbr-media a:hover {
  background-image: none !important;
}
.cid-tp4EjhFzn3 .mbr-media {
  position: relative;
}
.cid-tp4EjhFzn3 .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tp4EjhFzn3 .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  transition: all .3s;
}
.cid-tp4EjhFzn3 .icon-wrap:hover {
  transform: translate(-50%, -50%);
}
.cid-tp4EjhFzn3 .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tp4EjhFzn3 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tp4EjhFzn3 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tp4EjhFzn3 .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tp4EjhFzn3 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tp4EjhFzn3 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tp4EjhFzn3 a:hover {
  text-decoration-line: none !important;
}
.cid-tp4Ek5HlN5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #212132;
}
.cid-tp4Ek5HlN5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tp4Ek5HlN5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tp4Ek5HlN5 .container {
  max-width: 1280px;
}
.cid-tp4Ek5HlN5 .row {
  justify-content: center;
}
.cid-tp4Ek5HlN5 .content-wrapper {
  display: flex;
  align-items: stretch;
  background: #8a61ff;
  justify-content: flex-start;
  padding: 4rem;
  border-radius: 4.17rem;
}
@media (max-width: 991px) {
  .cid-tp4Ek5HlN5 .content-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-tp4Ek5HlN5 .content-wrapper {
    padding: 4rem 6vw;
  }
}
@media (max-width: 575px) {
  .cid-tp4Ek5HlN5 .content-wrapper {
    padding: 4rem 6vw 1.5rem;
  }
}
.cid-tp4Ek5HlN5 .text-wrapper {
  width: 40%;
}
@media (max-width: 991px) {
  .cid-tp4Ek5HlN5 .text-wrapper {
    width: 100%;
  }
}
.cid-tp4Ek5HlN5 .mbr-section-title {
  color: #FFFFFF;
}
.cid-tp4Ek5HlN5 .mbr-section-subtitle {
  color: #FFFFFF;
  opacity: 0.8;
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-tp4Ek5HlN5 .mbr-section-subtitle {
    margin-top: 32px;
  }
}
@media (max-width: 767px) {
  .cid-tp4Ek5HlN5 .mbr-section-subtitle {
    margin-top: 24px;
  }
}
.cid-tp4Ek5HlN5 .link {
  text-decoration: underline !important;
}
.cid-tp4Ek5HlN5 .col-video {
  position: relative;
  display: flex;
  width: 60%;
  right: -8rem;
}
@media (max-width: 1599px) {
  .cid-tp4Ek5HlN5 .col-video {
    right: calc(-4rem - 4vw);
  }
}
@media (max-width: 991px) {
  .cid-tp4Ek5HlN5 .col-video {
    left: 0;
    right: 0;
    width: 100%;
    margin-top: 40px;
    height: 350px;
  }
}
.cid-tp4Ek5HlN5 .col-video img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 1.76rem;
}
.cid-tp4Ek5HlN5 .col-video .box {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 2.08rem;
  position: relative;
  background-image: linear-gradient(90deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  padding: 5px;
}
.cid-tp4Ek5HlN5 .col-video .box .box-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2.08rem;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  -webkit-filter: blur(1rem);
  filter: blur(1rem);
}
.cid-tp4Ek5HlN5 .col-video .link-container {
  display: flex;
  margin-bottom: 2rem;
}
.cid-tp4Ek5HlN5 .col-video .link {
  margin-right: 1rem;
}
.cid-tp4Ek5HlN5 .col-video .mbr-media {
  display: flex;
  height: 100%;
  width: 100%;
  border-radius: 1.76rem;
  overflow: hidden;
}
.cid-tp4Ek5HlN5 .col-video .mbr-media a:hover {
  background-image: none !important;
}
.cid-tp4Ek5HlN5 .mbr-media {
  position: relative;
}
.cid-tp4Ek5HlN5 .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tp4Ek5HlN5 .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  transition: all .3s;
}
.cid-tp4Ek5HlN5 .icon-wrap:hover {
  transform: translate(-50%, -50%);
}
.cid-tp4Ek5HlN5 .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tp4Ek5HlN5 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tp4Ek5HlN5 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tp4Ek5HlN5 .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tp4Ek5HlN5 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tp4Ek5HlN5 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tp4Ek5HlN5 a:hover {
  text-decoration-line: none !important;
}
.cid-tp4El0EMYl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #212132;
}
.cid-tp4El0EMYl .mbr-fallback-image.disabled {
  display: none;
}
.cid-tp4El0EMYl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tp4El0EMYl .container {
  max-width: 1280px;
}
.cid-tp4El0EMYl .row {
  justify-content: center;
}
.cid-tp4El0EMYl .content-wrapper {
  display: flex;
  align-items: stretch;
  background: #8a61ff;
  justify-content: flex-start;
  padding: 4rem;
  border-radius: 4.17rem;
}
@media (max-width: 991px) {
  .cid-tp4El0EMYl .content-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-tp4El0EMYl .content-wrapper {
    padding: 4rem 6vw;
  }
}
@media (max-width: 575px) {
  .cid-tp4El0EMYl .content-wrapper {
    padding: 4rem 6vw 1.5rem;
  }
}
.cid-tp4El0EMYl .text-wrapper {
  width: 40%;
}
@media (max-width: 991px) {
  .cid-tp4El0EMYl .text-wrapper {
    width: 100%;
  }
}
.cid-tp4El0EMYl .mbr-section-title {
  color: #FFFFFF;
}
.cid-tp4El0EMYl .mbr-section-subtitle {
  color: #FFFFFF;
  opacity: 0.8;
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-tp4El0EMYl .mbr-section-subtitle {
    margin-top: 32px;
  }
}
@media (max-width: 767px) {
  .cid-tp4El0EMYl .mbr-section-subtitle {
    margin-top: 24px;
  }
}
.cid-tp4El0EMYl .link {
  text-decoration: underline !important;
}
.cid-tp4El0EMYl .col-video {
  position: relative;
  display: flex;
  width: 60%;
  right: -8rem;
}
@media (max-width: 1599px) {
  .cid-tp4El0EMYl .col-video {
    right: calc(-4rem - 4vw);
  }
}
@media (max-width: 991px) {
  .cid-tp4El0EMYl .col-video {
    left: 0;
    right: 0;
    width: 100%;
    margin-top: 40px;
    height: 350px;
  }
}
.cid-tp4El0EMYl .col-video img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 1.76rem;
}
.cid-tp4El0EMYl .col-video .box {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 2.08rem;
  position: relative;
  background-image: linear-gradient(90deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  padding: 5px;
}
.cid-tp4El0EMYl .col-video .box .box-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2.08rem;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  -webkit-filter: blur(1rem);
  filter: blur(1rem);
}
.cid-tp4El0EMYl .col-video .link-container {
  display: flex;
  margin-bottom: 2rem;
}
.cid-tp4El0EMYl .col-video .link {
  margin-right: 1rem;
}
.cid-tp4El0EMYl .col-video .mbr-media {
  display: flex;
  height: 100%;
  width: 100%;
  border-radius: 1.76rem;
  overflow: hidden;
}
.cid-tp4El0EMYl .col-video .mbr-media a:hover {
  background-image: none !important;
}
.cid-tp4El0EMYl .mbr-media {
  position: relative;
}
.cid-tp4El0EMYl .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tp4El0EMYl .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  transition: all .3s;
}
.cid-tp4El0EMYl .icon-wrap:hover {
  transform: translate(-50%, -50%);
}
.cid-tp4El0EMYl .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tp4El0EMYl .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tp4El0EMYl .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tp4El0EMYl .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tp4El0EMYl .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tp4El0EMYl .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tp4El0EMYl a:hover {
  text-decoration-line: none !important;
}
.cid-tp4DRn7Oo8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffdd65;
}
.cid-tp4DRn7Oo8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tp4DRn7Oo8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tp4DRn7Oo8 .container {
  max-width: 1280px;
}
.cid-tp4DRn7Oo8 .content-wrapper {
  display: flex;
  align-items: stretch;
  background: #212132;
  padding: 4rem 0;
  border-radius: 4.17rem;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tp4DRn7Oo8 .content-wrapper {
    flex-wrap: wrap;
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .cid-tp4DRn7Oo8 .content-wrapper {
    padding: 40px 6vw;
  }
}
.cid-tp4DRn7Oo8 .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 50%;
  padding-right: 4rem;
  margin-bottom: 24px;
  padding-right: 0;
  padding-left: 4rem;
}
@media (max-width: 991px) {
  .cid-tp4DRn7Oo8 .text-wrapper {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
  }
}
.cid-tp4DRn7Oo8 .card-title {
  color: #FFDD65;
  margin-bottom: auto;
}
.cid-tp4DRn7Oo8 .mbr-text {
  color: #ffffff;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .cid-tp4DRn7Oo8 .mbr-text {
    margin-top: 16px;
  }
}
.cid-tp4DRn7Oo8 .img-container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  right: -6rem;
}
@media (max-width: 1599px) {
  .cid-tp4DRn7Oo8 .img-container {
    right: -4vw;
  }
}
@media (max-width: 1400px) {
  .cid-tp4DRn7Oo8 .img-container {
    right: 0rem;
    left: 0;
    padding: 0 3rem;
  }
}
@media (max-width: 991px) {
  .cid-tp4DRn7Oo8 .img-container {
    width: 100%;
    margin-bottom: 34px;
    left: 0;
    right: 0;
    padding: 0;
  }
}
.cid-tp4DRn7Oo8 .image-wrapper {
  aspect-ratio: 1;
  position: relative;
  border-radius: 2.08rem;
  padding: 32px;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
}
@media (max-width: 767px) {
  .cid-tp4DRn7Oo8 .image-wrapper {
    padding: 20px;
  }
}
.cid-tp4DRn7Oo8 .image-wrapper .img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2.08rem;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  -webkit-filter: blur(1rem);
  filter: blur(1rem);
}
.cid-tp4DRn7Oo8 .image-wrapper .img-box {
  position: relative;
  z-index: 11;
  border-radius: 2.08rem;
  overflow: hidden;
  height: 100%;
}
.cid-tp4DRn7Oo8 .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tp4JZ1i6rc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffdd65;
}
.cid-tp4JZ1i6rc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tp4JZ1i6rc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tp4JZ1i6rc .container {
  max-width: 1280px;
}
.cid-tp4JZ1i6rc .content-wrapper {
  display: flex;
  align-items: stretch;
  background: #212132;
  padding: 4rem 0;
  border-radius: 4.17rem;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tp4JZ1i6rc .content-wrapper {
    flex-wrap: wrap;
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .cid-tp4JZ1i6rc .content-wrapper {
    padding: 40px 6vw;
  }
}
.cid-tp4JZ1i6rc .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 50%;
  padding-right: 4rem;
  margin-bottom: 24px;
  padding-right: 0;
  padding-left: 4rem;
}
@media (max-width: 991px) {
  .cid-tp4JZ1i6rc .text-wrapper {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
  }
}
.cid-tp4JZ1i6rc .card-title {
  color: #FFDD65;
  margin-bottom: auto;
}
.cid-tp4JZ1i6rc .mbr-text {
  color: #ffffff;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .cid-tp4JZ1i6rc .mbr-text {
    margin-top: 16px;
  }
}
.cid-tp4JZ1i6rc .img-container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  right: -6rem;
}
@media (max-width: 1599px) {
  .cid-tp4JZ1i6rc .img-container {
    right: -4vw;
  }
}
@media (max-width: 1400px) {
  .cid-tp4JZ1i6rc .img-container {
    right: 0rem;
    left: 0;
    padding: 0 3rem;
  }
}
@media (max-width: 991px) {
  .cid-tp4JZ1i6rc .img-container {
    width: 100%;
    margin-bottom: 34px;
    left: 0;
    right: 0;
    padding: 0;
  }
}
.cid-tp4JZ1i6rc .image-wrapper {
  aspect-ratio: 1;
  position: relative;
  border-radius: 2.08rem;
  padding: 32px;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
}
@media (max-width: 767px) {
  .cid-tp4JZ1i6rc .image-wrapper {
    padding: 20px;
  }
}
.cid-tp4JZ1i6rc .image-wrapper .img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2.08rem;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  -webkit-filter: blur(1rem);
  filter: blur(1rem);
}
.cid-tp4JZ1i6rc .image-wrapper .img-box {
  position: relative;
  z-index: 11;
  border-radius: 2.08rem;
  overflow: hidden;
  height: 100%;
}
.cid-tp4JZ1i6rc .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tp4AnT7cRd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #212132;
}
.cid-tp4AnT7cRd .mbr-fallback-image.disabled {
  display: none;
}
.cid-tp4AnT7cRd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tp4AnT7cRd .container {
  max-width: 1280px;
}
.cid-tp4AnT7cRd .row {
  justify-content: center;
}
.cid-tp4AnT7cRd .col-title {
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .cid-tp4AnT7cRd .col-title {
    margin-bottom: 50px;
  }
}
.cid-tp4AnT7cRd .mbr-section-title {
  color: #FFDD65;
}
.cid-tp4AnT7cRd .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 1rem;
}
.cid-tp4AnT7cRd .col-video {
  display: flex;
}
.cid-tp4AnT7cRd .col-video img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 1.76rem;
}
@media (max-width: 767px) {
  .cid-tp4AnT7cRd .col-video {
    height: 350px;
  }
}
.cid-tp4AnT7cRd .col-video .box {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 2.08rem;
  position: relative;
  background-image: linear-gradient(90deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  padding: 5px;
}
.cid-tp4AnT7cRd .col-video .box .box-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2.08rem;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  -webkit-filter: blur(1rem);
  filter: blur(1rem);
}
.cid-tp4AnT7cRd .col-video .link-container {
  display: flex;
  margin-bottom: 2rem;
}
.cid-tp4AnT7cRd .col-video .link {
  margin-right: 1rem;
}
.cid-tp4AnT7cRd .col-video .mbr-media {
  display: flex;
  height: 100%;
  width: 100%;
  border-radius: 1.76rem;
  overflow: hidden;
}
.cid-tp4AnT7cRd .col-video .mbr-media a:hover {
  background-image: none !important;
}
.cid-tp4AnT7cRd .mbr-media {
  position: relative;
}
.cid-tp4AnT7cRd .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tp4AnT7cRd .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  transition: all .3s;
}
.cid-tp4AnT7cRd .icon-wrap:hover {
  transform: translate(-50%, -50%);
}
.cid-tp4AnT7cRd .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tp4AnT7cRd .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tp4AnT7cRd .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tp4AnT7cRd .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tp4AnT7cRd .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tp4AnT7cRd .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tp4AnT7cRd a:hover {
  text-decoration-line: none !important;
}
.cid-tp4AvMpWxE {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #212132;
}
.cid-tp4AvMpWxE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tp4AvMpWxE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tp4AvMpWxE .container {
  max-width: 1600px;
}
.cid-tp4AvMpWxE .row {
  justify-content: left;
}
.cid-tp4AvMpWxE .content-container {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
}
.cid-tp4AvMpWxE .title-container {
  width: 100%;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .cid-tp4AvMpWxE .title-container {
    margin-bottom: 50px;
  }
}
.cid-tp4AvMpWxE .mbr-section-title {
  color: #FFDD65;
}
.cid-tp4AvMpWxE .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 1rem;
}
.cid-tp4AvMpWxE .img-container {
  width: 100%;
  max-height: 100vh;
}
@media (max-width: 767px) {
  .cid-tp4AvMpWxE .img-container {
    height: 350px;
  }
}
.cid-tp4AvMpWxE .image-wrapper {
  height: 100%;
  position: relative;
  border-radius: 4.17rem;
  padding: 5px;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
}
.cid-tp4AvMpWxE .image-wrapper .img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4.17rem;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  -webkit-filter: blur(1rem);
  filter: blur(1rem);
}
.cid-tp4AvMpWxE .image-wrapper .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 11;
  border-radius: 3.85rem;
  overflow: hidden;
  height: 100%;
}
.cid-tp4AvMpWxE .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tp4Q4zNj7k {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #212132;
}
.cid-tp4Q4zNj7k .mbr-fallback-image.disabled {
  display: none;
}
.cid-tp4Q4zNj7k .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tp4Q4zNj7k .container {
  max-width: 1600px;
}
.cid-tp4Q4zNj7k .row {
  justify-content: left;
}
.cid-tp4Q4zNj7k .content-container {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
}
.cid-tp4Q4zNj7k .title-container {
  width: 100%;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .cid-tp4Q4zNj7k .title-container {
    margin-bottom: 50px;
  }
}
.cid-tp4Q4zNj7k .mbr-section-title {
  color: #FFDD65;
}
.cid-tp4Q4zNj7k .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 1rem;
}
.cid-tp4Q4zNj7k .img-container {
  width: 100%;
  max-height: 100vh;
}
@media (max-width: 767px) {
  .cid-tp4Q4zNj7k .img-container {
    height: 350px;
  }
}
.cid-tp4Q4zNj7k .image-wrapper {
  height: 100%;
  position: relative;
  border-radius: 4.17rem;
  padding: 5px;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
}
.cid-tp4Q4zNj7k .image-wrapper .img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4.17rem;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  -webkit-filter: blur(1rem);
  filter: blur(1rem);
}
.cid-tp4Q4zNj7k .image-wrapper .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 11;
  border-radius: 3.85rem;
  overflow: hidden;
  height: 100%;
}
.cid-tp4Q4zNj7k .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tp52NzaWo0 {
  background-color: #212132;
}
.cid-tp52NzaWo0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tp52NzaWo0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tp52NzaWo0 .content-bg {
  border-top-left-radius: 6.67rem;
  border-top-right-radius: 6.67rem;
  width: 100%;
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: transparent;
  background: #ffdd65;
}
.cid-tp52NzaWo0 .container {
  max-width: 1280px;
}
.cid-tp52NzaWo0 .row {
  justify-content: center;
}
.cid-tp52NzaWo0 .mbr-section-title {
  color: #212132;
}
.cid-tp52NzaWo0 .mbr-section-subtitle {
  color: #212132;
  margin-top: 1rem;
}
.cid-tp4ys85oBZ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-tp4ys85oBZ .container {
  max-width: 1472px;
}
.cid-tp4ys85oBZ .mbr-text {
  color: #FFFFFF;
}
.cid-tp4SQbGowj {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 96px;
}
.cid-tp4SQbGowj nav.navbar {
  position: fixed;
}
.cid-tp4SQbGowj .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tp4SQbGowj .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tp4SQbGowj .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tp4SQbGowj .dropdown-item:hover,
.cid-tp4SQbGowj .dropdown-item:focus {
  background: #ae5eff !important;
  color: white !important;
}
.cid-tp4SQbGowj .dropdown-item:hover span {
  color: white;
}
.cid-tp4SQbGowj .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tp4SQbGowj .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tp4SQbGowj .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tp4SQbGowj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tp4SQbGowj .nav-link {
  position: relative;
}
.cid-tp4SQbGowj .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-tp4SQbGowj .container {
    flex-wrap: nowrap;
  }
}
.cid-tp4SQbGowj .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
}
.cid-tp4SQbGowj .iconfont-wrapper:hover {
  color: #ffdd65 !important;
}
.cid-tp4SQbGowj .dropdown-menu,
.cid-tp4SQbGowj .navbar.opened {
  background: #212132 !important;
}
.cid-tp4SQbGowj .nav-item:focus,
.cid-tp4SQbGowj .nav-link:focus {
  outline: none;
}
.cid-tp4SQbGowj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tp4SQbGowj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tp4SQbGowj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tp4SQbGowj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tp4SQbGowj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tp4SQbGowj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tp4SQbGowj .navbar {
  min-height: 96px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #212132;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-tp4SQbGowj .navbar.opened {
  transition: all 0.3s;
}
.cid-tp4SQbGowj .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tp4SQbGowj .navbar .navbar-logo img {
  width: auto;
}
.cid-tp4SQbGowj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tp4SQbGowj .navbar.collapsed {
  justify-content: center;
}
.cid-tp4SQbGowj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tp4SQbGowj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tp4SQbGowj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tp4SQbGowj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tp4SQbGowj .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tp4SQbGowj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tp4SQbGowj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tp4SQbGowj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tp4SQbGowj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tp4SQbGowj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tp4SQbGowj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tp4SQbGowj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tp4SQbGowj .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tp4SQbGowj .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tp4SQbGowj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tp4SQbGowj .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tp4SQbGowj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 60%;
  }
  .cid-tp4SQbGowj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tp4SQbGowj .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tp4SQbGowj .navbar.navbar-short {
  min-height: 96px;
}
.cid-tp4SQbGowj .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tp4SQbGowj .navbar.navbar-short .navbar-brand {
  min-height: 96px;
  padding: 0;
}
.cid-tp4SQbGowj .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-tp4SQbGowj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tp4SQbGowj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tp4SQbGowj .navbar-brand:hover {
  transform: scale(1.1);
}
.cid-tp4SQbGowj .dropdown-item.active,
.cid-tp4SQbGowj .dropdown-item:active {
  background-color: transparent;
}
.cid-tp4SQbGowj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tp4SQbGowj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tp4SQbGowj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tp4SQbGowj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #212132;
}
.cid-tp4SQbGowj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tp4SQbGowj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tp4SQbGowj ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tp4SQbGowj .navbar-buttons {
  text-align: center;
}
.cid-tp4SQbGowj .navbar-buttons .btn {
  padding: 9px 18px;
  min-width: 100px;
  min-height: 52px;
  border-radius: 0.3rem;
}
.cid-tp4SQbGowj .navbar-buttons .btn:hover {
  color: #ffdd65 !important;
}
@media (max-width: 575px) {
  .cid-tp4SQbGowj .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-tp4SQbGowj .navbar-buttons .btn-black {
  border: solid 2px #ae5eff !important;
  box-shadow: 3px 3px 0 0 #ae5eff !important;
}
.cid-tp4SQbGowj .navbar-buttons .btn-black:hover {
  border: solid 2px #ae5eff !important;
  color: #ffdd65 !important;
  box-shadow: 0 0 0 0 #ae5eff !important;
}
.cid-tp4SQbGowj button.navbar-toggler {
  outline: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 0.3rem;
  background-color: #212132 !important;
  border: solid 2px #ae5eff !important;
  box-shadow: 3px 3px 0 0 #ae5eff !important;
}
.cid-tp4SQbGowj button.navbar-toggler:hover {
  border: solid 2px #ae5eff !important;
  color: #ffdd65 !important;
  box-shadow: 0 0 0 0 #ae5eff !important;
}
.cid-tp4SQbGowj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tp4SQbGowj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 9px;
  left: 8px;
  transition: all 0.2s;
}
.cid-tp4SQbGowj button.navbar-toggler .hamburger span:nth-child(2) {
  left: 8px;
  top: 17px;
  transition: all 0.15s;
}
.cid-tp4SQbGowj button.navbar-toggler .hamburger span:nth-child(3) {
  left: 8px;
  top: 17px;
  transition: all 0.15s;
}
.cid-tp4SQbGowj button.navbar-toggler .hamburger span:nth-child(4) {
  left: 8px;
  top: 25px;
  transition: all 0.2s;
}
.cid-tp4SQbGowj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tp4SQbGowj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tp4SQbGowj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tp4SQbGowj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tp4SQbGowj .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tp4SQbGowj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tp4SQbGowj .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tp4SQbGowj .navbar {
    height: 70px;
  }
  .cid-tp4SQbGowj .navbar.opened {
    height: auto;
  }
  .cid-tp4SQbGowj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tp4SQbGowj .navbar-nav {
  margin: 0 auto;
}
.cid-tp4SQbGowj .nav-item {
  padding: 0;
  margin: 2px;
}
.cid-tp4SQbGowj .nav-item .nav-link {
  padding: 6px 32px !important;
  margin: 0 !important;
}
.cid-tp4SQbGowj .nav-item .nav-link::after {
  color: #ffdd65 !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-tp4SQbGowj .nav-item .nav-link:hover {
  color: #ffdd65 !important;
}
.cid-tp4SQbGowj .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-tp4SQbGowj .nav-item .dropdown-menu {
  background-color: #ffffff !important;
}
.cid-tp4SQbGowj .nav-item .dropdown-menu:hover {
  background-color: #ffffff !important;
}
.cid-tp4SQbGowj .nav-item .dropdown-menu .dropdown-item {
  color: #212132 !important;
  background-color: transparent !important;
}
.cid-tp4SQbGowj .nav-item .dropdown-menu .dropdown-item:hover {
  color: #ae5eff !important;
}
@media (max-width: 991px) {
  .cid-tp4SQbGowj .navbar {
    justify-content: flex-start !important;
  }
  .cid-tp4SQbGowj .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-tp4SQbGowj .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-tp4SQbGowj .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-tp4SQbGowj .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-tp4SQbGowj .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .cid-tp4SQbGowj .navbar-collapse .nav-item .nav-link {
    padding: 14px 0 !important;
    justify-content: flex-start;
  }
}
.cid-tp4SQdm4k8 {
  background-image: url("../../../assets/images/pexels-fauxels-3183181.jpg");
}
.cid-tp4SQdm4k8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tp4SQdm4k8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tp4SQdm4k8 .row {
  justify-content: left;
}
.cid-tp4SQdm4k8 .mbr-section-title {
  color: #FFDD65;
}
.cid-tp4SQdm4k8 .mbr-section-subtitle {
  color: #FFDD65;
  background-image: linear-gradient(90deg, currentColor 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-tp4SQdm4k8 .btn-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 96px;
}
@media (max-width: 991px) {
  .cid-tp4SQdm4k8 .btn-container {
    padding-top: 50px;
    flex-direction: column;
    align-items: center;
  }
}
.cid-tp4SQdm4k8 .custom-mbr-section-btn {
  padding-bottom: 0.42rem;
}
@media (max-width: 991px) {
  .cid-tp4SQdm4k8 .custom-mbr-section-btn {
    padding-bottom: 0;
  }
}
.cid-tp4SQdm4k8 .custom-section-btn {
  height: 100%;
}
.cid-tp4SQdm4k8 .custom-section-btn .btn {
  height: 100%;
}
.cid-tp4SQdm4k8 .text-container {
  max-width: 384px;
  margin-left: 40px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tp4SQdm4k8 .text-container {
    margin: 26px auto 0;
  }
}
.cid-tp4SQdm4k8 .mbr-text {
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .cid-tp4SQdm4k8 .mbr-text {
    text-align: center !important;
  }
}
.cid-tp4SQdm4k8 .text-item-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-top: 26px;
}
@media (max-width: 991px) {
  .cid-tp4SQdm4k8 .text-item-container {
    flex-wrap: wrap;
  }
}
.cid-tp4SQdm4k8 .text-item {
  display: flex;
  align-items: center;
  max-width: 48%;
}
@media (max-width: 991px) {
  .cid-tp4SQdm4k8 .text-item {
    max-width: 100%;
    width: 100%;
    justify-content: center;
    margin-bottom: 6px;
  }
}
.cid-tp4SQdm4k8 .icon-text {
  color: #ffffff;
  opacity: 0.6;
}
.cid-tp4SQdm4k8 .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.cid-tp4SQdm4k8 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 24px;
  color: #ae5eff;
}
.cid-tp4SQeLVqM {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #212132;
}
.cid-tp4SQeLVqM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tp4SQeLVqM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tp4SQeLVqM .container {
  max-width: 1600px;
}
.cid-tp4SQeLVqM .row {
  justify-content: center;
}
.cid-tp4SQeLVqM .content-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  flex-wrap: wrap;
}
.cid-tp4SQeLVqM .title-container {
  width: 100%;
}
.cid-tp4SQeLVqM .mbr-section-title {
  color: #FFDD65;
  width: 100%;
}
.cid-tp4SQeLVqM .colored-text {
  line-height: inherit;
  color: inherit;
  color: #ae5eff;
}
.cid-tp4SQeLVqM .mbr-section-subtitle {
  color: #FFDD65;
  margin-top: 1.5rem;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tp4SQeLVqM .mbr-section-subtitle {
    margin-top: 1rem;
  }
}
.cid-tp4SQeLVqM .btn-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 80px;
  margin-right: auto;
  margin-left: auto;
  gap: 40px;
}
@media (max-width: 991px) {
  .cid-tp4SQeLVqM .btn-container {
    margin-top: 50px;
    flex-wrap: wrap;
    gap: 0;
  }
}
.cid-tp4SQeLVqM .text-container {
  max-width: 400px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tp4SQeLVqM .text-container {
    margin: 24px auto 0;
  }
}
.cid-tp4SQeLVqM .mbr-text {
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .cid-tp4SQeLVqM .mbr-text {
    text-align: center !important;
  }
}
.cid-tp4SQeLVqM .text-item-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-top: 26px;
}
@media (max-width: 991px) {
  .cid-tp4SQeLVqM .text-item-container {
    flex-wrap: wrap;
  }
}
.cid-tp4SQeLVqM .text-item {
  display: flex;
  align-items: center;
  max-width: 48%;
}
@media (max-width: 991px) {
  .cid-tp4SQeLVqM .text-item {
    max-width: 100%;
    width: 100%;
    justify-content: center;
    margin-bottom: 6px;
  }
}
.cid-tp4SQeLVqM .icon-text {
  color: #AE5EFF;
}
.cid-tp4SQeLVqM .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.cid-tp4SQeLVqM .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 24px;
  color: #ae5eff;
}
.cid-tp4SQeLVqM .form-container {
  max-width: 535px;
  margin-right: auto;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .cid-tp4SQeLVqM .form-container {
    max-width: 100%;
    width: 100%;
  }
}
.cid-tp4SQeLVqM form {
  width: 100%;
}
.cid-tp4SQeLVqM form .dragArea.row {
  justify-content: flex-start;
  width: auto !important;
}
.cid-tp4SQeLVqM form p {
  color: #ffffff;
}
.cid-tp4SQeLVqM form .mbr-section-btn {
  width: max-content;
  max-width: 35%;
}
@media (max-width: 991px) {
  .cid-tp4SQeLVqM form .mbr-section-btn {
    max-width: 100%;
    width: 100%;
  }
}
.cid-tp4SQeLVqM form .mbr-section-btn .btn {
  padding: 10px 35px;
  height: 100%;
  border-radius: 0.75rem !important;
  border-bottom-left-radius: 0 !important;
  border-top-left-radius: 0 !important;
}
@media (max-width: 991px) {
  .cid-tp4SQeLVqM form .mbr-section-btn .btn {
    min-height: 64px;
    padding: 6px 24px;
    width: 100%;
    border-radius: 0.75rem !important;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }
}
.cid-tp4SQeLVqM form .form-group {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  flex-grow: 1;
}
.cid-tp4SQeLVqM form .group-container {
  position: relative;
  width: 100%;
  padding: 0;
  margin-top: 0.42rem;
}
.cid-tp4SQeLVqM form .group-bg {
  position: absolute;
  border-radius: 0.75rem;
  z-index: 5;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8a61ff 99.93%);
}
.cid-tp4SQeLVqM form .group-border {
  display: flex;
  align-items: stretch;
  position: relative;
  z-index: 6;
  padding: 3px;
  border-radius: 0.75rem;
  transition: all 300ms ease;
  background-image: linear-gradient(90deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8a61ff 99.93%);
  transform: translate3d(-0.42rem, -0.42rem, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.cid-tp4SQeLVqM form .group-border:hover {
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
@media (max-width: 991px) {
  .cid-tp4SQeLVqM form .group-border {
    flex-wrap: wrap;
  }
}
.cid-tp4SQeLVqM form .form-control {
  min-height: 100px;
  height: 100%;
  border: none !important;
  background: #ffffff;
  box-shadow: none !important;
  border-radius: 0.75rem;
  border-bottom-right-radius: 0 !important;
  border-top-right-radius: 0 !important;
  margin-bottom: 0;
  padding: 20px 40px;
  font-size: 24px;
  line-height: 32px;
  color: #212132;
  font-weight: 400;
}
@media (max-width: 991px) {
  .cid-tp4SQeLVqM form .form-control {
    min-height: 64px;
    padding: 6px 24px;
    width: 100%;
    border-radius: 0.75rem !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    text-align: center !important;
  }
}
.cid-tp4SQeLVqM form .form-control::-webkit-input-placeholder {
  color: #939292;
}
.cid-tp4SQeLVqM form .form-control::-moz-placeholder {
  color: #939292;
}
.cid-tp4SQeLVqM form .form-control:-moz-placeholder {
  color: #939292;
}
.cid-tp4SQeLVqM form .form-control:-ms-input-placeholder {
  color: #939292;
}
.cid-tp4SQeLVqM form .form-control:hover {
  outline: none !important;
}
.cid-tp4SQeLVqM form select {
  color: #939292 !important;
}
.cid-tp4SQeLVqM form textarea {
  height: 200px;
}
.cid-tp4SQeLVqM form input:active,
.cid-tp4SQeLVqM form textarea:active,
.cid-tp4SQeLVqM form input:focus,
.cid-tp4SQeLVqM form textarea:focus {
  background-color: #FFFFFF !important;
}
.cid-tp4SQeLVqM form input:active::-webkit-input-placeholder,
.cid-tp4SQeLVqM form textarea:active::-webkit-input-placeholder,
.cid-tp4SQeLVqM form input:focus::-webkit-input-placeholder,
.cid-tp4SQeLVqM form textarea:focus::-webkit-input-placeholder {
  color: #939292;
}
.cid-tp4SQeLVqM form input:active::-moz-placeholder,
.cid-tp4SQeLVqM form textarea:active::-moz-placeholder,
.cid-tp4SQeLVqM form input:focus::-moz-placeholder,
.cid-tp4SQeLVqM form textarea:focus::-moz-placeholder {
  color: #939292;
}
.cid-tp4SQeLVqM form input:active:-moz-placeholder,
.cid-tp4SQeLVqM form textarea:active:-moz-placeholder,
.cid-tp4SQeLVqM form input:focus:-moz-placeholder,
.cid-tp4SQeLVqM form textarea:focus:-moz-placeholder {
  color: #939292;
}
.cid-tp4SQeLVqM form input:active:-ms-input-placeholder,
.cid-tp4SQeLVqM form textarea:active:-ms-input-placeholder,
.cid-tp4SQeLVqM form input:focus:-ms-input-placeholder,
.cid-tp4SQeLVqM form textarea:focus:-ms-input-placeholder {
  color: #939292;
}
.cid-tp4SQeLVqM form .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.cid-tp4SQeLVqM form .row [class*=col] {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-tp4SQeLVqM form label {
  width: 100%;
  color: #ffffff;
  margin-bottom: 10px;
}
.cid-tp4SQeLVqM form .form-check-input {
  border-color: rgba(255, 255, 255, 0.25) !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}
.cid-tp4SQeLVqM form .form-check-input:focus,
.cid-tp4SQeLVqM form .form-check-input:hover {
  background-color: transparent !important;
  border-color: #ffffff !important;
}
.cid-tp4SQeLVqM form .form-check-input:checked {
  border-color: #ffffff !important;
}
.cid-tp4SQgxp9H {
  background-color: #212132;
}
.cid-tp4SQgxp9H .mbr-fallback-image.disabled {
  display: none;
}
.cid-tp4SQgxp9H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tp4SQgxp9H .content-bg {
  border-top-left-radius: 6.67rem;
  border-top-right-radius: 6.67rem;
  width: 100%;
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: transparent;
  background: #ffdd65;
}
.cid-tp4SQgxp9H .container {
  max-width: 1280px;
}
.cid-tp4SQgxp9H .row {
  justify-content: center;
}
.cid-tp4SQgxp9H .mbr-section-title {
  color: #212132;
}
.cid-tp4SQgxp9H .mbr-section-subtitle {
  color: #212132;
  margin-top: 1rem;
}
.cid-tp4SQhDcCW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #212132;
}
.cid-tp4SQhDcCW .mbr-fallback-image.disabled {
  display: none;
}
.cid-tp4SQhDcCW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tp4SQhDcCW .container {
  max-width: 1280px;
}
.cid-tp4SQhDcCW .row {
  justify-content: center;
}
.cid-tp4SQhDcCW .content-wrapper {
  display: flex;
  align-items: stretch;
  background: #8a61ff;
  justify-content: flex-start;
  padding: 4rem;
  border-radius: 4.17rem;
}
@media (max-width: 991px) {
  .cid-tp4SQhDcCW .content-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-tp4SQhDcCW .content-wrapper {
    padding: 4rem 6vw;
  }
}
@media (max-width: 575px) {
  .cid-tp4SQhDcCW .content-wrapper {
    padding: 4rem 6vw 1.5rem;
  }
}
.cid-tp4SQhDcCW .text-wrapper {
  width: 40%;
}
@media (max-width: 991px) {
  .cid-tp4SQhDcCW .text-wrapper {
    width: 100%;
  }
}
.cid-tp4SQhDcCW .mbr-section-title {
  color: #FFFFFF;
}
.cid-tp4SQhDcCW .mbr-section-subtitle {
  color: #FFFFFF;
  opacity: 0.8;
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-tp4SQhDcCW .mbr-section-subtitle {
    margin-top: 32px;
  }
}
@media (max-width: 767px) {
  .cid-tp4SQhDcCW .mbr-section-subtitle {
    margin-top: 24px;
  }
}
.cid-tp4SQhDcCW .link {
  text-decoration: underline !important;
}
.cid-tp4SQhDcCW .col-video {
  position: relative;
  display: flex;
  width: 60%;
  right: -8rem;
}
@media (max-width: 1599px) {
  .cid-tp4SQhDcCW .col-video {
    right: calc(-4rem - 4vw);
  }
}
@media (max-width: 991px) {
  .cid-tp4SQhDcCW .col-video {
    left: 0;
    right: 0;
    width: 100%;
    margin-top: 40px;
    height: 350px;
  }
}
.cid-tp4SQhDcCW .col-video img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 1.76rem;
}
.cid-tp4SQhDcCW .col-video .box {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 2.08rem;
  position: relative;
  background-image: linear-gradient(90deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  padding: 5px;
}
.cid-tp4SQhDcCW .col-video .box .box-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2.08rem;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  -webkit-filter: blur(1rem);
  filter: blur(1rem);
}
.cid-tp4SQhDcCW .col-video .link-container {
  display: flex;
  margin-bottom: 2rem;
}
.cid-tp4SQhDcCW .col-video .link {
  margin-right: 1rem;
}
.cid-tp4SQhDcCW .col-video .mbr-media {
  display: flex;
  height: 100%;
  width: 100%;
  border-radius: 1.76rem;
  overflow: hidden;
}
.cid-tp4SQhDcCW .col-video .mbr-media a:hover {
  background-image: none !important;
}
.cid-tp4SQhDcCW .mbr-media {
  position: relative;
}
.cid-tp4SQhDcCW .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tp4SQhDcCW .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  transition: all .3s;
}
.cid-tp4SQhDcCW .icon-wrap:hover {
  transform: translate(-50%, -50%);
}
.cid-tp4SQhDcCW .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tp4SQhDcCW .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tp4SQhDcCW .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tp4SQhDcCW .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tp4SQhDcCW .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tp4SQhDcCW .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tp4SQhDcCW a:hover {
  text-decoration-line: none !important;
}
.cid-tp4SQjrkJx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #212132;
}
.cid-tp4SQjrkJx .mbr-fallback-image.disabled {
  display: none;
}
.cid-tp4SQjrkJx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tp4SQjrkJx .container {
  max-width: 1280px;
}
.cid-tp4SQjrkJx .row {
  justify-content: center;
}
.cid-tp4SQjrkJx .content-wrapper {
  display: flex;
  align-items: stretch;
  background: #8a61ff;
  justify-content: flex-start;
  padding: 4rem;
  border-radius: 4.17rem;
}
@media (max-width: 991px) {
  .cid-tp4SQjrkJx .content-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-tp4SQjrkJx .content-wrapper {
    padding: 4rem 6vw;
  }
}
@media (max-width: 575px) {
  .cid-tp4SQjrkJx .content-wrapper {
    padding: 4rem 6vw 1.5rem;
  }
}
.cid-tp4SQjrkJx .text-wrapper {
  width: 40%;
}
@media (max-width: 991px) {
  .cid-tp4SQjrkJx .text-wrapper {
    width: 100%;
  }
}
.cid-tp4SQjrkJx .mbr-section-title {
  color: #FFFFFF;
}
.cid-tp4SQjrkJx .mbr-section-subtitle {
  color: #FFFFFF;
  opacity: 0.8;
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-tp4SQjrkJx .mbr-section-subtitle {
    margin-top: 32px;
  }
}
@media (max-width: 767px) {
  .cid-tp4SQjrkJx .mbr-section-subtitle {
    margin-top: 24px;
  }
}
.cid-tp4SQjrkJx .link {
  text-decoration: underline !important;
}
.cid-tp4SQjrkJx .col-video {
  position: relative;
  display: flex;
  width: 60%;
  right: -8rem;
}
@media (max-width: 1599px) {
  .cid-tp4SQjrkJx .col-video {
    right: calc(-4rem - 4vw);
  }
}
@media (max-width: 991px) {
  .cid-tp4SQjrkJx .col-video {
    left: 0;
    right: 0;
    width: 100%;
    margin-top: 40px;
    height: 350px;
  }
}
.cid-tp4SQjrkJx .col-video img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 1.76rem;
}
.cid-tp4SQjrkJx .col-video .box {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 2.08rem;
  position: relative;
  background-image: linear-gradient(90deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  padding: 5px;
}
.cid-tp4SQjrkJx .col-video .box .box-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2.08rem;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  -webkit-filter: blur(1rem);
  filter: blur(1rem);
}
.cid-tp4SQjrkJx .col-video .link-container {
  display: flex;
  margin-bottom: 2rem;
}
.cid-tp4SQjrkJx .col-video .link {
  margin-right: 1rem;
}
.cid-tp4SQjrkJx .col-video .mbr-media {
  display: flex;
  height: 100%;
  width: 100%;
  border-radius: 1.76rem;
  overflow: hidden;
}
.cid-tp4SQjrkJx .col-video .mbr-media a:hover {
  background-image: none !important;
}
.cid-tp4SQjrkJx .mbr-media {
  position: relative;
}
.cid-tp4SQjrkJx .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tp4SQjrkJx .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  transition: all .3s;
}
.cid-tp4SQjrkJx .icon-wrap:hover {
  transform: translate(-50%, -50%);
}
.cid-tp4SQjrkJx .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tp4SQjrkJx .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tp4SQjrkJx .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tp4SQjrkJx .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tp4SQjrkJx .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tp4SQjrkJx .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tp4SQjrkJx a:hover {
  text-decoration-line: none !important;
}
.cid-tp4SQlfQ9m {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #212132;
}
.cid-tp4SQlfQ9m .mbr-fallback-image.disabled {
  display: none;
}
.cid-tp4SQlfQ9m .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tp4SQlfQ9m .container {
  max-width: 1280px;
}
.cid-tp4SQlfQ9m .row {
  justify-content: center;
}
.cid-tp4SQlfQ9m .content-wrapper {
  display: flex;
  align-items: stretch;
  background: #8a61ff;
  justify-content: flex-start;
  padding: 4rem;
  border-radius: 4.17rem;
}
@media (max-width: 991px) {
  .cid-tp4SQlfQ9m .content-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-tp4SQlfQ9m .content-wrapper {
    padding: 4rem 6vw;
  }
}
@media (max-width: 575px) {
  .cid-tp4SQlfQ9m .content-wrapper {
    padding: 4rem 6vw 1.5rem;
  }
}
.cid-tp4SQlfQ9m .text-wrapper {
  width: 40%;
}
@media (max-width: 991px) {
  .cid-tp4SQlfQ9m .text-wrapper {
    width: 100%;
  }
}
.cid-tp4SQlfQ9m .mbr-section-title {
  color: #FFFFFF;
}
.cid-tp4SQlfQ9m .mbr-section-subtitle {
  color: #FFFFFF;
  opacity: 0.8;
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-tp4SQlfQ9m .mbr-section-subtitle {
    margin-top: 32px;
  }
}
@media (max-width: 767px) {
  .cid-tp4SQlfQ9m .mbr-section-subtitle {
    margin-top: 24px;
  }
}
.cid-tp4SQlfQ9m .link {
  text-decoration: underline !important;
}
.cid-tp4SQlfQ9m .col-video {
  position: relative;
  display: flex;
  width: 60%;
  right: -8rem;
}
@media (max-width: 1599px) {
  .cid-tp4SQlfQ9m .col-video {
    right: calc(-4rem - 4vw);
  }
}
@media (max-width: 991px) {
  .cid-tp4SQlfQ9m .col-video {
    left: 0;
    right: 0;
    width: 100%;
    margin-top: 40px;
    height: 350px;
  }
}
.cid-tp4SQlfQ9m .col-video img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 1.76rem;
}
.cid-tp4SQlfQ9m .col-video .box {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 2.08rem;
  position: relative;
  background-image: linear-gradient(90deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  padding: 5px;
}
.cid-tp4SQlfQ9m .col-video .box .box-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2.08rem;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  -webkit-filter: blur(1rem);
  filter: blur(1rem);
}
.cid-tp4SQlfQ9m .col-video .link-container {
  display: flex;
  margin-bottom: 2rem;
}
.cid-tp4SQlfQ9m .col-video .link {
  margin-right: 1rem;
}
.cid-tp4SQlfQ9m .col-video .mbr-media {
  display: flex;
  height: 100%;
  width: 100%;
  border-radius: 1.76rem;
  overflow: hidden;
}
.cid-tp4SQlfQ9m .col-video .mbr-media a:hover {
  background-image: none !important;
}
.cid-tp4SQlfQ9m .mbr-media {
  position: relative;
}
.cid-tp4SQlfQ9m .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tp4SQlfQ9m .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  transition: all .3s;
}
.cid-tp4SQlfQ9m .icon-wrap:hover {
  transform: translate(-50%, -50%);
}
.cid-tp4SQlfQ9m .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tp4SQlfQ9m .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tp4SQlfQ9m .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tp4SQlfQ9m .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tp4SQlfQ9m .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tp4SQlfQ9m .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tp4SQlfQ9m a:hover {
  text-decoration-line: none !important;
}
.cid-tp4SQoXmuo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffdd65;
}
.cid-tp4SQoXmuo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tp4SQoXmuo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tp4SQoXmuo .container {
  max-width: 1280px;
}
.cid-tp4SQoXmuo .content-wrapper {
  display: flex;
  align-items: stretch;
  background: #212132;
  padding: 4rem 0;
  border-radius: 4.17rem;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tp4SQoXmuo .content-wrapper {
    flex-wrap: wrap;
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .cid-tp4SQoXmuo .content-wrapper {
    padding: 40px 6vw;
  }
}
.cid-tp4SQoXmuo .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 50%;
  padding-right: 4rem;
  margin-bottom: 24px;
  padding-right: 0;
  padding-left: 4rem;
}
@media (max-width: 991px) {
  .cid-tp4SQoXmuo .text-wrapper {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
  }
}
.cid-tp4SQoXmuo .card-title {
  color: #FFDD65;
  margin-bottom: auto;
}
.cid-tp4SQoXmuo .mbr-text {
  color: #ffffff;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .cid-tp4SQoXmuo .mbr-text {
    margin-top: 16px;
  }
}
.cid-tp4SQoXmuo .img-container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  right: -6rem;
}
@media (max-width: 1599px) {
  .cid-tp4SQoXmuo .img-container {
    right: -4vw;
  }
}
@media (max-width: 1400px) {
  .cid-tp4SQoXmuo .img-container {
    right: 0rem;
    left: 0;
    padding: 0 3rem;
  }
}
@media (max-width: 991px) {
  .cid-tp4SQoXmuo .img-container {
    width: 100%;
    margin-bottom: 34px;
    left: 0;
    right: 0;
    padding: 0;
  }
}
.cid-tp4SQoXmuo .image-wrapper {
  aspect-ratio: 1;
  position: relative;
  border-radius: 2.08rem;
  padding: 32px;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
}
@media (max-width: 767px) {
  .cid-tp4SQoXmuo .image-wrapper {
    padding: 20px;
  }
}
.cid-tp4SQoXmuo .image-wrapper .img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2.08rem;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  -webkit-filter: blur(1rem);
  filter: blur(1rem);
}
.cid-tp4SQoXmuo .image-wrapper .img-box {
  position: relative;
  z-index: 11;
  border-radius: 2.08rem;
  overflow: hidden;
  height: 100%;
}
.cid-tp4SQoXmuo .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tp4SQqaLBl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffdd65;
}
.cid-tp4SQqaLBl .mbr-fallback-image.disabled {
  display: none;
}
.cid-tp4SQqaLBl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tp4SQqaLBl .container {
  max-width: 1280px;
}
.cid-tp4SQqaLBl .content-wrapper {
  display: flex;
  align-items: stretch;
  background: #212132;
  padding: 4rem 0;
  border-radius: 4.17rem;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tp4SQqaLBl .content-wrapper {
    flex-wrap: wrap;
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .cid-tp4SQqaLBl .content-wrapper {
    padding: 40px 6vw;
  }
}
.cid-tp4SQqaLBl .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 50%;
  padding-right: 4rem;
  margin-bottom: 24px;
  padding-right: 0;
  padding-left: 4rem;
}
@media (max-width: 991px) {
  .cid-tp4SQqaLBl .text-wrapper {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
  }
}
.cid-tp4SQqaLBl .card-title {
  color: #FFDD65;
  margin-bottom: auto;
}
.cid-tp4SQqaLBl .mbr-text {
  color: #ffffff;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .cid-tp4SQqaLBl .mbr-text {
    margin-top: 16px;
  }
}
.cid-tp4SQqaLBl .img-container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  right: -6rem;
}
@media (max-width: 1599px) {
  .cid-tp4SQqaLBl .img-container {
    right: -4vw;
  }
}
@media (max-width: 1400px) {
  .cid-tp4SQqaLBl .img-container {
    right: 0rem;
    left: 0;
    padding: 0 3rem;
  }
}
@media (max-width: 991px) {
  .cid-tp4SQqaLBl .img-container {
    width: 100%;
    margin-bottom: 34px;
    left: 0;
    right: 0;
    padding: 0;
  }
}
.cid-tp4SQqaLBl .image-wrapper {
  aspect-ratio: 1;
  position: relative;
  border-radius: 2.08rem;
  padding: 32px;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
}
@media (max-width: 767px) {
  .cid-tp4SQqaLBl .image-wrapper {
    padding: 20px;
  }
}
.cid-tp4SQqaLBl .image-wrapper .img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2.08rem;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  -webkit-filter: blur(1rem);
  filter: blur(1rem);
}
.cid-tp4SQqaLBl .image-wrapper .img-box {
  position: relative;
  z-index: 11;
  border-radius: 2.08rem;
  overflow: hidden;
  height: 100%;
}
.cid-tp4SQqaLBl .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tp4SQrsCzr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #212132;
}
.cid-tp4SQrsCzr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tp4SQrsCzr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tp4SQrsCzr .container {
  max-width: 1280px;
}
.cid-tp4SQrsCzr .row {
  justify-content: center;
}
.cid-tp4SQrsCzr .col-title {
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .cid-tp4SQrsCzr .col-title {
    margin-bottom: 50px;
  }
}
.cid-tp4SQrsCzr .mbr-section-title {
  color: #FFDD65;
}
.cid-tp4SQrsCzr .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 1rem;
}
.cid-tp4SQrsCzr .col-video {
  display: flex;
}
.cid-tp4SQrsCzr .col-video img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 1.76rem;
}
@media (max-width: 767px) {
  .cid-tp4SQrsCzr .col-video {
    height: 350px;
  }
}
.cid-tp4SQrsCzr .col-video .box {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 2.08rem;
  position: relative;
  background-image: linear-gradient(90deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  padding: 5px;
}
.cid-tp4SQrsCzr .col-video .box .box-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2.08rem;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  -webkit-filter: blur(1rem);
  filter: blur(1rem);
}
.cid-tp4SQrsCzr .col-video .link-container {
  display: flex;
  margin-bottom: 2rem;
}
.cid-tp4SQrsCzr .col-video .link {
  margin-right: 1rem;
}
.cid-tp4SQrsCzr .col-video .mbr-media {
  display: flex;
  height: 100%;
  width: 100%;
  border-radius: 1.76rem;
  overflow: hidden;
}
.cid-tp4SQrsCzr .col-video .mbr-media a:hover {
  background-image: none !important;
}
.cid-tp4SQrsCzr .mbr-media {
  position: relative;
}
.cid-tp4SQrsCzr .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tp4SQrsCzr .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  transition: all .3s;
}
.cid-tp4SQrsCzr .icon-wrap:hover {
  transform: translate(-50%, -50%);
}
.cid-tp4SQrsCzr .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tp4SQrsCzr .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tp4SQrsCzr .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tp4SQrsCzr .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tp4SQrsCzr .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tp4SQrsCzr .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tp4SQrsCzr a:hover {
  text-decoration-line: none !important;
}
.cid-tp4SQtsoIv {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #212132;
}
.cid-tp4SQtsoIv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tp4SQtsoIv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tp4SQtsoIv .container {
  max-width: 1600px;
}
.cid-tp4SQtsoIv .row {
  justify-content: left;
}
.cid-tp4SQtsoIv .content-container {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
}
.cid-tp4SQtsoIv .title-container {
  width: 100%;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .cid-tp4SQtsoIv .title-container {
    margin-bottom: 50px;
  }
}
.cid-tp4SQtsoIv .mbr-section-title {
  color: #FFDD65;
}
.cid-tp4SQtsoIv .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 1rem;
}
.cid-tp4SQtsoIv .img-container {
  width: 100%;
  max-height: 100vh;
}
@media (max-width: 767px) {
  .cid-tp4SQtsoIv .img-container {
    height: 350px;
  }
}
.cid-tp4SQtsoIv .image-wrapper {
  height: 100%;
  position: relative;
  border-radius: 4.17rem;
  padding: 5px;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
}
.cid-tp4SQtsoIv .image-wrapper .img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4.17rem;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  -webkit-filter: blur(1rem);
  filter: blur(1rem);
}
.cid-tp4SQtsoIv .image-wrapper .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 11;
  border-radius: 3.85rem;
  overflow: hidden;
  height: 100%;
}
.cid-tp4SQtsoIv .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tp4SQuXRyW {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #212132;
}
.cid-tp4SQuXRyW .mbr-fallback-image.disabled {
  display: none;
}
.cid-tp4SQuXRyW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tp4SQuXRyW .container {
  max-width: 1600px;
}
.cid-tp4SQuXRyW .row {
  justify-content: left;
}
.cid-tp4SQuXRyW .content-container {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
}
.cid-tp4SQuXRyW .title-container {
  width: 100%;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .cid-tp4SQuXRyW .title-container {
    margin-bottom: 50px;
  }
}
.cid-tp4SQuXRyW .mbr-section-title {
  color: #FFDD65;
}
.cid-tp4SQuXRyW .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 1rem;
}
.cid-tp4SQuXRyW .img-container {
  width: 100%;
  max-height: 100vh;
}
@media (max-width: 767px) {
  .cid-tp4SQuXRyW .img-container {
    height: 350px;
  }
}
.cid-tp4SQuXRyW .image-wrapper {
  height: 100%;
  position: relative;
  border-radius: 4.17rem;
  padding: 5px;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
}
.cid-tp4SQuXRyW .image-wrapper .img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4.17rem;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  -webkit-filter: blur(1rem);
  filter: blur(1rem);
}
.cid-tp4SQuXRyW .image-wrapper .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 11;
  border-radius: 3.85rem;
  overflow: hidden;
  height: 100%;
}
.cid-tp4SQuXRyW .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tp4Wrodpot {
  background-color: #212132;
}
.cid-tp4Wrodpot .mbr-fallback-image.disabled {
  display: none;
}
.cid-tp4Wrodpot .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tp4Wrodpot .content-bg {
  border-top-left-radius: 6.67rem;
  border-top-right-radius: 6.67rem;
  width: 100%;
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: transparent;
  background: #ffdd65;
}
.cid-tp4Wrodpot .container {
  max-width: 1280px;
}
.cid-tp4Wrodpot .row {
  justify-content: center;
}
.cid-tp4Wrodpot .mbr-section-title {
  color: #212132;
}
.cid-tp4Wrodpot .mbr-section-subtitle {
  color: #212132;
  margin-top: 1rem;
}
.cid-tp4SQwn5iQ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-tp4SQwn5iQ .container {
  max-width: 1472px;
}
.cid-tp4SQwn5iQ .mbr-text {
  color: #FFFFFF;
}
.cid-tp52zqFXiT {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 96px;
}
.cid-tp52zqFXiT nav.navbar {
  position: fixed;
}
.cid-tp52zqFXiT .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tp52zqFXiT .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tp52zqFXiT .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tp52zqFXiT .dropdown-item:hover,
.cid-tp52zqFXiT .dropdown-item:focus {
  background: #ae5eff !important;
  color: white !important;
}
.cid-tp52zqFXiT .dropdown-item:hover span {
  color: white;
}
.cid-tp52zqFXiT .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tp52zqFXiT .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tp52zqFXiT .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tp52zqFXiT .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tp52zqFXiT .nav-link {
  position: relative;
}
.cid-tp52zqFXiT .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-tp52zqFXiT .container {
    flex-wrap: nowrap;
  }
}
.cid-tp52zqFXiT .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
}
.cid-tp52zqFXiT .iconfont-wrapper:hover {
  color: #ffdd65 !important;
}
.cid-tp52zqFXiT .dropdown-menu,
.cid-tp52zqFXiT .navbar.opened {
  background: #212132 !important;
}
.cid-tp52zqFXiT .nav-item:focus,
.cid-tp52zqFXiT .nav-link:focus {
  outline: none;
}
.cid-tp52zqFXiT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tp52zqFXiT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tp52zqFXiT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tp52zqFXiT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tp52zqFXiT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tp52zqFXiT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tp52zqFXiT .navbar {
  min-height: 96px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #212132;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-tp52zqFXiT .navbar.opened {
  transition: all 0.3s;
}
.cid-tp52zqFXiT .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tp52zqFXiT .navbar .navbar-logo img {
  width: auto;
}
.cid-tp52zqFXiT .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tp52zqFXiT .navbar.collapsed {
  justify-content: center;
}
.cid-tp52zqFXiT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tp52zqFXiT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tp52zqFXiT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tp52zqFXiT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tp52zqFXiT .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tp52zqFXiT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tp52zqFXiT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tp52zqFXiT .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tp52zqFXiT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tp52zqFXiT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tp52zqFXiT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tp52zqFXiT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tp52zqFXiT .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tp52zqFXiT .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tp52zqFXiT .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tp52zqFXiT .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tp52zqFXiT .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 60%;
  }
  .cid-tp52zqFXiT .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tp52zqFXiT .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tp52zqFXiT .navbar.navbar-short {
  min-height: 96px;
}
.cid-tp52zqFXiT .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tp52zqFXiT .navbar.navbar-short .navbar-brand {
  min-height: 96px;
  padding: 0;
}
.cid-tp52zqFXiT .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-tp52zqFXiT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tp52zqFXiT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tp52zqFXiT .navbar-brand:hover {
  transform: scale(1.1);
}
.cid-tp52zqFXiT .dropdown-item.active,
.cid-tp52zqFXiT .dropdown-item:active {
  background-color: transparent;
}
.cid-tp52zqFXiT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tp52zqFXiT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tp52zqFXiT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tp52zqFXiT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #212132;
}
.cid-tp52zqFXiT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tp52zqFXiT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tp52zqFXiT ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tp52zqFXiT .navbar-buttons {
  text-align: center;
}
.cid-tp52zqFXiT .navbar-buttons .btn {
  padding: 9px 18px;
  min-width: 100px;
  min-height: 52px;
  border-radius: 0.3rem;
}
.cid-tp52zqFXiT .navbar-buttons .btn:hover {
  color: #ffdd65 !important;
}
@media (max-width: 575px) {
  .cid-tp52zqFXiT .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-tp52zqFXiT .navbar-buttons .btn-black {
  border: solid 2px #ae5eff !important;
  box-shadow: 3px 3px 0 0 #ae5eff !important;
}
.cid-tp52zqFXiT .navbar-buttons .btn-black:hover {
  border: solid 2px #ae5eff !important;
  color: #ffdd65 !important;
  box-shadow: 0 0 0 0 #ae5eff !important;
}
.cid-tp52zqFXiT button.navbar-toggler {
  outline: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 0.3rem;
  background-color: #212132 !important;
  border: solid 2px #ae5eff !important;
  box-shadow: 3px 3px 0 0 #ae5eff !important;
}
.cid-tp52zqFXiT button.navbar-toggler:hover {
  border: solid 2px #ae5eff !important;
  color: #ffdd65 !important;
  box-shadow: 0 0 0 0 #ae5eff !important;
}
.cid-tp52zqFXiT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tp52zqFXiT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 9px;
  left: 8px;
  transition: all 0.2s;
}
.cid-tp52zqFXiT button.navbar-toggler .hamburger span:nth-child(2) {
  left: 8px;
  top: 17px;
  transition: all 0.15s;
}
.cid-tp52zqFXiT button.navbar-toggler .hamburger span:nth-child(3) {
  left: 8px;
  top: 17px;
  transition: all 0.15s;
}
.cid-tp52zqFXiT button.navbar-toggler .hamburger span:nth-child(4) {
  left: 8px;
  top: 25px;
  transition: all 0.2s;
}
.cid-tp52zqFXiT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tp52zqFXiT nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tp52zqFXiT nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tp52zqFXiT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tp52zqFXiT .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tp52zqFXiT a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tp52zqFXiT .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tp52zqFXiT .navbar {
    height: 70px;
  }
  .cid-tp52zqFXiT .navbar.opened {
    height: auto;
  }
  .cid-tp52zqFXiT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tp52zqFXiT .navbar-nav {
  margin: 0 auto;
}
.cid-tp52zqFXiT .nav-item {
  padding: 0;
  margin: 2px;
}
.cid-tp52zqFXiT .nav-item .nav-link {
  padding: 6px 32px !important;
  margin: 0 !important;
}
.cid-tp52zqFXiT .nav-item .nav-link::after {
  color: #ffdd65 !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-tp52zqFXiT .nav-item .nav-link:hover {
  color: #ffdd65 !important;
}
.cid-tp52zqFXiT .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-tp52zqFXiT .nav-item .dropdown-menu {
  background-color: #ffffff !important;
}
.cid-tp52zqFXiT .nav-item .dropdown-menu:hover {
  background-color: #ffffff !important;
}
.cid-tp52zqFXiT .nav-item .dropdown-menu .dropdown-item {
  color: #212132 !important;
  background-color: transparent !important;
}
.cid-tp52zqFXiT .nav-item .dropdown-menu .dropdown-item:hover {
  color: #ae5eff !important;
}
@media (max-width: 991px) {
  .cid-tp52zqFXiT .navbar {
    justify-content: flex-start !important;
  }
  .cid-tp52zqFXiT .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-tp52zqFXiT .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-tp52zqFXiT .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-tp52zqFXiT .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-tp52zqFXiT .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .cid-tp52zqFXiT .navbar-collapse .nav-item .nav-link {
    padding: 14px 0 !important;
    justify-content: flex-start;
  }
}
.cid-tp52zsjPXN {
  background-image: url("../../../assets/images/pexels-fauxels-3183181.jpg");
}
.cid-tp52zsjPXN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tp52zsjPXN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tp52zsjPXN .row {
  justify-content: left;
}
.cid-tp52zsjPXN .mbr-section-title {
  color: #FFDD65;
}
.cid-tp52zsjPXN .mbr-section-subtitle {
  color: #FFDD65;
  background-image: linear-gradient(90deg, currentColor 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-tp52zsjPXN .btn-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 96px;
}
@media (max-width: 991px) {
  .cid-tp52zsjPXN .btn-container {
    padding-top: 50px;
    flex-direction: column;
    align-items: center;
  }
}
.cid-tp52zsjPXN .custom-mbr-section-btn {
  padding-bottom: 0.42rem;
}
@media (max-width: 991px) {
  .cid-tp52zsjPXN .custom-mbr-section-btn {
    padding-bottom: 0;
  }
}
.cid-tp52zsjPXN .custom-section-btn {
  height: 100%;
}
.cid-tp52zsjPXN .custom-section-btn .btn {
  height: 100%;
}
.cid-tp52zsjPXN .text-container {
  max-width: 384px;
  margin-left: 40px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tp52zsjPXN .text-container {
    margin: 26px auto 0;
  }
}
.cid-tp52zsjPXN .mbr-text {
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .cid-tp52zsjPXN .mbr-text {
    text-align: center !important;
  }
}
.cid-tp52zsjPXN .text-item-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-top: 26px;
}
@media (max-width: 991px) {
  .cid-tp52zsjPXN .text-item-container {
    flex-wrap: wrap;
  }
}
.cid-tp52zsjPXN .text-item {
  display: flex;
  align-items: center;
  max-width: 48%;
}
@media (max-width: 991px) {
  .cid-tp52zsjPXN .text-item {
    max-width: 100%;
    width: 100%;
    justify-content: center;
    margin-bottom: 6px;
  }
}
.cid-tp52zsjPXN .icon-text {
  color: #ffffff;
  opacity: 0.6;
}
.cid-tp52zsjPXN .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.cid-tp52zsjPXN .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 24px;
  color: #ae5eff;
}
.cid-tp52ztH0T3 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #212132;
}
.cid-tp52ztH0T3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tp52ztH0T3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tp52ztH0T3 .container {
  max-width: 1600px;
}
.cid-tp52ztH0T3 .row {
  justify-content: center;
}
.cid-tp52ztH0T3 .content-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  flex-wrap: wrap;
}
.cid-tp52ztH0T3 .title-container {
  width: 100%;
}
.cid-tp52ztH0T3 .mbr-section-title {
  color: #FFDD65;
  width: 100%;
}
.cid-tp52ztH0T3 .colored-text {
  line-height: inherit;
  color: inherit;
  color: #ae5eff;
}
.cid-tp52ztH0T3 .mbr-section-subtitle {
  color: #FFDD65;
  margin-top: 1.5rem;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tp52ztH0T3 .mbr-section-subtitle {
    margin-top: 1rem;
  }
}
.cid-tp52ztH0T3 .btn-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 80px;
  margin-right: auto;
  margin-left: auto;
  gap: 40px;
}
@media (max-width: 991px) {
  .cid-tp52ztH0T3 .btn-container {
    margin-top: 50px;
    flex-wrap: wrap;
    gap: 0;
  }
}
.cid-tp52ztH0T3 .text-container {
  max-width: 400px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tp52ztH0T3 .text-container {
    margin: 24px auto 0;
  }
}
.cid-tp52ztH0T3 .mbr-text {
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .cid-tp52ztH0T3 .mbr-text {
    text-align: center !important;
  }
}
.cid-tp52ztH0T3 .text-item-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-top: 26px;
}
@media (max-width: 991px) {
  .cid-tp52ztH0T3 .text-item-container {
    flex-wrap: wrap;
  }
}
.cid-tp52ztH0T3 .text-item {
  display: flex;
  align-items: center;
  max-width: 48%;
}
@media (max-width: 991px) {
  .cid-tp52ztH0T3 .text-item {
    max-width: 100%;
    width: 100%;
    justify-content: center;
    margin-bottom: 6px;
  }
}
.cid-tp52ztH0T3 .icon-text {
  color: #AE5EFF;
}
.cid-tp52ztH0T3 .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.cid-tp52ztH0T3 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 24px;
  color: #ae5eff;
}
.cid-tp52ztH0T3 .form-container {
  max-width: 535px;
  margin-right: auto;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .cid-tp52ztH0T3 .form-container {
    max-width: 100%;
    width: 100%;
  }
}
.cid-tp52ztH0T3 form {
  width: 100%;
}
.cid-tp52ztH0T3 form .dragArea.row {
  justify-content: flex-start;
  width: auto !important;
}
.cid-tp52ztH0T3 form p {
  color: #ffffff;
}
.cid-tp52ztH0T3 form .mbr-section-btn {
  width: max-content;
  max-width: 35%;
}
@media (max-width: 991px) {
  .cid-tp52ztH0T3 form .mbr-section-btn {
    max-width: 100%;
    width: 100%;
  }
}
.cid-tp52ztH0T3 form .mbr-section-btn .btn {
  padding: 10px 35px;
  height: 100%;
  border-radius: 0.75rem !important;
  border-bottom-left-radius: 0 !important;
  border-top-left-radius: 0 !important;
}
@media (max-width: 991px) {
  .cid-tp52ztH0T3 form .mbr-section-btn .btn {
    min-height: 64px;
    padding: 6px 24px;
    width: 100%;
    border-radius: 0.75rem !important;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }
}
.cid-tp52ztH0T3 form .form-group {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  flex-grow: 1;
}
.cid-tp52ztH0T3 form .group-container {
  position: relative;
  width: 100%;
  padding: 0;
  margin-top: 0.42rem;
}
.cid-tp52ztH0T3 form .group-bg {
  position: absolute;
  border-radius: 0.75rem;
  z-index: 5;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8a61ff 99.93%);
}
.cid-tp52ztH0T3 form .group-border {
  display: flex;
  align-items: stretch;
  position: relative;
  z-index: 6;
  padding: 3px;
  border-radius: 0.75rem;
  transition: all 300ms ease;
  background-image: linear-gradient(90deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8a61ff 99.93%);
  transform: translate3d(-0.42rem, -0.42rem, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.cid-tp52ztH0T3 form .group-border:hover {
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
@media (max-width: 991px) {
  .cid-tp52ztH0T3 form .group-border {
    flex-wrap: wrap;
  }
}
.cid-tp52ztH0T3 form .form-control {
  min-height: 100px;
  height: 100%;
  border: none !important;
  background: #ffffff;
  box-shadow: none !important;
  border-radius: 0.75rem;
  border-bottom-right-radius: 0 !important;
  border-top-right-radius: 0 !important;
  margin-bottom: 0;
  padding: 20px 40px;
  font-size: 24px;
  line-height: 32px;
  color: #212132;
  font-weight: 400;
}
@media (max-width: 991px) {
  .cid-tp52ztH0T3 form .form-control {
    min-height: 64px;
    padding: 6px 24px;
    width: 100%;
    border-radius: 0.75rem !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    text-align: center !important;
  }
}
.cid-tp52ztH0T3 form .form-control::-webkit-input-placeholder {
  color: #939292;
}
.cid-tp52ztH0T3 form .form-control::-moz-placeholder {
  color: #939292;
}
.cid-tp52ztH0T3 form .form-control:-moz-placeholder {
  color: #939292;
}
.cid-tp52ztH0T3 form .form-control:-ms-input-placeholder {
  color: #939292;
}
.cid-tp52ztH0T3 form .form-control:hover {
  outline: none !important;
}
.cid-tp52ztH0T3 form select {
  color: #939292 !important;
}
.cid-tp52ztH0T3 form textarea {
  height: 200px;
}
.cid-tp52ztH0T3 form input:active,
.cid-tp52ztH0T3 form textarea:active,
.cid-tp52ztH0T3 form input:focus,
.cid-tp52ztH0T3 form textarea:focus {
  background-color: #FFFFFF !important;
}
.cid-tp52ztH0T3 form input:active::-webkit-input-placeholder,
.cid-tp52ztH0T3 form textarea:active::-webkit-input-placeholder,
.cid-tp52ztH0T3 form input:focus::-webkit-input-placeholder,
.cid-tp52ztH0T3 form textarea:focus::-webkit-input-placeholder {
  color: #939292;
}
.cid-tp52ztH0T3 form input:active::-moz-placeholder,
.cid-tp52ztH0T3 form textarea:active::-moz-placeholder,
.cid-tp52ztH0T3 form input:focus::-moz-placeholder,
.cid-tp52ztH0T3 form textarea:focus::-moz-placeholder {
  color: #939292;
}
.cid-tp52ztH0T3 form input:active:-moz-placeholder,
.cid-tp52ztH0T3 form textarea:active:-moz-placeholder,
.cid-tp52ztH0T3 form input:focus:-moz-placeholder,
.cid-tp52ztH0T3 form textarea:focus:-moz-placeholder {
  color: #939292;
}
.cid-tp52ztH0T3 form input:active:-ms-input-placeholder,
.cid-tp52ztH0T3 form textarea:active:-ms-input-placeholder,
.cid-tp52ztH0T3 form input:focus:-ms-input-placeholder,
.cid-tp52ztH0T3 form textarea:focus:-ms-input-placeholder {
  color: #939292;
}
.cid-tp52ztH0T3 form .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.cid-tp52ztH0T3 form .row [class*=col] {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-tp52ztH0T3 form label {
  width: 100%;
  color: #ffffff;
  margin-bottom: 10px;
}
.cid-tp52ztH0T3 form .form-check-input {
  border-color: rgba(255, 255, 255, 0.25) !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}
.cid-tp52ztH0T3 form .form-check-input:focus,
.cid-tp52ztH0T3 form .form-check-input:hover {
  background-color: transparent !important;
  border-color: #ffffff !important;
}
.cid-tp52ztH0T3 form .form-check-input:checked {
  border-color: #ffffff !important;
}
.cid-tp52zvr8M8 {
  background-color: #212132;
}
.cid-tp52zvr8M8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tp52zvr8M8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tp52zvr8M8 .content-bg {
  border-top-left-radius: 6.67rem;
  border-top-right-radius: 6.67rem;
  width: 100%;
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: transparent;
  background: #ffdd65;
}
.cid-tp52zvr8M8 .container {
  max-width: 1280px;
}
.cid-tp52zvr8M8 .row {
  justify-content: center;
}
.cid-tp52zvr8M8 .mbr-section-title {
  color: #212132;
}
.cid-tp52zvr8M8 .mbr-section-subtitle {
  color: #212132;
  margin-top: 1rem;
}
.cid-tp52zwNTVT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #212132;
}
.cid-tp52zwNTVT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tp52zwNTVT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tp52zwNTVT .container {
  max-width: 1280px;
}
.cid-tp52zwNTVT .row {
  justify-content: center;
}
.cid-tp52zwNTVT .content-wrapper {
  display: flex;
  align-items: stretch;
  background: #8a61ff;
  justify-content: flex-start;
  padding: 4rem;
  border-radius: 4.17rem;
}
@media (max-width: 991px) {
  .cid-tp52zwNTVT .content-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-tp52zwNTVT .content-wrapper {
    padding: 4rem 6vw;
  }
}
@media (max-width: 575px) {
  .cid-tp52zwNTVT .content-wrapper {
    padding: 4rem 6vw 1.5rem;
  }
}
.cid-tp52zwNTVT .text-wrapper {
  width: 40%;
}
@media (max-width: 991px) {
  .cid-tp52zwNTVT .text-wrapper {
    width: 100%;
  }
}
.cid-tp52zwNTVT .mbr-section-title {
  color: #FFFFFF;
}
.cid-tp52zwNTVT .mbr-section-subtitle {
  color: #FFFFFF;
  opacity: 0.8;
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-tp52zwNTVT .mbr-section-subtitle {
    margin-top: 32px;
  }
}
@media (max-width: 767px) {
  .cid-tp52zwNTVT .mbr-section-subtitle {
    margin-top: 24px;
  }
}
.cid-tp52zwNTVT .link {
  text-decoration: underline !important;
}
.cid-tp52zwNTVT .col-video {
  position: relative;
  display: flex;
  width: 60%;
  right: -8rem;
}
@media (max-width: 1599px) {
  .cid-tp52zwNTVT .col-video {
    right: calc(-4rem - 4vw);
  }
}
@media (max-width: 991px) {
  .cid-tp52zwNTVT .col-video {
    left: 0;
    right: 0;
    width: 100%;
    margin-top: 40px;
    height: 350px;
  }
}
.cid-tp52zwNTVT .col-video img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 1.76rem;
}
.cid-tp52zwNTVT .col-video .box {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 2.08rem;
  position: relative;
  background-image: linear-gradient(90deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  padding: 5px;
}
.cid-tp52zwNTVT .col-video .box .box-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2.08rem;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  -webkit-filter: blur(1rem);
  filter: blur(1rem);
}
.cid-tp52zwNTVT .col-video .link-container {
  display: flex;
  margin-bottom: 2rem;
}
.cid-tp52zwNTVT .col-video .link {
  margin-right: 1rem;
}
.cid-tp52zwNTVT .col-video .mbr-media {
  display: flex;
  height: 100%;
  width: 100%;
  border-radius: 1.76rem;
  overflow: hidden;
}
.cid-tp52zwNTVT .col-video .mbr-media a:hover {
  background-image: none !important;
}
.cid-tp52zwNTVT .mbr-media {
  position: relative;
}
.cid-tp52zwNTVT .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tp52zwNTVT .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  transition: all .3s;
}
.cid-tp52zwNTVT .icon-wrap:hover {
  transform: translate(-50%, -50%);
}
.cid-tp52zwNTVT .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tp52zwNTVT .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tp52zwNTVT .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tp52zwNTVT .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tp52zwNTVT .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tp52zwNTVT .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tp52zwNTVT a:hover {
  text-decoration-line: none !important;
}
.cid-tp52zyFprG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #212132;
}
.cid-tp52zyFprG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tp52zyFprG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tp52zyFprG .container {
  max-width: 1280px;
}
.cid-tp52zyFprG .row {
  justify-content: center;
}
.cid-tp52zyFprG .content-wrapper {
  display: flex;
  align-items: stretch;
  background: #8a61ff;
  justify-content: flex-start;
  padding: 4rem;
  border-radius: 4.17rem;
}
@media (max-width: 991px) {
  .cid-tp52zyFprG .content-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-tp52zyFprG .content-wrapper {
    padding: 4rem 6vw;
  }
}
@media (max-width: 575px) {
  .cid-tp52zyFprG .content-wrapper {
    padding: 4rem 6vw 1.5rem;
  }
}
.cid-tp52zyFprG .text-wrapper {
  width: 40%;
}
@media (max-width: 991px) {
  .cid-tp52zyFprG .text-wrapper {
    width: 100%;
  }
}
.cid-tp52zyFprG .mbr-section-title {
  color: #FFFFFF;
}
.cid-tp52zyFprG .mbr-section-subtitle {
  color: #FFFFFF;
  opacity: 0.8;
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-tp52zyFprG .mbr-section-subtitle {
    margin-top: 32px;
  }
}
@media (max-width: 767px) {
  .cid-tp52zyFprG .mbr-section-subtitle {
    margin-top: 24px;
  }
}
.cid-tp52zyFprG .link {
  text-decoration: underline !important;
}
.cid-tp52zyFprG .col-video {
  position: relative;
  display: flex;
  width: 60%;
  right: -8rem;
}
@media (max-width: 1599px) {
  .cid-tp52zyFprG .col-video {
    right: calc(-4rem - 4vw);
  }
}
@media (max-width: 991px) {
  .cid-tp52zyFprG .col-video {
    left: 0;
    right: 0;
    width: 100%;
    margin-top: 40px;
    height: 350px;
  }
}
.cid-tp52zyFprG .col-video img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 1.76rem;
}
.cid-tp52zyFprG .col-video .box {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 2.08rem;
  position: relative;
  background-image: linear-gradient(90deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  padding: 5px;
}
.cid-tp52zyFprG .col-video .box .box-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2.08rem;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  -webkit-filter: blur(1rem);
  filter: blur(1rem);
}
.cid-tp52zyFprG .col-video .link-container {
  display: flex;
  margin-bottom: 2rem;
}
.cid-tp52zyFprG .col-video .link {
  margin-right: 1rem;
}
.cid-tp52zyFprG .col-video .mbr-media {
  display: flex;
  height: 100%;
  width: 100%;
  border-radius: 1.76rem;
  overflow: hidden;
}
.cid-tp52zyFprG .col-video .mbr-media a:hover {
  background-image: none !important;
}
.cid-tp52zyFprG .mbr-media {
  position: relative;
}
.cid-tp52zyFprG .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tp52zyFprG .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  transition: all .3s;
}
.cid-tp52zyFprG .icon-wrap:hover {
  transform: translate(-50%, -50%);
}
.cid-tp52zyFprG .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tp52zyFprG .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tp52zyFprG .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tp52zyFprG .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tp52zyFprG .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tp52zyFprG .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tp52zyFprG a:hover {
  text-decoration-line: none !important;
}
.cid-tp52zAwsq6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #212132;
}
.cid-tp52zAwsq6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tp52zAwsq6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tp52zAwsq6 .container {
  max-width: 1280px;
}
.cid-tp52zAwsq6 .row {
  justify-content: center;
}
.cid-tp52zAwsq6 .content-wrapper {
  display: flex;
  align-items: stretch;
  background: #8a61ff;
  justify-content: flex-start;
  padding: 4rem;
  border-radius: 4.17rem;
}
@media (max-width: 991px) {
  .cid-tp52zAwsq6 .content-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-tp52zAwsq6 .content-wrapper {
    padding: 4rem 6vw;
  }
}
@media (max-width: 575px) {
  .cid-tp52zAwsq6 .content-wrapper {
    padding: 4rem 6vw 1.5rem;
  }
}
.cid-tp52zAwsq6 .text-wrapper {
  width: 40%;
}
@media (max-width: 991px) {
  .cid-tp52zAwsq6 .text-wrapper {
    width: 100%;
  }
}
.cid-tp52zAwsq6 .mbr-section-title {
  color: #FFFFFF;
}
.cid-tp52zAwsq6 .mbr-section-subtitle {
  color: #FFFFFF;
  opacity: 0.8;
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-tp52zAwsq6 .mbr-section-subtitle {
    margin-top: 32px;
  }
}
@media (max-width: 767px) {
  .cid-tp52zAwsq6 .mbr-section-subtitle {
    margin-top: 24px;
  }
}
.cid-tp52zAwsq6 .link {
  text-decoration: underline !important;
}
.cid-tp52zAwsq6 .col-video {
  position: relative;
  display: flex;
  width: 60%;
  right: -8rem;
}
@media (max-width: 1599px) {
  .cid-tp52zAwsq6 .col-video {
    right: calc(-4rem - 4vw);
  }
}
@media (max-width: 991px) {
  .cid-tp52zAwsq6 .col-video {
    left: 0;
    right: 0;
    width: 100%;
    margin-top: 40px;
    height: 350px;
  }
}
.cid-tp52zAwsq6 .col-video img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 1.76rem;
}
.cid-tp52zAwsq6 .col-video .box {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 2.08rem;
  position: relative;
  background-image: linear-gradient(90deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  padding: 5px;
}
.cid-tp52zAwsq6 .col-video .box .box-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2.08rem;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  -webkit-filter: blur(1rem);
  filter: blur(1rem);
}
.cid-tp52zAwsq6 .col-video .link-container {
  display: flex;
  margin-bottom: 2rem;
}
.cid-tp52zAwsq6 .col-video .link {
  margin-right: 1rem;
}
.cid-tp52zAwsq6 .col-video .mbr-media {
  display: flex;
  height: 100%;
  width: 100%;
  border-radius: 1.76rem;
  overflow: hidden;
}
.cid-tp52zAwsq6 .col-video .mbr-media a:hover {
  background-image: none !important;
}
.cid-tp52zAwsq6 .mbr-media {
  position: relative;
}
.cid-tp52zAwsq6 .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tp52zAwsq6 .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  transition: all .3s;
}
.cid-tp52zAwsq6 .icon-wrap:hover {
  transform: translate(-50%, -50%);
}
.cid-tp52zAwsq6 .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tp52zAwsq6 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tp52zAwsq6 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tp52zAwsq6 .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tp52zAwsq6 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tp52zAwsq6 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tp52zAwsq6 a:hover {
  text-decoration-line: none !important;
}
.cid-tp52zClsdf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #212132;
}
.cid-tp52zClsdf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tp52zClsdf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tp52zClsdf .container {
  max-width: 1280px;
}
.cid-tp52zClsdf .row {
  justify-content: center;
}
.cid-tp52zClsdf .content-wrapper {
  display: flex;
  align-items: stretch;
  background: #8a61ff;
  justify-content: flex-start;
  padding: 4rem;
  border-radius: 4.17rem;
}
@media (max-width: 991px) {
  .cid-tp52zClsdf .content-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-tp52zClsdf .content-wrapper {
    padding: 4rem 6vw;
  }
}
@media (max-width: 575px) {
  .cid-tp52zClsdf .content-wrapper {
    padding: 4rem 6vw 1.5rem;
  }
}
.cid-tp52zClsdf .text-wrapper {
  width: 40%;
}
@media (max-width: 991px) {
  .cid-tp52zClsdf .text-wrapper {
    width: 100%;
  }
}
.cid-tp52zClsdf .mbr-section-title {
  color: #FFFFFF;
}
.cid-tp52zClsdf .mbr-section-subtitle {
  color: #FFFFFF;
  opacity: 0.8;
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-tp52zClsdf .mbr-section-subtitle {
    margin-top: 32px;
  }
}
@media (max-width: 767px) {
  .cid-tp52zClsdf .mbr-section-subtitle {
    margin-top: 24px;
  }
}
.cid-tp52zClsdf .link {
  text-decoration: underline !important;
}
.cid-tp52zClsdf .col-video {
  position: relative;
  display: flex;
  width: 60%;
  right: -8rem;
}
@media (max-width: 1599px) {
  .cid-tp52zClsdf .col-video {
    right: calc(-4rem - 4vw);
  }
}
@media (max-width: 991px) {
  .cid-tp52zClsdf .col-video {
    left: 0;
    right: 0;
    width: 100%;
    margin-top: 40px;
    height: 350px;
  }
}
.cid-tp52zClsdf .col-video img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 1.76rem;
}
.cid-tp52zClsdf .col-video .box {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 2.08rem;
  position: relative;
  background-image: linear-gradient(90deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  padding: 5px;
}
.cid-tp52zClsdf .col-video .box .box-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2.08rem;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  -webkit-filter: blur(1rem);
  filter: blur(1rem);
}
.cid-tp52zClsdf .col-video .link-container {
  display: flex;
  margin-bottom: 2rem;
}
.cid-tp52zClsdf .col-video .link {
  margin-right: 1rem;
}
.cid-tp52zClsdf .col-video .mbr-media {
  display: flex;
  height: 100%;
  width: 100%;
  border-radius: 1.76rem;
  overflow: hidden;
}
.cid-tp52zClsdf .col-video .mbr-media a:hover {
  background-image: none !important;
}
.cid-tp52zClsdf .mbr-media {
  position: relative;
}
.cid-tp52zClsdf .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tp52zClsdf .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  transition: all .3s;
}
.cid-tp52zClsdf .icon-wrap:hover {
  transform: translate(-50%, -50%);
}
.cid-tp52zClsdf .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tp52zClsdf .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tp52zClsdf .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tp52zClsdf .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tp52zClsdf .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tp52zClsdf .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tp52zClsdf a:hover {
  text-decoration-line: none !important;
}
.cid-tp52zEdi2L {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffdd65;
}
.cid-tp52zEdi2L .mbr-fallback-image.disabled {
  display: none;
}
.cid-tp52zEdi2L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tp52zEdi2L .container {
  max-width: 1280px;
}
.cid-tp52zEdi2L .content-wrapper {
  display: flex;
  align-items: stretch;
  background: #212132;
  padding: 4rem 0;
  border-radius: 4.17rem;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tp52zEdi2L .content-wrapper {
    flex-wrap: wrap;
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .cid-tp52zEdi2L .content-wrapper {
    padding: 40px 6vw;
  }
}
.cid-tp52zEdi2L .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 50%;
  padding-right: 4rem;
  margin-bottom: 24px;
  padding-right: 0;
  padding-left: 4rem;
}
@media (max-width: 991px) {
  .cid-tp52zEdi2L .text-wrapper {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
  }
}
.cid-tp52zEdi2L .card-title {
  color: #FFDD65;
  margin-bottom: auto;
}
.cid-tp52zEdi2L .mbr-text {
  color: #ffffff;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .cid-tp52zEdi2L .mbr-text {
    margin-top: 16px;
  }
}
.cid-tp52zEdi2L .img-container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  right: -6rem;
}
@media (max-width: 1599px) {
  .cid-tp52zEdi2L .img-container {
    right: -4vw;
  }
}
@media (max-width: 1400px) {
  .cid-tp52zEdi2L .img-container {
    right: 0rem;
    left: 0;
    padding: 0 3rem;
  }
}
@media (max-width: 991px) {
  .cid-tp52zEdi2L .img-container {
    width: 100%;
    margin-bottom: 34px;
    left: 0;
    right: 0;
    padding: 0;
  }
}
.cid-tp52zEdi2L .image-wrapper {
  aspect-ratio: 1;
  position: relative;
  border-radius: 2.08rem;
  padding: 32px;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
}
@media (max-width: 767px) {
  .cid-tp52zEdi2L .image-wrapper {
    padding: 20px;
  }
}
.cid-tp52zEdi2L .image-wrapper .img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2.08rem;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  -webkit-filter: blur(1rem);
  filter: blur(1rem);
}
.cid-tp52zEdi2L .image-wrapper .img-box {
  position: relative;
  z-index: 11;
  border-radius: 2.08rem;
  overflow: hidden;
  height: 100%;
}
.cid-tp52zEdi2L .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tp52zFrUF2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffdd65;
}
.cid-tp52zFrUF2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tp52zFrUF2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tp52zFrUF2 .container {
  max-width: 1280px;
}
.cid-tp52zFrUF2 .content-wrapper {
  display: flex;
  align-items: stretch;
  background: #212132;
  padding: 4rem 0;
  border-radius: 4.17rem;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tp52zFrUF2 .content-wrapper {
    flex-wrap: wrap;
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .cid-tp52zFrUF2 .content-wrapper {
    padding: 40px 6vw;
  }
}
.cid-tp52zFrUF2 .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 50%;
  padding-right: 4rem;
  margin-bottom: 24px;
  padding-right: 0;
  padding-left: 4rem;
}
@media (max-width: 991px) {
  .cid-tp52zFrUF2 .text-wrapper {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
  }
}
.cid-tp52zFrUF2 .card-title {
  color: #FFDD65;
  margin-bottom: auto;
}
.cid-tp52zFrUF2 .mbr-text {
  color: #ffffff;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .cid-tp52zFrUF2 .mbr-text {
    margin-top: 16px;
  }
}
.cid-tp52zFrUF2 .img-container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  right: -6rem;
}
@media (max-width: 1599px) {
  .cid-tp52zFrUF2 .img-container {
    right: -4vw;
  }
}
@media (max-width: 1400px) {
  .cid-tp52zFrUF2 .img-container {
    right: 0rem;
    left: 0;
    padding: 0 3rem;
  }
}
@media (max-width: 991px) {
  .cid-tp52zFrUF2 .img-container {
    width: 100%;
    margin-bottom: 34px;
    left: 0;
    right: 0;
    padding: 0;
  }
}
.cid-tp52zFrUF2 .image-wrapper {
  aspect-ratio: 1;
  position: relative;
  border-radius: 2.08rem;
  padding: 32px;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
}
@media (max-width: 767px) {
  .cid-tp52zFrUF2 .image-wrapper {
    padding: 20px;
  }
}
.cid-tp52zFrUF2 .image-wrapper .img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2.08rem;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  -webkit-filter: blur(1rem);
  filter: blur(1rem);
}
.cid-tp52zFrUF2 .image-wrapper .img-box {
  position: relative;
  z-index: 11;
  border-radius: 2.08rem;
  overflow: hidden;
  height: 100%;
}
.cid-tp52zFrUF2 .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tp52zGNfQI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #212132;
}
.cid-tp52zGNfQI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tp52zGNfQI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tp52zGNfQI .container {
  max-width: 1280px;
}
.cid-tp52zGNfQI .row {
  justify-content: center;
}
.cid-tp52zGNfQI .col-title {
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .cid-tp52zGNfQI .col-title {
    margin-bottom: 50px;
  }
}
.cid-tp52zGNfQI .mbr-section-title {
  color: #FFDD65;
}
.cid-tp52zGNfQI .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 1rem;
}
.cid-tp52zGNfQI .col-video {
  display: flex;
}
.cid-tp52zGNfQI .col-video img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 1.76rem;
}
@media (max-width: 767px) {
  .cid-tp52zGNfQI .col-video {
    height: 350px;
  }
}
.cid-tp52zGNfQI .col-video .box {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 2.08rem;
  position: relative;
  background-image: linear-gradient(90deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  padding: 5px;
}
.cid-tp52zGNfQI .col-video .box .box-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2.08rem;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  -webkit-filter: blur(1rem);
  filter: blur(1rem);
}
.cid-tp52zGNfQI .col-video .link-container {
  display: flex;
  margin-bottom: 2rem;
}
.cid-tp52zGNfQI .col-video .link {
  margin-right: 1rem;
}
.cid-tp52zGNfQI .col-video .mbr-media {
  display: flex;
  height: 100%;
  width: 100%;
  border-radius: 1.76rem;
  overflow: hidden;
}
.cid-tp52zGNfQI .col-video .mbr-media a:hover {
  background-image: none !important;
}
.cid-tp52zGNfQI .mbr-media {
  position: relative;
}
.cid-tp52zGNfQI .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tp52zGNfQI .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  transition: all .3s;
}
.cid-tp52zGNfQI .icon-wrap:hover {
  transform: translate(-50%, -50%);
}
.cid-tp52zGNfQI .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tp52zGNfQI .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tp52zGNfQI .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tp52zGNfQI .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tp52zGNfQI .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tp52zGNfQI .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tp52zGNfQI a:hover {
  text-decoration-line: none !important;
}
.cid-tp52zITOhQ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #212132;
}
.cid-tp52zITOhQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tp52zITOhQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tp52zITOhQ .container {
  max-width: 1600px;
}
.cid-tp52zITOhQ .row {
  justify-content: left;
}
.cid-tp52zITOhQ .content-container {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
}
.cid-tp52zITOhQ .title-container {
  width: 100%;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .cid-tp52zITOhQ .title-container {
    margin-bottom: 50px;
  }
}
.cid-tp52zITOhQ .mbr-section-title {
  color: #FFDD65;
}
.cid-tp52zITOhQ .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 1rem;
}
.cid-tp52zITOhQ .img-container {
  width: 100%;
  max-height: 100vh;
}
@media (max-width: 767px) {
  .cid-tp52zITOhQ .img-container {
    height: 350px;
  }
}
.cid-tp52zITOhQ .image-wrapper {
  height: 100%;
  position: relative;
  border-radius: 4.17rem;
  padding: 5px;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
}
.cid-tp52zITOhQ .image-wrapper .img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4.17rem;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  -webkit-filter: blur(1rem);
  filter: blur(1rem);
}
.cid-tp52zITOhQ .image-wrapper .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 11;
  border-radius: 3.85rem;
  overflow: hidden;
  height: 100%;
}
.cid-tp52zITOhQ .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tp52zKeur5 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #212132;
}
.cid-tp52zKeur5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tp52zKeur5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tp52zKeur5 .container {
  max-width: 1600px;
}
.cid-tp52zKeur5 .row {
  justify-content: left;
}
.cid-tp52zKeur5 .content-container {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
}
.cid-tp52zKeur5 .title-container {
  width: 100%;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .cid-tp52zKeur5 .title-container {
    margin-bottom: 50px;
  }
}
.cid-tp52zKeur5 .mbr-section-title {
  color: #FFDD65;
}
.cid-tp52zKeur5 .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 1rem;
}
.cid-tp52zKeur5 .img-container {
  width: 100%;
  max-height: 100vh;
}
@media (max-width: 767px) {
  .cid-tp52zKeur5 .img-container {
    height: 350px;
  }
}
.cid-tp52zKeur5 .image-wrapper {
  height: 100%;
  position: relative;
  border-radius: 4.17rem;
  padding: 5px;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
}
.cid-tp52zKeur5 .image-wrapper .img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4.17rem;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  -webkit-filter: blur(1rem);
  filter: blur(1rem);
}
.cid-tp52zKeur5 .image-wrapper .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 11;
  border-radius: 3.85rem;
  overflow: hidden;
  height: 100%;
}
.cid-tp52zKeur5 .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tp56xYck71 {
  background-color: #212132;
}
.cid-tp56xYck71 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tp56xYck71 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tp56xYck71 .content-bg {
  border-top-left-radius: 6.67rem;
  border-top-right-radius: 6.67rem;
  width: 100%;
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: transparent;
  background: #ffdd65;
}
.cid-tp56xYck71 .container {
  max-width: 1280px;
}
.cid-tp56xYck71 .row {
  justify-content: center;
}
.cid-tp56xYck71 .mbr-section-title {
  color: #212132;
}
.cid-tp56xYck71 .mbr-section-subtitle {
  color: #212132;
  margin-top: 1rem;
}
.cid-tp52zLBqQ6 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-tp52zLBqQ6 .container {
  max-width: 1472px;
}
.cid-tp52zLBqQ6 .mbr-text {
  color: #FFFFFF;
}
.cid-tp5bcQR1lc {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 96px;
}
.cid-tp5bcQR1lc nav.navbar {
  position: fixed;
}
.cid-tp5bcQR1lc .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tp5bcQR1lc .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tp5bcQR1lc .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tp5bcQR1lc .dropdown-item:hover,
.cid-tp5bcQR1lc .dropdown-item:focus {
  background: #ae5eff !important;
  color: white !important;
}
.cid-tp5bcQR1lc .dropdown-item:hover span {
  color: white;
}
.cid-tp5bcQR1lc .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tp5bcQR1lc .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tp5bcQR1lc .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tp5bcQR1lc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tp5bcQR1lc .nav-link {
  position: relative;
}
.cid-tp5bcQR1lc .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-tp5bcQR1lc .container {
    flex-wrap: nowrap;
  }
}
.cid-tp5bcQR1lc .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
}
.cid-tp5bcQR1lc .iconfont-wrapper:hover {
  color: #ffdd65 !important;
}
.cid-tp5bcQR1lc .dropdown-menu,
.cid-tp5bcQR1lc .navbar.opened {
  background: #212132 !important;
}
.cid-tp5bcQR1lc .nav-item:focus,
.cid-tp5bcQR1lc .nav-link:focus {
  outline: none;
}
.cid-tp5bcQR1lc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tp5bcQR1lc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tp5bcQR1lc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tp5bcQR1lc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tp5bcQR1lc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tp5bcQR1lc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tp5bcQR1lc .navbar {
  min-height: 96px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #212132;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-tp5bcQR1lc .navbar.opened {
  transition: all 0.3s;
}
.cid-tp5bcQR1lc .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tp5bcQR1lc .navbar .navbar-logo img {
  width: auto;
}
.cid-tp5bcQR1lc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tp5bcQR1lc .navbar.collapsed {
  justify-content: center;
}
.cid-tp5bcQR1lc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tp5bcQR1lc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tp5bcQR1lc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tp5bcQR1lc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tp5bcQR1lc .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tp5bcQR1lc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tp5bcQR1lc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tp5bcQR1lc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tp5bcQR1lc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tp5bcQR1lc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tp5bcQR1lc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tp5bcQR1lc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tp5bcQR1lc .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tp5bcQR1lc .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tp5bcQR1lc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tp5bcQR1lc .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tp5bcQR1lc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 60%;
  }
  .cid-tp5bcQR1lc .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tp5bcQR1lc .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tp5bcQR1lc .navbar.navbar-short {
  min-height: 96px;
}
.cid-tp5bcQR1lc .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tp5bcQR1lc .navbar.navbar-short .navbar-brand {
  min-height: 96px;
  padding: 0;
}
.cid-tp5bcQR1lc .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-tp5bcQR1lc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tp5bcQR1lc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tp5bcQR1lc .navbar-brand:hover {
  transform: scale(1.1);
}
.cid-tp5bcQR1lc .dropdown-item.active,
.cid-tp5bcQR1lc .dropdown-item:active {
  background-color: transparent;
}
.cid-tp5bcQR1lc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tp5bcQR1lc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tp5bcQR1lc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tp5bcQR1lc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #212132;
}
.cid-tp5bcQR1lc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tp5bcQR1lc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tp5bcQR1lc ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tp5bcQR1lc .navbar-buttons {
  text-align: center;
}
.cid-tp5bcQR1lc .navbar-buttons .btn {
  padding: 9px 18px;
  min-width: 100px;
  min-height: 52px;
  border-radius: 0.3rem;
}
.cid-tp5bcQR1lc .navbar-buttons .btn:hover {
  color: #ffdd65 !important;
}
@media (max-width: 575px) {
  .cid-tp5bcQR1lc .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-tp5bcQR1lc .navbar-buttons .btn-black {
  border: solid 2px #ae5eff !important;
  box-shadow: 3px 3px 0 0 #ae5eff !important;
}
.cid-tp5bcQR1lc .navbar-buttons .btn-black:hover {
  border: solid 2px #ae5eff !important;
  color: #ffdd65 !important;
  box-shadow: 0 0 0 0 #ae5eff !important;
}
.cid-tp5bcQR1lc button.navbar-toggler {
  outline: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 0.3rem;
  background-color: #212132 !important;
  border: solid 2px #ae5eff !important;
  box-shadow: 3px 3px 0 0 #ae5eff !important;
}
.cid-tp5bcQR1lc button.navbar-toggler:hover {
  border: solid 2px #ae5eff !important;
  color: #ffdd65 !important;
  box-shadow: 0 0 0 0 #ae5eff !important;
}
.cid-tp5bcQR1lc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tp5bcQR1lc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 9px;
  left: 8px;
  transition: all 0.2s;
}
.cid-tp5bcQR1lc button.navbar-toggler .hamburger span:nth-child(2) {
  left: 8px;
  top: 17px;
  transition: all 0.15s;
}
.cid-tp5bcQR1lc button.navbar-toggler .hamburger span:nth-child(3) {
  left: 8px;
  top: 17px;
  transition: all 0.15s;
}
.cid-tp5bcQR1lc button.navbar-toggler .hamburger span:nth-child(4) {
  left: 8px;
  top: 25px;
  transition: all 0.2s;
}
.cid-tp5bcQR1lc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tp5bcQR1lc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tp5bcQR1lc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tp5bcQR1lc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tp5bcQR1lc .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tp5bcQR1lc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tp5bcQR1lc .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tp5bcQR1lc .navbar {
    height: 70px;
  }
  .cid-tp5bcQR1lc .navbar.opened {
    height: auto;
  }
  .cid-tp5bcQR1lc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tp5bcQR1lc .navbar-nav {
  margin: 0 auto;
}
.cid-tp5bcQR1lc .nav-item {
  padding: 0;
  margin: 2px;
}
.cid-tp5bcQR1lc .nav-item .nav-link {
  padding: 6px 32px !important;
  margin: 0 !important;
}
.cid-tp5bcQR1lc .nav-item .nav-link::after {
  color: #ffdd65 !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-tp5bcQR1lc .nav-item .nav-link:hover {
  color: #ffdd65 !important;
}
.cid-tp5bcQR1lc .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-tp5bcQR1lc .nav-item .dropdown-menu {
  background-color: #ffffff !important;
}
.cid-tp5bcQR1lc .nav-item .dropdown-menu:hover {
  background-color: #ffffff !important;
}
.cid-tp5bcQR1lc .nav-item .dropdown-menu .dropdown-item {
  color: #212132 !important;
  background-color: transparent !important;
}
.cid-tp5bcQR1lc .nav-item .dropdown-menu .dropdown-item:hover {
  color: #ae5eff !important;
}
@media (max-width: 991px) {
  .cid-tp5bcQR1lc .navbar {
    justify-content: flex-start !important;
  }
  .cid-tp5bcQR1lc .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-tp5bcQR1lc .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-tp5bcQR1lc .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-tp5bcQR1lc .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-tp5bcQR1lc .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .cid-tp5bcQR1lc .navbar-collapse .nav-item .nav-link {
    padding: 14px 0 !important;
    justify-content: flex-start;
  }
}
.cid-tp5bcSk5b9 {
  background-image: url("../../../assets/images/pexels-fauxels-3183181.jpg");
}
.cid-tp5bcSk5b9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tp5bcSk5b9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tp5bcSk5b9 .row {
  justify-content: left;
}
.cid-tp5bcSk5b9 .mbr-section-title {
  color: #FFDD65;
}
.cid-tp5bcSk5b9 .mbr-section-subtitle {
  color: #FFDD65;
  background-image: linear-gradient(90deg, currentColor 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-tp5bcSk5b9 .btn-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 96px;
}
@media (max-width: 991px) {
  .cid-tp5bcSk5b9 .btn-container {
    padding-top: 50px;
    flex-direction: column;
    align-items: center;
  }
}
.cid-tp5bcSk5b9 .custom-mbr-section-btn {
  padding-bottom: 0.42rem;
}
@media (max-width: 991px) {
  .cid-tp5bcSk5b9 .custom-mbr-section-btn {
    padding-bottom: 0;
  }
}
.cid-tp5bcSk5b9 .custom-section-btn {
  height: 100%;
}
.cid-tp5bcSk5b9 .custom-section-btn .btn {
  height: 100%;
}
.cid-tp5bcSk5b9 .text-container {
  max-width: 384px;
  margin-left: 40px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tp5bcSk5b9 .text-container {
    margin: 26px auto 0;
  }
}
.cid-tp5bcSk5b9 .mbr-text {
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .cid-tp5bcSk5b9 .mbr-text {
    text-align: center !important;
  }
}
.cid-tp5bcSk5b9 .text-item-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-top: 26px;
}
@media (max-width: 991px) {
  .cid-tp5bcSk5b9 .text-item-container {
    flex-wrap: wrap;
  }
}
.cid-tp5bcSk5b9 .text-item {
  display: flex;
  align-items: center;
  max-width: 48%;
}
@media (max-width: 991px) {
  .cid-tp5bcSk5b9 .text-item {
    max-width: 100%;
    width: 100%;
    justify-content: center;
    margin-bottom: 6px;
  }
}
.cid-tp5bcSk5b9 .icon-text {
  color: #ffffff;
  opacity: 0.6;
}
.cid-tp5bcSk5b9 .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.cid-tp5bcSk5b9 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 24px;
  color: #ae5eff;
}
.cid-tp5bcTxNEA {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #212132;
}
.cid-tp5bcTxNEA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tp5bcTxNEA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tp5bcTxNEA .container {
  max-width: 1600px;
}
.cid-tp5bcTxNEA .row {
  justify-content: center;
}
.cid-tp5bcTxNEA .content-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  flex-wrap: wrap;
}
.cid-tp5bcTxNEA .title-container {
  width: 100%;
}
.cid-tp5bcTxNEA .mbr-section-title {
  color: #FFDD65;
  width: 100%;
}
.cid-tp5bcTxNEA .colored-text {
  line-height: inherit;
  color: inherit;
  color: #ae5eff;
}
.cid-tp5bcTxNEA .mbr-section-subtitle {
  color: #FFDD65;
  margin-top: 1.5rem;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tp5bcTxNEA .mbr-section-subtitle {
    margin-top: 1rem;
  }
}
.cid-tp5bcTxNEA .btn-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 80px;
  margin-right: auto;
  margin-left: auto;
  gap: 40px;
}
@media (max-width: 991px) {
  .cid-tp5bcTxNEA .btn-container {
    margin-top: 50px;
    flex-wrap: wrap;
    gap: 0;
  }
}
.cid-tp5bcTxNEA .text-container {
  max-width: 400px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tp5bcTxNEA .text-container {
    margin: 24px auto 0;
  }
}
.cid-tp5bcTxNEA .mbr-text {
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .cid-tp5bcTxNEA .mbr-text {
    text-align: center !important;
  }
}
.cid-tp5bcTxNEA .text-item-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-top: 26px;
}
@media (max-width: 991px) {
  .cid-tp5bcTxNEA .text-item-container {
    flex-wrap: wrap;
  }
}
.cid-tp5bcTxNEA .text-item {
  display: flex;
  align-items: center;
  max-width: 48%;
}
@media (max-width: 991px) {
  .cid-tp5bcTxNEA .text-item {
    max-width: 100%;
    width: 100%;
    justify-content: center;
    margin-bottom: 6px;
  }
}
.cid-tp5bcTxNEA .icon-text {
  color: #AE5EFF;
}
.cid-tp5bcTxNEA .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.cid-tp5bcTxNEA .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 24px;
  color: #ae5eff;
}
.cid-tp5bcTxNEA .form-container {
  max-width: 535px;
  margin-right: auto;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .cid-tp5bcTxNEA .form-container {
    max-width: 100%;
    width: 100%;
  }
}
.cid-tp5bcTxNEA form {
  width: 100%;
}
.cid-tp5bcTxNEA form .dragArea.row {
  justify-content: flex-start;
  width: auto !important;
}
.cid-tp5bcTxNEA form p {
  color: #ffffff;
}
.cid-tp5bcTxNEA form .mbr-section-btn {
  width: max-content;
  max-width: 35%;
}
@media (max-width: 991px) {
  .cid-tp5bcTxNEA form .mbr-section-btn {
    max-width: 100%;
    width: 100%;
  }
}
.cid-tp5bcTxNEA form .mbr-section-btn .btn {
  padding: 10px 35px;
  height: 100%;
  border-radius: 0.75rem !important;
  border-bottom-left-radius: 0 !important;
  border-top-left-radius: 0 !important;
}
@media (max-width: 991px) {
  .cid-tp5bcTxNEA form .mbr-section-btn .btn {
    min-height: 64px;
    padding: 6px 24px;
    width: 100%;
    border-radius: 0.75rem !important;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }
}
.cid-tp5bcTxNEA form .form-group {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  flex-grow: 1;
}
.cid-tp5bcTxNEA form .group-container {
  position: relative;
  width: 100%;
  padding: 0;
  margin-top: 0.42rem;
}
.cid-tp5bcTxNEA form .group-bg {
  position: absolute;
  border-radius: 0.75rem;
  z-index: 5;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8a61ff 99.93%);
}
.cid-tp5bcTxNEA form .group-border {
  display: flex;
  align-items: stretch;
  position: relative;
  z-index: 6;
  padding: 3px;
  border-radius: 0.75rem;
  transition: all 300ms ease;
  background-image: linear-gradient(90deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8a61ff 99.93%);
  transform: translate3d(-0.42rem, -0.42rem, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.cid-tp5bcTxNEA form .group-border:hover {
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
@media (max-width: 991px) {
  .cid-tp5bcTxNEA form .group-border {
    flex-wrap: wrap;
  }
}
.cid-tp5bcTxNEA form .form-control {
  min-height: 100px;
  height: 100%;
  border: none !important;
  background: #ffffff;
  box-shadow: none !important;
  border-radius: 0.75rem;
  border-bottom-right-radius: 0 !important;
  border-top-right-radius: 0 !important;
  margin-bottom: 0;
  padding: 20px 40px;
  font-size: 24px;
  line-height: 32px;
  color: #212132;
  font-weight: 400;
}
@media (max-width: 991px) {
  .cid-tp5bcTxNEA form .form-control {
    min-height: 64px;
    padding: 6px 24px;
    width: 100%;
    border-radius: 0.75rem !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    text-align: center !important;
  }
}
.cid-tp5bcTxNEA form .form-control::-webkit-input-placeholder {
  color: #939292;
}
.cid-tp5bcTxNEA form .form-control::-moz-placeholder {
  color: #939292;
}
.cid-tp5bcTxNEA form .form-control:-moz-placeholder {
  color: #939292;
}
.cid-tp5bcTxNEA form .form-control:-ms-input-placeholder {
  color: #939292;
}
.cid-tp5bcTxNEA form .form-control:hover {
  outline: none !important;
}
.cid-tp5bcTxNEA form select {
  color: #939292 !important;
}
.cid-tp5bcTxNEA form textarea {
  height: 200px;
}
.cid-tp5bcTxNEA form input:active,
.cid-tp5bcTxNEA form textarea:active,
.cid-tp5bcTxNEA form input:focus,
.cid-tp5bcTxNEA form textarea:focus {
  background-color: #FFFFFF !important;
}
.cid-tp5bcTxNEA form input:active::-webkit-input-placeholder,
.cid-tp5bcTxNEA form textarea:active::-webkit-input-placeholder,
.cid-tp5bcTxNEA form input:focus::-webkit-input-placeholder,
.cid-tp5bcTxNEA form textarea:focus::-webkit-input-placeholder {
  color: #939292;
}
.cid-tp5bcTxNEA form input:active::-moz-placeholder,
.cid-tp5bcTxNEA form textarea:active::-moz-placeholder,
.cid-tp5bcTxNEA form input:focus::-moz-placeholder,
.cid-tp5bcTxNEA form textarea:focus::-moz-placeholder {
  color: #939292;
}
.cid-tp5bcTxNEA form input:active:-moz-placeholder,
.cid-tp5bcTxNEA form textarea:active:-moz-placeholder,
.cid-tp5bcTxNEA form input:focus:-moz-placeholder,
.cid-tp5bcTxNEA form textarea:focus:-moz-placeholder {
  color: #939292;
}
.cid-tp5bcTxNEA form input:active:-ms-input-placeholder,
.cid-tp5bcTxNEA form textarea:active:-ms-input-placeholder,
.cid-tp5bcTxNEA form input:focus:-ms-input-placeholder,
.cid-tp5bcTxNEA form textarea:focus:-ms-input-placeholder {
  color: #939292;
}
.cid-tp5bcTxNEA form .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.cid-tp5bcTxNEA form .row [class*=col] {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-tp5bcTxNEA form label {
  width: 100%;
  color: #ffffff;
  margin-bottom: 10px;
}
.cid-tp5bcTxNEA form .form-check-input {
  border-color: rgba(255, 255, 255, 0.25) !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}
.cid-tp5bcTxNEA form .form-check-input:focus,
.cid-tp5bcTxNEA form .form-check-input:hover {
  background-color: transparent !important;
  border-color: #ffffff !important;
}
.cid-tp5bcTxNEA form .form-check-input:checked {
  border-color: #ffffff !important;
}
.cid-tp5bcV69cz {
  background-color: #212132;
}
.cid-tp5bcV69cz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tp5bcV69cz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tp5bcV69cz .content-bg {
  border-top-left-radius: 6.67rem;
  border-top-right-radius: 6.67rem;
  width: 100%;
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: transparent;
  background: #ffdd65;
}
.cid-tp5bcV69cz .container {
  max-width: 1280px;
}
.cid-tp5bcV69cz .row {
  justify-content: center;
}
.cid-tp5bcV69cz .mbr-section-title {
  color: #212132;
}
.cid-tp5bcV69cz .mbr-section-subtitle {
  color: #212132;
  margin-top: 1rem;
}
.cid-tp5bcWdUWi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #212132;
}
.cid-tp5bcWdUWi .mbr-fallback-image.disabled {
  display: none;
}
.cid-tp5bcWdUWi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tp5bcWdUWi .container {
  max-width: 1280px;
}
.cid-tp5bcWdUWi .row {
  justify-content: center;
}
.cid-tp5bcWdUWi .content-wrapper {
  display: flex;
  align-items: stretch;
  background: #8a61ff;
  justify-content: flex-start;
  padding: 4rem;
  border-radius: 4.17rem;
}
@media (max-width: 991px) {
  .cid-tp5bcWdUWi .content-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-tp5bcWdUWi .content-wrapper {
    padding: 4rem 6vw;
  }
}
@media (max-width: 575px) {
  .cid-tp5bcWdUWi .content-wrapper {
    padding: 4rem 6vw 1.5rem;
  }
}
.cid-tp5bcWdUWi .text-wrapper {
  width: 40%;
}
@media (max-width: 991px) {
  .cid-tp5bcWdUWi .text-wrapper {
    width: 100%;
  }
}
.cid-tp5bcWdUWi .mbr-section-title {
  color: #FFFFFF;
}
.cid-tp5bcWdUWi .mbr-section-subtitle {
  color: #FFFFFF;
  opacity: 0.8;
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-tp5bcWdUWi .mbr-section-subtitle {
    margin-top: 32px;
  }
}
@media (max-width: 767px) {
  .cid-tp5bcWdUWi .mbr-section-subtitle {
    margin-top: 24px;
  }
}
.cid-tp5bcWdUWi .link {
  text-decoration: underline !important;
}
.cid-tp5bcWdUWi .col-video {
  position: relative;
  display: flex;
  width: 60%;
  right: -8rem;
}
@media (max-width: 1599px) {
  .cid-tp5bcWdUWi .col-video {
    right: calc(-4rem - 4vw);
  }
}
@media (max-width: 991px) {
  .cid-tp5bcWdUWi .col-video {
    left: 0;
    right: 0;
    width: 100%;
    margin-top: 40px;
    height: 350px;
  }
}
.cid-tp5bcWdUWi .col-video img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 1.76rem;
}
.cid-tp5bcWdUWi .col-video .box {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 2.08rem;
  position: relative;
  background-image: linear-gradient(90deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  padding: 5px;
}
.cid-tp5bcWdUWi .col-video .box .box-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2.08rem;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  -webkit-filter: blur(1rem);
  filter: blur(1rem);
}
.cid-tp5bcWdUWi .col-video .link-container {
  display: flex;
  margin-bottom: 2rem;
}
.cid-tp5bcWdUWi .col-video .link {
  margin-right: 1rem;
}
.cid-tp5bcWdUWi .col-video .mbr-media {
  display: flex;
  height: 100%;
  width: 100%;
  border-radius: 1.76rem;
  overflow: hidden;
}
.cid-tp5bcWdUWi .col-video .mbr-media a:hover {
  background-image: none !important;
}
.cid-tp5bcWdUWi .mbr-media {
  position: relative;
}
.cid-tp5bcWdUWi .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tp5bcWdUWi .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  transition: all .3s;
}
.cid-tp5bcWdUWi .icon-wrap:hover {
  transform: translate(-50%, -50%);
}
.cid-tp5bcWdUWi .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tp5bcWdUWi .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tp5bcWdUWi .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tp5bcWdUWi .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tp5bcWdUWi .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tp5bcWdUWi .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tp5bcWdUWi a:hover {
  text-decoration-line: none !important;
}
.cid-tp5bcY5sCS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #212132;
}
.cid-tp5bcY5sCS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tp5bcY5sCS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tp5bcY5sCS .container {
  max-width: 1280px;
}
.cid-tp5bcY5sCS .row {
  justify-content: center;
}
.cid-tp5bcY5sCS .content-wrapper {
  display: flex;
  align-items: stretch;
  background: #8a61ff;
  justify-content: flex-start;
  padding: 4rem;
  border-radius: 4.17rem;
}
@media (max-width: 991px) {
  .cid-tp5bcY5sCS .content-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-tp5bcY5sCS .content-wrapper {
    padding: 4rem 6vw;
  }
}
@media (max-width: 575px) {
  .cid-tp5bcY5sCS .content-wrapper {
    padding: 4rem 6vw 1.5rem;
  }
}
.cid-tp5bcY5sCS .text-wrapper {
  width: 40%;
}
@media (max-width: 991px) {
  .cid-tp5bcY5sCS .text-wrapper {
    width: 100%;
  }
}
.cid-tp5bcY5sCS .mbr-section-title {
  color: #FFFFFF;
}
.cid-tp5bcY5sCS .mbr-section-subtitle {
  color: #FFFFFF;
  opacity: 0.8;
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-tp5bcY5sCS .mbr-section-subtitle {
    margin-top: 32px;
  }
}
@media (max-width: 767px) {
  .cid-tp5bcY5sCS .mbr-section-subtitle {
    margin-top: 24px;
  }
}
.cid-tp5bcY5sCS .link {
  text-decoration: underline !important;
}
.cid-tp5bcY5sCS .col-video {
  position: relative;
  display: flex;
  width: 60%;
  right: -8rem;
}
@media (max-width: 1599px) {
  .cid-tp5bcY5sCS .col-video {
    right: calc(-4rem - 4vw);
  }
}
@media (max-width: 991px) {
  .cid-tp5bcY5sCS .col-video {
    left: 0;
    right: 0;
    width: 100%;
    margin-top: 40px;
    height: 350px;
  }
}
.cid-tp5bcY5sCS .col-video img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 1.76rem;
}
.cid-tp5bcY5sCS .col-video .box {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 2.08rem;
  position: relative;
  background-image: linear-gradient(90deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  padding: 5px;
}
.cid-tp5bcY5sCS .col-video .box .box-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2.08rem;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  -webkit-filter: blur(1rem);
  filter: blur(1rem);
}
.cid-tp5bcY5sCS .col-video .link-container {
  display: flex;
  margin-bottom: 2rem;
}
.cid-tp5bcY5sCS .col-video .link {
  margin-right: 1rem;
}
.cid-tp5bcY5sCS .col-video .mbr-media {
  display: flex;
  height: 100%;
  width: 100%;
  border-radius: 1.76rem;
  overflow: hidden;
}
.cid-tp5bcY5sCS .col-video .mbr-media a:hover {
  background-image: none !important;
}
.cid-tp5bcY5sCS .mbr-media {
  position: relative;
}
.cid-tp5bcY5sCS .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tp5bcY5sCS .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  transition: all .3s;
}
.cid-tp5bcY5sCS .icon-wrap:hover {
  transform: translate(-50%, -50%);
}
.cid-tp5bcY5sCS .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tp5bcY5sCS .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tp5bcY5sCS .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tp5bcY5sCS .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tp5bcY5sCS .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tp5bcY5sCS .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tp5bcY5sCS a:hover {
  text-decoration-line: none !important;
}
.cid-tp5bcZRzIs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #212132;
}
.cid-tp5bcZRzIs .mbr-fallback-image.disabled {
  display: none;
}
.cid-tp5bcZRzIs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tp5bcZRzIs .container {
  max-width: 1280px;
}
.cid-tp5bcZRzIs .row {
  justify-content: center;
}
.cid-tp5bcZRzIs .content-wrapper {
  display: flex;
  align-items: stretch;
  background: #8a61ff;
  justify-content: flex-start;
  padding: 4rem;
  border-radius: 4.17rem;
}
@media (max-width: 991px) {
  .cid-tp5bcZRzIs .content-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-tp5bcZRzIs .content-wrapper {
    padding: 4rem 6vw;
  }
}
@media (max-width: 575px) {
  .cid-tp5bcZRzIs .content-wrapper {
    padding: 4rem 6vw 1.5rem;
  }
}
.cid-tp5bcZRzIs .text-wrapper {
  width: 40%;
}
@media (max-width: 991px) {
  .cid-tp5bcZRzIs .text-wrapper {
    width: 100%;
  }
}
.cid-tp5bcZRzIs .mbr-section-title {
  color: #FFFFFF;
}
.cid-tp5bcZRzIs .mbr-section-subtitle {
  color: #FFFFFF;
  opacity: 0.8;
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-tp5bcZRzIs .mbr-section-subtitle {
    margin-top: 32px;
  }
}
@media (max-width: 767px) {
  .cid-tp5bcZRzIs .mbr-section-subtitle {
    margin-top: 24px;
  }
}
.cid-tp5bcZRzIs .link {
  text-decoration: underline !important;
}
.cid-tp5bcZRzIs .col-video {
  position: relative;
  display: flex;
  width: 60%;
  right: -8rem;
}
@media (max-width: 1599px) {
  .cid-tp5bcZRzIs .col-video {
    right: calc(-4rem - 4vw);
  }
}
@media (max-width: 991px) {
  .cid-tp5bcZRzIs .col-video {
    left: 0;
    right: 0;
    width: 100%;
    margin-top: 40px;
    height: 350px;
  }
}
.cid-tp5bcZRzIs .col-video img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 1.76rem;
}
.cid-tp5bcZRzIs .col-video .box {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 2.08rem;
  position: relative;
  background-image: linear-gradient(90deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  padding: 5px;
}
.cid-tp5bcZRzIs .col-video .box .box-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2.08rem;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  -webkit-filter: blur(1rem);
  filter: blur(1rem);
}
.cid-tp5bcZRzIs .col-video .link-container {
  display: flex;
  margin-bottom: 2rem;
}
.cid-tp5bcZRzIs .col-video .link {
  margin-right: 1rem;
}
.cid-tp5bcZRzIs .col-video .mbr-media {
  display: flex;
  height: 100%;
  width: 100%;
  border-radius: 1.76rem;
  overflow: hidden;
}
.cid-tp5bcZRzIs .col-video .mbr-media a:hover {
  background-image: none !important;
}
.cid-tp5bcZRzIs .mbr-media {
  position: relative;
}
.cid-tp5bcZRzIs .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tp5bcZRzIs .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  transition: all .3s;
}
.cid-tp5bcZRzIs .icon-wrap:hover {
  transform: translate(-50%, -50%);
}
.cid-tp5bcZRzIs .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tp5bcZRzIs .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tp5bcZRzIs .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tp5bcZRzIs .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tp5bcZRzIs .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tp5bcZRzIs .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tp5bcZRzIs a:hover {
  text-decoration-line: none !important;
}
.cid-tp5bd3xaM2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffdd65;
}
.cid-tp5bd3xaM2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tp5bd3xaM2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tp5bd3xaM2 .container {
  max-width: 1280px;
}
.cid-tp5bd3xaM2 .content-wrapper {
  display: flex;
  align-items: stretch;
  background: #212132;
  padding: 4rem 0;
  border-radius: 4.17rem;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tp5bd3xaM2 .content-wrapper {
    flex-wrap: wrap;
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .cid-tp5bd3xaM2 .content-wrapper {
    padding: 40px 6vw;
  }
}
.cid-tp5bd3xaM2 .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 50%;
  padding-right: 4rem;
  margin-bottom: 24px;
  padding-right: 0;
  padding-left: 4rem;
}
@media (max-width: 991px) {
  .cid-tp5bd3xaM2 .text-wrapper {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
  }
}
.cid-tp5bd3xaM2 .card-title {
  color: #FFDD65;
  margin-bottom: auto;
}
.cid-tp5bd3xaM2 .mbr-text {
  color: #ffffff;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .cid-tp5bd3xaM2 .mbr-text {
    margin-top: 16px;
  }
}
.cid-tp5bd3xaM2 .img-container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  right: -6rem;
}
@media (max-width: 1599px) {
  .cid-tp5bd3xaM2 .img-container {
    right: -4vw;
  }
}
@media (max-width: 1400px) {
  .cid-tp5bd3xaM2 .img-container {
    right: 0rem;
    left: 0;
    padding: 0 3rem;
  }
}
@media (max-width: 991px) {
  .cid-tp5bd3xaM2 .img-container {
    width: 100%;
    margin-bottom: 34px;
    left: 0;
    right: 0;
    padding: 0;
  }
}
.cid-tp5bd3xaM2 .image-wrapper {
  aspect-ratio: 1;
  position: relative;
  border-radius: 2.08rem;
  padding: 32px;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
}
@media (max-width: 767px) {
  .cid-tp5bd3xaM2 .image-wrapper {
    padding: 20px;
  }
}
.cid-tp5bd3xaM2 .image-wrapper .img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2.08rem;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  -webkit-filter: blur(1rem);
  filter: blur(1rem);
}
.cid-tp5bd3xaM2 .image-wrapper .img-box {
  position: relative;
  z-index: 11;
  border-radius: 2.08rem;
  overflow: hidden;
  height: 100%;
}
.cid-tp5bd3xaM2 .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tp5bd4UJJz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffdd65;
}
.cid-tp5bd4UJJz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tp5bd4UJJz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tp5bd4UJJz .container {
  max-width: 1280px;
}
.cid-tp5bd4UJJz .content-wrapper {
  display: flex;
  align-items: stretch;
  background: #212132;
  padding: 4rem 0;
  border-radius: 4.17rem;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tp5bd4UJJz .content-wrapper {
    flex-wrap: wrap;
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .cid-tp5bd4UJJz .content-wrapper {
    padding: 40px 6vw;
  }
}
.cid-tp5bd4UJJz .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 50%;
  padding-right: 4rem;
  margin-bottom: 24px;
  padding-right: 0;
  padding-left: 4rem;
}
@media (max-width: 991px) {
  .cid-tp5bd4UJJz .text-wrapper {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
  }
}
.cid-tp5bd4UJJz .card-title {
  color: #FFDD65;
  margin-bottom: auto;
}
.cid-tp5bd4UJJz .mbr-text {
  color: #ffffff;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .cid-tp5bd4UJJz .mbr-text {
    margin-top: 16px;
  }
}
.cid-tp5bd4UJJz .img-container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  right: -6rem;
}
@media (max-width: 1599px) {
  .cid-tp5bd4UJJz .img-container {
    right: -4vw;
  }
}
@media (max-width: 1400px) {
  .cid-tp5bd4UJJz .img-container {
    right: 0rem;
    left: 0;
    padding: 0 3rem;
  }
}
@media (max-width: 991px) {
  .cid-tp5bd4UJJz .img-container {
    width: 100%;
    margin-bottom: 34px;
    left: 0;
    right: 0;
    padding: 0;
  }
}
.cid-tp5bd4UJJz .image-wrapper {
  aspect-ratio: 1;
  position: relative;
  border-radius: 2.08rem;
  padding: 32px;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
}
@media (max-width: 767px) {
  .cid-tp5bd4UJJz .image-wrapper {
    padding: 20px;
  }
}
.cid-tp5bd4UJJz .image-wrapper .img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2.08rem;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  -webkit-filter: blur(1rem);
  filter: blur(1rem);
}
.cid-tp5bd4UJJz .image-wrapper .img-box {
  position: relative;
  z-index: 11;
  border-radius: 2.08rem;
  overflow: hidden;
  height: 100%;
}
.cid-tp5bd4UJJz .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tp5bd6cXB2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #212132;
}
.cid-tp5bd6cXB2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tp5bd6cXB2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tp5bd6cXB2 .container {
  max-width: 1280px;
}
.cid-tp5bd6cXB2 .row {
  justify-content: center;
}
.cid-tp5bd6cXB2 .col-title {
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .cid-tp5bd6cXB2 .col-title {
    margin-bottom: 50px;
  }
}
.cid-tp5bd6cXB2 .mbr-section-title {
  color: #FFDD65;
}
.cid-tp5bd6cXB2 .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 1rem;
}
.cid-tp5bd6cXB2 .col-video {
  display: flex;
}
.cid-tp5bd6cXB2 .col-video img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 1.76rem;
}
@media (max-width: 767px) {
  .cid-tp5bd6cXB2 .col-video {
    height: 350px;
  }
}
.cid-tp5bd6cXB2 .col-video .box {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 2.08rem;
  position: relative;
  background-image: linear-gradient(90deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  padding: 5px;
}
.cid-tp5bd6cXB2 .col-video .box .box-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2.08rem;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  -webkit-filter: blur(1rem);
  filter: blur(1rem);
}
.cid-tp5bd6cXB2 .col-video .link-container {
  display: flex;
  margin-bottom: 2rem;
}
.cid-tp5bd6cXB2 .col-video .link {
  margin-right: 1rem;
}
.cid-tp5bd6cXB2 .col-video .mbr-media {
  display: flex;
  height: 100%;
  width: 100%;
  border-radius: 1.76rem;
  overflow: hidden;
}
.cid-tp5bd6cXB2 .col-video .mbr-media a:hover {
  background-image: none !important;
}
.cid-tp5bd6cXB2 .mbr-media {
  position: relative;
}
.cid-tp5bd6cXB2 .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tp5bd6cXB2 .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  transition: all .3s;
}
.cid-tp5bd6cXB2 .icon-wrap:hover {
  transform: translate(-50%, -50%);
}
.cid-tp5bd6cXB2 .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tp5bd6cXB2 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tp5bd6cXB2 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tp5bd6cXB2 .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tp5bd6cXB2 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tp5bd6cXB2 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tp5bd6cXB2 a:hover {
  text-decoration-line: none !important;
}
.cid-tp5bd8dVZH {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #212132;
}
.cid-tp5bd8dVZH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tp5bd8dVZH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tp5bd8dVZH .container {
  max-width: 1600px;
}
.cid-tp5bd8dVZH .row {
  justify-content: left;
}
.cid-tp5bd8dVZH .content-container {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
}
.cid-tp5bd8dVZH .title-container {
  width: 100%;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .cid-tp5bd8dVZH .title-container {
    margin-bottom: 50px;
  }
}
.cid-tp5bd8dVZH .mbr-section-title {
  color: #FFDD65;
}
.cid-tp5bd8dVZH .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 1rem;
}
.cid-tp5bd8dVZH .img-container {
  width: 100%;
  max-height: 100vh;
}
@media (max-width: 767px) {
  .cid-tp5bd8dVZH .img-container {
    height: 350px;
  }
}
.cid-tp5bd8dVZH .image-wrapper {
  height: 100%;
  position: relative;
  border-radius: 4.17rem;
  padding: 5px;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
}
.cid-tp5bd8dVZH .image-wrapper .img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4.17rem;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  -webkit-filter: blur(1rem);
  filter: blur(1rem);
}
.cid-tp5bd8dVZH .image-wrapper .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 11;
  border-radius: 3.85rem;
  overflow: hidden;
  height: 100%;
}
.cid-tp5bd8dVZH .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tp5bd9BLL6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #212132;
}
.cid-tp5bd9BLL6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tp5bd9BLL6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tp5bd9BLL6 .container {
  max-width: 1600px;
}
.cid-tp5bd9BLL6 .row {
  justify-content: left;
}
.cid-tp5bd9BLL6 .content-container {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
}
.cid-tp5bd9BLL6 .title-container {
  width: 100%;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .cid-tp5bd9BLL6 .title-container {
    margin-bottom: 50px;
  }
}
.cid-tp5bd9BLL6 .mbr-section-title {
  color: #FFDD65;
}
.cid-tp5bd9BLL6 .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 1rem;
}
.cid-tp5bd9BLL6 .img-container {
  width: 100%;
  max-height: 100vh;
}
@media (max-width: 767px) {
  .cid-tp5bd9BLL6 .img-container {
    height: 350px;
  }
}
.cid-tp5bd9BLL6 .image-wrapper {
  height: 100%;
  position: relative;
  border-radius: 4.17rem;
  padding: 5px;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
}
.cid-tp5bd9BLL6 .image-wrapper .img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4.17rem;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  -webkit-filter: blur(1rem);
  filter: blur(1rem);
}
.cid-tp5bd9BLL6 .image-wrapper .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 11;
  border-radius: 3.85rem;
  overflow: hidden;
  height: 100%;
}
.cid-tp5bd9BLL6 .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tp5e4g0LWC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffdd65;
}
.cid-tp5e4g0LWC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tp5e4g0LWC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tp5e4g0LWC .container {
  max-width: 1280px;
}
.cid-tp5e4g0LWC .content-wrapper {
  background: #212132;
  padding: 4rem;
  border-radius: 4.17rem;
}
@media (max-width: 767px) {
  .cid-tp5e4g0LWC .content-wrapper {
    padding: 4rem 6vw;
  }
}
.cid-tp5e4g0LWC .text-wrapper {
  width: 100%;
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .cid-tp5e4g0LWC .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-tp5e4g0LWC .card-title {
  color: #FFDD65;
}
.cid-tp5e4g0LWC .img-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 1.67rem;
}
@media (max-width: 767px) {
  .cid-tp5e4g0LWC .img-container {
    flex-wrap: wrap;
    margin-bottom: 16px;
  }
}
.cid-tp5e4g0LWC .item-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 45%;
  margin-right: 0.83rem;
  margin-left: 0.83rem;
  padding: 2.5rem;
}
@media (max-width: 991px) {
  .cid-tp5e4g0LWC .item-container {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .cid-tp5e4g0LWC .item-container {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 32px;
  }
}
.cid-tp5e4g0LWC .mbr-text {
  color: #ffffff;
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-tp5e4g0LWC .mbr-text {
    margin-bottom: 1.67rem;
  }
}
@media (max-width: 767px) {
  .cid-tp5e4g0LWC .mbr-text {
    margin-bottom: 1rem;
  }
}
.cid-tp5e4g0LWC .image-wrapper {
  margin-top: auto;
  aspect-ratio: 1;
  position: relative;
  border-radius: 2.08rem;
  padding: 5px;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
}
.cid-tp5e4g0LWC .image-wrapper .img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2.08rem;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  -webkit-filter: blur(1rem);
  filter: blur(1rem);
}
.cid-tp5e4g0LWC .image-wrapper .img-box {
  position: relative;
  z-index: 11;
  border-radius: 2.08rem;
  overflow: hidden;
  height: 100%;
}
.cid-tp5e4g0LWC .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tp5e4g0LWC .number-container {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 32px;
}
@media (max-width: 991px) {
  .cid-tp5e4g0LWC .number-container {
    column-gap: 24px;
    padding: 0 24px;
  }
}
@media (max-width: 767px) {
  .cid-tp5e4g0LWC .number-container {
    column-gap: 0;
    padding: 0;
    flex-wrap: wrap;
  }
}
.cid-tp5e4g0LWC .number-container .display-1 {
  font-size: 140px;
  line-height: 1;
}
.cid-tp5e4g0LWC .number {
  width: 35%;
  color: #ffdd65;
  background-image: linear-gradient(90deg, currentColor 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 991px) {
  .cid-tp5e4g0LWC .number {
    width: 45%;
  }
}
@media (max-width: 767px) {
  .cid-tp5e4g0LWC .number {
    width: auto;
    margin-right: auto;
  }
}
.cid-tp5e4g0LWC .number-text {
  color: #ffdd65;
  width: 35%;
}
@media (max-width: 991px) {
  .cid-tp5e4g0LWC .number-text {
    width: 45%;
  }
}
@media (max-width: 767px) {
  .cid-tp5e4g0LWC .number-text {
    width: 100%;
  }
}
.cid-tp5bdbbhOH {
  background-color: #212132;
}
.cid-tp5bdbbhOH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tp5bdbbhOH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tp5bdbbhOH .content-bg {
  border-top-left-radius: 6.67rem;
  border-top-right-radius: 6.67rem;
  width: 100%;
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: transparent;
  background: #ffdd65;
}
.cid-tp5bdbbhOH .container {
  max-width: 1280px;
}
.cid-tp5bdbbhOH .row {
  justify-content: center;
}
.cid-tp5bdbbhOH .mbr-section-title {
  color: #212132;
}
.cid-tp5bdbbhOH .mbr-section-subtitle {
  color: #212132;
  margin-top: 1rem;
}
.cid-tp5bdcBbue {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-tp5bdcBbue .container {
  max-width: 1472px;
}
.cid-tp5bdcBbue .mbr-text {
  color: #FFFFFF;
}
