body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Luxurious Roman', display;
  font-size: 4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Luxurious Roman', display;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Luxurious Roman', display;
  font-size: 1.5rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.875rem;
}
.display-5 {
  font-family: 'Luxurious Roman', display;
  font-size: 1.9rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.375rem;
}
.display-7 {
  font-family: 'Luxurious Roman', 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.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 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: #ff9966 !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: #ff9966 !important;
  border-color: #ff9966 !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: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !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: #ff9966;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ff5f0f !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: #ff9966 !important;
  border-color: #ff9966 !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: #ff9966 !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: #ff5500 !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: #ff9966;
}
.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: #ff9966;
  border-color: #ff9966;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ff9966;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #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: 'Luxurious Roman', display;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.875rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #ff9966 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Luxurious Roman', display;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.875rem;
}
blockquote {
  border-color: #ff9966;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ff9966;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ff9966;
}
.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: #ff9966;
  border-bottom-color: #ff9966;
}
.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: #000000 !important;
  background-color: #ff9966 !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='%23ff9966' %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-ubUVfykJ9y {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-ubUVfykJ9y .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-ubUVfykJ9y .btn:hover {
  background: #ff6666 !important;
  border-color: #ff6666 !important;
}
@media (max-width: 767px) {
  .cid-ubUVfykJ9y .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-ubUVfykJ9y .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ubUVfykJ9y .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-ubUVfykJ9y .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ubUVfykJ9y .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ubUVfykJ9y .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-ubUVfykJ9y .navbar-nav .nav-item {
  padding: 0 !important;
  transition: 0.3s all !important;
}
.cid-ubUVfykJ9y .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: 0.3s all !important;
  border-radius: 4px !important;
}
.cid-ubUVfykJ9y .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-ubUVfykJ9y .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-ubUVfykJ9y .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-ubUVfykJ9y .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: 0.3s all !important;
  border-radius: 4px !important;
}
.cid-ubUVfykJ9y .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-ubUVfykJ9y .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-ubUVfykJ9y .nav-link {
  width: fit-content;
  position: relative;
}
.cid-ubUVfykJ9y .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-ubUVfykJ9y .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-ubUVfykJ9y .navbar-caption {
  padding-left: 1rem;
  padding-right: 0.5rem;
}
@media (max-width: 767px) {
  .cid-ubUVfykJ9y .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-ubUVfykJ9y .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: 0.3s all;
}
.cid-ubUVfykJ9y .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  border-radius: 4px !important;
}
@media (max-width: 992px) {
  .cid-ubUVfykJ9y .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ubUVfykJ9y .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-ubUVfykJ9y .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ubUVfykJ9y .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: 0.3s all !important;
  min-width: auto;
  background: #fff0b0;
  border-radius: 4px !important;
}
.cid-ubUVfykJ9y .nav-item:focus,
.cid-ubUVfykJ9y .nav-link:focus {
  outline: none;
}
.cid-ubUVfykJ9y .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ubUVfykJ9y .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ubUVfykJ9y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ubUVfykJ9y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ubUVfykJ9y .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ubUVfykJ9y .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ubUVfykJ9y .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-ubUVfykJ9y .navbar.opened {
  transition: all 0.25s;
}
.cid-ubUVfykJ9y .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ubUVfykJ9y .navbar .navbar-logo img {
  width: auto;
}
.cid-ubUVfykJ9y .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-ubUVfykJ9y .navbar.collapsed {
  justify-content: center;
}
.cid-ubUVfykJ9y .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ubUVfykJ9y .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ubUVfykJ9y .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-ubUVfykJ9y .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ubUVfykJ9y .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ubUVfykJ9y .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-ubUVfykJ9y .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ubUVfykJ9y .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ubUVfykJ9y .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-ubUVfykJ9y .navbar {
    min-height: 72px;
  }
  .cid-ubUVfykJ9y .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-ubUVfykJ9y .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ubUVfykJ9y .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ubUVfykJ9y .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ubUVfykJ9y .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ubUVfykJ9y .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-ubUVfykJ9y .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ubUVfykJ9y .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-ubUVfykJ9y .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ubUVfykJ9y .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ubUVfykJ9y .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-ubUVfykJ9y .dropdown-item.active,
.cid-ubUVfykJ9y .dropdown-item:active {
  background-color: transparent;
}
.cid-ubUVfykJ9y .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ubUVfykJ9y .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ubUVfykJ9y .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ubUVfykJ9y .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fff0b0;
}
.cid-ubUVfykJ9y .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-ubUVfykJ9y .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-ubUVfykJ9y ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ubUVfykJ9y .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-ubUVfykJ9y .navbar-buttons {
    text-align: left;
  }
}
.cid-ubUVfykJ9y button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ubUVfykJ9y button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ubUVfykJ9y button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ubUVfykJ9y button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ubUVfykJ9y button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ubUVfykJ9y button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ubUVfykJ9y nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ubUVfykJ9y nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ubUVfykJ9y nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ubUVfykJ9y nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ubUVfykJ9y .navbar-dropdown {
  padding: 0;
  background-color: #fff0b0 !important;
}
.cid-ubUVfykJ9y .opacityScroll {
  background: #fff0b0 !important;
}
.cid-ubUVfykJ9y a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ubUVfykJ9y .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-ubUVfykJ9y .icons-menu {
    justify-content: flex-start;
    margin-bottom: 0.5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ubUVfykJ9y .navbar {
    height: 70px;
  }
  .cid-ubUVfykJ9y .navbar.opened {
    height: auto;
  }
  .cid-ubUVfykJ9y .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ubUVfykJ9y .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-ubUVfykJ9y .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-ubUVfykJ9y .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-ubUVfykJ9y .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: 0.3s all;
  transform: rotate(-90deg);
}
.cid-ubUVfykJ9y .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-ubUVfykJ9y .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-ubUVfykJ9y .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-ubUVfykJ9y .navbar-brand {
    margin-right: auto;
  }
  .cid-ubUVfykJ9y .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #fff0b0;
    backdrop-filter: blur(8px);
    border-radius: 4px !important;
  }
  .cid-ubUVfykJ9y .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-ubUVfykJ9y .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-ubUVfykJ9y .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-ubUVfykJ9y .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-ubUVfykJ9y .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-ubUVfykJ9y .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: 0.3s all;
    transform: rotate(0deg);
  }
  .cid-ubUVfykJ9y .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-ubUVfykJ9y .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-ubUVfykJ9y .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ubUVfykJ9y .navbar-collapse {
    left: -0.7rem;
    width: 106%;
    border-radius: 0;
  }
}
@media (max-width: 991px) and (min-width: 768px) and (max-width: 991px) {
  .cid-ubUVfykJ9y .navbar-collapse {
    left: 0rem;
    width: 106%;
    border-radius: 0;
  }
}
@media (max-width: 575px) {
  .cid-ubUVfykJ9y .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uc8WkhRYsY {
  overflow: hidden;
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/1994abae62f5d95bc55e0b21cf8f0812523a713720230823t204912z-1.jpg");
}
.cid-uc8WkhRYsY .container {
  margin: 0 auto;
  padding: 0 25px;
}
.cid-uc8WkhRYsY .wrap {
  padding: 0 25px;
}
.cid-uc8WkhRYsY .wrap:before {
  content: '';
  position: absolute;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  mix-blend-mode: multiply;
  background-color: #ff8a8a;
  top: 0px;
  right: 0px;
}
.cid-uc8WkhRYsY .title__block {
  padding: 90px 0;
  display: flex;
  flex-direction: column;
  z-index: 1;
  position: relative;
}
.cid-uc8WkhRYsY .mbr-text {
  margin-bottom: 20px;
}
.cid-uc8WkhRYsY .mbr-section-btn {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .cid-uc8WkhRYsY .title__block {
    padding: 80px 0;
  }
}
@media (max-width: 991px) {
  .cid-uc8WkhRYsY .container,
  .cid-uc8WkhRYsY .row {
    margin: 0;
    padding: 0;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-uc8WkhRYsY .title__block {
    padding: 50px 0;
  }
}
@media (max-width: 575px) {
  .cid-uc8WkhRYsY a.close {
    right: 50px;
    top: 25px;
  }
  .cid-uc8WkhRYsY .modalWindow .modalWindow-video {
    height: calc(90vw / 1.778);
    width: 90vw;
    margin: 0 auto;
  }
}
.cid-uc8WkhRYsY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uc8WkhRYsY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uc7hvaWUbz {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-uc7hvaWUbz ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-uc7hvaWUbz li {
  position: relative;
}
.cid-uc7hvaWUbz li:nth-last-child(n+2) {
  margin-bottom: 1rem;
}
.cid-uc7hvaWUbz ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #22a5e5;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-uc7hvaWUbz .background {
  padding: 3rem 1rem;
  background-color: #0b0c37;
}
@media (min-width: 992px) {
  .cid-uc7hvaWUbz .background {
    margin-top: 5rem;
  }
}
@media (min-width: 992px) {
  .cid-uc7hvaWUbz .display-1 {
    font-size: 70px;
  }
  .cid-uc7hvaWUbz .display-5 {
    font-size: 29px;
  }
  .cid-uc7hvaWUbz .display-7 {
    font-size: 22px;
  }
}
.cid-uc7hvaWUbz .list {
  color: #fff0b0;
}
.cid-uc7hvaWUbz .mbr-section-title {
  color: #ff9966;
}
.cid-ubUYEEoQYp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0b0c37;
}
.cid-ubUYEEoQYp .mbr-text {
  color: #fafafa;
}
.cid-ubUYYOofPE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  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%;
  left: 5%;
  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-uc7hGf2J71 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #0b0c37;
}
.cid-uc7hGf2J71 .mbr-text {
  border-left: 1px solid currentColor;
  padding-left: 1rem;
  color: #C0BCB7;
}
.cid-uc7hGf2J71 .mbr-section-subtitle {
  color: #c0bcb7;
}
.cid-uc7hGf2J71 .title {
  text-align: right;
}
@media (max-width: 991px) {
  .cid-uc7hGf2J71 .title {
    text-align: left;
  }
}
@media (max-width: 991px) {
  .cid-uc7hGf2J71 .col-12 {
    flex-direction: row-reverse;
  }
  .cid-uc7hGf2J71 .col-12,
  .cid-uc7hGf2J71 .col-md-12 {
    padding: 0;
  }
}
.cid-uc7hGf2J71 .si img {
  width: auto;
}
.cid-uc7hGf2J71 .mbr-section-title {
  color: #ffffff;
}
.cid-ubV0Kz6c6U {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ubV0Kz6c6U .mbr-fallback-image.disabled {
  display: none;
}
.cid-ubV0Kz6c6U .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ubV0Kz6c6U .card-wrapper {
  background: #0b0c37;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-ubV0Kz6c6U .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ubV0Kz6c6U .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ubV0Kz6c6U .card-wrapper {
    padding: 4rem;
  }
}
.cid-ubV0Kz6c6U .mbr-text,
.cid-ubV0Kz6c6U .mbr-section-btn {
  color: #ffffff;
}
.cid-ubV0Kz6c6U .card-title,
.cid-ubV0Kz6c6U .card-box {
  text-align: left;
  color: #ffffff;
}
.cid-uc76rHRRxA {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #0b0c37;
}
.cid-uc76rHRRxA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uc76rHRRxA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uc76rHRRxA .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uc76rHRRxA .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uc76rHRRxA .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-uc76rHRRxA .card-title {
  color: #ffffff;
}
.cid-uc7gS7YSHB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uc7gS7YSHB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uc7gS7YSHB .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-uc7gS7YSHB .container {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uc7gS7YSHB .image-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uc7gS7YSHB .image-wrapper img {
  height: 460px;
  object-fit: cover;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uc7gS7YSHB .image-wrapper img {
    height: 300px;
  }
}
.cid-uc7gS7YSHB .card-wrapper {
  margin-top: 15%;
  padding-top: 120px;
  background-color: #0b0c37;
  border-radius: 40px;
}
@media (max-width: 992px) {
  .cid-uc7gS7YSHB .card-wrapper {
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  .cid-uc7gS7YSHB .card-wrapper {
    margin-top: 0;
    padding-top: 20px;
  }
}
.cid-uc7gS7YSHB .card-wrapper .mbr-section-title {
  padding: 0 100px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uc7gS7YSHB .card-wrapper .mbr-section-title {
    margin-bottom: 20px;
    padding: 0 20px;
  }
}
.cid-uc7gS7YSHB .card-wrapper .mbr-text {
  padding: 0 100px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-uc7gS7YSHB .card-wrapper .mbr-text {
    padding: 0 20px;
  }
}
.cid-uc7gS7YSHB .card-wrapper .icon-wrapper {
  padding: 0 20px 20px;
}
.cid-uc7gS7YSHB .card-wrapper .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  width: 56px;
  background-color: #0b0c37;
  color: #08323c;
  font-size: 20px;
  border-radius: 50%;
}
@media (max-width: 992px) {
  .cid-uc7gS7YSHB .card-wrapper .icon-wrapper {
    display: none;
  }
}
.cid-uc7gS7YSHB .mbr-section-title {
  color: #ffffff;
}
.cid-uc7gS7YSHB .mbr-text {
  color: #ffffff;
}
.cid-uc7gS7YSHB .icon-wrapper {
  text-align: right;
}
.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;
}
@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-ubV6YAiEyP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0b0c37;
  position: relative;
}
.cid-ubV6YAiEyP::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, #9fdbf8, #0b0c37);
}
.cid-ubV6YAiEyP .mbr-fallback-image.disabled {
  display: none;
}
.cid-ubV6YAiEyP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ubV6YAiEyP .container-fluid {
  position: relative;
  z-index: 1;
  padding: 0 60px;
}
@media (max-width: 1440px) {
  .cid-ubV6YAiEyP .container-fluid {
    padding: 0 42px;
  }
}
@media (max-width: 992px) {
  .cid-ubV6YAiEyP .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-ubV6YAiEyP .container {
    padding: 0 16px;
  }
}
.cid-ubV6YAiEyP .content-wrapper .mbr-section-title {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-ubV6YAiEyP .content-wrapper .mbr-section-title {
    margin-bottom: 48px;
  }
}
.cid-ubV6YAiEyP .item {
  margin-bottom: 32px;
}
.cid-ubV6YAiEyP .item .item-wrapper .card-box .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-ubV6YAiEyP .item .item-wrapper .card-box .title-wrapper .title-wrap {
    margin-bottom: 16px;
  }
}
.cid-ubV6YAiEyP .item .item-wrapper .card-box .title-wrapper .title-wrap .mbr-iconfont {
  font-size: 36px;
  color: #f4f4f4;
  margin-right: 12px;
}
.cid-ubV6YAiEyP .item .item-wrapper .card-box .title-wrapper .title-wrap .card-title {
  margin-bottom: 0;
}
.cid-ubV6YAiEyP .item .item-wrapper .card-box .text-wrap .card-text {
  display: inline-flex;
  width: 80%;
  margin-bottom: 0;
}
.cid-ubV6YAiEyP .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ubV6YAiEyP .card-title {
  color: #f4f4f4;
}
.cid-ubV6YAiEyP .card-text {
  color: #c1c1c1;
}
.cid-uc7kGlcGsH {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uc7kGlcGsH {
    padding-top: 6px;
    padding-bottom: 6px;
  }
}
.cid-uc7kGlcGsH img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-uc7kGlcGsH H1 {
  color: #132c70;
}
.cid-uc7kGlcGsH .mbr-text,
.cid-uc7kGlcGsH .mbr-section-btn {
  color: #132c70;
}
.cid-uc7kGlcGsH H3 {
  color: #132c70;
}
.cid-uc7kGlcGsH .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-uc7kGlcGsH .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-uc7kGlcGsH .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-uc7kGlcGsH .link:hover {
  color: #ff9966 !important;
}
.cid-uc7kGlcGsH .link:hover .link-ico {
  color: #ff9966 !important;
  padding-left: 10px;
}
.cid-uc7kGlcGsH DIV {
  color: #57468b;
}
.cid-uc7kGlcGsH .text-1 {
  line-height: 1;
}
.cid-uc7kGlcGsH .container-fluid {
  max-width: 1300px;
}
.cid-uc7kGlcGsH .mbr-section-title {
  margin-bottom: 3.5rem;
}
@media (max-width: 767px) {
  .cid-uc7kGlcGsH .container-fluid {
    padding: 0 1rem;
  }
}
@media (min-width: 767px) {
  .cid-uc7kGlcGsH .container-fluid {
    padding: 0 2rem;
  }
}
.cid-uc7kGlcGsH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uc7kGlcGsH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uc7g9M03aQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #0b0c37;
}
.cid-uc7g9M03aQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uc7g9M03aQ .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-uc7g9M03aQ .container {
    padding: 0 30px;
  }
}
.cid-uc7g9M03aQ .row {
  position: relative;
}
.cid-uc7g9M03aQ .row img {
  position: absolute;
  top: 6rem;
  right: 0;
  bottom: -5rem;
  width: 40%;
  height: 510px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uc7g9M03aQ .row img {
    top: auto;
    width: 100%;
  }
}
.cid-uc7g9M03aQ .text-wrapper {
  padding: 120px 75px 150px;
  background-color: #ffffff;
  position: relative;
}
@media (max-width: 768px) {
  .cid-uc7g9M03aQ .text-wrapper {
    padding: 40px 16px;
  }
}
.cid-uc7g9M03aQ .text-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uc7g9M03aQ .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uc7g9M03aQ .mbr-text {
  color: #212529;
}
.cid-uc7g9M03aQ .mbr-link,
.cid-uc7g9M03aQ .mbr-iconfont {
  color: #212529;
}
.cid-uc7aVxiFG5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uc7aVxiFG5 .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uc7aVxiFG5 .panel-title {
  display: flex;
  align-items: center;
}
.cid-uc7aVxiFG5 .mbr-iconfont {
  padding-right: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 3rem !important;
  color: #acaebd;
}
.cid-uc7aVxiFG5 .panel-body,
.cid-uc7aVxiFG5 .card-header {
  padding: 1rem 0;
}
.cid-uc7aVxiFG5 .panel-body {
  display: flex;
  justify-content: flex-end;
}
.cid-uc7aVxiFG5 .panel-title-edit {
  color: #14142b;
  display: flex;
  align-items: center;
}
.cid-uc7aVxiFG5 .panel-text {
  max-width: 466px;
  color: #8c8c95;
}
.cid-uc7aVxiFG5 .card-header {
  padding: 28px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07) !important;
  overflow: hidden;
  border-style: solid;
  border-width: 1px;
  border-color: #eff0f6;
  border-radius: 24px;
}
.cid-uc7aVxiFG5 .section-head {
  margin-bottom: 56px;
}
.cid-uc7aVxiFG5 .card {
  margin-bottom: 32px;
}
.cid-uc7aVxiFG5 H3 {
  color: #14142b;
}
@media (max-width: 768px) {
  .cid-uc7aVxiFG5 .panel-text {
    width: 100%;
    max-width: initial;
  }
}
@media (max-width: 1000px) {
  .cid-uc7aVxiFG5 .panel-text {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-uc7fVlFMiY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #05051e;
}
.cid-uc7fVlFMiY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uc7fVlFMiY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uc7fVlFMiY .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uc7fVlFMiY .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uc7fVlFMiY .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uc7fVlFMiY .card-wrapper {
    padding: 4rem;
  }
}
.cid-uc7fVlFMiY .mbr-text,
.cid-uc7fVlFMiY .mbr-section-btn {
  color: #000000;
}
.cid-uc7fVlFMiY .card-title,
.cid-uc7fVlFMiY .card-box {
  text-align: left;
  color: #000000;
}
.cid-ubVq3mUvnV {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-ubVq3mUvnV .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-ubVq3mUvnV .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: #ff9966;
}
.cid-ubVq3mUvnV .svg-top .st0 {
  fill: #ffffff;
}
@media (max-width: 992px) {
  .cid-ubVq3mUvnV .svg-top {
    width: 1000px;
  }
}
.cid-ubVq3mUvnV .google-map {
  height: 35rem;
  position: relative;
}
.cid-ubVq3mUvnV .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ubVq3mUvnV .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-ubVq3mUvnV .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ubVq3mUvnV .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-ubVq3mUvnV .mbr-section-title {
  color: #000000;
}
.cid-ubVq3mUvnV .mbr-section-subtitle {
  color: #1a449a;
}
.cid-ubVqmsH2IK {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/r0-0-4935-3290-w4935-h3290-fmax.jpg");
}
.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: #ffe885;
}
.cid-ubVqmsH2IK .card-text {
  color: #ffffff;
}
.cid-ubVqmsH2IK .mbr-section-title {
  color: #000000;
}
.cid-ubVqmsH2IK .main-title,
.cid-ubVqmsH2IK .iconfont-wrapper {
  text-align: left;
}
.cid-ubVtuGMmvV {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-ubZTbXJFm6 {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-ubZTbXJFm6 .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-ubZTbXJFm6 .btn:hover {
  background: #ff6666 !important;
  border-color: #ff6666 !important;
}
@media (max-width: 767px) {
  .cid-ubZTbXJFm6 .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-ubZTbXJFm6 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ubZTbXJFm6 .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-ubZTbXJFm6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ubZTbXJFm6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ubZTbXJFm6 .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-ubZTbXJFm6 .navbar-nav .nav-item {
  padding: 0 !important;
  transition: 0.3s all !important;
}
.cid-ubZTbXJFm6 .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: 0.3s all !important;
  border-radius: 4px !important;
}
.cid-ubZTbXJFm6 .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-ubZTbXJFm6 .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-ubZTbXJFm6 .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-ubZTbXJFm6 .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: 0.3s all !important;
  border-radius: 4px !important;
}
.cid-ubZTbXJFm6 .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-ubZTbXJFm6 .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-ubZTbXJFm6 .nav-link {
  width: fit-content;
  position: relative;
}
.cid-ubZTbXJFm6 .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-ubZTbXJFm6 .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-ubZTbXJFm6 .navbar-caption {
  padding-left: 1rem;
  padding-right: 0.5rem;
}
@media (max-width: 767px) {
  .cid-ubZTbXJFm6 .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-ubZTbXJFm6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: 0.3s all;
}
.cid-ubZTbXJFm6 .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  border-radius: 4px !important;
}
@media (max-width: 992px) {
  .cid-ubZTbXJFm6 .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ubZTbXJFm6 .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-ubZTbXJFm6 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ubZTbXJFm6 .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: 0.3s all !important;
  min-width: auto;
  background: #fff0b0;
  border-radius: 4px !important;
}
.cid-ubZTbXJFm6 .nav-item:focus,
.cid-ubZTbXJFm6 .nav-link:focus {
  outline: none;
}
.cid-ubZTbXJFm6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ubZTbXJFm6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ubZTbXJFm6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ubZTbXJFm6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ubZTbXJFm6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ubZTbXJFm6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ubZTbXJFm6 .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-ubZTbXJFm6 .navbar.opened {
  transition: all 0.25s;
}
.cid-ubZTbXJFm6 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ubZTbXJFm6 .navbar .navbar-logo img {
  width: auto;
}
.cid-ubZTbXJFm6 .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-ubZTbXJFm6 .navbar.collapsed {
  justify-content: center;
}
.cid-ubZTbXJFm6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ubZTbXJFm6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ubZTbXJFm6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-ubZTbXJFm6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ubZTbXJFm6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ubZTbXJFm6 .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-ubZTbXJFm6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ubZTbXJFm6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ubZTbXJFm6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-ubZTbXJFm6 .navbar {
    min-height: 72px;
  }
  .cid-ubZTbXJFm6 .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-ubZTbXJFm6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ubZTbXJFm6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ubZTbXJFm6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ubZTbXJFm6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ubZTbXJFm6 .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-ubZTbXJFm6 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ubZTbXJFm6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-ubZTbXJFm6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ubZTbXJFm6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ubZTbXJFm6 .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-ubZTbXJFm6 .dropdown-item.active,
