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: #4479d9 !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: #4479d9 !important;
  border-color: #4479d9 !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: #2150a5 !important;
  border-color: #2150a5 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2150a5 !important;
  border-color: #2150a5 !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: #4479d9;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2150a5 !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: #4479d9 !important;
  border-color: #4479d9 !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: #4479d9 !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: #1f4a98 !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: #4479d9;
}
.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: #4479d9;
  border-color: #4479d9;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #4479d9;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #eef2fb;
}
.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: #4479d9 !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: #4479d9;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #4479d9;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #4479d9;
}
.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: #4479d9;
  border-bottom-color: #4479d9;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #4479d9 !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='%234479d9' %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-ucawxgwn8R {
  padding-top: 10rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/dots.svg");
  background-repeat: repeat;
  background-size: 30px 30px;
}
@media (max-width: 1000px) {
  .cid-ucawxgwn8R {
    padding-top: 5rem;
    padding-bottom: 1.5rem;
  }
}
@media (max-width: 768px) {
  .cid-ucawxgwn8R {
    padding-top: 3rem;
    padding-bottom: 0.9rem;
  }
}
.cid-ucawxgwn8R .f-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-ucawxgwn8R .f-row {
    flex-direction: row;
  }
}
.cid-ucawxgwn8R .f-item {
  flex: 1 1 100%;
}
@media (min-width: 992px) {
  .cid-ucawxgwn8R .f-item {
    flex: 1 1 50%;
  }
}
.cid-ucawxgwn8R .image-wrapper {
  height: 100%;
}
@media (min-width: 992px) {
  .cid-ucawxgwn8R .image-wrapper {
    min-height: 650px;
  }
}
.cid-ucawxgwn8R .image-wrapper img {
  min-height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-ucawxgwn8R .text-wrapper {
  width: 100%;
  background: #d90a2c;
  padding: 1rem 2rem;
}
@media (min-width: 992px) {
  .cid-ucawxgwn8R .text-wrapper {
    padding: 3rem;
    transform: translate(-12%, -5rem);
  }
}
@media (min-width: 1200px) {
  .cid-ucawxgwn8R .text-wrapper {
    padding: 6rem 3.25rem;
  }
}
.cid-ucawxgwn8R .mbr-section-title {
  color: #ffffff;
}
.cid-ucawxgwn8R .mbr-text {
  color: #fafafa;
}
.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: #d90a2c;
}
@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: #ffffff;
}
.cid-uc7hvaWUbz .mbr-section-title {
  color: #820909;
}
.cid-ubUYEEoQYp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d90a2c;
}
.cid-ubUYEEoQYp .mbr-text {
  color: #ffffff;
}
.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: #d90a2c;
}
.cid-uc7hGf2J71 .mbr-text {
  border-left: 1px solid currentColor;
  padding-left: 1rem;
  color: #ffffff;
  text-align: left;
}
.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,
  .cid-uc7hGf2J71 .col-md-12 {
    padding: 0;
  }
}
.cid-uc7hGf2J71 .si img {
  width: auto;
}
.cid-uc7hGf2J71 .row,
.cid-uc7hGf2J71 .col-12 {
  flex-direction: row-reverse;
}
.cid-uc7hGf2J71 .mbr-text {
  border-right: 1px solid currentColor;
  padding-right: 1rem;
  border-left: none;
  padding-left: 0;
  text-align: right;
}
.cid-uc7hGf2J71 .title {
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uc7hGf2J71 .col-12 {
    flex-direction: initial;
  }
  .cid-uc7hGf2J71 .title {
    text-align: right;
  }
}
.cid-uc7hGf2J71 .mbr-section-title {
  color: #ffffff;
}
.cid-uc7hGf2J71 .mbr-section-title DIV {
  text-align: center;
}
.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: #d90a2c;
  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: #d90a2c;
}
.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: #d90a2c;
  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: #fffa76;
  color: #fffa76;
  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-uc7gS7YSHB .mbr-section-title,
