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: #232323 !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: #232323;
  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: #232323;
}
.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: #232323 !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: #232323 !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/71ptm9-tn9l.-ac-uf10001000-ql80-1000x1000.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-taHGDsGrCR {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffdd65;
}
.cid-taHGDsGrCR .mbr-fallback-image.disabled {
  display: none;
}
.cid-taHGDsGrCR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-taHGDsGrCR .container {
  max-width: 1280px;
}
.cid-taHGDsGrCR .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-taHGDsGrCR .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .cid-taHGDsGrCR .content-wrapper {
    padding: 40px 6vw;
  }
}
.cid-taHGDsGrCR .text-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 720px;
  margin-right: auto;
  margin-bottom: 28px;
}
@media (max-width: 991px) {
  .cid-taHGDsGrCR .text-wrapper {
    margin-bottom: 12px;
  }
}
.cid-taHGDsGrCR .mbr-section-title {
  color: #FFDD65;
  margin-bottom: 100px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-taHGDsGrCR .mbr-section-title {
    margin-bottom: 60px;
  }
}
.cid-taHGDsGrCR .mbr-section-subtitle {
  color: #ffffff;
  width: 100%;
}
.cid-taHGDsGrCR .card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
}
.cid-taHGDsGrCR .card-item {
  width: max-content;
  max-width: 100%;
  margin-right: 12px;
  min-width: 160px;
  margin-bottom: 12px;
  margin-top: 12px;
}
.cid-taHGDsGrCR .card-box {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: max-content;
  height: 100%;
  padding-right: 12px;
}
.cid-taHGDsGrCR .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  width: max-content;
  margin-right: auto;
}
@media (max-width: 991px) {
  .cid-taHGDsGrCR .iconfont-wrapper {
    margin-bottom: 24px;
  }
}
.cid-taHGDsGrCR .iconfont-wrapper .mbr-iconfont {
  color: #ffdd65;
  font-size: 80px;
}
.cid-taHGDsGrCR .card-title {
  color: #ffffff;
}
.cid-tAqAv6rnDC {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #212132;
}
.cid-tAqAv6rnDC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAqAv6rnDC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAqAv6rnDC .container {
  max-width: 1600px;
}
.cid-tAqAv6rnDC .row {
  justify-content: left;
}
.cid-tAqAv6rnDC .content-container {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
}
.cid-tAqAv6rnDC .title-container {
  width: 100%;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .cid-tAqAv6rnDC .title-container {
    margin-bottom: 50px;
  }
}
.cid-tAqAv6rnDC .mbr-section-title {
  color: #FFDD65;
}
.cid-tAqAv6rnDC .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 1rem;
}
.cid-tAqAv6rnDC .img-container {
  width: 100%;
  max-height: 100vh;
}
@media (max-width: 767px) {
  .cid-tAqAv6rnDC .img-container {
    height: 350px;
  }
}
.cid-tAqAv6rnDC .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-tAqAv6rnDC .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-tAqAv6rnDC .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-tAqAv6rnDC .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-taHMKXejEs {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffdd65;
}
.cid-taHMKXejEs .mbr-fallback-image.disabled {
  display: none;
}
.cid-taHMKXejEs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-taHMKXejEs .container {
  max-width: 1600px;
}
.cid-taHMKXejEs .text-wrapper {
  width: 100%;
  margin-bottom: 100px;
}
@media (max-width: 991px) {
  .cid-taHMKXejEs .text-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 767px) {
  .cid-taHMKXejEs .text-wrapper {
    margin-bottom: 50px;
  }
}
.cid-taHMKXejEs .mbr-section-title {
  color: #212132;
}
.cid-taHMKXejEs .content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.83rem;
}
@media (max-width: 991px) {
  .cid-taHMKXejEs .content-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-taHMKXejEs .card-bg-item {
  padding: 3px;
  background-color: #ffffff;
  border-radius: 2.3rem;
}
.cid-taHMKXejEs .card-item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  padding: 40px;
  background-color: #ffffff;
  border-radius: 2.08rem;
  height: 100%;
}
@media (max-width: 767px) {
  .cid-taHMKXejEs .card-item {
    padding-right: 6vw;
    padding-left: 6vw;
  }
}
.cid-taHMKXejEs .text-container {
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-taHMKXejEs .text-container {
    margin-bottom: 24px;
  }
}
.cid-taHMKXejEs .card-title {
  color: #212132;
}
.cid-taHMKXejEs .mbr-text {
  color: #212132;
  opacity: 0.6;
  margin-top: 24px;
}
@media (max-width: 991px) {
  .cid-taHMKXejEs .mbr-text {
    margin-top: 16px;
  }
}
.cid-taHMKXejEs .price-text {
  color: #212132;
  margin-bottom: 12px;
}
@media (max-width: 991px) {
  .cid-taHMKXejEs .price-text {
    margin-bottom: 8px;
  }
}
.cid-taHMKXejEs .mbr-section-btn {
  margin-top: 24px;
}
@media (max-width: 991px) {
  .cid-taHMKXejEs .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-taHMKXejEs .custom-section-btn {
  width: 100%;
  margin-left: 0;
}
.cid-taHMKXejEs .custom-section-btn .btn {
  width: 100%;
  min-height: 85px;
}
.cid-taHMKXejEs .list {
  margin-top: 40px;
}
@media (max-width: 991px) {
  .cid-taHMKXejEs .list {
    margin-top: 24px;
  }
}
.cid-taHMKXejEs .list-title {
  color: #212132;
  opacity: 0.6;
  margin-bottom: 12px;
}
.cid-taHMKXejEs .item-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px;
  border-radius: 0.625rem;
  background-color: #f1f5f7;
  margin-bottom: 0.125rem;
}
@media (max-width: 991px) {
  .cid-taHMKXejEs .item-wrap {
    padding: 8px;
  }
}
.cid-taHMKXejEs .list-text {
  color: #212132;
}
.cid-taHMKXejEs .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  min-height: 32px;
  min-width: 32px;
  margin-left: 8px;
  background-color: #ffdd65;
}
.cid-taHMKXejEs .iconfont-wrapper .mbr-iconfont {
  font-size: 15px;
  color: #212132;
}
.cid-tArfDLOf1K {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f2f4;
}
.cid-tArfDLOf1K .mbr-fallback-image.disabled {
  display: none;
}
.cid-tArfDLOf1K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tArfDLOf1K .container-fluid {
  padding: 0 22px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-tArfDLOf1K .container-fluid {
    padding: 0 16px;
  }
}
.cid-tArfDLOf1K .container-fluid .row {
  padding: 0;
}
.cid-tArfDLOf1K .container {
  overflow: hidden;
}
.cid-tArfDLOf1K .row {
  justify-content: center;
}
.cid-tArfDLOf1K .title-wrapper {
  margin-bottom: 80px;
}
.cid-tArfDLOf1K .title-wrapper .mbr-section-title {
  padding-top: 22px;
  margin-bottom: 0;
}
.cid-tArfDLOf1K .video-block {
  width: 62%;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .cid-tArfDLOf1K .video-block {
    width: 80%;
  }
}
@media (max-width: 768px) {
  .cid-tArfDLOf1K .video-block {
    width: 100%;
  }
}
.cid-tArfDLOf1K .video-block .video-wrapper .app-video-wrapper img {
  height: 450px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tArfDLOf1K .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-tArfDLOf1K .app-video-wrapper::before {
  color: #495dff;
  text-shadow: none;
}
.cid-tArfDLOf1K .mbr-section-title {
  color: #495DFF;
}
.cid-tAqGLmhXN9 {
  background-color: #212132;
}
.cid-tAqGLmhXN9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAqGLmhXN9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAqGLmhXN9 .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-tAqGLmhXN9 .container {
  max-width: 1280px;
}
.cid-tAqGLmhXN9 .row {
  justify-content: center;
}
.cid-tAqGLmhXN9 .mbr-section-title {
  color: #212132;
}
.cid-tAqGLmhXN9 .mbr-section-subtitle {
  color: #212132;
  margin-top: 1rem;
}
.cid-tAqGLmhXN9 .mbr-section-title,
.cid-tAqGLmhXN9 .mbr-section-btn {
  text-align: left;
}
.cid-tAqEVXUNZ4 {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-tAqEVXUNZ4 .google-map {
  height: 30rem;
  position: relative;
}
.cid-tAqEVXUNZ4 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tAqEVXUNZ4 .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tAqEVXUNZ4 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tAqEVXUNZ4 .google-map[data-state='loading'] [data-state-details] {
  display: none;
}
.cid-tAqEVXUNZ4 .mbr-section-title {
  color: #2e6b75;
}
.cid-tAqEVXUNZ4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAqEVXUNZ4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.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-tAqCxHiU96 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 96px;
}
.cid-tAqCxHiU96 nav.navbar {
  position: fixed;
}
.cid-tAqCxHiU96 .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-tAqCxHiU96 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tAqCxHiU96 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tAqCxHiU96 .dropdown-item:hover,
.cid-tAqCxHiU96 .dropdown-item:focus {
  background: #ae5eff !important;
  color: white !important;
}
.cid-tAqCxHiU96 .dropdown-item:hover span {
  color: white;
}
.cid-tAqCxHiU96 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tAqCxHiU96 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tAqCxHiU96 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tAqCxHiU96 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tAqCxHiU96 .nav-link {
  position: relative;
}
.cid-tAqCxHiU96 .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-tAqCxHiU96 .container {
    flex-wrap: nowrap;
  }
}
.cid-tAqCxHiU96 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
}
.cid-tAqCxHiU96 .iconfont-wrapper:hover {
  color: #ffdd65 !important;
}
.cid-tAqCxHiU96 .dropdown-menu,
.cid-tAqCxHiU96 .navbar.opened {
  background: #232323 !important;
}
.cid-tAqCxHiU96 .nav-item:focus,
.cid-tAqCxHiU96 .nav-link:focus {
  outline: none;
}
.cid-tAqCxHiU96 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tAqCxHiU96 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tAqCxHiU96 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tAqCxHiU96 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tAqCxHiU96 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tAqCxHiU96 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tAqCxHiU96 .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: #232323;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-tAqCxHiU96 .navbar.opened {
  transition: all 0.3s;
}
.cid-tAqCxHiU96 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tAqCxHiU96 .navbar .navbar-logo img {
  width: auto;
}
.cid-tAqCxHiU96 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tAqCxHiU96 .navbar.collapsed {
  justify-content: center;
}
.cid-tAqCxHiU96 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tAqCxHiU96 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tAqCxHiU96 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tAqCxHiU96 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tAqCxHiU96 .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-tAqCxHiU96 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tAqCxHiU96 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tAqCxHiU96 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tAqCxHiU96 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tAqCxHiU96 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tAqCxHiU96 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tAqCxHiU96 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tAqCxHiU96 .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-tAqCxHiU96 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tAqCxHiU96 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tAqCxHiU96 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tAqCxHiU96 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 60%;
  }
  .cid-tAqCxHiU96 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tAqCxHiU96 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tAqCxHiU96 .navbar.navbar-short {
  min-height: 96px;
}
.cid-tAqCxHiU96 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tAqCxHiU96 .navbar.navbar-short .navbar-brand {
  min-height: 96px;
  padding: 0;
}
.cid-tAqCxHiU96 .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-tAqCxHiU96 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tAqCxHiU96 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tAqCxHiU96 .navbar-brand:hover {
  transform: scale(1.1);
}
.cid-tAqCxHiU96 .dropdown-item.active,
.cid-tAqCxHiU96 .dropdown-item:active {
  background-color: transparent;
}
.cid-tAqCxHiU96 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tAqCxHiU96 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tAqCxHiU96 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tAqCxHiU96 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tAqCxHiU96 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tAqCxHiU96 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tAqCxHiU96 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tAqCxHiU96 .navbar-buttons {
  text-align: center;
}
.cid-tAqCxHiU96 .navbar-buttons .btn {
  padding: 9px 18px;
  min-width: 100px;
  min-height: 52px;
  border-radius: 0.3rem;
}
.cid-tAqCxHiU96 .navbar-buttons .btn:hover {
  color: #ffdd65 !important;
}
@media (max-width: 575px) {
  .cid-tAqCxHiU96 .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-tAqCxHiU96 .navbar-buttons .btn-black {
  border: solid 2px #ae5eff !important;
  box-shadow: 3px 3px 0 0 #ae5eff !important;
}
.cid-tAqCxHiU96 .navbar-buttons .btn-black:hover {
  border: solid 2px #ae5eff !important;
  color: #ffdd65 !important;
  box-shadow: 0 0 0 0 #ae5eff !important;
}
.cid-tAqCxHiU96 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: #232323 !important;
  border: solid 2px #ae5eff !important;
  box-shadow: 3px 3px 0 0 #ae5eff !important;
}
.cid-tAqCxHiU96 button.navbar-toggler:hover {
  border: solid 2px #ae5eff !important;
  color: #ffdd65 !important;
  box-shadow: 0 0 0 0 #ae5eff !important;
}
.cid-tAqCxHiU96 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tAqCxHiU96 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 9px;
  left: 8px;
  transition: all 0.2s;
}
.cid-tAqCxHiU96 button.navbar-toggler .hamburger span:nth-child(2) {
  left: 8px;
  top: 17px;
  transition: all 0.15s;
}
.cid-tAqCxHiU96 button.navbar-toggler .hamburger span:nth-child(3) {
  left: 8px;
  top: 17px;
  transition: all 0.15s;
}
.cid-tAqCxHiU96 button.navbar-toggler .hamburger span:nth-child(4) {
  left: 8px;
  top: 25px;
  transition: all 0.2s;
}
.cid-tAqCxHiU96 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tAqCxHiU96 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tAqCxHiU96 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tAqCxHiU96 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tAqCxHiU96 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tAqCxHiU96 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tAqCxHiU96 .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-tAqCxHiU96 .navbar {
    height: 70px;
  }
  .cid-tAqCxHiU96 .navbar.opened {
    height: auto;
  }
  .cid-tAqCxHiU96 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tAqCxHiU96 .navbar-nav {
  margin: 0 auto;
}
.cid-tAqCxHiU96 .nav-item {
  padding: 0;
  margin: 2px;
}
.cid-tAqCxHiU96 .nav-item .nav-link {
  padding: 6px 32px !important;
  margin: 0 !important;
}
.cid-tAqCxHiU96 .nav-item .nav-link::after {
  color: #ffdd65 !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-tAqCxHiU96 .nav-item .nav-link:hover {
  color: #ffdd65 !important;
}
.cid-tAqCxHiU96 .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-tAqCxHiU96 .nav-item .dropdown-menu {
  background-color: #ffffff !important;
}
.cid-tAqCxHiU96 .nav-item .dropdown-menu:hover {
  background-color: #ffffff !important;
}
.cid-tAqCxHiU96 .nav-item .dropdown-menu .dropdown-item {
  color: #232323 !important;
  background-color: transparent !important;
}
.cid-tAqCxHiU96 .nav-item .dropdown-menu .dropdown-item:hover {
  color: #ae5eff !important;
}
@media (max-width: 991px) {
  .cid-tAqCxHiU96 .navbar {
    justify-content: flex-start !important;
  }
  .cid-tAqCxHiU96 .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-tAqCxHiU96 .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-tAqCxHiU96 .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-tAqCxHiU96 .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-tAqCxHiU96 .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .cid-tAqCxHiU96 .navbar-collapse .nav-item .nav-link {
    padding: 14px 0 !important;
    justify-content: flex-start;
  }
}
.cid-tAqCxJftv6 {
  background-image: url("../../../assets/images/stair-tread-nosing-2000x1254.jpg");
}
.cid-tAqCxJftv6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAqCxJftv6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAqCxJftv6 .row {
  justify-content: left;
}
.cid-tAqCxJftv6 .mbr-section-title {
  color: #FFDD65;
}
.cid-tAqCxJftv6 .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-tAqCxJftv6 .btn-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 96px;
}
@media (max-width: 991px) {
  .cid-tAqCxJftv6 .btn-container {
    padding-top: 50px;
    flex-direction: column;
    align-items: center;
  }
}
.cid-tAqCxJftv6 .custom-mbr-section-btn {
  padding-bottom: 0.42rem;
}
@media (max-width: 991px) {
  .cid-tAqCxJftv6 .custom-mbr-section-btn {
    padding-bottom: 0;
  }
}
.cid-tAqCxJftv6 .custom-section-btn {
  height: 100%;
}
.cid-tAqCxJftv6 .custom-section-btn .btn {
  height: 100%;
}
.cid-tAqCxJftv6 .text-container {
  max-width: 384px;
  margin-left: 40px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tAqCxJftv6 .text-container {
    margin: 26px auto 0;
  }
}
.cid-tAqCxJftv6 .mbr-text {
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .cid-tAqCxJftv6 .mbr-text {
    text-align: center !important;
  }
}
.cid-tAqCxJftv6 .text-item-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-top: 26px;
}
@media (max-width: 991px) {
  .cid-tAqCxJftv6 .text-item-container {
    flex-wrap: wrap;
  }
}
.cid-tAqCxJftv6 .text-item {
  display: flex;
  align-items: center;
  max-width: 48%;
}
@media (max-width: 991px) {
  .cid-tAqCxJftv6 .text-item {
    max-width: 100%;
    width: 100%;
    justify-content: center;
    margin-bottom: 6px;
  }
}
.cid-tAqCxJftv6 .icon-text {
  color: #ffffff;
  opacity: 0.6;
}
.cid-tAqCxJftv6 .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.cid-tAqCxJftv6 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 24px;
  color: #ae5eff;
}
.cid-tAqCxLaoHG {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #212132;
}
.cid-tAqCxLaoHG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAqCxLaoHG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAqCxLaoHG .container {
  max-width: 1600px;
}
.cid-tAqCxLaoHG .row {
  justify-content: center;
}
.cid-tAqCxLaoHG .content-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  flex-wrap: wrap;
}
.cid-tAqCxLaoHG .title-container {
  width: 100%;
}
.cid-tAqCxLaoHG .mbr-section-title {
  color: #FFDD65;
  width: 100%;
}
.cid-tAqCxLaoHG .colored-text {
  line-height: inherit;
  color: inherit;
  color: #ae5eff;
}
.cid-tAqCxLaoHG .mbr-section-subtitle {
  color: #FFDD65;
  margin-top: 1.5rem;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tAqCxLaoHG .mbr-section-subtitle {
    margin-top: 1rem;
  }
}
.cid-tAqCxLaoHG .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-tAqCxLaoHG .btn-container {
    margin-top: 50px;
    flex-wrap: wrap;
    gap: 0;
  }
}
.cid-tAqCxLaoHG .text-container {
  max-width: 400px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tAqCxLaoHG .text-container {
    margin: 24px auto 0;
  }
}
.cid-tAqCxLaoHG .mbr-text {
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .cid-tAqCxLaoHG .mbr-text {
    text-align: center !important;
  }
}
.cid-tAqCxLaoHG .text-item-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-top: 26px;
}
@media (max-width: 991px) {
  .cid-tAqCxLaoHG .text-item-container {
    flex-wrap: wrap;
  }
}
.cid-tAqCxLaoHG .text-item {
  display: flex;
  align-items: center;
  max-width: 48%;
}
@media (max-width: 991px) {
  .cid-tAqCxLaoHG .text-item {
    max-width: 100%;
    width: 100%;
    justify-content: center;
    margin-bottom: 6px;
  }
}
.cid-tAqCxLaoHG .icon-text {
  color: #AE5EFF;
}
.cid-tAqCxLaoHG .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.cid-tAqCxLaoHG .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 24px;
  color: #ae5eff;
}
.cid-tAqCxLaoHG .form-container {
  max-width: 535px;
  margin-right: auto;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .cid-tAqCxLaoHG .form-container {
    max-width: 100%;
    width: 100%;
  }
}
.cid-tAqCxLaoHG form {
  width: 100%;
}
.cid-tAqCxLaoHG form .dragArea.row {
  justify-content: flex-start;
  width: auto !important;
}
.cid-tAqCxLaoHG form p {
  color: #ffffff;
}
.cid-tAqCxLaoHG form .mbr-section-btn {
  width: max-content;
  max-width: 35%;
}
@media (max-width: 991px) {
  .cid-tAqCxLaoHG form .mbr-section-btn {
    max-width: 100%;
    width: 100%;
  }
}
.cid-tAqCxLaoHG 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-tAqCxLaoHG 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-tAqCxLaoHG form .form-group {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  flex-grow: 1;
}
.cid-tAqCxLaoHG form .group-container {
  position: relative;
  width: 100%;
  padding: 0;
  margin-top: 0.42rem;
}
.cid-tAqCxLaoHG 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-tAqCxLaoHG 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-tAqCxLaoHG 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-tAqCxLaoHG form .group-border {
    flex-wrap: wrap;
  }
}
.cid-tAqCxLaoHG 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-tAqCxLaoHG 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-tAqCxLaoHG form .form-control::-webkit-input-placeholder {
  color: #939292;
}
.cid-tAqCxLaoHG form .form-control::-moz-placeholder {
  color: #939292;
}
.cid-tAqCxLaoHG form .form-control:-moz-placeholder {
  color: #939292;
}
.cid-tAqCxLaoHG form .form-control:-ms-input-placeholder {
  color: #939292;
}
.cid-tAqCxLaoHG form .form-control:hover {
  outline: none !important;
}
.cid-tAqCxLaoHG form select {
  color: #939292 !important;
}
.cid-tAqCxLaoHG form textarea {
  height: 200px;
}
.cid-tAqCxLaoHG form input:active,
.cid-tAqCxLaoHG form textarea:active,
.cid-tAqCxLaoHG form input:focus,
.cid-tAqCxLaoHG form textarea:focus {
  background-color: #FFFFFF !important;
}
.cid-tAqCxLaoHG form input:active::-webkit-input-placeholder,
.cid-tAqCxLaoHG form textarea:active::-webkit-input-placeholder,
.cid-tAqCxLaoHG form input:focus::-webkit-input-placeholder,
.cid-tAqCxLaoHG form textarea:focus::-webkit-input-placeholder {
  color: #939292;
}
.cid-tAqCxLaoHG form input:active::-moz-placeholder,
.cid-tAqCxLaoHG form textarea:active::-moz-placeholder,
.cid-tAqCxLaoHG form input:focus::-moz-placeholder,
.cid-tAqCxLaoHG form textarea:focus::-moz-placeholder {
  color: #939292;
}
.cid-tAqCxLaoHG form input:active:-moz-placeholder,
.cid-tAqCxLaoHG form textarea:active:-moz-placeholder,
.cid-tAqCxLaoHG form input:focus:-moz-placeholder,
.cid-tAqCxLaoHG form textarea:focus:-moz-placeholder {
  color: #939292;
}
.cid-tAqCxLaoHG form input:active:-ms-input-placeholder,
.cid-tAqCxLaoHG form textarea:active:-ms-input-placeholder,
.cid-tAqCxLaoHG form input:focus:-ms-input-placeholder,
.cid-tAqCxLaoHG form textarea:focus:-ms-input-placeholder {
  color: #939292;
}
.cid-tAqCxLaoHG form .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.cid-tAqCxLaoHG form .row [class*=col] {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-tAqCxLaoHG form label {
  width: 100%;
  color: #ffffff;
  margin-bottom: 10px;
}
.cid-tAqCxLaoHG 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-tAqCxLaoHG form .form-check-input:focus,
.cid-tAqCxLaoHG form .form-check-input:hover {
  background-color: transparent !important;
  border-color: #ffffff !important;
}
.cid-tAqCxLaoHG form .form-check-input:checked {
  border-color: #ffffff !important;
}
.cid-tAqCxMrdQi {
  background-color: #212132;
}
.cid-tAqCxMrdQi .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAqCxMrdQi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAqCxMrdQi .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-tAqCxMrdQi .container {
  max-width: 1280px;
}
.cid-tAqCxMrdQi .row {
  justify-content: center;
}
.cid-tAqCxMrdQi .mbr-section-title {
  color: #212132;
}
.cid-tAqCxMrdQi .mbr-section-subtitle {
  color: #212132;
  margin-top: 1rem;
  text-align: left;
}
.cid-tAqCxNBwYE {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffdd65;
}
.cid-tAqCxNBwYE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAqCxNBwYE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAqCxNBwYE .container {
  max-width: 1280px;
}
.cid-tAqCxNBwYE .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-tAqCxNBwYE .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .cid-tAqCxNBwYE .content-wrapper {
    padding: 40px 6vw;
  }
}
.cid-tAqCxNBwYE .text-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 720px;
  margin-right: auto;
  margin-bottom: 28px;
}
@media (max-width: 991px) {
  .cid-tAqCxNBwYE .text-wrapper {
    margin-bottom: 12px;
  }
}
.cid-tAqCxNBwYE .mbr-section-title {
  color: #FFDD65;
  margin-bottom: 100px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tAqCxNBwYE .mbr-section-title {
    margin-bottom: 60px;
  }
}
.cid-tAqCxNBwYE .mbr-section-subtitle {
  color: #ffffff;
  width: 100%;
}
.cid-tAqCxNBwYE .card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
}
.cid-tAqCxNBwYE .card-item {
  width: max-content;
  max-width: 100%;
  margin-right: 12px;
  min-width: 160px;
  margin-bottom: 12px;
  margin-top: 12px;
}
.cid-tAqCxNBwYE .card-box {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: max-content;
  height: 100%;
  padding-right: 12px;
}
.cid-tAqCxNBwYE .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  width: max-content;
  margin-right: auto;
}
@media (max-width: 991px) {
  .cid-tAqCxNBwYE .iconfont-wrapper {
    margin-bottom: 24px;
  }
}
.cid-tAqCxNBwYE .iconfont-wrapper .mbr-iconfont {
  color: #ffdd65;
  font-size: 80px;
}
.cid-tAqCxNBwYE .card-title {
  color: #ffffff;
}
.cid-tAqGrfPe6i {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-tAqGrfPe6i .google-map {
  height: 30rem;
  position: relative;
}
.cid-tAqGrfPe6i .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tAqGrfPe6i .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tAqGrfPe6i .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tAqGrfPe6i .google-map[data-state='loading'] [data-state-details] {
  display: none;
}
.cid-tAqGrfPe6i .mbr-section-title {
  color: #2e6b75;
}
.cid-tAqGrfPe6i .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAqGrfPe6i .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAqCxOWqXG {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-tAqCxOWqXG .container {
  max-width: 1472px;
}
.cid-tAqCxOWqXG .mbr-text {
  color: #FFFFFF;
}
.cid-tAqBQUMrt4 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 96px;
}
.cid-tAqBQUMrt4 nav.navbar {
  position: fixed;
}
.cid-tAqBQUMrt4 .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-tAqBQUMrt4 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tAqBQUMrt4 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tAqBQUMrt4 .dropdown-item:hover,
.cid-tAqBQUMrt4 .dropdown-item:focus {
  background: #ae5eff !important;
  color: white !important;
}
.cid-tAqBQUMrt4 .dropdown-item:hover span {
  color: white;
}
.cid-tAqBQUMrt4 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tAqBQUMrt4 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tAqBQUMrt4 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tAqBQUMrt4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tAqBQUMrt4 .nav-link {
  position: relative;
}
.cid-tAqBQUMrt4 .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-tAqBQUMrt4 .container {
    flex-wrap: nowrap;
  }
}
.cid-tAqBQUMrt4 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
}
.cid-tAqBQUMrt4 .iconfont-wrapper:hover {
  color: #ffdd65 !important;
}
.cid-tAqBQUMrt4 .dropdown-menu,
.cid-tAqBQUMrt4 .navbar.opened {
  background: #232323 !important;
}
.cid-tAqBQUMrt4 .nav-item:focus,
.cid-tAqBQUMrt4 .nav-link:focus {
  outline: none;
}
.cid-tAqBQUMrt4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tAqBQUMrt4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tAqBQUMrt4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tAqBQUMrt4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tAqBQUMrt4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tAqBQUMrt4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tAqBQUMrt4 .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: #232323;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-tAqBQUMrt4 .navbar.opened {
  transition: all 0.3s;
}
.cid-tAqBQUMrt4 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tAqBQUMrt4 .navbar .navbar-logo img {
  width: auto;
}
.cid-tAqBQUMrt4 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tAqBQUMrt4 .navbar.collapsed {
  justify-content: center;
}
.cid-tAqBQUMrt4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tAqBQUMrt4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tAqBQUMrt4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tAqBQUMrt4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tAqBQUMrt4 .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-tAqBQUMrt4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tAqBQUMrt4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tAqBQUMrt4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tAqBQUMrt4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tAqBQUMrt4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tAqBQUMrt4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tAqBQUMrt4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tAqBQUMrt4 .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-tAqBQUMrt4 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tAqBQUMrt4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tAqBQUMrt4 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tAqBQUMrt4 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 60%;
  }
  .cid-tAqBQUMrt4 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tAqBQUMrt4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tAqBQUMrt4 .navbar.navbar-short {
  min-height: 96px;
}
.cid-tAqBQUMrt4 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tAqBQUMrt4 .navbar.navbar-short .navbar-brand {
  min-height: 96px;
  padding: 0;
}
.cid-tAqBQUMrt4 .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-tAqBQUMrt4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tAqBQUMrt4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tAqBQUMrt4 .navbar-brand:hover {
  transform: scale(1.1);
}
.cid-tAqBQUMrt4 .dropdown-item.active,
.cid-tAqBQUMrt4 .dropdown-item:active {
  background-color: transparent;
}
.cid-tAqBQUMrt4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tAqBQUMrt4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tAqBQUMrt4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tAqBQUMrt4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tAqBQUMrt4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tAqBQUMrt4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tAqBQUMrt4 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tAqBQUMrt4 .navbar-buttons {
  text-align: center;
}
.cid-tAqBQUMrt4 .navbar-buttons .btn {
  padding: 9px 18px;
  min-width: 100px;
  min-height: 52px;
  border-radius: 0.3rem;
}
.cid-tAqBQUMrt4 .navbar-buttons .btn:hover {
  color: #ffdd65 !important;
}
@media (max-width: 575px) {
  .cid-tAqBQUMrt4 .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-tAqBQUMrt4 .navbar-buttons .btn-black {
  border: solid 2px #ae5eff !important;
  box-shadow: 3px 3px 0 0 #ae5eff !important;
}
.cid-tAqBQUMrt4 .navbar-buttons .btn-black:hover {
  border: solid 2px #ae5eff !important;
  color: #ffdd65 !important;
  box-shadow: 0 0 0 0 #ae5eff !important;
}
.cid-tAqBQUMrt4 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: #232323 !important;
  border: solid 2px #ae5eff !important;
  box-shadow: 3px 3px 0 0 #ae5eff !important;
}
.cid-tAqBQUMrt4 button.navbar-toggler:hover {
  border: solid 2px #ae5eff !important;
  color: #ffdd65 !important;
  box-shadow: 0 0 0 0 #ae5eff !important;
}
.cid-tAqBQUMrt4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tAqBQUMrt4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 9px;
  left: 8px;
  transition: all 0.2s;
}
.cid-tAqBQUMrt4 button.navbar-toggler .hamburger span:nth-child(2) {
  left: 8px;
  top: 17px;
  transition: all 0.15s;
}
.cid-tAqBQUMrt4 button.navbar-toggler .hamburger span:nth-child(3) {
  left: 8px;
  top: 17px;
  transition: all 0.15s;
}
.cid-tAqBQUMrt4 button.navbar-toggler .hamburger span:nth-child(4) {
  left: 8px;
  top: 25px;
  transition: all 0.2s;
}
.cid-tAqBQUMrt4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tAqBQUMrt4 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tAqBQUMrt4 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tAqBQUMrt4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tAqBQUMrt4 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tAqBQUMrt4 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tAqBQUMrt4 .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-tAqBQUMrt4 .navbar {
    height: 70px;
  }
  .cid-tAqBQUMrt4 .navbar.opened {
    height: auto;
  }
  .cid-tAqBQUMrt4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tAqBQUMrt4 .navbar-nav {
  margin: 0 auto;
}
.cid-tAqBQUMrt4 .nav-item {
  padding: 0;
  margin: 2px;
}
.cid-tAqBQUMrt4 .nav-item .nav-link {
  padding: 6px 32px !important;
  margin: 0 !important;
}
.cid-tAqBQUMrt4 .nav-item .nav-link::after {
  color: #ffdd65 !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-tAqBQUMrt4 .nav-item .nav-link:hover {
  color: #ffdd65 !important;
}
.cid-tAqBQUMrt4 .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-tAqBQUMrt4 .nav-item .dropdown-menu {
  background-color: #ffffff !important;
}
.cid-tAqBQUMrt4 .nav-item .dropdown-menu:hover {
  background-color: #ffffff !important;
}
.cid-tAqBQUMrt4 .nav-item .dropdown-menu .dropdown-item {
  color: #232323 !important;
  background-color: transparent !important;
}
.cid-tAqBQUMrt4 .nav-item .dropdown-menu .dropdown-item:hover {
  color: #ae5eff !important;
}
@media (max-width: 991px) {
  .cid-tAqBQUMrt4 .navbar {
    justify-content: flex-start !important;
  }
  .cid-tAqBQUMrt4 .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-tAqBQUMrt4 .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-tAqBQUMrt4 .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-tAqBQUMrt4 .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-tAqBQUMrt4 .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .cid-tAqBQUMrt4 .navbar-collapse .nav-item .nav-link {
    padding: 14px 0 !important;
    justify-content: flex-start;
  }
}
.cid-tAqBQWG156 {
  background-image: url("../../../assets/images/istockphoto-89222845-612x408.jpg");
}
.cid-tAqBQWG156 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAqBQWG156 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAqBQWG156 .row {
  justify-content: left;
}
.cid-tAqBQWG156 .mbr-section-title {
  color: #FFDD65;
}
.cid-tAqBQWG156 .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-tAqBQWG156 .btn-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 96px;
}
@media (max-width: 991px) {
  .cid-tAqBQWG156 .btn-container {
    padding-top: 50px;
    flex-direction: column;
    align-items: center;
  }
}
.cid-tAqBQWG156 .custom-mbr-section-btn {
  padding-bottom: 0.42rem;
}
@media (max-width: 991px) {
  .cid-tAqBQWG156 .custom-mbr-section-btn {
    padding-bottom: 0;
  }
}
.cid-tAqBQWG156 .custom-section-btn {
  height: 100%;
}
.cid-tAqBQWG156 .custom-section-btn .btn {
  height: 100%;
}
.cid-tAqBQWG156 .text-container {
  max-width: 384px;
  margin-left: 40px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tAqBQWG156 .text-container {
    margin: 26px auto 0;
  }
}
.cid-tAqBQWG156 .mbr-text {
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .cid-tAqBQWG156 .mbr-text {
    text-align: center !important;
  }
}
.cid-tAqBQWG156 .text-item-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-top: 26px;
}
@media (max-width: 991px) {
  .cid-tAqBQWG156 .text-item-container {
    flex-wrap: wrap;
  }
}
.cid-tAqBQWG156 .text-item {
  display: flex;
  align-items: center;
  max-width: 48%;
}
@media (max-width: 991px) {
  .cid-tAqBQWG156 .text-item {
    max-width: 100%;
    width: 100%;
    justify-content: center;
    margin-bottom: 6px;
  }
}
.cid-tAqBQWG156 .icon-text {
  color: #ffffff;
  opacity: 0.6;
}
.cid-tAqBQWG156 .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.cid-tAqBQWG156 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 24px;
  color: #ae5eff;
}
.cid-tAqBQYBA2V {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #212132;
}
.cid-tAqBQYBA2V .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAqBQYBA2V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAqBQYBA2V .container {
  max-width: 1600px;
}
.cid-tAqBQYBA2V .row {
  justify-content: center;
}
.cid-tAqBQYBA2V .content-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  flex-wrap: wrap;
}
.cid-tAqBQYBA2V .title-container {
  width: 100%;
}
.cid-tAqBQYBA2V .mbr-section-title {
  color: #FFDD65;
  width: 100%;
}
.cid-tAqBQYBA2V .colored-text {
  line-height: inherit;
  color: inherit;
  color: #ae5eff;
}
.cid-tAqBQYBA2V .mbr-section-subtitle {
  color: #FFDD65;
  margin-top: 1.5rem;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tAqBQYBA2V .mbr-section-subtitle {
    margin-top: 1rem;
  }
}
.cid-tAqBQYBA2V .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-tAqBQYBA2V .btn-container {
    margin-top: 50px;
    flex-wrap: wrap;
    gap: 0;
  }
}
.cid-tAqBQYBA2V .text-container {
  max-width: 400px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tAqBQYBA2V .text-container {
    margin: 24px auto 0;
  }
}
.cid-tAqBQYBA2V .mbr-text {
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .cid-tAqBQYBA2V .mbr-text {
    text-align: center !important;
  }
}
.cid-tAqBQYBA2V .text-item-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-top: 26px;
}
@media (max-width: 991px) {
  .cid-tAqBQYBA2V .text-item-container {
    flex-wrap: wrap;
  }
}
.cid-tAqBQYBA2V .text-item {
  display: flex;
  align-items: center;
  max-width: 48%;
}
@media (max-width: 991px) {
  .cid-tAqBQYBA2V .text-item {
    max-width: 100%;
    width: 100%;
    justify-content: center;
    margin-bottom: 6px;
  }
}
.cid-tAqBQYBA2V .icon-text {
  color: #AE5EFF;
}
.cid-tAqBQYBA2V .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.cid-tAqBQYBA2V .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 24px;
  color: #ae5eff;
}
.cid-tAqBQYBA2V .form-container {
  max-width: 535px;
  margin-right: auto;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .cid-tAqBQYBA2V .form-container {
    max-width: 100%;
    width: 100%;
  }
}
.cid-tAqBQYBA2V form {
  width: 100%;
}
.cid-tAqBQYBA2V form .dragArea.row {
  justify-content: flex-start;
  width: auto !important;
}
.cid-tAqBQYBA2V form p {
  color: #ffffff;
}
.cid-tAqBQYBA2V form .mbr-section-btn {
  width: max-content;
  max-width: 35%;
}
@media (max-width: 991px) {
  .cid-tAqBQYBA2V form .mbr-section-btn {
    max-width: 100%;
    width: 100%;
  }
}
.cid-tAqBQYBA2V 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-tAqBQYBA2V 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-tAqBQYBA2V form .form-group {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  flex-grow: 1;
}
.cid-tAqBQYBA2V form .group-container {
  position: relative;
  width: 100%;
  padding: 0;
  margin-top: 0.42rem;
}
.cid-tAqBQYBA2V 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-tAqBQYBA2V 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-tAqBQYBA2V 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-tAqBQYBA2V form .group-border {
    flex-wrap: wrap;
  }
}
.cid-tAqBQYBA2V 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-tAqBQYBA2V 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-tAqBQYBA2V form .form-control::-webkit-input-placeholder {
  color: #939292;
}
.cid-tAqBQYBA2V form .form-control::-moz-placeholder {
  color: #939292;
}
.cid-tAqBQYBA2V form .form-control:-moz-placeholder {
  color: #939292;
}
.cid-tAqBQYBA2V form .form-control:-ms-input-placeholder {
  color: #939292;
}
.cid-tAqBQYBA2V form .form-control:hover {
  outline: none !important;
}
.cid-tAqBQYBA2V form select {
  color: #939292 !important;
}
.cid-tAqBQYBA2V form textarea {
  height: 200px;
}
.cid-tAqBQYBA2V form input:active,
.cid-tAqBQYBA2V form textarea:active,
.cid-tAqBQYBA2V form input:focus,
.cid-tAqBQYBA2V form textarea:focus {
  background-color: #FFFFFF !important;
}
.cid-tAqBQYBA2V form input:active::-webkit-input-placeholder,
.cid-tAqBQYBA2V form textarea:active::-webkit-input-placeholder,
.cid-tAqBQYBA2V form input:focus::-webkit-input-placeholder,
.cid-tAqBQYBA2V form textarea:focus::-webkit-input-placeholder {
  color: #939292;
}
.cid-tAqBQYBA2V form input:active::-moz-placeholder,
.cid-tAqBQYBA2V form textarea:active::-moz-placeholder,
.cid-tAqBQYBA2V form input:focus::-moz-placeholder,
.cid-tAqBQYBA2V form textarea:focus::-moz-placeholder {
  color: #939292;
}
.cid-tAqBQYBA2V form input:active:-moz-placeholder,
.cid-tAqBQYBA2V form textarea:active:-moz-placeholder,
.cid-tAqBQYBA2V form input:focus:-moz-placeholder,
.cid-tAqBQYBA2V form textarea:focus:-moz-placeholder {
  color: #939292;
}
.cid-tAqBQYBA2V form input:active:-ms-input-placeholder,
.cid-tAqBQYBA2V form textarea:active:-ms-input-placeholder,
.cid-tAqBQYBA2V form input:focus:-ms-input-placeholder,
.cid-tAqBQYBA2V form textarea:focus:-ms-input-placeholder {
  color: #939292;
}
.cid-tAqBQYBA2V form .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.cid-tAqBQYBA2V form .row [class*=col] {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-tAqBQYBA2V form label {
  width: 100%;
  color: #ffffff;
  margin-bottom: 10px;
}
.cid-tAqBQYBA2V 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-tAqBQYBA2V form .form-check-input:focus,
.cid-tAqBQYBA2V form .form-check-input:hover {
  background-color: transparent !important;
  border-color: #ffffff !important;
}
.cid-tAqBQYBA2V form .form-check-input:checked {
  border-color: #ffffff !important;
}
.cid-tAqBQZPpb3 {
  background-color: #212132;
}
.cid-tAqBQZPpb3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAqBQZPpb3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAqBQZPpb3 .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-tAqBQZPpb3 .container {
  max-width: 1280px;
}
.cid-tAqBQZPpb3 .row {
  justify-content: center;
}
.cid-tAqBQZPpb3 .mbr-section-title {
  color: #212132;
}
.cid-tAqBQZPpb3 .mbr-section-subtitle {
  color: #212132;
  margin-top: 1rem;
  text-align: left;
}
.cid-tAqBR0VlJt {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffdd65;
}
.cid-tAqBR0VlJt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAqBR0VlJt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAqBR0VlJt .container {
  max-width: 1280px;
}
.cid-tAqBR0VlJt .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-tAqBR0VlJt .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .cid-tAqBR0VlJt .content-wrapper {
    padding: 40px 6vw;
  }
}
.cid-tAqBR0VlJt .text-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 720px;
  margin-right: auto;
  margin-bottom: 28px;
}
@media (max-width: 991px) {
  .cid-tAqBR0VlJt .text-wrapper {
    margin-bottom: 12px;
  }
}
.cid-tAqBR0VlJt .mbr-section-title {
  color: #FFDD65;
  margin-bottom: 100px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tAqBR0VlJt .mbr-section-title {
    margin-bottom: 60px;
  }
}
.cid-tAqBR0VlJt .mbr-section-subtitle {
  color: #ffffff;
  width: 100%;
}
.cid-tAqBR0VlJt .card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
}
.cid-tAqBR0VlJt .card-item {
  width: max-content;
  max-width: 100%;
  margin-right: 12px;
  min-width: 160px;
  margin-bottom: 12px;
  margin-top: 12px;
}
.cid-tAqBR0VlJt .card-box {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: max-content;
  height: 100%;
  padding-right: 12px;
}
.cid-tAqBR0VlJt .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  width: max-content;
  margin-right: auto;
}
@media (max-width: 991px) {
  .cid-tAqBR0VlJt .iconfont-wrapper {
    margin-bottom: 24px;
  }
}
.cid-tAqBR0VlJt .iconfont-wrapper .mbr-iconfont {
  color: #ffdd65;
  font-size: 80px;
}
.cid-tAqBR0VlJt .card-title {
  color: #ffffff;
}
.cid-tArfTZbBoi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f2f4;
}
.cid-tArfTZbBoi .mbr-fallback-image.disabled {
  display: none;
}
.cid-tArfTZbBoi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tArfTZbBoi .container-fluid {
  padding: 0 22px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-tArfTZbBoi .container-fluid {
    padding: 0 16px;
  }
}
.cid-tArfTZbBoi .container-fluid .row {
  padding: 0;
}
.cid-tArfTZbBoi .container {
  overflow: hidden;
}
.cid-tArfTZbBoi .row {
  justify-content: center;
}
.cid-tArfTZbBoi .title-wrapper {
  margin-bottom: 80px;
}
.cid-tArfTZbBoi .title-wrapper .mbr-section-title {
  padding-top: 22px;
  margin-bottom: 0;
}
.cid-tArfTZbBoi .video-block {
  width: 62%;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .cid-tArfTZbBoi .video-block {
    width: 80%;
  }
}
@media (max-width: 768px) {
  .cid-tArfTZbBoi .video-block {
    width: 100%;
  }
}
.cid-tArfTZbBoi .video-block .video-wrapper .app-video-wrapper img {
  height: 450px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tArfTZbBoi .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-tArfTZbBoi .app-video-wrapper::before {
  color: #495dff;
  text-shadow: none;
}
.cid-tArfTZbBoi .mbr-section-title {
  color: #495DFF;
}
.cid-tAqGxdMIuQ {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-tAqGxdMIuQ .google-map {
  height: 30rem;
  position: relative;
}
.cid-tAqGxdMIuQ .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tAqGxdMIuQ .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tAqGxdMIuQ .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tAqGxdMIuQ .google-map[data-state='loading'] [data-state-details] {
  display: none;
}
.cid-tAqGxdMIuQ .mbr-section-title {
  color: #2e6b75;
}
.cid-tAqGxdMIuQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAqGxdMIuQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAqBR2iM1o {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-tAqBR2iM1o .container {
  max-width: 1472px;
}
.cid-tAqBR2iM1o .mbr-text {
  color: #FFFFFF;
}
.cid-tAqB3LYJLv {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 96px;
}
.cid-tAqB3LYJLv nav.navbar {
  position: fixed;
}
.cid-tAqB3LYJLv .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-tAqB3LYJLv .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tAqB3LYJLv .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tAqB3LYJLv .dropdown-item:hover,
.cid-tAqB3LYJLv .dropdown-item:focus {
  background: #ae5eff !important;
  color: white !important;
}
.cid-tAqB3LYJLv .dropdown-item:hover span {
  color: white;
}
.cid-tAqB3LYJLv .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tAqB3LYJLv .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tAqB3LYJLv .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tAqB3LYJLv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tAqB3LYJLv .nav-link {
  position: relative;
}
.cid-tAqB3LYJLv .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-tAqB3LYJLv .container {
    flex-wrap: nowrap;
  }
}
.cid-tAqB3LYJLv .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
}
.cid-tAqB3LYJLv .iconfont-wrapper:hover {
  color: #ffdd65 !important;
}
.cid-tAqB3LYJLv .dropdown-menu,
.cid-tAqB3LYJLv .navbar.opened {
  background: #232323 !important;
}
.cid-tAqB3LYJLv .nav-item:focus,
.cid-tAqB3LYJLv .nav-link:focus {
  outline: none;
}
.cid-tAqB3LYJLv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tAqB3LYJLv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tAqB3LYJLv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tAqB3LYJLv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tAqB3LYJLv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tAqB3LYJLv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tAqB3LYJLv .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: #232323;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-tAqB3LYJLv .navbar.opened {
  transition: all 0.3s;
}
.cid-tAqB3LYJLv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tAqB3LYJLv .navbar .navbar-logo img {
  width: auto;
}
.cid-tAqB3LYJLv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tAqB3LYJLv .navbar.collapsed {
  justify-content: center;
}
.cid-tAqB3LYJLv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tAqB3LYJLv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tAqB3LYJLv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tAqB3LYJLv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tAqB3LYJLv .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-tAqB3LYJLv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tAqB3LYJLv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tAqB3LYJLv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tAqB3LYJLv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tAqB3LYJLv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tAqB3LYJLv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tAqB3LYJLv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tAqB3LYJLv .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-tAqB3LYJLv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tAqB3LYJLv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tAqB3LYJLv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tAqB3LYJLv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 60%;
  }
  .cid-tAqB3LYJLv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tAqB3LYJLv .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tAqB3LYJLv .navbar.navbar-short {
  min-height: 96px;
}
.cid-tAqB3LYJLv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tAqB3LYJLv .navbar.navbar-short .navbar-brand {
  min-height: 96px;
  padding: 0;
}
.cid-tAqB3LYJLv .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-tAqB3LYJLv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tAqB3LYJLv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tAqB3LYJLv .navbar-brand:hover {
  transform: scale(1.1);
}
.cid-tAqB3LYJLv .dropdown-item.active,
.cid-tAqB3LYJLv .dropdown-item:active {
  background-color: transparent;
}
.cid-tAqB3LYJLv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tAqB3LYJLv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tAqB3LYJLv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tAqB3LYJLv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tAqB3LYJLv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tAqB3LYJLv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tAqB3LYJLv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tAqB3LYJLv .navbar-buttons {
  text-align: center;
}
.cid-tAqB3LYJLv .navbar-buttons .btn {
  padding: 9px 18px;
  min-width: 100px;
  min-height: 52px;
  border-radius: 0.3rem;
}
.cid-tAqB3LYJLv .navbar-buttons .btn:hover {
  color: #ffdd65 !important;
}
@media (max-width: 575px) {
  .cid-tAqB3LYJLv .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-tAqB3LYJLv .navbar-buttons .btn-black {
  border: solid 2px #ae5eff !important;
  box-shadow: 3px 3px 0 0 #ae5eff !important;
}
.cid-tAqB3LYJLv .navbar-buttons .btn-black:hover {
  border: solid 2px #ae5eff !important;
  color: #ffdd65 !important;
  box-shadow: 0 0 0 0 #ae5eff !important;
}
.cid-tAqB3LYJLv 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: #232323 !important;
  border: solid 2px #ae5eff !important;
  box-shadow: 3px 3px 0 0 #ae5eff !important;
}
.cid-tAqB3LYJLv button.navbar-toggler:hover {
  border: solid 2px #ae5eff !important;
  color: #ffdd65 !important;
  box-shadow: 0 0 0 0 #ae5eff !important;
}
.cid-tAqB3LYJLv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tAqB3LYJLv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 9px;
  left: 8px;
  transition: all 0.2s;
}
.cid-tAqB3LYJLv button.navbar-toggler .hamburger span:nth-child(2) {
  left: 8px;
  top: 17px;
  transition: all 0.15s;
}
.cid-tAqB3LYJLv button.navbar-toggler .hamburger span:nth-child(3) {
  left: 8px;
  top: 17px;
  transition: all 0.15s;
}
.cid-tAqB3LYJLv button.navbar-toggler .hamburger span:nth-child(4) {
  left: 8px;
  top: 25px;
  transition: all 0.2s;
}
.cid-tAqB3LYJLv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tAqB3LYJLv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tAqB3LYJLv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tAqB3LYJLv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tAqB3LYJLv .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tAqB3LYJLv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tAqB3LYJLv .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-tAqB3LYJLv .navbar {
    height: 70px;
  }
  .cid-tAqB3LYJLv .navbar.opened {
    height: auto;
  }
  .cid-tAqB3LYJLv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tAqB3LYJLv .navbar-nav {
  margin: 0 auto;
}
.cid-tAqB3LYJLv .nav-item {
  padding: 0;
  margin: 2px;
}
.cid-tAqB3LYJLv .nav-item .nav-link {
  padding: 6px 32px !important;
  margin: 0 !important;
}
.cid-tAqB3LYJLv .nav-item .nav-link::after {
  color: #ffdd65 !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-tAqB3LYJLv .nav-item .nav-link:hover {
  color: #ffdd65 !important;
}
.cid-tAqB3LYJLv .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-tAqB3LYJLv .nav-item .dropdown-menu {
  background-color: #ffffff !important;
}
.cid-tAqB3LYJLv .nav-item .dropdown-menu:hover {
  background-color: #ffffff !important;
}
.cid-tAqB3LYJLv .nav-item .dropdown-menu .dropdown-item {
  color: #232323 !important;
  background-color: transparent !important;
}
.cid-tAqB3LYJLv .nav-item .dropdown-menu .dropdown-item:hover {
  color: #ae5eff !important;
}
@media (max-width: 991px) {
  .cid-tAqB3LYJLv .navbar {
    justify-content: flex-start !important;
  }
  .cid-tAqB3LYJLv .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-tAqB3LYJLv .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-tAqB3LYJLv .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-tAqB3LYJLv .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-tAqB3LYJLv .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .cid-tAqB3LYJLv .navbar-collapse .nav-item .nav-link {
    padding: 14px 0 !important;
    justify-content: flex-start;
  }
}
.cid-tAqB3NIRDF {
  background-image: url("../../../assets/images/81tyv0ebsgl.-ac-uf8941000-ql80-1-894x903.jpg");
}
.cid-tAqB3NIRDF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAqB3NIRDF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAqB3NIRDF .row {
  justify-content: left;
}
.cid-tAqB3NIRDF .mbr-section-title {
  color: #FFDD65;
}
.cid-tAqB3NIRDF .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-tAqB3NIRDF .btn-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 96px;
}
@media (max-width: 991px) {
  .cid-tAqB3NIRDF .btn-container {
    padding-top: 50px;
    flex-direction: column;
    align-items: center;
  }
}
.cid-tAqB3NIRDF .custom-mbr-section-btn {
  padding-bottom: 0.42rem;
}
@media (max-width: 991px) {
  .cid-tAqB3NIRDF .custom-mbr-section-btn {
    padding-bottom: 0;
  }
}
.cid-tAqB3NIRDF .custom-section-btn {
  height: 100%;
}
.cid-tAqB3NIRDF .custom-section-btn .btn {
  height: 100%;
}
.cid-tAqB3NIRDF .text-container {
  max-width: 384px;
  margin-left: 40px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tAqB3NIRDF .text-container {
    margin: 26px auto 0;
  }
}
.cid-tAqB3NIRDF .mbr-text {
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .cid-tAqB3NIRDF .mbr-text {
    text-align: center !important;
  }
}
.cid-tAqB3NIRDF .text-item-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-top: 26px;
}
@media (max-width: 991px) {
  .cid-tAqB3NIRDF .text-item-container {
    flex-wrap: wrap;
  }
}
.cid-tAqB3NIRDF .text-item {
  display: flex;
  align-items: center;
  max-width: 48%;
}
@media (max-width: 991px) {
  .cid-tAqB3NIRDF .text-item {
    max-width: 100%;
    width: 100%;
    justify-content: center;
    margin-bottom: 6px;
  }
}
.cid-tAqB3NIRDF .icon-text {
  color: #ffffff;
  opacity: 0.6;
}
.cid-tAqB3NIRDF .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.cid-tAqB3NIRDF .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 24px;
  color: #ae5eff;
}
.cid-tAqB3P8GUN {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #212132;
}
.cid-tAqB3P8GUN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAqB3P8GUN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAqB3P8GUN .container {
  max-width: 1600px;
}
.cid-tAqB3P8GUN .row {
  justify-content: center;
}
.cid-tAqB3P8GUN .content-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  flex-wrap: wrap;
}
.cid-tAqB3P8GUN .title-container {
  width: 100%;
}
.cid-tAqB3P8GUN .mbr-section-title {
  color: #FFDD65;
  width: 100%;
}
.cid-tAqB3P8GUN .colored-text {
  line-height: inherit;
  color: inherit;
  color: #ae5eff;
}
.cid-tAqB3P8GUN .mbr-section-subtitle {
  color: #FFDD65;
  margin-top: 1.5rem;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tAqB3P8GUN .mbr-section-subtitle {
    margin-top: 1rem;
  }
}
.cid-tAqB3P8GUN .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-tAqB3P8GUN .btn-container {
    margin-top: 50px;
    flex-wrap: wrap;
    gap: 0;
  }
}
.cid-tAqB3P8GUN .text-container {
  max-width: 400px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tAqB3P8GUN .text-container {
    margin: 24px auto 0;
  }
}
.cid-tAqB3P8GUN .mbr-text {
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .cid-tAqB3P8GUN .mbr-text {
    text-align: center !important;
  }
}
.cid-tAqB3P8GUN .text-item-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-top: 26px;
}
@media (max-width: 991px) {
  .cid-tAqB3P8GUN .text-item-container {
    flex-wrap: wrap;
  }
}
.cid-tAqB3P8GUN .text-item {
  display: flex;
  align-items: center;
  max-width: 48%;
}
@media (max-width: 991px) {
  .cid-tAqB3P8GUN .text-item {
    max-width: 100%;
    width: 100%;
    justify-content: center;
    margin-bottom: 6px;
  }
}
.cid-tAqB3P8GUN .icon-text {
  color: #AE5EFF;
}
.cid-tAqB3P8GUN .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.cid-tAqB3P8GUN .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 24px;
  color: #ae5eff;
}
.cid-tAqB3P8GUN .form-container {
  max-width: 535px;
  margin-right: auto;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .cid-tAqB3P8GUN .form-container {
    max-width: 100%;
    width: 100%;
  }
}
.cid-tAqB3P8GUN form {
  width: 100%;
}
.cid-tAqB3P8GUN form .dragArea.row {
  justify-content: flex-start;
  width: auto !important;
}
.cid-tAqB3P8GUN form p {
  color: #ffffff;
}
.cid-tAqB3P8GUN form .mbr-section-btn {
  width: max-content;
  max-width: 35%;
}
@media (max-width: 991px) {
  .cid-tAqB3P8GUN form .mbr-section-btn {
    max-width: 100%;
    width: 100%;
  }
}
.cid-tAqB3P8GUN 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-tAqB3P8GUN 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-tAqB3P8GUN form .form-group {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  flex-grow: 1;
}
.cid-tAqB3P8GUN form .group-container {
  position: relative;
  width: 100%;
  padding: 0;
  margin-top: 0.42rem;
}
.cid-tAqB3P8GUN 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-tAqB3P8GUN 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-tAqB3P8GUN 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-tAqB3P8GUN form .group-border {
    flex-wrap: wrap;
  }
}
.cid-tAqB3P8GUN 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-tAqB3P8GUN 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-tAqB3P8GUN form .form-control::-webkit-input-placeholder {
  color: #939292;
}
.cid-tAqB3P8GUN form .form-control::-moz-placeholder {
  color: #939292;
}
.cid-tAqB3P8GUN form .form-control:-moz-placeholder {
  color: #939292;
}
.cid-tAqB3P8GUN form .form-control:-ms-input-placeholder {
  color: #939292;
}
.cid-tAqB3P8GUN form .form-control:hover {
  outline: none !important;
}
.cid-tAqB3P8GUN form select {
  color: #939292 !important;
}
.cid-tAqB3P8GUN form textarea {
  height: 200px;
}
.cid-tAqB3P8GUN form input:active,
.cid-tAqB3P8GUN form textarea:active,
.cid-tAqB3P8GUN form input:focus,
.cid-tAqB3P8GUN form textarea:focus {
  background-color: #FFFFFF !important;
}
.cid-tAqB3P8GUN form input:active::-webkit-input-placeholder,
.cid-tAqB3P8GUN form textarea:active::-webkit-input-placeholder,
.cid-tAqB3P8GUN form input:focus::-webkit-input-placeholder,
.cid-tAqB3P8GUN form textarea:focus::-webkit-input-placeholder {
  color: #939292;
}
.cid-tAqB3P8GUN form input:active::-moz-placeholder,
.cid-tAqB3P8GUN form textarea:active::-moz-placeholder,
.cid-tAqB3P8GUN form input:focus::-moz-placeholder,
.cid-tAqB3P8GUN form textarea:focus::-moz-placeholder {
  color: #939292;
}
.cid-tAqB3P8GUN form input:active:-moz-placeholder,
.cid-tAqB3P8GUN form textarea:active:-moz-placeholder,
.cid-tAqB3P8GUN form input:focus:-moz-placeholder,
.cid-tAqB3P8GUN form textarea:focus:-moz-placeholder {
  color: #939292;
}
.cid-tAqB3P8GUN form input:active:-ms-input-placeholder,
.cid-tAqB3P8GUN form textarea:active:-ms-input-placeholder,
.cid-tAqB3P8GUN form input:focus:-ms-input-placeholder,
.cid-tAqB3P8GUN form textarea:focus:-ms-input-placeholder {
  color: #939292;
}
.cid-tAqB3P8GUN form .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.cid-tAqB3P8GUN form .row [class*=col] {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-tAqB3P8GUN form label {
  width: 100%;
  color: #ffffff;
  margin-bottom: 10px;
}
.cid-tAqB3P8GUN 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-tAqB3P8GUN form .form-check-input:focus,
.cid-tAqB3P8GUN form .form-check-input:hover {
  background-color: transparent !important;
  border-color: #ffffff !important;
}
.cid-tAqB3P8GUN form .form-check-input:checked {
  border-color: #ffffff !important;
}
.cid-tAqB3QuSP3 {
  background-color: #212132;
}
.cid-tAqB3QuSP3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAqB3QuSP3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAqB3QuSP3 .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-tAqB3QuSP3 .container {
  max-width: 1280px;
}
.cid-tAqB3QuSP3 .row {
  justify-content: center;
}
.cid-tAqB3QuSP3 .mbr-section-title {
  color: #212132;
}
.cid-tAqB3QuSP3 .mbr-section-subtitle {
  color: #212132;
  margin-top: 1rem;
  text-align: left;
}
.cid-tAqB3RtQTn {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffdd65;
}
.cid-tAqB3RtQTn .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAqB3RtQTn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAqB3RtQTn .container {
  max-width: 1280px;
}
.cid-tAqB3RtQTn .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-tAqB3RtQTn .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .cid-tAqB3RtQTn .content-wrapper {
    padding: 40px 6vw;
  }
}
.cid-tAqB3RtQTn .text-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 720px;
  margin-right: auto;
  margin-bottom: 28px;
}
@media (max-width: 991px) {
  .cid-tAqB3RtQTn .text-wrapper {
    margin-bottom: 12px;
  }
}
.cid-tAqB3RtQTn .mbr-section-title {
  color: #FFDD65;
  margin-bottom: 100px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tAqB3RtQTn .mbr-section-title {
    margin-bottom: 60px;
  }
}
.cid-tAqB3RtQTn .mbr-section-subtitle {
  color: #ffffff;
  width: 100%;
}
.cid-tAqB3RtQTn .card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
}
.cid-tAqB3RtQTn .card-item {
  width: max-content;
  max-width: 100%;
  margin-right: 12px;
  min-width: 160px;
  margin-bottom: 12px;
  margin-top: 12px;
}
.cid-tAqB3RtQTn .card-box {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: max-content;
  height: 100%;
  padding-right: 12px;
}
.cid-tAqB3RtQTn .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  width: max-content;
  margin-right: auto;
}
@media (max-width: 991px) {
  .cid-tAqB3RtQTn .iconfont-wrapper {
    margin-bottom: 24px;
  }
}
.cid-tAqB3RtQTn .iconfont-wrapper .mbr-iconfont {
  color: #ffdd65;
  font-size: 80px;
}
.cid-tAqB3RtQTn .card-title {
  color: #ffffff;
}
.cid-tAqGAZbrQp {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-tAqGAZbrQp .google-map {
  height: 30rem;
  position: relative;
}
.cid-tAqGAZbrQp .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tAqGAZbrQp .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tAqGAZbrQp .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tAqGAZbrQp .google-map[data-state='loading'] [data-state-details] {
  display: none;
}
.cid-tAqGAZbrQp .mbr-section-title {
  color: #2e6b75;
}
.cid-tAqGAZbrQp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAqGAZbrQp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAqB3Zabgs {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-tAqB3Zabgs .container {
  max-width: 1472px;
}
.cid-tAqB3Zabgs .mbr-text {
  color: #FFFFFF;
}
