body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Oleo Script', display;
  font-size: 4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Oleo Script', display;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Oleo Script', display;
  font-size: 1.3rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.625rem;
}
.display-5 {
  font-family: 'Oleo Script', display;
  font-size: 1.9rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.375rem;
}
.display-7 {
  font-family: 'Oleo Script', display;
  font-size: 1.3rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.625rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.52rem;
    font-size: calc( 1.315rem + (1.9 - 1.315) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.315rem + (1.9 - 1.315) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((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: #d90a2c !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #d90a2c !important;
  border-color: #d90a2c !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 {
  color: #ffffff !important;
  background-color: #86061b !important;
  border-color: #86061b !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #86061b !important;
  border-color: #86061b !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !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 {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !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 {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !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 {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !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 {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !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 {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !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 {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  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: #232323 !important;
  border-color: #232323 !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 {
  color: #ffffff !important;
  background-color: #000000 !important;
  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: #d90a2c;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #86061b !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: #d90a2c !important;
  border-color: #d90a2c !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !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: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !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: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !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: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: 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: #d90a2c !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #770618 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !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: #d90a2c;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #d90a2c;
  border-color: #d90a2c;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #d90a2c;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fcb3bf;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.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: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Oleo Script', display;
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.625rem;
}
.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: #d90a2c !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Oleo Script', display;
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.625rem;
}
blockquote {
  border-color: #d90a2c;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #d90a2c;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #d90a2c;
}
.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: #d90a2c;
  border-bottom-color: #d90a2c;
}
.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: #d90a2c !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: #ff6666 !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='%23d90a2c' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-uJ5ZDpmu6B {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uJ5ZDpmu6B nav.navbar {
  position: fixed;
}
.cid-uJ5ZDpmu6B .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-uJ5ZDpmu6B .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uJ5ZDpmu6B .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uJ5ZDpmu6B .dropdown-item:hover,
.cid-uJ5ZDpmu6B .dropdown-item:focus {
  background: #d90a2c !important;
  color: white !important;
}
.cid-uJ5ZDpmu6B .dropdown-item:hover span {
  color: white;
}
.cid-uJ5ZDpmu6B .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uJ5ZDpmu6B .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uJ5ZDpmu6B .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uJ5ZDpmu6B .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uJ5ZDpmu6B .nav-link {
  position: relative;
}
.cid-uJ5ZDpmu6B .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uJ5ZDpmu6B .container {
    flex-wrap: wrap;
  }
}
.cid-uJ5ZDpmu6B .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uJ5ZDpmu6B .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uJ5ZDpmu6B .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uJ5ZDpmu6B .dropdown-menu,
.cid-uJ5ZDpmu6B .navbar.opened {
  background: #000000 !important;
}
.cid-uJ5ZDpmu6B .nav-item:focus,
.cid-uJ5ZDpmu6B .nav-link:focus {
  outline: none;
}
.cid-uJ5ZDpmu6B .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uJ5ZDpmu6B .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uJ5ZDpmu6B .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uJ5ZDpmu6B .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uJ5ZDpmu6B .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uJ5ZDpmu6B .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uJ5ZDpmu6B .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uJ5ZDpmu6B .navbar.opened {
  transition: all 0.3s;
}
.cid-uJ5ZDpmu6B .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uJ5ZDpmu6B .navbar .navbar-logo img {
  width: auto;
}
.cid-uJ5ZDpmu6B .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uJ5ZDpmu6B .navbar.collapsed {
  justify-content: center;
}
.cid-uJ5ZDpmu6B .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uJ5ZDpmu6B .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uJ5ZDpmu6B .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-uJ5ZDpmu6B .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uJ5ZDpmu6B .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uJ5ZDpmu6B .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-uJ5ZDpmu6B .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uJ5ZDpmu6B .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uJ5ZDpmu6B .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uJ5ZDpmu6B .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uJ5ZDpmu6B .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uJ5ZDpmu6B .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uJ5ZDpmu6B .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uJ5ZDpmu6B .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-uJ5ZDpmu6B .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uJ5ZDpmu6B .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uJ5ZDpmu6B .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uJ5ZDpmu6B .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uJ5ZDpmu6B .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uJ5ZDpmu6B .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uJ5ZDpmu6B .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uJ5ZDpmu6B .navbar.navbar-short {
  min-height: 60px;
}
.cid-uJ5ZDpmu6B .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uJ5ZDpmu6B .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uJ5ZDpmu6B .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uJ5ZDpmu6B .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uJ5ZDpmu6B .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uJ5ZDpmu6B .dropdown-item.active,
.cid-uJ5ZDpmu6B .dropdown-item:active {
  background-color: transparent;
}
.cid-uJ5ZDpmu6B .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uJ5ZDpmu6B .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uJ5ZDpmu6B .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uJ5ZDpmu6B .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uJ5ZDpmu6B .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uJ5ZDpmu6B .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uJ5ZDpmu6B ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uJ5ZDpmu6B .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uJ5ZDpmu6B button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uJ5ZDpmu6B button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uJ5ZDpmu6B button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uJ5ZDpmu6B button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJ5ZDpmu6B button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJ5ZDpmu6B button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uJ5ZDpmu6B nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJ5ZDpmu6B nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uJ5ZDpmu6B nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uJ5ZDpmu6B nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJ5ZDpmu6B .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uJ5ZDpmu6B a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uJ5ZDpmu6B .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-uJ5ZDpmu6B .navbar {
    height: 70px;
  }
  .cid-uJ5ZDpmu6B .navbar.opened {
    height: auto;
  }
  .cid-uJ5ZDpmu6B .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uJa3QGTkV2 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uJa3QGTkV2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJa3QGTkV2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJa3QGTkV2 .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uJa3QGTkV2 .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-ubVtnr2IeO {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background: #ffe885;
}
.cid-ubVtnr2IeO .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-ubVtnr2IeO .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #d90a2c;
}
.cid-ubVtnr2IeO .svg-top .st0 {
  fill: #ffe885;
}
@media (max-width: 992px) {
  .cid-ubVtnr2IeO .svg-top {
    width: 1000px;
  }
}
.cid-ubVtnr2IeO .google-map {
  height: 35rem;
  position: relative;
}
.cid-ubVtnr2IeO .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ubVtnr2IeO .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-ubVtnr2IeO .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ubVtnr2IeO .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-ubVtnr2IeO .mbr-section-title {
  color: #232323;
  text-align: center;
}
.cid-ubVtnr2IeO .mbr-section-subtitle {
  color: #1a449a;
}
.cid-uLhpjNb7RA {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffe885;
}
.cid-uLhpjNb7RA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLhpjNb7RA .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-uLhpjNb7RA .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uLhpjNb7RA .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-uLhpjNb7RA a {
  font-weight: 600;
}
.cid-uLhpjNb7RA a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-uLhpjNb7RA .col-lg-3,
  .cid-uLhpjNb7RA .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-uLhpjNb7RA .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-uLhpjNb7RA .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-uLhpjNb7RA h5 {
  margin: 0;
}
.cid-uLhpjNb7RA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLhpjNb7RA .iconfont-wrapper {
  position: relative;
}
.cid-uLhpjNb7RA .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-uLhpjNb7RA .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-uLhpjNb7RA .sociconfont-wrapper {
  display: flex;
}
.cid-uLhpjNb7RA .card-title,
.cid-uLhpjNb7RA .iconfont-wrapper {
  color: #000000;
  text-align: left;
}
.cid-uLhpjNb7RA .card-text {
  color: #000000;
}
.cid-uLhpjNb7RA .mbr-section-title {
  color: #000000;
}
.cid-uLhpjNb7RA .main-title,
.cid-uLhpjNb7RA .iconfont-wrapper {
  text-align: left;
}
.cid-uJ5ZDpmu6B {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uJ5ZDpmu6B nav.navbar {
  position: fixed;
}
.cid-uJ5ZDpmu6B .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-uJ5ZDpmu6B .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uJ5ZDpmu6B .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uJ5ZDpmu6B .dropdown-item:hover,
.cid-uJ5ZDpmu6B .dropdown-item:focus {
  background: #d90a2c !important;
  color: white !important;
}
.cid-uJ5ZDpmu6B .dropdown-item:hover span {
  color: white;
}
.cid-uJ5ZDpmu6B .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uJ5ZDpmu6B .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uJ5ZDpmu6B .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uJ5ZDpmu6B .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uJ5ZDpmu6B .nav-link {
  position: relative;
}
.cid-uJ5ZDpmu6B .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uJ5ZDpmu6B .container {
    flex-wrap: wrap;
  }
}
.cid-uJ5ZDpmu6B .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uJ5ZDpmu6B .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uJ5ZDpmu6B .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uJ5ZDpmu6B .dropdown-menu,
.cid-uJ5ZDpmu6B .navbar.opened {
  background: #000000 !important;
}
.cid-uJ5ZDpmu6B .nav-item:focus,
.cid-uJ5ZDpmu6B .nav-link:focus {
  outline: none;
}
.cid-uJ5ZDpmu6B .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uJ5ZDpmu6B .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uJ5ZDpmu6B .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uJ5ZDpmu6B .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uJ5ZDpmu6B .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uJ5ZDpmu6B .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uJ5ZDpmu6B .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uJ5ZDpmu6B .navbar.opened {
  transition: all 0.3s;
}
.cid-uJ5ZDpmu6B .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uJ5ZDpmu6B .navbar .navbar-logo img {
  width: auto;
}
.cid-uJ5ZDpmu6B .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uJ5ZDpmu6B .navbar.collapsed {
  justify-content: center;
}
.cid-uJ5ZDpmu6B .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uJ5ZDpmu6B .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uJ5ZDpmu6B .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-uJ5ZDpmu6B .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uJ5ZDpmu6B .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uJ5ZDpmu6B .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-uJ5ZDpmu6B .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uJ5ZDpmu6B .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uJ5ZDpmu6B .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uJ5ZDpmu6B .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uJ5ZDpmu6B .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uJ5ZDpmu6B .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uJ5ZDpmu6B .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uJ5ZDpmu6B .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-uJ5ZDpmu6B .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uJ5ZDpmu6B .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uJ5ZDpmu6B .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uJ5ZDpmu6B .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uJ5ZDpmu6B .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uJ5ZDpmu6B .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uJ5ZDpmu6B .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uJ5ZDpmu6B .navbar.navbar-short {
  min-height: 60px;
}
.cid-uJ5ZDpmu6B .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uJ5ZDpmu6B .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uJ5ZDpmu6B .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uJ5ZDpmu6B .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uJ5ZDpmu6B .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uJ5ZDpmu6B .dropdown-item.active,
.cid-uJ5ZDpmu6B .dropdown-item:active {
  background-color: transparent;
}
.cid-uJ5ZDpmu6B .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uJ5ZDpmu6B .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uJ5ZDpmu6B .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uJ5ZDpmu6B .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uJ5ZDpmu6B .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uJ5ZDpmu6B .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uJ5ZDpmu6B ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uJ5ZDpmu6B .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uJ5ZDpmu6B button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uJ5ZDpmu6B button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uJ5ZDpmu6B button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uJ5ZDpmu6B button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJ5ZDpmu6B button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJ5ZDpmu6B button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uJ5ZDpmu6B nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJ5ZDpmu6B nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uJ5ZDpmu6B nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uJ5ZDpmu6B nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJ5ZDpmu6B .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uJ5ZDpmu6B a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uJ5ZDpmu6B .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-uJ5ZDpmu6B .navbar {
    height: 70px;
  }
  .cid-uJ5ZDpmu6B .navbar.opened {
    height: auto;
  }
  .cid-uJ5ZDpmu6B .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uLfXlz9ppY {
  padding-top: 12rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uLfXlz9ppY .decor-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 52%;
  height: 95%;
  border-radius: 0 85% 0 0;
  background-color: #ffe885;
  pointer-events: none;
}
@media (max-width: 992px) {
  .cid-uLfXlz9ppY .decor-wrap {
    width: 60%;
    height: 50%;
    border-radius: 0 50% 0 0;
  }
}
.cid-uLfXlz9ppY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLfXlz9ppY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLfXlz9ppY .row {
  position: relative;
  z-index: 1;
}
.cid-uLfXlz9ppY .title-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uLfXlz9ppY .title-wrapper .mbr-section-title {
    margin-bottom: 46px;
  }
}
.cid-uLfXlz9ppY .image-wrapper {
  margin-right: 18px;
  margin-right: 0;
  margin-left: 18px;
}
@media (max-width: 992px) {
  .cid-uLfXlz9ppY .image-wrapper {
    margin-right: 0;
    margin-bottom: 46px;
  }
}
@media (max-width: 992px) {
  .cid-uLfXlz9ppY .image-wrapper {
    margin-left: 0;
  }
}
.cid-uLfXlz9ppY .image-wrapper img {
  height: 620px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uLfXlz9ppY .image-wrapper img {
    height: 350px;
  }
}
.cid-uLfXlz9ppY .content-wrapper {
  padding-top: 64px;
}
@media (max-width: 992px) {
  .cid-uLfXlz9ppY .content-wrapper {
    padding-top: 22px;
  }
}
.cid-uLfXlz9ppY .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 46px;
  display: inline-block;
  width: 55%;
}
@media (max-width: 992px) {
  .cid-uLfXlz9ppY .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 22px;
  }
}
.cid-uLfXlz9ppY .content-wrapper .desc-wrapper {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uLfXlz9ppY .content-wrapper .desc-wrapper {
    display: block;
  }
}
.cid-uLfXlz9ppY .content-wrapper .desc-wrapper .mbr-desc {
  width: 50%;
  margin-right: 20px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uLfXlz9ppY .content-wrapper .desc-wrapper .mbr-desc {
    margin-right: 0;
    width: 100%;
    margin-bottom: 12px;
  }
}
.cid-uLfXlz9ppY .content-wrapper .desc-wrapper .mbr-section-btn {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uLfXlz9ppY .content-wrapper .desc-wrapper .mbr-section-btn {
    width: 100%;
  }
}
.cid-uLfXlz9ppY .content-wrapper .desc-wrapper .mbr-section-btn .btn {
  padding: 29px 64px;
}
@media (max-width: 1200px) {
  .cid-uLfXlz9ppY .content-wrapper .desc-wrapper .mbr-section-btn .btn {
    padding: 20px 32px;
  }
}
.cid-uLfXlz9ppY .mbr-section-title {
  color: #212529;
  text-align: center;
}
.cid-uLfXlz9ppY .mbr-text {
  color: #51565c;
}
.cid-uLfXlz9ppY .mbr-desc {
  color: #51565c;
}
.cid-uLfXlz9ppY .mbr-text,
.cid-uLfXlz9ppY .text-wrapper {
  color: #000000;
}
.cid-uJ9iVyzJrZ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uJ9iVyzJrZ .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uJ9iVyzJrZ .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-uJ9iVyzJrZ .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #d90a2c;
  background-color: #000000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #000000;
  color: #000000;
  content: "✓";
}
.cid-uJ9iVyzJrZ .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-uJ9iVyzJrZ .mbr-text {
  color: #000000;
}
.cid-uJ9iVyzJrZ .mbr-subtitle {
  text-align: center;
  color: #eff0ff;
}
.cid-ubUYEEoQYp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffe885;
}
.cid-ubUYEEoQYp .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uLfYWyTF9H {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uLfYWyTF9H .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLfYWyTF9H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLfYWyTF9H .content-wrapper {
  padding: 10px;
  border-top: 10px solid #000000;
  box-shadow: 0 19px 45px 0 #0000001a;
  background-color: #ffffff;
}
.cid-uLfYWyTF9H .content-wrapper .content-wrap {
  padding: 40px 40px 50px;
}
@media (max-width: 992px) {
  .cid-uLfYWyTF9H .content-wrapper .content-wrap {
    padding: 10px 10px 30px;
  }
}
.cid-uLfYWyTF9H .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 20px;
}
.cid-uLfYWyTF9H .content-wrapper .content-wrap .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uLfYWyTF9H .content-wrapper .content-wrap .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uLfYWyTF9H .image-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 992px) {
  .cid-uLfYWyTF9H .image-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-uLfYWyTF9H .image-wrapper .image-wrap img {
  height: 430px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uLfYWyTF9H .image-wrapper .image-wrap img {
    height: 300px;
  }
}
.cid-uLfYWyTF9H .mbr-section-title {
  color: #000c3f;
}
.cid-uLfYWyTF9H .mbr-text {
  color: #000c3f;
}
.cid-uLfYWyTF9H .mbr-section-title,
.cid-uLfYWyTF9H .mbr-section-btn {
  color: #000000;
}
.cid-uLfYWyTF9H .mbr-text,
.cid-uLfYWyTF9H .text-wrapper {
  color: #000000;
}
.cid-ubUYYOofPE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffe885;
  position: relative;
  overflow: hidden;
}
.cid-ubUYYOofPE .row {
  justify-content: center;
}
.cid-ubUYYOofPE .title-container {
  max-width: 720px;
  padding: 0;
  margin-bottom: 80px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 991px) {
  .cid-ubUYYOofPE .title-container {
    margin-bottom: 64px;
  }
}
@media (max-width: 767px) {
  .cid-ubUYYOofPE .title-container {
    margin-bottom: 56px;
  }
}
.cid-ubUYYOofPE .mbr-section-title {
  color: #6148ff;
}
.cid-ubUYYOofPE .mbr-section-subtitle {
  color: #161616;
  margin-top: 24px;
}
.cid-ubUYYOofPE .grid-container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 80px;
  grid-row-gap: 0;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-ubUYYOofPE .grid-container {
    grid-column-gap: 48px;
  }
}
@media (max-width: 767px) {
  .cid-ubUYYOofPE .grid-container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.cid-ubUYYOofPE .content-container {
  display: flex;
  padding: 0 !important;
}
.cid-ubUYYOofPE .text-container {
  margin-bottom: 24px;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  border-radius: 16px;
}
@media (max-width: 767px) {
  .cid-ubUYYOofPE .text-container {
    margin-bottom: 56px;
    padding: 0;
  }
}
.cid-ubUYYOofPE .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  flex-grow: 1;
}
.cid-ubUYYOofPE .text-padding {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0;
}
.cid-ubUYYOofPE .opinion-stars {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-bottom: 21px;
}
@media (max-width: 767px) {
  .cid-ubUYYOofPE .opinion-stars {
    margin-bottom: 13px;
  }
}
.cid-ubUYYOofPE .iconfont-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3px 3px;
}
.cid-ubUYYOofPE .iconfont-wrapper .mbr-iconfont {
  font-size: 21px;
  color: #3e1fff;
}
.cid-ubUYYOofPE .card-title {
  width: 100%;
  color: #000000;
  margin-bottom: 1rem;
  margin-top: 8px;
}
.cid-ubUYYOofPE .mbr-text {
  width: 100%;
  color: #000000;
  opacity: 0.75;
  margin-bottom: 40px !important;
}
@media (max-width: 767px) {
  .cid-ubUYYOofPE .mbr-text {
    margin-bottom: 24px !important;
  }
}
.cid-ubUYYOofPE .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 16px;
  border-radius: 12px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .cid-ubUYYOofPE .image-wrapper {
    width: 48px;
    height: 48px;
  }
}
.cid-ubUYYOofPE .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-ubUYYOofPE .name-text {
  color: #161616;
  width: 100%;
  margin-bottom: 0;
}
.cid-ubUYYOofPE .prof-text {
  max-width: 350px;
  color: #000000;
  opacity: 0.75;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-ubUYYOofPE .prof-text {
    max-width: 100%;
    width: 100%;
  }
}
.cid-ubUYYOofPE .circle-blur {
  position: absolute;
  top: 5%;
  right: 5% !important;
  bottom: auto;
  display: block;
  width: 440px;
  height: 440px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  background-image: linear-gradient(132deg, #feff98 27%, #ff3399 50%, #99f5fe 79%);
  opacity: .97;
  -webkit-filter: blur(64px) blur(64px);
  filter: blur(64px) blur(64px);
}
.cid-uJ7RzKUa2n {
  overflow: hidden;
  background-color: #f4f4f6;
}
.cid-uJ7RzKUa2n .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ7RzKUa2n .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ7RzKUa2n .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uJ7RzKUa2n .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uJ7RzKUa2n .container {
    padding: 0 24px;
  }
}
.cid-uJ7RzKUa2n .content-wrapper {
  position: relative;
  z-index: 1;
}
.cid-uJ7RzKUa2n .content-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uJ7RzKUa2n .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uJ7RzKUa2n .content-wrapper .mbr-desc {
  margin-bottom: 56px;
}
.cid-uJ7RzKUa2n .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uJ7RzKUa2n .content-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-uJ7RzKUa2n .content-wrapper .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #fb8fc9 0%, transparent 100%);
}
.cid-uJ7RzKUa2n .content-wrapper .mbr-section-btn .btn:hover,
.cid-uJ7RzKUa2n .content-wrapper .mbr-section-btn .btn:focus {
  box-shadow: inset 250px 10px 5px #7f89e9 !important;
  border-color: #7f89e9 !important;
}
.cid-uJ7RzKUa2n .decor-wrapper {
  position: absolute;
  bottom: -100%;
  left: 0;
  display: flex;
  justify-content: center;
  width: 100%;
}
.cid-uJ7RzKUa2n .decor-wrapper .decor-wrap {
  width: 400px;
  height: 400px;
  border-radius: 100%;
  filter: blur(80px);
}
.cid-uJ7RzKUa2n .decor-wrapper .decor_1 {
  background-color: #f8e885;
}
.cid-uJ7RzKUa2n .decor-wrapper .decor_2 {
  background-color: #22aa93;
}
.cid-uJ7RzKUa2n .decor-wrapper .decor_3 {
  background-color: #f7fff7;
}
.cid-uJ7RzKUa2n .decor-wrapper .decor_4 {
  background-color: #82ebff;
}
.cid-uJ7RzKUa2n .mbr-section-title {
  color: #141414;
}
.cid-uJ7RzKUa2n .mbr-section-subtitle {
  color: #141414;
  text-align: center;
}
.cid-uJ7RzKUa2n .mbr-desc {
  color: #141414;
  text-align: center;
}
.cid-uJ7RzKUa2n .mbr-text {
  color: #141414;
  text-align: center;
}
.cid-uJ7RzKUa2n .mbr-section-title,
.cid-uJ7RzKUa2n .mbr-section-btn {
  text-align: center;
}
.cid-uJ66AVB1KS {
  padding-top: 1rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uJ66AVB1KS img,
.cid-uJ66AVB1KS .item-img {
  width: 100%;
}
.cid-uJ66AVB1KS .item:focus,
.cid-uJ66AVB1KS span:focus {
  outline: none;
}
.cid-uJ66AVB1KS .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uJ66AVB1KS .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffe885;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uJ66AVB1KS .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uJ66AVB1KS .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uJ66AVB1KS .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uJ66AVB1KS .mbr-section-title {
  color: #232323;
}
.cid-uJ66AVB1KS .mbr-text,
.cid-uJ66AVB1KS .mbr-section-btn {
  text-align: left;
}
.cid-uJ66AVB1KS .item-title {
  text-align: left;
  color: #000000;
}
.cid-uJ66AVB1KS .item-subtitle {
  text-align: left;
}
.cid-uJ9hIFxkyu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffe885;
  position: relative;
  overflow: hidden;
}
.cid-uJ9hIFxkyu::before {
  content: '';
  position: absolute;
  top: 0;
  right: 4rem;
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background-image: linear-gradient(180deg, #fafafa -10%, transparent 70%);
}
.cid-uJ9hIFxkyu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ9hIFxkyu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uJ9hIFxkyu .container {
    padding: 0 16px;
  }
}
.cid-uJ9hIFxkyu .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-uJ9hIFxkyu .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uJ9hIFxkyu .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uJ9hIFxkyu .mbr-section-title {
  color: #000000;
}
.cid-uJ9hIFxkyu .mbr-text {
  color: #000000;
}
.cid-uLg1EMMl6m {
  padding-top: 7rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uLg1EMMl6m img,
.cid-uLg1EMMl6m .item-img {
  width: 100%;
}
.cid-uLg1EMMl6m .item:focus,
.cid-uLg1EMMl6m span:focus {
  outline: none;
}
.cid-uLg1EMMl6m .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uLg1EMMl6m .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uLg1EMMl6m .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uLg1EMMl6m .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uLg1EMMl6m .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uLg1EMMl6m .mbr-section-title {
  color: #232323;
}
.cid-uLg1EMMl6m .mbr-text,
.cid-uLg1EMMl6m .mbr-section-btn {
  text-align: left;
}
.cid-uLg1EMMl6m .item-title {
  text-align: left;
}
.cid-uLg1EMMl6m .item-subtitle {
  text-align: left;
}
.cid-uJ9oQK6S1t {
  padding-top: 11rem;
  padding-bottom: 5rem;
  background-color: #ffe885;
  overflow: hidden;
}
.cid-uJ9oQK6S1t .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ9oQK6S1t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uJ9oQK6S1t .container {
    padding: 0 22px;
  }
}
.cid-uJ9oQK6S1t .card {
  justify-content: center;
}
.cid-uJ9oQK6S1t .content-wrapper {
  padding-right: 32px;
  padding-right: 0;
  padding-left: 32px;
}
@media (max-width: 992px) {
  .cid-uJ9oQK6S1t .content-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uJ9oQK6S1t .content-wrapper {
    padding: 0;
    margin-bottom: 40px;
  }
}
.cid-uJ9oQK6S1t .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uJ9oQK6S1t .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uJ9oQK6S1t .image-wrapper {
  display: flex;
  justify-content: center;
}
.cid-uJ9oQK6S1t .image-wrapper img {
  height: 600px;
  width: 600px;
  border-radius: 100% !important;
  object-fit: cover;
  box-shadow: 10px 10px 60px #e43f3f;
}
@media (max-width: 1440px) {
  .cid-uJ9oQK6S1t .image-wrapper img {
    height: 500px;
    width: 500px;
  }
}
@media (max-width: 1200px) {
  .cid-uJ9oQK6S1t .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 992px) {
  .cid-uJ9oQK6S1t .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 768px) {
  .cid-uJ9oQK6S1t .image-wrapper img {
    height: 260px;
    width: 260px;
  }
}
.cid-uJ9oQK6S1t .mbr-section-title {
  color: #000000;
}
.cid-uJ9oQK6S1t .mbr-text {
  color: #000000;
}
.cid-ubV0iDvTBf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ubV0iDvTBf .mbr-fallback-image.disabled {
  display: none;
}
.cid-ubV0iDvTBf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ubV0iDvTBf .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-ubV0iDvTBf .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-ubV0iDvTBf .container {
    padding: 0 30px;
  }
}
.cid-ubV0iDvTBf .mbr-section-title {
  margin-bottom: 70px;
  color: #000000;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-ubV0iDvTBf .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-ubV0iDvTBf .video-block .video-wrapper .app-video-wrapper img {
  height: 700px;
  object-fit: cover;
  border-radius: 2em;
}
@media (max-width: 992px) {
  .cid-ubV0iDvTBf .video-block .video-wrapper .app-video-wrapper img {
    height: 350px;
  }
}
.cid-ubV0iDvTBf .video-block .video-wrapper .app-video-wrapper::before {
  color: #fff0b0;
  text-shadow: none;
}
.cid-ubV0iDvTBf .video-block .video-wrapper iframe {
  height: 700px;
  object-fit: cover;
  border-radius: 2em;
}
@media (max-width: 992px) {
  .cid-ubV0iDvTBf .video-block .video-wrapper iframe {
    height: 350px;
  }
}
.cid-uLgWtreGXm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uLg82PKN26 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #232323;
}
.cid-uLg82PKN26 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLg82PKN26 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uLg82PKN26 .container {
    padding: 0 20px;
  }
}
@media (max-width: 767px) {
  .cid-uLg82PKN26 .container {
    padding: 0 4px;
  }
}
.cid-uLg82PKN26 .row {
  margin: 0;
}
.cid-uLg82PKN26 .row .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uLg82PKN26 .row .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uLg82PKN26 .row .panel-group .card {
  border-bottom: 1px solid #838383;
  border-radius: 0 !important;
}
.cid-uLg82PKN26 .row .panel-group .card:first-child {
  border-top: 1px solid #838383;
}
.cid-uLg82PKN26 .row .panel-group .card .card-header {
  padding: 32px 0;
  border-bottom: none;
  background-color: transparent;
}
.cid-uLg82PKN26 .row .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-uLg82PKN26 .row .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(-45deg);
}
.cid-uLg82PKN26 .row .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uLg82PKN26 .row .panel-group .card .card-header .panel-title .mbr-iconfont {
  font-size: 24px;
  transition: all 0.3s ease-out;
}
.cid-uLg82PKN26 .row .panel-group .card .panel-collapse .panel-body {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uLg82PKN26 .row .panel-group .card .panel-collapse .panel-body {
    margin-bottom: 32px;
  }
}
.cid-uLg82PKN26 .row .panel-group .card .panel-collapse .panel-body .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uLg82PKN26 .row .panel-group .card .panel-collapse .panel-body .mbr-text {
    margin-bottom: 32px;
  }
}
.cid-uLg82PKN26 .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-uLg82PKN26 .panel-title-edit,
.cid-uLg82PKN26 .mbr-iconfont {
  color: #ffffff;
}
.cid-uLg82PKN26 .mbr-text {
  color: #ffffff;
}
.cid-uJ9dSHs3J5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #000000;
}
.cid-uJ9dSHs3J5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ9dSHs3J5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ9dSHs3J5 .google-map {
  height: 30rem;
  position: relative;
}
.cid-uJ9dSHs3J5 .google-map iframe {
  height: 100%;
  width: 100%;
  background-color: #000000;
  padding: 4px;
}
.cid-uJ9dSHs3J5 .google-map [data-state-details] {
  color: #4b4b4b;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uJ9dSHs3J5 .google-map[data-state] {
  background: #fffff5;
}
.cid-uJ9dSHs3J5 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uJ9dSHs3J5 .mbr-section-title {
  color: #ffffff;
}
.cid-ubVqmsH2IK {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffe885;
}
.cid-ubVqmsH2IK .mbr-fallback-image.disabled {
  display: none;
}
.cid-ubVqmsH2IK .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-ubVqmsH2IK .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ubVqmsH2IK .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-ubVqmsH2IK a {
  font-weight: 600;
}
.cid-ubVqmsH2IK a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-ubVqmsH2IK .col-lg-3,
  .cid-ubVqmsH2IK .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-ubVqmsH2IK .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-ubVqmsH2IK .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-ubVqmsH2IK h5 {
  margin: 0;
}
.cid-ubVqmsH2IK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ubVqmsH2IK .iconfont-wrapper {
  position: relative;
}
.cid-ubVqmsH2IK .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-ubVqmsH2IK .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-ubVqmsH2IK .sociconfont-wrapper {
  display: flex;
}
.cid-ubVqmsH2IK .card-title,
.cid-ubVqmsH2IK .iconfont-wrapper {
  color: #000000;
  text-align: left;
}
.cid-ubVqmsH2IK .card-text {
  color: #000000;
}
.cid-ubVqmsH2IK .mbr-section-title {
  color: #000000;
}
.cid-ubVqmsH2IK .main-title,
.cid-ubVqmsH2IK .iconfont-wrapper {
  text-align: left;
}
.cid-uJ6rl8DDxc {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uJ6rl8DDxc nav.navbar {
  position: fixed;
}
.cid-uJ6rl8DDxc .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-uJ6rl8DDxc .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uJ6rl8DDxc .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uJ6rl8DDxc .dropdown-item:hover,
.cid-uJ6rl8DDxc .dropdown-item:focus {
  background: #d90a2c !important;
  color: white !important;
}
.cid-uJ6rl8DDxc .dropdown-item:hover span {
  color: white;
}
.cid-uJ6rl8DDxc .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uJ6rl8DDxc .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uJ6rl8DDxc .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uJ6rl8DDxc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uJ6rl8DDxc .nav-link {
  position: relative;
}
.cid-uJ6rl8DDxc .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uJ6rl8DDxc .container {
    flex-wrap: wrap;
  }
}
.cid-uJ6rl8DDxc .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uJ6rl8DDxc .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uJ6rl8DDxc .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uJ6rl8DDxc .dropdown-menu,
.cid-uJ6rl8DDxc .navbar.opened {
  background: #000000 !important;
}
.cid-uJ6rl8DDxc .nav-item:focus,
.cid-uJ6rl8DDxc .nav-link:focus {
  outline: none;
}
.cid-uJ6rl8DDxc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uJ6rl8DDxc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uJ6rl8DDxc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uJ6rl8DDxc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uJ6rl8DDxc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uJ6rl8DDxc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uJ6rl8DDxc .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uJ6rl8DDxc .navbar.opened {
  transition: all 0.3s;
}
.cid-uJ6rl8DDxc .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uJ6rl8DDxc .navbar .navbar-logo img {
  width: auto;
}
.cid-uJ6rl8DDxc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uJ6rl8DDxc .navbar.collapsed {
  justify-content: center;
}
.cid-uJ6rl8DDxc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uJ6rl8DDxc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uJ6rl8DDxc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-uJ6rl8DDxc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uJ6rl8DDxc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uJ6rl8DDxc .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-uJ6rl8DDxc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uJ6rl8DDxc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uJ6rl8DDxc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uJ6rl8DDxc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uJ6rl8DDxc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uJ6rl8DDxc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uJ6rl8DDxc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uJ6rl8DDxc .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-uJ6rl8DDxc .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uJ6rl8DDxc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uJ6rl8DDxc .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uJ6rl8DDxc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uJ6rl8DDxc .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uJ6rl8DDxc .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uJ6rl8DDxc .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uJ6rl8DDxc .navbar.navbar-short {
  min-height: 60px;
}
.cid-uJ6rl8DDxc .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uJ6rl8DDxc .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uJ6rl8DDxc .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uJ6rl8DDxc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uJ6rl8DDxc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uJ6rl8DDxc .dropdown-item.active,
.cid-uJ6rl8DDxc .dropdown-item:active {
  background-color: transparent;
}
.cid-uJ6rl8DDxc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uJ6rl8DDxc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uJ6rl8DDxc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uJ6rl8DDxc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uJ6rl8DDxc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uJ6rl8DDxc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uJ6rl8DDxc ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uJ6rl8DDxc .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uJ6rl8DDxc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uJ6rl8DDxc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uJ6rl8DDxc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uJ6rl8DDxc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJ6rl8DDxc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJ6rl8DDxc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uJ6rl8DDxc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJ6rl8DDxc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uJ6rl8DDxc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uJ6rl8DDxc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJ6rl8DDxc .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uJ6rl8DDxc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uJ6rl8DDxc .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-uJ6rl8DDxc .navbar {
    height: 70px;
  }
  .cid-uJ6rl8DDxc .navbar.opened {
    height: auto;
  }
  .cid-uJ6rl8DDxc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uJa4ia9zDy {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uJa4ia9zDy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJa4ia9zDy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJa4ia9zDy .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uJa4ia9zDy .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-uJ6rl73UqN {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background: #ffe885;
}
.cid-uJ6rl73UqN .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uJ6rl73UqN .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #d90a2c;
}
.cid-uJ6rl73UqN .svg-top .st0 {
  fill: #ffe885;
}
@media (max-width: 992px) {
  .cid-uJ6rl73UqN .svg-top {
    width: 1000px;
  }
}
.cid-uJ6rl73UqN .google-map {
  height: 35rem;
  position: relative;
}
.cid-uJ6rl73UqN .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uJ6rl73UqN .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uJ6rl73UqN .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uJ6rl73UqN .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uJ6rl73UqN .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uJ6rl73UqN .mbr-section-subtitle {
  color: #1a449a;
}
.cid-uLhpGDaY8a {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffe885;
}
.cid-uLhpGDaY8a .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLhpGDaY8a .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-uLhpGDaY8a .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uLhpGDaY8a .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-uLhpGDaY8a a {
  font-weight: 600;
}
.cid-uLhpGDaY8a a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-uLhpGDaY8a .col-lg-3,
  .cid-uLhpGDaY8a .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-uLhpGDaY8a .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-uLhpGDaY8a .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-uLhpGDaY8a h5 {
  margin: 0;
}
.cid-uLhpGDaY8a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLhpGDaY8a .iconfont-wrapper {
  position: relative;
}
.cid-uLhpGDaY8a .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-uLhpGDaY8a .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-uLhpGDaY8a .sociconfont-wrapper {
  display: flex;
}
.cid-uLhpGDaY8a .card-title,
.cid-uLhpGDaY8a .iconfont-wrapper {
  color: #000000;
  text-align: left;
}
.cid-uLhpGDaY8a .card-text {
  color: #000000;
}
.cid-uLhpGDaY8a .mbr-section-title {
  color: #000000;
}
.cid-uLhpGDaY8a .main-title,
.cid-uLhpGDaY8a .iconfont-wrapper {
  text-align: left;
}
.cid-uLh0Uci2Ds {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uLh0Uci2Ds nav.navbar {
  position: fixed;
}
.cid-uLh0Uci2Ds .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-uLh0Uci2Ds .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uLh0Uci2Ds .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uLh0Uci2Ds .dropdown-item:hover,
.cid-uLh0Uci2Ds .dropdown-item:focus {
  background: #d90a2c !important;
  color: white !important;
}
.cid-uLh0Uci2Ds .dropdown-item:hover span {
  color: white;
}
.cid-uLh0Uci2Ds .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uLh0Uci2Ds .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uLh0Uci2Ds .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uLh0Uci2Ds .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uLh0Uci2Ds .nav-link {
  position: relative;
}
.cid-uLh0Uci2Ds .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uLh0Uci2Ds .container {
    flex-wrap: wrap;
  }
}
.cid-uLh0Uci2Ds .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uLh0Uci2Ds .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uLh0Uci2Ds .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uLh0Uci2Ds .dropdown-menu,
.cid-uLh0Uci2Ds .navbar.opened {
  background: #000000 !important;
}
.cid-uLh0Uci2Ds .nav-item:focus,
.cid-uLh0Uci2Ds .nav-link:focus {
  outline: none;
}
.cid-uLh0Uci2Ds .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uLh0Uci2Ds .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uLh0Uci2Ds .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uLh0Uci2Ds .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uLh0Uci2Ds .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uLh0Uci2Ds .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uLh0Uci2Ds .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uLh0Uci2Ds .navbar.opened {
  transition: all 0.3s;
}
.cid-uLh0Uci2Ds .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uLh0Uci2Ds .navbar .navbar-logo img {
  width: auto;
}
.cid-uLh0Uci2Ds .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uLh0Uci2Ds .navbar.collapsed {
  justify-content: center;
}
.cid-uLh0Uci2Ds .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uLh0Uci2Ds .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uLh0Uci2Ds .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-uLh0Uci2Ds .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uLh0Uci2Ds .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uLh0Uci2Ds .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-uLh0Uci2Ds .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uLh0Uci2Ds .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uLh0Uci2Ds .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uLh0Uci2Ds .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uLh0Uci2Ds .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uLh0Uci2Ds .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uLh0Uci2Ds .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uLh0Uci2Ds .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-uLh0Uci2Ds .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uLh0Uci2Ds .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uLh0Uci2Ds .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uLh0Uci2Ds .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uLh0Uci2Ds .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uLh0Uci2Ds .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uLh0Uci2Ds .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uLh0Uci2Ds .navbar.navbar-short {
  min-height: 60px;
}
.cid-uLh0Uci2Ds .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uLh0Uci2Ds .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uLh0Uci2Ds .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uLh0Uci2Ds .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uLh0Uci2Ds .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uLh0Uci2Ds .dropdown-item.active,
.cid-uLh0Uci2Ds .dropdown-item:active {
  background-color: transparent;
}
.cid-uLh0Uci2Ds .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uLh0Uci2Ds .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uLh0Uci2Ds .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uLh0Uci2Ds .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uLh0Uci2Ds .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uLh0Uci2Ds .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uLh0Uci2Ds ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uLh0Uci2Ds .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uLh0Uci2Ds button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uLh0Uci2Ds button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uLh0Uci2Ds button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uLh0Uci2Ds button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uLh0Uci2Ds button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uLh0Uci2Ds button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uLh0Uci2Ds nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uLh0Uci2Ds nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uLh0Uci2Ds nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uLh0Uci2Ds nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uLh0Uci2Ds .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uLh0Uci2Ds a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uLh0Uci2Ds .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-uLh0Uci2Ds .navbar {
    height: 70px;
  }
  .cid-uLh0Uci2Ds .navbar.opened {
    height: auto;
  }
  .cid-uLh0Uci2Ds .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uLh0UdUntc {
  padding-top: 12rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uLh0UdUntc .decor-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 52%;
  height: 95%;
  border-radius: 0 85% 0 0;
  background-color: #ffe885;
  pointer-events: none;
}
@media (max-width: 992px) {
  .cid-uLh0UdUntc .decor-wrap {
    width: 60%;
    height: 50%;
    border-radius: 0 50% 0 0;
  }
}
.cid-uLh0UdUntc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLh0UdUntc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLh0UdUntc .row {
  position: relative;
  z-index: 1;
}
.cid-uLh0UdUntc .title-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uLh0UdUntc .title-wrapper .mbr-section-title {
    margin-bottom: 46px;
  }
}
.cid-uLh0UdUntc .image-wrapper {
  margin-right: 18px;
  margin-right: 0;
  margin-left: 18px;
}
@media (max-width: 992px) {
  .cid-uLh0UdUntc .image-wrapper {
    margin-right: 0;
    margin-bottom: 46px;
  }
}
@media (max-width: 992px) {
  .cid-uLh0UdUntc .image-wrapper {
    margin-left: 0;
  }
}
.cid-uLh0UdUntc .image-wrapper img {
  height: 620px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uLh0UdUntc .image-wrapper img {
    height: 350px;
  }
}
.cid-uLh0UdUntc .content-wrapper {
  padding-top: 64px;
}
@media (max-width: 992px) {
  .cid-uLh0UdUntc .content-wrapper {
    padding-top: 22px;
  }
}
.cid-uLh0UdUntc .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 46px;
  display: inline-block;
  width: 55%;
}
@media (max-width: 992px) {
  .cid-uLh0UdUntc .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 22px;
  }
}
.cid-uLh0UdUntc .content-wrapper .desc-wrapper {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uLh0UdUntc .content-wrapper .desc-wrapper {
    display: block;
  }
}
.cid-uLh0UdUntc .content-wrapper .desc-wrapper .mbr-desc {
  width: 50%;
  margin-right: 20px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uLh0UdUntc .content-wrapper .desc-wrapper .mbr-desc {
    margin-right: 0;
    width: 100%;
    margin-bottom: 12px;
  }
}
.cid-uLh0UdUntc .content-wrapper .desc-wrapper .mbr-section-btn {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uLh0UdUntc .content-wrapper .desc-wrapper .mbr-section-btn {
    width: 100%;
  }
}
.cid-uLh0UdUntc .content-wrapper .desc-wrapper .mbr-section-btn .btn {
  padding: 29px 64px;
}
@media (max-width: 1200px) {
  .cid-uLh0UdUntc .content-wrapper .desc-wrapper .mbr-section-btn .btn {
    padding: 20px 32px;
  }
}
.cid-uLh0UdUntc .mbr-section-title {
  color: #212529;
  text-align: center;
}
.cid-uLh0UdUntc .mbr-text {
  color: #51565c;
}
.cid-uLh0UdUntc .mbr-desc {
  color: #51565c;
}
.cid-uLh0UdUntc .mbr-text,
.cid-uLh0UdUntc .text-wrapper {
  color: #000000;
}
.cid-uLh0UeL9aH {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uLh0UeL9aH .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uLh0UeL9aH .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-uLh0UeL9aH .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #d90a2c;
  background-color: #000000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #000000;
  color: #000000;
  content: "✓";
}
.cid-uLh0UeL9aH .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-uLh0UeL9aH .mbr-text {
  color: #000000;
}
.cid-uLh0UeL9aH .mbr-subtitle {
  text-align: center;
  color: #eff0ff;
}
.cid-uLh0UfzNLN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffe885;
}
.cid-uLh0UfzNLN .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uLh0UgjgqI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uLh0UgjgqI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLh0UgjgqI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLh0UgjgqI .content-wrapper {
  padding: 10px;
  border-top: 10px solid #000000;
  box-shadow: 0 19px 45px 0 #0000001a;
  background-color: #ffffff;
}
.cid-uLh0UgjgqI .content-wrapper .content-wrap {
  padding: 40px 40px 50px;
}
@media (max-width: 992px) {
  .cid-uLh0UgjgqI .content-wrapper .content-wrap {
    padding: 10px 10px 30px;
  }
}
.cid-uLh0UgjgqI .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 20px;
}
.cid-uLh0UgjgqI .content-wrapper .content-wrap .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uLh0UgjgqI .content-wrapper .content-wrap .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uLh0UgjgqI .image-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 992px) {
  .cid-uLh0UgjgqI .image-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-uLh0UgjgqI .image-wrapper .image-wrap img {
  height: 430px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uLh0UgjgqI .image-wrapper .image-wrap img {
    height: 300px;
  }
}
.cid-uLh0UgjgqI .mbr-section-title {
  color: #000c3f;
}
.cid-uLh0UgjgqI .mbr-text {
  color: #000c3f;
}
.cid-uLh0UgjgqI .mbr-section-title,
.cid-uLh0UgjgqI .mbr-section-btn {
  color: #000000;
}
.cid-uLh0UgjgqI .mbr-text,
.cid-uLh0UgjgqI .text-wrapper {
  color: #000000;
}
.cid-uLh0UgTYfs {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffe885;
  position: relative;
  overflow: hidden;
}
.cid-uLh0UgTYfs .row {
  justify-content: center;
}
.cid-uLh0UgTYfs .title-container {
  max-width: 720px;
  padding: 0;
  margin-bottom: 80px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 991px) {
  .cid-uLh0UgTYfs .title-container {
    margin-bottom: 64px;
  }
}
@media (max-width: 767px) {
  .cid-uLh0UgTYfs .title-container {
    margin-bottom: 56px;
  }
}
.cid-uLh0UgTYfs .mbr-section-title {
  color: #6148ff;
}
.cid-uLh0UgTYfs .mbr-section-subtitle {
  color: #161616;
  margin-top: 24px;
}
.cid-uLh0UgTYfs .grid-container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 80px;
  grid-row-gap: 0;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uLh0UgTYfs .grid-container {
    grid-column-gap: 48px;
  }
}
@media (max-width: 767px) {
  .cid-uLh0UgTYfs .grid-container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.cid-uLh0UgTYfs .content-container {
  display: flex;
  padding: 0 !important;
}
.cid-uLh0UgTYfs .text-container {
  margin-bottom: 24px;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  border-radius: 16px;
}
@media (max-width: 767px) {
  .cid-uLh0UgTYfs .text-container {
    margin-bottom: 56px;
    padding: 0;
  }
}
.cid-uLh0UgTYfs .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  flex-grow: 1;
}
.cid-uLh0UgTYfs .text-padding {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0;
}
.cid-uLh0UgTYfs .opinion-stars {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-bottom: 21px;
}
@media (max-width: 767px) {
  .cid-uLh0UgTYfs .opinion-stars {
    margin-bottom: 13px;
  }
}
.cid-uLh0UgTYfs .iconfont-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3px 3px;
}
.cid-uLh0UgTYfs .iconfont-wrapper .mbr-iconfont {
  font-size: 21px;
  color: #3e1fff;
}
.cid-uLh0UgTYfs .card-title {
  width: 100%;
  color: #000000;
  margin-bottom: 1rem;
  margin-top: 8px;
}
.cid-uLh0UgTYfs .mbr-text {
  width: 100%;
  color: #000000;
  opacity: 0.75;
  margin-bottom: 40px !important;
}
@media (max-width: 767px) {
  .cid-uLh0UgTYfs .mbr-text {
    margin-bottom: 24px !important;
  }
}
.cid-uLh0UgTYfs .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 16px;
  border-radius: 12px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .cid-uLh0UgTYfs .image-wrapper {
    width: 48px;
    height: 48px;
  }
}
.cid-uLh0UgTYfs .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uLh0UgTYfs .name-text {
  color: #161616;
  width: 100%;
  margin-bottom: 0;
}
.cid-uLh0UgTYfs .prof-text {
  max-width: 350px;
  color: #000000;
  opacity: 0.75;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-uLh0UgTYfs .prof-text {
    max-width: 100%;
    width: 100%;
  }
}
.cid-uLh0UgTYfs .circle-blur {
  position: absolute;
  top: 5%;
  right: 5% !important;
  bottom: auto;
  display: block;
  width: 440px;
  height: 440px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  background-image: linear-gradient(132deg, #feff98 27%, #ff3399 50%, #99f5fe 79%);
  opacity: .97;
  -webkit-filter: blur(64px) blur(64px);
  filter: blur(64px) blur(64px);
}
.cid-uLh0UhUKos {
  overflow: hidden;
  background-color: #f4f4f6;
}
.cid-uLh0UhUKos .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLh0UhUKos .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLh0UhUKos .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uLh0UhUKos .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uLh0UhUKos .container {
    padding: 0 24px;
  }
}
.cid-uLh0UhUKos .content-wrapper {
  position: relative;
  z-index: 1;
}
.cid-uLh0UhUKos .content-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uLh0UhUKos .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uLh0UhUKos .content-wrapper .mbr-desc {
  margin-bottom: 56px;
}
.cid-uLh0UhUKos .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uLh0UhUKos .content-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-uLh0UhUKos .content-wrapper .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #fb8fc9 0%, transparent 100%);
}
.cid-uLh0UhUKos .content-wrapper .mbr-section-btn .btn:hover,
.cid-uLh0UhUKos .content-wrapper .mbr-section-btn .btn:focus {
  box-shadow: inset 250px 10px 5px #7f89e9 !important;
  border-color: #7f89e9 !important;
}
.cid-uLh0UhUKos .decor-wrapper {
  position: absolute;
  bottom: -100%;
  left: 0;
  display: flex;
  justify-content: center;
  width: 100%;
}
.cid-uLh0UhUKos .decor-wrapper .decor-wrap {
  width: 400px;
  height: 400px;
  border-radius: 100%;
  filter: blur(80px);
}
.cid-uLh0UhUKos .decor-wrapper .decor_1 {
  background-color: #f8e885;
}
.cid-uLh0UhUKos .decor-wrapper .decor_2 {
  background-color: #ffe161;
}
.cid-uLh0UhUKos .decor-wrapper .decor_3 {
  background-color: #f7fff7;
}
.cid-uLh0UhUKos .decor-wrapper .decor_4 {
  background-color: #82ebff;
}
.cid-uLh0UhUKos .mbr-section-title {
  color: #141414;
}
.cid-uLh0UhUKos .mbr-section-subtitle {
  color: #141414;
  text-align: center;
}
.cid-uLh0UhUKos .mbr-desc {
  color: #141414;
  text-align: center;
}
.cid-uLh0UhUKos .mbr-text {
  color: #141414;
  text-align: center;
}
.cid-uLh0UhUKos .mbr-section-title,
.cid-uLh0UhUKos .mbr-section-btn {
  text-align: center;
}
.cid-uLhgYmqelf {
  padding-top: 1rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uLhgYmqelf img,
.cid-uLhgYmqelf .item-img {
  width: 100%;
}
.cid-uLhgYmqelf .item:focus,
.cid-uLhgYmqelf span:focus {
  outline: none;
}
.cid-uLhgYmqelf .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uLhgYmqelf .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffe885;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uLhgYmqelf .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uLhgYmqelf .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uLhgYmqelf .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uLhgYmqelf .mbr-section-title {
  color: #232323;
}
.cid-uLhgYmqelf .mbr-text,
.cid-uLhgYmqelf .mbr-section-btn {
  text-align: left;
}
.cid-uLhgYmqelf .item-title {
  text-align: left;
  color: #000000;
}
.cid-uLhgYmqelf .item-subtitle {
  text-align: left;
}
.cid-uLh0UjPMaC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffe885;
  position: relative;
  overflow: hidden;
}
.cid-uLh0UjPMaC::before {
  content: '';
  position: absolute;
  top: 0;
  right: 4rem;
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background-image: linear-gradient(180deg, #fafafa -10%, transparent 70%);
}
.cid-uLh0UjPMaC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLh0UjPMaC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uLh0UjPMaC .container {
    padding: 0 16px;
  }
}
.cid-uLh0UjPMaC .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-uLh0UjPMaC .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uLh0UjPMaC .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uLh0UjPMaC .mbr-section-title {
  color: #000000;
}
.cid-uLh0UjPMaC .mbr-text {
  color: #000000;
}
.cid-uLh0UkA2F1 {
  padding-top: 7rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uLh0UkA2F1 img,
.cid-uLh0UkA2F1 .item-img {
  width: 100%;
}
.cid-uLh0UkA2F1 .item:focus,
.cid-uLh0UkA2F1 span:focus {
  outline: none;
}
.cid-uLh0UkA2F1 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uLh0UkA2F1 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uLh0UkA2F1 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uLh0UkA2F1 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uLh0UkA2F1 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uLh0UkA2F1 .mbr-section-title {
  color: #232323;
}
.cid-uLh0UkA2F1 .mbr-text,
.cid-uLh0UkA2F1 .mbr-section-btn {
  text-align: left;
}
.cid-uLh0UkA2F1 .item-title {
  text-align: left;
}
.cid-uLh0UkA2F1 .item-subtitle {
  text-align: left;
}
.cid-uLh0UlH3wW {
  padding-top: 11rem;
  padding-bottom: 5rem;
  background-color: #ffe885;
  overflow: hidden;
}
.cid-uLh0UlH3wW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLh0UlH3wW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uLh0UlH3wW .container {
    padding: 0 22px;
  }
}
.cid-uLh0UlH3wW .card {
  justify-content: center;
}
.cid-uLh0UlH3wW .content-wrapper {
  padding-right: 32px;
  padding-right: 0;
  padding-left: 32px;
}
@media (max-width: 992px) {
  .cid-uLh0UlH3wW .content-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uLh0UlH3wW .content-wrapper {
    padding: 0;
    margin-bottom: 40px;
  }
}
.cid-uLh0UlH3wW .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uLh0UlH3wW .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uLh0UlH3wW .image-wrapper {
  display: flex;
  justify-content: center;
}
.cid-uLh0UlH3wW .image-wrapper img {
  height: 600px;
  width: 600px;
  border-radius: 100% !important;
  object-fit: cover;
  box-shadow: 10px 10px 60px #e43f3f;
}
@media (max-width: 1440px) {
  .cid-uLh0UlH3wW .image-wrapper img {
    height: 500px;
    width: 500px;
  }
}
@media (max-width: 1200px) {
  .cid-uLh0UlH3wW .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 992px) {
  .cid-uLh0UlH3wW .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 768px) {
  .cid-uLh0UlH3wW .image-wrapper img {
    height: 260px;
    width: 260px;
  }
}
.cid-uLh0UlH3wW .mbr-section-title {
  color: #000000;
}
.cid-uLh0UlH3wW .mbr-text {
  color: #000000;
}
.cid-uLh0UmqLMa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uLh0UmqLMa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLh0UmqLMa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLh0UmqLMa .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-uLh0UmqLMa .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uLh0UmqLMa .container {
    padding: 0 30px;
  }
}
.cid-uLh0UmqLMa .mbr-section-title {
  margin-bottom: 70px;
  color: #000000;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uLh0UmqLMa .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uLh0UmqLMa .video-block .video-wrapper .app-video-wrapper img {
  height: 700px;
  object-fit: cover;
  border-radius: 2em;
}
@media (max-width: 992px) {
  .cid-uLh0UmqLMa .video-block .video-wrapper .app-video-wrapper img {
    height: 350px;
  }
}
.cid-uLh0UmqLMa .video-block .video-wrapper .app-video-wrapper::before {
  color: #fff0b0;
  text-shadow: none;
}
.cid-uLh0UmqLMa .video-block .video-wrapper iframe {
  height: 700px;
  object-fit: cover;
  border-radius: 2em;
}
@media (max-width: 992px) {
  .cid-uLh0UmqLMa .video-block .video-wrapper iframe {
    height: 350px;
  }
}
.cid-uLh0Un9fba {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uLh0Uo9B6q {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #232323;
}
.cid-uLh0Uo9B6q .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLh0Uo9B6q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uLh0Uo9B6q .container {
    padding: 0 20px;
  }
}
@media (max-width: 767px) {
  .cid-uLh0Uo9B6q .container {
    padding: 0 4px;
  }
}
.cid-uLh0Uo9B6q .row {
  margin: 0;
}
.cid-uLh0Uo9B6q .row .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uLh0Uo9B6q .row .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uLh0Uo9B6q .row .panel-group .card {
  border-bottom: 1px solid #838383;
  border-radius: 0 !important;
}
.cid-uLh0Uo9B6q .row .panel-group .card:first-child {
  border-top: 1px solid #838383;
}
.cid-uLh0Uo9B6q .row .panel-group .card .card-header {
  padding: 32px 0;
  border-bottom: none;
  background-color: transparent;
}
.cid-uLh0Uo9B6q .row .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-uLh0Uo9B6q .row .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(-45deg);
}
.cid-uLh0Uo9B6q .row .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uLh0Uo9B6q .row .panel-group .card .card-header .panel-title .mbr-iconfont {
  font-size: 24px;
  transition: all 0.3s ease-out;
}
.cid-uLh0Uo9B6q .row .panel-group .card .panel-collapse .panel-body {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uLh0Uo9B6q .row .panel-group .card .panel-collapse .panel-body {
    margin-bottom: 32px;
  }
}
.cid-uLh0Uo9B6q .row .panel-group .card .panel-collapse .panel-body .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uLh0Uo9B6q .row .panel-group .card .panel-collapse .panel-body .mbr-text {
    margin-bottom: 32px;
  }
}
.cid-uLh0Uo9B6q .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-uLh0Uo9B6q .panel-title-edit,
.cid-uLh0Uo9B6q .mbr-iconfont {
  color: #ffffff;
}
.cid-uLh0Uo9B6q .mbr-text {
  color: #ffffff;
}
.cid-uLhqxMninF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffe885;
}
.cid-uLhqxMninF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLhqxMninF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLhqxMninF .container-fluid {
  padding: 0 64px;
}
@media (max-width: 1440px) {
  .cid-uLhqxMninF .container-fluid {
    padding: 0 36px;
  }
}
@media (max-width: 992px) {
  .cid-uLhqxMninF .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uLhqxMninF .container {
    padding: 0 16px;
  }
}
.cid-uLhqxMninF .row {
  justify-content: space-between;
}
.cid-uLhqxMninF .title-wrapper {
  position: sticky;
}
.cid-uLhqxMninF .title-wrapper .mbr-section-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uLhqxMninF .title-wrapper .mbr-section-title {
    margin-bottom: 36px;
  }
}
.cid-uLhqxMninF .panel-group .card {
  border-bottom: none;
  background-image: linear-gradient(135deg, #00d372, #56acff 34%, #7179ef 67%, #e26a69) !important;
  border-radius: 2em !important;
  padding: 5px;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uLhqxMninF .panel-group .card {
    margin-bottom: 24px;
  }
}
.cid-uLhqxMninF .panel-group .card .card-wrap {
  border-radius: 1.9em !important;
  background-color: #f0f0f0;
  padding: 36px;
}
@media (max-width: 992px) {
  .cid-uLhqxMninF .panel-group .card .card-wrap {
    padding: 16px;
  }
}
.cid-uLhqxMninF .panel-group .card .card-wrap .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
}
.cid-uLhqxMninF .panel-group .card .card-wrap .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uLhqxMninF .panel-group .card .card-wrap .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-uLhqxMninF .panel-group .card .card-wrap .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uLhqxMninF .panel-group .card .card-wrap .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  min-width: 54px;
  font-size: 26px;
  color: #080808;
  transition: all 0.3s ease-in-out;
  margin-left: 10px;
  background-image: linear-gradient(135deg, #00d372, #56acff 34%, #7179ef 67%, #e26a69);
  border-radius: 50%;
}
.cid-uLhqxMninF .panel-group .card .card-wrap .panel-collapse .panel-body {
  padding-top: 24px;
}
.cid-uLhqxMninF .panel-group .card .card-wrap .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uLhqxMninF .mbr-section-title {
  color: #080808;
}
.cid-uLhqxMninF .panel-title-edit {
  color: #080808;
}
.cid-uLhqxMninF .panel-text {
  color: #333333;
}
.cid-uLh0UqFuFT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #000000;
}
.cid-uLh0UqFuFT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLh0UqFuFT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLh0UqFuFT .google-map {
  height: 30rem;
  position: relative;
}
.cid-uLh0UqFuFT .google-map iframe {
  height: 100%;
  width: 100%;
  background-color: #000000;
  padding: 4px;
}
.cid-uLh0UqFuFT .google-map [data-state-details] {
  color: #4b4b4b;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uLh0UqFuFT .google-map[data-state] {
  background: #fffff5;
}
.cid-uLh0UqFuFT .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uLh0UqFuFT .mbr-section-title {
  color: #ffffff;
}
.cid-uLh0UrAIE1 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffe885;
}
.cid-uLh0UrAIE1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLh0UrAIE1 .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-uLh0UrAIE1 .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uLh0UrAIE1 .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-uLh0UrAIE1 a {
  font-weight: 600;
}
.cid-uLh0UrAIE1 a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-uLh0UrAIE1 .col-lg-3,
  .cid-uLh0UrAIE1 .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-uLh0UrAIE1 .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-uLh0UrAIE1 .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-uLh0UrAIE1 h5 {
  margin: 0;
}
.cid-uLh0UrAIE1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLh0UrAIE1 .iconfont-wrapper {
  position: relative;
}
.cid-uLh0UrAIE1 .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-uLh0UrAIE1 .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-uLh0UrAIE1 .sociconfont-wrapper {
  display: flex;
}
.cid-uLh0UrAIE1 .card-title,
.cid-uLh0UrAIE1 .iconfont-wrapper {
  color: #000000;
  text-align: left;
}
.cid-uLh0UrAIE1 .card-text {
  color: #000000;
}
.cid-uLh0UrAIE1 .mbr-section-title {
  color: #000000;
}
.cid-uLh0UrAIE1 .main-title,
.cid-uLh0UrAIE1 .iconfont-wrapper {
  text-align: left;
}
.cid-uLh0VW6yZg {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uLh0VW6yZg nav.navbar {
  position: fixed;
}
.cid-uLh0VW6yZg .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-uLh0VW6yZg .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uLh0VW6yZg .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uLh0VW6yZg .dropdown-item:hover,
.cid-uLh0VW6yZg .dropdown-item:focus {
  background: #d90a2c !important;
  color: white !important;
}
.cid-uLh0VW6yZg .dropdown-item:hover span {
  color: white;
}
.cid-uLh0VW6yZg .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uLh0VW6yZg .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uLh0VW6yZg .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uLh0VW6yZg .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uLh0VW6yZg .nav-link {
  position: relative;
}
.cid-uLh0VW6yZg .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uLh0VW6yZg .container {
    flex-wrap: wrap;
  }
}
.cid-uLh0VW6yZg .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uLh0VW6yZg .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uLh0VW6yZg .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uLh0VW6yZg .dropdown-menu,
.cid-uLh0VW6yZg .navbar.opened {
  background: #000000 !important;
}
.cid-uLh0VW6yZg .nav-item:focus,
.cid-uLh0VW6yZg .nav-link:focus {
  outline: none;
}
.cid-uLh0VW6yZg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uLh0VW6yZg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uLh0VW6yZg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uLh0VW6yZg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uLh0VW6yZg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uLh0VW6yZg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uLh0VW6yZg .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uLh0VW6yZg .navbar.opened {
  transition: all 0.3s;
}
.cid-uLh0VW6yZg .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uLh0VW6yZg .navbar .navbar-logo img {
  width: auto;
}
.cid-uLh0VW6yZg .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uLh0VW6yZg .navbar.collapsed {
  justify-content: center;
}
.cid-uLh0VW6yZg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uLh0VW6yZg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uLh0VW6yZg .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-uLh0VW6yZg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uLh0VW6yZg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uLh0VW6yZg .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-uLh0VW6yZg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uLh0VW6yZg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uLh0VW6yZg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uLh0VW6yZg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uLh0VW6yZg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uLh0VW6yZg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uLh0VW6yZg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uLh0VW6yZg .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-uLh0VW6yZg .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uLh0VW6yZg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uLh0VW6yZg .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uLh0VW6yZg .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uLh0VW6yZg .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uLh0VW6yZg .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uLh0VW6yZg .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uLh0VW6yZg .navbar.navbar-short {
  min-height: 60px;
}
.cid-uLh0VW6yZg .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uLh0VW6yZg .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uLh0VW6yZg .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uLh0VW6yZg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uLh0VW6yZg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uLh0VW6yZg .dropdown-item.active,
.cid-uLh0VW6yZg .dropdown-item:active {
  background-color: transparent;
}
.cid-uLh0VW6yZg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uLh0VW6yZg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uLh0VW6yZg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uLh0VW6yZg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uLh0VW6yZg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uLh0VW6yZg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uLh0VW6yZg ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uLh0VW6yZg .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uLh0VW6yZg button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uLh0VW6yZg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uLh0VW6yZg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uLh0VW6yZg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uLh0VW6yZg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uLh0VW6yZg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uLh0VW6yZg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uLh0VW6yZg nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uLh0VW6yZg nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uLh0VW6yZg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uLh0VW6yZg .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uLh0VW6yZg a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uLh0VW6yZg .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-uLh0VW6yZg .navbar {
    height: 70px;
  }
  .cid-uLh0VW6yZg .navbar.opened {
    height: auto;
  }
  .cid-uLh0VW6yZg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uLh0VX0qYa {
  padding-top: 12rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uLh0VX0qYa .decor-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 52%;
  height: 95%;
  border-radius: 0 85% 0 0;
  background-color: #ffe885;
  pointer-events: none;
}
@media (max-width: 992px) {
  .cid-uLh0VX0qYa .decor-wrap {
    width: 60%;
    height: 50%;
    border-radius: 0 50% 0 0;
  }
}
.cid-uLh0VX0qYa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLh0VX0qYa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLh0VX0qYa .row {
  position: relative;
  z-index: 1;
}
.cid-uLh0VX0qYa .title-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uLh0VX0qYa .title-wrapper .mbr-section-title {
    margin-bottom: 46px;
  }
}
.cid-uLh0VX0qYa .image-wrapper {
  margin-right: 18px;
  margin-right: 0;
  margin-left: 18px;
}
@media (max-width: 992px) {
  .cid-uLh0VX0qYa .image-wrapper {
    margin-right: 0;
    margin-bottom: 46px;
  }
}
@media (max-width: 992px) {
  .cid-uLh0VX0qYa .image-wrapper {
    margin-left: 0;
  }
}
.cid-uLh0VX0qYa .image-wrapper img {
  height: 620px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uLh0VX0qYa .image-wrapper img {
    height: 350px;
  }
}
.cid-uLh0VX0qYa .content-wrapper {
  padding-top: 64px;
}
@media (max-width: 992px) {
  .cid-uLh0VX0qYa .content-wrapper {
    padding-top: 22px;
  }
}
.cid-uLh0VX0qYa .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 46px;
  display: inline-block;
  width: 55%;
}
@media (max-width: 992px) {
  .cid-uLh0VX0qYa .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 22px;
  }
}
.cid-uLh0VX0qYa .content-wrapper .desc-wrapper {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uLh0VX0qYa .content-wrapper .desc-wrapper {
    display: block;
  }
}
.cid-uLh0VX0qYa .content-wrapper .desc-wrapper .mbr-desc {
  width: 50%;
  margin-right: 20px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uLh0VX0qYa .content-wrapper .desc-wrapper .mbr-desc {
    margin-right: 0;
    width: 100%;
    margin-bottom: 12px;
  }
}
.cid-uLh0VX0qYa .content-wrapper .desc-wrapper .mbr-section-btn {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uLh0VX0qYa .content-wrapper .desc-wrapper .mbr-section-btn {
    width: 100%;
  }
}
.cid-uLh0VX0qYa .content-wrapper .desc-wrapper .mbr-section-btn .btn {
  padding: 29px 64px;
}
@media (max-width: 1200px) {
  .cid-uLh0VX0qYa .content-wrapper .desc-wrapper .mbr-section-btn .btn {
    padding: 20px 32px;
  }
}
.cid-uLh0VX0qYa .mbr-section-title {
  color: #212529;
  text-align: center;
}
.cid-uLh0VX0qYa .mbr-text {
  color: #51565c;
}
.cid-uLh0VX0qYa .mbr-desc {
  color: #51565c;
}
.cid-uLh0VX0qYa .mbr-text,
.cid-uLh0VX0qYa .text-wrapper {
  color: #000000;
}
.cid-uLh0VXUErj {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uLh0VXUErj .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uLh0VXUErj .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-uLh0VXUErj .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #d90a2c;
  background-color: #000000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #000000;
  color: #000000;
  content: "✓";
}
.cid-uLh0VXUErj .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-uLh0VXUErj .mbr-text {
  color: #000000;
}
.cid-uLh0VXUErj .mbr-subtitle {
  text-align: center;
  color: #eff0ff;
}
.cid-uLh0VYFCh3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffe885;
}
.cid-uLh0VYFCh3 .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uLh0VZnDEu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uLh0VZnDEu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLh0VZnDEu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLh0VZnDEu .content-wrapper {
  padding: 10px;
  border-top: 10px solid #000000;
  box-shadow: 0 19px 45px 0 #0000001a;
  background-color: #ffffff;
}
.cid-uLh0VZnDEu .content-wrapper .content-wrap {
  padding: 40px 40px 50px;
}
@media (max-width: 992px) {
  .cid-uLh0VZnDEu .content-wrapper .content-wrap {
    padding: 10px 10px 30px;
  }
}
.cid-uLh0VZnDEu .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 20px;
}
.cid-uLh0VZnDEu .content-wrapper .content-wrap .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uLh0VZnDEu .content-wrapper .content-wrap .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uLh0VZnDEu .image-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 992px) {
  .cid-uLh0VZnDEu .image-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-uLh0VZnDEu .image-wrapper .image-wrap img {
  height: 430px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uLh0VZnDEu .image-wrapper .image-wrap img {
    height: 300px;
  }
}
.cid-uLh0VZnDEu .mbr-section-title {
  color: #000c3f;
}
.cid-uLh0VZnDEu .mbr-text {
  color: #000c3f;
}
.cid-uLh0VZnDEu .mbr-section-title,
.cid-uLh0VZnDEu .mbr-section-btn {
  color: #000000;
}
.cid-uLh0VZnDEu .mbr-text,
.cid-uLh0VZnDEu .text-wrapper {
  color: #000000;
}
.cid-uLh0W0ezWK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffe885;
  position: relative;
  overflow: hidden;
}
.cid-uLh0W0ezWK .row {
  justify-content: center;
}
.cid-uLh0W0ezWK .title-container {
  max-width: 720px;
  padding: 0;
  margin-bottom: 80px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 991px) {
  .cid-uLh0W0ezWK .title-container {
    margin-bottom: 64px;
  }
}
@media (max-width: 767px) {
  .cid-uLh0W0ezWK .title-container {
    margin-bottom: 56px;
  }
}
.cid-uLh0W0ezWK .mbr-section-title {
  color: #6148ff;
}
.cid-uLh0W0ezWK .mbr-section-subtitle {
  color: #161616;
  margin-top: 24px;
}
.cid-uLh0W0ezWK .grid-container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 80px;
  grid-row-gap: 0;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uLh0W0ezWK .grid-container {
    grid-column-gap: 48px;
  }
}
@media (max-width: 767px) {
  .cid-uLh0W0ezWK .grid-container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.cid-uLh0W0ezWK .content-container {
  display: flex;
  padding: 0 !important;
}
.cid-uLh0W0ezWK .text-container {
  margin-bottom: 24px;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  border-radius: 16px;
}
@media (max-width: 767px) {
  .cid-uLh0W0ezWK .text-container {
    margin-bottom: 56px;
    padding: 0;
  }
}
.cid-uLh0W0ezWK .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  flex-grow: 1;
}
.cid-uLh0W0ezWK .text-padding {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0;
}
.cid-uLh0W0ezWK .opinion-stars {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-bottom: 21px;
}
@media (max-width: 767px) {
  .cid-uLh0W0ezWK .opinion-stars {
    margin-bottom: 13px;
  }
}
.cid-uLh0W0ezWK .iconfont-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3px 3px;
}
.cid-uLh0W0ezWK .iconfont-wrapper .mbr-iconfont {
  font-size: 21px;
  color: #3e1fff;
}
.cid-uLh0W0ezWK .card-title {
  width: 100%;
  color: #000000;
  margin-bottom: 1rem;
  margin-top: 8px;
}
.cid-uLh0W0ezWK .mbr-text {
  width: 100%;
  color: #000000;
  opacity: 0.75;
  margin-bottom: 40px !important;
}
@media (max-width: 767px) {
  .cid-uLh0W0ezWK .mbr-text {
    margin-bottom: 24px !important;
  }
}
.cid-uLh0W0ezWK .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 16px;
  border-radius: 12px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .cid-uLh0W0ezWK .image-wrapper {
    width: 48px;
    height: 48px;
  }
}
.cid-uLh0W0ezWK .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uLh0W0ezWK .name-text {
  color: #161616;
  width: 100%;
  margin-bottom: 0;
}
.cid-uLh0W0ezWK .prof-text {
  max-width: 350px;
  color: #000000;
  opacity: 0.75;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-uLh0W0ezWK .prof-text {
    max-width: 100%;
    width: 100%;
  }
}
.cid-uLh0W0ezWK .circle-blur {
  position: absolute;
  top: 5%;
  right: 5% !important;
  bottom: auto;
  display: block;
  width: 440px;
  height: 440px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  background-image: linear-gradient(132deg, #feff98 27%, #ff3399 50%, #99f5fe 79%);
  opacity: .97;
  -webkit-filter: blur(64px) blur(64px);
  filter: blur(64px) blur(64px);
}
.cid-uLh0W1kXHe {
  overflow: hidden;
  background-color: #f4f4f6;
}
.cid-uLh0W1kXHe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLh0W1kXHe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLh0W1kXHe .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uLh0W1kXHe .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uLh0W1kXHe .container {
    padding: 0 24px;
  }
}
.cid-uLh0W1kXHe .content-wrapper {
  position: relative;
  z-index: 1;
}
.cid-uLh0W1kXHe .content-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uLh0W1kXHe .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uLh0W1kXHe .content-wrapper .mbr-desc {
  margin-bottom: 56px;
}
.cid-uLh0W1kXHe .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uLh0W1kXHe .content-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-uLh0W1kXHe .content-wrapper .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #fb8fc9 0%, transparent 100%);
}
.cid-uLh0W1kXHe .content-wrapper .mbr-section-btn .btn:hover,
.cid-uLh0W1kXHe .content-wrapper .mbr-section-btn .btn:focus {
  box-shadow: inset 250px 10px 5px #7f89e9 !important;
  border-color: #7f89e9 !important;
}
.cid-uLh0W1kXHe .decor-wrapper {
  position: absolute;
  bottom: -100%;
  left: 0;
  display: flex;
  justify-content: center;
  width: 100%;
}
.cid-uLh0W1kXHe .decor-wrapper .decor-wrap {
  width: 400px;
  height: 400px;
  border-radius: 100%;
  filter: blur(80px);
}
.cid-uLh0W1kXHe .decor-wrapper .decor_1 {
  background-color: #f8e885;
}
.cid-uLh0W1kXHe .decor-wrapper .decor_2 {
  background-color: #22aa93;
}
.cid-uLh0W1kXHe .decor-wrapper .decor_3 {
  background-color: #f7fff7;
}
.cid-uLh0W1kXHe .decor-wrapper .decor_4 {
  background-color: #ffe161;
}
.cid-uLh0W1kXHe .mbr-section-title {
  color: #141414;
}
.cid-uLh0W1kXHe .mbr-section-subtitle {
  color: #141414;
  text-align: center;
}
.cid-uLh0W1kXHe .mbr-desc {
  color: #141414;
  text-align: center;
}
.cid-uLh0W1kXHe .mbr-text {
  color: #141414;
  text-align: center;
}
.cid-uLh0W1kXHe .mbr-section-title,
.cid-uLh0W1kXHe .mbr-section-btn {
  text-align: center;
}
.cid-uLhiEAC3pb {
  padding-top: 1rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uLhiEAC3pb img,
.cid-uLhiEAC3pb .item-img {
  width: 100%;
}
.cid-uLhiEAC3pb .item:focus,
.cid-uLhiEAC3pb span:focus {
  outline: none;
}
.cid-uLhiEAC3pb .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uLhiEAC3pb .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffe885;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uLhiEAC3pb .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uLhiEAC3pb .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uLhiEAC3pb .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uLhiEAC3pb .mbr-section-title {
  color: #232323;
}
.cid-uLhiEAC3pb .mbr-text,
.cid-uLhiEAC3pb .mbr-section-btn {
  text-align: left;
}
.cid-uLhiEAC3pb .item-title {
  text-align: left;
  color: #000000;
}
.cid-uLhiEAC3pb .item-subtitle {
  text-align: left;
}
.cid-uLh0W37QAk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffe885;
  position: relative;
  overflow: hidden;
}
.cid-uLh0W37QAk::before {
  content: '';
  position: absolute;
  top: 0;
  right: 4rem;
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background-image: linear-gradient(180deg, #fafafa -10%, transparent 70%);
}
.cid-uLh0W37QAk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLh0W37QAk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uLh0W37QAk .container {
    padding: 0 16px;
  }
}
.cid-uLh0W37QAk .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-uLh0W37QAk .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uLh0W37QAk .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uLh0W37QAk .mbr-section-title {
  color: #000000;
}
.cid-uLh0W37QAk .mbr-text {
  color: #000000;
}
.cid-uLh0W3RbK1 {
  padding-top: 7rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uLh0W3RbK1 img,
.cid-uLh0W3RbK1 .item-img {
  width: 100%;
}
.cid-uLh0W3RbK1 .item:focus,
.cid-uLh0W3RbK1 span:focus {
  outline: none;
}
.cid-uLh0W3RbK1 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uLh0W3RbK1 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uLh0W3RbK1 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uLh0W3RbK1 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uLh0W3RbK1 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uLh0W3RbK1 .mbr-section-title {
  color: #232323;
}
.cid-uLh0W3RbK1 .mbr-text,
.cid-uLh0W3RbK1 .mbr-section-btn {
  text-align: left;
}
.cid-uLh0W3RbK1 .item-title {
  text-align: left;
}
.cid-uLh0W3RbK1 .item-subtitle {
  text-align: left;
}
.cid-uLh0W552zl {
  padding-top: 11rem;
  padding-bottom: 5rem;
  background-color: #ffe885;
  overflow: hidden;
}
.cid-uLh0W552zl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLh0W552zl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uLh0W552zl .container {
    padding: 0 22px;
  }
}
.cid-uLh0W552zl .card {
  justify-content: center;
}
.cid-uLh0W552zl .content-wrapper {
  padding-right: 32px;
  padding-right: 0;
  padding-left: 32px;
}
@media (max-width: 992px) {
  .cid-uLh0W552zl .content-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uLh0W552zl .content-wrapper {
    padding: 0;
    margin-bottom: 40px;
  }
}
.cid-uLh0W552zl .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uLh0W552zl .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uLh0W552zl .image-wrapper {
  display: flex;
  justify-content: center;
}
.cid-uLh0W552zl .image-wrapper img {
  height: 600px;
  width: 600px;
  border-radius: 100% !important;
  object-fit: cover;
  box-shadow: 10px 10px 60px #e43f3f;
}
@media (max-width: 1440px) {
  .cid-uLh0W552zl .image-wrapper img {
    height: 500px;
    width: 500px;
  }
}
@media (max-width: 1200px) {
  .cid-uLh0W552zl .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 992px) {
  .cid-uLh0W552zl .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 768px) {
  .cid-uLh0W552zl .image-wrapper img {
    height: 260px;
    width: 260px;
  }
}
.cid-uLh0W552zl .mbr-section-title {
  color: #000000;
}
.cid-uLh0W552zl .mbr-text {
  color: #000000;
}
.cid-uLh0W5Wk58 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uLh0W5Wk58 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLh0W5Wk58 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLh0W5Wk58 .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-uLh0W5Wk58 .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uLh0W5Wk58 .container {
    padding: 0 30px;
  }
}
.cid-uLh0W5Wk58 .mbr-section-title {
  margin-bottom: 70px;
  color: #000000;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uLh0W5Wk58 .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uLh0W5Wk58 .video-block .video-wrapper .app-video-wrapper img {
  height: 700px;
  object-fit: cover;
  border-radius: 2em;
}
@media (max-width: 992px) {
  .cid-uLh0W5Wk58 .video-block .video-wrapper .app-video-wrapper img {
    height: 350px;
  }
}
.cid-uLh0W5Wk58 .video-block .video-wrapper .app-video-wrapper::before {
  color: #fff0b0;
  text-shadow: none;
}
.cid-uLh0W5Wk58 .video-block .video-wrapper iframe {
  height: 700px;
  object-fit: cover;
  border-radius: 2em;
}
@media (max-width: 992px) {
  .cid-uLh0W5Wk58 .video-block .video-wrapper iframe {
    height: 350px;
  }
}
.cid-uLh0W6TPc9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uLh0W7JXtV {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #232323;
}
.cid-uLh0W7JXtV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLh0W7JXtV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uLh0W7JXtV .container {
    padding: 0 20px;
  }
}
@media (max-width: 767px) {
  .cid-uLh0W7JXtV .container {
    padding: 0 4px;
  }
}
.cid-uLh0W7JXtV .row {
  margin: 0;
}
.cid-uLh0W7JXtV .row .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uLh0W7JXtV .row .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uLh0W7JXtV .row .panel-group .card {
  border-bottom: 1px solid #838383;
  border-radius: 0 !important;
}
.cid-uLh0W7JXtV .row .panel-group .card:first-child {
  border-top: 1px solid #838383;
}
.cid-uLh0W7JXtV .row .panel-group .card .card-header {
  padding: 32px 0;
  border-bottom: none;
  background-color: transparent;
}
.cid-uLh0W7JXtV .row .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-uLh0W7JXtV .row .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(-45deg);
}
.cid-uLh0W7JXtV .row .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uLh0W7JXtV .row .panel-group .card .card-header .panel-title .mbr-iconfont {
  font-size: 24px;
  transition: all 0.3s ease-out;
}
.cid-uLh0W7JXtV .row .panel-group .card .panel-collapse .panel-body {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uLh0W7JXtV .row .panel-group .card .panel-collapse .panel-body {
    margin-bottom: 32px;
  }
}
.cid-uLh0W7JXtV .row .panel-group .card .panel-collapse .panel-body .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uLh0W7JXtV .row .panel-group .card .panel-collapse .panel-body .mbr-text {
    margin-bottom: 32px;
  }
}
.cid-uLh0W7JXtV .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-uLh0W7JXtV .panel-title-edit,
.cid-uLh0W7JXtV .mbr-iconfont {
  color: #ffffff;
}
.cid-uLh0W7JXtV .mbr-text {
  color: #ffffff;
}
.cid-uLhry4tN0R {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffe885;
}
.cid-uLhry4tN0R .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLhry4tN0R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLhry4tN0R .container-fluid {
  padding: 0 64px;
}
@media (max-width: 1440px) {
  .cid-uLhry4tN0R .container-fluid {
    padding: 0 36px;
  }
}
@media (max-width: 992px) {
  .cid-uLhry4tN0R .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uLhry4tN0R .container {
    padding: 0 16px;
  }
}
.cid-uLhry4tN0R .row {
  justify-content: space-between;
}
.cid-uLhry4tN0R .title-wrapper {
  position: sticky;
}
.cid-uLhry4tN0R .title-wrapper .mbr-section-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uLhry4tN0R .title-wrapper .mbr-section-title {
    margin-bottom: 36px;
  }
}
.cid-uLhry4tN0R .panel-group .card {
  border-bottom: none;
  background-image: linear-gradient(135deg, #00d372, #56acff 34%, #7179ef 67%, #e26a69) !important;
  border-radius: 2em !important;
  padding: 5px;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uLhry4tN0R .panel-group .card {
    margin-bottom: 24px;
  }
}
.cid-uLhry4tN0R .panel-group .card .card-wrap {
  border-radius: 1.9em !important;
  background-color: #f0f0f0;
  padding: 36px;
}
@media (max-width: 992px) {
  .cid-uLhry4tN0R .panel-group .card .card-wrap {
    padding: 16px;
  }
}
.cid-uLhry4tN0R .panel-group .card .card-wrap .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
}
.cid-uLhry4tN0R .panel-group .card .card-wrap .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uLhry4tN0R .panel-group .card .card-wrap .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-uLhry4tN0R .panel-group .card .card-wrap .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uLhry4tN0R .panel-group .card .card-wrap .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  min-width: 54px;
  font-size: 26px;
  color: #080808;
  transition: all 0.3s ease-in-out;
  margin-left: 10px;
  background-image: linear-gradient(135deg, #00d372, #56acff 34%, #7179ef 67%, #e26a69);
  border-radius: 50%;
}
.cid-uLhry4tN0R .panel-group .card .card-wrap .panel-collapse .panel-body {
  padding-top: 24px;
}
.cid-uLhry4tN0R .panel-group .card .card-wrap .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uLhry4tN0R .mbr-section-title {
  color: #080808;
}
.cid-uLhry4tN0R .panel-title-edit {
  color: #080808;
}
.cid-uLhry4tN0R .panel-text {
  color: #333333;
}
.cid-uLh0WadV86 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #000000;
}
.cid-uLh0WadV86 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLh0WadV86 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLh0WadV86 .google-map {
  height: 30rem;
  position: relative;
}
.cid-uLh0WadV86 .google-map iframe {
  height: 100%;
  width: 100%;
  background-color: #000000;
  padding: 4px;
}
.cid-uLh0WadV86 .google-map [data-state-details] {
  color: #4b4b4b;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uLh0WadV86 .google-map[data-state] {
  background: #fffff5;
}
.cid-uLh0WadV86 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uLh0WadV86 .mbr-section-title {
  color: #ffffff;
}
.cid-uLh0WbAudf {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffe885;
}
.cid-uLh0WbAudf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLh0WbAudf .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-uLh0WbAudf .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uLh0WbAudf .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-uLh0WbAudf a {
  font-weight: 600;
}
.cid-uLh0WbAudf a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-uLh0WbAudf .col-lg-3,
  .cid-uLh0WbAudf .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-uLh0WbAudf .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-uLh0WbAudf .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-uLh0WbAudf h5 {
  margin: 0;
}
.cid-uLh0WbAudf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLh0WbAudf .iconfont-wrapper {
  position: relative;
}
.cid-uLh0WbAudf .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-uLh0WbAudf .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-uLh0WbAudf .sociconfont-wrapper {
  display: flex;
}
.cid-uLh0WbAudf .card-title,
.cid-uLh0WbAudf .iconfont-wrapper {
  color: #000000;
  text-align: left;
}
.cid-uLh0WbAudf .card-text {
  color: #000000;
}
.cid-uLh0WbAudf .mbr-section-title {
  color: #000000;
}
.cid-uLh0WbAudf .main-title,
.cid-uLh0WbAudf .iconfont-wrapper {
  text-align: left;
}
.cid-uLh0YEMAtw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uLh0YEMAtw nav.navbar {
  position: fixed;
}
.cid-uLh0YEMAtw .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-uLh0YEMAtw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uLh0YEMAtw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uLh0YEMAtw .dropdown-item:hover,
.cid-uLh0YEMAtw .dropdown-item:focus {
  background: #d90a2c !important;
  color: white !important;
}
.cid-uLh0YEMAtw .dropdown-item:hover span {
  color: white;
}
.cid-uLh0YEMAtw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uLh0YEMAtw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uLh0YEMAtw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uLh0YEMAtw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uLh0YEMAtw .nav-link {
  position: relative;
}
.cid-uLh0YEMAtw .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uLh0YEMAtw .container {
    flex-wrap: wrap;
  }
}
.cid-uLh0YEMAtw .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uLh0YEMAtw .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uLh0YEMAtw .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uLh0YEMAtw .dropdown-menu,
.cid-uLh0YEMAtw .navbar.opened {
  background: #000000 !important;
}
.cid-uLh0YEMAtw .nav-item:focus,
.cid-uLh0YEMAtw .nav-link:focus {
  outline: none;
}
.cid-uLh0YEMAtw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uLh0YEMAtw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uLh0YEMAtw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uLh0YEMAtw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uLh0YEMAtw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uLh0YEMAtw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uLh0YEMAtw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uLh0YEMAtw .navbar.opened {
  transition: all 0.3s;
}
.cid-uLh0YEMAtw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uLh0YEMAtw .navbar .navbar-logo img {
  width: auto;
}
.cid-uLh0YEMAtw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uLh0YEMAtw .navbar.collapsed {
  justify-content: center;
}
.cid-uLh0YEMAtw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uLh0YEMAtw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uLh0YEMAtw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-uLh0YEMAtw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uLh0YEMAtw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uLh0YEMAtw .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-uLh0YEMAtw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uLh0YEMAtw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uLh0YEMAtw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uLh0YEMAtw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uLh0YEMAtw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uLh0YEMAtw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uLh0YEMAtw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uLh0YEMAtw .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-uLh0YEMAtw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uLh0YEMAtw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uLh0YEMAtw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uLh0YEMAtw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uLh0YEMAtw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uLh0YEMAtw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uLh0YEMAtw .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uLh0YEMAtw .navbar.navbar-short {
  min-height: 60px;
}
.cid-uLh0YEMAtw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uLh0YEMAtw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uLh0YEMAtw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uLh0YEMAtw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uLh0YEMAtw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uLh0YEMAtw .dropdown-item.active,
.cid-uLh0YEMAtw .dropdown-item:active {
  background-color: transparent;
}
.cid-uLh0YEMAtw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uLh0YEMAtw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uLh0YEMAtw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uLh0YEMAtw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uLh0YEMAtw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uLh0YEMAtw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uLh0YEMAtw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uLh0YEMAtw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uLh0YEMAtw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uLh0YEMAtw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uLh0YEMAtw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uLh0YEMAtw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uLh0YEMAtw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uLh0YEMAtw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uLh0YEMAtw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uLh0YEMAtw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uLh0YEMAtw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uLh0YEMAtw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uLh0YEMAtw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uLh0YEMAtw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uLh0YEMAtw .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-uLh0YEMAtw .navbar {
    height: 70px;
  }
  .cid-uLh0YEMAtw .navbar.opened {
    height: auto;
  }
  .cid-uLh0YEMAtw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uLh0YFTZse {
  padding-top: 12rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uLh0YFTZse .decor-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 52%;
  height: 95%;
  border-radius: 0 85% 0 0;
  background-color: #ffe885;
  pointer-events: none;
}
@media (max-width: 992px) {
  .cid-uLh0YFTZse .decor-wrap {
    width: 60%;
    height: 50%;
    border-radius: 0 50% 0 0;
  }
}
.cid-uLh0YFTZse .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLh0YFTZse .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLh0YFTZse .row {
  position: relative;
  z-index: 1;
}
.cid-uLh0YFTZse .title-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uLh0YFTZse .title-wrapper .mbr-section-title {
    margin-bottom: 46px;
  }
}
.cid-uLh0YFTZse .image-wrapper {
  margin-right: 18px;
  margin-right: 0;
  margin-left: 18px;
}
@media (max-width: 992px) {
  .cid-uLh0YFTZse .image-wrapper {
    margin-right: 0;
    margin-bottom: 46px;
  }
}
@media (max-width: 992px) {
  .cid-uLh0YFTZse .image-wrapper {
    margin-left: 0;
  }
}
.cid-uLh0YFTZse .image-wrapper img {
  height: 620px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uLh0YFTZse .image-wrapper img {
    height: 350px;
  }
}
.cid-uLh0YFTZse .content-wrapper {
  padding-top: 64px;
}
@media (max-width: 992px) {
  .cid-uLh0YFTZse .content-wrapper {
    padding-top: 22px;
  }
}
.cid-uLh0YFTZse .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 46px;
  display: inline-block;
  width: 55%;
}
@media (max-width: 992px) {
  .cid-uLh0YFTZse .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 22px;
  }
}
.cid-uLh0YFTZse .content-wrapper .desc-wrapper {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uLh0YFTZse .content-wrapper .desc-wrapper {
    display: block;
  }
}
.cid-uLh0YFTZse .content-wrapper .desc-wrapper .mbr-desc {
  width: 50%;
  margin-right: 20px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uLh0YFTZse .content-wrapper .desc-wrapper .mbr-desc {
    margin-right: 0;
    width: 100%;
    margin-bottom: 12px;
  }
}
.cid-uLh0YFTZse .content-wrapper .desc-wrapper .mbr-section-btn {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uLh0YFTZse .content-wrapper .desc-wrapper .mbr-section-btn {
    width: 100%;
  }
}
.cid-uLh0YFTZse .content-wrapper .desc-wrapper .mbr-section-btn .btn {
  padding: 29px 64px;
}
@media (max-width: 1200px) {
  .cid-uLh0YFTZse .content-wrapper .desc-wrapper .mbr-section-btn .btn {
    padding: 20px 32px;
  }
}
.cid-uLh0YFTZse .mbr-section-title {
  color: #212529;
  text-align: center;
}
.cid-uLh0YFTZse .mbr-text {
  color: #51565c;
}
.cid-uLh0YFTZse .mbr-desc {
  color: #51565c;
}
.cid-uLh0YFTZse .mbr-text,
.cid-uLh0YFTZse .text-wrapper {
  color: #000000;
}
.cid-uLh0YGRMZf {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uLh0YGRMZf .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uLh0YGRMZf .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-uLh0YGRMZf .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #d90a2c;
  background-color: #000000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #000000;
  color: #000000;
  content: "✓";
}
.cid-uLh0YGRMZf .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-uLh0YGRMZf .mbr-text {
  color: #000000;
}
.cid-uLh0YGRMZf .mbr-subtitle {
  text-align: center;
  color: #eff0ff;
}
.cid-uLh0YICdWK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffe885;
}
.cid-uLh0YICdWK .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uLh0YJac6j {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uLh0YJac6j .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLh0YJac6j .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLh0YJac6j .content-wrapper {
  padding: 10px;
  border-top: 10px solid #000000;
  box-shadow: 0 19px 45px 0 #0000001a;
  background-color: #ffffff;
}
.cid-uLh0YJac6j .content-wrapper .content-wrap {
  padding: 40px 40px 50px;
}
@media (max-width: 992px) {
  .cid-uLh0YJac6j .content-wrapper .content-wrap {
    padding: 10px 10px 30px;
  }
}
.cid-uLh0YJac6j .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 20px;
}
.cid-uLh0YJac6j .content-wrapper .content-wrap .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uLh0YJac6j .content-wrapper .content-wrap .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uLh0YJac6j .image-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 992px) {
  .cid-uLh0YJac6j .image-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-uLh0YJac6j .image-wrapper .image-wrap img {
  height: 430px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uLh0YJac6j .image-wrapper .image-wrap img {
    height: 300px;
  }
}
.cid-uLh0YJac6j .mbr-section-title {
  color: #000c3f;
}
.cid-uLh0YJac6j .mbr-text {
  color: #000c3f;
}
.cid-uLh0YJac6j .mbr-section-title,
.cid-uLh0YJac6j .mbr-section-btn {
  color: #000000;
}
.cid-uLh0YJac6j .mbr-text,
.cid-uLh0YJac6j .text-wrapper {
  color: #000000;
}
.cid-uLh0YJJHL7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffe885;
  position: relative;
  overflow: hidden;
}
.cid-uLh0YJJHL7 .row {
  justify-content: center;
}
.cid-uLh0YJJHL7 .title-container {
  max-width: 720px;
  padding: 0;
  margin-bottom: 80px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 991px) {
  .cid-uLh0YJJHL7 .title-container {
    margin-bottom: 64px;
  }
}
@media (max-width: 767px) {
  .cid-uLh0YJJHL7 .title-container {
    margin-bottom: 56px;
  }
}
.cid-uLh0YJJHL7 .mbr-section-title {
  color: #6148ff;
}
.cid-uLh0YJJHL7 .mbr-section-subtitle {
  color: #161616;
  margin-top: 24px;
}
.cid-uLh0YJJHL7 .grid-container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 80px;
  grid-row-gap: 0;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uLh0YJJHL7 .grid-container {
    grid-column-gap: 48px;
  }
}
@media (max-width: 767px) {
  .cid-uLh0YJJHL7 .grid-container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.cid-uLh0YJJHL7 .content-container {
  display: flex;
  padding: 0 !important;
}
.cid-uLh0YJJHL7 .text-container {
  margin-bottom: 24px;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  border-radius: 16px;
}
@media (max-width: 767px) {
  .cid-uLh0YJJHL7 .text-container {
    margin-bottom: 56px;
    padding: 0;
  }
}
.cid-uLh0YJJHL7 .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  flex-grow: 1;
}
.cid-uLh0YJJHL7 .text-padding {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0;
}
.cid-uLh0YJJHL7 .opinion-stars {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-bottom: 21px;
}
@media (max-width: 767px) {
  .cid-uLh0YJJHL7 .opinion-stars {
    margin-bottom: 13px;
  }
}
.cid-uLh0YJJHL7 .iconfont-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3px 3px;
}
.cid-uLh0YJJHL7 .iconfont-wrapper .mbr-iconfont {
  font-size: 21px;
  color: #3e1fff;
}
.cid-uLh0YJJHL7 .card-title {
  width: 100%;
  color: #000000;
  margin-bottom: 1rem;
  margin-top: 8px;
}
.cid-uLh0YJJHL7 .mbr-text {
  width: 100%;
  color: #000000;
  opacity: 0.75;
  margin-bottom: 40px !important;
}
@media (max-width: 767px) {
  .cid-uLh0YJJHL7 .mbr-text {
    margin-bottom: 24px !important;
  }
}
.cid-uLh0YJJHL7 .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 16px;
  border-radius: 12px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .cid-uLh0YJJHL7 .image-wrapper {
    width: 48px;
    height: 48px;
  }
}
.cid-uLh0YJJHL7 .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uLh0YJJHL7 .name-text {
  color: #161616;
  width: 100%;
  margin-bottom: 0;
}
.cid-uLh0YJJHL7 .prof-text {
  max-width: 350px;
  color: #000000;
  opacity: 0.75;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-uLh0YJJHL7 .prof-text {
    max-width: 100%;
    width: 100%;
  }
}
.cid-uLh0YJJHL7 .circle-blur {
  position: absolute;
  top: 5%;
  right: 5% !important;
  bottom: auto;
  display: block;
  width: 440px;
  height: 440px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  background-image: linear-gradient(132deg, #feff98 27%, #ff3399 50%, #99f5fe 79%);
  opacity: .97;
  -webkit-filter: blur(64px) blur(64px);
  filter: blur(64px) blur(64px);
}
.cid-uLh0YLdPtM {
  overflow: hidden;
  background-color: #f4f4f6;
}
.cid-uLh0YLdPtM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLh0YLdPtM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLh0YLdPtM .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uLh0YLdPtM .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uLh0YLdPtM .container {
    padding: 0 24px;
  }
}
.cid-uLh0YLdPtM .content-wrapper {
  position: relative;
  z-index: 1;
}
.cid-uLh0YLdPtM .content-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uLh0YLdPtM .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uLh0YLdPtM .content-wrapper .mbr-desc {
  margin-bottom: 56px;
}
.cid-uLh0YLdPtM .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uLh0YLdPtM .content-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-uLh0YLdPtM .content-wrapper .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #fb8fc9 0%, transparent 100%);
}
.cid-uLh0YLdPtM .content-wrapper .mbr-section-btn .btn:hover,
.cid-uLh0YLdPtM .content-wrapper .mbr-section-btn .btn:focus {
  box-shadow: inset 250px 10px 5px #7f89e9 !important;
  border-color: #7f89e9 !important;
}
.cid-uLh0YLdPtM .decor-wrapper {
  position: absolute;
  bottom: -100%;
  left: 0;
  display: flex;
  justify-content: center;
  width: 100%;
}
.cid-uLh0YLdPtM .decor-wrapper .decor-wrap {
  width: 400px;
  height: 400px;
  border-radius: 100%;
  filter: blur(80px);
}
.cid-uLh0YLdPtM .decor-wrapper .decor_1 {
  background-color: #f8e885;
}
.cid-uLh0YLdPtM .decor-wrapper .decor_2 {
  background-color: #22aa93;
}
.cid-uLh0YLdPtM .decor-wrapper .decor_3 {
  background-color: #f7fff7;
}
.cid-uLh0YLdPtM .decor-wrapper .decor_4 {
  background-color: #82ebff;
}
.cid-uLh0YLdPtM .mbr-section-title {
  color: #141414;
}
.cid-uLh0YLdPtM .mbr-section-subtitle {
  color: #141414;
  text-align: center;
}
.cid-uLh0YLdPtM .mbr-desc {
  color: #141414;
  text-align: center;
}
.cid-uLh0YLdPtM .mbr-text {
  color: #141414;
  text-align: center;
}
.cid-uLh0YLdPtM .mbr-section-title,
.cid-uLh0YLdPtM .mbr-section-btn {
  text-align: center;
}
.cid-uLhmV0nlQC {
  padding-top: 1rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uLhmV0nlQC img,
.cid-uLhmV0nlQC .item-img {
  width: 100%;
}
.cid-uLhmV0nlQC .item:focus,
.cid-uLhmV0nlQC span:focus {
  outline: none;
}
.cid-uLhmV0nlQC .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uLhmV0nlQC .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffe885;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uLhmV0nlQC .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uLhmV0nlQC .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uLhmV0nlQC .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uLhmV0nlQC .mbr-section-title {
  color: #232323;
}
.cid-uLhmV0nlQC .mbr-text,
.cid-uLhmV0nlQC .mbr-section-btn {
  text-align: left;
}
.cid-uLhmV0nlQC .item-title {
  text-align: left;
  color: #000000;
}
.cid-uLhmV0nlQC .item-subtitle {
  text-align: left;
}
.cid-uLh0YMIEhs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffe885;
  position: relative;
  overflow: hidden;
}
.cid-uLh0YMIEhs::before {
  content: '';
  position: absolute;
  top: 0;
  right: 4rem;
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background-image: linear-gradient(180deg, #fafafa -10%, transparent 70%);
}
.cid-uLh0YMIEhs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLh0YMIEhs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uLh0YMIEhs .container {
    padding: 0 16px;
  }
}
.cid-uLh0YMIEhs .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-uLh0YMIEhs .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uLh0YMIEhs .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uLh0YMIEhs .mbr-section-title {
  color: #000000;
}
.cid-uLh0YMIEhs .mbr-text {
  color: #000000;
}
.cid-uLh0YNpsmt {
  padding-top: 7rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uLh0YNpsmt img,
.cid-uLh0YNpsmt .item-img {
  width: 100%;
}
.cid-uLh0YNpsmt .item:focus,
.cid-uLh0YNpsmt span:focus {
  outline: none;
}
.cid-uLh0YNpsmt .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uLh0YNpsmt .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uLh0YNpsmt .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uLh0YNpsmt .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uLh0YNpsmt .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uLh0YNpsmt .mbr-section-title {
  color: #232323;
}
.cid-uLh0YNpsmt .mbr-text,
.cid-uLh0YNpsmt .mbr-section-btn {
  text-align: left;
}
.cid-uLh0YNpsmt .item-title {
  text-align: left;
}
.cid-uLh0YNpsmt .item-subtitle {
  text-align: left;
}
.cid-uLh0YOmyLu {
  padding-top: 11rem;
  padding-bottom: 5rem;
  background-color: #ffe885;
  overflow: hidden;
}
.cid-uLh0YOmyLu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLh0YOmyLu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uLh0YOmyLu .container {
    padding: 0 22px;
  }
}
.cid-uLh0YOmyLu .card {
  justify-content: center;
}
.cid-uLh0YOmyLu .content-wrapper {
  padding-right: 32px;
  padding-right: 0;
  padding-left: 32px;
}
@media (max-width: 992px) {
  .cid-uLh0YOmyLu .content-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uLh0YOmyLu .content-wrapper {
    padding: 0;
    margin-bottom: 40px;
  }
}
.cid-uLh0YOmyLu .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uLh0YOmyLu .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uLh0YOmyLu .image-wrapper {
  display: flex;
  justify-content: center;
}
.cid-uLh0YOmyLu .image-wrapper img {
  height: 600px;
  width: 600px;
  border-radius: 100% !important;
  object-fit: cover;
  box-shadow: 10px 10px 60px #e43f3f;
}
@media (max-width: 1440px) {
  .cid-uLh0YOmyLu .image-wrapper img {
    height: 500px;
    width: 500px;
  }
}
@media (max-width: 1200px) {
  .cid-uLh0YOmyLu .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 992px) {
  .cid-uLh0YOmyLu .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 768px) {
  .cid-uLh0YOmyLu .image-wrapper img {
    height: 260px;
    width: 260px;
  }
}
.cid-uLh0YOmyLu .mbr-section-title {
  color: #000000;
}
.cid-uLh0YOmyLu .mbr-text {
  color: #000000;
}
.cid-uLh0YP450W {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uLh0YP450W .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLh0YP450W .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLh0YP450W .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-uLh0YP450W .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uLh0YP450W .container {
    padding: 0 30px;
  }
}
.cid-uLh0YP450W .mbr-section-title {
  margin-bottom: 70px;
  color: #000000;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uLh0YP450W .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uLh0YP450W .video-block .video-wrapper .app-video-wrapper img {
  height: 700px;
  object-fit: cover;
  border-radius: 2em;
}
@media (max-width: 992px) {
  .cid-uLh0YP450W .video-block .video-wrapper .app-video-wrapper img {
    height: 350px;
  }
}
.cid-uLh0YP450W .video-block .video-wrapper .app-video-wrapper::before {
  color: #fff0b0;
  text-shadow: none;
}
.cid-uLh0YP450W .video-block .video-wrapper iframe {
  height: 700px;
  object-fit: cover;
  border-radius: 2em;
}
@media (max-width: 992px) {
  .cid-uLh0YP450W .video-block .video-wrapper iframe {
    height: 350px;
  }
}
.cid-uLh0YPMMIe {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uLh0YQyQuF {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #232323;
}
.cid-uLh0YQyQuF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLh0YQyQuF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uLh0YQyQuF .container {
    padding: 0 20px;
  }
}
@media (max-width: 767px) {
  .cid-uLh0YQyQuF .container {
    padding: 0 4px;
  }
}
.cid-uLh0YQyQuF .row {
  margin: 0;
}
.cid-uLh0YQyQuF .row .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uLh0YQyQuF .row .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uLh0YQyQuF .row .panel-group .card {
  border-bottom: 1px solid #838383;
  border-radius: 0 !important;
}
.cid-uLh0YQyQuF .row .panel-group .card:first-child {
  border-top: 1px solid #838383;
}
.cid-uLh0YQyQuF .row .panel-group .card .card-header {
  padding: 32px 0;
  border-bottom: none;
  background-color: transparent;
}
.cid-uLh0YQyQuF .row .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-uLh0YQyQuF .row .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(-45deg);
}
.cid-uLh0YQyQuF .row .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uLh0YQyQuF .row .panel-group .card .card-header .panel-title .mbr-iconfont {
  font-size: 24px;
  transition: all 0.3s ease-out;
}
.cid-uLh0YQyQuF .row .panel-group .card .panel-collapse .panel-body {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uLh0YQyQuF .row .panel-group .card .panel-collapse .panel-body {
    margin-bottom: 32px;
  }
}
.cid-uLh0YQyQuF .row .panel-group .card .panel-collapse .panel-body .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uLh0YQyQuF .row .panel-group .card .panel-collapse .panel-body .mbr-text {
    margin-bottom: 32px;
  }
}
.cid-uLh0YQyQuF .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-uLh0YQyQuF .panel-title-edit,
.cid-uLh0YQyQuF .mbr-iconfont {
  color: #ffffff;
}
.cid-uLh0YQyQuF .mbr-text {
  color: #ffffff;
}
.cid-uLhsgrkWPC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffe885;
}
.cid-uLhsgrkWPC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLhsgrkWPC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLhsgrkWPC .container-fluid {
  padding: 0 64px;
}
@media (max-width: 1440px) {
  .cid-uLhsgrkWPC .container-fluid {
    padding: 0 36px;
  }
}
@media (max-width: 992px) {
  .cid-uLhsgrkWPC .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uLhsgrkWPC .container {
    padding: 0 16px;
  }
}
.cid-uLhsgrkWPC .row {
  justify-content: space-between;
}
.cid-uLhsgrkWPC .title-wrapper {
  position: sticky;
}
.cid-uLhsgrkWPC .title-wrapper .mbr-section-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uLhsgrkWPC .title-wrapper .mbr-section-title {
    margin-bottom: 36px;
  }
}
.cid-uLhsgrkWPC .panel-group .card {
  border-bottom: none;
  background-image: linear-gradient(135deg, #00d372, #56acff 34%, #7179ef 67%, #e26a69) !important;
  border-radius: 2em !important;
  padding: 5px;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uLhsgrkWPC .panel-group .card {
    margin-bottom: 24px;
  }
}
.cid-uLhsgrkWPC .panel-group .card .card-wrap {
  border-radius: 1.9em !important;
  background-color: #f0f0f0;
  padding: 36px;
}
@media (max-width: 992px) {
  .cid-uLhsgrkWPC .panel-group .card .card-wrap {
    padding: 16px;
  }
}
.cid-uLhsgrkWPC .panel-group .card .card-wrap .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
}
.cid-uLhsgrkWPC .panel-group .card .card-wrap .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uLhsgrkWPC .panel-group .card .card-wrap .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-uLhsgrkWPC .panel-group .card .card-wrap .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uLhsgrkWPC .panel-group .card .card-wrap .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  min-width: 54px;
  font-size: 26px;
  color: #080808;
  transition: all 0.3s ease-in-out;
  margin-left: 10px;
  background-image: linear-gradient(135deg, #00d372, #56acff 34%, #7179ef 67%, #e26a69);
  border-radius: 50%;
}
.cid-uLhsgrkWPC .panel-group .card .card-wrap .panel-collapse .panel-body {
  padding-top: 24px;
}
.cid-uLhsgrkWPC .panel-group .card .card-wrap .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uLhsgrkWPC .mbr-section-title {
  color: #080808;
}
.cid-uLhsgrkWPC .panel-title-edit {
  color: #080808;
}
.cid-uLhsgrkWPC .panel-text {
  color: #333333;
}
.cid-uLh0YS8bwU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #000000;
}
.cid-uLh0YS8bwU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLh0YS8bwU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLh0YS8bwU .google-map {
  height: 30rem;
  position: relative;
}
.cid-uLh0YS8bwU .google-map iframe {
  height: 100%;
  width: 100%;
  background-color: #000000;
  padding: 4px;
}
.cid-uLh0YS8bwU .google-map [data-state-details] {
  color: #4b4b4b;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uLh0YS8bwU .google-map[data-state] {
  background: #fffff5;
}
.cid-uLh0YS8bwU .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uLh0YS8bwU .mbr-section-title {
  color: #ffffff;
}
.cid-uLh0YT6fwm {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffe885;
}
.cid-uLh0YT6fwm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLh0YT6fwm .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-uLh0YT6fwm .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uLh0YT6fwm .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-uLh0YT6fwm a {
  font-weight: 600;
}
.cid-uLh0YT6fwm a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-uLh0YT6fwm .col-lg-3,
  .cid-uLh0YT6fwm .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-uLh0YT6fwm .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-uLh0YT6fwm .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-uLh0YT6fwm h5 {
  margin: 0;
}
.cid-uLh0YT6fwm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLh0YT6fwm .iconfont-wrapper {
  position: relative;
}
.cid-uLh0YT6fwm .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-uLh0YT6fwm .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-uLh0YT6fwm .sociconfont-wrapper {
  display: flex;
}
.cid-uLh0YT6fwm .card-title,
.cid-uLh0YT6fwm .iconfont-wrapper {
  color: #000000;
  text-align: left;
}
.cid-uLh0YT6fwm .card-text {
  color: #000000;
}
.cid-uLh0YT6fwm .mbr-section-title {
  color: #000000;
}
.cid-uLh0YT6fwm .main-title,
.cid-uLh0YT6fwm .iconfont-wrapper {
  text-align: left;
}
