body {
  font-family: Anek Latin;
}
.display-1 {
  font-family: 'Anek Latin', sans-serif;
  font-size: 3.5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 4.375rem;
}
.display-2 {
  font-family: 'Anek Latin', sans-serif;
  font-size: 2rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-4 {
  font-family: 'Anek Latin', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Anek Latin', sans-serif;
  font-size: 1.63rem;
  line-height: 1.2;
}
.display-5 > .mbr-iconfont {
  font-size: 2.0375rem;
}
.display-7 {
  font-family: 'Anek Latin', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.875rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 2.8rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.45rem;
    font-size: calc( 1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.304rem;
    font-size: calc( 1.2205rem + (1.63 - 1.2205) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.2205rem + (1.63 - 1.2205) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    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))));
  }
}
/* 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: #770893 !important;
}
.bg-success {
  background-color: #c19c1c !important;
}
.bg-info {
  background-color: #8d59ff !important;
}
.bg-warning {
  background-color: #ffaa5c !important;
}
.bg-danger {
  background-color: #5f5e5e !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #770893 !important;
  border-color: #770893 !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: #340441 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #340441 !important;
  border-color: #340441 !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: #5f5e5e !important;
  border-color: #5f5e5e !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: #333333 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !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: #770893;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #770893 !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: #770893 !important;
  border-color: #770893 !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: #5f5e5e;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #5f5e5e !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: #5f5e5e !important;
  border-color: #5f5e5e !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: #770893 !important;
}
.text-secondary {
  color: #ffdd65 !important;
}
.text-success {
  color: #c19c1c !important;
}
.text-info {
  color: #8d59ff !important;
}
.text-warning {
  color: #ffaa5c !important;
}
.text-danger {
  color: #5f5e5e !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #212132 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #290332 !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: #2c2b2b !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: #770893;
}
.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: #5f5e5e;
}
.mbr-gallery-filter li.active .btn {
  background-color: #770893;
  border-color: #770893;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #770893;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ca27f3;
}
.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: #9f9e9e;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Anek Latin', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #770893 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Anek Latin', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #770893;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #770893;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #770893;
}
.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: #770893;
  border-bottom-color: #770893;
}
.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: #770893 !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='%23770893' %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-tOiWhMdlVs {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 96px;
}
.cid-tOiWhMdlVs nav.navbar {
  position: fixed;
}
.cid-tOiWhMdlVs .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-tOiWhMdlVs .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tOiWhMdlVs .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tOiWhMdlVs .dropdown-item:hover,
.cid-tOiWhMdlVs .dropdown-item:focus {
  background: #770893 !important;
  color: white !important;
}
.cid-tOiWhMdlVs .dropdown-item:hover span {
  color: white;
}
.cid-tOiWhMdlVs .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tOiWhMdlVs .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tOiWhMdlVs .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tOiWhMdlVs .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tOiWhMdlVs .nav-link {
  position: relative;
}
.cid-tOiWhMdlVs .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-tOiWhMdlVs .container {
    flex-wrap: nowrap;
  }
}
.cid-tOiWhMdlVs .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
}
.cid-tOiWhMdlVs .iconfont-wrapper:hover {
  color: #ffdd65 !important;
}
.cid-tOiWhMdlVs .dropdown-menu,
.cid-tOiWhMdlVs .navbar.opened {
  background: #ffffff !important;
}
.cid-tOiWhMdlVs .nav-item:focus,
.cid-tOiWhMdlVs .nav-link:focus {
  outline: none;
}
.cid-tOiWhMdlVs .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tOiWhMdlVs .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tOiWhMdlVs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tOiWhMdlVs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tOiWhMdlVs .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tOiWhMdlVs .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tOiWhMdlVs .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: #ffffff;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-tOiWhMdlVs .navbar.opened {
  transition: all 0.3s;
}
.cid-tOiWhMdlVs .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tOiWhMdlVs .navbar .navbar-logo img {
  width: auto;
}
.cid-tOiWhMdlVs .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tOiWhMdlVs .navbar.collapsed {
  justify-content: center;
}
.cid-tOiWhMdlVs .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tOiWhMdlVs .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tOiWhMdlVs .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tOiWhMdlVs .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tOiWhMdlVs .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tOiWhMdlVs .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-tOiWhMdlVs .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tOiWhMdlVs .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tOiWhMdlVs .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tOiWhMdlVs .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tOiWhMdlVs .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tOiWhMdlVs .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tOiWhMdlVs .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tOiWhMdlVs .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-tOiWhMdlVs .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tOiWhMdlVs .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tOiWhMdlVs .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tOiWhMdlVs .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 60%;
  }
  .cid-tOiWhMdlVs .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tOiWhMdlVs .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tOiWhMdlVs .navbar.navbar-short {
  min-height: 96px;
}
.cid-tOiWhMdlVs .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tOiWhMdlVs .navbar.navbar-short .navbar-brand {
  min-height: 96px;
  padding: 0;
}
.cid-tOiWhMdlVs .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-tOiWhMdlVs .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tOiWhMdlVs .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tOiWhMdlVs .navbar-brand:hover {
  transform: scale(1.1);
}
.cid-tOiWhMdlVs .dropdown-item.active,
.cid-tOiWhMdlVs .dropdown-item:active {
  background-color: transparent;
}
.cid-tOiWhMdlVs .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tOiWhMdlVs .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tOiWhMdlVs .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tOiWhMdlVs .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tOiWhMdlVs .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tOiWhMdlVs .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tOiWhMdlVs ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tOiWhMdlVs .navbar-buttons {
  text-align: center;
}
.cid-tOiWhMdlVs .navbar-buttons .btn {
  padding: 9px 18px;
  min-width: 100px;
  min-height: 52px;
  border-radius: 0.3rem;
}
.cid-tOiWhMdlVs .navbar-buttons .btn:hover {
  color: #ffdd65 !important;
}
@media (max-width: 575px) {
  .cid-tOiWhMdlVs .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-tOiWhMdlVs .navbar-buttons .btn-black {
  border: solid 2px #770893 !important;
  box-shadow: 3px 3px 0 0 #770893 !important;
}
.cid-tOiWhMdlVs .navbar-buttons .btn-black:hover {
  border: solid 2px #770893 !important;
  color: #ffdd65 !important;
  box-shadow: 0 0 0 0 #770893 !important;
}
.cid-tOiWhMdlVs 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: #ffffff !important;
  border: solid 2px #770893 !important;
  box-shadow: 3px 3px 0 0 #770893 !important;
}
.cid-tOiWhMdlVs button.navbar-toggler:hover {
  border: solid 2px #770893 !important;
  color: #ffdd65 !important;
  box-shadow: 0 0 0 0 #770893 !important;
}
.cid-tOiWhMdlVs button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tOiWhMdlVs button.navbar-toggler .hamburger span:nth-child(1) {
  top: 9px;
  left: 8px;
  transition: all 0.2s;
}
.cid-tOiWhMdlVs button.navbar-toggler .hamburger span:nth-child(2) {
  left: 8px;
  top: 17px;
  transition: all 0.15s;
}
.cid-tOiWhMdlVs button.navbar-toggler .hamburger span:nth-child(3) {
  left: 8px;
  top: 17px;
  transition: all 0.15s;
}
.cid-tOiWhMdlVs button.navbar-toggler .hamburger span:nth-child(4) {
  left: 8px;
  top: 25px;
  transition: all 0.2s;
}
.cid-tOiWhMdlVs nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tOiWhMdlVs nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tOiWhMdlVs nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tOiWhMdlVs nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tOiWhMdlVs .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tOiWhMdlVs a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tOiWhMdlVs .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-tOiWhMdlVs .navbar {
    height: 70px;
  }
  .cid-tOiWhMdlVs .navbar.opened {
    height: auto;
  }
  .cid-tOiWhMdlVs .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tOiWhMdlVs .navbar-nav {
  margin: 0 auto;
}
.cid-tOiWhMdlVs .nav-item {
  padding: 0;
  margin: 2px;
}
.cid-tOiWhMdlVs .nav-item .nav-link {
  padding: 6px 32px !important;
  margin: 0 !important;
}
.cid-tOiWhMdlVs .nav-item .nav-link::after {
  color: #ffdd65 !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-tOiWhMdlVs .nav-item .nav-link:hover {
  color: #ffdd65 !important;
}
.cid-tOiWhMdlVs .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-tOiWhMdlVs .nav-item .dropdown-menu {
  background-color: #ffffff !important;
}
.cid-tOiWhMdlVs .nav-item .dropdown-menu:hover {
  background-color: #ffffff !important;
}
.cid-tOiWhMdlVs .nav-item .dropdown-menu .dropdown-item {
  color: #ffffff !important;
  background-color: transparent !important;
}
.cid-tOiWhMdlVs .nav-item .dropdown-menu .dropdown-item:hover {
  color: #770893 !important;
}
@media (max-width: 991px) {
  .cid-tOiWhMdlVs .navbar {
    justify-content: flex-start !important;
  }
  .cid-tOiWhMdlVs .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-tOiWhMdlVs .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-tOiWhMdlVs .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-tOiWhMdlVs .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-tOiWhMdlVs .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .cid-tOiWhMdlVs .navbar-collapse .nav-item .nav-link {
    padding: 14px 0 !important;
    justify-content: flex-start;
  }
}
@media (max-width: 1500px) {
  .cid-tOiWhMdlVs .nav-item .nav-link {
    font-size: 1.2rem;
    padding: 10px!important;
  }
  .cid-tOiWhMdlVs .container {
    flex-wrap: wrap!important;
    justify-content: center;
    flex-direction: column;
  }
  .cid-tOiWhMdlVs .navbar-brand {
    min-height: 20px;
    padding-top: 30px;
  }
}
@media (max-width: 992px) {
  .cid-tOiWhMdlVs .container {
    justify-content: space-between;
    flex-direction: row;
  }
  .cid-tOiWhMdlVs .navbar-brand {
    min-height: 96px;
    padding-top: 10px;
  }
}
.cid-tQe4XEebB0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tQe4XEebB0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQe4XEebB0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQe4XEebB0 .container {
  max-width: 1280px;
}
.cid-tQe4XEebB0 .row {
  justify-content: flex-start;
}
.cid-tQe4XEebB0 .content-wrapper {
  display: flex;
  align-items: stretch;
  background: #ffdd65;
  padding: 4rem;
  border-radius: 4.17rem;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-tQe4XEebB0 .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .cid-tQe4XEebB0 .content-wrapper {
    padding: 40px 6vw;
  }
}
.cid-tQe4XEebB0 .mbr-section-title {
  color: #770893;
  width: 100%;
  margin-bottom: 80px;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tQe4XEebB0 .mbr-section-title {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tQe4XEebB0 .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-tQe4XEebB0 .item-wrap {
  width: 100%;
  margin-bottom: 24px;
}
.cid-tQe4XEebB0 .mbr-section-subtitle {
  color: #0c0c22;
  width: 100%;
  margin-bottom: 16px !important;
}
.cid-tQe4XEebB0 .mbr-text {
  color: #212132;
  width: 100%;
  margin-bottom: 0;
}
.cid-tQ0fS5gS6H {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #3c3c50;
}
.cid-tQ0fS5gS6H .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tQ0fS5gS6H .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tQ0fS5gS6H .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tQ0fS5gS6H .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tQ0fS5gS6H .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tQ0fS5gS6H .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tQ0fS5gS6H .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tQ0fS5gS6H .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tQ0fS5gS6H .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tQ0fS5gS6H .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tQ0fS5gS6H .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tQ0fS5gS6H .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tQ0fS5gS6H .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tQ0fS5gS6H .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tQ0fS5gS6H foot-menu-item {
  color: #e4c03e;
}
.cid-tQe6dwvwXj {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 96px;
}
.cid-tQe6dwvwXj nav.navbar {
  position: fixed;
}
.cid-tQe6dwvwXj .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-tQe6dwvwXj .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tQe6dwvwXj .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tQe6dwvwXj .dropdown-item:hover,
.cid-tQe6dwvwXj .dropdown-item:focus {
  background: #770893 !important;
  color: white !important;
}
.cid-tQe6dwvwXj .dropdown-item:hover span {
  color: white;
}
.cid-tQe6dwvwXj .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tQe6dwvwXj .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tQe6dwvwXj .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tQe6dwvwXj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tQe6dwvwXj .nav-link {
  position: relative;
}
.cid-tQe6dwvwXj .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-tQe6dwvwXj .container {
    flex-wrap: nowrap;
  }
}
.cid-tQe6dwvwXj .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
}
.cid-tQe6dwvwXj .iconfont-wrapper:hover {
  color: #ffdd65 !important;
}
.cid-tQe6dwvwXj .dropdown-menu,
.cid-tQe6dwvwXj .navbar.opened {
  background: #ffffff !important;
}
.cid-tQe6dwvwXj .nav-item:focus,
.cid-tQe6dwvwXj .nav-link:focus {
  outline: none;
}
.cid-tQe6dwvwXj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tQe6dwvwXj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tQe6dwvwXj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tQe6dwvwXj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tQe6dwvwXj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tQe6dwvwXj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tQe6dwvwXj .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: #ffffff;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-tQe6dwvwXj .navbar.opened {
  transition: all 0.3s;
}
.cid-tQe6dwvwXj .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tQe6dwvwXj .navbar .navbar-logo img {
  width: auto;
}
.cid-tQe6dwvwXj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tQe6dwvwXj .navbar.collapsed {
  justify-content: center;
}
.cid-tQe6dwvwXj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tQe6dwvwXj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tQe6dwvwXj .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tQe6dwvwXj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tQe6dwvwXj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tQe6dwvwXj .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-tQe6dwvwXj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tQe6dwvwXj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tQe6dwvwXj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tQe6dwvwXj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tQe6dwvwXj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tQe6dwvwXj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tQe6dwvwXj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tQe6dwvwXj .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-tQe6dwvwXj .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tQe6dwvwXj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tQe6dwvwXj .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tQe6dwvwXj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 60%;
  }
  .cid-tQe6dwvwXj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tQe6dwvwXj .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tQe6dwvwXj .navbar.navbar-short {
  min-height: 96px;
}
.cid-tQe6dwvwXj .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tQe6dwvwXj .navbar.navbar-short .navbar-brand {
  min-height: 96px;
  padding: 0;
}
.cid-tQe6dwvwXj .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-tQe6dwvwXj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tQe6dwvwXj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tQe6dwvwXj .navbar-brand:hover {
  transform: scale(1.1);
}
.cid-tQe6dwvwXj .dropdown-item.active,
.cid-tQe6dwvwXj .dropdown-item:active {
  background-color: transparent;
}
.cid-tQe6dwvwXj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tQe6dwvwXj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tQe6dwvwXj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tQe6dwvwXj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tQe6dwvwXj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tQe6dwvwXj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tQe6dwvwXj ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tQe6dwvwXj .navbar-buttons {
  text-align: center;
}
.cid-tQe6dwvwXj .navbar-buttons .btn {
  padding: 9px 18px;
  min-width: 100px;
  min-height: 52px;
  border-radius: 0.3rem;
}
.cid-tQe6dwvwXj .navbar-buttons .btn:hover {
  color: #ffdd65 !important;
}
@media (max-width: 575px) {
  .cid-tQe6dwvwXj .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-tQe6dwvwXj .navbar-buttons .btn-black {
  border: solid 2px #770893 !important;
  box-shadow: 3px 3px 0 0 #770893 !important;
}
.cid-tQe6dwvwXj .navbar-buttons .btn-black:hover {
  border: solid 2px #770893 !important;
  color: #ffdd65 !important;
  box-shadow: 0 0 0 0 #770893 !important;
}
.cid-tQe6dwvwXj 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: #ffffff !important;
  border: solid 2px #770893 !important;
  box-shadow: 3px 3px 0 0 #770893 !important;
}
.cid-tQe6dwvwXj button.navbar-toggler:hover {
  border: solid 2px #770893 !important;
  color: #ffdd65 !important;
  box-shadow: 0 0 0 0 #770893 !important;
}
.cid-tQe6dwvwXj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tQe6dwvwXj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 9px;
  left: 8px;
  transition: all 0.2s;
}
.cid-tQe6dwvwXj button.navbar-toggler .hamburger span:nth-child(2) {
  left: 8px;
  top: 17px;
  transition: all 0.15s;
}
.cid-tQe6dwvwXj button.navbar-toggler .hamburger span:nth-child(3) {
  left: 8px;
  top: 17px;
  transition: all 0.15s;
}
.cid-tQe6dwvwXj button.navbar-toggler .hamburger span:nth-child(4) {
  left: 8px;
  top: 25px;
  transition: all 0.2s;
}
.cid-tQe6dwvwXj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tQe6dwvwXj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tQe6dwvwXj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tQe6dwvwXj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tQe6dwvwXj .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tQe6dwvwXj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tQe6dwvwXj .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-tQe6dwvwXj .navbar {
    height: 70px;
  }
  .cid-tQe6dwvwXj .navbar.opened {
    height: auto;
  }
  .cid-tQe6dwvwXj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tQe6dwvwXj .navbar-nav {
  margin: 0 auto;
}
.cid-tQe6dwvwXj .nav-item {
  padding: 0;
  margin: 2px;
}
.cid-tQe6dwvwXj .nav-item .nav-link {
  padding: 6px 32px !important;
  margin: 0 !important;
}
.cid-tQe6dwvwXj .nav-item .nav-link::after {
  color: #ffdd65 !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-tQe6dwvwXj .nav-item .nav-link:hover {
  color: #ffdd65 !important;
}
.cid-tQe6dwvwXj .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-tQe6dwvwXj .nav-item .dropdown-menu {
  background-color: #ffffff !important;
}
.cid-tQe6dwvwXj .nav-item .dropdown-menu:hover {
  background-color: #ffffff !important;
}
.cid-tQe6dwvwXj .nav-item .dropdown-menu .dropdown-item {
  color: #ffffff !important;
  background-color: transparent !important;
}
.cid-tQe6dwvwXj .nav-item .dropdown-menu .dropdown-item:hover {
  color: #770893 !important;
}
@media (max-width: 991px) {
  .cid-tQe6dwvwXj .navbar {
    justify-content: flex-start !important;
  }
  .cid-tQe6dwvwXj .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-tQe6dwvwXj .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-tQe6dwvwXj .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-tQe6dwvwXj .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-tQe6dwvwXj .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .cid-tQe6dwvwXj .navbar-collapse .nav-item .nav-link {
    padding: 14px 0 !important;
    justify-content: flex-start;
  }
}
@media (max-width: 1500px) {
  .cid-tQe6dwvwXj .nav-item .nav-link {
    font-size: 1.2rem;
    padding: 10px!important;
  }
  .cid-tQe6dwvwXj .container {
    flex-wrap: wrap!important;
    justify-content: center;
    flex-direction: column;
  }
  .cid-tQe6dwvwXj .navbar-brand {
    min-height: 20px;
    padding-top: 30px;
  }
}
@media (max-width: 992px) {
  .cid-tQe6dwvwXj .container {
    justify-content: space-between;
    flex-direction: row;
  }
  .cid-tQe6dwvwXj .navbar-brand {
    min-height: 96px;
    padding-top: 10px;
  }
}
.cid-tQe6dxcdMt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tQe6dxcdMt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQe6dxcdMt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQe6dxcdMt .container {
  max-width: 1280px;
}
.cid-tQe6dxcdMt .row {
  justify-content: flex-start;
}
.cid-tQe6dxcdMt .content-wrapper {
  display: flex;
  align-items: stretch;
  background: #ffdd65;
  padding: 4rem;
  border-radius: 4.17rem;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-tQe6dxcdMt .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .cid-tQe6dxcdMt .content-wrapper {
    padding: 40px 6vw;
  }
}
.cid-tQe6dxcdMt .mbr-section-title {
  color: #770893;
  width: 100%;
  margin-bottom: 80px;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tQe6dxcdMt .mbr-section-title {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tQe6dxcdMt .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-tQe6dxcdMt .item-wrap {
  width: 100%;
  margin-bottom: 24px;
}
.cid-tQe6dxcdMt .mbr-section-subtitle {
  color: #0c0c22;
  width: 100%;
  margin-bottom: 16px !important;
}
.cid-tQe6dxcdMt .mbr-text {
  color: #212132;
  width: 100%;
  margin-bottom: 0;
}
.cid-tQe6dxAO2H {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #3c3c50;
}
.cid-tQe6dxAO2H .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tQe6dxAO2H .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tQe6dxAO2H .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tQe6dxAO2H .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tQe6dxAO2H .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tQe6dxAO2H .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tQe6dxAO2H .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tQe6dxAO2H .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tQe6dxAO2H .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tQe6dxAO2H .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tQe6dxAO2H .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tQe6dxAO2H .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tQe6dxAO2H .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tQe6dxAO2H .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tQe6dxAO2H foot-menu-item {
  color: #e4c03e;
}
.cid-tOkiafUo2X {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-tOkiafUo2X .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOkiafUo2X .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOkiafUo2X .row {
  justify-content: left;
}
.cid-tOkiafUo2X .mbr-section-title {
  color: #FFDD65;
}
.cid-tOkiafUo2X .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-tOkiafUo2X .btn-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 96px;
}
@media (max-width: 991px) {
  .cid-tOkiafUo2X .btn-container {
    padding-top: 50px;
    flex-direction: column;
    align-items: center;
  }
}
.cid-tOkiafUo2X .custom-mbr-section-btn {
  padding-bottom: 0.42rem;
}
@media (max-width: 991px) {
  .cid-tOkiafUo2X .custom-mbr-section-btn {
    padding-bottom: 0;
  }
}
.cid-tOkiafUo2X .custom-section-btn {
  height: 100%;
}
.cid-tOkiafUo2X .custom-section-btn .btn {
  height: 100%;
}
.cid-tOkiafUo2X .text-container {
  max-width: 384px;
  margin-left: 40px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tOkiafUo2X .text-container {
    margin: 26px auto 0;
  }
}
.cid-tOkiafUo2X .mbr-text {
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .cid-tOkiafUo2X .mbr-text {
    text-align: center !important;
  }
}
.cid-tOkiafUo2X .text-item-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-top: 26px;
}
@media (max-width: 991px) {
  .cid-tOkiafUo2X .text-item-container {
    flex-wrap: wrap;
  }
}
.cid-tOkiafUo2X .text-item {
  display: flex;
  align-items: center;
  max-width: 48%;
}
@media (max-width: 991px) {
  .cid-tOkiafUo2X .text-item {
    max-width: 100%;
    width: 100%;
    justify-content: center;
    margin-bottom: 6px;
  }
}
.cid-tOkiafUo2X .icon-text {
  color: #ffffff;
  opacity: 0.6;
}
.cid-tOkiafUo2X .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.cid-tOkiafUo2X .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 24px;
  color: #ae5eff;
}
.cid-tOiWhMdlVs {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 96px;
}
.cid-tOiWhMdlVs nav.navbar {
  position: fixed;
}
.cid-tOiWhMdlVs .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-tOiWhMdlVs .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tOiWhMdlVs .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tOiWhMdlVs .dropdown-item:hover,
.cid-tOiWhMdlVs .dropdown-item:focus {
  background: #770893 !important;
  color: white !important;
}
.cid-tOiWhMdlVs .dropdown-item:hover span {
  color: white;
}
.cid-tOiWhMdlVs .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tOiWhMdlVs .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tOiWhMdlVs .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tOiWhMdlVs .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tOiWhMdlVs .nav-link {
  position: relative;
}
.cid-tOiWhMdlVs .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-tOiWhMdlVs .container {
    flex-wrap: nowrap;
  }
}
.cid-tOiWhMdlVs .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
}
.cid-tOiWhMdlVs .iconfont-wrapper:hover {
  color: #ffdd65 !important;
}
.cid-tOiWhMdlVs .dropdown-menu,
.cid-tOiWhMdlVs .navbar.opened {
  background: #ffffff !important;
}
.cid-tOiWhMdlVs .nav-item:focus,
.cid-tOiWhMdlVs .nav-link:focus {
  outline: none;
}
.cid-tOiWhMdlVs .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tOiWhMdlVs .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tOiWhMdlVs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tOiWhMdlVs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tOiWhMdlVs .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tOiWhMdlVs .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tOiWhMdlVs .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: #ffffff;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-tOiWhMdlVs .navbar.opened {
  transition: all 0.3s;
}
.cid-tOiWhMdlVs .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tOiWhMdlVs .navbar .navbar-logo img {
  width: auto;
}
.cid-tOiWhMdlVs .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tOiWhMdlVs .navbar.collapsed {
  justify-content: center;
}
.cid-tOiWhMdlVs .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tOiWhMdlVs .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tOiWhMdlVs .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tOiWhMdlVs .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tOiWhMdlVs .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tOiWhMdlVs .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-tOiWhMdlVs .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tOiWhMdlVs .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tOiWhMdlVs .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tOiWhMdlVs .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tOiWhMdlVs .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tOiWhMdlVs .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tOiWhMdlVs .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tOiWhMdlVs .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-tOiWhMdlVs .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tOiWhMdlVs .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tOiWhMdlVs .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tOiWhMdlVs .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 60%;
  }
  .cid-tOiWhMdlVs .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tOiWhMdlVs .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tOiWhMdlVs .navbar.navbar-short {
  min-height: 96px;
}
.cid-tOiWhMdlVs .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tOiWhMdlVs .navbar.navbar-short .navbar-brand {
  min-height: 96px;
  padding: 0;
}
.cid-tOiWhMdlVs .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-tOiWhMdlVs .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tOiWhMdlVs .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tOiWhMdlVs .navbar-brand:hover {
  transform: scale(1.1);
}
.cid-tOiWhMdlVs .dropdown-item.active,
.cid-tOiWhMdlVs .dropdown-item:active {
  background-color: transparent;
}
.cid-tOiWhMdlVs .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tOiWhMdlVs .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tOiWhMdlVs .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tOiWhMdlVs .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tOiWhMdlVs .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tOiWhMdlVs .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tOiWhMdlVs ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tOiWhMdlVs .navbar-buttons {
  text-align: center;
}
.cid-tOiWhMdlVs .navbar-buttons .btn {
  padding: 9px 18px;
  min-width: 100px;
  min-height: 52px;
  border-radius: 0.3rem;
}
.cid-tOiWhMdlVs .navbar-buttons .btn:hover {
  color: #ffdd65 !important;
}
@media (max-width: 575px) {
  .cid-tOiWhMdlVs .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-tOiWhMdlVs .navbar-buttons .btn-black {
  border: solid 2px #770893 !important;
  box-shadow: 3px 3px 0 0 #770893 !important;
}
.cid-tOiWhMdlVs .navbar-buttons .btn-black:hover {
  border: solid 2px #770893 !important;
  color: #ffdd65 !important;
  box-shadow: 0 0 0 0 #770893 !important;
}
.cid-tOiWhMdlVs 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: #ffffff !important;
  border: solid 2px #770893 !important;
  box-shadow: 3px 3px 0 0 #770893 !important;
}
.cid-tOiWhMdlVs button.navbar-toggler:hover {
  border: solid 2px #770893 !important;
  color: #ffdd65 !important;
  box-shadow: 0 0 0 0 #770893 !important;
}
.cid-tOiWhMdlVs button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tOiWhMdlVs button.navbar-toggler .hamburger span:nth-child(1) {
  top: 9px;
  left: 8px;
  transition: all 0.2s;
}
.cid-tOiWhMdlVs button.navbar-toggler .hamburger span:nth-child(2) {
  left: 8px;
  top: 17px;
  transition: all 0.15s;
}
.cid-tOiWhMdlVs button.navbar-toggler .hamburger span:nth-child(3) {
  left: 8px;
  top: 17px;
  transition: all 0.15s;
}
.cid-tOiWhMdlVs button.navbar-toggler .hamburger span:nth-child(4) {
  left: 8px;
  top: 25px;
  transition: all 0.2s;
}
.cid-tOiWhMdlVs nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tOiWhMdlVs nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tOiWhMdlVs nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tOiWhMdlVs nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tOiWhMdlVs .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tOiWhMdlVs a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tOiWhMdlVs .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-tOiWhMdlVs .navbar {
    height: 70px;
  }
  .cid-tOiWhMdlVs .navbar.opened {
    height: auto;
  }
  .cid-tOiWhMdlVs .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tOiWhMdlVs .navbar-nav {
  margin: 0 auto;
}
.cid-tOiWhMdlVs .nav-item {
  padding: 0;
  margin: 2px;
}
.cid-tOiWhMdlVs .nav-item .nav-link {
  padding: 6px 32px !important;
  margin: 0 !important;
}
.cid-tOiWhMdlVs .nav-item .nav-link::after {
  color: #ffdd65 !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-tOiWhMdlVs .nav-item .nav-link:hover {
  color: #ffdd65 !important;
}
.cid-tOiWhMdlVs .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-tOiWhMdlVs .nav-item .dropdown-menu {
  background-color: #ffffff !important;
}
.cid-tOiWhMdlVs .nav-item .dropdown-menu:hover {
  background-color: #ffffff !important;
}
.cid-tOiWhMdlVs .nav-item .dropdown-menu .dropdown-item {
  color: #ffffff !important;
  background-color: transparent !important;
}
.cid-tOiWhMdlVs .nav-item .dropdown-menu .dropdown-item:hover {
  color: #770893 !important;
}
@media (max-width: 991px) {
  .cid-tOiWhMdlVs .navbar {
    justify-content: flex-start !important;
  }
  .cid-tOiWhMdlVs .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-tOiWhMdlVs .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-tOiWhMdlVs .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-tOiWhMdlVs .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-tOiWhMdlVs .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .cid-tOiWhMdlVs .navbar-collapse .nav-item .nav-link {
    padding: 14px 0 !important;
    justify-content: flex-start;
  }
}
@media (max-width: 1500px) {
  .cid-tOiWhMdlVs .nav-item .nav-link {
    font-size: 1.2rem;
    padding: 10px!important;
  }
  .cid-tOiWhMdlVs .container {
    flex-wrap: wrap!important;
    justify-content: center;
    flex-direction: column;
  }
  .cid-tOiWhMdlVs .navbar-brand {
    min-height: 20px;
    padding-top: 30px;
  }
}
@media (max-width: 992px) {
  .cid-tOiWhMdlVs .container {
    justify-content: space-between;
    flex-direction: row;
  }
  .cid-tOiWhMdlVs .navbar-brand {
    min-height: 96px;
    padding-top: 10px;
  }
}
.cid-tOj38jYQ9b {
  padding-top: 8rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-tOj38jYQ9b .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOj38jYQ9b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOj38jYQ9b .container {
  max-width: 1280px;
}
.cid-tOj38jYQ9b .row {
  justify-content: center;
}
.cid-tOj38jYQ9b .col-title {
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .cid-tOj38jYQ9b .col-title {
    margin-bottom: 50px;
  }
}
.cid-tOj38jYQ9b .mbr-section-title {
  color: #FFDD65;
}
.cid-tOj38jYQ9b .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 1rem;
}
.cid-tOj38jYQ9b .col-video {
  display: flex;
}
.cid-tOj38jYQ9b .col-video img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 1.76rem;
}
@media (max-width: 767px) {
  .cid-tOj38jYQ9b .col-video {
    height: 350px;
  }
}
.cid-tOj38jYQ9b .col-video .box {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 2.08rem;
  position: relative;
  background-image: linear-gradient(90deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  padding: 5px;
}
.cid-tOj38jYQ9b .col-video .box .box-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2.08rem;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  -webkit-filter: blur(1rem);
  filter: blur(1rem);
}
.cid-tOj38jYQ9b .col-video .link-container {
  display: flex;
  margin-bottom: 2rem;
}
.cid-tOj38jYQ9b .col-video .link {
  margin-right: 1rem;
}
.cid-tOj38jYQ9b .col-video .mbr-media {
  display: flex;
  height: 100%;
  width: 100%;
  border-radius: 1.76rem;
  overflow: hidden;
}
.cid-tOj38jYQ9b .col-video .mbr-media a:hover {
  background-image: none !important;
}
.cid-tOj38jYQ9b .mbr-media {
  position: relative;
}
.cid-tOj38jYQ9b .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tOj38jYQ9b .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  transition: all .3s;
}
.cid-tOj38jYQ9b .icon-wrap:hover {
  transform: translate(-50%, -50%);
}
.cid-tOj38jYQ9b .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tOj38jYQ9b .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tOj38jYQ9b .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tOj38jYQ9b .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tOj38jYQ9b .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tOj38jYQ9b .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tOj38jYQ9b a:hover {
  text-decoration-line: none !important;
}
.cid-tQ0EuYw5f7 {
  padding-top: 1rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tQ0EuYw5f7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQ0EuYw5f7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQ0EuYw5f7 .row {
  justify-content: left;
}
.cid-tQ0EuYw5f7 .mbr-section-title {
  color: #FFDD65;
}
.cid-tQ0EuYw5f7 .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-tQ0EuYw5f7 .btn-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 96px;
}
@media (max-width: 991px) {
  .cid-tQ0EuYw5f7 .btn-container {
    padding-top: 50px;
    flex-direction: column;
    align-items: center;
  }
}
.cid-tQ0EuYw5f7 .custom-mbr-section-btn {
  padding-bottom: 0.42rem;
}
@media (max-width: 991px) {
  .cid-tQ0EuYw5f7 .custom-mbr-section-btn {
    padding-bottom: 0;
  }
}
.cid-tQ0EuYw5f7 .custom-section-btn {
  height: 100%;
}
.cid-tQ0EuYw5f7 .custom-section-btn .btn {
  height: 100%;
}
.cid-tQ0EuYw5f7 .text-container {
  max-width: 384px;
  margin-left: 40px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tQ0EuYw5f7 .text-container {
    margin: 26px auto 0;
  }
}
.cid-tQ0EuYw5f7 .mbr-text {
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .cid-tQ0EuYw5f7 .mbr-text {
    text-align: center !important;
  }
}
.cid-tQ0EuYw5f7 .text-item-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-top: 26px;
}
@media (max-width: 991px) {
  .cid-tQ0EuYw5f7 .text-item-container {
    flex-wrap: wrap;
  }
}
.cid-tQ0EuYw5f7 .text-item {
  display: flex;
  align-items: center;
  max-width: 48%;
}
@media (max-width: 991px) {
  .cid-tQ0EuYw5f7 .text-item {
    max-width: 100%;
    width: 100%;
    justify-content: center;
    margin-bottom: 6px;
  }
}
.cid-tQ0EuYw5f7 .icon-text {
  color: #ffffff;
  opacity: 0.6;
}
.cid-tQ0EuYw5f7 .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.cid-tQ0EuYw5f7 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 24px;
  color: #ae5eff;
}
.cid-tOpnZ1y43A {
  padding-top: 1rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tOpnZ1y43A .container {
  max-width: 1600px;
}
.cid-tOpnZ1y43A .row {
  justify-content: center;
}
.cid-tOpnZ1y43A .text-container {
  width: 100%;
  margin-bottom: 80px;
}
@media (max-width: 991px) {
  .cid-tOpnZ1y43A .text-container {
    margin-bottom: 50px;
  }
}
.cid-tOpnZ1y43A .mbr-section-title {
  color: #212132;
}
.cid-tOpnZ1y43A .mbr-section-subtitle {
  color: #212132;
  margin-top: 1.5rem;
}
@media (max-width: 991px) {
  .cid-tOpnZ1y43A .mbr-section-subtitle {
    margin-top: 1rem;
  }
}
.cid-tOpnZ1y43A .cards-container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.83rem;
}
@media (max-width: 991px) {
  .cid-tOpnZ1y43A .cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .cid-tOpnZ1y43A .cards-container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.cid-tOpnZ1y43A .card {
  display: flex;
  width: 100%;
  height: 100%;
  border-radius: 1.67rem;
  overflow: hidden;
  background-color: #3c3c50;
  transition: .18s all;
}
.cid-tOpnZ1y43A .card:hover {
  transform: scale(0.96);
}
.cid-tOpnZ1y43A .card-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  padding: 24px;
}
@media (max-width: 991px) {
  .cid-tOpnZ1y43A .card-wrapper {
    padding: 16px;
  }
}
.cid-tOpnZ1y43A .card-box {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-tOpnZ1y43A .card-box {
    margin-bottom: 20px;
  }
}
.cid-tOpnZ1y43A .card-title {
  width: 100%;
  margin-bottom: 0;
  color: #212132;
  opacity: 0.6;
}
.cid-tOpnZ1y43A .card-text {
  width: 100%;
  color: #ffffff;
  margin-top: 12px;
  margin-bottom: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tOpnZ1y43A .card-text {
    margin-top: 8px;
  }
}
.cid-tOpnZ1y43A .mbr-section-btn {
  margin-top: 0.5rem;
}
.cid-tOpnZ1y43A .mbr-section-btn .btn {
  border: none !important;
  min-height: auto;
  min-width: auto;
}
.cid-tOpnZ1y43A .card-img {
  width: 100%;
  height: 192px;
  border-radius: 1.67rem;
  overflow: hidden;
  margin-top: auto;
}
@media (max-width: 991px) {
  .cid-tOpnZ1y43A .card-img {
    height: 250px;
  }
}
@media (max-width: 767px) {
  .cid-tOpnZ1y43A .card-img {
    height: auto;
  }
}
.cid-tOpnZ1y43A .card-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-width: 100%;
}
.cid-tOpnZ1y43A .card-title,
.cid-tOpnZ1y43A .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-tQ80SEsZvA {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tQ80SEsZvA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQ80SEsZvA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQ80SEsZvA .row {
  justify-content: left;
}
.cid-tQ80SEsZvA .mbr-section-title {
  color: #FFDD65;
}
.cid-tQ80SEsZvA .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-tQ80SEsZvA .btn-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 96px;
}
@media (max-width: 991px) {
  .cid-tQ80SEsZvA .btn-container {
    padding-top: 50px;
    flex-direction: column;
    align-items: center;
  }
}
.cid-tQ80SEsZvA .custom-mbr-section-btn {
  padding-bottom: 0.42rem;
}
@media (max-width: 991px) {
  .cid-tQ80SEsZvA .custom-mbr-section-btn {
    padding-bottom: 0;
  }
}
.cid-tQ80SEsZvA .custom-section-btn {
  height: 100%;
}
.cid-tQ80SEsZvA .custom-section-btn .btn {
  height: 100%;
}
.cid-tQ80SEsZvA .text-container {
  max-width: 384px;
  margin-left: 40px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tQ80SEsZvA .text-container {
    margin: 26px auto 0;
  }
}
.cid-tQ80SEsZvA .mbr-text {
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .cid-tQ80SEsZvA .mbr-text {
    text-align: center !important;
  }
}
.cid-tQ80SEsZvA .text-item-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-top: 26px;
}
@media (max-width: 991px) {
  .cid-tQ80SEsZvA .text-item-container {
    flex-wrap: wrap;
  }
}
.cid-tQ80SEsZvA .text-item {
  display: flex;
  align-items: center;
  max-width: 48%;
}
@media (max-width: 991px) {
  .cid-tQ80SEsZvA .text-item {
    max-width: 100%;
    width: 100%;
    justify-content: center;
    margin-bottom: 6px;
  }
}
.cid-tQ80SEsZvA .icon-text {
  color: #ffffff;
  opacity: 0.6;
}
.cid-tQ80SEsZvA .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.cid-tQ80SEsZvA .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 24px;
  color: #ae5eff;
}
.cid-tQ6aQwhDAL {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tQ6aQwhDAL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQ6aQwhDAL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQ6aQwhDAL .container {
  max-width: 1280px;
}
.cid-tQ6aQwhDAL .content-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  background: #3c3c50;
  padding: 4rem;
  border-radius: 4.17rem;
}
@media (max-width: 991px) {
  .cid-tQ6aQwhDAL .content-wrapper {
    padding: 40px;
    padding-bottom: 5rem;
  }
}
@media (max-width: 767px) {
  .cid-tQ6aQwhDAL .content-wrapper {
    padding: 40px 6vw;
    padding-bottom: 5rem;
  }
}
.cid-tQ6aQwhDAL .text-wrapper {
  display: flex;
  flex-direction: column;
  width: 70%;
  padding-left: 40px;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .cid-tQ6aQwhDAL .text-wrapper {
    width: 100%;
    margin-bottom: 0;
    margin-top: 24px;
    padding: 0;
  }
}
.cid-tQ6aQwhDAL .mbr-section-title {
  color: #FFDD65;
  width: 100%;
  margin-bottom: 1.5rem;
}
.cid-tQ6aQwhDAL .mbr-section-subtitle {
  margin-top: auto;
  color: #ffffff;
  width: 100%;
}
.cid-tQ6aQwhDAL .card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
}
.cid-tQ6aQwhDAL .img-container {
  width: 30%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 1.6rem;
}
@media (max-width: 991px) {
  .cid-tQ6aQwhDAL .img-container {
    width: 100%;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1rem;
  }
}
@media (max-width: 575px) {
  .cid-tQ6aQwhDAL .img-container {
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}
.cid-tQ6aQwhDAL .image-wrapper {
  height: 100%;
  border-radius: 2.08rem;
  overflow: hidden;
}
.cid-tQ6aQwhDAL .image-wrapper img {
  aspect-ratio: 0.6;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-tQ6aQwhDAL .image-wrapper img {
    aspect-ratio: 0.75;
  }
}
.cid-tQ6aQwhDAL .btn-container {
  width: 70%;
  margin-top: -3.5rem;
  padding-right: 4rem;
  padding-left: 40px;
  margin-left: auto;
}
@media (max-width: 991px) {
  .cid-tQ6aQwhDAL .btn-container {
    width: 100%;
    padding: 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-tQ6aQwhDAL .btn-container {
    padding: 0 6vw;
  }
  .cid-tQ6aQwhDAL .btn-container .custom-section-btn {
    width: 100%;
  }
  .cid-tQ6aQwhDAL .btn-container .btn {
    width: 100%;
  }
}
.cid-tQ3lsUTGwp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tQ3lsUTGwp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQ3lsUTGwp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQ3lsUTGwp .container {
  max-width: 1280px;
}
.cid-tQ3lsUTGwp .content-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  background: #3c3c50;
  padding: 4rem;
  border-radius: 4.17rem;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tQ3lsUTGwp .content-wrapper {
    padding: 40px;
    padding-bottom: 5rem;
  }
}
@media (max-width: 767px) {
  .cid-tQ3lsUTGwp .content-wrapper {
    padding: 40px 6vw;
    padding-bottom: 5rem;
  }
}
.cid-tQ3lsUTGwp .text-wrapper {
  display: flex;
  flex-direction: column;
  width: 70%;
  padding-left: 40px;
  margin-bottom: 50px;
  padding-left: 0;
  padding-right: 40px;
}
@media (max-width: 991px) {
  .cid-tQ3lsUTGwp .text-wrapper {
    width: 100%;
    margin-bottom: 0;
    margin-top: 24px;
    padding: 0;
  }
}
.cid-tQ3lsUTGwp .mbr-section-title {
  color: #FFDD65;
  width: 100%;
  margin-bottom: 1.5rem;
  text-align: right;
}
.cid-tQ3lsUTGwp .mbr-section-subtitle {
  margin-top: auto;
  color: #ffffff;
  width: 100%;
  text-align: right;
}
.cid-tQ3lsUTGwp .card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
}
.cid-tQ3lsUTGwp .img-container {
  width: 30%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 1.6rem;
}
@media (max-width: 991px) {
  .cid-tQ3lsUTGwp .img-container {
    width: 100%;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1rem;
  }
}
@media (max-width: 575px) {
  .cid-tQ3lsUTGwp .img-container {
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}
.cid-tQ3lsUTGwp .image-wrapper {
  height: 100%;
  border-radius: 2.08rem;
  overflow: hidden;
}
.cid-tQ3lsUTGwp .image-wrapper img {
  aspect-ratio: 0.6;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-tQ3lsUTGwp .image-wrapper img {
    aspect-ratio: 0.75;
  }
}
.cid-tQ3lsUTGwp .btn-container {
  width: 70%;
  margin-top: -3.5rem;
  padding-left: 4rem;
  padding-right: 40px;
  margin-right: auto;
}
.cid-tQ3lsUTGwp .btn-container .mbr-section-btn {
  text-align: left !important;
}
@media (max-width: 991px) {
  .cid-tQ3lsUTGwp .btn-container {
    width: 100%;
    padding: 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-tQ3lsUTGwp .btn-container {
    padding: 0 6vw;
  }
  .cid-tQ3lsUTGwp .btn-container .custom-section-btn {
    width: 100%;
  }
  .cid-tQ3lsUTGwp .btn-container .btn {
    width: 100%;
  }
}
.cid-tQ6biQ791Z {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tQ6biQ791Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQ6biQ791Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQ6biQ791Z .container {
  max-width: 1280px;
}
.cid-tQ6biQ791Z .content-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  background: #3c3c50;
  padding: 4rem;
  border-radius: 4.17rem;
}
@media (max-width: 991px) {
  .cid-tQ6biQ791Z .content-wrapper {
    padding: 40px;
    padding-bottom: 5rem;
  }
}
@media (max-width: 767px) {
  .cid-tQ6biQ791Z .content-wrapper {
    padding: 40px 6vw;
    padding-bottom: 5rem;
  }
}
.cid-tQ6biQ791Z .text-wrapper {
  display: flex;
  flex-direction: column;
  width: 70%;
  padding-left: 40px;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .cid-tQ6biQ791Z .text-wrapper {
    width: 100%;
    margin-bottom: 0;
    margin-top: 24px;
    padding: 0;
  }
}
.cid-tQ6biQ791Z .mbr-section-title {
  color: #FFDD65;
  width: 100%;
  margin-bottom: 1.5rem;
}
.cid-tQ6biQ791Z .mbr-section-subtitle {
  margin-top: auto;
  color: #ffffff;
  width: 100%;
}
.cid-tQ6biQ791Z .card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
}
.cid-tQ6biQ791Z .img-container {
  width: 30%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 1.6rem;
}
@media (max-width: 991px) {
  .cid-tQ6biQ791Z .img-container {
    width: 100%;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1rem;
  }
}
@media (max-width: 575px) {
  .cid-tQ6biQ791Z .img-container {
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}
.cid-tQ6biQ791Z .image-wrapper {
  height: 100%;
  border-radius: 2.08rem;
  overflow: hidden;
}
.cid-tQ6biQ791Z .image-wrapper img {
  aspect-ratio: 0.6;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-tQ6biQ791Z .image-wrapper img {
    aspect-ratio: 0.75;
  }
}
.cid-tQ6biQ791Z .btn-container {
  width: 70%;
  margin-top: -3.5rem;
  padding-right: 4rem;
  padding-left: 40px;
  margin-left: auto;
}
@media (max-width: 991px) {
  .cid-tQ6biQ791Z .btn-container {
    width: 100%;
    padding: 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-tQ6biQ791Z .btn-container {
    padding: 0 6vw;
  }
  .cid-tQ6biQ791Z .btn-container .custom-section-btn {
    width: 100%;
  }
  .cid-tQ6biQ791Z .btn-container .btn {
    width: 100%;
  }
}
.cid-tOq38gueIt {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tOq38gueIt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOq38gueIt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOq38gueIt .container {
  max-width: 1600px;
}
.cid-tOq38gueIt .row {
  justify-content: left;
}
.cid-tOq38gueIt .content-container {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
}
.cid-tOq38gueIt .title-container {
  width: 100%;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .cid-tOq38gueIt .title-container {
    margin-bottom: 50px;
  }
}
.cid-tOq38gueIt .mbr-section-title {
  color: #FFDD65;
}
.cid-tOq38gueIt .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 1rem;
}
.cid-tOq38gueIt .img-container {
  width: 100%;
  max-height: 100vh;
}
@media (max-width: 767px) {
  .cid-tOq38gueIt .img-container {
    height: 350px;
  }
}
.cid-tOq38gueIt .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-tOq38gueIt .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-tOq38gueIt .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-tOq38gueIt .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tOlbP53V8s {
  padding-top: 10rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/bildschirmfoto-2023-08-29-um-08.48.15-1874x882.png");
}
.cid-tOlbP53V8s .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOlbP53V8s .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOlbP53V8s .container {
  max-width: 1280px;
}
.cid-tOlbP53V8s .row {
  justify-content: center;
}
.cid-tOlbP53V8s .col-title {
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .cid-tOlbP53V8s .col-title {
    margin-bottom: 50px;
  }
}
.cid-tOlbP53V8s .mbr-section-title {
  color: #FFDD65;
}
.cid-tOlbP53V8s .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 1rem;
}
.cid-tOlbP53V8s .col-video {
  display: flex;
}
.cid-tOlbP53V8s .col-video img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 1.76rem;
}
@media (max-width: 767px) {
  .cid-tOlbP53V8s .col-video {
    height: 350px;
  }
}
.cid-tOlbP53V8s .col-video .box {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 2.08rem;
  position: relative;
  background-image: linear-gradient(90deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  padding: 5px;
}
.cid-tOlbP53V8s .col-video .box .box-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2.08rem;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  -webkit-filter: blur(1rem);
  filter: blur(1rem);
}
.cid-tOlbP53V8s .col-video .link-container {
  display: flex;
  margin-bottom: 2rem;
}
.cid-tOlbP53V8s .col-video .link {
  margin-right: 1rem;
}
.cid-tOlbP53V8s .col-video .mbr-media {
  display: flex;
  height: 100%;
  width: 100%;
  border-radius: 1.76rem;
  overflow: hidden;
}
.cid-tOlbP53V8s .col-video .mbr-media a:hover {
  background-image: none !important;
}
.cid-tOlbP53V8s .mbr-media {
  position: relative;
}
.cid-tOlbP53V8s .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tOlbP53V8s .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  transition: all .3s;
}
.cid-tOlbP53V8s .icon-wrap:hover {
  transform: translate(-50%, -50%);
}
.cid-tOlbP53V8s .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tOlbP53V8s .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tOlbP53V8s .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tOlbP53V8s .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tOlbP53V8s .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tOlbP53V8s .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tOlbP53V8s a:hover {
  text-decoration-line: none !important;
}
.cid-tOp966w26u {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tOp966w26u .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOp966w26u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOp966w26u .container {
  max-width: 1280px;
}
.cid-tOp966w26u .content-wrapper {
  display: flex;
  align-items: stretch;
  background: #3c3c50;
  padding: 4rem 0;
  border-radius: 4.17rem;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tOp966w26u .content-wrapper {
    flex-wrap: wrap;
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .cid-tOp966w26u .content-wrapper {
    padding: 40px 6vw;
  }
}
.cid-tOp966w26u .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 50%;
  padding-right: 4rem;
  margin-bottom: 24px;
  padding-right: 0;
  padding-left: 4rem;
}
@media (max-width: 991px) {
  .cid-tOp966w26u .text-wrapper {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
  }
}
.cid-tOp966w26u .card-title {
  color: #FFDD65;
  margin-bottom: auto;
}
.cid-tOp966w26u .mbr-text {
  color: #ffffff;
  margin-top: 24px;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-tOp966w26u .mbr-text {
    margin-top: 16px;
  }
}
.cid-tOp966w26u .img-container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  right: -6rem;
}
@media (max-width: 1599px) {
  .cid-tOp966w26u .img-container {
    right: -4vw;
  }
}
@media (max-width: 1400px) {
  .cid-tOp966w26u .img-container {
    right: 0rem;
    left: 0;
    padding: 0 3rem;
  }
}
@media (max-width: 991px) {
  .cid-tOp966w26u .img-container {
    width: 100%;
    margin-bottom: 34px;
    left: 0;
    right: 0;
    padding: 0;
  }
}
.cid-tOp966w26u .image-wrapper {
  aspect-ratio: 1;
  position: relative;
  border-radius: 2.08rem;
  padding: 32px;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
}
@media (max-width: 767px) {
  .cid-tOp966w26u .image-wrapper {
    padding: 20px;
  }
}
.cid-tOp966w26u .image-wrapper .img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2.08rem;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  -webkit-filter: blur(1rem);
  filter: blur(1rem);
}
.cid-tOp966w26u .image-wrapper .img-box {
  position: relative;
  z-index: 11;
  border-radius: 2.08rem;
  overflow: hidden;
  height: 100%;
}
.cid-tOp966w26u .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tQ0dZQm6rS {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #3c3c50;
}
.cid-tQ0dZQm6rS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQ0dZQm6rS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQ0dZQm6rS .container {
  max-width: 1600px;
}
.cid-tQ0dZQm6rS .title-container {
  width: 100%;
  margin-bottom: 120px;
}
@media (max-width: 991px) {
  .cid-tQ0dZQm6rS .title-container {
    margin-bottom: 80px;
  }
}
.cid-tQ0dZQm6rS .mbr-section-title {
  color: #AE5EFF;
}
.cid-tQ0dZQm6rS .content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}
@media (max-width: 991px) {
  .cid-tQ0dZQm6rS .content-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-tQ0dZQm6rS .card-item {
  display: flex;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
}
.cid-tQ0dZQm6rS .img-box {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  margin-right: 1.5rem;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .cid-tQ0dZQm6rS .img-box {
    width: 60px;
    height: 60px;
  }
}
.cid-tQ0dZQm6rS .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tQ0dZQm6rS .card-text {
  color: #FFDD65;
  flex-grow: 1;
}
.cid-tOq8zCG4eB {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tOq8zCG4eB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOq8zCG4eB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOq8zCG4eB .row {
  justify-content: left;
}
.cid-tOq8zCG4eB .mbr-section-title {
  color: #FFDD65;
}
.cid-tOq8zCG4eB .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-tOq8zCG4eB .btn-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 96px;
}
@media (max-width: 991px) {
  .cid-tOq8zCG4eB .btn-container {
    padding-top: 50px;
    flex-direction: column;
    align-items: center;
  }
}
.cid-tOq8zCG4eB .custom-mbr-section-btn {
  padding-bottom: 0.42rem;
}
@media (max-width: 991px) {
  .cid-tOq8zCG4eB .custom-mbr-section-btn {
    padding-bottom: 0;
  }
}
.cid-tOq8zCG4eB .custom-section-btn {
  height: 100%;
}
.cid-tOq8zCG4eB .custom-section-btn .btn {
  height: 100%;
}
.cid-tOq8zCG4eB .text-container {
  max-width: 384px;
  margin-left: 40px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tOq8zCG4eB .text-container {
    margin: 26px auto 0;
  }
}
.cid-tOq8zCG4eB .mbr-text {
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .cid-tOq8zCG4eB .mbr-text {
    text-align: center !important;
  }
}
.cid-tOq8zCG4eB .text-item-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-top: 26px;
}
@media (max-width: 991px) {
  .cid-tOq8zCG4eB .text-item-container {
    flex-wrap: wrap;
  }
}
.cid-tOq8zCG4eB .text-item {
  display: flex;
  align-items: center;
  max-width: 48%;
}
@media (max-width: 991px) {
  .cid-tOq8zCG4eB .text-item {
    max-width: 100%;
    width: 100%;
    justify-content: center;
    margin-bottom: 6px;
  }
}
.cid-tOq8zCG4eB .icon-text {
  color: #ffffff;
  opacity: 0.6;
}
.cid-tOq8zCG4eB .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.cid-tOq8zCG4eB .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 24px;
  color: #ae5eff;
}
.cid-tOq55qAETJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tOq55qAETJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOq55qAETJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOq55qAETJ .container {
  max-width: 1280px;
}
.cid-tOq55qAETJ .content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #3c3c50;
  padding: 4rem;
  border-radius: 4.17rem;
}
@media (max-width: 767px) {
  .cid-tOq55qAETJ .content-wrapper {
    flex-wrap: wrap;
    padding: 4rem 6vw;
  }
}
.cid-tOq55qAETJ .text-wrapper {
  width: 70%;
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .cid-tOq55qAETJ .text-wrapper {
    width: 100%;
    order: 2;
    margin-bottom: 50px;
  }
}
.cid-tOq55qAETJ .card-title {
  color: #FFDD65;
}
.cid-tOq55qAETJ .colored-text {
  line-height: inherit;
  color: inherit;
  color: #ae5eff;
}
.cid-tOq55qAETJ .mbr-text {
  color: #ffffff;
  margin-top: 24px;
}
@media (max-width: 991px) {
  .cid-tOq55qAETJ .mbr-text {
    margin-top: 16px;
  }
}
.cid-tOq55qAETJ .img-container {
  width: 25%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-tOq55qAETJ .img-container {
    order: 1;
    width: 100%;
    justify-content: flex-start;
    margin-bottom: 24px;
  }
}
.cid-tOq55qAETJ .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-tOq55qAETJ .image-wrapper {
    width: 25%;
  }
}
@media (max-width: 575px) {
  .cid-tOq55qAETJ .image-wrapper {
    width: 50%;
  }
}
.cid-tOq55qAETJ .image-wrapper .img-box {
  height: 100%;
}
.cid-tOq55qAETJ .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tOq55qAETJ .btn-container {
  width: 70%;
  padding-left: 4rem;
  margin-right: auto;
  margin-top: -3.5rem;
}
@media (max-width: 767px) {
  .cid-tOq55qAETJ .btn-container {
    padding: 0 6vw;
    width: 100%;
  }
  .cid-tOq55qAETJ .btn-container .custom-section-btn {
    width: 100%;
  }
  .cid-tOq55qAETJ .btn-container .btn {
    width: 100%;
  }
}
.cid-tQ0fS5gS6H {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #3c3c50;
}
.cid-tQ0fS5gS6H .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tQ0fS5gS6H .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tQ0fS5gS6H .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tQ0fS5gS6H .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tQ0fS5gS6H .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tQ0fS5gS6H .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tQ0fS5gS6H .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tQ0fS5gS6H .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tQ0fS5gS6H .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tQ0fS5gS6H .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tQ0fS5gS6H .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tQ0fS5gS6H .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tQ0fS5gS6H .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tQ0fS5gS6H .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tQ0fS5gS6H foot-menu-item {
  color: #e4c03e;
}