.cid-ubZTbXJFm6 .dropdown-item:active {
  background-color: transparent;
}
.cid-ubZTbXJFm6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ubZTbXJFm6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ubZTbXJFm6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ubZTbXJFm6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fff0b0;
}
.cid-ubZTbXJFm6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-ubZTbXJFm6 .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-ubZTbXJFm6 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ubZTbXJFm6 .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-ubZTbXJFm6 .navbar-buttons {
    text-align: left;
  }
}
.cid-ubZTbXJFm6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ubZTbXJFm6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ubZTbXJFm6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ubZTbXJFm6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ubZTbXJFm6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ubZTbXJFm6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ubZTbXJFm6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ubZTbXJFm6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ubZTbXJFm6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ubZTbXJFm6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ubZTbXJFm6 .navbar-dropdown {
  padding: 0;
  background-color: #fff0b0 !important;
}
.cid-ubZTbXJFm6 .opacityScroll {
  background: #fff0b0 !important;
}
.cid-ubZTbXJFm6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ubZTbXJFm6 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-ubZTbXJFm6 .icons-menu {
    justify-content: flex-start;
    margin-bottom: 0.5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ubZTbXJFm6 .navbar {
    height: 70px;
  }
  .cid-ubZTbXJFm6 .navbar.opened {
    height: auto;
  }
  .cid-ubZTbXJFm6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ubZTbXJFm6 .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-ubZTbXJFm6 .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-ubZTbXJFm6 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-ubZTbXJFm6 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: 0.3s all;
  transform: rotate(-90deg);
}
.cid-ubZTbXJFm6 .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-ubZTbXJFm6 .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-ubZTbXJFm6 .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-ubZTbXJFm6 .navbar-brand {
    margin-right: auto;
  }
  .cid-ubZTbXJFm6 .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #fff0b0;
    backdrop-filter: blur(8px);
    border-radius: 4px !important;
  }
  .cid-ubZTbXJFm6 .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-ubZTbXJFm6 .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-ubZTbXJFm6 .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-ubZTbXJFm6 .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-ubZTbXJFm6 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-ubZTbXJFm6 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: 0.3s all;
    transform: rotate(0deg);
  }
  .cid-ubZTbXJFm6 .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-ubZTbXJFm6 .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-ubZTbXJFm6 .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ubZTbXJFm6 .navbar-collapse {
    left: -0.7rem;
    width: 106%;
    border-radius: 0;
  }
}
@media (max-width: 991px) and (min-width: 768px) and (max-width: 991px) {
  .cid-ubZTbXJFm6 .navbar-collapse {
    left: 0rem;
    width: 106%;
    border-radius: 0;
  }
}
@media (max-width: 575px) {
  .cid-ubZTbXJFm6 .navbar-collapse {
    padding: 1rem;
  }
}
.cid-ubZTbY4wm8 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-ubZTbY4wm8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ubZTbY4wm8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ubZTbY4wm8 .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-ubZTbY4wm8 .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-ubZTbY4wm8 .container {
    padding: 0 24px;
  }
}
.cid-ubZTbY4wm8 .content-wrapper {
  padding: 32px;
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 700px;
}
@media (max-width: 992px) {
  .cid-ubZTbY4wm8 .content-wrapper {
    padding: 0;
  }
}
.cid-ubZTbY4wm8 .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: .75rem !important;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-ubZTbY4wm8 .content-wrapper .card-wrap {
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex-direction: column;
  width: 35%;
  padding: 32px;
  background-color: #ffffff;
  border-radius: .75rem !important;
}
@media (max-width: 1200px) {
  .cid-ubZTbY4wm8 .content-wrapper .card-wrap {
    width: 50%;
  }
}
@media (max-width: 992px) {
  .cid-ubZTbY4wm8 .content-wrapper .card-wrap {
    padding: 24px;
    width: 100%;
  }
}
.cid-ubZTbY4wm8 .content-wrapper .card-wrap .icon-wrapper {
  margin-bottom: 24px;
}
.cid-ubZTbY4wm8 .content-wrapper .card-wrap .icon-wrapper .mbr-iconfont {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: #141414;
  color: #fb8fc9;
  font-size: 32px;
}
.cid-ubZTbY4wm8 .content-wrapper .card-wrap .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ubZTbY4wm8 .content-wrapper .card-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-ubZTbY4wm8 .mbr-section-title {
  color: #141414;
}
.cid-ubZTbY4wm8 .mbr-desc {
  color: #141414;
}
.cid-ubZTbY4wm8 .mbr-text {
  color: #141414;
}
.cid-ubZTbYmCX9 {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-ubZTbYBest {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background: #0b0c37;
}
.cid-ubZTbYBest .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-ubZTbYBest .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: #ff9966;
}
.cid-ubZTbYBest .svg-top .st0 {
  fill: #0b0c37;
}
@media (max-width: 992px) {
  .cid-ubZTbYBest .svg-top {
    width: 1000px;
  }
}
.cid-ubZTbYBest .google-map {
  height: 35rem;
  position: relative;
}
.cid-ubZTbYBest .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ubZTbYBest .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-ubZTbYBest .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ubZTbYBest .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-ubZTbYBest .mbr-section-title {
  color: #ffffff;
}
.cid-ubZTbYBest .mbr-section-subtitle {
  color: #1a449a;
}
.cid-uc9EDqdkLL {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/r0-0-4935-3290-w4935-h3290-fmax.jpg");
}
.cid-uc9EDqdkLL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uc9EDqdkLL .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-uc9EDqdkLL .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uc9EDqdkLL .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-uc9EDqdkLL a {
  font-weight: 600;
}
.cid-uc9EDqdkLL a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-uc9EDqdkLL .col-lg-3,
  .cid-uc9EDqdkLL .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-uc9EDqdkLL .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-uc9EDqdkLL .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-uc9EDqdkLL h5 {
  margin: 0;
}
.cid-uc9EDqdkLL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uc9EDqdkLL .iconfont-wrapper {
  position: relative;
}
.cid-uc9EDqdkLL .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-uc9EDqdkLL .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-uc9EDqdkLL .sociconfont-wrapper {
  display: flex;
}
.cid-uc9EDqdkLL .card-title,
.cid-uc9EDqdkLL .iconfont-wrapper {
  color: #05051e;
}
.cid-uc9EDqdkLL .card-text {
  color: #ffffff;
}
.cid-uc9EDqdkLL .mbr-section-title {
  color: #000000;
}
.cid-uc9EDqdkLL .main-title,
.cid-uc9EDqdkLL .iconfont-wrapper {
  text-align: left;
}
.cid-ubZTbZibNV {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-ubUVfykJ9y {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-ubUVfykJ9y .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-ubUVfykJ9y .btn:hover {
  background: #ff6666 !important;
  border-color: #ff6666 !important;
}
@media (max-width: 767px) {
  .cid-ubUVfykJ9y .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-ubUVfykJ9y .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ubUVfykJ9y .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-ubUVfykJ9y .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ubUVfykJ9y .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ubUVfykJ9y .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-ubUVfykJ9y .navbar-nav .nav-item {
  padding: 0 !important;
  transition: 0.3s all !important;
}
.cid-ubUVfykJ9y .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: 0.3s all !important;
  border-radius: 4px !important;
}
.cid-ubUVfykJ9y .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-ubUVfykJ9y .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-ubUVfykJ9y .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-ubUVfykJ9y .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: 0.3s all !important;
  border-radius: 4px !important;
}
.cid-ubUVfykJ9y .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-ubUVfykJ9y .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-ubUVfykJ9y .nav-link {
  width: fit-content;
  position: relative;
}
.cid-ubUVfykJ9y .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-ubUVfykJ9y .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-ubUVfykJ9y .navbar-caption {
  padding-left: 1rem;
  padding-right: 0.5rem;
}
@media (max-width: 767px) {
  .cid-ubUVfykJ9y .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-ubUVfykJ9y .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: 0.3s all;
}
.cid-ubUVfykJ9y .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  border-radius: 4px !important;
}
@media (max-width: 992px) {
  .cid-ubUVfykJ9y .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ubUVfykJ9y .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-ubUVfykJ9y .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ubUVfykJ9y .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: 0.3s all !important;
  min-width: auto;
  background: #fff0b0;
  border-radius: 4px !important;
}
.cid-ubUVfykJ9y .nav-item:focus,
.cid-ubUVfykJ9y .nav-link:focus {
  outline: none;
}
.cid-ubUVfykJ9y .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ubUVfykJ9y .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ubUVfykJ9y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ubUVfykJ9y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ubUVfykJ9y .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ubUVfykJ9y .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ubUVfykJ9y .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-ubUVfykJ9y .navbar.opened {
  transition: all 0.25s;
}
.cid-ubUVfykJ9y .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ubUVfykJ9y .navbar .navbar-logo img {
  width: auto;
}
.cid-ubUVfykJ9y .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-ubUVfykJ9y .navbar.collapsed {
  justify-content: center;
}
.cid-ubUVfykJ9y .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ubUVfykJ9y .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ubUVfykJ9y .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-ubUVfykJ9y .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ubUVfykJ9y .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ubUVfykJ9y .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-ubUVfykJ9y .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ubUVfykJ9y .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ubUVfykJ9y .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-ubUVfykJ9y .navbar {
    min-height: 72px;
  }
  .cid-ubUVfykJ9y .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-ubUVfykJ9y .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ubUVfykJ9y .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ubUVfykJ9y .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ubUVfykJ9y .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ubUVfykJ9y .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-ubUVfykJ9y .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ubUVfykJ9y .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-ubUVfykJ9y .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ubUVfykJ9y .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ubUVfykJ9y .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-ubUVfykJ9y .dropdown-item.active,