.cid-uc7gS7YSHB .icon-wrapper {
  color: #ffffff;
}
.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: #d90a2c;
  position: relative;
}
.cid-ubV6YAiEyP::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, #fffa76, #d90a2c);
}
.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: #000000;
}
.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: #4479d9 !important;
}
.cid-uc7kGlcGsH .link:hover .link-ico {
  color: #4479d9 !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-uc7kGlcGsH .mbr-text,
.cid-uc7kGlcGsH .media-content {
  color: #000000;
}
.cid-uc7g9M03aQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #d90a2c;
}
.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;
  text-align: left;
}
.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: #d90a2c;
}
.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: #d90a2c;
  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: #820909;
}
@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: #d90a2c;
}
.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: #4479d9;
}
.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-color: #d90a2c;
}
.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: #ffffff;
}
.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-ucc8KnsBgw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ucc8KnsBgw nav.navbar {
  position: fixed;
}
.cid-ucc8KnsBgw .container,
.cid-ucc8KnsBgw .container-fluid {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ucc8KnsBgw .container,
  .cid-ucc8KnsBgw .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-ucc8KnsBgw .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-ucc8KnsBgw .dropdown-menu {
  padding: 1rem 0;
  border-radius: 0px;
  background: #ffffff !important;
}
.cid-ucc8KnsBgw .dropdown-item:hover,
.cid-ucc8KnsBgw .dropdown-item:focus {
  color: #4479d9 !important;
}
.cid-ucc8KnsBgw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ucc8KnsBgw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ucc8KnsBgw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ucc8KnsBgw .nav-link {
  position: relative;
}
.cid-ucc8KnsBgw .nav-link:hover {
  color: #ffffff !important;
}
.cid-ucc8KnsBgw .nav-link:hover:before {
  opacity: 1;
}
.cid-ucc8KnsBgw .nav-link:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: white;
  transition: all 0.3s;
  opacity: 0;
}
.cid-ucc8KnsBgw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ucc8KnsBgw .container {
  display: flex;
  margin: auto;
}
.cid-ucc8KnsBgw .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ucc8KnsBgw .nav-item:focus,
.cid-ucc8KnsBgw .nav-link:focus {
  outline: none;
}
.cid-ucc8KnsBgw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ucc8KnsBgw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ucc8KnsBgw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ucc8KnsBgw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ucc8KnsBgw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ucc8KnsBgw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ucc8KnsBgw .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 2px solid #000000;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #d90a2c;
}
.cid-ucc8KnsBgw .navbar.opened {
  transition: all 0.3s;
}
.cid-ucc8KnsBgw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ucc8KnsBgw .navbar .navbar-logo img {
  width: auto;
}
.cid-ucc8KnsBgw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ucc8KnsBgw .navbar.collapsed {
  justify-content: center;
}
.cid-ucc8KnsBgw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ucc8KnsBgw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ucc8KnsBgw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.2rem);
  }
}
.cid-ucc8KnsBgw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ucc8KnsBgw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ucc8KnsBgw .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-ucc8KnsBgw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ucc8KnsBgw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ucc8KnsBgw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ucc8KnsBgw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ucc8KnsBgw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ucc8KnsBgw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ucc8KnsBgw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ucc8KnsBgw .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-ucc8KnsBgw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ucc8KnsBgw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ucc8KnsBgw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ucc8KnsBgw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ucc8KnsBgw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ucc8KnsBgw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ucc8KnsBgw .navbar.navbar-short {
  min-height: 60px;
}
.cid-ucc8KnsBgw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ucc8KnsBgw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ucc8KnsBgw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ucc8KnsBgw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ucc8KnsBgw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ucc8KnsBgw .dropdown-item.active,
.cid-ucc8KnsBgw .dropdown-item:active {
  background-color: transparent;
}
.cid-ucc8KnsBgw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ucc8KnsBgw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ucc8KnsBgw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ucc8KnsBgw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d90a2c;
}
.cid-ucc8KnsBgw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ucc8KnsBgw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ucc8KnsBgw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ucc8KnsBgw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ucc8KnsBgw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: absolute;
  top: 2rem;
  right: 1rem;
  z-index: 5;
  align-self: center;
}
.cid-ucc8KnsBgw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ucc8KnsBgw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ucc8KnsBgw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucc8KnsBgw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucc8KnsBgw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ucc8KnsBgw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucc8KnsBgw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ucc8KnsBgw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ucc8KnsBgw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucc8KnsBgw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ucc8KnsBgw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ucc8KnsBgw .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ucc8KnsBgw .navbar {
    height: 70px;
  }
  .cid-ucc8KnsBgw .navbar.opened {
    height: auto;
  }
  .cid-ucc8KnsBgw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 992px) {
  .cid-ucc8KnsBgw .icons-menu {
    padding-right: 0;
  }
  .cid-ucc8KnsBgw .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-ubZTbY4wm8 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #0b0c37;
}
.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: #d90a2c;
}
.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: #4479d9;
}
.cid-ubZTbYBest .svg-top .st0 {
  fill: #d90a2c;
}
@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-color: #d90a2c;
}
.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: #ffffff;
}
.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-ucc8KnsBgw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ucc8KnsBgw nav.navbar {
  position: fixed;
}
.cid-ucc8KnsBgw .container,
.cid-ucc8KnsBgw .container-fluid {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ucc8KnsBgw .container,
  .cid-ucc8KnsBgw .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-ucc8KnsBgw .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-ucc8KnsBgw .dropdown-menu {
  padding: 1rem 0;
  border-radius: 0px;
  background: #ffffff !important;
}
.cid-ucc8KnsBgw .dropdown-item:hover,
.cid-ucc8KnsBgw .dropdown-item:focus {
  color: #4479d9 !important;
}
.cid-ucc8KnsBgw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ucc8KnsBgw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ucc8KnsBgw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ucc8KnsBgw .nav-link {
  position: relative;
}
.cid-ucc8KnsBgw .nav-link:hover {
  color: #ffffff !important;
}
.cid-ucc8KnsBgw .nav-link:hover:before {
  opacity: 1;
}
.cid-ucc8KnsBgw .nav-link:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: white;
  transition: all 0.3s;
  opacity: 0;
}
.cid-ucc8KnsBgw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ucc8KnsBgw .container {
  display: flex;
  margin: auto;
}
.cid-ucc8KnsBgw .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ucc8KnsBgw .nav-item:focus,
.cid-ucc8KnsBgw .nav-link:focus {
  outline: none;
}
.cid-ucc8KnsBgw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ucc8KnsBgw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ucc8KnsBgw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ucc8KnsBgw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ucc8KnsBgw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ucc8KnsBgw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ucc8KnsBgw .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 2px solid #000000;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #d90a2c;
}
.cid-ucc8KnsBgw .navbar.opened {
  transition: all 0.3s;
}
.cid-ucc8KnsBgw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ucc8KnsBgw .navbar .navbar-logo img {
  width: auto;
}
.cid-ucc8KnsBgw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ucc8KnsBgw .navbar.collapsed {
  justify-content: center;
}
.cid-ucc8KnsBgw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ucc8KnsBgw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ucc8KnsBgw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.2rem);
  }
}
.cid-ucc8KnsBgw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ucc8KnsBgw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ucc8KnsBgw .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-ucc8KnsBgw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ucc8KnsBgw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ucc8KnsBgw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ucc8KnsBgw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ucc8KnsBgw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ucc8KnsBgw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ucc8KnsBgw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ucc8KnsBgw .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-ucc8KnsBgw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ucc8KnsBgw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ucc8KnsBgw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ucc8KnsBgw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ucc8KnsBgw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ucc8KnsBgw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ucc8KnsBgw .navbar.navbar-short {
  min-height: 60px;
}
.cid-ucc8KnsBgw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ucc8KnsBgw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ucc8KnsBgw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ucc8KnsBgw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ucc8KnsBgw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ucc8KnsBgw .dropdown-item.active,
.cid-ucc8KnsBgw .dropdown-item:active {
  background-color: transparent;
}
.cid-ucc8KnsBgw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ucc8KnsBgw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ucc8KnsBgw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ucc8KnsBgw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d90a2c;
}
.cid-ucc8KnsBgw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ucc8KnsBgw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ucc8KnsBgw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ucc8KnsBgw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ucc8KnsBgw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: absolute;
  top: 2rem;
  right: 1rem;
  z-index: 5;
  align-self: center;
}
.cid-ucc8KnsBgw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ucc8KnsBgw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ucc8KnsBgw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucc8KnsBgw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucc8KnsBgw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ucc8KnsBgw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucc8KnsBgw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ucc8KnsBgw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ucc8KnsBgw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucc8KnsBgw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ucc8KnsBgw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ucc8KnsBgw .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ucc8KnsBgw .navbar {
    height: 70px;
  }
  .cid-ucc8KnsBgw .navbar.opened {
    height: auto;
  }
  .cid-ucc8KnsBgw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 992px) {
  .cid-ucc8KnsBgw .icons-menu {
    padding-right: 0;
  }
  .cid-ucc8KnsBgw .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.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: #d90a2c;
}
.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: #4479d9;
}
.cid-ubVtnr2IeO .svg-top .st0 {
  fill: #d90a2c;
}
@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-color: #d90a2c;
}
.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: #ffffff;
}
.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-ucc8KnsBgw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ucc8KnsBgw nav.navbar {
  position: fixed;
}
.cid-ucc8KnsBgw .container,
.cid-ucc8KnsBgw .container-fluid {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ucc8KnsBgw .container,
  .cid-ucc8KnsBgw .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-ucc8KnsBgw .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-ucc8KnsBgw .dropdown-menu {
  padding: 1rem 0;
  border-radius: 0px;
  background: #ffffff !important;
}
.cid-ucc8KnsBgw .dropdown-item:hover,
.cid-ucc8KnsBgw .dropdown-item:focus {
  color: #4479d9 !important;
}
.cid-ucc8KnsBgw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ucc8KnsBgw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ucc8KnsBgw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ucc8KnsBgw .nav-link {
  position: relative;
}
.cid-ucc8KnsBgw .nav-link:hover {
  color: #ffffff !important;
}
.cid-ucc8KnsBgw .nav-link:hover:before {
  opacity: 1;
}
.cid-ucc8KnsBgw .nav-link:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: white;
  transition: all 0.3s;
  opacity: 0;
}
.cid-ucc8KnsBgw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ucc8KnsBgw .container {
  display: flex;
  margin: auto;
}
.cid-ucc8KnsBgw .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ucc8KnsBgw .nav-item:focus,
.cid-ucc8KnsBgw .nav-link:focus {
  outline: none;
}
.cid-ucc8KnsBgw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ucc8KnsBgw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ucc8KnsBgw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ucc8KnsBgw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ucc8KnsBgw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ucc8KnsBgw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ucc8KnsBgw .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 2px solid #000000;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #d90a2c;
}
.cid-ucc8KnsBgw .navbar.opened {
  transition: all 0.3s;
}
.cid-ucc8KnsBgw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ucc8KnsBgw .navbar .navbar-logo img {
  width: auto;
}
.cid-ucc8KnsBgw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ucc8KnsBgw .navbar.collapsed {
  justify-content: center;
}
.cid-ucc8KnsBgw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ucc8KnsBgw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ucc8KnsBgw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.2rem);
  }
}
.cid-ucc8KnsBgw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ucc8KnsBgw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ucc8KnsBgw .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-ucc8KnsBgw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ucc8KnsBgw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ucc8KnsBgw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ucc8KnsBgw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ucc8KnsBgw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ucc8KnsBgw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ucc8KnsBgw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ucc8KnsBgw .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-ucc8KnsBgw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ucc8KnsBgw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ucc8KnsBgw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ucc8KnsBgw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ucc8KnsBgw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ucc8KnsBgw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ucc8KnsBgw .navbar.navbar-short {
  min-height: 60px;
}
.cid-ucc8KnsBgw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ucc8KnsBgw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ucc8KnsBgw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ucc8KnsBgw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ucc8KnsBgw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ucc8KnsBgw .dropdown-item.active,
.cid-ucc8KnsBgw .dropdown-item:active {
  background-color: transparent;
}
.cid-ucc8KnsBgw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ucc8KnsBgw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ucc8KnsBgw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ucc8KnsBgw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d90a2c;
}
.cid-ucc8KnsBgw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ucc8KnsBgw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ucc8KnsBgw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ucc8KnsBgw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ucc8KnsBgw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: absolute;
  top: 2rem;
  right: 1rem;
  z-index: 5;
  align-self: center;
}
.cid-ucc8KnsBgw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ucc8KnsBgw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ucc8KnsBgw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucc8KnsBgw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucc8KnsBgw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ucc8KnsBgw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucc8KnsBgw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ucc8KnsBgw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ucc8KnsBgw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucc8KnsBgw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ucc8KnsBgw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ucc8KnsBgw .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ucc8KnsBgw .navbar {
    height: 70px;
  }
  .cid-ucc8KnsBgw .navbar.opened {
    height: auto;
  }
  .cid-ucc8KnsBgw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 992px) {
  .cid-ucc8KnsBgw .icons-menu {
    padding-right: 0;
  }
  .cid-ucc8KnsBgw .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-ucc8KnsBgw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ucc8KnsBgw nav.navbar {
  position: fixed;
}
.cid-ucc8KnsBgw .container,
.cid-ucc8KnsBgw .container-fluid {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ucc8KnsBgw .container,
  .cid-ucc8KnsBgw .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-ucc8KnsBgw .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-ucc8KnsBgw .dropdown-menu {
  padding: 1rem 0;
  border-radius: 0px;
  background: #ffffff !important;
}
.cid-ucc8KnsBgw .dropdown-item:hover,
.cid-ucc8KnsBgw .dropdown-item:focus {
  color: #4479d9 !important;
}
.cid-ucc8KnsBgw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ucc8KnsBgw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ucc8KnsBgw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ucc8KnsBgw .nav-link {
  position: relative;
}
.cid-ucc8KnsBgw .nav-link:hover {
  color: #ffffff !important;
}
.cid-ucc8KnsBgw .nav-link:hover:before {
  opacity: 1;
}
.cid-ucc8KnsBgw .nav-link:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: white;
  transition: all 0.3s;
  opacity: 0;
}
.cid-ucc8KnsBgw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ucc8KnsBgw .container {
  display: flex;
  margin: auto;
}
.cid-ucc8KnsBgw .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ucc8KnsBgw .nav-item:focus,
.cid-ucc8KnsBgw .nav-link:focus {
  outline: none;
}
.cid-ucc8KnsBgw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ucc8KnsBgw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ucc8KnsBgw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ucc8KnsBgw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ucc8KnsBgw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ucc8KnsBgw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ucc8KnsBgw .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 2px solid #000000;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #d90a2c;
}
.cid-ucc8KnsBgw .navbar.opened {
  transition: all 0.3s;
}
.cid-ucc8KnsBgw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ucc8KnsBgw .navbar .navbar-logo img {
  width: auto;
}
.cid-ucc8KnsBgw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ucc8KnsBgw .navbar.collapsed {
  justify-content: center;
}
.cid-ucc8KnsBgw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ucc8KnsBgw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ucc8KnsBgw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.2rem);
  }
}
.cid-ucc8KnsBgw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ucc8KnsBgw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ucc8KnsBgw .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-ucc8KnsBgw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ucc8KnsBgw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ucc8KnsBgw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ucc8KnsBgw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ucc8KnsBgw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ucc8KnsBgw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ucc8KnsBgw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ucc8KnsBgw .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-ucc8KnsBgw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ucc8KnsBgw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ucc8KnsBgw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ucc8KnsBgw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ucc8KnsBgw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ucc8KnsBgw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ucc8KnsBgw .navbar.navbar-short {
  min-height: 60px;
}
.cid-ucc8KnsBgw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ucc8KnsBgw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ucc8KnsBgw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ucc8KnsBgw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ucc8KnsBgw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ucc8KnsBgw .dropdown-item.active,
.cid-ucc8KnsBgw .dropdown-item:active {
  background-color: transparent;
}
.cid-ucc8KnsBgw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ucc8KnsBgw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ucc8KnsBgw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ucc8KnsBgw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d90a2c;
}
.cid-ucc8KnsBgw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ucc8KnsBgw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ucc8KnsBgw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ucc8KnsBgw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ucc8KnsBgw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: absolute;
  top: 2rem;
  right: 1rem;
  z-index: 5;
  align-self: center;
}
.cid-ucc8KnsBgw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ucc8KnsBgw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ucc8KnsBgw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucc8KnsBgw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucc8KnsBgw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ucc8KnsBgw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucc8KnsBgw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ucc8KnsBgw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ucc8KnsBgw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucc8KnsBgw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ucc8KnsBgw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ucc8KnsBgw .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ucc8KnsBgw .navbar {
    height: 70px;
  }
  .cid-ucc8KnsBgw .navbar.opened {
    height: auto;
  }
  .cid-ucc8KnsBgw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 992px) {
  .cid-ucc8KnsBgw .icons-menu {
    padding-right: 0;
  }
  .cid-ucc8KnsBgw .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-ucaJn2v5dz {
  padding-top: 10rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/dots.svg");
  background-repeat: repeat;
  background-size: 30px 30px;
}
@media (max-width: 1000px) {
  .cid-ucaJn2v5dz {
    padding-top: 5rem;
    padding-bottom: 1.5rem;
  }
}
@media (max-width: 768px) {
  .cid-ucaJn2v5dz {
    padding-top: 3rem;
    padding-bottom: 0.9rem;
  }
}
.cid-ucaJn2v5dz .f-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-ucaJn2v5dz .f-row {
    flex-direction: row;
  }
}
.cid-ucaJn2v5dz .f-item {
  flex: 1 1 100%;
}
@media (min-width: 992px) {
  .cid-ucaJn2v5dz .f-item {
    flex: 1 1 50%;
  }
}
.cid-ucaJn2v5dz .image-wrapper {
  height: 100%;
}
@media (min-width: 992px) {
  .cid-ucaJn2v5dz .image-wrapper {
    min-height: 650px;
  }
}
.cid-ucaJn2v5dz .image-wrapper img {
  min-height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-ucaJn2v5dz .text-wrapper {
  width: 100%;
  background: #d90a2c;
  padding: 1rem 2rem;
}
@media (min-width: 992px) {
  .cid-ucaJn2v5dz .text-wrapper {
    padding: 3rem;
    transform: translate(-12%, -5rem);
  }
}
@media (min-width: 1200px) {
  .cid-ucaJn2v5dz .text-wrapper {
    padding: 6rem 3.25rem;
  }
}
.cid-ucaJn2v5dz .mbr-section-title {
  color: #ffffff;
}
.cid-ucaJn2v5dz .mbr-text {
  color: #ffffff;
}
.cid-ucaJn3a0fb {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-ucaJn3a0fb ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-ucaJn3a0fb li {
  position: relative;
}
.cid-ucaJn3a0fb li:nth-last-child(n+2) {
  margin-bottom: 1rem;
}
.cid-ucaJn3a0fb ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #22a5e5;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-ucaJn3a0fb .background {
  padding: 3rem 1rem;
  background-color: #d90a2c;
}
@media (min-width: 992px) {
  .cid-ucaJn3a0fb .background {
    margin-top: 5rem;
  }
}
@media (min-width: 992px) {
  .cid-ucaJn3a0fb .display-1 {
    font-size: 70px;
  }
  .cid-ucaJn3a0fb .display-5 {
    font-size: 29px;
  }
  .cid-ucaJn3a0fb .display-7 {
    font-size: 22px;
  }
}
.cid-ucaJn3a0fb .list {
  color: #ffffff;
}
.cid-ucaJn3a0fb .mbr-section-title {
  color: #820909;
}
.cid-ucaJn3QYhg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d90a2c;
}
.cid-ucaJn3QYhg .mbr-text {
  color: #ffffff;
}
.cid-ucaJn4sA7N {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.cid-ucaJn4sA7N .row {
  justify-content: center;
}
.cid-ucaJn4sA7N .title-container {
  max-width: 720px;
  padding: 0;
  margin-bottom: 80px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 991px) {
  .cid-ucaJn4sA7N .title-container {
    margin-bottom: 64px;
  }
}
@media (max-width: 767px) {
  .cid-ucaJn4sA7N .title-container {
    margin-bottom: 56px;
  }
}
.cid-ucaJn4sA7N .mbr-section-title {
  color: #6148ff;
}
.cid-ucaJn4sA7N .mbr-section-subtitle {
  color: #161616;
  margin-top: 24px;
}
.cid-ucaJn4sA7N .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-ucaJn4sA7N .grid-container {
    grid-column-gap: 48px;
  }
}
@media (max-width: 767px) {
  .cid-ucaJn4sA7N .grid-container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.cid-ucaJn4sA7N .content-container {
  display: flex;
  padding: 0 !important;
}
.cid-ucaJn4sA7N .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-ucaJn4sA7N .text-container {
    margin-bottom: 56px;
    padding: 0;
  }
}
.cid-ucaJn4sA7N .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  flex-grow: 1;
}
.cid-ucaJn4sA7N .text-padding {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0;
}
.cid-ucaJn4sA7N .opinion-stars {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-bottom: 21px;
}
@media (max-width: 767px) {
  .cid-ucaJn4sA7N .opinion-stars {
    margin-bottom: 13px;
  }
}
.cid-ucaJn4sA7N .iconfont-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3px 3px;
}
.cid-ucaJn4sA7N .iconfont-wrapper .mbr-iconfont {
  font-size: 21px;
  color: #3e1fff;
}
.cid-ucaJn4sA7N .card-title {
  width: 100%;
  color: #000000;
  margin-bottom: 1rem;
  margin-top: 8px;
}
.cid-ucaJn4sA7N .mbr-text {
  width: 100%;
  color: #000000;
  opacity: 0.75;
  margin-bottom: 40px !important;
}
@media (max-width: 767px) {
  .cid-ucaJn4sA7N .mbr-text {
    margin-bottom: 24px !important;
  }
}
.cid-ucaJn4sA7N .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-ucaJn4sA7N .image-wrapper {
    width: 48px;
    height: 48px;
  }
}
.cid-ucaJn4sA7N .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-ucaJn4sA7N .name-text {
  color: #161616;
  width: 100%;
  margin-bottom: 0;
}
.cid-ucaJn4sA7N .prof-text {
  max-width: 350px;
  color: #000000;
  opacity: 0.75;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-ucaJn4sA7N .prof-text {
    max-width: 100%;
    width: 100%;
  }
}
.cid-ucaJn4sA7N .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-ucaJn5pDDd {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #d90a2c;
}
.cid-ucaJn5pDDd .mbr-text {
  border-left: 1px solid currentColor;
  padding-left: 1rem;
  color: #ffffff;
}
.cid-ucaJn5pDDd .mbr-section-subtitle {
  color: #c0bcb7;
}
.cid-ucaJn5pDDd .title {
  text-align: right;
}
@media (max-width: 991px) {
  .cid-ucaJn5pDDd .title {
    text-align: left;
  }
}
@media (max-width: 991px) {
  .cid-ucaJn5pDDd .col-12,
  .cid-ucaJn5pDDd .col-md-12 {
    padding: 0;
  }
}
.cid-ucaJn5pDDd .si img {
  width: auto;
}
.cid-ucaJn5pDDd .row,
.cid-ucaJn5pDDd .col-12 {
  flex-direction: row-reverse;
}
.cid-ucaJn5pDDd .mbr-text {
  border-right: 1px solid currentColor;
  padding-right: 1rem;
  border-left: none;
  padding-left: 0;
  text-align: right;
}
.cid-ucaJn5pDDd .title {
  text-align: left;
}
@media (max-width: 991px) {
  .cid-ucaJn5pDDd .col-12 {
    flex-direction: initial;
  }
  .cid-ucaJn5pDDd .title {
    text-align: right;
  }
}
.cid-ucaJn5pDDd .mbr-section-title {
  color: #ffffff;
}
.cid-ucaJn62aHP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ucaJn62aHP .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucaJn62aHP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucaJn62aHP .card-wrapper {
  background: #d90a2c;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-ucaJn62aHP .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ucaJn62aHP .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ucaJn62aHP .card-wrapper {
    padding: 4rem;
  }
}
.cid-ucaJn62aHP .mbr-text,
.cid-ucaJn62aHP .mbr-section-btn {
  color: #ffffff;
}
.cid-ucaJn62aHP .card-title,
.cid-ucaJn62aHP .card-box {
  text-align: left;
  color: #ffffff;
}
.cid-ucaJn6GQzB {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #d90a2c;
}
.cid-ucaJn6GQzB .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucaJn6GQzB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucaJn6GQzB .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-ucaJn6GQzB .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-ucaJn6GQzB .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-ucaJn6GQzB .card-title {
  color: #ffffff;
}
.cid-ucaJn7AuyP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ucaJn7AuyP .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucaJn7AuyP .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-ucaJn7AuyP .container {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-ucaJn7AuyP .image-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ucaJn7AuyP .image-wrapper img {
  height: 460px;
  object-fit: cover;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-ucaJn7AuyP .image-wrapper img {
    height: 300px;
  }
}
.cid-ucaJn7AuyP .card-wrapper {
  margin-top: 15%;
  padding-top: 120px;
  background-color: #d90a2c;
  border-radius: 40px;
}
@media (max-width: 992px) {
  .cid-ucaJn7AuyP .card-wrapper {
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  .cid-ucaJn7AuyP .card-wrapper {
    margin-top: 0;
    padding-top: 20px;
  }
}
.cid-ucaJn7AuyP .card-wrapper .mbr-section-title {
  padding: 0 100px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-ucaJn7AuyP .card-wrapper .mbr-section-title {
    margin-bottom: 20px;
    padding: 0 20px;
  }
}
.cid-ucaJn7AuyP .card-wrapper .mbr-text {
  padding: 0 100px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-ucaJn7AuyP .card-wrapper .mbr-text {
    padding: 0 20px;
  }
}
.cid-ucaJn7AuyP .card-wrapper .icon-wrapper {
  padding: 0 20px 20px;
}
.cid-ucaJn7AuyP .card-wrapper .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  width: 56px;
  background-color: #fffa76;
  color: #fffa76;
  font-size: 20px;
  border-radius: 50%;
}
@media (max-width: 992px) {
  .cid-ucaJn7AuyP .card-wrapper .icon-wrapper {
    display: none;
  }
}
.cid-ucaJn7AuyP .mbr-section-title {
  color: #ffffff;
}
.cid-ucaJn7AuyP .mbr-text {
  color: #ffffff;
}
.cid-ucaJn7AuyP .icon-wrapper {
  text-align: right;
}
.cid-ucaJn7AuyP .mbr-section-title,
.cid-ucaJn7AuyP .icon-wrapper {
  color: #ffffff;
}
.cid-ucaJn8kfa6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ucaJn8kfa6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucaJn8kfa6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucaJn8kfa6 .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-ucaJn8kfa6 .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-ucaJn8kfa6 .container {
    padding: 0 30px;
  }
}
.cid-ucaJn8kfa6 .mbr-section-title {
  margin-bottom: 70px;
  color: #000000;
}
@media (max-width: 992px) {
  .cid-ucaJn8kfa6 .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-ucaJn8kfa6 .video-block .video-wrapper .app-video-wrapper img {
  height: 700px;
  object-fit: cover;
  border-radius: 2em;
}
@media (max-width: 992px) {
  .cid-ucaJn8kfa6 .video-block .video-wrapper .app-video-wrapper img {
    height: 350px;
  }
}
.cid-ucaJn8kfa6 .video-block .video-wrapper .app-video-wrapper::before {
  color: #fff0b0;
  text-shadow: none;
}
.cid-ucaJn8kfa6 .video-block .video-wrapper iframe {
  height: 700px;
  object-fit: cover;
  border-radius: 2em;
}
@media (max-width: 992px) {
  .cid-ucaJn8kfa6 .video-block .video-wrapper iframe {
    height: 350px;
  }
}
.cid-ucaJn90W4I {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d90a2c;
  position: relative;
}
.cid-ucaJn90W4I::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, #fffa76, #d90a2c);
}
.cid-ucaJn90W4I .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucaJn90W4I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucaJn90W4I .container-fluid {
  position: relative;
  z-index: 1;
  padding: 0 60px;
}
@media (max-width: 1440px) {
  .cid-ucaJn90W4I .container-fluid {
    padding: 0 42px;
  }
}
@media (max-width: 992px) {
  .cid-ucaJn90W4I .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-ucaJn90W4I .container {
    padding: 0 16px;
  }
}
.cid-ucaJn90W4I .content-wrapper .mbr-section-title {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-ucaJn90W4I .content-wrapper .mbr-section-title {
    margin-bottom: 48px;
  }
}
.cid-ucaJn90W4I .item {
  margin-bottom: 32px;
}
.cid-ucaJn90W4I .item .item-wrapper .card-box .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-ucaJn90W4I .item .item-wrapper .card-box .title-wrapper .title-wrap {
    margin-bottom: 16px;
  }
}
.cid-ucaJn90W4I .item .item-wrapper .card-box .title-wrapper .title-wrap .mbr-iconfont {
  font-size: 36px;
  color: #f4f4f4;
  margin-right: 12px;
}
.cid-ucaJn90W4I .item .item-wrapper .card-box .title-wrapper .title-wrap .card-title {
  margin-bottom: 0;
}
.cid-ucaJn90W4I .item .item-wrapper .card-box .text-wrap .card-text {
  display: inline-flex;
  width: 80%;
  margin-bottom: 0;
}
.cid-ucaJn90W4I .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ucaJn90W4I .card-title {
  color: #f4f4f4;
}
.cid-ucaJn90W4I .card-text {
  color: #c1c1c1;
}
.cid-ucaJn9Q02b {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-ucaJn9Q02b {
    padding-top: 6px;
    padding-bottom: 6px;
  }
}
.cid-ucaJn9Q02b img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-ucaJn9Q02b H1 {
  color: #132c70;
}
.cid-ucaJn9Q02b .mbr-text,
.cid-ucaJn9Q02b .mbr-section-btn {
  color: #132c70;
}
.cid-ucaJn9Q02b H3 {
  color: #132c70;
}
.cid-ucaJn9Q02b .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-ucaJn9Q02b .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-ucaJn9Q02b .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-ucaJn9Q02b .link:hover {
  color: #4479d9 !important;
}
.cid-ucaJn9Q02b .link:hover .link-ico {
  color: #4479d9 !important;
  padding-left: 10px;
}
.cid-ucaJn9Q02b DIV {
  color: #57468b;
}
.cid-ucaJn9Q02b .text-1 {
  line-height: 1;
}
.cid-ucaJn9Q02b .container-fluid {
  max-width: 1300px;
}
.cid-ucaJn9Q02b .mbr-section-title {
  margin-bottom: 3.5rem;
}
@media (max-width: 767px) {
  .cid-ucaJn9Q02b .container-fluid {
    padding: 0 1rem;
  }
}
@media (min-width: 767px) {
  .cid-ucaJn9Q02b .container-fluid {
    padding: 0 2rem;
  }
}
.cid-ucaJn9Q02b .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucaJn9Q02b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucaJnaD74M {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #d90a2c;
}
.cid-ucaJnaD74M .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucaJnaD74M .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-ucaJnaD74M .container {
    padding: 0 30px;
  }
}
.cid-ucaJnaD74M .row {
  position: relative;
}
.cid-ucaJnaD74M .row img {
  position: absolute;
  top: 6rem;
  right: 0;
  bottom: -5rem;
  width: 40%;
  height: 510px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-ucaJnaD74M .row img {
    top: auto;
    width: 100%;
  }
}
.cid-ucaJnaD74M .text-wrapper {
  padding: 120px 75px 150px;
  background-color: #ffffff;
  position: relative;
}
@media (max-width: 768px) {
  .cid-ucaJnaD74M .text-wrapper {
    padding: 40px 16px;
  }
}
.cid-ucaJnaD74M .text-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-ucaJnaD74M .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ucaJnaD74M .mbr-text {
  color: #212529;
}
.cid-ucaJnaD74M .mbr-link,
.cid-ucaJnaD74M .mbr-iconfont {
  color: #212529;
}
.cid-ucaJnbqgEe {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ucaJnbqgEe .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-ucaJnbqgEe .panel-title {
  display: flex;
  align-items: center;
}
.cid-ucaJnbqgEe .mbr-iconfont {
  padding-right: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 3rem !important;
  color: #d90a2c;
}
.cid-ucaJnbqgEe .panel-body,
.cid-ucaJnbqgEe .card-header {
  padding: 1rem 0;
}
.cid-ucaJnbqgEe .panel-body {
  display: flex;
  justify-content: flex-end;
}
.cid-ucaJnbqgEe .panel-title-edit {
  color: #d90a2c;
  display: flex;
  align-items: center;
}
.cid-ucaJnbqgEe .panel-text {
  max-width: 466px;
  color: #8c8c95;
}
.cid-ucaJnbqgEe .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-ucaJnbqgEe .section-head {
  margin-bottom: 56px;
}
.cid-ucaJnbqgEe .card {
  margin-bottom: 32px;
}
.cid-ucaJnbqgEe H3 {
  color: #820909;
}
@media (max-width: 768px) {
  .cid-ucaJnbqgEe .panel-text {
    width: 100%;
    max-width: initial;
  }
}
@media (max-width: 1000px) {
  .cid-ucaJnbqgEe .panel-text {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-ucaJnciKoL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d90a2c;
}
.cid-ucaJnciKoL .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucaJnciKoL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucaJnciKoL .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-ucaJnciKoL .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ucaJnciKoL .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ucaJnciKoL .card-wrapper {
    padding: 4rem;
  }
}
.cid-ucaJnciKoL .mbr-text,
.cid-ucaJnciKoL .mbr-section-btn {
  color: #000000;
}
.cid-ucaJnciKoL .card-title,
.cid-ucaJnciKoL .card-box {
  text-align: left;
  color: #000000;
}
.cid-ucc30DHSCX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ucc30DHSCX .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucc30DHSCX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucc30DHSCX .container-fluid {
  padding: 0 64px;
}
@media (max-width: 1440px) {
  .cid-ucc30DHSCX .container-fluid {
    padding: 0 36px;
  }
}
@media (max-width: 992px) {
  .cid-ucc30DHSCX .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-ucc30DHSCX .container {
    padding: 0 16px;
  }
}
.cid-ucc30DHSCX .row {
  justify-content: space-between;
}
.cid-ucc30DHSCX .title-wrapper {
  position: sticky;
}
.cid-ucc30DHSCX .title-wrapper .mbr-section-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-ucc30DHSCX .title-wrapper .mbr-section-title {
    margin-bottom: 36px;
  }
}
.cid-ucc30DHSCX .panel-group .card {
  border-bottom: none;
  background-image: linear-gradient(135deg, #00d372, #56acff 34%, #d90a2c 67%, #e26a69) !important;
  border-radius: 2em !important;
  padding: 5px;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-ucc30DHSCX .panel-group .card {
    margin-bottom: 24px;
  }
}
.cid-ucc30DHSCX .panel-group .card .card-wrap {
  border-radius: 1.9em !important;
  background-color: #d90a2c;
  padding: 36px;
}
@media (max-width: 992px) {
  .cid-ucc30DHSCX .panel-group .card .card-wrap {
    padding: 16px;
  }
}
.cid-ucc30DHSCX .panel-group .card .card-wrap .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
}
.cid-ucc30DHSCX .panel-group .card .card-wrap .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-ucc30DHSCX .panel-group .card .card-wrap .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-ucc30DHSCX .panel-group .card .card-wrap .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-ucc30DHSCX .panel-group .card .card-wrap .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  min-width: 54px;
  font-size: 26px;
  color: #080808;
  transition: all 0.3s ease-in-out;
  margin-left: 10px;
  background-image: linear-gradient(135deg, #00d372, #56acff 34%, #d90a2c 67%, #e26a69);
  border-radius: 50%;
}
.cid-ucc30DHSCX .panel-group .card .card-wrap .panel-collapse .panel-body {
  padding-top: 24px;
}
.cid-ucc30DHSCX .panel-group .card .card-wrap .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-ucc30DHSCX .mbr-section-title {
  color: #d90a2c;
}
.cid-ucc30DHSCX .panel-title-edit {
  color: #ffffff;
}
.cid-ucc30DHSCX .panel-text {
  color: #ffffff;
}
.cid-ucaJnd0bOe {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background: #d90a2c;
}
.cid-ucaJnd0bOe .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-ucaJnd0bOe .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: #4479d9;
}
.cid-ucaJnd0bOe .svg-top .st0 {
  fill: #d90a2c;
}
@media (max-width: 992px) {
  .cid-ucaJnd0bOe .svg-top {
    width: 1000px;
  }
}
.cid-ucaJnd0bOe .google-map {
  height: 35rem;
  position: relative;
}
.cid-ucaJnd0bOe .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ucaJnd0bOe .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-ucaJnd0bOe .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ucaJnd0bOe .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-ucaJnd0bOe .mbr-section-title {
  color: #000000;
}
.cid-ucaJnd0bOe .mbr-section-subtitle {
  color: #1a449a;
}
.cid-ucaJndOTVj {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #d90a2c;
}
.cid-ucaJndOTVj .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucaJndOTVj .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-ucaJndOTVj .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ucaJndOTVj .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-ucaJndOTVj a {
  font-weight: 600;
}
.cid-ucaJndOTVj a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-ucaJndOTVj .col-lg-3,
  .cid-ucaJndOTVj .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-ucaJndOTVj .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-ucaJndOTVj .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-ucaJndOTVj h5 {
  margin: 0;
}
.cid-ucaJndOTVj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucaJndOTVj .iconfont-wrapper {
  position: relative;
}
.cid-ucaJndOTVj .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-ucaJndOTVj .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-ucaJndOTVj .sociconfont-wrapper {
  display: flex;
}
.cid-ucaJndOTVj .card-title,
.cid-ucaJndOTVj .iconfont-wrapper {
  color: #ffffff;
}
.cid-ucaJndOTVj .card-text {
  color: #ffffff;
}
.cid-ucaJndOTVj .mbr-section-title {
  color: #000000;
}
.cid-ucaJndOTVj .main-title,
.cid-ucaJndOTVj .iconfont-wrapper {
  text-align: left;
}
.cid-ucaJneG3rp {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-ucaJnFh0jF {
  padding-top: 10rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/dots.svg");
  background-repeat: repeat;
  background-size: 30px 30px;
}
@media (max-width: 1000px) {
  .cid-ucaJnFh0jF {
    padding-top: 5rem;
    padding-bottom: 1.5rem;
  }
}
@media (max-width: 768px) {
  .cid-ucaJnFh0jF {
    padding-top: 3rem;
    padding-bottom: 0.9rem;
  }
}
.cid-ucaJnFh0jF .f-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-ucaJnFh0jF .f-row {
    flex-direction: row;
  }
}
.cid-ucaJnFh0jF .f-item {
  flex: 1 1 100%;
}
@media (min-width: 992px) {
  .cid-ucaJnFh0jF .f-item {
    flex: 1 1 50%;
  }
}
.cid-ucaJnFh0jF .image-wrapper {
  height: 100%;
}
@media (min-width: 992px) {
  .cid-ucaJnFh0jF .image-wrapper {
    min-height: 650px;
  }
}
.cid-ucaJnFh0jF .image-wrapper img {
  min-height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-ucaJnFh0jF .text-wrapper {
  width: 100%;
  background: #d90a2c;
  padding: 1rem 2rem;
}
@media (min-width: 992px) {
  .cid-ucaJnFh0jF .text-wrapper {
    padding: 3rem;
    transform: translate(-12%, -5rem);
  }
}
@media (min-width: 1200px) {
  .cid-ucaJnFh0jF .text-wrapper {
    padding: 6rem 3.25rem;
  }
}
.cid-ucaJnFh0jF .mbr-section-title {
  color: #ffffff;
}
.cid-ucaJnFh0jF .mbr-text {
  color: #fafafa;
}
.cid-ucaJnFSQgi {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-ucaJnFSQgi ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-ucaJnFSQgi li {
  position: relative;
}
.cid-ucaJnFSQgi li:nth-last-child(n+2) {
  margin-bottom: 1rem;
}
.cid-ucaJnFSQgi ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #22a5e5;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-ucaJnFSQgi .background {
  padding: 3rem 1rem;
  background-color: #d90a2c;
}
@media (min-width: 992px) {
  .cid-ucaJnFSQgi .background {
    margin-top: 5rem;
  }
}
@media (min-width: 992px) {
  .cid-ucaJnFSQgi .display-1 {
    font-size: 70px;
  }
  .cid-ucaJnFSQgi .display-5 {
    font-size: 29px;
  }
  .cid-ucaJnFSQgi .display-7 {
    font-size: 22px;
  }
}
.cid-ucaJnFSQgi .list {
  color: #ffffff;
}
.cid-ucaJnFSQgi .mbr-section-title {
  color: #820909;
}
.cid-ucaJnGvCxK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d90a2c;
}
.cid-ucaJnGvCxK .mbr-text {
  color: #ffffff;
}
.cid-ucaJnH6b01 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.cid-ucaJnH6b01 .row {
  justify-content: center;
}
.cid-ucaJnH6b01 .title-container {
  max-width: 720px;
  padding: 0;
  margin-bottom: 80px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 991px) {
  .cid-ucaJnH6b01 .title-container {
    margin-bottom: 64px;
  }
}
@media (max-width: 767px) {
  .cid-ucaJnH6b01 .title-container {
    margin-bottom: 56px;
  }
}
.cid-ucaJnH6b01 .mbr-section-title {
  color: #6148ff;
}
.cid-ucaJnH6b01 .mbr-section-subtitle {
  color: #161616;
  margin-top: 24px;
}
.cid-ucaJnH6b01 .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-ucaJnH6b01 .grid-container {
    grid-column-gap: 48px;
  }
}
@media (max-width: 767px) {
  .cid-ucaJnH6b01 .grid-container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.cid-ucaJnH6b01 .content-container {
  display: flex;
  padding: 0 !important;
}
.cid-ucaJnH6b01 .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-ucaJnH6b01 .text-container {
    margin-bottom: 56px;
    padding: 0;
  }
}
.cid-ucaJnH6b01 .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  flex-grow: 1;
}
.cid-ucaJnH6b01 .text-padding {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0;
}
.cid-ucaJnH6b01 .opinion-stars {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-bottom: 21px;
}
@media (max-width: 767px) {
  .cid-ucaJnH6b01 .opinion-stars {
    margin-bottom: 13px;
  }
}
.cid-ucaJnH6b01 .iconfont-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3px 3px;
}
.cid-ucaJnH6b01 .iconfont-wrapper .mbr-iconfont {
  font-size: 21px;
  color: #3e1fff;
}
.cid-ucaJnH6b01 .card-title {
  width: 100%;
  color: #000000;
  margin-bottom: 1rem;
  margin-top: 8px;
}
.cid-ucaJnH6b01 .mbr-text {
  width: 100%;
  color: #000000;
  opacity: 0.75;
  margin-bottom: 40px !important;
}
@media (max-width: 767px) {
  .cid-ucaJnH6b01 .mbr-text {
    margin-bottom: 24px !important;
  }
}
.cid-ucaJnH6b01 .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-ucaJnH6b01 .image-wrapper {
    width: 48px;
    height: 48px;
  }
}
.cid-ucaJnH6b01 .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-ucaJnH6b01 .name-text {
  color: #161616;
  width: 100%;
  margin-bottom: 0;
}
.cid-ucaJnH6b01 .prof-text {
  max-width: 350px;
  color: #000000;
  opacity: 0.75;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-ucaJnH6b01 .prof-text {
    max-width: 100%;
    width: 100%;
  }
}
.cid-ucaJnH6b01 .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-ucaJnI5rCG {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #d90a2c;
}
.cid-ucaJnI5rCG .mbr-text {
  border-left: 1px solid currentColor;
  padding-left: 1rem;
  color: #ffffff;
}
.cid-ucaJnI5rCG .mbr-section-subtitle {
  color: #c0bcb7;
}
.cid-ucaJnI5rCG .title {
  text-align: right;
}
@media (max-width: 991px) {
  .cid-ucaJnI5rCG .title {
    text-align: left;
  }
}
@media (max-width: 991px) {
  .cid-ucaJnI5rCG .col-12,
  .cid-ucaJnI5rCG .col-md-12 {
    padding: 0;
  }
}
.cid-ucaJnI5rCG .si img {
  width: auto;
}
.cid-ucaJnI5rCG .row,
.cid-ucaJnI5rCG .col-12 {
  flex-direction: row-reverse;
}
.cid-ucaJnI5rCG .mbr-text {
  border-right: 1px solid currentColor;
  padding-right: 1rem;
  border-left: none;
  padding-left: 0;
  text-align: right;
}
.cid-ucaJnI5rCG .title {
  text-align: left;
}
@media (max-width: 991px) {
  .cid-ucaJnI5rCG .col-12 {
    flex-direction: initial;
  }
  .cid-ucaJnI5rCG .title {
    text-align: right;
  }
}
.cid-ucaJnI5rCG .mbr-section-title {
  color: #ffffff;
}
.cid-ucaJnIKubq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ucaJnIKubq .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucaJnIKubq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucaJnIKubq .card-wrapper {
  background: #d90a2c;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-ucaJnIKubq .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ucaJnIKubq .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ucaJnIKubq .card-wrapper {
    padding: 4rem;
  }
}
.cid-ucaJnIKubq .mbr-text,
.cid-ucaJnIKubq .mbr-section-btn {
  color: #ffffff;
}
.cid-ucaJnIKubq .card-title,
.cid-ucaJnIKubq .card-box {
  text-align: left;
  color: #ffffff;
}
.cid-ucaJnJriah {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #d90a2c;
}
.cid-ucaJnJriah .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucaJnJriah .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucaJnJriah .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-ucaJnJriah .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-ucaJnJriah .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-ucaJnJriah .card-title {
  color: #ffffff;
}
.cid-ucaJnKp90M {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ucaJnKp90M .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucaJnKp90M .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-ucaJnKp90M .container {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-ucaJnKp90M .image-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ucaJnKp90M .image-wrapper img {
  height: 460px;
  object-fit: cover;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-ucaJnKp90M .image-wrapper img {
    height: 300px;
  }
}
.cid-ucaJnKp90M .card-wrapper {
  margin-top: 15%;
  padding-top: 120px;
  background-color: #d90a2c;
  border-radius: 40px;
}
@media (max-width: 992px) {
  .cid-ucaJnKp90M .card-wrapper {
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  .cid-ucaJnKp90M .card-wrapper {
    margin-top: 0;
    padding-top: 20px;
  }
}
.cid-ucaJnKp90M .card-wrapper .mbr-section-title {
  padding: 0 100px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-ucaJnKp90M .card-wrapper .mbr-section-title {
    margin-bottom: 20px;
    padding: 0 20px;
  }
}
.cid-ucaJnKp90M .card-wrapper .mbr-text {
  padding: 0 100px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-ucaJnKp90M .card-wrapper .mbr-text {
    padding: 0 20px;
  }
}
.cid-ucaJnKp90M .card-wrapper .icon-wrapper {
  padding: 0 20px 20px;
}
.cid-ucaJnKp90M .card-wrapper .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  width: 56px;
  background-color: #fffa76;
  color: #fffa76;
  font-size: 20px;
  border-radius: 50%;
}
@media (max-width: 992px) {
  .cid-ucaJnKp90M .card-wrapper .icon-wrapper {
    display: none;
  }
}
.cid-ucaJnKp90M .mbr-section-title {
  color: #ffffff;
}
.cid-ucaJnKp90M .mbr-text {
  color: #ffffff;
}
.cid-ucaJnKp90M .icon-wrapper {
  text-align: right;
}
.cid-ucaJnKp90M .mbr-section-title,
.cid-ucaJnKp90M .icon-wrapper {
  color: #ffffff;
}
.cid-ucaJnLaWux {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ucaJnLaWux .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucaJnLaWux .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucaJnLaWux .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-ucaJnLaWux .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-ucaJnLaWux .container {
    padding: 0 30px;
  }
}
.cid-ucaJnLaWux .mbr-section-title {
  margin-bottom: 70px;
  color: #000000;
}
@media (max-width: 992px) {
  .cid-ucaJnLaWux .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-ucaJnLaWux .video-block .video-wrapper .app-video-wrapper img {
  height: 700px;
  object-fit: cover;
  border-radius: 2em;
}
@media (max-width: 992px) {
  .cid-ucaJnLaWux .video-block .video-wrapper .app-video-wrapper img {
    height: 350px;
  }
}
.cid-ucaJnLaWux .video-block .video-wrapper .app-video-wrapper::before {
  color: #fff0b0;
  text-shadow: none;
}
.cid-ucaJnLaWux .video-block .video-wrapper iframe {
  height: 700px;
  object-fit: cover;
  border-radius: 2em;
}
@media (max-width: 992px) {
  .cid-ucaJnLaWux .video-block .video-wrapper iframe {
    height: 350px;
  }
}
.cid-ucaJnLR1Sq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d90a2c;
  position: relative;
}
.cid-ucaJnLR1Sq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, #fffa76, #d90a2c);
}
.cid-ucaJnLR1Sq .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucaJnLR1Sq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucaJnLR1Sq .container-fluid {
  position: relative;
  z-index: 1;
  padding: 0 60px;
}
@media (max-width: 1440px) {
  .cid-ucaJnLR1Sq .container-fluid {
    padding: 0 42px;
  }
}
@media (max-width: 992px) {
  .cid-ucaJnLR1Sq .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-ucaJnLR1Sq .container {
    padding: 0 16px;
  }
}
.cid-ucaJnLR1Sq .content-wrapper .mbr-section-title {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-ucaJnLR1Sq .content-wrapper .mbr-section-title {
    margin-bottom: 48px;
  }
}
.cid-ucaJnLR1Sq .item {
  margin-bottom: 32px;
}
.cid-ucaJnLR1Sq .item .item-wrapper .card-box .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-ucaJnLR1Sq .item .item-wrapper .card-box .title-wrapper .title-wrap {
    margin-bottom: 16px;
  }
}
.cid-ucaJnLR1Sq .item .item-wrapper .card-box .title-wrapper .title-wrap .mbr-iconfont {
  font-size: 36px;
  color: #f4f4f4;
  margin-right: 12px;
}
.cid-ucaJnLR1Sq .item .item-wrapper .card-box .title-wrapper .title-wrap .card-title {
  margin-bottom: 0;
}
.cid-ucaJnLR1Sq .item .item-wrapper .card-box .text-wrap .card-text {
  display: inline-flex;
  width: 80%;
  margin-bottom: 0;
}
.cid-ucaJnLR1Sq .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ucaJnLR1Sq .card-title {
  color: #f4f4f4;
}
.cid-ucaJnLR1Sq .card-text {
  color: #c1c1c1;
}
.cid-ucaJnMKCgj {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-ucaJnMKCgj {
    padding-top: 6px;
    padding-bottom: 6px;
  }
}
.cid-ucaJnMKCgj img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-ucaJnMKCgj H1 {
  color: #132c70;
}
.cid-ucaJnMKCgj .mbr-text,
.cid-ucaJnMKCgj .mbr-section-btn {
  color: #132c70;
}
.cid-ucaJnMKCgj H3 {
  color: #132c70;
}
.cid-ucaJnMKCgj .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-ucaJnMKCgj .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-ucaJnMKCgj .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-ucaJnMKCgj .link:hover {
  color: #4479d9 !important;
}
.cid-ucaJnMKCgj .link:hover .link-ico {
  color: #4479d9 !important;
  padding-left: 10px;
}
.cid-ucaJnMKCgj DIV {
  color: #57468b;
}
.cid-ucaJnMKCgj .text-1 {
  line-height: 1;
}
.cid-ucaJnMKCgj .container-fluid {
  max-width: 1300px;
}
.cid-ucaJnMKCgj .mbr-section-title {
  margin-bottom: 3.5rem;
}
@media (max-width: 767px) {
  .cid-ucaJnMKCgj .container-fluid {
    padding: 0 1rem;
  }
}
@media (min-width: 767px) {
  .cid-ucaJnMKCgj .container-fluid {
    padding: 0 2rem;
  }
}
.cid-ucaJnMKCgj .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucaJnMKCgj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucaJnNz9Sm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #d90a2c;
}
.cid-ucaJnNz9Sm .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucaJnNz9Sm .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-ucaJnNz9Sm .container {
    padding: 0 30px;
  }
}
.cid-ucaJnNz9Sm .row {
  position: relative;
}
.cid-ucaJnNz9Sm .row img {
  position: absolute;
  top: 6rem;
  right: 0;
  bottom: -5rem;
  width: 40%;
  height: 510px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-ucaJnNz9Sm .row img {
    top: auto;
    width: 100%;
  }
}
.cid-ucaJnNz9Sm .text-wrapper {
  padding: 120px 75px 150px;
  background-color: #ffffff;
  position: relative;
}
@media (max-width: 768px) {
  .cid-ucaJnNz9Sm .text-wrapper {
    padding: 40px 16px;
  }
}
.cid-ucaJnNz9Sm .text-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-ucaJnNz9Sm .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ucaJnNz9Sm .mbr-text {
  color: #212529;
}
.cid-ucaJnNz9Sm .mbr-link,
.cid-ucaJnNz9Sm .mbr-iconfont {
  color: #212529;
}
.cid-ucaJnOfUfy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ucaJnOfUfy .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-ucaJnOfUfy .panel-title {
  display: flex;
  align-items: center;
}
.cid-ucaJnOfUfy .mbr-iconfont {
  padding-right: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 3rem !important;
  color: #d90a2c;
}
.cid-ucaJnOfUfy .panel-body,
.cid-ucaJnOfUfy .card-header {
  padding: 1rem 0;
}
.cid-ucaJnOfUfy .panel-body {
  display: flex;
  justify-content: flex-end;
}
.cid-ucaJnOfUfy .panel-title-edit {
  color: #d90a2c;
  display: flex;
  align-items: center;
}
.cid-ucaJnOfUfy .panel-text {
  max-width: 466px;
  color: #8c8c95;
}
.cid-ucaJnOfUfy .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-ucaJnOfUfy .section-head {
  margin-bottom: 56px;
}
.cid-ucaJnOfUfy .card {
  margin-bottom: 32px;
}
.cid-ucaJnOfUfy H3 {
  color: #820909;
}
@media (max-width: 768px) {
  .cid-ucaJnOfUfy .panel-text {
    width: 100%;
    max-width: initial;
  }
}
@media (max-width: 1000px) {
  .cid-ucaJnOfUfy .panel-text {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-ucaJnP87LZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d90a2c;
}
.cid-ucaJnP87LZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucaJnP87LZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucaJnP87LZ .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-ucaJnP87LZ .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ucaJnP87LZ .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ucaJnP87LZ .card-wrapper {
    padding: 4rem;
  }
}
.cid-ucaJnP87LZ .mbr-text,
.cid-ucaJnP87LZ .mbr-section-btn {
  color: #000000;
}
.cid-ucaJnP87LZ .card-title,
.cid-ucaJnP87LZ .card-box {
  text-align: left;
  color: #000000;
}
.cid-ucc4dzOIQW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ucc4dzOIQW .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucc4dzOIQW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucc4dzOIQW .container-fluid {
  padding: 0 64px;
}
@media (max-width: 1440px) {
  .cid-ucc4dzOIQW .container-fluid {
    padding: 0 36px;
  }
}
@media (max-width: 992px) {
  .cid-ucc4dzOIQW .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-ucc4dzOIQW .container {
    padding: 0 16px;
  }
}
.cid-ucc4dzOIQW .row {
  justify-content: space-between;
}
.cid-ucc4dzOIQW .title-wrapper {
  position: sticky;
}
.cid-ucc4dzOIQW .title-wrapper .mbr-section-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-ucc4dzOIQW .title-wrapper .mbr-section-title {
    margin-bottom: 36px;
  }
}
.cid-ucc4dzOIQW .panel-group .card {
  border-bottom: none;
  background-image: linear-gradient(135deg, #00d372, #56acff 34%, #d90a2c 67%, #e26a69) !important;
  border-radius: 2em !important;
  padding: 5px;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-ucc4dzOIQW .panel-group .card {
    margin-bottom: 24px;
  }
}
.cid-ucc4dzOIQW .panel-group .card .card-wrap {
  border-radius: 1.9em !important;
  background-color: #d90a2c;
  padding: 36px;
}
@media (max-width: 992px) {
  .cid-ucc4dzOIQW .panel-group .card .card-wrap {
    padding: 16px;
  }
}
.cid-ucc4dzOIQW .panel-group .card .card-wrap .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
}
.cid-ucc4dzOIQW .panel-group .card .card-wrap .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-ucc4dzOIQW .panel-group .card .card-wrap .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-ucc4dzOIQW .panel-group .card .card-wrap .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-ucc4dzOIQW .panel-group .card .card-wrap .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  min-width: 54px;
  font-size: 26px;
  color: #080808;
  transition: all 0.3s ease-in-out;
  margin-left: 10px;
  background-image: linear-gradient(135deg, #00d372, #56acff 34%, #d90a2c 67%, #e26a69);
  border-radius: 50%;
}
.cid-ucc4dzOIQW .panel-group .card .card-wrap .panel-collapse .panel-body {
  padding-top: 24px;
}
.cid-ucc4dzOIQW .panel-group .card .card-wrap .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-ucc4dzOIQW .mbr-section-title {
  color: #d90a2c;
}
.cid-ucc4dzOIQW .panel-title-edit {
  color: #ffffff;
}
.cid-ucc4dzOIQW .panel-text {
  color: #ffffff;
}
.cid-ucaJnPPRIV {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background: #d90a2c;
}
.cid-ucaJnPPRIV .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-ucaJnPPRIV .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: #4479d9;
}
.cid-ucaJnPPRIV .svg-top .st0 {
  fill: #d90a2c;
}
@media (max-width: 992px) {
  .cid-ucaJnPPRIV .svg-top {
    width: 1000px;
  }
}
.cid-ucaJnPPRIV .google-map {
  height: 35rem;
  position: relative;
}
.cid-ucaJnPPRIV .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ucaJnPPRIV .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-ucaJnPPRIV .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ucaJnPPRIV .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-ucaJnPPRIV .mbr-section-title {
  color: #ffffff;
}
.cid-ucaJnPPRIV .mbr-section-subtitle {
  color: #1a449a;
}
.cid-ucaJnQGQ13 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #d90a2c;
}
.cid-ucaJnQGQ13 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucaJnQGQ13 .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-ucaJnQGQ13 .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ucaJnQGQ13 .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-ucaJnQGQ13 a {
  font-weight: 600;
}
.cid-ucaJnQGQ13 a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-ucaJnQGQ13 .col-lg-3,
  .cid-ucaJnQGQ13 .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-ucaJnQGQ13 .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-ucaJnQGQ13 .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-ucaJnQGQ13 h5 {
  margin: 0;
}
.cid-ucaJnQGQ13 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucaJnQGQ13 .iconfont-wrapper {
  position: relative;
}
.cid-ucaJnQGQ13 .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-ucaJnQGQ13 .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-ucaJnQGQ13 .sociconfont-wrapper {
  display: flex;
}
.cid-ucaJnQGQ13 .card-title,
.cid-ucaJnQGQ13 .iconfont-wrapper {
  color: #ffffff;
}
.cid-ucaJnQGQ13 .card-text {
  color: #ffffff;
}
.cid-ucaJnQGQ13 .mbr-section-title {
  color: #000000;
}
.cid-ucaJnQGQ13 .main-title,
.cid-ucaJnQGQ13 .iconfont-wrapper {
  text-align: left;
}
.cid-ucaJnRxoVd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-ucc8KnsBgw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ucc8KnsBgw nav.navbar {
  position: fixed;
}
.cid-ucc8KnsBgw .container,
.cid-ucc8KnsBgw .container-fluid {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ucc8KnsBgw .container,
  .cid-ucc8KnsBgw .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-ucc8KnsBgw .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-ucc8KnsBgw .dropdown-menu {
  padding: 1rem 0;
  border-radius: 0px;
  background: #ffffff !important;
}
.cid-ucc8KnsBgw .dropdown-item:hover,
.cid-ucc8KnsBgw .dropdown-item:focus {
  color: #4479d9 !important;
}
.cid-ucc8KnsBgw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ucc8KnsBgw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ucc8KnsBgw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ucc8KnsBgw .nav-link {
  position: relative;
}
.cid-ucc8KnsBgw .nav-link:hover {
  color: #ffffff !important;
}
.cid-ucc8KnsBgw .nav-link:hover:before {
  opacity: 1;
}
.cid-ucc8KnsBgw .nav-link:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: white;
  transition: all 0.3s;
  opacity: 0;
}
.cid-ucc8KnsBgw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ucc8KnsBgw .container {
  display: flex;
  margin: auto;
}
.cid-ucc8KnsBgw .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ucc8KnsBgw .nav-item:focus,
.cid-ucc8KnsBgw .nav-link:focus {
  outline: none;
}
.cid-ucc8KnsBgw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ucc8KnsBgw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ucc8KnsBgw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ucc8KnsBgw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ucc8KnsBgw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ucc8KnsBgw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ucc8KnsBgw .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 2px solid #000000;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #d90a2c;
}
.cid-ucc8KnsBgw .navbar.opened {
  transition: all 0.3s;
}
.cid-ucc8KnsBgw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ucc8KnsBgw .navbar .navbar-logo img {
  width: auto;
}
.cid-ucc8KnsBgw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ucc8KnsBgw .navbar.collapsed {
  justify-content: center;
}
.cid-ucc8KnsBgw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ucc8KnsBgw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ucc8KnsBgw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.2rem);
  }
}
.cid-ucc8KnsBgw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ucc8KnsBgw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ucc8KnsBgw .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-ucc8KnsBgw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ucc8KnsBgw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ucc8KnsBgw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ucc8KnsBgw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ucc8KnsBgw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ucc8KnsBgw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ucc8KnsBgw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ucc8KnsBgw .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-ucc8KnsBgw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ucc8KnsBgw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ucc8KnsBgw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ucc8KnsBgw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ucc8KnsBgw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ucc8KnsBgw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ucc8KnsBgw .navbar.navbar-short {
  min-height: 60px;
}
.cid-ucc8KnsBgw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ucc8KnsBgw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ucc8KnsBgw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ucc8KnsBgw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ucc8KnsBgw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ucc8KnsBgw .dropdown-item.active,
.cid-ucc8KnsBgw .dropdown-item:active {
  background-color: transparent;
}
.cid-ucc8KnsBgw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ucc8KnsBgw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ucc8KnsBgw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ucc8KnsBgw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d90a2c;
}
.cid-ucc8KnsBgw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ucc8KnsBgw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ucc8KnsBgw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ucc8KnsBgw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ucc8KnsBgw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: absolute;
  top: 2rem;
  right: 1rem;
  z-index: 5;
  align-self: center;
}
.cid-ucc8KnsBgw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ucc8KnsBgw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ucc8KnsBgw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucc8KnsBgw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucc8KnsBgw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ucc8KnsBgw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucc8KnsBgw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ucc8KnsBgw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ucc8KnsBgw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucc8KnsBgw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ucc8KnsBgw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ucc8KnsBgw .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ucc8KnsBgw .navbar {
    height: 70px;
  }
  .cid-ucc8KnsBgw .navbar.opened {
    height: auto;
  }
  .cid-ucc8KnsBgw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 992px) {
  .cid-ucc8KnsBgw .icons-menu {
    padding-right: 0;
  }
  .cid-ucc8KnsBgw .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-ucaJoma6gX {
  padding-top: 10rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/dots.svg");
  background-repeat: repeat;
  background-size: 30px 30px;
}
@media (max-width: 1000px) {
  .cid-ucaJoma6gX {
    padding-top: 5rem;
    padding-bottom: 1.5rem;
  }
}
@media (max-width: 768px) {
  .cid-ucaJoma6gX {
    padding-top: 3rem;
    padding-bottom: 0.9rem;
  }
}
.cid-ucaJoma6gX .f-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-ucaJoma6gX .f-row {
    flex-direction: row;
  }
}
.cid-ucaJoma6gX .f-item {
  flex: 1 1 100%;
}
@media (min-width: 992px) {
  .cid-ucaJoma6gX .f-item {
    flex: 1 1 50%;
  }
}
.cid-ucaJoma6gX .image-wrapper {
  height: 100%;
}
@media (min-width: 992px) {
  .cid-ucaJoma6gX .image-wrapper {
    min-height: 650px;
  }
}
.cid-ucaJoma6gX .image-wrapper img {
  min-height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-ucaJoma6gX .text-wrapper {
  width: 100%;
  background: #d90a2c;
  padding: 1rem 2rem;
}
@media (min-width: 992px) {
  .cid-ucaJoma6gX .text-wrapper {
    padding: 3rem;
    transform: translate(-12%, -5rem);
  }
}
@media (min-width: 1200px) {
  .cid-ucaJoma6gX .text-wrapper {
    padding: 6rem 3.25rem;
  }
}
.cid-ucaJoma6gX .mbr-section-title {
  color: #ffffff;
}
.cid-ucaJoma6gX .mbr-text {
  color: #fafafa;
}
.cid-ucaJomVXXK {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-ucaJomVXXK ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-ucaJomVXXK li {
  position: relative;
}
.cid-ucaJomVXXK li:nth-last-child(n+2) {
  margin-bottom: 1rem;
}
.cid-ucaJomVXXK ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #22a5e5;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-ucaJomVXXK .background {
  padding: 3rem 1rem;
  background-color: #d90a2c;
}
@media (min-width: 992px) {
  .cid-ucaJomVXXK .background {
    margin-top: 5rem;
  }
}
@media (min-width: 992px) {
  .cid-ucaJomVXXK .display-1 {
    font-size: 70px;
  }
  .cid-ucaJomVXXK .display-5 {
    font-size: 29px;
  }
  .cid-ucaJomVXXK .display-7 {
    font-size: 22px;
  }
}
.cid-ucaJomVXXK .list {
  color: #fafafa;
}
.cid-ucaJomVXXK .mbr-section-title {
  color: #820909;
}
.cid-ucaJonAIay {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d90a2c;
}
.cid-ucaJonAIay .mbr-text {
  color: #ffffff;
}
.cid-ucaJooeEtI {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.cid-ucaJooeEtI .row {
  justify-content: center;
}
.cid-ucaJooeEtI .title-container {
  max-width: 720px;
  padding: 0;
  margin-bottom: 80px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 991px) {
  .cid-ucaJooeEtI .title-container {
    margin-bottom: 64px;
  }
}
@media (max-width: 767px) {
  .cid-ucaJooeEtI .title-container {
    margin-bottom: 56px;
  }
}
.cid-ucaJooeEtI .mbr-section-title {
  color: #6148ff;
}
.cid-ucaJooeEtI .mbr-section-subtitle {
  color: #161616;
  margin-top: 24px;
}
.cid-ucaJooeEtI .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-ucaJooeEtI .grid-container {
    grid-column-gap: 48px;
  }
}
@media (max-width: 767px) {
  .cid-ucaJooeEtI .grid-container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.cid-ucaJooeEtI .content-container {
  display: flex;
  padding: 0 !important;
}
.cid-ucaJooeEtI .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-ucaJooeEtI .text-container {
    margin-bottom: 56px;
    padding: 0;
  }
}
.cid-ucaJooeEtI .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  flex-grow: 1;
}
.cid-ucaJooeEtI .text-padding {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0;
}
.cid-ucaJooeEtI .opinion-stars {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-bottom: 21px;
}
@media (max-width: 767px) {
  .cid-ucaJooeEtI .opinion-stars {
    margin-bottom: 13px;
  }
}
.cid-ucaJooeEtI .iconfont-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3px 3px;
}
.cid-ucaJooeEtI .iconfont-wrapper .mbr-iconfont {
  font-size: 21px;
  color: #3e1fff;
}
.cid-ucaJooeEtI .card-title {
  width: 100%;
  color: #000000;
  margin-bottom: 1rem;
  margin-top: 8px;
}
.cid-ucaJooeEtI .mbr-text {
  width: 100%;
  color: #000000;
  opacity: 0.75;
  margin-bottom: 40px !important;
}
@media (max-width: 767px) {
  .cid-ucaJooeEtI .mbr-text {
    margin-bottom: 24px !important;
  }
}
.cid-ucaJooeEtI .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-ucaJooeEtI .image-wrapper {
    width: 48px;
    height: 48px;
  }
}
.cid-ucaJooeEtI .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-ucaJooeEtI .name-text {
  color: #161616;
  width: 100%;
  margin-bottom: 0;
}
.cid-ucaJooeEtI .prof-text {
  max-width: 350px;
  color: #000000;
  opacity: 0.75;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-ucaJooeEtI .prof-text {
    max-width: 100%;
    width: 100%;
  }
}
.cid-ucaJooeEtI .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-ucaJop7xW1 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #d90a2c;
}
.cid-ucaJop7xW1 .mbr-text {
  border-left: 1px solid currentColor;
  padding-left: 1rem;
  color: #ffffff;
}
.cid-ucaJop7xW1 .mbr-section-subtitle {
  color: #c0bcb7;
}
.cid-ucaJop7xW1 .title {
  text-align: right;
}
@media (max-width: 991px) {
  .cid-ucaJop7xW1 .title {
    text-align: left;
  }
}
@media (max-width: 991px) {
  .cid-ucaJop7xW1 .col-12,
  .cid-ucaJop7xW1 .col-md-12 {
    padding: 0;
  }
}
.cid-ucaJop7xW1 .si img {
  width: auto;
}
.cid-ucaJop7xW1 .row,
.cid-ucaJop7xW1 .col-12 {
  flex-direction: row-reverse;
}
.cid-ucaJop7xW1 .mbr-text {
  border-right: 1px solid currentColor;
  padding-right: 1rem;
  border-left: none;
  padding-left: 0;
  text-align: right;
}
.cid-ucaJop7xW1 .title {
  text-align: left;
}
@media (max-width: 991px) {
  .cid-ucaJop7xW1 .col-12 {
    flex-direction: initial;
  }
  .cid-ucaJop7xW1 .title {
    text-align: right;
  }
}
.cid-ucaJop7xW1 .mbr-section-title {
  color: #ffffff;
}
.cid-ucaJopQOoA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ucaJopQOoA .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucaJopQOoA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucaJopQOoA .card-wrapper {
  background: #d90a2c;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-ucaJopQOoA .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ucaJopQOoA .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ucaJopQOoA .card-wrapper {
    padding: 4rem;
  }
}
.cid-ucaJopQOoA .mbr-text,
.cid-ucaJopQOoA .mbr-section-btn {
  color: #ffffff;
}
.cid-ucaJopQOoA .card-title,
.cid-ucaJopQOoA .card-box {
  text-align: left;
  color: #ffffff;
}
.cid-ucaJoqxPma {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #d90a2c;
}
.cid-ucaJoqxPma .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucaJoqxPma .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucaJoqxPma .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-ucaJoqxPma .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-ucaJoqxPma .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-ucaJoqxPma .card-title {
  color: #ffffff;
}
.cid-ucaJortUoE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ucaJortUoE .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucaJortUoE .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-ucaJortUoE .container {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-ucaJortUoE .image-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ucaJortUoE .image-wrapper img {
  height: 460px;
  object-fit: cover;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-ucaJortUoE .image-wrapper img {
    height: 300px;
  }
}
.cid-ucaJortUoE .card-wrapper {
  margin-top: 15%;
  padding-top: 120px;
  background-color: #d90a2c;
  border-radius: 40px;
}
@media (max-width: 992px) {
  .cid-ucaJortUoE .card-wrapper {
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  .cid-ucaJortUoE .card-wrapper {
    margin-top: 0;
    padding-top: 20px;
  }
}
.cid-ucaJortUoE .card-wrapper .mbr-section-title {
  padding: 0 100px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-ucaJortUoE .card-wrapper .mbr-section-title {
    margin-bottom: 20px;
    padding: 0 20px;
  }
}
.cid-ucaJortUoE .card-wrapper .mbr-text {
  padding: 0 100px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-ucaJortUoE .card-wrapper .mbr-text {
    padding: 0 20px;
  }
}
.cid-ucaJortUoE .card-wrapper .icon-wrapper {
  padding: 0 20px 20px;
}
.cid-ucaJortUoE .card-wrapper .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  width: 56px;
  background-color: #fffa76;
  color: #fffa76;
  font-size: 20px;
  border-radius: 50%;
}
@media (max-width: 992px) {
  .cid-ucaJortUoE .card-wrapper .icon-wrapper {
    display: none;
  }
}
.cid-ucaJortUoE .mbr-section-title {
  color: #ffffff;
}
.cid-ucaJortUoE .mbr-text {
  color: #ffffff;
}
.cid-ucaJortUoE .icon-wrapper {
  text-align: right;
}
.cid-ucaJortUoE .mbr-section-title,
.cid-ucaJortUoE .icon-wrapper {
  color: #ffffff;
}
.cid-ucaJosgWVq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ucaJosgWVq .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucaJosgWVq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucaJosgWVq .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-ucaJosgWVq .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-ucaJosgWVq .container {
    padding: 0 30px;
  }
}
.cid-ucaJosgWVq .mbr-section-title {
  margin-bottom: 70px;
  color: #000000;
}
@media (max-width: 992px) {
  .cid-ucaJosgWVq .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-ucaJosgWVq .video-block .video-wrapper .app-video-wrapper img {
  height: 700px;
  object-fit: cover;
  border-radius: 2em;
}
@media (max-width: 992px) {
  .cid-ucaJosgWVq .video-block .video-wrapper .app-video-wrapper img {
    height: 350px;
  }
}
.cid-ucaJosgWVq .video-block .video-wrapper .app-video-wrapper::before {
  color: #fff0b0;
  text-shadow: none;
}
.cid-ucaJosgWVq .video-block .video-wrapper iframe {
  height: 700px;
  object-fit: cover;
  border-radius: 2em;
}
@media (max-width: 992px) {
  .cid-ucaJosgWVq .video-block .video-wrapper iframe {
    height: 350px;
  }
}
.cid-ucaJosZ9kC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d90a2c;
  position: relative;
}
.cid-ucaJosZ9kC::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, #fffa76, #d90a2c);
}
.cid-ucaJosZ9kC .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucaJosZ9kC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucaJosZ9kC .container-fluid {
  position: relative;
  z-index: 1;
  padding: 0 60px;
}
@media (max-width: 1440px) {
  .cid-ucaJosZ9kC .container-fluid {
    padding: 0 42px;
  }
}
@media (max-width: 992px) {
  .cid-ucaJosZ9kC .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-ucaJosZ9kC .container {
    padding: 0 16px;
  }
}
.cid-ucaJosZ9kC .content-wrapper .mbr-section-title {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-ucaJosZ9kC .content-wrapper .mbr-section-title {
    margin-bottom: 48px;
  }
}
.cid-ucaJosZ9kC .item {
  margin-bottom: 32px;
}
.cid-ucaJosZ9kC .item .item-wrapper .card-box .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-ucaJosZ9kC .item .item-wrapper .card-box .title-wrapper .title-wrap {
    margin-bottom: 16px;
  }
}
.cid-ucaJosZ9kC .item .item-wrapper .card-box .title-wrapper .title-wrap .mbr-iconfont {
  font-size: 36px;
  color: #f4f4f4;
  margin-right: 12px;
}
.cid-ucaJosZ9kC .item .item-wrapper .card-box .title-wrapper .title-wrap .card-title {
  margin-bottom: 0;
}
.cid-ucaJosZ9kC .item .item-wrapper .card-box .text-wrap .card-text {
  display: inline-flex;
  width: 80%;
  margin-bottom: 0;
}
.cid-ucaJosZ9kC .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ucaJosZ9kC .card-title {
  color: #f4f4f4;
}
.cid-ucaJosZ9kC .card-text {
  color: #c1c1c1;
}
.cid-ucaJotUxc3 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-ucaJotUxc3 {
    padding-top: 6px;
    padding-bottom: 6px;
  }
}
.cid-ucaJotUxc3 img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-ucaJotUxc3 H1 {
  color: #132c70;
}
.cid-ucaJotUxc3 .mbr-text,
.cid-ucaJotUxc3 .mbr-section-btn {
  color: #132c70;
}
.cid-ucaJotUxc3 H3 {
  color: #132c70;
}
.cid-ucaJotUxc3 .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-ucaJotUxc3 .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-ucaJotUxc3 .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-ucaJotUxc3 .link:hover {
  color: #4479d9 !important;
}
.cid-ucaJotUxc3 .link:hover .link-ico {
  color: #4479d9 !important;
  padding-left: 10px;
}
.cid-ucaJotUxc3 DIV {
  color: #57468b;
}
.cid-ucaJotUxc3 .text-1 {
  line-height: 1;
}
.cid-ucaJotUxc3 .container-fluid {
  max-width: 1300px;
}
.cid-ucaJotUxc3 .mbr-section-title {
  margin-bottom: 3.5rem;
}
@media (max-width: 767px) {
  .cid-ucaJotUxc3 .container-fluid {
    padding: 0 1rem;
  }
}
@media (min-width: 767px) {
  .cid-ucaJotUxc3 .container-fluid {
    padding: 0 2rem;
  }
}
.cid-ucaJotUxc3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucaJotUxc3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucaJotUxc3 .mbr-section-subtitle,
.cid-ucaJotUxc3 .media-content {
  color: #000000;
}
.cid-ucaJotUxc3 .mbr-text,
.cid-ucaJotUxc3 .media-content {
  color: #000000;
}
.cid-ucaJouFi2G {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #d90a2c;
}
.cid-ucaJouFi2G .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucaJouFi2G .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-ucaJouFi2G .container {
    padding: 0 30px;
  }
}
.cid-ucaJouFi2G .row {
  position: relative;
}
.cid-ucaJouFi2G .row img {
  position: absolute;
  top: 6rem;
  right: 0;
  bottom: -5rem;
  width: 40%;
  height: 510px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-ucaJouFi2G .row img {
    top: auto;
    width: 100%;
  }
}
.cid-ucaJouFi2G .text-wrapper {
  padding: 120px 75px 150px;
  background-color: #ffffff;
  position: relative;
}
@media (max-width: 768px) {
  .cid-ucaJouFi2G .text-wrapper {
    padding: 40px 16px;
  }
}
.cid-ucaJouFi2G .text-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-ucaJouFi2G .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ucaJouFi2G .mbr-text {
  color: #212529;
}
.cid-ucaJouFi2G .mbr-link,
.cid-ucaJouFi2G .mbr-iconfont {
  color: #212529;
}
.cid-ucaJovoUxN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ucaJovoUxN .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-ucaJovoUxN .panel-title {
  display: flex;
  align-items: center;
}
.cid-ucaJovoUxN .mbr-iconfont {
  padding-right: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 3rem !important;
  color: #d90a2c;
}
.cid-ucaJovoUxN .panel-body,
.cid-ucaJovoUxN .card-header {
  padding: 1rem 0;
}
.cid-ucaJovoUxN .panel-body {
  display: flex;
  justify-content: flex-end;
}
.cid-ucaJovoUxN .panel-title-edit {
  color: #d90a2c;
  display: flex;
  align-items: center;
}
.cid-ucaJovoUxN .panel-text {
  max-width: 466px;
  color: #8c8c95;
}
.cid-ucaJovoUxN .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-ucaJovoUxN .section-head {
  margin-bottom: 56px;
}
.cid-ucaJovoUxN .card {
  margin-bottom: 32px;
}
.cid-ucaJovoUxN H3 {
  color: #820909;
}
@media (max-width: 768px) {
  .cid-ucaJovoUxN .panel-text {
    width: 100%;
    max-width: initial;
  }
}
@media (max-width: 1000px) {
  .cid-ucaJovoUxN .panel-text {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-ucaJowwXrK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d90a2c;
}
.cid-ucaJowwXrK .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucaJowwXrK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucaJowwXrK .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-ucaJowwXrK .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ucaJowwXrK .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ucaJowwXrK .card-wrapper {
    padding: 4rem;
  }
}
.cid-ucaJowwXrK .mbr-text,
.cid-ucaJowwXrK .mbr-section-btn {
  color: #000000;
}
.cid-ucaJowwXrK .card-title,
.cid-ucaJowwXrK .card-box {
  text-align: left;
  color: #000000;
}
.cid-ucc4LYphC2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ucc4LYphC2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucc4LYphC2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucc4LYphC2 .container-fluid {
  padding: 0 64px;
}
@media (max-width: 1440px) {
  .cid-ucc4LYphC2 .container-fluid {
    padding: 0 36px;
  }
}
@media (max-width: 992px) {
  .cid-ucc4LYphC2 .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-ucc4LYphC2 .container {
    padding: 0 16px;
  }
}
.cid-ucc4LYphC2 .row {
  justify-content: space-between;
}
.cid-ucc4LYphC2 .title-wrapper {
  position: sticky;
}
.cid-ucc4LYphC2 .title-wrapper .mbr-section-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-ucc4LYphC2 .title-wrapper .mbr-section-title {
    margin-bottom: 36px;
  }
}
.cid-ucc4LYphC2 .panel-group .card {
  border-bottom: none;
  background-image: linear-gradient(135deg, #00d372, #56acff 34%, #d90a2c 67%, #e26a69) !important;
  border-radius: 2em !important;
  padding: 5px;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-ucc4LYphC2 .panel-group .card {
    margin-bottom: 24px;
  }
}
.cid-ucc4LYphC2 .panel-group .card .card-wrap {
  border-radius: 1.9em !important;
  background-color: #d90a2c;
  padding: 36px;
}
@media (max-width: 992px) {
  .cid-ucc4LYphC2 .panel-group .card .card-wrap {
    padding: 16px;
  }
}
.cid-ucc4LYphC2 .panel-group .card .card-wrap .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
}
.cid-ucc4LYphC2 .panel-group .card .card-wrap .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-ucc4LYphC2 .panel-group .card .card-wrap .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-ucc4LYphC2 .panel-group .card .card-wrap .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-ucc4LYphC2 .panel-group .card .card-wrap .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  min-width: 54px;
  font-size: 26px;
  color: #080808;
  transition: all 0.3s ease-in-out;
  margin-left: 10px;
  background-image: linear-gradient(135deg, #00d372, #56acff 34%, #d90a2c 67%, #e26a69);
  border-radius: 50%;
}
.cid-ucc4LYphC2 .panel-group .card .card-wrap .panel-collapse .panel-body {
  padding-top: 24px;
}
.cid-ucc4LYphC2 .panel-group .card .card-wrap .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-ucc4LYphC2 .mbr-section-title {
  color: #d90a2c;
}
.cid-ucc4LYphC2 .panel-title-edit {
  color: #ffffff;
}
.cid-ucc4LYphC2 .panel-text {
  color: #ffffff;
}
.cid-ucaJoxeb6g {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background: #d90a2c;
}
.cid-ucaJoxeb6g .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-ucaJoxeb6g .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: #4479d9;
}
.cid-ucaJoxeb6g .svg-top .st0 {
  fill: #d90a2c;
}
@media (max-width: 992px) {
  .cid-ucaJoxeb6g .svg-top {
    width: 1000px;
  }
}
.cid-ucaJoxeb6g .google-map {
  height: 35rem;
  position: relative;
}
.cid-ucaJoxeb6g .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ucaJoxeb6g .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-ucaJoxeb6g .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ucaJoxeb6g .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-ucaJoxeb6g .mbr-section-title {
  color: #ffffff;
}
.cid-ucaJoxeb6g .mbr-section-subtitle {
  color: #1a449a;
}
.cid-ucaJoy3tsL {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #d90a2c;
}
.cid-ucaJoy3tsL .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucaJoy3tsL .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-ucaJoy3tsL .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ucaJoy3tsL .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-ucaJoy3tsL a {
  font-weight: 600;
}
.cid-ucaJoy3tsL a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-ucaJoy3tsL .col-lg-3,
  .cid-ucaJoy3tsL .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-ucaJoy3tsL .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-ucaJoy3tsL .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-ucaJoy3tsL h5 {
  margin: 0;
}
.cid-ucaJoy3tsL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucaJoy3tsL .iconfont-wrapper {
  position: relative;
}
.cid-ucaJoy3tsL .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-ucaJoy3tsL .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-ucaJoy3tsL .sociconfont-wrapper {
  display: flex;
}
.cid-ucaJoy3tsL .card-title,
.cid-ucaJoy3tsL .iconfont-wrapper {
  color: #ffffff;
}
.cid-ucaJoy3tsL .card-text {
  color: #ffffff;
}
.cid-ucaJoy3tsL .mbr-section-title {
  color: #000000;
}
.cid-ucaJoy3tsL .main-title,
.cid-ucaJoy3tsL .iconfont-wrapper {
  text-align: left;
}
.cid-ucaJozAoG4 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-ucc8KnsBgw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ucc8KnsBgw nav.navbar {
  position: fixed;
}
.cid-ucc8KnsBgw .container,
.cid-ucc8KnsBgw .container-fluid {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ucc8KnsBgw .container,
  .cid-ucc8KnsBgw .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-ucc8KnsBgw .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-ucc8KnsBgw .dropdown-menu {
  padding: 1rem 0;
  border-radius: 0px;
  background: #ffffff !important;
}
.cid-ucc8KnsBgw .dropdown-item:hover,
.cid-ucc8KnsBgw .dropdown-item:focus {
  color: #4479d9 !important;
}
.cid-ucc8KnsBgw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ucc8KnsBgw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ucc8KnsBgw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ucc8KnsBgw .nav-link {
  position: relative;
}
.cid-ucc8KnsBgw .nav-link:hover {
  color: #ffffff !important;
}
.cid-ucc8KnsBgw .nav-link:hover:before {
  opacity: 1;
}
.cid-ucc8KnsBgw .nav-link:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: white;
  transition: all 0.3s;
  opacity: 0;
}
.cid-ucc8KnsBgw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ucc8KnsBgw .container {
  display: flex;
  margin: auto;
}
.cid-ucc8KnsBgw .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ucc8KnsBgw .nav-item:focus,
.cid-ucc8KnsBgw .nav-link:focus {
  outline: none;
}
.cid-ucc8KnsBgw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ucc8KnsBgw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ucc8KnsBgw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ucc8KnsBgw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ucc8KnsBgw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ucc8KnsBgw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ucc8KnsBgw .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 2px solid #000000;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #d90a2c;
}
.cid-ucc8KnsBgw .navbar.opened {
  transition: all 0.3s;
}
.cid-ucc8KnsBgw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ucc8KnsBgw .navbar .navbar-logo img {
  width: auto;
}
.cid-ucc8KnsBgw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ucc8KnsBgw .navbar.collapsed {
  justify-content: center;
}
.cid-ucc8KnsBgw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ucc8KnsBgw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ucc8KnsBgw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.2rem);
  }
}
.cid-ucc8KnsBgw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ucc8KnsBgw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ucc8KnsBgw .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-ucc8KnsBgw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ucc8KnsBgw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ucc8KnsBgw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ucc8KnsBgw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ucc8KnsBgw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ucc8KnsBgw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ucc8KnsBgw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ucc8KnsBgw .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-ucc8KnsBgw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ucc8KnsBgw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ucc8KnsBgw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ucc8KnsBgw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ucc8KnsBgw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ucc8KnsBgw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ucc8KnsBgw .navbar.navbar-short {
  min-height: 60px;
}
.cid-ucc8KnsBgw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ucc8KnsBgw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ucc8KnsBgw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ucc8KnsBgw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ucc8KnsBgw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ucc8KnsBgw .dropdown-item.active,
.cid-ucc8KnsBgw .dropdown-item:active {
  background-color: transparent;
}
.cid-ucc8KnsBgw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ucc8KnsBgw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ucc8KnsBgw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ucc8KnsBgw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d90a2c;
}
.cid-ucc8KnsBgw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ucc8KnsBgw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ucc8KnsBgw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ucc8KnsBgw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ucc8KnsBgw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: absolute;
  top: 2rem;
  right: 1rem;
  z-index: 5;
  align-self: center;
}
.cid-ucc8KnsBgw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ucc8KnsBgw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ucc8KnsBgw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucc8KnsBgw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucc8KnsBgw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ucc8KnsBgw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucc8KnsBgw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ucc8KnsBgw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ucc8KnsBgw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucc8KnsBgw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ucc8KnsBgw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ucc8KnsBgw .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ucc8KnsBgw .navbar {
    height: 70px;
  }
  .cid-ucc8KnsBgw .navbar.opened {
    height: auto;
  }
  .cid-ucc8KnsBgw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 992px) {
  .cid-ucc8KnsBgw .icons-menu {
    padding-right: 0;
  }
  .cid-ucc8KnsBgw .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