.cid-ubUVfykJ9y .dropdown-item:active {
  background-color: transparent;
}
.cid-ubUVfykJ9y .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ubUVfykJ9y .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ubUVfykJ9y .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ubUVfykJ9y .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fff0b0;
}
.cid-ubUVfykJ9y .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-ubUVfykJ9y .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-ubUVfykJ9y ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ubUVfykJ9y .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-ubUVfykJ9y .navbar-buttons {
    text-align: left;
  }
}
.cid-ubUVfykJ9y button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ubUVfykJ9y button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ubUVfykJ9y button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ubUVfykJ9y button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ubUVfykJ9y button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ubUVfykJ9y button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ubUVfykJ9y nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ubUVfykJ9y nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ubUVfykJ9y nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ubUVfykJ9y nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ubUVfykJ9y .navbar-dropdown {
  padding: 0;
  background-color: #fff0b0 !important;
}
.cid-ubUVfykJ9y .opacityScroll {
  background: #fff0b0 !important;
}
.cid-ubUVfykJ9y a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ubUVfykJ9y .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-ubUVfykJ9y .icons-menu {
    justify-content: flex-start;
    margin-bottom: 0.5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ubUVfykJ9y .navbar {
    height: 70px;
  }
  .cid-ubUVfykJ9y .navbar.opened {
    height: auto;
  }
  .cid-ubUVfykJ9y .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ubUVfykJ9y .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-ubUVfykJ9y .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-ubUVfykJ9y .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-ubUVfykJ9y .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: 0.3s all;
  transform: rotate(-90deg);
}
.cid-ubUVfykJ9y .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-ubUVfykJ9y .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-ubUVfykJ9y .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-ubUVfykJ9y .navbar-brand {
    margin-right: auto;
  }
  .cid-ubUVfykJ9y .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #fff0b0;
    backdrop-filter: blur(8px);
    border-radius: 4px !important;
  }
  .cid-ubUVfykJ9y .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-ubUVfykJ9y .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-ubUVfykJ9y .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-ubUVfykJ9y .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-ubUVfykJ9y .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-ubUVfykJ9y .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: 0.3s all;
    transform: rotate(0deg);
  }
  .cid-ubUVfykJ9y .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-ubUVfykJ9y .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-ubUVfykJ9y .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ubUVfykJ9y .navbar-collapse {
    left: -0.7rem;
    width: 106%;
    border-radius: 0;
  }
}
@media (max-width: 991px) and (min-width: 768px) and (max-width: 991px) {
  .cid-ubUVfykJ9y .navbar-collapse {
    left: 0rem;
    width: 106%;
    border-radius: 0;
  }
}
@media (max-width: 575px) {
  .cid-ubUVfykJ9y .navbar-collapse {
    padding: 1rem;
  }
}
.cid-ubVt9Dx6kH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #0b0c37;
}
.cid-ubVt9Dx6kH .mbr-fallback-image.disabled {
  display: none;
}
.cid-ubVt9Dx6kH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ubVt9Dx6kH .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-ubVt9Dx6kH .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-ubVt9Dx6kH .container {
    padding: 0 24px;
  }
}
.cid-ubVt9Dx6kH .content-wrapper {
  padding: 32px;
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 700px;
}
@media (max-width: 992px) {
  .cid-ubVt9Dx6kH .content-wrapper {
    padding: 0;
  }
}
.cid-ubVt9Dx6kH .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: .75rem !important;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-ubVt9Dx6kH .content-wrapper .card-wrap {
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex-direction: column;
  width: 35%;
  padding: 32px;
  background-color: #ffffff;
  border-radius: .75rem !important;
}
@media (max-width: 1200px) {
  .cid-ubVt9Dx6kH .content-wrapper .card-wrap {
    width: 50%;
  }
}
@media (max-width: 992px) {
  .cid-ubVt9Dx6kH .content-wrapper .card-wrap {
    padding: 24px;
    width: 100%;
  }
}
.cid-ubVt9Dx6kH .content-wrapper .card-wrap .icon-wrapper {
  margin-bottom: 24px;
}
.cid-ubVt9Dx6kH .content-wrapper .card-wrap .icon-wrapper .mbr-iconfont {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: #141414;
  color: #fb8fc9;
  font-size: 32px;
}
.cid-ubVt9Dx6kH .content-wrapper .card-wrap .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ubVt9Dx6kH .content-wrapper .card-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-ubVt9Dx6kH .mbr-section-title {
  color: #141414;
}
.cid-ubVt9Dx6kH .mbr-desc {
  color: #141414;
}
.cid-ubVt9Dx6kH .mbr-text {
  color: #141414;
}
.cid-ubVtkYClkm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-ubVtnr2IeO {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background: #0b0c37;
}
.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: #ff9966;
}
.cid-ubVtnr2IeO .svg-top .st0 {
  fill: #0b0c37;
}
@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: #ffffff;
  text-align: center;
}
.cid-ubVtnr2IeO .mbr-section-subtitle {
  color: #1a449a;
}
.cid-uc9EAj6mwc {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/r0-0-4935-3290-w4935-h3290-fmax.jpg");
}
.cid-uc9EAj6mwc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uc9EAj6mwc .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-uc9EAj6mwc .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uc9EAj6mwc .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-uc9EAj6mwc a {
  font-weight: 600;
}
.cid-uc9EAj6mwc a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-uc9EAj6mwc .col-lg-3,
  .cid-uc9EAj6mwc .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-uc9EAj6mwc .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-uc9EAj6mwc .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-uc9EAj6mwc h5 {
  margin: 0;
}
.cid-uc9EAj6mwc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uc9EAj6mwc .iconfont-wrapper {
  position: relative;
}
.cid-uc9EAj6mwc .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-uc9EAj6mwc .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-uc9EAj6mwc .sociconfont-wrapper {
  display: flex;
}
.cid-uc9EAj6mwc .card-title,
.cid-uc9EAj6mwc .iconfont-wrapper {
  color: #05051e;
}
.cid-uc9EAj6mwc .card-text {
  color: #ffffff;
}
.cid-uc9EAj6mwc .mbr-section-title {
  color: #000000;
}
.cid-uc9EAj6mwc .main-title,
.cid-uc9EAj6mwc .iconfont-wrapper {
  text-align: left;
}
.cid-ubVtuGMmvV {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-uc9E6npCxa {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uc9E6npCxa .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-uc9E6npCxa .btn:hover {
  background: #ff6666 !important;
  border-color: #ff6666 !important;
}
@media (max-width: 767px) {
  .cid-uc9E6npCxa .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uc9E6npCxa .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uc9E6npCxa .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uc9E6npCxa .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uc9E6npCxa .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uc9E6npCxa .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uc9E6npCxa .navbar-nav .nav-item {
  padding: 0 !important;
  transition: 0.3s all !important;
}
.cid-uc9E6npCxa .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: 0.3s all !important;
  border-radius: 4px !important;
}
.cid-uc9E6npCxa .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uc9E6npCxa .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uc9E6npCxa .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uc9E6npCxa .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: 0.3s all !important;
  border-radius: 4px !important;
}
.cid-uc9E6npCxa .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uc9E6npCxa .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uc9E6npCxa .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uc9E6npCxa .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uc9E6npCxa .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uc9E6npCxa .navbar-caption {
  padding-left: 1rem;
  padding-right: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uc9E6npCxa .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uc9E6npCxa .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: 0.3s all;
}
.cid-uc9E6npCxa .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  border-radius: 4px !important;
}
@media (max-width: 992px) {
  .cid-uc9E6npCxa .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uc9E6npCxa .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uc9E6npCxa .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uc9E6npCxa .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: 0.3s all !important;
  min-width: auto;
  background: #fff0b0;
  border-radius: 4px !important;
}
.cid-uc9E6npCxa .nav-item:focus,
.cid-uc9E6npCxa .nav-link:focus {
  outline: none;
}
.cid-uc9E6npCxa .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uc9E6npCxa .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uc9E6npCxa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uc9E6npCxa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uc9E6npCxa .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uc9E6npCxa .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uc9E6npCxa .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uc9E6npCxa .navbar.opened {
  transition: all 0.25s;
}
.cid-uc9E6npCxa .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uc9E6npCxa .navbar .navbar-logo img {
  width: auto;
}
.cid-uc9E6npCxa .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uc9E6npCxa .navbar.collapsed {
  justify-content: center;
}
.cid-uc9E6npCxa .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uc9E6npCxa .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uc9E6npCxa .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uc9E6npCxa .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uc9E6npCxa .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uc9E6npCxa .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-uc9E6npCxa .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uc9E6npCxa .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uc9E6npCxa .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uc9E6npCxa .navbar {
    min-height: 72px;
  }
  .cid-uc9E6npCxa .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uc9E6npCxa .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uc9E6npCxa .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uc9E6npCxa .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uc9E6npCxa .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uc9E6npCxa .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-uc9E6npCxa .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uc9E6npCxa .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uc9E6npCxa .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uc9E6npCxa .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uc9E6npCxa .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uc9E6npCxa .dropdown-item.active,
.cid-uc9E6npCxa .dropdown-item:active {
  background-color: transparent;
}
.cid-uc9E6npCxa .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uc9E6npCxa .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uc9E6npCxa .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uc9E6npCxa .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fff0b0;
}
.cid-uc9E6npCxa .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uc9E6npCxa .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uc9E6npCxa ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uc9E6npCxa .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uc9E6npCxa .navbar-buttons {
    text-align: left;
  }
}
.cid-uc9E6npCxa button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uc9E6npCxa button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uc9E6npCxa button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uc9E6npCxa button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uc9E6npCxa button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uc9E6npCxa button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uc9E6npCxa nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uc9E6npCxa nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uc9E6npCxa nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uc9E6npCxa nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uc9E6npCxa .navbar-dropdown {
  padding: 0;
  background-color: #fff0b0 !important;
}
.cid-uc9E6npCxa .opacityScroll {
  background: #fff0b0 !important;
}
.cid-uc9E6npCxa a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uc9E6npCxa .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uc9E6npCxa .icons-menu {
    justify-content: flex-start;
    margin-bottom: 0.5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uc9E6npCxa .navbar {
    height: 70px;
  }
  .cid-uc9E6npCxa .navbar.opened {
    height: auto;
  }
  .cid-uc9E6npCxa .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uc9E6npCxa .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uc9E6npCxa .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uc9E6npCxa .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uc9E6npCxa .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: 0.3s all;
  transform: rotate(-90deg);
}
.cid-uc9E6npCxa .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uc9E6npCxa .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uc9E6npCxa .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uc9E6npCxa .navbar-brand {
    margin-right: auto;
  }
  .cid-uc9E6npCxa .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #fff0b0;
    backdrop-filter: blur(8px);
    border-radius: 4px !important;
  }
  .cid-uc9E6npCxa .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uc9E6npCxa .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uc9E6npCxa .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uc9E6npCxa .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uc9E6npCxa .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uc9E6npCxa .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: 0.3s all;
    transform: rotate(0deg);
  }
  .cid-uc9E6npCxa .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uc9E6npCxa .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uc9E6npCxa .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uc9E6npCxa .navbar-collapse {
    left: -0.7rem;
    width: 106%;
    border-radius: 0;
  }
}
@media (max-width: 991px) and (min-width: 768px) and (max-width: 991px) {
  .cid-uc9E6npCxa .navbar-collapse {
    left: 0rem;
    width: 106%;
    border-radius: 0;
  }
}
@media (max-width: 575px) {
  .cid-uc9E6npCxa .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uc9E6o1zsZ {
  overflow: hidden;
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/360-f-254777062-auxlhn2ptynzfbjtv9i0ftqato9auphu-1.jpg");
}
.cid-uc9E6o1zsZ .container {
  margin: 0 auto;
  padding: 0 25px;
}
.cid-uc9E6o1zsZ .wrap {
  padding: 0 25px;
}
.cid-uc9E6o1zsZ .wrap:before {
  content: '';
  position: absolute;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  mix-blend-mode: multiply;
  background-color: #ff8a8a;
  top: 0px;
  right: 0px;
}
.cid-uc9E6o1zsZ .wrap:before {
  content: '';
  position: absolute;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  mix-blend-mode: multiply;
  background-color: #ff8a8a;
  top: 0px;
  left: -100px;
}
.cid-uc9E6o1zsZ .title__block {
  padding: 90px 0;
  display: flex;
  flex-direction: column;
  z-index: 1;
  position: relative;
}
.cid-uc9E6o1zsZ .mbr-text {
  margin-bottom: 20px;
}
.cid-uc9E6o1zsZ .mbr-section-btn {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .cid-uc9E6o1zsZ .title__block {
    padding: 80px 0;
  }
}
@media (max-width: 991px) {
  .cid-uc9E6o1zsZ .container,
  .cid-uc9E6o1zsZ .row {
    margin: 0;
    padding: 0;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-uc9E6o1zsZ .title__block {
    padding: 50px 0;
  }
}
@media (max-width: 575px) {
  .cid-uc9E6o1zsZ a.close {
    right: 50px;
    top: 25px;
  }
  .cid-uc9E6o1zsZ .modalWindow .modalWindow-video {
    height: calc(90vw / 1.778);
    width: 90vw;
    margin: 0 auto;
  }
}
.cid-uc9E6o1zsZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uc9E6o1zsZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uc9E6oGxrf {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-uc9E6oGxrf ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-uc9E6oGxrf li {
  position: relative;
}
.cid-uc9E6oGxrf li:nth-last-child(n+2) {
  margin-bottom: 1rem;
}
.cid-uc9E6oGxrf ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #22a5e5;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-uc9E6oGxrf .background {
  padding: 3rem 1rem;
  background-color: #0b0c37;
}
@media (min-width: 992px) {
  .cid-uc9E6oGxrf .background {
    margin-top: 5rem;
  }
}
@media (min-width: 992px) {
  .cid-uc9E6oGxrf .display-1 {
    font-size: 70px;
  }
  .cid-uc9E6oGxrf .display-5 {
    font-size: 29px;
  }
  .cid-uc9E6oGxrf .display-7 {
    font-size: 22px;
  }
}
.cid-uc9E6oGxrf .list {
  color: #fff0b0;
}
.cid-uc9E6oGxrf .mbr-section-title {
  color: #ff9966;
}
.cid-uc9E6p9tMJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0b0c37;
}
.cid-uc9E6p9tMJ .mbr-text {
  color: #fafafa;
}
.cid-uc9E6pvwXJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.cid-uc9E6pvwXJ .row {
  justify-content: center;
}
.cid-uc9E6pvwXJ .title-container {
  max-width: 720px;
  padding: 0;
  margin-bottom: 80px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 991px) {
  .cid-uc9E6pvwXJ .title-container {
    margin-bottom: 64px;
  }
}
@media (max-width: 767px) {
  .cid-uc9E6pvwXJ .title-container {
    margin-bottom: 56px;
  }
}
.cid-uc9E6pvwXJ .mbr-section-title {
  color: #6148ff;
}
.cid-uc9E6pvwXJ .mbr-section-subtitle {
  color: #161616;
  margin-top: 24px;
}
.cid-uc9E6pvwXJ .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-uc9E6pvwXJ .grid-container {
    grid-column-gap: 48px;
  }
}
@media (max-width: 767px) {
  .cid-uc9E6pvwXJ .grid-container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.cid-uc9E6pvwXJ .content-container {
  display: flex;
  padding: 0 !important;
}
.cid-uc9E6pvwXJ .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-uc9E6pvwXJ .text-container {
    margin-bottom: 56px;
    padding: 0;
  }
}
.cid-uc9E6pvwXJ .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  flex-grow: 1;
}
.cid-uc9E6pvwXJ .text-padding {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0;
}
.cid-uc9E6pvwXJ .opinion-stars {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-bottom: 21px;
}
@media (max-width: 767px) {
  .cid-uc9E6pvwXJ .opinion-stars {
    margin-bottom: 13px;
  }
}
.cid-uc9E6pvwXJ .iconfont-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3px 3px;
}
.cid-uc9E6pvwXJ .iconfont-wrapper .mbr-iconfont {
  font-size: 21px;
  color: #3e1fff;
}
.cid-uc9E6pvwXJ .card-title {
  width: 100%;
  color: #000000;
  margin-bottom: 1rem;
  margin-top: 8px;
}
.cid-uc9E6pvwXJ .mbr-text {
  width: 100%;
  color: #000000;
  opacity: 0.75;
  margin-bottom: 40px !important;
}
@media (max-width: 767px) {
  .cid-uc9E6pvwXJ .mbr-text {
    margin-bottom: 24px !important;
  }
}
.cid-uc9E6pvwXJ .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-uc9E6pvwXJ .image-wrapper {
    width: 48px;
    height: 48px;
  }
}
.cid-uc9E6pvwXJ .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uc9E6pvwXJ .name-text {
  color: #161616;
  width: 100%;
  margin-bottom: 0;
}
.cid-uc9E6pvwXJ .prof-text {
  max-width: 350px;
  color: #000000;
  opacity: 0.75;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-uc9E6pvwXJ .prof-text {
    max-width: 100%;
    width: 100%;
  }
}
.cid-uc9E6pvwXJ .circle-blur {
  position: absolute;
  top: 5%;
  left: 5%;
  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-uc9E6qdD7M {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #0b0c37;
}
.cid-uc9E6qdD7M .mbr-text {
  border-left: 1px solid currentColor;
  padding-left: 1rem;
  color: #fafafa;
}
.cid-uc9E6qdD7M .mbr-section-subtitle {
  color: #c0bcb7;
}
.cid-uc9E6qdD7M .title {
  text-align: right;
}
@media (max-width: 991px) {
  .cid-uc9E6qdD7M .title {
    text-align: left;
  }
}
@media (max-width: 991px) {
  .cid-uc9E6qdD7M .col-12 {
    flex-direction: row-reverse;
  }
  .cid-uc9E6qdD7M .col-12,
  .cid-uc9E6qdD7M .col-md-12 {
    padding: 0;
  }
}
.cid-uc9E6qdD7M .si img {
  width: auto;
}
.cid-uc9E6qdD7M .mbr-section-title {
  color: #ffffff;
}
.cid-uc9E6qCSsx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uc9E6qCSsx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uc9E6qCSsx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uc9E6qCSsx .card-wrapper {
  background: #0b0c37;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uc9E6qCSsx .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uc9E6qCSsx .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uc9E6qCSsx .card-wrapper {
    padding: 4rem;
  }
}
.cid-uc9E6qCSsx .mbr-text,
.cid-uc9E6qCSsx .mbr-section-btn {
  color: #ffffff;
}
.cid-uc9E6qCSsx .card-title,
.cid-uc9E6qCSsx .card-box {
  text-align: left;
  color: #ffffff;
}
.cid-uc9E6r7JDH {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #0b0c37;
}
.cid-uc9E6r7JDH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uc9E6r7JDH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uc9E6r7JDH .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uc9E6r7JDH .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uc9E6r7JDH .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-uc9E6r7JDH .card-title {
  color: #ffffff;
}
.cid-uc9E6rR3Sg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uc9E6rR3Sg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uc9E6rR3Sg .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-uc9E6rR3Sg .container {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uc9E6rR3Sg .image-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uc9E6rR3Sg .image-wrapper img {
  height: 460px;
  object-fit: cover;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uc9E6rR3Sg .image-wrapper img {
    height: 300px;
  }
}
.cid-uc9E6rR3Sg .card-wrapper {
  margin-top: 15%;
  padding-top: 120px;
  background-color: #0b0c37;
  border-radius: 40px;
}
@media (max-width: 992px) {
  .cid-uc9E6rR3Sg .card-wrapper {
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  .cid-uc9E6rR3Sg .card-wrapper {
    margin-top: 0;
    padding-top: 20px;
  }
}
.cid-uc9E6rR3Sg .card-wrapper .mbr-section-title {
  padding: 0 100px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uc9E6rR3Sg .card-wrapper .mbr-section-title {
    margin-bottom: 20px;
    padding: 0 20px;
  }
}
.cid-uc9E6rR3Sg .card-wrapper .mbr-text {
  padding: 0 100px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-uc9E6rR3Sg .card-wrapper .mbr-text {
    padding: 0 20px;
  }
}
.cid-uc9E6rR3Sg .card-wrapper .icon-wrapper {
  padding: 0 20px 20px;
}
.cid-uc9E6rR3Sg .card-wrapper .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  width: 56px;
  background-color: #0b0c37;
  color: #08323c;
  font-size: 20px;
  border-radius: 50%;
}
@media (max-width: 992px) {
  .cid-uc9E6rR3Sg .card-wrapper .icon-wrapper {
    display: none;
  }
}
.cid-uc9E6rR3Sg .mbr-section-title {
  color: #ffffff;
}
.cid-uc9E6rR3Sg .mbr-text {
  color: #ffffff;
}
.cid-uc9E6rR3Sg .icon-wrapper {
  text-align: right;
}
.cid-uc9E6sj9Gm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uc9E6sj9Gm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uc9E6sj9Gm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uc9E6sj9Gm .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-uc9E6sj9Gm .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uc9E6sj9Gm .container {
    padding: 0 30px;
  }
}
.cid-uc9E6sj9Gm .mbr-section-title {
  margin-bottom: 70px;
  color: #000000;
}
@media (max-width: 992px) {
  .cid-uc9E6sj9Gm .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uc9E6sj9Gm .video-block .video-wrapper .app-video-wrapper img {
  height: 700px;
  object-fit: cover;
  border-radius: 2em;
}
@media (max-width: 992px) {
  .cid-uc9E6sj9Gm .video-block .video-wrapper .app-video-wrapper img {
    height: 350px;
  }
}
.cid-uc9E6sj9Gm .video-block .video-wrapper .app-video-wrapper::before {
  color: #fff0b0;
  text-shadow: none;
}
.cid-uc9E6sj9Gm .video-block .video-wrapper iframe {
  height: 700px;
  object-fit: cover;
  border-radius: 2em;
}
@media (max-width: 992px) {
  .cid-uc9E6sj9Gm .video-block .video-wrapper iframe {
    height: 350px;
  }
}
.cid-uc9E6sQPIg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0b0c37;
  position: relative;
}
.cid-uc9E6sQPIg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, #9fdbf8, #0b0c37);
}
.cid-uc9E6sQPIg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uc9E6sQPIg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uc9E6sQPIg .container-fluid {
  position: relative;
  z-index: 1;
  padding: 0 60px;
}
@media (max-width: 1440px) {
  .cid-uc9E6sQPIg .container-fluid {
    padding: 0 42px;
  }
}
@media (max-width: 992px) {
  .cid-uc9E6sQPIg .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uc9E6sQPIg .container {
    padding: 0 16px;
  }
}
.cid-uc9E6sQPIg .content-wrapper .mbr-section-title {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-uc9E6sQPIg .content-wrapper .mbr-section-title {
    margin-bottom: 48px;
  }
}
.cid-uc9E6sQPIg .item {
  margin-bottom: 32px;
}
.cid-uc9E6sQPIg .item .item-wrapper .card-box .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uc9E6sQPIg .item .item-wrapper .card-box .title-wrapper .title-wrap {
    margin-bottom: 16px;
  }
}
.cid-uc9E6sQPIg .item .item-wrapper .card-box .title-wrapper .title-wrap .mbr-iconfont {
  font-size: 36px;
  color: #f4f4f4;
  margin-right: 12px;
}
.cid-uc9E6sQPIg .item .item-wrapper .card-box .title-wrapper .title-wrap .card-title {
  margin-bottom: 0;
}
.cid-uc9E6sQPIg .item .item-wrapper .card-box .text-wrap .card-text {
  display: inline-flex;
  width: 80%;
  margin-bottom: 0;
}
.cid-uc9E6sQPIg .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uc9E6sQPIg .card-title {
  color: #f4f4f4;
}
.cid-uc9E6sQPIg .card-text {
  color: #c1c1c1;
}
.cid-uc9E6twRgH {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uc9E6twRgH {
    padding-top: 6px;
    padding-bottom: 6px;
  }
}
.cid-uc9E6twRgH img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-uc9E6twRgH H1 {
  color: #132c70;
}
.cid-uc9E6twRgH .mbr-text,
.cid-uc9E6twRgH .mbr-section-btn {
  color: #132c70;
}
.cid-uc9E6twRgH H3 {
  color: #132c70;
}
.cid-uc9E6twRgH .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-uc9E6twRgH .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-uc9E6twRgH .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-uc9E6twRgH .link:hover {
  color: #ff9966 !important;
}
.cid-uc9E6twRgH .link:hover .link-ico {
  color: #ff9966 !important;
  padding-left: 10px;
}
.cid-uc9E6twRgH DIV {
  color: #57468b;
}
.cid-uc9E6twRgH .text-1 {
  line-height: 1;
}
.cid-uc9E6twRgH .container-fluid {
  max-width: 1300px;
}
.cid-uc9E6twRgH .mbr-section-title {
  margin-bottom: 3.5rem;
}
@media (max-width: 767px) {
  .cid-uc9E6twRgH .container-fluid {
    padding: 0 1rem;
  }
}
@media (min-width: 767px) {
  .cid-uc9E6twRgH .container-fluid {
    padding: 0 2rem;
  }
}
.cid-uc9E6twRgH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uc9E6twRgH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uc9E6u0jQi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #0b0c37;
}
.cid-uc9E6u0jQi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uc9E6u0jQi .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-uc9E6u0jQi .container {
    padding: 0 30px;
  }
}
.cid-uc9E6u0jQi .row {
  position: relative;
}
.cid-uc9E6u0jQi .row img {
  position: absolute;
  top: 6rem;
  right: 0;
  bottom: -5rem;
  width: 40%;
  height: 510px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uc9E6u0jQi .row img {
    top: auto;
    width: 100%;
  }
}
.cid-uc9E6u0jQi .text-wrapper {
  padding: 120px 75px 150px;
  background-color: #ffffff;
  position: relative;
}
@media (max-width: 768px) {
  .cid-uc9E6u0jQi .text-wrapper {
    padding: 40px 16px;
  }
}
.cid-uc9E6u0jQi .text-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uc9E6u0jQi .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uc9E6u0jQi .mbr-text {
  color: #212529;
}
.cid-uc9E6u0jQi .mbr-link,
.cid-uc9E6u0jQi .mbr-iconfont {
  color: #212529;
}
.cid-uc9E6uwvuy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uc9E6uwvuy .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uc9E6uwvuy .panel-title {
  display: flex;
  align-items: center;
}
.cid-uc9E6uwvuy .mbr-iconfont {
  padding-right: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 3rem !important;
  color: #acaebd;
}
.cid-uc9E6uwvuy .panel-body,
.cid-uc9E6uwvuy .card-header {
  padding: 1rem 0;
}
.cid-uc9E6uwvuy .panel-body {
  display: flex;
  justify-content: flex-end;
}
.cid-uc9E6uwvuy .panel-title-edit {
  color: #14142b;
  display: flex;
  align-items: center;
}
.cid-uc9E6uwvuy .panel-text {
  max-width: 466px;
  color: #8c8c95;
}
.cid-uc9E6uwvuy .card-header {
  padding: 28px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07) !important;
  overflow: hidden;
  border-style: solid;
  border-width: 1px;
  border-color: #eff0f6;
  border-radius: 24px;
}
.cid-uc9E6uwvuy .section-head {
  margin-bottom: 56px;
}
.cid-uc9E6uwvuy .card {
  margin-bottom: 32px;
}
.cid-uc9E6uwvuy H3 {
  color: #14142b;
}
@media (max-width: 768px) {
  .cid-uc9E6uwvuy .panel-text {
    width: 100%;
    max-width: initial;
  }
}
@media (max-width: 1000px) {
  .cid-uc9E6uwvuy .panel-text {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-uc9E6vheXU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0b0c37;
}
.cid-uc9E6vheXU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uc9E6vheXU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uc9E6vheXU .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uc9E6vheXU .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uc9E6vheXU .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uc9E6vheXU .card-wrapper {
    padding: 4rem;
  }
}
.cid-uc9E6vheXU .mbr-text,
.cid-uc9E6vheXU .mbr-section-btn {
  color: #000000;
}
.cid-uc9E6vheXU .card-title,
.cid-uc9E6vheXU .card-box {
  text-align: left;
  color: #000000;
}
.cid-uc9Z4Qtiq7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uc9Z4Qtiq7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uc9Z4Qtiq7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uc9Z4Qtiq7 .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uc9Z4Qtiq7 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uc9Z4Qtiq7 .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uc9Z4Qtiq7 .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uc9Z4Qtiq7 .container {
    padding: 0 16px;
  }
}
.cid-uc9Z4Qtiq7 .row {
  justify-content: center;
}
.cid-uc9Z4Qtiq7 .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uc9Z4Qtiq7 .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uc9Z4Qtiq7 .mbr-section-subtitle {
  margin-bottom: 32px;
  color: #000000;
}
.cid-uc9Z4Qtiq7 .panel-group .card {
  border-bottom: 1px solid #000000;
  border-radius: 0 !important;
}
.cid-uc9Z4Qtiq7 .panel-group .card:first-child {
  border-top: 1px solid #000000;
}
.cid-uc9Z4Qtiq7 .panel-group .card .card-header {
  padding: 24px 0;
  border: none;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uc9Z4Qtiq7 .panel-group .card .card-header {
    padding: 20px 0;
  }
}
.cid-uc9Z4Qtiq7 .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uc9Z4Qtiq7 .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-uc9Z4Qtiq7 .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uc9Z4Qtiq7 .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  color: #0b0c37;
  transition: all 0.3s ease-in-out;
  margin-left: 8px;
}
.cid-uc9Z4Qtiq7 .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uc9Z4Qtiq7 .panel-group .card .panel-collapse .panel-body {
    padding-bottom: 20px;
  }
}
.cid-uc9Z4Qtiq7 .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uc9Z4Qtiq7 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uc9Z4Qtiq7 .panel-title {
  color: #000000;
}
.cid-uc9Z4Qtiq7 .panel-text {
  color: #000000;
}
.cid-uc9E6vL5qV {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background: #0b0c37;
}
.cid-uc9E6vL5qV .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uc9E6vL5qV .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: #ff9966;
}
.cid-uc9E6vL5qV .svg-top .st0 {
  fill: #0b0c37;
}
@media (max-width: 992px) {
  .cid-uc9E6vL5qV .svg-top {
    width: 1000px;
  }
}
.cid-uc9E6vL5qV .google-map {
  height: 35rem;
  position: relative;
}
.cid-uc9E6vL5qV .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uc9E6vL5qV .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-uc9E6vL5qV .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uc9E6vL5qV .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uc9E6vL5qV .mbr-section-title {
  color: #ffffff;
}
.cid-uc9E6vL5qV .mbr-section-subtitle {
  color: #1a449a;
}
.cid-uc9E6wnvSK {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/r0-0-4935-3290-w4935-h3290-fmax.jpg");
}
.cid-uc9E6wnvSK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uc9E6wnvSK .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-uc9E6wnvSK .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uc9E6wnvSK .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-uc9E6wnvSK a {
  font-weight: 600;
}
.cid-uc9E6wnvSK a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-uc9E6wnvSK .col-lg-3,
  .cid-uc9E6wnvSK .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-uc9E6wnvSK .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-uc9E6wnvSK .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-uc9E6wnvSK h5 {
  margin: 0;
}
.cid-uc9E6wnvSK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uc9E6wnvSK .iconfont-wrapper {
  position: relative;
}
.cid-uc9E6wnvSK .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-uc9E6wnvSK .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-uc9E6wnvSK .sociconfont-wrapper {
  display: flex;
}
.cid-uc9E6wnvSK .card-title,
.cid-uc9E6wnvSK .iconfont-wrapper {
  color: #ffe885;
}
.cid-uc9E6wnvSK .card-text {
  color: #ffffff;
}
.cid-uc9E6wnvSK .mbr-section-title {
  color: #000000;
}
.cid-uc9E6wnvSK .main-title,
.cid-uc9E6wnvSK .iconfont-wrapper {
  text-align: left;
}
.cid-uc9E6x4K0F {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-uc9E6U0o9C {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uc9E6U0o9C .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-uc9E6U0o9C .btn:hover {
  background: #ff6666 !important;
  border-color: #ff6666 !important;
}
@media (max-width: 767px) {
  .cid-uc9E6U0o9C .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uc9E6U0o9C .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uc9E6U0o9C .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uc9E6U0o9C .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uc9E6U0o9C .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uc9E6U0o9C .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uc9E6U0o9C .navbar-nav .nav-item {
  padding: 0 !important;
  transition: 0.3s all !important;
}
.cid-uc9E6U0o9C .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: 0.3s all !important;
  border-radius: 4px !important;
}
.cid-uc9E6U0o9C .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uc9E6U0o9C .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uc9E6U0o9C .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uc9E6U0o9C .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: 0.3s all !important;
  border-radius: 4px !important;
}
.cid-uc9E6U0o9C .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uc9E6U0o9C .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uc9E6U0o9C .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uc9E6U0o9C .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uc9E6U0o9C .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uc9E6U0o9C .navbar-caption {
  padding-left: 1rem;
  padding-right: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uc9E6U0o9C .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uc9E6U0o9C .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: 0.3s all;
}
.cid-uc9E6U0o9C .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  border-radius: 4px !important;
}
@media (max-width: 992px) {
  .cid-uc9E6U0o9C .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uc9E6U0o9C .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uc9E6U0o9C .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uc9E6U0o9C .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: 0.3s all !important;
  min-width: auto;
  background: #fff0b0;
  border-radius: 4px !important;
}
.cid-uc9E6U0o9C .nav-item:focus,
.cid-uc9E6U0o9C .nav-link:focus {
  outline: none;
}
.cid-uc9E6U0o9C .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uc9E6U0o9C .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uc9E6U0o9C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uc9E6U0o9C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uc9E6U0o9C .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uc9E6U0o9C .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uc9E6U0o9C .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uc9E6U0o9C .navbar.opened {
  transition: all 0.25s;
}
.cid-uc9E6U0o9C .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uc9E6U0o9C .navbar .navbar-logo img {
  width: auto;
}
.cid-uc9E6U0o9C .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uc9E6U0o9C .navbar.collapsed {
  justify-content: center;
}
.cid-uc9E6U0o9C .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uc9E6U0o9C .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uc9E6U0o9C .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uc9E6U0o9C .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uc9E6U0o9C .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uc9E6U0o9C .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-uc9E6U0o9C .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uc9E6U0o9C .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uc9E6U0o9C .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uc9E6U0o9C .navbar {
    min-height: 72px;
  }
  .cid-uc9E6U0o9C .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uc9E6U0o9C .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uc9E6U0o9C .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uc9E6U0o9C .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uc9E6U0o9C .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uc9E6U0o9C .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-uc9E6U0o9C .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uc9E6U0o9C .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uc9E6U0o9C .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uc9E6U0o9C .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uc9E6U0o9C .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uc9E6U0o9C .dropdown-item.active,
.cid-uc9E6U0o9C .dropdown-item:active {
  background-color: transparent;
}
.cid-uc9E6U0o9C .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uc9E6U0o9C .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uc9E6U0o9C .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uc9E6U0o9C .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fff0b0;
}
.cid-uc9E6U0o9C .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uc9E6U0o9C .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uc9E6U0o9C ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uc9E6U0o9C .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uc9E6U0o9C .navbar-buttons {
    text-align: left;
  }
}
.cid-uc9E6U0o9C button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uc9E6U0o9C button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uc9E6U0o9C button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uc9E6U0o9C button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uc9E6U0o9C button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uc9E6U0o9C button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uc9E6U0o9C nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uc9E6U0o9C nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uc9E6U0o9C nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uc9E6U0o9C nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uc9E6U0o9C .navbar-dropdown {
  padding: 0;
  background-color: #fff0b0 !important;
}
.cid-uc9E6U0o9C .opacityScroll {
  background: #fff0b0 !important;
}
.cid-uc9E6U0o9C a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uc9E6U0o9C .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uc9E6U0o9C .icons-menu {
    justify-content: flex-start;
    margin-bottom: 0.5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uc9E6U0o9C .navbar {
    height: 70px;
  }
  .cid-uc9E6U0o9C .navbar.opened {
    height: auto;
  }
  .cid-uc9E6U0o9C .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uc9E6U0o9C .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uc9E6U0o9C .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uc9E6U0o9C .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uc9E6U0o9C .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: 0.3s all;
  transform: rotate(-90deg);
}
.cid-uc9E6U0o9C .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uc9E6U0o9C .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uc9E6U0o9C .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uc9E6U0o9C .navbar-brand {
    margin-right: auto;
  }
  .cid-uc9E6U0o9C .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #fff0b0;
    backdrop-filter: blur(8px);
    border-radius: 4px !important;
  }
  .cid-uc9E6U0o9C .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uc9E6U0o9C .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uc9E6U0o9C .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uc9E6U0o9C .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uc9E6U0o9C .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uc9E6U0o9C .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: 0.3s all;
    transform: rotate(0deg);
  }
  .cid-uc9E6U0o9C .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uc9E6U0o9C .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uc9E6U0o9C .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uc9E6U0o9C .navbar-collapse {
    left: -0.7rem;
    width: 106%;
    border-radius: 0;
  }
}
@media (max-width: 991px) and (min-width: 768px) and (max-width: 991px) {
  .cid-uc9E6U0o9C .navbar-collapse {
    left: 0rem;
    width: 106%;
    border-radius: 0;
  }
}
@media (max-width: 575px) {
  .cid-uc9E6U0o9C .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uc9E6Uvw7n {
  overflow: hidden;
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/r0-0-4521-3014-w4521-h3014-fmax.jpg");
}
.cid-uc9E6Uvw7n .container {
  margin: 0 auto;
  padding: 0 25px;
}
.cid-uc9E6Uvw7n .wrap {
  padding: 0 25px;
}
.cid-uc9E6Uvw7n .wrap:before {
  content: '';
  position: absolute;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  mix-blend-mode: multiply;
  background-color: #ff8a8a;
  top: 0px;
  right: 0px;
}
.cid-uc9E6Uvw7n .title__block {
  padding: 90px 0;
  display: flex;
  flex-direction: column;
  z-index: 1;
  position: relative;
}
.cid-uc9E6Uvw7n .mbr-text {
  margin-bottom: 20px;
}
.cid-uc9E6Uvw7n .mbr-section-btn {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .cid-uc9E6Uvw7n .title__block {
    padding: 80px 0;
  }
}
@media (max-width: 991px) {
  .cid-uc9E6Uvw7n .container,
  .cid-uc9E6Uvw7n .row {
    margin: 0;
    padding: 0;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-uc9E6Uvw7n .title__block {
    padding: 50px 0;
  }
}
@media (max-width: 575px) {
  .cid-uc9E6Uvw7n a.close {
    right: 50px;
    top: 25px;
  }
  .cid-uc9E6Uvw7n .modalWindow .modalWindow-video {
    height: calc(90vw / 1.778);
    width: 90vw;
    margin: 0 auto;
  }
}
.cid-uc9E6Uvw7n .mbr-fallback-image.disabled {
  display: none;
}
.cid-uc9E6Uvw7n .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uc9E6V7H7N {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-uc9E6V7H7N ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-uc9E6V7H7N li {
  position: relative;
}
.cid-uc9E6V7H7N li:nth-last-child(n+2) {
  margin-bottom: 1rem;
}
.cid-uc9E6V7H7N ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #22a5e5;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-uc9E6V7H7N .background {
  padding: 3rem 1rem;
  background-color: #0b0c37;
}
@media (min-width: 992px) {
  .cid-uc9E6V7H7N .background {
    margin-top: 5rem;
  }
}
@media (min-width: 992px) {
  .cid-uc9E6V7H7N .display-1 {
    font-size: 70px;
  }
  .cid-uc9E6V7H7N .display-5 {
    font-size: 29px;
  }
  .cid-uc9E6V7H7N .display-7 {
    font-size: 22px;
  }
}
.cid-uc9E6V7H7N .list {
  color: #fff0b0;
}
.cid-uc9E6V7H7N .mbr-section-title {
  color: #ff9966;
}
.cid-uc9E6VCZA8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0b0c37;
}
.cid-uc9E6VCZA8 .mbr-text {
  color: #fafafa;
}
.cid-uc9E6VYFmp {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.cid-uc9E6VYFmp .row {
  justify-content: center;
}
.cid-uc9E6VYFmp .title-container {
  max-width: 720px;
  padding: 0;
  margin-bottom: 80px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 991px) {
  .cid-uc9E6VYFmp .title-container {
    margin-bottom: 64px;
  }
}
@media (max-width: 767px) {
  .cid-uc9E6VYFmp .title-container {
    margin-bottom: 56px;
  }
}
.cid-uc9E6VYFmp .mbr-section-title {
  color: #6148ff;
}
.cid-uc9E6VYFmp .mbr-section-subtitle {
  color: #161616;
  margin-top: 24px;
}
.cid-uc9E6VYFmp .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-uc9E6VYFmp .grid-container {
    grid-column-gap: 48px;
  }
}
@media (max-width: 767px) {
  .cid-uc9E6VYFmp .grid-container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.cid-uc9E6VYFmp .content-container {
  display: flex;
  padding: 0 !important;
}
.cid-uc9E6VYFmp .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-uc9E6VYFmp .text-container {
    margin-bottom: 56px;
    padding: 0;
  }
}
.cid-uc9E6VYFmp .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  flex-grow: 1;
}
.cid-uc9E6VYFmp .text-padding {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0;
}
.cid-uc9E6VYFmp .opinion-stars {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-bottom: 21px;
}
@media (max-width: 767px) {
  .cid-uc9E6VYFmp .opinion-stars {
    margin-bottom: 13px;
  }
}
.cid-uc9E6VYFmp .iconfont-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3px 3px;
}
.cid-uc9E6VYFmp .iconfont-wrapper .mbr-iconfont {
  font-size: 21px;
  color: #3e1fff;
}
.cid-uc9E6VYFmp .card-title {
  width: 100%;
  color: #000000;
  margin-bottom: 1rem;
  margin-top: 8px;
}
.cid-uc9E6VYFmp .mbr-text {
  width: 100%;
  color: #000000;
  opacity: 0.75;
  margin-bottom: 40px !important;
}
@media (max-width: 767px) {
  .cid-uc9E6VYFmp .mbr-text {
    margin-bottom: 24px !important;
  }
}
.cid-uc9E6VYFmp .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-uc9E6VYFmp .image-wrapper {
    width: 48px;
    height: 48px;
  }
}
.cid-uc9E6VYFmp .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uc9E6VYFmp .name-text {
  color: #161616;
  width: 100%;
  margin-bottom: 0;
}
.cid-uc9E6VYFmp .prof-text {
  max-width: 350px;
  color: #000000;
  opacity: 0.75;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-uc9E6VYFmp .prof-text {
    max-width: 100%;
    width: 100%;
  }
}
.cid-uc9E6VYFmp .circle-blur {
  position: absolute;
  top: 5%;
  left: 5%;
  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-uc9E6WHYr3 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #0b0c37;
}
.cid-uc9E6WHYr3 .mbr-text {
  border-left: 1px solid currentColor;
  padding-left: 1rem;
  color: #C0BCB7;
}
.cid-uc9E6WHYr3 .mbr-section-subtitle {
  color: #c0bcb7;
}
.cid-uc9E6WHYr3 .title {
  text-align: right;
}
@media (max-width: 991px) {
  .cid-uc9E6WHYr3 .title {
    text-align: left;
  }
}
@media (max-width: 991px) {
  .cid-uc9E6WHYr3 .col-12 {
    flex-direction: row-reverse;
  }
  .cid-uc9E6WHYr3 .col-12,
  .cid-uc9E6WHYr3 .col-md-12 {
    padding: 0;
  }
}
.cid-uc9E6WHYr3 .si img {
  width: auto;
}
.cid-uc9E6WHYr3 .mbr-section-title {
  color: #ffffff;
}
.cid-uc9E6X6mSi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uc9E6X6mSi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uc9E6X6mSi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uc9E6X6mSi .card-wrapper {
  background: #0b0c37;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uc9E6X6mSi .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uc9E6X6mSi .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uc9E6X6mSi .card-wrapper {
    padding: 4rem;
  }
}
.cid-uc9E6X6mSi .mbr-text,
.cid-uc9E6X6mSi .mbr-section-btn {
  color: #ffffff;
}
.cid-uc9E6X6mSi .card-title,
.cid-uc9E6X6mSi .card-box {
  text-align: left;
  color: #ffffff;
}
.cid-uc9E6XCeCi {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #0b0c37;
}
.cid-uc9E6XCeCi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uc9E6XCeCi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uc9E6XCeCi .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uc9E6XCeCi .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uc9E6XCeCi .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-uc9E6XCeCi .card-title {
  color: #ffffff;
}
.cid-uc9E6YhEve {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uc9E6YhEve .mbr-fallback-image.disabled {
  display: none;
}
.cid-uc9E6YhEve .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-uc9E6YhEve .container {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uc9E6YhEve .image-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uc9E6YhEve .image-wrapper img {
  height: 460px;
  object-fit: cover;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uc9E6YhEve .image-wrapper img {
    height: 300px;
  }
}
.cid-uc9E6YhEve .card-wrapper {
  margin-top: 15%;
  padding-top: 120px;
  background-color: #0b0c37;
  border-radius: 40px;
}
@media (max-width: 992px) {
  .cid-uc9E6YhEve .card-wrapper {
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  .cid-uc9E6YhEve .card-wrapper {
    margin-top: 0;
    padding-top: 20px;
  }
}
.cid-uc9E6YhEve .card-wrapper .mbr-section-title {
  padding: 0 100px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uc9E6YhEve .card-wrapper .mbr-section-title {
    margin-bottom: 20px;
    padding: 0 20px;
  }
}
.cid-uc9E6YhEve .card-wrapper .mbr-text {
  padding: 0 100px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-uc9E6YhEve .card-wrapper .mbr-text {
    padding: 0 20px;
  }
}
.cid-uc9E6YhEve .card-wrapper .icon-wrapper {
  padding: 0 20px 20px;
}
.cid-uc9E6YhEve .card-wrapper .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  width: 56px;
  background-color: #0b0c37;
  color: #08323c;
  font-size: 20px;
  border-radius: 50%;
}
@media (max-width: 992px) {
  .cid-uc9E6YhEve .card-wrapper .icon-wrapper {
    display: none;
  }
}
.cid-uc9E6YhEve .mbr-section-title {
  color: #ffffff;
}
.cid-uc9E6YhEve .mbr-text {
  color: #ffffff;
}
.cid-uc9E6YhEve .icon-wrapper {
  text-align: right;
}
.cid-uc9E6YGSCr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uc9E6YGSCr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uc9E6YGSCr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uc9E6YGSCr .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-uc9E6YGSCr .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uc9E6YGSCr .container {
    padding: 0 30px;
  }
}
.cid-uc9E6YGSCr .mbr-section-title {
  margin-bottom: 70px;
  color: #000000;
}
@media (max-width: 992px) {
  .cid-uc9E6YGSCr .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uc9E6YGSCr .video-block .video-wrapper .app-video-wrapper img {
  height: 700px;
  object-fit: cover;
  border-radius: 2em;
}
@media (max-width: 992px) {
  .cid-uc9E6YGSCr .video-block .video-wrapper .app-video-wrapper img {
    height: 350px;
  }
}
.cid-uc9E6YGSCr .video-block .video-wrapper .app-video-wrapper::before {
  color: #fff0b0;
  text-shadow: none;
}
.cid-uc9E6YGSCr .video-block .video-wrapper iframe {
  height: 700px;
  object-fit: cover;
  border-radius: 2em;
}
@media (max-width: 992px) {
  .cid-uc9E6YGSCr .video-block .video-wrapper iframe {
    height: 350px;
  }
}
.cid-uc9E6ZbgX0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0b0c37;
  position: relative;
}
.cid-uc9E6ZbgX0::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, #9fdbf8, #0b0c37);
}
.cid-uc9E6ZbgX0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uc9E6ZbgX0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uc9E6ZbgX0 .container-fluid {
  position: relative;
  z-index: 1;
  padding: 0 60px;
}
@media (max-width: 1440px) {
  .cid-uc9E6ZbgX0 .container-fluid {
    padding: 0 42px;
  }
}
@media (max-width: 992px) {
  .cid-uc9E6ZbgX0 .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uc9E6ZbgX0 .container {
    padding: 0 16px;
  }
}
.cid-uc9E6ZbgX0 .content-wrapper .mbr-section-title {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-uc9E6ZbgX0 .content-wrapper .mbr-section-title {
    margin-bottom: 48px;
  }
}
.cid-uc9E6ZbgX0 .item {
  margin-bottom: 32px;
}
.cid-uc9E6ZbgX0 .item .item-wrapper .card-box .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uc9E6ZbgX0 .item .item-wrapper .card-box .title-wrapper .title-wrap {
    margin-bottom: 16px;
  }
}
.cid-uc9E6ZbgX0 .item .item-wrapper .card-box .title-wrapper .title-wrap .mbr-iconfont {
  font-size: 36px;
  color: #f4f4f4;
  margin-right: 12px;
}
.cid-uc9E6ZbgX0 .item .item-wrapper .card-box .title-wrapper .title-wrap .card-title {
  margin-bottom: 0;
}
.cid-uc9E6ZbgX0 .item .item-wrapper .card-box .text-wrap .card-text {
  display: inline-flex;
  width: 80%;
  margin-bottom: 0;
}
.cid-uc9E6ZbgX0 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uc9E6ZbgX0 .card-title {
  color: #f4f4f4;
}
.cid-uc9E6ZbgX0 .card-text {
  color: #c1c1c1;
}
.cid-uc9E6ZNLsm {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uc9E6ZNLsm {
    padding-top: 6px;
    padding-bottom: 6px;
  }
}
.cid-uc9E6ZNLsm img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-uc9E6ZNLsm H1 {
  color: #132c70;
}
.cid-uc9E6ZNLsm .mbr-text,
.cid-uc9E6ZNLsm .mbr-section-btn {
  color: #132c70;
}
.cid-uc9E6ZNLsm H3 {
  color: #132c70;
}
.cid-uc9E6ZNLsm .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-uc9E6ZNLsm .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-uc9E6ZNLsm .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-uc9E6ZNLsm .link:hover {
  color: #ff9966 !important;
}
.cid-uc9E6ZNLsm .link:hover .link-ico {
  color: #ff9966 !important;
  padding-left: 10px;
}
.cid-uc9E6ZNLsm DIV {
  color: #57468b;
}
.cid-uc9E6ZNLsm .text-1 {
  line-height: 1;
}
.cid-uc9E6ZNLsm .container-fluid {
  max-width: 1300px;
}
.cid-uc9E6ZNLsm .mbr-section-title {
  margin-bottom: 3.5rem;
}
@media (max-width: 767px) {
  .cid-uc9E6ZNLsm .container-fluid {
    padding: 0 1rem;
  }
}
@media (min-width: 767px) {
  .cid-uc9E6ZNLsm .container-fluid {
    padding: 0 2rem;
  }
}
.cid-uc9E6ZNLsm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uc9E6ZNLsm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uc9E70fhn5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #0b0c37;
}
.cid-uc9E70fhn5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uc9E70fhn5 .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-uc9E70fhn5 .container {
    padding: 0 30px;
  }
}
.cid-uc9E70fhn5 .row {
  position: relative;
}
.cid-uc9E70fhn5 .row img {
  position: absolute;
  top: 6rem;
  right: 0;
  bottom: -5rem;
  width: 40%;
  height: 510px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uc9E70fhn5 .row img {
    top: auto;
    width: 100%;
  }
}
.cid-uc9E70fhn5 .text-wrapper {
  padding: 120px 75px 150px;
  background-color: #ffffff;
  position: relative;
}
@media (max-width: 768px) {
  .cid-uc9E70fhn5 .text-wrapper {
    padding: 40px 16px;
  }
}
.cid-uc9E70fhn5 .text-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uc9E70fhn5 .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uc9E70fhn5 .mbr-text {
  color: #212529;
}
.cid-uc9E70fhn5 .mbr-link,
.cid-uc9E70fhn5 .mbr-iconfont {
  color: #212529;
}
.cid-uc9E70QHno {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uc9E70QHno .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uc9E70QHno .panel-title {
  display: flex;
  align-items: center;
}
.cid-uc9E70QHno .mbr-iconfont {
  padding-right: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 3rem !important;
  color: #0b0c37;
}
.cid-uc9E70QHno .panel-body,
.cid-uc9E70QHno .card-header {
  padding: 1rem 0;
}
.cid-uc9E70QHno .panel-body {
  display: flex;
  justify-content: flex-end;
}
.cid-uc9E70QHno .panel-title-edit {
  color: #14142b;
  display: flex;
  align-items: center;
}
.cid-uc9E70QHno .panel-text {
  max-width: 466px;
  color: #8c8c95;
}
.cid-uc9E70QHno .card-header {
  padding: 28px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07) !important;
  overflow: hidden;
  border-style: solid;
  border-width: 1px;
  border-color: #eff0f6;
  border-radius: 24px;
}
.cid-uc9E70QHno .section-head {
  margin-bottom: 56px;
}
.cid-uc9E70QHno .card {
  margin-bottom: 32px;
}
.cid-uc9E70QHno H3 {
  color: #14142b;
}
@media (max-width: 768px) {
  .cid-uc9E70QHno .panel-text {
    width: 100%;
    max-width: initial;
  }
}
@media (max-width: 1000px) {
  .cid-uc9E70QHno .panel-text {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-uc9E71zSTP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #05051e;
}
.cid-uc9E71zSTP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uc9E71zSTP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uc9E71zSTP .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uc9E71zSTP .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uc9E71zSTP .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uc9E71zSTP .card-wrapper {
    padding: 4rem;
  }
}
.cid-uc9E71zSTP .mbr-text,
.cid-uc9E71zSTP .mbr-section-btn {
  color: #000000;
}
.cid-uc9E71zSTP .card-title,
.cid-uc9E71zSTP .card-box {
  text-align: left;
  color: #000000;
}
.cid-uc9ZY8KnZR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uc9ZY8KnZR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uc9ZY8KnZR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uc9ZY8KnZR .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uc9ZY8KnZR .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uc9ZY8KnZR .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uc9ZY8KnZR .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uc9ZY8KnZR .container {
    padding: 0 16px;
  }
}
.cid-uc9ZY8KnZR .row {
  justify-content: center;
}
.cid-uc9ZY8KnZR .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uc9ZY8KnZR .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uc9ZY8KnZR .mbr-section-subtitle {
  margin-bottom: 32px;
  color: #000000;
}
.cid-uc9ZY8KnZR .panel-group .card {
  border-bottom: 1px solid #000000;
  border-radius: 0 !important;
}
.cid-uc9ZY8KnZR .panel-group .card:first-child {
  border-top: 1px solid #000000;
}
.cid-uc9ZY8KnZR .panel-group .card .card-header {
  padding: 24px 0;
  border: none;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uc9ZY8KnZR .panel-group .card .card-header {
    padding: 20px 0;
  }
}
.cid-uc9ZY8KnZR .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uc9ZY8KnZR .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-uc9ZY8KnZR .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uc9ZY8KnZR .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  color: #0b0c37;
  transition: all 0.3s ease-in-out;
  margin-left: 8px;
}
.cid-uc9ZY8KnZR .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uc9ZY8KnZR .panel-group .card .panel-collapse .panel-body {
    padding-bottom: 20px;
  }
}
.cid-uc9ZY8KnZR .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uc9ZY8KnZR .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uc9ZY8KnZR .panel-title {
  color: #000000;
}
.cid-uc9ZY8KnZR .panel-text {
  color: #000000;
}
.cid-uc9E725AA6 {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background: #0b0c37;
}
.cid-uc9E725AA6 .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uc9E725AA6 .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: #ff9966;
}
.cid-uc9E725AA6 .svg-top .st0 {
  fill: #0b0c37;
}
@media (max-width: 992px) {
  .cid-uc9E725AA6 .svg-top {
    width: 1000px;
  }
}
.cid-uc9E725AA6 .google-map {
  height: 35rem;
  position: relative;
}
.cid-uc9E725AA6 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uc9E725AA6 .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-uc9E725AA6 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uc9E725AA6 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uc9E725AA6 .mbr-section-title {
  color: #ffffff;
}
.cid-uc9E725AA6 .mbr-section-subtitle {
  color: #1a449a;
}
.cid-uc9E72Em5p {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/r0-0-4935-3290-w4935-h3290-fmax.jpg");
}
.cid-uc9E72Em5p .mbr-fallback-image.disabled {
  display: none;
}
.cid-uc9E72Em5p .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-uc9E72Em5p .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uc9E72Em5p .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-uc9E72Em5p a {
  font-weight: 600;
}
.cid-uc9E72Em5p a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-uc9E72Em5p .col-lg-3,
  .cid-uc9E72Em5p .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-uc9E72Em5p .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-uc9E72Em5p .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-uc9E72Em5p h5 {
  margin: 0;
}
.cid-uc9E72Em5p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uc9E72Em5p .iconfont-wrapper {
  position: relative;
}
.cid-uc9E72Em5p .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-uc9E72Em5p .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-uc9E72Em5p .sociconfont-wrapper {
  display: flex;
}
.cid-uc9E72Em5p .card-title,
.cid-uc9E72Em5p .iconfont-wrapper {
  color: #ffe885;
}
.cid-uc9E72Em5p .card-text {
  color: #ffffff;
}
.cid-uc9E72Em5p .mbr-section-title {
  color: #000000;
}
.cid-uc9E72Em5p .main-title,
.cid-uc9E72Em5p .iconfont-wrapper {
  text-align: left;
}
.cid-uc9E73ngtA {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-uc9E7pLTzY {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uc9E7pLTzY .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-uc9E7pLTzY .btn:hover {
  background: #ff6666 !important;
  border-color: #ff6666 !important;
}
@media (max-width: 767px) {
  .cid-uc9E7pLTzY .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uc9E7pLTzY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uc9E7pLTzY .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uc9E7pLTzY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uc9E7pLTzY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uc9E7pLTzY .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uc9E7pLTzY .navbar-nav .nav-item {
  padding: 0 !important;
  transition: 0.3s all !important;
}
.cid-uc9E7pLTzY .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: 0.3s all !important;
  border-radius: 4px !important;
}
.cid-uc9E7pLTzY .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uc9E7pLTzY .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uc9E7pLTzY .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uc9E7pLTzY .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: 0.3s all !important;
  border-radius: 4px !important;
}
.cid-uc9E7pLTzY .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uc9E7pLTzY .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uc9E7pLTzY .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uc9E7pLTzY .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uc9E7pLTzY .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uc9E7pLTzY .navbar-caption {
  padding-left: 1rem;
  padding-right: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uc9E7pLTzY .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uc9E7pLTzY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: 0.3s all;
}
.cid-uc9E7pLTzY .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  border-radius: 4px !important;
}
@media (max-width: 992px) {
  .cid-uc9E7pLTzY .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uc9E7pLTzY .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uc9E7pLTzY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uc9E7pLTzY .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: 0.3s all !important;
  min-width: auto;
  background: #fff0b0;
  border-radius: 4px !important;
}
.cid-uc9E7pLTzY .nav-item:focus,
.cid-uc9E7pLTzY .nav-link:focus {
  outline: none;
}
.cid-uc9E7pLTzY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uc9E7pLTzY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uc9E7pLTzY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uc9E7pLTzY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uc9E7pLTzY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uc9E7pLTzY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uc9E7pLTzY .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uc9E7pLTzY .navbar.opened {
  transition: all 0.25s;
}
.cid-uc9E7pLTzY .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uc9E7pLTzY .navbar .navbar-logo img {
  width: auto;
}
.cid-uc9E7pLTzY .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uc9E7pLTzY .navbar.collapsed {
  justify-content: center;
}
.cid-uc9E7pLTzY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uc9E7pLTzY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uc9E7pLTzY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uc9E7pLTzY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uc9E7pLTzY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uc9E7pLTzY .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-uc9E7pLTzY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uc9E7pLTzY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uc9E7pLTzY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uc9E7pLTzY .navbar {
    min-height: 72px;
  }
  .cid-uc9E7pLTzY .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uc9E7pLTzY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uc9E7pLTzY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uc9E7pLTzY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uc9E7pLTzY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uc9E7pLTzY .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-uc9E7pLTzY .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uc9E7pLTzY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uc9E7pLTzY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uc9E7pLTzY .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uc9E7pLTzY .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uc9E7pLTzY .dropdown-item.active,
.cid-uc9E7pLTzY .dropdown-item:active {
  background-color: transparent;
}
.cid-uc9E7pLTzY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uc9E7pLTzY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uc9E7pLTzY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uc9E7pLTzY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fff0b0;
}
.cid-uc9E7pLTzY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uc9E7pLTzY .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uc9E7pLTzY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uc9E7pLTzY .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uc9E7pLTzY .navbar-buttons {
    text-align: left;
  }
}
.cid-uc9E7pLTzY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uc9E7pLTzY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uc9E7pLTzY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uc9E7pLTzY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uc9E7pLTzY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uc9E7pLTzY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uc9E7pLTzY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uc9E7pLTzY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uc9E7pLTzY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uc9E7pLTzY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uc9E7pLTzY .navbar-dropdown {
  padding: 0;
  background-color: #fff0b0 !important;
}
.cid-uc9E7pLTzY .opacityScroll {
  background: #fff0b0 !important;
}
.cid-uc9E7pLTzY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uc9E7pLTzY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uc9E7pLTzY .icons-menu {
    justify-content: flex-start;
    margin-bottom: 0.5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uc9E7pLTzY .navbar {
    height: 70px;
  }
  .cid-uc9E7pLTzY .navbar.opened {
    height: auto;
  }
  .cid-uc9E7pLTzY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uc9E7pLTzY .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uc9E7pLTzY .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uc9E7pLTzY .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uc9E7pLTzY .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: 0.3s all;
  transform: rotate(-90deg);
}
.cid-uc9E7pLTzY .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uc9E7pLTzY .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uc9E7pLTzY .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uc9E7pLTzY .navbar-brand {
    margin-right: auto;
  }
  .cid-uc9E7pLTzY .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #fff0b0;
    backdrop-filter: blur(8px);
    border-radius: 4px !important;
  }
  .cid-uc9E7pLTzY .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uc9E7pLTzY .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uc9E7pLTzY .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uc9E7pLTzY .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uc9E7pLTzY .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uc9E7pLTzY .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: 0.3s all;
    transform: rotate(0deg);
  }
  .cid-uc9E7pLTzY .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uc9E7pLTzY .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uc9E7pLTzY .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uc9E7pLTzY .navbar-collapse {
    left: -0.7rem;
    width: 106%;
    border-radius: 0;
  }
}
@media (max-width: 991px) and (min-width: 768px) and (max-width: 991px) {
  .cid-uc9E7pLTzY .navbar-collapse {
    left: 0rem;
    width: 106%;
    border-radius: 0;
  }
}
@media (max-width: 575px) {
  .cid-uc9E7pLTzY .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uc9E7qfYMh {
  overflow: hidden;
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/bounce-house-4.jpg");
}
.cid-uc9E7qfYMh .container {
  margin: 0 auto;
  padding: 0 25px;
}
.cid-uc9E7qfYMh .wrap {
  padding: 0 25px;
}
.cid-uc9E7qfYMh .wrap:before {
  content: '';
  position: absolute;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  mix-blend-mode: multiply;
  background-color: #ff8a8a;
  top: 0px;
  right: 0px;
}
.cid-uc9E7qfYMh .title__block {
  padding: 90px 0;
  display: flex;
  flex-direction: column;
  z-index: 1;
  position: relative;
}
.cid-uc9E7qfYMh .mbr-text {
  margin-bottom: 20px;
}
.cid-uc9E7qfYMh .mbr-section-btn {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .cid-uc9E7qfYMh .title__block {
    padding: 80px 0;
  }
}
@media (max-width: 991px) {
  .cid-uc9E7qfYMh .container,
  .cid-uc9E7qfYMh .row {
    margin: 0;
    padding: 0;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-uc9E7qfYMh .title__block {
    padding: 50px 0;
  }
}
@media (max-width: 575px) {
  .cid-uc9E7qfYMh a.close {
    right: 50px;
    top: 25px;
  }
  .cid-uc9E7qfYMh .modalWindow .modalWindow-video {
    height: calc(90vw / 1.778);
    width: 90vw;
    margin: 0 auto;
  }
}
.cid-uc9E7qfYMh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uc9E7qfYMh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uc9E7qTfhB {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-uc9E7qTfhB ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-uc9E7qTfhB li {
  position: relative;
}
.cid-uc9E7qTfhB li:nth-last-child(n+2) {
  margin-bottom: 1rem;
}
.cid-uc9E7qTfhB ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #22a5e5;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-uc9E7qTfhB .background {
  padding: 3rem 1rem;
  background-color: #0b0c37;
}
@media (min-width: 992px) {
  .cid-uc9E7qTfhB .background {
    margin-top: 5rem;
  }
}
@media (min-width: 992px) {
  .cid-uc9E7qTfhB .display-1 {
    font-size: 70px;
  }
  .cid-uc9E7qTfhB .display-5 {
    font-size: 29px;
  }
  .cid-uc9E7qTfhB .display-7 {
    font-size: 22px;
  }
}
.cid-uc9E7qTfhB .list {
  color: #fff0b0;
}
.cid-uc9E7qTfhB .mbr-section-title {
  color: #ff9966;
}
.cid-uc9E7roetV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0b0c37;
}
.cid-uc9E7roetV .mbr-text {
  color: #fafafa;
}
.cid-uc9E7rLJPM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.cid-uc9E7rLJPM .row {
  justify-content: center;
}
.cid-uc9E7rLJPM .title-container {
  max-width: 720px;
  padding: 0;
  margin-bottom: 80px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 991px) {
  .cid-uc9E7rLJPM .title-container {
    margin-bottom: 64px;
  }
}
@media (max-width: 767px) {
  .cid-uc9E7rLJPM .title-container {
    margin-bottom: 56px;
  }
}
.cid-uc9E7rLJPM .mbr-section-title {
  color: #6148ff;
}
.cid-uc9E7rLJPM .mbr-section-subtitle {
  color: #161616;
  margin-top: 24px;
}
.cid-uc9E7rLJPM .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-uc9E7rLJPM .grid-container {
    grid-column-gap: 48px;
  }
}
@media (max-width: 767px) {
  .cid-uc9E7rLJPM .grid-container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.cid-uc9E7rLJPM .content-container {
  display: flex;
  padding: 0 !important;
}
.cid-uc9E7rLJPM .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-uc9E7rLJPM .text-container {
    margin-bottom: 56px;
    padding: 0;
  }
}
.cid-uc9E7rLJPM .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  flex-grow: 1;
}
.cid-uc9E7rLJPM .text-padding {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0;
}
.cid-uc9E7rLJPM .opinion-stars {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-bottom: 21px;
}
@media (max-width: 767px) {
  .cid-uc9E7rLJPM .opinion-stars {
    margin-bottom: 13px;
  }
}
.cid-uc9E7rLJPM .iconfont-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3px 3px;
}
.cid-uc9E7rLJPM .iconfont-wrapper .mbr-iconfont {
  font-size: 21px;
  color: #3e1fff;
}
.cid-uc9E7rLJPM .card-title {
  width: 100%;
  color: #000000;
  margin-bottom: 1rem;
  margin-top: 8px;
}
.cid-uc9E7rLJPM .mbr-text {
  width: 100%;
  color: #000000;
  opacity: 0.75;
  margin-bottom: 40px !important;
}
@media (max-width: 767px) {
  .cid-uc9E7rLJPM .mbr-text {
    margin-bottom: 24px !important;
  }
}
.cid-uc9E7rLJPM .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-uc9E7rLJPM .image-wrapper {
    width: 48px;
    height: 48px;
  }
}
.cid-uc9E7rLJPM .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uc9E7rLJPM .name-text {
  color: #161616;
  width: 100%;
  margin-bottom: 0;
}
.cid-uc9E7rLJPM .prof-text {
  max-width: 350px;
  color: #000000;
  opacity: 0.75;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-uc9E7rLJPM .prof-text {
    max-width: 100%;
    width: 100%;
  }
}
.cid-uc9E7rLJPM .circle-blur {
  position: absolute;
  top: 5%;
  left: 5%;
  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-uc9E7soUuV {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #0b0c37;
}
.cid-uc9E7soUuV .mbr-text {
  border-left: 1px solid currentColor;
  padding-left: 1rem;
  color: #C0BCB7;
}
.cid-uc9E7soUuV .mbr-section-subtitle {
  color: #c0bcb7;
}
.cid-uc9E7soUuV .title {
  text-align: right;
}
@media (max-width: 991px) {
  .cid-uc9E7soUuV .title {
    text-align: left;
  }
}
@media (max-width: 991px) {
  .cid-uc9E7soUuV .col-12 {
    flex-direction: row-reverse;
  }
  .cid-uc9E7soUuV .col-12,
  .cid-uc9E7soUuV .col-md-12 {
    padding: 0;
  }
}
.cid-uc9E7soUuV .si img {
  width: auto;
}
.cid-uc9E7soUuV .mbr-section-title {
  color: #ffffff;
}
.cid-uc9E7sQLWg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uc9E7sQLWg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uc9E7sQLWg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uc9E7sQLWg .card-wrapper {
  background: #0b0c37;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uc9E7sQLWg .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uc9E7sQLWg .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uc9E7sQLWg .card-wrapper {
    padding: 4rem;
  }
}
.cid-uc9E7sQLWg .mbr-text,
.cid-uc9E7sQLWg .mbr-section-btn {
  color: #ffffff;
}
.cid-uc9E7sQLWg .card-title,
.cid-uc9E7sQLWg .card-box {
  text-align: left;
  color: #ffffff;
}
.cid-uc9E7tj4op {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #0b0c37;
}
.cid-uc9E7tj4op .mbr-fallback-image.disabled {
  display: none;
}
.cid-uc9E7tj4op .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uc9E7tj4op .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uc9E7tj4op .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uc9E7tj4op .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-uc9E7tj4op .card-title {
  color: #ffffff;
}
.cid-uc9E7u0vOR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uc9E7u0vOR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uc9E7u0vOR .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-uc9E7u0vOR .container {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uc9E7u0vOR .image-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uc9E7u0vOR .image-wrapper img {
  height: 460px;
  object-fit: cover;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uc9E7u0vOR .image-wrapper img {
    height: 300px;
  }
}
.cid-uc9E7u0vOR .card-wrapper {
  margin-top: 15%;
  padding-top: 120px;
  background-color: #0b0c37;
  border-radius: 40px;
}
@media (max-width: 992px) {
  .cid-uc9E7u0vOR .card-wrapper {
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  .cid-uc9E7u0vOR .card-wrapper {
    margin-top: 0;
    padding-top: 20px;
  }
}
.cid-uc9E7u0vOR .card-wrapper .mbr-section-title {
  padding: 0 100px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uc9E7u0vOR .card-wrapper .mbr-section-title {
    margin-bottom: 20px;
    padding: 0 20px;
  }
}
.cid-uc9E7u0vOR .card-wrapper .mbr-text {
  padding: 0 100px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-uc9E7u0vOR .card-wrapper .mbr-text {
    padding: 0 20px;
  }
}
.cid-uc9E7u0vOR .card-wrapper .icon-wrapper {
  padding: 0 20px 20px;
}
.cid-uc9E7u0vOR .card-wrapper .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  width: 56px;
  background-color: #0b0c37;
  color: #08323c;
  font-size: 20px;
  border-radius: 50%;
}
@media (max-width: 992px) {
  .cid-uc9E7u0vOR .card-wrapper .icon-wrapper {
    display: none;
  }
}
.cid-uc9E7u0vOR .mbr-section-title {
  color: #ffffff;
}
.cid-uc9E7u0vOR .mbr-text {
  color: #ffffff;
}
.cid-uc9E7u0vOR .icon-wrapper {
  text-align: right;
}
.cid-uc9E7useHO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uc9E7useHO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uc9E7useHO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uc9E7useHO .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-uc9E7useHO .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uc9E7useHO .container {
    padding: 0 30px;
  }
}
.cid-uc9E7useHO .mbr-section-title {
  margin-bottom: 70px;
  color: #000000;
}
@media (max-width: 992px) {
  .cid-uc9E7useHO .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uc9E7useHO .video-block .video-wrapper .app-video-wrapper img {
  height: 700px;
  object-fit: cover;
  border-radius: 2em;
}
@media (max-width: 992px) {
  .cid-uc9E7useHO .video-block .video-wrapper .app-video-wrapper img {
    height: 350px;
  }
}
.cid-uc9E7useHO .video-block .video-wrapper .app-video-wrapper::before {
  color: #fff0b0;
  text-shadow: none;
}
.cid-uc9E7useHO .video-block .video-wrapper iframe {
  height: 700px;
  object-fit: cover;
  border-radius: 2em;
}
@media (max-width: 992px) {
  .cid-uc9E7useHO .video-block .video-wrapper iframe {
    height: 350px;
  }
}
.cid-uc9E7uXhn3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0b0c37;
  position: relative;
}
.cid-uc9E7uXhn3::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, #9fdbf8, #0b0c37);
}
.cid-uc9E7uXhn3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uc9E7uXhn3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uc9E7uXhn3 .container-fluid {
  position: relative;
  z-index: 1;
  padding: 0 60px;
}
@media (max-width: 1440px) {
  .cid-uc9E7uXhn3 .container-fluid {
    padding: 0 42px;
  }
}
@media (max-width: 992px) {
  .cid-uc9E7uXhn3 .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uc9E7uXhn3 .container {
    padding: 0 16px;
  }
}
.cid-uc9E7uXhn3 .content-wrapper .mbr-section-title {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-uc9E7uXhn3 .content-wrapper .mbr-section-title {
    margin-bottom: 48px;
  }
}
.cid-uc9E7uXhn3 .item {
  margin-bottom: 32px;
}
.cid-uc9E7uXhn3 .item .item-wrapper .card-box .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uc9E7uXhn3 .item .item-wrapper .card-box .title-wrapper .title-wrap {
    margin-bottom: 16px;
  }
}
.cid-uc9E7uXhn3 .item .item-wrapper .card-box .title-wrapper .title-wrap .mbr-iconfont {
  font-size: 36px;
  color: #f4f4f4;
  margin-right: 12px;
}
.cid-uc9E7uXhn3 .item .item-wrapper .card-box .title-wrapper .title-wrap .card-title {
  margin-bottom: 0;
}
.cid-uc9E7uXhn3 .item .item-wrapper .card-box .text-wrap .card-text {
  display: inline-flex;
  width: 80%;
  margin-bottom: 0;
}
.cid-uc9E7uXhn3 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uc9E7uXhn3 .card-title {
  color: #f4f4f4;
}
.cid-uc9E7uXhn3 .card-text {
  color: #c1c1c1;
}
.cid-uc9E7vyg9n {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uc9E7vyg9n {
    padding-top: 6px;
    padding-bottom: 6px;
  }
}
.cid-uc9E7vyg9n img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-uc9E7vyg9n H1 {
  color: #132c70;
}
.cid-uc9E7vyg9n .mbr-text,
.cid-uc9E7vyg9n .mbr-section-btn {
  color: #132c70;
}
.cid-uc9E7vyg9n H3 {
  color: #132c70;
}
.cid-uc9E7vyg9n .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-uc9E7vyg9n .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-uc9E7vyg9n .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-uc9E7vyg9n .link:hover {
  color: #ff9966 !important;
}
.cid-uc9E7vyg9n .link:hover .link-ico {
  color: #ff9966 !important;
  padding-left: 10px;
}
.cid-uc9E7vyg9n DIV {
  color: #57468b;
}
.cid-uc9E7vyg9n .text-1 {
  line-height: 1;
}
.cid-uc9E7vyg9n .container-fluid {
  max-width: 1300px;
}
.cid-uc9E7vyg9n .mbr-section-title {
  margin-bottom: 3.5rem;
}
@media (max-width: 767px) {
  .cid-uc9E7vyg9n .container-fluid {
    padding: 0 1rem;
  }
}
@media (min-width: 767px) {
  .cid-uc9E7vyg9n .container-fluid {
    padding: 0 2rem;
  }
}
.cid-uc9E7vyg9n .mbr-fallback-image.disabled {
  display: none;
}
.cid-uc9E7vyg9n .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uc9E7w6OT2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #0b0c37;
}
.cid-uc9E7w6OT2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uc9E7w6OT2 .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-uc9E7w6OT2 .container {
    padding: 0 30px;
  }
}
.cid-uc9E7w6OT2 .row {
  position: relative;
}
.cid-uc9E7w6OT2 .row img {
  position: absolute;
  top: 6rem;
  right: 0;
  bottom: -5rem;
  width: 40%;
  height: 510px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uc9E7w6OT2 .row img {
    top: auto;
    width: 100%;
  }
}
.cid-uc9E7w6OT2 .text-wrapper {
  padding: 120px 75px 150px;
  background-color: #ffffff;
  position: relative;
}
@media (max-width: 768px) {
  .cid-uc9E7w6OT2 .text-wrapper {
    padding: 40px 16px;
  }
}
.cid-uc9E7w6OT2 .text-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uc9E7w6OT2 .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uc9E7w6OT2 .mbr-text {
  color: #212529;
}
.cid-uc9E7w6OT2 .mbr-link,
.cid-uc9E7w6OT2 .mbr-iconfont {
  color: #212529;
}
.cid-uc9E7wx9ZC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uc9E7wx9ZC .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uc9E7wx9ZC .panel-title {
  display: flex;
  align-items: center;
}
.cid-uc9E7wx9ZC .mbr-iconfont {
  padding-right: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 3rem !important;
  color: #0b0c37;
}
.cid-uc9E7wx9ZC .panel-body,
.cid-uc9E7wx9ZC .card-header {
  padding: 1rem 0;
}
.cid-uc9E7wx9ZC .panel-body {
  display: flex;
  justify-content: flex-end;
}
.cid-uc9E7wx9ZC .panel-title-edit {
  color: #14142b;
  display: flex;
  align-items: center;
}
.cid-uc9E7wx9ZC .panel-text {
  max-width: 466px;
  color: #8c8c95;
}
.cid-uc9E7wx9ZC .card-header {
  padding: 28px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07) !important;
  overflow: hidden;
  border-style: solid;
  border-width: 1px;
  border-color: #eff0f6;
  border-radius: 24px;
}
.cid-uc9E7wx9ZC .section-head {
  margin-bottom: 56px;
}
.cid-uc9E7wx9ZC .card {
  margin-bottom: 32px;
}
.cid-uc9E7wx9ZC H3 {
  color: #14142b;
}
@media (max-width: 768px) {
  .cid-uc9E7wx9ZC .panel-text {
    width: 100%;
    max-width: initial;
  }
}
@media (max-width: 1000px) {
  .cid-uc9E7wx9ZC .panel-text {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-uc9E7xgN7j {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #05051e;
}
.cid-uc9E7xgN7j .mbr-fallback-image.disabled {
  display: none;
}
.cid-uc9E7xgN7j .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uc9E7xgN7j .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uc9E7xgN7j .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uc9E7xgN7j .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uc9E7xgN7j .card-wrapper {
    padding: 4rem;
  }
}
.cid-uc9E7xgN7j .mbr-text,
.cid-uc9E7xgN7j .mbr-section-btn {
  color: #000000;
}
.cid-uc9E7xgN7j .card-title,
.cid-uc9E7xgN7j .card-box {
  text-align: left;
  color: #000000;
}
.cid-uca0rDaOY1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uca0rDaOY1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uca0rDaOY1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uca0rDaOY1 .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uca0rDaOY1 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uca0rDaOY1 .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uca0rDaOY1 .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uca0rDaOY1 .container {
    padding: 0 16px;
  }
}
.cid-uca0rDaOY1 .row {
  justify-content: center;
}
.cid-uca0rDaOY1 .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uca0rDaOY1 .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uca0rDaOY1 .mbr-section-subtitle {
  margin-bottom: 32px;
  color: #000000;
}
.cid-uca0rDaOY1 .panel-group .card {
  border-bottom: 1px solid #000000;
  border-radius: 0 !important;
}
.cid-uca0rDaOY1 .panel-group .card:first-child {
  border-top: 1px solid #000000;
}
.cid-uca0rDaOY1 .panel-group .card .card-header {
  padding: 24px 0;
  border: none;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uca0rDaOY1 .panel-group .card .card-header {
    padding: 20px 0;
  }
}
.cid-uca0rDaOY1 .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uca0rDaOY1 .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-uca0rDaOY1 .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uca0rDaOY1 .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  color: #0b0c37;
  transition: all 0.3s ease-in-out;
  margin-left: 8px;
}
.cid-uca0rDaOY1 .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uca0rDaOY1 .panel-group .card .panel-collapse .panel-body {
    padding-bottom: 20px;
  }
}
.cid-uca0rDaOY1 .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uca0rDaOY1 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uca0rDaOY1 .panel-title {
  color: #000000;
}
.cid-uca0rDaOY1 .panel-text {
  color: #000000;
}
.cid-uc9E7xMNxl {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background: #0b0c37;
}
.cid-uc9E7xMNxl .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uc9E7xMNxl .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: #ff9966;
}
.cid-uc9E7xMNxl .svg-top .st0 {
  fill: #0b0c37;
}
@media (max-width: 992px) {
  .cid-uc9E7xMNxl .svg-top {
    width: 1000px;
  }
}
.cid-uc9E7xMNxl .google-map {
  height: 35rem;
  position: relative;
}
.cid-uc9E7xMNxl .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uc9E7xMNxl .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-uc9E7xMNxl .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uc9E7xMNxl .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uc9E7xMNxl .mbr-section-title {
  color: #ffffff;
}
.cid-uc9E7xMNxl .mbr-section-subtitle {
  color: #1a449a;
}
.cid-uc9E7ymgJz {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/r0-0-4935-3290-w4935-h3290-fmax.jpg");
}
.cid-uc9E7ymgJz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uc9E7ymgJz .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-uc9E7ymgJz .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uc9E7ymgJz .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-uc9E7ymgJz a {
  font-weight: 600;
}
.cid-uc9E7ymgJz a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-uc9E7ymgJz .col-lg-3,
  .cid-uc9E7ymgJz .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-uc9E7ymgJz .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-uc9E7ymgJz .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-uc9E7ymgJz h5 {
  margin: 0;
}
.cid-uc9E7ymgJz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uc9E7ymgJz .iconfont-wrapper {
  position: relative;
}
.cid-uc9E7ymgJz .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-uc9E7ymgJz .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-uc9E7ymgJz .sociconfont-wrapper {
  display: flex;
}
.cid-uc9E7ymgJz .card-title,
.cid-uc9E7ymgJz .iconfont-wrapper {
  color: #ffe885;
}
.cid-uc9E7ymgJz .card-text {
  color: #ffffff;
}
.cid-uc9E7ymgJz .mbr-section-title {
  color: #000000;
}
.cid-uc9E7ymgJz .main-title,
.cid-uc9E7ymgJz .iconfont-wrapper {
  text-align: left;
}
.cid-uc9E7z2cQw {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
