body {
  font-family: Inter Tight;
}
.display-1 {
  font-family: 'PT Sans Narrow', sans-serif;
  font-size: 4rem;
  line-height: 120%;
  letter-spacing: 0.004rem;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'PT Sans Narrow', sans-serif;
  font-size: 3rem;
  line-height: 120%;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'PT Sans Narrow', sans-serif;
  font-size: 1.3rem;
  line-height: 1;
}
.display-4 > .mbr-iconfont {
  font-size: 1.625rem;
}
.display-5 {
  font-family: 'PT Sans Narrow', sans-serif;
  font-size: 1.77rem;
  line-height: 1.77em;
  letter-spacing: 0.016rem;
}
.display-5 > .mbr-iconfont {
  font-size: 2.2125rem;
}
.display-7 {
  font-family: 'PT Sans Narrow', sans-serif;
  font-size: 1.3rem;
  line-height: 140%;
  letter-spacing: 0.001rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.625rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.416rem;
    font-size: calc( 1.2694999999999999rem + (1.77 - 1.2694999999999999) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.2694999999999999rem + (1.77 - 1.2694999999999999) * ((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: 3.125rem;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 3.125rem;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 3.125rem;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 3.125rem;
}
.bg-primary {
  background-color: #f80a0a !important;
}
.bg-success {
  background-color: #d7d7d7 !important;
}
.bg-info {
  background-color: #ffffff !important;
}
.bg-warning {
  background-color: #f7e8d2 !important;
}
.bg-danger {
  background-color: #d7feff !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #f80a0a !important;
  border-color: #f80a0a !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: #a70505 !important;
  border-color: #a70505 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #a70505 !important;
  border-color: #a70505 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #fcfbf5 !important;
  border-color: #fcfbf5 !important;
  color: #baa838 !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: #776c24 !important;
  background-color: #e8e0b2 !important;
  border-color: #e8e0b2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #baa838 !important;
  background-color: #e8e0b2 !important;
  border-color: #e8e0b2 !important;
}
.btn-info,
.btn-info:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !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: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-success,
.btn-success:active {
  background-color: #d7d7d7 !important;
  border-color: #d7d7d7 !important;
  color: #585858 !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: #acacac !important;
  border-color: #acacac !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #585858 !important;
  background-color: #acacac !important;
  border-color: #acacac !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #f7e8d2 !important;
  border-color: #f7e8d2 !important;
  color: #ac721e !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: #ffffff !important;
  background-color: #eac288 !important;
  border-color: #eac288 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ac721e !important;
  background-color: #eac288 !important;
  border-color: #eac288 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #d7feff !important;
  border-color: #d7feff !important;
  color: #00d2d7 !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: #007d80 !important;
  background-color: #80fcff !important;
  border-color: #80fcff !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #00d2d7 !important;
  background-color: #80fcff !important;
  border-color: #80fcff !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: #f80a0a;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #a70505 !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: #f80a0a !important;
  border-color: #f80a0a !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fcfbf5;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #e8e0b2 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #baa838 !important;
  background-color: #fcfbf5 !important;
  border-color: #fcfbf5 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #d7d7d7;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #acacac !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #585858 !important;
  background-color: #d7d7d7 !important;
  border-color: #d7d7d7 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f7e8d2;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #eac288 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ac721e !important;
  background-color: #f7e8d2 !important;
  border-color: #f7e8d2 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #d7feff;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #80fcff !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #00d2d7 !important;
  background-color: #d7feff !important;
  border-color: #d7feff !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: #f80a0a !important;
}
.text-secondary {
  color: #fcfbf5 !important;
}
.text-success {
  color: #d7d7d7 !important;
}
.text-info {
  color: #ffffff !important;
}
.text-warning {
  color: #f7e8d2 !important;
}
.text-danger {
  color: #d7feff !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #980404 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #e4dca7 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #a4a4a4 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #cccccc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #e8bc7b !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #71fbff !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: #f80a0a;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ffffff;
}
.alert-warning {
  background-color: #f7e8d2;
}
.alert-danger {
  background-color: #d7feff;
}
.mbr-gallery-filter li.active .btn {
  background-color: #f80a0a;
  border-color: #f80a0a;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #f80a0a;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fed0d0;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.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: 'PT Sans Narrow', sans-serif;
  font-size: 1.3rem;
  line-height: 1;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.625rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #f80a0a !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'PT Sans Narrow', sans-serif;
  font-size: 1.3rem;
  line-height: 1;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.625rem;
}
blockquote {
  border-color: #f80a0a;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #f80a0a;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #f80a0a;
}
.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: #f80a0a;
  border-bottom-color: #f80a0a;
}
.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: #f80a0a !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: #fcfbf5 !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='%23f80a0a' %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;
}
.mbr-section-btn .btn,
.mbr-section-btn-main .btn {
  border: none;
  box-shadow: none;
  padding: 16px 40px;
  font-weight: 400;
}
.mbr-section-btn .btn:hover .mbr-iconfont,
.mbr-section-btn-main .btn:hover .mbr-iconfont,
.mbr-section-btn .btn:focus .mbr-iconfont,
.mbr-section-btn-main .btn:focus .mbr-iconfont {
  transform: translate(0.5rem, 0);
}
.mbr-section-btn .btn .mbr-iconfont,
.mbr-section-btn-main .btn .mbr-iconfont {
  margin-left: 8px;
  font-size: 16px;
  transition: all .3s ease;
}
.mbr-section-btn .btn:hover,
.mbr-section-btn-main .btn:hover {
  border: none;
  box-shadow: none;
}
.mbr-section-btn .btn-info,
.mbr-section-btn-main .btn-info {
  color: #f80a0a !important;
}
.cid-uRuMfR8Tvg .navbar-dropdown {
  position: relative !important;
}
.cid-uRuMfR8Tvg .container-fluid {
  padding-left: 80px;
  padding-right: 80px;
}
@media (max-width: 1440px) {
  .cid-uRuMfR8Tvg .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 992px) {
  .cid-uRuMfR8Tvg .container-fluid {
    padding-left: 12px;
    padding-right: 12px;
  }
}
.cid-uRuMfR8Tvg .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-uRuMfR8Tvg .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-uRuMfR8Tvg .dropdown-item {
  border: none !important;
  background: #ffffff !important;
}
.cid-uRuMfR8Tvg .dropdown-item:hover,
.cid-uRuMfR8Tvg .dropdown-item:focus {
  background: #ffffff !important;
  color: #000000 !important;
}
.cid-uRuMfR8Tvg .dropdown-item:hover span {
  color: white;
}
.cid-uRuMfR8Tvg .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uRuMfR8Tvg .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uRuMfR8Tvg .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uRuMfR8Tvg .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uRuMfR8Tvg .nav-link {
  position: relative;
}
.cid-uRuMfR8Tvg .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-uRuMfR8Tvg .container {
    flex-wrap: nowrap;
  }
}
.cid-uRuMfR8Tvg .iconfont-wrapper {
  color: #c10b02 !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-uRuMfR8Tvg .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uRuMfR8Tvg .dropdown-menu,
.cid-uRuMfR8Tvg .navbar.opened {
  background: #ffffff !important;
}
.cid-uRuMfR8Tvg .nav-item:focus,
.cid-uRuMfR8Tvg .nav-link:focus {
  outline: none;
}
.cid-uRuMfR8Tvg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uRuMfR8Tvg .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-uRuMfR8Tvg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uRuMfR8Tvg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uRuMfR8Tvg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uRuMfR8Tvg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uRuMfR8Tvg .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uRuMfR8Tvg .navbar.opened {
  transition: all 0.3s;
}
.cid-uRuMfR8Tvg .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 22px;
  line-height: 1.5;
  border-radius: 0;
  margin-left: 4px;
  margin-bottom: 4px;
}
.cid-uRuMfR8Tvg .navbar .navbar-logo img {
  width: auto;
}
.cid-uRuMfR8Tvg .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uRuMfR8Tvg .navbar.collapsed {
  justify-content: center;
}
.cid-uRuMfR8Tvg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uRuMfR8Tvg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uRuMfR8Tvg .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uRuMfR8Tvg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uRuMfR8Tvg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uRuMfR8Tvg .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-uRuMfR8Tvg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uRuMfR8Tvg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uRuMfR8Tvg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uRuMfR8Tvg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uRuMfR8Tvg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uRuMfR8Tvg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uRuMfR8Tvg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uRuMfR8Tvg .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-uRuMfR8Tvg .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uRuMfR8Tvg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uRuMfR8Tvg .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .cid-uRuMfR8Tvg .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-uRuMfR8Tvg .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uRuMfR8Tvg .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uRuMfR8Tvg .navbar.navbar-short {
  min-height: 96px;
}
.cid-uRuMfR8Tvg .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-uRuMfR8Tvg .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-uRuMfR8Tvg .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uRuMfR8Tvg .navbar-brand .navbar-caption:hover,
.cid-uRuMfR8Tvg .navbar-brand .navbar-caption:focus {
  color: #000000 !important;
}
.cid-uRuMfR8Tvg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uRuMfR8Tvg .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-uRuMfR8Tvg .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #000000 !important;
}
.cid-uRuMfR8Tvg .dropdown-item.active,
.cid-uRuMfR8Tvg .dropdown-item:active {
  background-color: transparent;
}
.cid-uRuMfR8Tvg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uRuMfR8Tvg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uRuMfR8Tvg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uRuMfR8Tvg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-uRuMfR8Tvg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-uRuMfR8Tvg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-uRuMfR8Tvg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uRuMfR8Tvg ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-uRuMfR8Tvg ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-uRuMfR8Tvg .navbar-buttons {
  text-align: center;
  width: auto;
}
.cid-uRuMfR8Tvg .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  min-height: auto;
  width: auto;
}
.cid-uRuMfR8Tvg .navbar-buttons .btn .mbr-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .cid-uRuMfR8Tvg .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-uRuMfR8Tvg button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #ffffff !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uRuMfR8Tvg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uRuMfR8Tvg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-uRuMfR8Tvg button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uRuMfR8Tvg button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uRuMfR8Tvg button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-uRuMfR8Tvg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uRuMfR8Tvg nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uRuMfR8Tvg nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uRuMfR8Tvg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uRuMfR8Tvg .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uRuMfR8Tvg a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uRuMfR8Tvg .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-uRuMfR8Tvg .navbar {
    height: 70px;
  }
  .cid-uRuMfR8Tvg .navbar.opened {
    height: auto;
  }
  .cid-uRuMfR8Tvg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uRuMfR8Tvg .navbar-nav {
  margin: 0 auto;
}
.cid-uRuMfR8Tvg .nav-item {
  padding: 0;
  margin: 0;
}
.cid-uRuMfR8Tvg .nav-item .nav-link {
  padding: 8px 22px !important;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border-radius: 3rem;
}
.cid-uRuMfR8Tvg .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-uRuMfR8Tvg .nav-item .nav-link:hover,
.cid-uRuMfR8Tvg .nav-item .nav-link:focus {
  background-color: transparent;
  color: #000000 !important;
  opacity: .5;
}
.cid-uRuMfR8Tvg .nav-item .nav-link:hover::after,
.cid-uRuMfR8Tvg .nav-item .nav-link:focus::after {
  color: inherit !important;
}
.cid-uRuMfR8Tvg .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-uRuMfR8Tvg .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-uRuMfR8Tvg .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-uRuMfR8Tvg .navbar {
    justify-content: flex-start !important;
  }
  .cid-uRuMfR8Tvg .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-uRuMfR8Tvg .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-uRuMfR8Tvg .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-uRuMfR8Tvg .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-uRuMfR8Tvg .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .cid-uRuMfR8Tvg .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-uRuMfR8Tvg .content-wrap {
  min-height: 110px;
}
.cid-uRuOH78V2I {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d7feff;
}
.cid-uRuOH78V2I .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRuOH78V2I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRuOH78V2I .content-wrapper {
  display: flex;
  position: relative;
  padding: 60px;
}
@media (max-width: 992px) {
  .cid-uRuOH78V2I .content-wrapper {
    padding: 30px 20px;
  }
}
.cid-uRuOH78V2I .content-wrapper .image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uRuOH78V2I .content-wrapper .image-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uRuOH78V2I .content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background-image: linear-gradient(0.251turn, #d7feff 37%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}
.cid-uRuOH78V2I .content-wrapper .content-wrap {
  position: relative;
  z-index: 2;
  display: inline-block;
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uRuOH78V2I .content-wrapper .content-wrap {
    width: 100%;
  }
}
.cid-uRuOH78V2I .content-wrapper .content-wrap .desc-wrapper .mbr-desc {
  display: inline-block;
  background-color: #d7feff;
  padding: 8px 16px;
  margin-bottom: 32px;
}
.cid-uRuOH78V2I .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uRuOH78V2I .content-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uRuOH78V2I .content-wrapper .content-wrap .mbr-section-btn {
  margin-top: 64px;
}
.cid-uRuOH78V2I .content-wrapper .content-wrap .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uRuOH78V2I .mbr-section-title {
  color: #404349;
}
.cid-uRuOH78V2I .mbr-text {
  color: #000000;
}
.cid-uRuOH78V2I .mbr-desc {
  color: #b19a7c;
}
.cid-uRuOH78V2I .mbr-section-title,
.cid-uRuOH78V2I .mbr-section-btn {
  color: #000000;
}
.cid-uRuPcTpaJ7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uRuPcTpaJ7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRuPcTpaJ7 .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-uRuPcTpaJ7 .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uRuPcTpaJ7 .container {
    padding: 0 12px;
  }
}
.cid-uRuPcTpaJ7 .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uRuPcTpaJ7 .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-uRuPcTpaJ7 .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-uRuPcTpaJ7 .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #000000;
  width: 22px;
  height: 22px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-uRuPcTpaJ7 .mbr-section-title {
  color: #000000;
}
.cid-uRuPsVQLlu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d7feff;
}
.cid-uRuPsVQLlu .card-wrapper {
  background: #ffffff;
  padding: 5rem;
}
@media (max-width: 992px) {
  .cid-uRuPsVQLlu .card-wrapper {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uRuPsVQLlu .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-uRuPsVQLlu .mbr-text {
  color: #000000;
}
.cid-uRuPsVQLlu .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uRuPsVQLlu .mbr-section-title {
  color: #000000;
}
.cid-uRuNztdCn5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uRuNztdCn5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRuNztdCn5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRuNztdCn5 .title-wrapper {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uRuNztdCn5 .title-wrapper {
    padding: 0;
  }
}
.cid-uRuNztdCn5 .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
.cid-uRuNztdCn5 .title-wrapper .mbr-section-title span {
  color: #000000;
}
@media (max-width: 992px) {
  .cid-uRuNztdCn5 .title-wrapper .mbr-section-title {
    margin-bottom: 46px;
  }
}
.cid-uRuNztdCn5 .content-wrapper {
  background-color: #d7feff;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uRuNztdCn5 .content-wrapper {
    display: block;
  }
}
.cid-uRuNztdCn5 .content-wrapper .content-wrap {
  padding: 100px 60px 100px;
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uRuNztdCn5 .content-wrapper .content-wrap {
    padding: 46px 22px;
    width: 100%;
  }
}
.cid-uRuNztdCn5 .content-wrapper .content-wrap .mbr-text {
  margin-bottom: 36px;
}
@media (max-width: 992px) {
  .cid-uRuNztdCn5 .content-wrapper .content-wrap .mbr-text {
    margin-bottom: 22px;
  }
}
.cid-uRuNztdCn5 .content-wrapper .content-wrap .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uRuNztdCn5 .content-wrapper .image-wrapper {
  position: relative;
  width: 40%;
  min-height: 350px;
}
@media (max-width: 1200px) {
  .cid-uRuNztdCn5 .content-wrapper .image-wrapper {
    width: 45%;
  }
}
@media (max-width: 992px) {
  .cid-uRuNztdCn5 .content-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-uRuNztdCn5 .content-wrapper .image-wrapper .image-wrap {
  height: 100%;
}
.cid-uRuNztdCn5 .content-wrapper .image-wrapper .image-wrap img {
  height: 100%;
  width: 100%;
  border-radius: 0 !important;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uRuNztdCn5 .content-wrapper .image-wrapper .image-wrap img {
    height: 350px;
  }
}
.cid-uRuNztdCn5 .content-wrapper .image-wrapper .price-wrapper {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 32px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uRuNztdCn5 .content-wrapper .image-wrapper .price-wrapper {
    padding: 22px;
    position: static;
    min-height: auto;
    width: 100%;
    display: block;
    transform: none;
  }
}
.cid-uRuNztdCn5 .content-wrapper .image-wrapper .price-wrapper .price-wrap {
  width: 100%;
}
.cid-uRuNztdCn5 .content-wrapper .image-wrapper .price-wrapper .price-wrap .mbr-price {
  margin-bottom: 10px;
}
.cid-uRuNztdCn5 .content-wrapper .image-wrapper .price-wrapper .price-wrap .mbr-desc {
  margin-bottom: 0;
}
.cid-uRuNztdCn5 .mbr-section-title {
  color: #212529;
}
.cid-uRuNztdCn5 .mbr-text {
  color: #51565c;
}
.cid-uRuNztdCn5 .mbr-price {
  color: #000000;
}
.cid-uRuNztdCn5 .mbr-desc {
  color: #ff8576;
}
.cid-uRuNztdCn5 .mbr-text,
.cid-uRuNztdCn5 .mbr-section-btn {
  color: #000000;
}
.cid-uRnee8oGcA {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uRnee8oGcA .mbr-text {
  color: #000000;
}
.cid-uRnee8oGcA .mbr-section-subtitle {
  color: #000000;
}
.cid-uRnee8oGcA .mbr-section-title {
  color: #000000;
}
.cid-twFGZAM39p {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #d7feff;
}
.cid-twFGZAM39p .mbr-fallback-image.disabled {
  display: none;
}
.cid-twFGZAM39p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-twFGZAM39p .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-twFGZAM39p .container-fluid {
    padding: 0 20px;
  }
}
.cid-twFGZAM39p .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-twFGZAM39p .container {
    padding: 0 20px;
  }
}
.cid-twFGZAM39p .row {
  justify-content: center;
}
.cid-twFGZAM39p .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-twFGZAM39p .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-twFGZAM39p .card-wrapper {
  padding: 32px;
  margin-bottom: 64px;
  border: 2px solid #d7feff;
}
.cid-twFGZAM39p .card-wrapper .icon-wrapper {
  margin-bottom: 88px;
}
.cid-twFGZAM39p .card-wrapper .icon-wrapper .mbr-iconfont {
  color: #1d1d1d;
  font-size: 42px;
}
.cid-twFGZAM39p .card-wrapper .mbr-card-title {
  margin-bottom: 32px;
}
.cid-twFGZAM39p .card-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-twFGZAM39p .mbr-section-title {
  color: #1d1d1d;
}
.cid-twFGZAM39p .mbr-card-title {
  color: #1d1d1d;
}
.cid-twFGZAM39p .mbr-text {
  color: #1d1d1d;
}
.cid-twFGZAM39p .mbr-card-title,
.cid-twFGZAM39p .icon-wrapper {
  text-align: center;
}
.cid-twFGZAM39p .mbr-section-title,
.cid-twFGZAM39p .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uRoNNcUOJF {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
  background-image: radial-gradient(at 100% -70%, #ffffff, #ffffff, #ffffff);
}
.cid-uRoNNcUOJF .header-text {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uRoNNcUOJF img {
  width: 100%;
  border-radius: 30px;
  margin-left: 2rem;
}
@media (max-width: 992px) {
  .cid-uRoNNcUOJF img {
    margin-left: 0;
    margin-top: 4rem;
  }
}
.cid-uRoNNcUOJF .row {
  margin: auto;
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 4rem 3rem;
  overflow: visible;
  position: relative;
}
@media (max-width: 992px) {
  .cid-uRoNNcUOJF .row {
    padding: 2rem 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uRoNNcUOJF .row {
    padding: 1rem 0rem;
  }
}
.cid-uRoNNcUOJF .row:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid #ffffff;
  border-radius: 30px;
  pointer-events: none;
}
.cid-uRoNNcUOJF .row:after {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.5;
  height: 100%;
  width: 100%;
  pointer-events: none;
  background-color: #ffffff;
  border-radius: 30px;
}
.cid-uRoNNcUOJF .card-header {
  border-bottom: 1px solid #ffffff;
  margin-bottom: 0px!important;
}
.cid-uRoNNcUOJF span {
  transform: rotate(45deg);
  transition: all 0.3s;
}
.cid-uRoNNcUOJF .collapsed span {
  transform: rotate(0deg);
}
.cid-uRoNNcUOJF .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-uRoNNcUOJF .panel-group {
  width: 100%;
}
.cid-uRoNNcUOJF .sign {
  color: currentColor;
  font-family: 'Moririse2' !important;
}
.cid-uRoNNcUOJF .card {
  border-radius: 0px;
}
.cid-uRoNNcUOJF .card .card-header {
  border-radius: 0px;
  padding: 0;
  background-color: transparent;
}
.cid-uRoNNcUOJF .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  margin-bottom: 0;
  font-style: normal;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  line-height: normal;
}
.cid-uRoNNcUOJF .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uRoNNcUOJF .card .card-header a.panel-title h4 {
  padding: 1.5rem 1rem 13px 0px;
  margin-bottom: 0;
}
.cid-uRoNNcUOJF .mbr-section-title,
.cid-uRoNNcUOJF .mbr-section-subtitle,
.cid-uRoNNcUOJF .content-block,
.cid-uRoNNcUOJF .image-wrapper {
  position: relative;
  z-index: 1;
}
.cid-uRoNNcUOJF .panel-text {
  color: #000000;
}
.cid-uRoNNcUOJF .header-text,
.cid-uRoNNcUOJF .sign {
  color: #263d5a;
  text-align: right;
}
.cid-uRoNNcUOJF .mbr-section-title {
  color: #000000;
}
.cid-uRoNNcUOJF .header-text,
.cid-uRoNNcUOJF .sign,
.cid-uRoNNcUOJF .card-header {
  color: #000000;
  text-align: left;
}
.cid-uRoNNcUOJF .mbr-section-subtitle {
  color: #263d5a;
}
.cid-uRne5x4TSM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uRne5x4TSM .mbr-text {
  color: #000000;
}
.cid-uRne5x4TSM .mbr-section-subtitle {
  color: #000000;
}
.cid-uRne5x4TSM .mbr-section-title {
  color: #000000;
}
.cid-uRpMJeGieR {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uRpMJeGieR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRpMJeGieR .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-uRpMJeGieR .container {
    padding: 0 20px;
  }
}
.cid-uRpMJeGieR .row {
  margin: 0;
}
.cid-uRpMJeGieR .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uRpMJeGieR .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uRpMJeGieR .video-block .video-wrapper .app-video-wrapper::before {
  color: #499d7e;
  text-shadow: none;
}
.cid-uRpMJeGieR .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-uRpMJeGieR .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-uRpMJeGieR .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-uRpMJeGieR .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uRuPFHQlgS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uRuPFHQlgS .wrapper {
  background: #d7feff;
}
.cid-uRuPFHQlgS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRuPFHQlgS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRuPFHQlgS .mbr-section-title {
  color: #000000;
}
.cid-uRuJLi1iLM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uRuJLi1iLM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRuJLi1iLM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-uRuJLi1iLM .card-content-text {
    padding: 0 1.5rem 1.5rem 1.5rem;
  }
}
@media (min-width: 768px) {
  .cid-uRuJLi1iLM .card-content-text {
    padding: 0 2.25rem 2.25rem 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-uRuJLi1iLM .card-content-text {
    padding: 1rem 4rem 4rem 4rem;
  }
}
.cid-uRuJLi1iLM .card-wrapper {
  background: #d7feff;
}
.cid-uRuJLi1iLM .mbr-text,
.cid-uRuJLi1iLM .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-uRuJLi1iLM .card-title,
.cid-uRuJLi1iLM .card-box {
  text-align: center;
  color: #000000;
}
.cid-uRuJLi1iLM .image-wrapper img {
  width: 100%;
}
.cid-uRne1hl7Lm {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uRne1hl7Lm .mbr-text {
  color: #000000;
}
.cid-uRne1hl7Lm .mbr-section-subtitle {
  color: #000000;
}
.cid-uRne1hl7Lm .mbr-section-title {
  color: #000000;
}
.cid-uRoShzuBzh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uRoShzuBzh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRoShzuBzh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRoShzuBzh .content-wrapper {
  padding: 80px 90px;
  background-color: #d7feff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uRoShzuBzh .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-uRoShzuBzh .content-wrapper .title-wrapper {
  width: 50%;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uRoShzuBzh .content-wrapper .title-wrapper {
    margin-bottom: 24px;
    width: 100%;
  }
}
.cid-uRoShzuBzh .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uRoShzuBzh .content-wrapper .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uRoShzuBzh .content-wrapper .title-wrapper .mbr-text {
  margin-bottom: 38px;
}
@media (max-width: 992px) {
  .cid-uRoShzuBzh .content-wrapper .title-wrapper .mbr-text {
    margin-bottom: 16px;
  }
}
.cid-uRoShzuBzh .content-wrapper .image-wrapper {
  width: 45%;
}
@media (max-width: 992px) {
  .cid-uRoShzuBzh .content-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-uRoShzuBzh .content-wrapper .image-wrapper img {
  height: 450px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uRoShzuBzh .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-uRoShzuBzh .mbr-section-title {
  color: #050f0f;
}
.cid-uRoShzuBzh .mbr-text {
  color: #050f0f;
}
.cid-uRoShzuBzh .mbr-section-title,
.cid-uRoShzuBzh .mbr-section-btn {
  text-align: center;
}
.cid-uRnDHIyygB {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background: #ffffff;
}
.cid-uRnDHIyygB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRnDHIyygB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRnDHIyygB .google-map {
  height: 30rem;
  position: relative;
  border-radius: 2rem;
}
.cid-uRnDHIyygB .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-uRnDHIyygB .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-uRnDHIyygB .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uRnDHIyygB .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uRnDHIyygB .content-head {
  max-width: 800px;
}
.cid-uRnDHIyygB .mbr-section-title {
  color: #000000;
}
.cid-uRn9XPkkAL {
  padding-top: 7rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #d7feff;
}
.cid-uRn9XPkkAL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRn9XPkkAL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRn9XPkkAL .row {
  justify-content: space-between;
}
.cid-uRn9XPkkAL .mbr-section-title {
  margin: 0;
  color: #000000;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uRn9XPkkAL .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uRn9XPkkAL .mbr-text {
  margin-bottom: 10px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uRn9XPkkAL .mbr-section-btn {
    margin-bottom: 20px;
  }
}
.cid-uRn9XPkkAL .list {
  padding: 0;
  margin-bottom: 0;
  list-style-type: none;
  color: #000000;
}
.cid-uRn9XPkkAL .list li {
  margin-bottom: 25px;
}
.cid-uRn9XPkkAL .list li:last-child {
  margin-bottom: 0;
}
.cid-uRn9XPkkAL .mbr-desc {
  margin-bottom: 8px;
}
.cid-uRn9XPkkAL .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uRn9XPkkAL .social-row .soc-item {
  margin: 9px 9px 0 0;
}
.cid-uRn9XPkkAL .social-row .soc-item a:hover .mbr-iconfont {
  border-color: #ffffff;
}
.cid-uRn9XPkkAL .social-row .soc-item a .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 37px;
  height: 37px;
  font-size: 18px;
  border-radius: 100%;
  border: 1px solid #000000;
  transition: all .3s ease;
}
.cid-uRn9XPkkAL .copyright {
  margin: 110px 0 0 0;
  padding: 17px 70px;
  position: relative;
  color: #000000;
  text-align: center;
}
.cid-uRn9XPkkAL .copyright:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100rem;
  display: block;
  min-width: 1000vh;
  height: 1px;
  background-color: #000000;
  opacity: .4;
}
@media (max-width: 992px) {
  .cid-uRn9XPkkAL .copyright {
    margin-top: 50px;
    padding: 17px 24px;
  }
}
.cid-uRn9XPkkAL .mbr-desc,
.cid-uRn9XPkkAL .mbr-iconfont {
  color: #000000;
}
.cid-uRn9XPkkAL .mbr-text,
.cid-uRn9XPkkAL .mbr-section-btn {
  color: #000000;
}
.cid-uRv89LETP9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d7feff;
}
.cid-uRv89LETP9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRv89LETP9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRv89LETP9 .content-wrapper {
  display: flex;
  position: relative;
  padding: 60px;
}
@media (max-width: 992px) {
  .cid-uRv89LETP9 .content-wrapper {
    padding: 30px 20px;
  }
}
.cid-uRv89LETP9 .content-wrapper .image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uRv89LETP9 .content-wrapper .image-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uRv89LETP9 .content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background-image: linear-gradient(0.251turn, #d7feff 37%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}
.cid-uRv89LETP9 .content-wrapper .content-wrap {
  position: relative;
  z-index: 2;
  display: inline-block;
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uRv89LETP9 .content-wrapper .content-wrap {
    width: 100%;
  }
}
.cid-uRv89LETP9 .content-wrapper .content-wrap .desc-wrapper .mbr-desc {
  display: inline-block;
  background-color: #d7feff;
  padding: 8px 16px;
  margin-bottom: 32px;
}
.cid-uRv89LETP9 .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uRv89LETP9 .content-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uRv89LETP9 .content-wrapper .content-wrap .mbr-section-btn {
  margin-top: 64px;
}
.cid-uRv89LETP9 .content-wrapper .content-wrap .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uRv89LETP9 .mbr-section-title {
  color: #404349;
}
.cid-uRv89LETP9 .mbr-text {
  color: #000000;
}
.cid-uRv89LETP9 .mbr-desc {
  color: #b19a7c;
}
.cid-uRv89LETP9 .mbr-section-title,
.cid-uRv89LETP9 .mbr-section-btn {
  color: #000000;
}
.cid-uRpaKlHdRt {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uRpaKlHdRt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRpaKlHdRt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRpaKlHdRt .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-uRpaKlHdRt .container-fluid {
    padding: 0 12px;
  }
}
.cid-uRpaKlHdRt .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uRpaKlHdRt .container {
    padding: 0 20px;
  }
}
.cid-uRpaKlHdRt .row {
  border-top: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  margin-top: -2px;
}
.cid-uRpaKlHdRt .title-wrapper {
  padding: 96px 0;
}
@media (max-width: 992px) {
  .cid-uRpaKlHdRt .title-wrapper {
    padding: 64px 0;
  }
}
.cid-uRpaKlHdRt .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uRpaKlHdRt .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-uRpaKlHdRt .mbr-section-title {
  color: #1d1d1d;
}
.cid-uRpaKlHdRt .mbr-section-title,
.cid-uRpaKlHdRt .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uRpaKlHdRt .mbr-section-title,
.cid-uRpaKlHdRt .mbr-section-btn DIV {
  text-align: left;
}
.cid-uRpaKzCc2F {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background: #ffffff;
}
.cid-uRpaKzCc2F .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRpaKzCc2F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRpaKzCc2F .google-map {
  height: 30rem;
  position: relative;
  border-radius: 2rem;
}
.cid-uRpaKzCc2F .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-uRpaKzCc2F .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-uRpaKzCc2F .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uRpaKzCc2F .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uRpaKzCc2F .content-head {
  max-width: 800px;
}
.cid-uRpaKzCc2F .mbr-section-title {
  color: #000000;
}
.cid-uRpaKAXJX4 {
  padding-top: 7rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #d7feff;
}
.cid-uRpaKAXJX4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRpaKAXJX4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRpaKAXJX4 .row {
  justify-content: space-between;
}
.cid-uRpaKAXJX4 .mbr-section-title {
  margin: 0;
  color: #000000;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uRpaKAXJX4 .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uRpaKAXJX4 .mbr-text {
  margin-bottom: 10px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uRpaKAXJX4 .mbr-section-btn {
    margin-bottom: 20px;
  }
}
.cid-uRpaKAXJX4 .list {
  padding: 0;
  margin-bottom: 0;
  list-style-type: none;
  color: #000000;
}
.cid-uRpaKAXJX4 .list li {
  margin-bottom: 25px;
}
.cid-uRpaKAXJX4 .list li:last-child {
  margin-bottom: 0;
}
.cid-uRpaKAXJX4 .mbr-desc {
  margin-bottom: 8px;
}
.cid-uRpaKAXJX4 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uRpaKAXJX4 .social-row .soc-item {
  margin: 9px 9px 0 0;
}
.cid-uRpaKAXJX4 .social-row .soc-item a:hover .mbr-iconfont {
  border-color: #ffffff;
}
.cid-uRpaKAXJX4 .social-row .soc-item a .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 37px;
  height: 37px;
  font-size: 18px;
  border-radius: 100%;
  border: 1px solid #000000;
  transition: all .3s ease;
}
.cid-uRpaKAXJX4 .copyright {
  margin: 110px 0 0 0;
  padding: 17px 70px;
  position: relative;
  color: #000000;
  text-align: center;
}
.cid-uRpaKAXJX4 .copyright:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100rem;
  display: block;
  min-width: 1000vh;
  height: 1px;
  background-color: #000000;
  opacity: .4;
}
@media (max-width: 992px) {
  .cid-uRpaKAXJX4 .copyright {
    margin-top: 50px;
    padding: 17px 24px;
  }
}
.cid-uRpaKAXJX4 .mbr-desc,
.cid-uRpaKAXJX4 .mbr-iconfont {
  color: #000000;
}
.cid-uRpaKAXJX4 .mbr-text,
.cid-uRpaKAXJX4 .mbr-section-btn {
  color: #000000;
}
.cid-uRuMfR8Tvg .navbar-dropdown {
  position: relative !important;
}
.cid-uRuMfR8Tvg .container-fluid {
  padding-left: 80px;
  padding-right: 80px;
}
@media (max-width: 1440px) {
  .cid-uRuMfR8Tvg .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 992px) {
  .cid-uRuMfR8Tvg .container-fluid {
    padding-left: 12px;
    padding-right: 12px;
  }
}
.cid-uRuMfR8Tvg .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-uRuMfR8Tvg .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-uRuMfR8Tvg .dropdown-item {
  border: none !important;
  background: #ffffff !important;
}
.cid-uRuMfR8Tvg .dropdown-item:hover,
.cid-uRuMfR8Tvg .dropdown-item:focus {
  background: #ffffff !important;
  color: #000000 !important;
}
.cid-uRuMfR8Tvg .dropdown-item:hover span {
  color: white;
}
.cid-uRuMfR8Tvg .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uRuMfR8Tvg .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uRuMfR8Tvg .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uRuMfR8Tvg .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uRuMfR8Tvg .nav-link {
  position: relative;
}
.cid-uRuMfR8Tvg .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-uRuMfR8Tvg .container {
    flex-wrap: nowrap;
  }
}
.cid-uRuMfR8Tvg .iconfont-wrapper {
  color: #c10b02 !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-uRuMfR8Tvg .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uRuMfR8Tvg .dropdown-menu,
.cid-uRuMfR8Tvg .navbar.opened {
  background: #ffffff !important;
}
.cid-uRuMfR8Tvg .nav-item:focus,
.cid-uRuMfR8Tvg .nav-link:focus {
  outline: none;
}
.cid-uRuMfR8Tvg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uRuMfR8Tvg .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-uRuMfR8Tvg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uRuMfR8Tvg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uRuMfR8Tvg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uRuMfR8Tvg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uRuMfR8Tvg .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uRuMfR8Tvg .navbar.opened {
  transition: all 0.3s;
}
.cid-uRuMfR8Tvg .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 22px;
  line-height: 1.5;
  border-radius: 0;
  margin-left: 4px;
  margin-bottom: 4px;
}
.cid-uRuMfR8Tvg .navbar .navbar-logo img {
  width: auto;
}
.cid-uRuMfR8Tvg .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uRuMfR8Tvg .navbar.collapsed {
  justify-content: center;
}
.cid-uRuMfR8Tvg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uRuMfR8Tvg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uRuMfR8Tvg .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uRuMfR8Tvg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uRuMfR8Tvg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uRuMfR8Tvg .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-uRuMfR8Tvg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uRuMfR8Tvg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uRuMfR8Tvg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uRuMfR8Tvg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uRuMfR8Tvg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uRuMfR8Tvg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uRuMfR8Tvg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uRuMfR8Tvg .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-uRuMfR8Tvg .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uRuMfR8Tvg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uRuMfR8Tvg .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .cid-uRuMfR8Tvg .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-uRuMfR8Tvg .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uRuMfR8Tvg .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uRuMfR8Tvg .navbar.navbar-short {
  min-height: 96px;
}
.cid-uRuMfR8Tvg .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-uRuMfR8Tvg .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-uRuMfR8Tvg .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uRuMfR8Tvg .navbar-brand .navbar-caption:hover,
.cid-uRuMfR8Tvg .navbar-brand .navbar-caption:focus {
  color: #000000 !important;
}
.cid-uRuMfR8Tvg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uRuMfR8Tvg .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-uRuMfR8Tvg .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #000000 !important;
}
.cid-uRuMfR8Tvg .dropdown-item.active,
.cid-uRuMfR8Tvg .dropdown-item:active {
  background-color: transparent;
}
.cid-uRuMfR8Tvg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uRuMfR8Tvg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uRuMfR8Tvg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uRuMfR8Tvg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-uRuMfR8Tvg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-uRuMfR8Tvg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-uRuMfR8Tvg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uRuMfR8Tvg ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-uRuMfR8Tvg ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-uRuMfR8Tvg .navbar-buttons {
  text-align: center;
  width: auto;
}
.cid-uRuMfR8Tvg .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  min-height: auto;
  width: auto;
}
.cid-uRuMfR8Tvg .navbar-buttons .btn .mbr-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .cid-uRuMfR8Tvg .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-uRuMfR8Tvg button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #ffffff !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uRuMfR8Tvg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uRuMfR8Tvg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-uRuMfR8Tvg button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uRuMfR8Tvg button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uRuMfR8Tvg button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-uRuMfR8Tvg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uRuMfR8Tvg nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uRuMfR8Tvg nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uRuMfR8Tvg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uRuMfR8Tvg .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uRuMfR8Tvg a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uRuMfR8Tvg .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-uRuMfR8Tvg .navbar {
    height: 70px;
  }
  .cid-uRuMfR8Tvg .navbar.opened {
    height: auto;
  }
  .cid-uRuMfR8Tvg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uRuMfR8Tvg .navbar-nav {
  margin: 0 auto;
}
.cid-uRuMfR8Tvg .nav-item {
  padding: 0;
  margin: 0;
}
.cid-uRuMfR8Tvg .nav-item .nav-link {
  padding: 8px 22px !important;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border-radius: 3rem;
}
.cid-uRuMfR8Tvg .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-uRuMfR8Tvg .nav-item .nav-link:hover,
.cid-uRuMfR8Tvg .nav-item .nav-link:focus {
  background-color: transparent;
  color: #000000 !important;
  opacity: .5;
}
.cid-uRuMfR8Tvg .nav-item .nav-link:hover::after,
.cid-uRuMfR8Tvg .nav-item .nav-link:focus::after {
  color: inherit !important;
}
.cid-uRuMfR8Tvg .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-uRuMfR8Tvg .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-uRuMfR8Tvg .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-uRuMfR8Tvg .navbar {
    justify-content: flex-start !important;
  }
  .cid-uRuMfR8Tvg .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-uRuMfR8Tvg .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-uRuMfR8Tvg .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-uRuMfR8Tvg .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-uRuMfR8Tvg .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .cid-uRuMfR8Tvg .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-uRuMfR8Tvg .content-wrap {
  min-height: 110px;
}
.cid-uRvcTzmg0r {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d7feff;
}
.cid-uRvcTzmg0r .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRvcTzmg0r .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRvcTzmg0r .content-wrapper {
  display: flex;
  position: relative;
  padding: 60px;
}
@media (max-width: 992px) {
  .cid-uRvcTzmg0r .content-wrapper {
    padding: 30px 20px;
  }
}
.cid-uRvcTzmg0r .content-wrapper .image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uRvcTzmg0r .content-wrapper .image-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uRvcTzmg0r .content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background-image: linear-gradient(0.251turn, #d7feff 37%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}
.cid-uRvcTzmg0r .content-wrapper .content-wrap {
  position: relative;
  z-index: 2;
  display: inline-block;
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uRvcTzmg0r .content-wrapper .content-wrap {
    width: 100%;
  }
}
.cid-uRvcTzmg0r .content-wrapper .content-wrap .desc-wrapper .mbr-desc {
  display: inline-block;
  background-color: #d7feff;
  padding: 8px 16px;
  margin-bottom: 32px;
}
.cid-uRvcTzmg0r .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uRvcTzmg0r .content-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uRvcTzmg0r .content-wrapper .content-wrap .mbr-section-btn {
  margin-top: 64px;
}
.cid-uRvcTzmg0r .content-wrapper .content-wrap .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uRvcTzmg0r .mbr-section-title {
  color: #404349;
}
.cid-uRvcTzmg0r .mbr-text {
  color: #000000;
}
.cid-uRvcTzmg0r .mbr-desc {
  color: #b19a7c;
}
.cid-uRvcTzmg0r .mbr-section-title,
.cid-uRvcTzmg0r .mbr-section-btn {
  color: #000000;
}
.cid-uRpcEtJ7MT {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uRpcEtJ7MT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRpcEtJ7MT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRpcEtJ7MT .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-uRpcEtJ7MT .container-fluid {
    padding: 0 12px;
  }
}
.cid-uRpcEtJ7MT .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uRpcEtJ7MT .container {
    padding: 0 20px;
  }
}
.cid-uRpcEtJ7MT .row {
  border-top: 2px solid #000000;
  border-bottom: 2px solid #000000;
  margin-top: -2px;
}
.cid-uRpcEtJ7MT .title-wrapper {
  padding: 96px 0;
}
@media (max-width: 992px) {
  .cid-uRpcEtJ7MT .title-wrapper {
    padding: 64px 0;
  }
}
.cid-uRpcEtJ7MT .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uRpcEtJ7MT .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-uRpcEtJ7MT .mbr-section-title {
  color: #1d1d1d;
}
.cid-uRpcEtJ7MT .mbr-section-title,
.cid-uRpcEtJ7MT .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uRpcEtJ7MT .mbr-section-title,
.cid-uRpcEtJ7MT .mbr-section-btn DIV {
  text-align: left;
}
.cid-uRpcEv0lKJ {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background: #ffffff;
}
.cid-uRpcEv0lKJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRpcEv0lKJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRpcEv0lKJ .google-map {
  height: 30rem;
  position: relative;
  border-radius: 2rem;
}
.cid-uRpcEv0lKJ .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-uRpcEv0lKJ .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-uRpcEv0lKJ .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uRpcEv0lKJ .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uRpcEv0lKJ .content-head {
  max-width: 800px;
}
.cid-uRpcEv0lKJ .mbr-section-title {
  color: #000000;
}
.cid-uRpcEwgxep {
  padding-top: 7rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #d7feff;
}
.cid-uRpcEwgxep .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRpcEwgxep .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRpcEwgxep .row {
  justify-content: space-between;
}
.cid-uRpcEwgxep .mbr-section-title {
  margin: 0;
  color: #000000;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uRpcEwgxep .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uRpcEwgxep .mbr-text {
  margin-bottom: 10px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uRpcEwgxep .mbr-section-btn {
    margin-bottom: 20px;
  }
}
.cid-uRpcEwgxep .list {
  padding: 0;
  margin-bottom: 0;
  list-style-type: none;
  color: #000000;
}
.cid-uRpcEwgxep .list li {
  margin-bottom: 25px;
}
.cid-uRpcEwgxep .list li:last-child {
  margin-bottom: 0;
}
.cid-uRpcEwgxep .mbr-desc {
  margin-bottom: 8px;
}
.cid-uRpcEwgxep .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uRpcEwgxep .social-row .soc-item {
  margin: 9px 9px 0 0;
}
.cid-uRpcEwgxep .social-row .soc-item a:hover .mbr-iconfont {
  border-color: #ffffff;
}
.cid-uRpcEwgxep .social-row .soc-item a .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 37px;
  height: 37px;
  font-size: 18px;
  border-radius: 100%;
  border: 1px solid #000000;
  transition: all .3s ease;
}
.cid-uRpcEwgxep .copyright {
  margin: 110px 0 0 0;
  padding: 17px 70px;
  position: relative;
  color: #000000;
  text-align: center;
}
.cid-uRpcEwgxep .copyright:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100rem;
  display: block;
  min-width: 1000vh;
  height: 1px;
  background-color: #000000;
  opacity: .4;
}
@media (max-width: 992px) {
  .cid-uRpcEwgxep .copyright {
    margin-top: 50px;
    padding: 17px 24px;
  }
}
.cid-uRpcEwgxep .mbr-desc,
.cid-uRpcEwgxep .mbr-iconfont {
  color: #000000;
}
.cid-uRpcEwgxep .mbr-text,
.cid-uRpcEwgxep .mbr-section-btn {
  color: #000000;
}
.cid-uRuMfR8Tvg .navbar-dropdown {
  position: relative !important;
}
.cid-uRuMfR8Tvg .container-fluid {
  padding-left: 80px;
  padding-right: 80px;
}
@media (max-width: 1440px) {
  .cid-uRuMfR8Tvg .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 992px) {
  .cid-uRuMfR8Tvg .container-fluid {
    padding-left: 12px;
    padding-right: 12px;
  }
}
.cid-uRuMfR8Tvg .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-uRuMfR8Tvg .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-uRuMfR8Tvg .dropdown-item {
  border: none !important;
  background: #ffffff !important;
}
.cid-uRuMfR8Tvg .dropdown-item:hover,
.cid-uRuMfR8Tvg .dropdown-item:focus {
  background: #ffffff !important;
  color: #000000 !important;
}
.cid-uRuMfR8Tvg .dropdown-item:hover span {
  color: white;
}
.cid-uRuMfR8Tvg .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uRuMfR8Tvg .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uRuMfR8Tvg .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uRuMfR8Tvg .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uRuMfR8Tvg .nav-link {
  position: relative;
}
.cid-uRuMfR8Tvg .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-uRuMfR8Tvg .container {
    flex-wrap: nowrap;
  }
}
.cid-uRuMfR8Tvg .iconfont-wrapper {
  color: #c10b02 !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-uRuMfR8Tvg .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uRuMfR8Tvg .dropdown-menu,
.cid-uRuMfR8Tvg .navbar.opened {
  background: #ffffff !important;
}
.cid-uRuMfR8Tvg .nav-item:focus,
.cid-uRuMfR8Tvg .nav-link:focus {
  outline: none;
}
.cid-uRuMfR8Tvg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uRuMfR8Tvg .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-uRuMfR8Tvg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uRuMfR8Tvg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uRuMfR8Tvg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uRuMfR8Tvg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uRuMfR8Tvg .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uRuMfR8Tvg .navbar.opened {
  transition: all 0.3s;
}
.cid-uRuMfR8Tvg .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 22px;
  line-height: 1.5;
  border-radius: 0;
  margin-left: 4px;
  margin-bottom: 4px;
}
.cid-uRuMfR8Tvg .navbar .navbar-logo img {
  width: auto;
}
.cid-uRuMfR8Tvg .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uRuMfR8Tvg .navbar.collapsed {
  justify-content: center;
}
.cid-uRuMfR8Tvg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uRuMfR8Tvg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uRuMfR8Tvg .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uRuMfR8Tvg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uRuMfR8Tvg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uRuMfR8Tvg .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-uRuMfR8Tvg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uRuMfR8Tvg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uRuMfR8Tvg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uRuMfR8Tvg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uRuMfR8Tvg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uRuMfR8Tvg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uRuMfR8Tvg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uRuMfR8Tvg .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-uRuMfR8Tvg .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uRuMfR8Tvg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uRuMfR8Tvg .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .cid-uRuMfR8Tvg .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-uRuMfR8Tvg .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uRuMfR8Tvg .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uRuMfR8Tvg .navbar.navbar-short {
  min-height: 96px;
}
.cid-uRuMfR8Tvg .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-uRuMfR8Tvg .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-uRuMfR8Tvg .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uRuMfR8Tvg .navbar-brand .navbar-caption:hover,
.cid-uRuMfR8Tvg .navbar-brand .navbar-caption:focus {
  color: #000000 !important;
}
.cid-uRuMfR8Tvg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uRuMfR8Tvg .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-uRuMfR8Tvg .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #000000 !important;
}
.cid-uRuMfR8Tvg .dropdown-item.active,
.cid-uRuMfR8Tvg .dropdown-item:active {
  background-color: transparent;
}
.cid-uRuMfR8Tvg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uRuMfR8Tvg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uRuMfR8Tvg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uRuMfR8Tvg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-uRuMfR8Tvg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-uRuMfR8Tvg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-uRuMfR8Tvg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uRuMfR8Tvg ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-uRuMfR8Tvg ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-uRuMfR8Tvg .navbar-buttons {
  text-align: center;
  width: auto;
}
.cid-uRuMfR8Tvg .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  min-height: auto;
  width: auto;
}
.cid-uRuMfR8Tvg .navbar-buttons .btn .mbr-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .cid-uRuMfR8Tvg .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-uRuMfR8Tvg button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #ffffff !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uRuMfR8Tvg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uRuMfR8Tvg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-uRuMfR8Tvg button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uRuMfR8Tvg button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uRuMfR8Tvg button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-uRuMfR8Tvg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uRuMfR8Tvg nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uRuMfR8Tvg nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uRuMfR8Tvg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uRuMfR8Tvg .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uRuMfR8Tvg a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uRuMfR8Tvg .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-uRuMfR8Tvg .navbar {
    height: 70px;
  }
  .cid-uRuMfR8Tvg .navbar.opened {
    height: auto;
  }
  .cid-uRuMfR8Tvg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uRuMfR8Tvg .navbar-nav {
  margin: 0 auto;
}
.cid-uRuMfR8Tvg .nav-item {
  padding: 0;
  margin: 0;
}
.cid-uRuMfR8Tvg .nav-item .nav-link {
  padding: 8px 22px !important;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border-radius: 3rem;
}
.cid-uRuMfR8Tvg .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-uRuMfR8Tvg .nav-item .nav-link:hover,
.cid-uRuMfR8Tvg .nav-item .nav-link:focus {
  background-color: transparent;
  color: #000000 !important;
  opacity: .5;
}
.cid-uRuMfR8Tvg .nav-item .nav-link:hover::after,
.cid-uRuMfR8Tvg .nav-item .nav-link:focus::after {
  color: inherit !important;
}
.cid-uRuMfR8Tvg .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-uRuMfR8Tvg .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-uRuMfR8Tvg .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-uRuMfR8Tvg .navbar {
    justify-content: flex-start !important;
  }
  .cid-uRuMfR8Tvg .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-uRuMfR8Tvg .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-uRuMfR8Tvg .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-uRuMfR8Tvg .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-uRuMfR8Tvg .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .cid-uRuMfR8Tvg .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-uRuMfR8Tvg .content-wrap {
  min-height: 110px;
}
.cid-uRuUvTKU7K .navbar-dropdown {
  position: relative !important;
}
.cid-uRuUvTKU7K .container-fluid {
  padding-left: 80px;
  padding-right: 80px;
}
@media (max-width: 1440px) {
  .cid-uRuUvTKU7K .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 992px) {
  .cid-uRuUvTKU7K .container-fluid {
    padding-left: 12px;
    padding-right: 12px;
  }
}
.cid-uRuUvTKU7K .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-uRuUvTKU7K .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-uRuUvTKU7K .dropdown-item {
  border: none !important;
  background: #ffffff !important;
}
.cid-uRuUvTKU7K .dropdown-item:hover,
.cid-uRuUvTKU7K .dropdown-item:focus {
  background: #ffffff !important;
  color: #000000 !important;
}
.cid-uRuUvTKU7K .dropdown-item:hover span {
  color: white;
}
.cid-uRuUvTKU7K .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uRuUvTKU7K .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uRuUvTKU7K .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uRuUvTKU7K .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uRuUvTKU7K .nav-link {
  position: relative;
}
.cid-uRuUvTKU7K .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-uRuUvTKU7K .container {
    flex-wrap: nowrap;
  }
}
.cid-uRuUvTKU7K .iconfont-wrapper {
  color: #c10b02 !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-uRuUvTKU7K .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uRuUvTKU7K .dropdown-menu,
.cid-uRuUvTKU7K .navbar.opened {
  background: #ffffff !important;
}
.cid-uRuUvTKU7K .nav-item:focus,
.cid-uRuUvTKU7K .nav-link:focus {
  outline: none;
}
.cid-uRuUvTKU7K .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uRuUvTKU7K .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-uRuUvTKU7K .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uRuUvTKU7K .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uRuUvTKU7K .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uRuUvTKU7K .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uRuUvTKU7K .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uRuUvTKU7K .navbar.opened {
  transition: all 0.3s;
}
.cid-uRuUvTKU7K .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 22px;
  line-height: 1.5;
  border-radius: 0;
  margin-left: 4px;
  margin-bottom: 4px;
}
.cid-uRuUvTKU7K .navbar .navbar-logo img {
  width: auto;
}
.cid-uRuUvTKU7K .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uRuUvTKU7K .navbar.collapsed {
  justify-content: center;
}
.cid-uRuUvTKU7K .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uRuUvTKU7K .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uRuUvTKU7K .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uRuUvTKU7K .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uRuUvTKU7K .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uRuUvTKU7K .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-uRuUvTKU7K .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uRuUvTKU7K .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uRuUvTKU7K .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uRuUvTKU7K .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uRuUvTKU7K .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uRuUvTKU7K .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uRuUvTKU7K .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uRuUvTKU7K .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-uRuUvTKU7K .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uRuUvTKU7K .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uRuUvTKU7K .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .cid-uRuUvTKU7K .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-uRuUvTKU7K .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uRuUvTKU7K .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uRuUvTKU7K .navbar.navbar-short {
  min-height: 96px;
}
.cid-uRuUvTKU7K .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-uRuUvTKU7K .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-uRuUvTKU7K .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uRuUvTKU7K .navbar-brand .navbar-caption:hover,
.cid-uRuUvTKU7K .navbar-brand .navbar-caption:focus {
  color: #000000 !important;
}
.cid-uRuUvTKU7K .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uRuUvTKU7K .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-uRuUvTKU7K .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #000000 !important;
}
.cid-uRuUvTKU7K .dropdown-item.active,
.cid-uRuUvTKU7K .dropdown-item:active {
  background-color: transparent;
}
.cid-uRuUvTKU7K .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uRuUvTKU7K .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uRuUvTKU7K .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uRuUvTKU7K .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-uRuUvTKU7K .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-uRuUvTKU7K .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-uRuUvTKU7K .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uRuUvTKU7K ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-uRuUvTKU7K ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-uRuUvTKU7K .navbar-buttons {
  text-align: center;
  width: auto;
}
.cid-uRuUvTKU7K .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  min-height: auto;
  width: auto;
}
.cid-uRuUvTKU7K .navbar-buttons .btn .mbr-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .cid-uRuUvTKU7K .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-uRuUvTKU7K button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #ffffff !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uRuUvTKU7K button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uRuUvTKU7K button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-uRuUvTKU7K button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uRuUvTKU7K button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uRuUvTKU7K button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-uRuUvTKU7K nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uRuUvTKU7K nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uRuUvTKU7K nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uRuUvTKU7K nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uRuUvTKU7K .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uRuUvTKU7K a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uRuUvTKU7K .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-uRuUvTKU7K .navbar {
    height: 70px;
  }
  .cid-uRuUvTKU7K .navbar.opened {
    height: auto;
  }
  .cid-uRuUvTKU7K .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uRuUvTKU7K .navbar-nav {
  margin: 0 auto;
}
.cid-uRuUvTKU7K .nav-item {
  padding: 0;
  margin: 0;
}
.cid-uRuUvTKU7K .nav-item .nav-link {
  padding: 8px 22px !important;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border-radius: 3rem;
}
.cid-uRuUvTKU7K .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-uRuUvTKU7K .nav-item .nav-link:hover,
.cid-uRuUvTKU7K .nav-item .nav-link:focus {
  background-color: transparent;
  color: #000000 !important;
  opacity: .5;
}
.cid-uRuUvTKU7K .nav-item .nav-link:hover::after,
.cid-uRuUvTKU7K .nav-item .nav-link:focus::after {
  color: inherit !important;
}
.cid-uRuUvTKU7K .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-uRuUvTKU7K .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-uRuUvTKU7K .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-uRuUvTKU7K .navbar {
    justify-content: flex-start !important;
  }
  .cid-uRuUvTKU7K .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-uRuUvTKU7K .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-uRuUvTKU7K .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-uRuUvTKU7K .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-uRuUvTKU7K .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .cid-uRuUvTKU7K .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-uRuUvTKU7K .content-wrap {
  min-height: 110px;
}
.cid-uRuUvUZqiV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d7feff;
}
.cid-uRuUvUZqiV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRuUvUZqiV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRuUvUZqiV .content-wrapper {
  display: flex;
  position: relative;
  padding: 60px;
}
@media (max-width: 992px) {
  .cid-uRuUvUZqiV .content-wrapper {
    padding: 30px 20px;
  }
}
.cid-uRuUvUZqiV .content-wrapper .image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uRuUvUZqiV .content-wrapper .image-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uRuUvUZqiV .content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background-image: linear-gradient(0.251turn, #d7feff 37%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}
.cid-uRuUvUZqiV .content-wrapper .content-wrap {
  position: relative;
  z-index: 2;
  display: inline-block;
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uRuUvUZqiV .content-wrapper .content-wrap {
    width: 100%;
  }
}
.cid-uRuUvUZqiV .content-wrapper .content-wrap .desc-wrapper .mbr-desc {
  display: inline-block;
  background-color: #d7feff;
  padding: 8px 16px;
  margin-bottom: 32px;
}
.cid-uRuUvUZqiV .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uRuUvUZqiV .content-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uRuUvUZqiV .content-wrapper .content-wrap .mbr-section-btn {
  margin-top: 64px;
}
.cid-uRuUvUZqiV .content-wrapper .content-wrap .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uRuUvUZqiV .mbr-section-title {
  color: #404349;
}
.cid-uRuUvUZqiV .mbr-text {
  color: #000000;
}
.cid-uRuUvUZqiV .mbr-desc {
  color: #b19a7c;
}
.cid-uRuUvUZqiV .mbr-section-title,
.cid-uRuUvUZqiV .mbr-section-btn {
  color: #000000;
}
.cid-uRuUvWf4WD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uRuUvWf4WD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRuUvWf4WD .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-uRuUvWf4WD .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uRuUvWf4WD .container {
    padding: 0 12px;
  }
}
.cid-uRuUvWf4WD .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uRuUvWf4WD .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-uRuUvWf4WD .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-uRuUvWf4WD .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #000000;
  width: 22px;
  height: 22px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-uRuUvWf4WD .mbr-section-title {
  color: #000000;
}
.cid-uRuUvX8MZJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d7feff;
}
.cid-uRuUvX8MZJ .card-wrapper {
  background: #ffffff;
  padding: 5rem;
}
@media (max-width: 992px) {
  .cid-uRuUvX8MZJ .card-wrapper {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uRuUvX8MZJ .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-uRuUvX8MZJ .mbr-text {
  color: #000000;
}
.cid-uRuUvX8MZJ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uRuUvX8MZJ .mbr-section-title {
  color: #000000;
}
.cid-uRuUvY5D8J {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uRuUvY5D8J .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRuUvY5D8J .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRuUvY5D8J .title-wrapper {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uRuUvY5D8J .title-wrapper {
    padding: 0;
  }
}
.cid-uRuUvY5D8J .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
.cid-uRuUvY5D8J .title-wrapper .mbr-section-title span {
  color: #000000;
}
@media (max-width: 992px) {
  .cid-uRuUvY5D8J .title-wrapper .mbr-section-title {
    margin-bottom: 46px;
  }
}
.cid-uRuUvY5D8J .content-wrapper {
  background-color: #d7feff;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uRuUvY5D8J .content-wrapper {
    display: block;
  }
}
.cid-uRuUvY5D8J .content-wrapper .content-wrap {
  padding: 100px 60px 100px;
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uRuUvY5D8J .content-wrapper .content-wrap {
    padding: 46px 22px;
    width: 100%;
  }
}
.cid-uRuUvY5D8J .content-wrapper .content-wrap .mbr-text {
  margin-bottom: 36px;
}
@media (max-width: 992px) {
  .cid-uRuUvY5D8J .content-wrapper .content-wrap .mbr-text {
    margin-bottom: 22px;
  }
}
.cid-uRuUvY5D8J .content-wrapper .content-wrap .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uRuUvY5D8J .content-wrapper .image-wrapper {
  position: relative;
  width: 40%;
  min-height: 350px;
}
@media (max-width: 1200px) {
  .cid-uRuUvY5D8J .content-wrapper .image-wrapper {
    width: 45%;
  }
}
@media (max-width: 992px) {
  .cid-uRuUvY5D8J .content-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-uRuUvY5D8J .content-wrapper .image-wrapper .image-wrap {
  height: 100%;
}
.cid-uRuUvY5D8J .content-wrapper .image-wrapper .image-wrap img {
  height: 100%;
  width: 100%;
  border-radius: 0 !important;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uRuUvY5D8J .content-wrapper .image-wrapper .image-wrap img {
    height: 350px;
  }
}
.cid-uRuUvY5D8J .content-wrapper .image-wrapper .price-wrapper {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 32px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uRuUvY5D8J .content-wrapper .image-wrapper .price-wrapper {
    padding: 22px;
    position: static;
    min-height: auto;
    width: 100%;
    display: block;
    transform: none;
  }
}
.cid-uRuUvY5D8J .content-wrapper .image-wrapper .price-wrapper .price-wrap {
  width: 100%;
}
.cid-uRuUvY5D8J .content-wrapper .image-wrapper .price-wrapper .price-wrap .mbr-price {
  margin-bottom: 10px;
}
.cid-uRuUvY5D8J .content-wrapper .image-wrapper .price-wrapper .price-wrap .mbr-desc {
  margin-bottom: 0;
}
.cid-uRuUvY5D8J .mbr-section-title {
  color: #212529;
}
.cid-uRuUvY5D8J .mbr-text {
  color: #51565c;
}
.cid-uRuUvY5D8J .mbr-price {
  color: #000000;
}
.cid-uRuUvY5D8J .mbr-desc {
  color: #ff8576;
}
.cid-uRuUvY5D8J .mbr-text,
.cid-uRuUvY5D8J .mbr-section-btn {
  color: #000000;
}
.cid-uRuUvZ97uB {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uRuUvZ97uB .mbr-text {
  color: #000000;
}
.cid-uRuUvZ97uB .mbr-section-subtitle {
  color: #000000;
}
.cid-uRuUvZ97uB .mbr-section-title {
  color: #000000;
}
.cid-uRuUw0dCzY {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #d7feff;
}
.cid-uRuUw0dCzY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRuUw0dCzY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRuUw0dCzY .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uRuUw0dCzY .container-fluid {
    padding: 0 20px;
  }
}
.cid-uRuUw0dCzY .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uRuUw0dCzY .container {
    padding: 0 20px;
  }
}
.cid-uRuUw0dCzY .row {
  justify-content: center;
}
.cid-uRuUw0dCzY .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uRuUw0dCzY .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-uRuUw0dCzY .card-wrapper {
  padding: 32px;
  margin-bottom: 64px;
  border: 2px solid #d7feff;
}
.cid-uRuUw0dCzY .card-wrapper .icon-wrapper {
  margin-bottom: 88px;
}
.cid-uRuUw0dCzY .card-wrapper .icon-wrapper .mbr-iconfont {
  color: #1d1d1d;
  font-size: 42px;
}
.cid-uRuUw0dCzY .card-wrapper .mbr-card-title {
  margin-bottom: 32px;
}
.cid-uRuUw0dCzY .card-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-uRuUw0dCzY .mbr-section-title {
  color: #1d1d1d;
}
.cid-uRuUw0dCzY .mbr-card-title {
  color: #1d1d1d;
}
.cid-uRuUw0dCzY .mbr-text {
  color: #1d1d1d;
}
.cid-uRuUw0dCzY .mbr-card-title,
.cid-uRuUw0dCzY .icon-wrapper {
  text-align: center;
}
.cid-uRuUw0dCzY .mbr-section-title,
.cid-uRuUw0dCzY .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uRuUw1sOEI {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
  background-image: radial-gradient(at 100% -70%, #ffffff, #ffffff, #ffffff);
}
.cid-uRuUw1sOEI .header-text {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uRuUw1sOEI img {
  width: 100%;
  border-radius: 30px;
  margin-left: 2rem;
}
@media (max-width: 992px) {
  .cid-uRuUw1sOEI img {
    margin-left: 0;
    margin-top: 4rem;
  }
}
.cid-uRuUw1sOEI .row {
  margin: auto;
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 4rem 3rem;
  overflow: visible;
  position: relative;
}
@media (max-width: 992px) {
  .cid-uRuUw1sOEI .row {
    padding: 2rem 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uRuUw1sOEI .row {
    padding: 1rem 0rem;
  }
}
.cid-uRuUw1sOEI .row:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid #ffffff;
  border-radius: 30px;
  pointer-events: none;
}
.cid-uRuUw1sOEI .row:after {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.5;
  height: 100%;
  width: 100%;
  pointer-events: none;
  background-color: #ffffff;
  border-radius: 30px;
}
.cid-uRuUw1sOEI .card-header {
  border-bottom: 1px solid #ffffff;
  margin-bottom: 0px!important;
}
.cid-uRuUw1sOEI span {
  transform: rotate(45deg);
  transition: all 0.3s;
}
.cid-uRuUw1sOEI .collapsed span {
  transform: rotate(0deg);
}
.cid-uRuUw1sOEI .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-uRuUw1sOEI .panel-group {
  width: 100%;
}
.cid-uRuUw1sOEI .sign {
  color: currentColor;
  font-family: 'Moririse2' !important;
}
.cid-uRuUw1sOEI .card {
  border-radius: 0px;
}
.cid-uRuUw1sOEI .card .card-header {
  border-radius: 0px;
  padding: 0;
  background-color: transparent;
}
.cid-uRuUw1sOEI .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  margin-bottom: 0;
  font-style: normal;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  line-height: normal;
}
.cid-uRuUw1sOEI .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uRuUw1sOEI .card .card-header a.panel-title h4 {
  padding: 1.5rem 1rem 13px 0px;
  margin-bottom: 0;
}
.cid-uRuUw1sOEI .mbr-section-title,
.cid-uRuUw1sOEI .mbr-section-subtitle,
.cid-uRuUw1sOEI .content-block,
.cid-uRuUw1sOEI .image-wrapper {
  position: relative;
  z-index: 1;
}
.cid-uRuUw1sOEI .panel-text {
  color: #000000;
}
.cid-uRuUw1sOEI .header-text,
.cid-uRuUw1sOEI .sign {
  color: #263d5a;
  text-align: right;
}
.cid-uRuUw1sOEI .mbr-section-title {
  color: #000000;
}
.cid-uRuUw1sOEI .header-text,
.cid-uRuUw1sOEI .sign,
.cid-uRuUw1sOEI .card-header {
  color: #000000;
  text-align: left;
}
.cid-uRuUw1sOEI .mbr-section-subtitle {
  color: #263d5a;
}
.cid-uRuUw2Wk1i {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uRuUw2Wk1i .mbr-text {
  color: #000000;
}
.cid-uRuUw2Wk1i .mbr-section-subtitle {
  color: #000000;
}
.cid-uRuUw2Wk1i .mbr-section-title {
  color: #000000;
}
.cid-uRuUw45sSw {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uRuUw45sSw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRuUw45sSw .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-uRuUw45sSw .container {
    padding: 0 20px;
  }
}
.cid-uRuUw45sSw .row {
  margin: 0;
}
.cid-uRuUw45sSw .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uRuUw45sSw .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uRuUw45sSw .video-block .video-wrapper .app-video-wrapper::before {
  color: #499d7e;
  text-shadow: none;
}
.cid-uRuUw45sSw .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-uRuUw45sSw .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-uRuUw45sSw .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-uRuUw45sSw .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uRuUw5d67v {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uRuUw5d67v .wrapper {
  background: #d7feff;
}
.cid-uRuUw5d67v .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRuUw5d67v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRuUw5d67v .mbr-section-title {
  color: #000000;
}
.cid-uRuUw6m0Of {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uRuUw6m0Of .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRuUw6m0Of .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-uRuUw6m0Of .card-content-text {
    padding: 0 1.5rem 1.5rem 1.5rem;
  }
}
@media (min-width: 768px) {
  .cid-uRuUw6m0Of .card-content-text {
    padding: 0 2.25rem 2.25rem 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-uRuUw6m0Of .card-content-text {
    padding: 1rem 4rem 4rem 4rem;
  }
}
.cid-uRuUw6m0Of .card-wrapper {
  background: #d7feff;
}
.cid-uRuUw6m0Of .mbr-text,
.cid-uRuUw6m0Of .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-uRuUw6m0Of .card-title,
.cid-uRuUw6m0Of .card-box {
  text-align: center;
  color: #000000;
}
.cid-uRuUw6m0Of .image-wrapper img {
  width: 100%;
}
.cid-uRuUw7yrCR {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uRuUw7yrCR .mbr-text {
  color: #000000;
}
.cid-uRuUw7yrCR .mbr-section-subtitle {
  color: #000000;
}
.cid-uRuUw7yrCR .mbr-section-title {
  color: #000000;
}
.cid-uRuUw8ypOJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uRuUw8ypOJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRuUw8ypOJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRuUw8ypOJ .content-wrapper {
  padding: 80px 90px;
  background-color: #d7feff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uRuUw8ypOJ .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-uRuUw8ypOJ .content-wrapper .title-wrapper {
  width: 50%;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uRuUw8ypOJ .content-wrapper .title-wrapper {
    margin-bottom: 24px;
    width: 100%;
  }
}
.cid-uRuUw8ypOJ .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uRuUw8ypOJ .content-wrapper .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uRuUw8ypOJ .content-wrapper .title-wrapper .mbr-text {
  margin-bottom: 38px;
}
@media (max-width: 992px) {
  .cid-uRuUw8ypOJ .content-wrapper .title-wrapper .mbr-text {
    margin-bottom: 16px;
  }
}
.cid-uRuUw8ypOJ .content-wrapper .image-wrapper {
  width: 45%;
}
@media (max-width: 992px) {
  .cid-uRuUw8ypOJ .content-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-uRuUw8ypOJ .content-wrapper .image-wrapper img {
  height: 450px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uRuUw8ypOJ .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-uRuUw8ypOJ .mbr-section-title {
  color: #050f0f;
}
.cid-uRuUw8ypOJ .mbr-text {
  color: #050f0f;
}
.cid-uRuUw8ypOJ .mbr-section-title,
.cid-uRuUw8ypOJ .mbr-section-btn {
  text-align: center;
}
.cid-uRv1qRZVfl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uRv1qRZVfl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRv1qRZVfl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRv1qRZVfl .content-wrapper .mbr-label {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uRv1qRZVfl .content-wrapper .mbr-label {
    width: 100%;
  }
}
.cid-uRv1qRZVfl .content-wrapper .panel-group .card {
  position: relative;
  padding: 0 0 15px 0;
  background-color: transparent;
  border-bottom: 1px solid #000000;
  border-radius: 0 !important;
  margin-bottom: 20px;
}
.cid-uRv1qRZVfl .content-wrapper .panel-group .card:last-child {
  border-bottom: none;
}
.cid-uRv1qRZVfl .content-wrapper .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uRv1qRZVfl .content-wrapper .panel-group .card .card-header .panel-title {
  width: 100%;
}
.cid-uRv1qRZVfl .content-wrapper .panel-group .card .card-header .panel-title .title-wrap {
  display: inline-flex;
  flex-direction: row-reverse;
  align-items: center;
}
.cid-uRv1qRZVfl .content-wrapper .panel-group .card .card-header .panel-title .title-wrap .panel-title-edit {
  margin-bottom: 0;
}
.cid-uRv1qRZVfl .content-wrapper .panel-group .card .card-header .panel-title .title-wrap .icon-wrapper {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  transition: all 0.3s ease-in-out;
  background-color: #d7feff;
}
.cid-uRv1qRZVfl .content-wrapper .panel-group .card .card-header .panel-title .title-wrap .icon-wrapper .mbr-iconfont {
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  color: #000000;
}
.cid-uRv1qRZVfl .content-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .title-wrap .icon-wrapper {
  background-color: #148cdb;
}
.cid-uRv1qRZVfl .content-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .title-wrap .icon-wrapper .mbr-iconfont {
  transform: rotate(-45deg);
  color: #000000;
}
.cid-uRv1qRZVfl .content-wrapper .panel-group .card .panel-collapse .panel-body {
  margin: 40px 0;
  padding-left: 65px;
}
@media (max-width: 992px) {
  .cid-uRv1qRZVfl .content-wrapper .panel-group .card .panel-collapse .panel-body {
    padding-left: 0;
    margin: 15px 0 0 0;
  }
}
.cid-uRv1qRZVfl .content-wrapper .panel-group .card .panel-collapse .panel-body .panel-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uRv1qRZVfl .content-wrapper .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 100%;
  }
}
.cid-uRv1qRZVfl .mbr-label {
  color: #000000;
}
.cid-uRv1qRZVfl .panel-title-edit {
  color: #000000;
}
.cid-uRv1qRZVfl .panel-text {
  color: #000000;
}
.cid-uRuUw9LOtU {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background: #ffffff;
}
.cid-uRuUw9LOtU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRuUw9LOtU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRuUw9LOtU .google-map {
  height: 30rem;
  position: relative;
  border-radius: 2rem;
}
.cid-uRuUw9LOtU .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-uRuUw9LOtU .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-uRuUw9LOtU .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uRuUw9LOtU .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uRuUw9LOtU .content-head {
  max-width: 800px;
}
.cid-uRuUw9LOtU .mbr-section-title {
  color: #000000;
}
.cid-uRuUwaSSN8 {
  padding-top: 7rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #d7feff;
}
.cid-uRuUwaSSN8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRuUwaSSN8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRuUwaSSN8 .row {
  justify-content: space-between;
}
.cid-uRuUwaSSN8 .mbr-section-title {
  margin: 0;
  color: #000000;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uRuUwaSSN8 .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uRuUwaSSN8 .mbr-text {
  margin-bottom: 10px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uRuUwaSSN8 .mbr-section-btn {
    margin-bottom: 20px;
  }
}
.cid-uRuUwaSSN8 .list {
  padding: 0;
  margin-bottom: 0;
  list-style-type: none;
  color: #000000;
}
.cid-uRuUwaSSN8 .list li {
  margin-bottom: 25px;
}
.cid-uRuUwaSSN8 .list li:last-child {
  margin-bottom: 0;
}
.cid-uRuUwaSSN8 .mbr-desc {
  margin-bottom: 8px;
}
.cid-uRuUwaSSN8 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uRuUwaSSN8 .social-row .soc-item {
  margin: 9px 9px 0 0;
}
.cid-uRuUwaSSN8 .social-row .soc-item a:hover .mbr-iconfont {
  border-color: #ffffff;
}
.cid-uRuUwaSSN8 .social-row .soc-item a .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 37px;
  height: 37px;
  font-size: 18px;
  border-radius: 100%;
  border: 1px solid #000000;
  transition: all .3s ease;
}
.cid-uRuUwaSSN8 .copyright {
  margin: 110px 0 0 0;
  padding: 17px 70px;
  position: relative;
  color: #000000;
  text-align: center;
}
.cid-uRuUwaSSN8 .copyright:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100rem;
  display: block;
  min-width: 1000vh;
  height: 1px;
  background-color: #000000;
  opacity: .4;
}
@media (max-width: 992px) {
  .cid-uRuUwaSSN8 .copyright {
    margin-top: 50px;
    padding: 17px 24px;
  }
}
.cid-uRuUwaSSN8 .mbr-desc,
.cid-uRuUwaSSN8 .mbr-iconfont {
  color: #000000;
}
.cid-uRuUwaSSN8 .mbr-text,
.cid-uRuUwaSSN8 .mbr-section-btn {
  color: #000000;
}
.cid-uRuYxhXI6N .navbar-dropdown {
  position: relative !important;
}
.cid-uRuYxhXI6N .container-fluid {
  padding-left: 80px;
  padding-right: 80px;
}
@media (max-width: 1440px) {
  .cid-uRuYxhXI6N .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 992px) {
  .cid-uRuYxhXI6N .container-fluid {
    padding-left: 12px;
    padding-right: 12px;
  }
}
.cid-uRuYxhXI6N .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-uRuYxhXI6N .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-uRuYxhXI6N .dropdown-item {
  border: none !important;
  background: #ffffff !important;
}
.cid-uRuYxhXI6N .dropdown-item:hover,
.cid-uRuYxhXI6N .dropdown-item:focus {
  background: #ffffff !important;
  color: #000000 !important;
}
.cid-uRuYxhXI6N .dropdown-item:hover span {
  color: white;
}
.cid-uRuYxhXI6N .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uRuYxhXI6N .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uRuYxhXI6N .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uRuYxhXI6N .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uRuYxhXI6N .nav-link {
  position: relative;
}
.cid-uRuYxhXI6N .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-uRuYxhXI6N .container {
    flex-wrap: nowrap;
  }
}
.cid-uRuYxhXI6N .iconfont-wrapper {
  color: #c10b02 !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-uRuYxhXI6N .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uRuYxhXI6N .dropdown-menu,
.cid-uRuYxhXI6N .navbar.opened {
  background: #ffffff !important;
}
.cid-uRuYxhXI6N .nav-item:focus,
.cid-uRuYxhXI6N .nav-link:focus {
  outline: none;
}
.cid-uRuYxhXI6N .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uRuYxhXI6N .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-uRuYxhXI6N .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uRuYxhXI6N .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uRuYxhXI6N .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uRuYxhXI6N .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uRuYxhXI6N .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uRuYxhXI6N .navbar.opened {
  transition: all 0.3s;
}
.cid-uRuYxhXI6N .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 22px;
  line-height: 1.5;
  border-radius: 0;
  margin-left: 4px;
  margin-bottom: 4px;
}
.cid-uRuYxhXI6N .navbar .navbar-logo img {
  width: auto;
}
.cid-uRuYxhXI6N .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uRuYxhXI6N .navbar.collapsed {
  justify-content: center;
}
.cid-uRuYxhXI6N .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uRuYxhXI6N .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uRuYxhXI6N .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uRuYxhXI6N .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uRuYxhXI6N .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uRuYxhXI6N .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-uRuYxhXI6N .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uRuYxhXI6N .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uRuYxhXI6N .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uRuYxhXI6N .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uRuYxhXI6N .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uRuYxhXI6N .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uRuYxhXI6N .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uRuYxhXI6N .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-uRuYxhXI6N .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uRuYxhXI6N .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uRuYxhXI6N .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .cid-uRuYxhXI6N .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-uRuYxhXI6N .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uRuYxhXI6N .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uRuYxhXI6N .navbar.navbar-short {
  min-height: 96px;
}
.cid-uRuYxhXI6N .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-uRuYxhXI6N .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-uRuYxhXI6N .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uRuYxhXI6N .navbar-brand .navbar-caption:hover,
.cid-uRuYxhXI6N .navbar-brand .navbar-caption:focus {
  color: #000000 !important;
}
.cid-uRuYxhXI6N .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uRuYxhXI6N .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-uRuYxhXI6N .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #000000 !important;
}
.cid-uRuYxhXI6N .dropdown-item.active,
.cid-uRuYxhXI6N .dropdown-item:active {
  background-color: transparent;
}
.cid-uRuYxhXI6N .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uRuYxhXI6N .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uRuYxhXI6N .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uRuYxhXI6N .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-uRuYxhXI6N .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-uRuYxhXI6N .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-uRuYxhXI6N .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uRuYxhXI6N ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-uRuYxhXI6N ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-uRuYxhXI6N .navbar-buttons {
  text-align: center;
  width: auto;
}
.cid-uRuYxhXI6N .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  min-height: auto;
  width: auto;
}
.cid-uRuYxhXI6N .navbar-buttons .btn .mbr-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .cid-uRuYxhXI6N .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-uRuYxhXI6N button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #ffffff !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uRuYxhXI6N button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uRuYxhXI6N button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-uRuYxhXI6N button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uRuYxhXI6N button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uRuYxhXI6N button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-uRuYxhXI6N nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uRuYxhXI6N nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uRuYxhXI6N nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uRuYxhXI6N nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uRuYxhXI6N .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uRuYxhXI6N a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uRuYxhXI6N .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-uRuYxhXI6N .navbar {
    height: 70px;
  }
  .cid-uRuYxhXI6N .navbar.opened {
    height: auto;
  }
  .cid-uRuYxhXI6N .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uRuYxhXI6N .navbar-nav {
  margin: 0 auto;
}
.cid-uRuYxhXI6N .nav-item {
  padding: 0;
  margin: 0;
}
.cid-uRuYxhXI6N .nav-item .nav-link {
  padding: 8px 22px !important;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border-radius: 3rem;
}
.cid-uRuYxhXI6N .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-uRuYxhXI6N .nav-item .nav-link:hover,
.cid-uRuYxhXI6N .nav-item .nav-link:focus {
  background-color: transparent;
  color: #000000 !important;
  opacity: .5;
}
.cid-uRuYxhXI6N .nav-item .nav-link:hover::after,
.cid-uRuYxhXI6N .nav-item .nav-link:focus::after {
  color: inherit !important;
}
.cid-uRuYxhXI6N .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-uRuYxhXI6N .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-uRuYxhXI6N .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-uRuYxhXI6N .navbar {
    justify-content: flex-start !important;
  }
  .cid-uRuYxhXI6N .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-uRuYxhXI6N .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-uRuYxhXI6N .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-uRuYxhXI6N .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-uRuYxhXI6N .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .cid-uRuYxhXI6N .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-uRuYxhXI6N .content-wrap {
  min-height: 110px;
}
.cid-uRuYxiVJUr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d7feff;
}
.cid-uRuYxiVJUr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRuYxiVJUr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRuYxiVJUr .content-wrapper {
  display: flex;
  position: relative;
  padding: 60px;
}
@media (max-width: 992px) {
  .cid-uRuYxiVJUr .content-wrapper {
    padding: 30px 20px;
  }
}
.cid-uRuYxiVJUr .content-wrapper .image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uRuYxiVJUr .content-wrapper .image-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uRuYxiVJUr .content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background-image: linear-gradient(0.251turn, #d7feff 37%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}
.cid-uRuYxiVJUr .content-wrapper .content-wrap {
  position: relative;
  z-index: 2;
  display: inline-block;
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uRuYxiVJUr .content-wrapper .content-wrap {
    width: 100%;
  }
}
.cid-uRuYxiVJUr .content-wrapper .content-wrap .desc-wrapper .mbr-desc {
  display: inline-block;
  background-color: #d7feff;
  padding: 8px 16px;
  margin-bottom: 32px;
}
.cid-uRuYxiVJUr .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uRuYxiVJUr .content-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uRuYxiVJUr .content-wrapper .content-wrap .mbr-section-btn {
  margin-top: 64px;
}
.cid-uRuYxiVJUr .content-wrapper .content-wrap .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uRuYxiVJUr .mbr-section-title {
  color: #404349;
}
.cid-uRuYxiVJUr .mbr-text {
  color: #000000;
}
.cid-uRuYxiVJUr .mbr-desc {
  color: #b19a7c;
}
.cid-uRuYxiVJUr .mbr-section-title,
.cid-uRuYxiVJUr .mbr-section-btn {
  color: #000000;
}
.cid-uRuYxjXSnB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uRuYxjXSnB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRuYxjXSnB .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-uRuYxjXSnB .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uRuYxjXSnB .container {
    padding: 0 12px;
  }
}
.cid-uRuYxjXSnB .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uRuYxjXSnB .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-uRuYxjXSnB .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-uRuYxjXSnB .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #000000;
  width: 22px;
  height: 22px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-uRuYxjXSnB .mbr-section-title {
  color: #000000;
}
.cid-uRuYxkWdhe {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d7feff;
}
.cid-uRuYxkWdhe .card-wrapper {
  background: #ffffff;
  padding: 5rem;
}
@media (max-width: 992px) {
  .cid-uRuYxkWdhe .card-wrapper {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uRuYxkWdhe .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-uRuYxkWdhe .mbr-text {
  color: #000000;
}
.cid-uRuYxkWdhe .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uRuYxkWdhe .mbr-section-title {
  color: #000000;
}
.cid-uRuYxlPQgN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uRuYxlPQgN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRuYxlPQgN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRuYxlPQgN .title-wrapper {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uRuYxlPQgN .title-wrapper {
    padding: 0;
  }
}
.cid-uRuYxlPQgN .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
.cid-uRuYxlPQgN .title-wrapper .mbr-section-title span {
  color: #000000;
}
@media (max-width: 992px) {
  .cid-uRuYxlPQgN .title-wrapper .mbr-section-title {
    margin-bottom: 46px;
  }
}
.cid-uRuYxlPQgN .content-wrapper {
  background-color: #d7feff;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uRuYxlPQgN .content-wrapper {
    display: block;
  }
}
.cid-uRuYxlPQgN .content-wrapper .content-wrap {
  padding: 100px 60px 100px;
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uRuYxlPQgN .content-wrapper .content-wrap {
    padding: 46px 22px;
    width: 100%;
  }
}
.cid-uRuYxlPQgN .content-wrapper .content-wrap .mbr-text {
  margin-bottom: 36px;
}
@media (max-width: 992px) {
  .cid-uRuYxlPQgN .content-wrapper .content-wrap .mbr-text {
    margin-bottom: 22px;
  }
}
.cid-uRuYxlPQgN .content-wrapper .content-wrap .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uRuYxlPQgN .content-wrapper .image-wrapper {
  position: relative;
  width: 40%;
  min-height: 350px;
}
@media (max-width: 1200px) {
  .cid-uRuYxlPQgN .content-wrapper .image-wrapper {
    width: 45%;
  }
}
@media (max-width: 992px) {
  .cid-uRuYxlPQgN .content-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-uRuYxlPQgN .content-wrapper .image-wrapper .image-wrap {
  height: 100%;
}
.cid-uRuYxlPQgN .content-wrapper .image-wrapper .image-wrap img {
  height: 100%;
  width: 100%;
  border-radius: 0 !important;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uRuYxlPQgN .content-wrapper .image-wrapper .image-wrap img {
    height: 350px;
  }
}
.cid-uRuYxlPQgN .content-wrapper .image-wrapper .price-wrapper {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 32px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uRuYxlPQgN .content-wrapper .image-wrapper .price-wrapper {
    padding: 22px;
    position: static;
    min-height: auto;
    width: 100%;
    display: block;
    transform: none;
  }
}
.cid-uRuYxlPQgN .content-wrapper .image-wrapper .price-wrapper .price-wrap {
  width: 100%;
}
.cid-uRuYxlPQgN .content-wrapper .image-wrapper .price-wrapper .price-wrap .mbr-price {
  margin-bottom: 10px;
}
.cid-uRuYxlPQgN .content-wrapper .image-wrapper .price-wrapper .price-wrap .mbr-desc {
  margin-bottom: 0;
}
.cid-uRuYxlPQgN .mbr-section-title {
  color: #212529;
}
.cid-uRuYxlPQgN .mbr-text {
  color: #51565c;
}
.cid-uRuYxlPQgN .mbr-price {
  color: #000000;
}
.cid-uRuYxlPQgN .mbr-desc {
  color: #ff8576;
}
.cid-uRuYxlPQgN .mbr-text,
.cid-uRuYxlPQgN .mbr-section-btn {
  color: #000000;
}
.cid-uRuYxmUVj4 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uRuYxmUVj4 .mbr-text {
  color: #000000;
}
.cid-uRuYxmUVj4 .mbr-section-subtitle {
  color: #000000;
}
.cid-uRuYxmUVj4 .mbr-section-title {
  color: #000000;
}
.cid-uRuYxnNzi1 {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #d7feff;
}
.cid-uRuYxnNzi1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRuYxnNzi1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRuYxnNzi1 .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uRuYxnNzi1 .container-fluid {
    padding: 0 20px;
  }
}
.cid-uRuYxnNzi1 .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uRuYxnNzi1 .container {
    padding: 0 20px;
  }
}
.cid-uRuYxnNzi1 .row {
  justify-content: center;
}
.cid-uRuYxnNzi1 .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uRuYxnNzi1 .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-uRuYxnNzi1 .card-wrapper {
  padding: 32px;
  margin-bottom: 64px;
  border: 2px solid #d7feff;
}
.cid-uRuYxnNzi1 .card-wrapper .icon-wrapper {
  margin-bottom: 88px;
}
.cid-uRuYxnNzi1 .card-wrapper .icon-wrapper .mbr-iconfont {
  color: #1d1d1d;
  font-size: 42px;
}
.cid-uRuYxnNzi1 .card-wrapper .mbr-card-title {
  margin-bottom: 32px;
}
.cid-uRuYxnNzi1 .card-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-uRuYxnNzi1 .mbr-section-title {
  color: #1d1d1d;
}
.cid-uRuYxnNzi1 .mbr-card-title {
  color: #1d1d1d;
}
.cid-uRuYxnNzi1 .mbr-text {
  color: #1d1d1d;
}
.cid-uRuYxnNzi1 .mbr-card-title,
.cid-uRuYxnNzi1 .icon-wrapper {
  text-align: center;
}
.cid-uRuYxnNzi1 .mbr-section-title,
.cid-uRuYxnNzi1 .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uRuYxp5lgi {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
  background-image: radial-gradient(at 100% -70%, #ffffff, #ffffff, #ffffff);
}
.cid-uRuYxp5lgi .header-text {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uRuYxp5lgi img {
  width: 100%;
  border-radius: 30px;
  margin-left: 2rem;
}
@media (max-width: 992px) {
  .cid-uRuYxp5lgi img {
    margin-left: 0;
    margin-top: 4rem;
  }
}
.cid-uRuYxp5lgi .row {
  margin: auto;
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 4rem 3rem;
  overflow: visible;
  position: relative;
}
@media (max-width: 992px) {
  .cid-uRuYxp5lgi .row {
    padding: 2rem 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uRuYxp5lgi .row {
    padding: 1rem 0rem;
  }
}
.cid-uRuYxp5lgi .row:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid #ffffff;
  border-radius: 30px;
  pointer-events: none;
}
.cid-uRuYxp5lgi .row:after {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.5;
  height: 100%;
  width: 100%;
  pointer-events: none;
  background-color: #ffffff;
  border-radius: 30px;
}
.cid-uRuYxp5lgi .card-header {
  border-bottom: 1px solid #ffffff;
  margin-bottom: 0px!important;
}
.cid-uRuYxp5lgi span {
  transform: rotate(45deg);
  transition: all 0.3s;
}
.cid-uRuYxp5lgi .collapsed span {
  transform: rotate(0deg);
}
.cid-uRuYxp5lgi .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-uRuYxp5lgi .panel-group {
  width: 100%;
}
.cid-uRuYxp5lgi .sign {
  color: currentColor;
  font-family: 'Moririse2' !important;
}
.cid-uRuYxp5lgi .card {
  border-radius: 0px;
}
.cid-uRuYxp5lgi .card .card-header {
  border-radius: 0px;
  padding: 0;
  background-color: transparent;
}
.cid-uRuYxp5lgi .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  margin-bottom: 0;
  font-style: normal;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  line-height: normal;
}
.cid-uRuYxp5lgi .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uRuYxp5lgi .card .card-header a.panel-title h4 {
  padding: 1.5rem 1rem 13px 0px;
  margin-bottom: 0;
}
.cid-uRuYxp5lgi .mbr-section-title,
.cid-uRuYxp5lgi .mbr-section-subtitle,
.cid-uRuYxp5lgi .content-block,
.cid-uRuYxp5lgi .image-wrapper {
  position: relative;
  z-index: 1;
}
.cid-uRuYxp5lgi .panel-text {
  color: #000000;
}
.cid-uRuYxp5lgi .header-text,
.cid-uRuYxp5lgi .sign {
  color: #263d5a;
  text-align: right;
}
.cid-uRuYxp5lgi .mbr-section-title {
  color: #000000;
}
.cid-uRuYxp5lgi .header-text,
.cid-uRuYxp5lgi .sign,
.cid-uRuYxp5lgi .card-header {
  color: #000000;
  text-align: left;
}
.cid-uRuYxp5lgi .mbr-section-subtitle {
  color: #263d5a;
}
.cid-uRuYxqquD8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uRuYxqquD8 .mbr-text {
  color: #000000;
}
.cid-uRuYxqquD8 .mbr-section-subtitle {
  color: #000000;
}
.cid-uRuYxqquD8 .mbr-section-title {
  color: #000000;
}
.cid-uRuYxrtwYy {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uRuYxrtwYy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRuYxrtwYy .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-uRuYxrtwYy .container {
    padding: 0 20px;
  }
}
.cid-uRuYxrtwYy .row {
  margin: 0;
}
.cid-uRuYxrtwYy .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uRuYxrtwYy .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uRuYxrtwYy .video-block .video-wrapper .app-video-wrapper::before {
  color: #499d7e;
  text-shadow: none;
}
.cid-uRuYxrtwYy .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-uRuYxrtwYy .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-uRuYxrtwYy .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-uRuYxrtwYy .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uRuYxsyC0L {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uRuYxsyC0L .wrapper {
  background: #d7feff;
}
.cid-uRuYxsyC0L .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRuYxsyC0L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRuYxsyC0L .mbr-section-title {
  color: #000000;
}
.cid-uRuYxtC1Vd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uRuYxtC1Vd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRuYxtC1Vd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-uRuYxtC1Vd .card-content-text {
    padding: 0 1.5rem 1.5rem 1.5rem;
  }
}
@media (min-width: 768px) {
  .cid-uRuYxtC1Vd .card-content-text {
    padding: 0 2.25rem 2.25rem 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-uRuYxtC1Vd .card-content-text {
    padding: 1rem 4rem 4rem 4rem;
  }
}
.cid-uRuYxtC1Vd .card-wrapper {
  background: #d7feff;
}
.cid-uRuYxtC1Vd .mbr-text,
.cid-uRuYxtC1Vd .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-uRuYxtC1Vd .card-title,
.cid-uRuYxtC1Vd .card-box {
  text-align: center;
  color: #000000;
}
.cid-uRuYxtC1Vd .image-wrapper img {
  width: 100%;
}
.cid-uRuYxuLjgS {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uRuYxuLjgS .mbr-text {
  color: #000000;
}
.cid-uRuYxuLjgS .mbr-section-subtitle {
  color: #000000;
}
.cid-uRuYxuLjgS .mbr-section-title {
  color: #000000;
}
.cid-uRuYxvSndc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uRuYxvSndc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRuYxvSndc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRuYxvSndc .content-wrapper {
  padding: 80px 90px;
  background-color: #d7feff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uRuYxvSndc .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-uRuYxvSndc .content-wrapper .title-wrapper {
  width: 50%;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uRuYxvSndc .content-wrapper .title-wrapper {
    margin-bottom: 24px;
    width: 100%;
  }
}
.cid-uRuYxvSndc .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uRuYxvSndc .content-wrapper .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uRuYxvSndc .content-wrapper .title-wrapper .mbr-text {
  margin-bottom: 38px;
}
@media (max-width: 992px) {
  .cid-uRuYxvSndc .content-wrapper .title-wrapper .mbr-text {
    margin-bottom: 16px;
  }
}
.cid-uRuYxvSndc .content-wrapper .image-wrapper {
  width: 45%;
}
@media (max-width: 992px) {
  .cid-uRuYxvSndc .content-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-uRuYxvSndc .content-wrapper .image-wrapper img {
  height: 450px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uRuYxvSndc .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-uRuYxvSndc .mbr-section-title {
  color: #050f0f;
}
.cid-uRuYxvSndc .mbr-text {
  color: #050f0f;
}
.cid-uRuYxvSndc .mbr-section-title,
.cid-uRuYxvSndc .mbr-section-btn {
  text-align: center;
}
.cid-uRv0idtmgu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uRv0idtmgu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRv0idtmgu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRv0idtmgu .content-wrapper .mbr-label {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uRv0idtmgu .content-wrapper .mbr-label {
    width: 100%;
  }
}
.cid-uRv0idtmgu .content-wrapper .panel-group .card {
  position: relative;
  padding: 0 0 15px 0;
  background-color: transparent;
  border-bottom: 1px solid #000000;
  border-radius: 0 !important;
  margin-bottom: 20px;
}
.cid-uRv0idtmgu .content-wrapper .panel-group .card:last-child {
  border-bottom: none;
}
.cid-uRv0idtmgu .content-wrapper .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uRv0idtmgu .content-wrapper .panel-group .card .card-header .panel-title {
  width: 100%;
}
.cid-uRv0idtmgu .content-wrapper .panel-group .card .card-header .panel-title .title-wrap {
  display: inline-flex;
  flex-direction: row-reverse;
  align-items: center;
}
.cid-uRv0idtmgu .content-wrapper .panel-group .card .card-header .panel-title .title-wrap .panel-title-edit {
  margin-bottom: 0;
}
.cid-uRv0idtmgu .content-wrapper .panel-group .card .card-header .panel-title .title-wrap .icon-wrapper {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  transition: all 0.3s ease-in-out;
  background-color: #d7feff;
}
.cid-uRv0idtmgu .content-wrapper .panel-group .card .card-header .panel-title .title-wrap .icon-wrapper .mbr-iconfont {
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  color: #000000;
}
.cid-uRv0idtmgu .content-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .title-wrap .icon-wrapper {
  background-color: #148cdb;
}
.cid-uRv0idtmgu .content-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .title-wrap .icon-wrapper .mbr-iconfont {
  transform: rotate(-45deg);
  color: #000000;
}
.cid-uRv0idtmgu .content-wrapper .panel-group .card .panel-collapse .panel-body {
  margin: 40px 0;
  padding-left: 65px;
}
@media (max-width: 992px) {
  .cid-uRv0idtmgu .content-wrapper .panel-group .card .panel-collapse .panel-body {
    padding-left: 0;
    margin: 15px 0 0 0;
  }
}
.cid-uRv0idtmgu .content-wrapper .panel-group .card .panel-collapse .panel-body .panel-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uRv0idtmgu .content-wrapper .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 100%;
  }
}
.cid-uRv0idtmgu .mbr-label {
  color: #000000;
}
.cid-uRv0idtmgu .panel-title-edit {
  color: #000000;
}
.cid-uRv0idtmgu .panel-text {
  color: #000000;
}
.cid-uRuYxx3FUc {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background: #ffffff;
}
.cid-uRuYxx3FUc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRuYxx3FUc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRuYxx3FUc .google-map {
  height: 30rem;
  position: relative;
  border-radius: 2rem;
}
.cid-uRuYxx3FUc .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-uRuYxx3FUc .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-uRuYxx3FUc .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uRuYxx3FUc .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uRuYxx3FUc .content-head {
  max-width: 800px;
}
.cid-uRuYxx3FUc .mbr-section-title {
  color: #000000;
}
.cid-uRuYxyabJM {
  padding-top: 7rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #d7feff;
}
.cid-uRuYxyabJM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRuYxyabJM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRuYxyabJM .row {
  justify-content: space-between;
}
.cid-uRuYxyabJM .mbr-section-title {
  margin: 0;
  color: #000000;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uRuYxyabJM .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uRuYxyabJM .mbr-text {
  margin-bottom: 10px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uRuYxyabJM .mbr-section-btn {
    margin-bottom: 20px;
  }
}
.cid-uRuYxyabJM .list {
  padding: 0;
  margin-bottom: 0;
  list-style-type: none;
  color: #000000;
}
.cid-uRuYxyabJM .list li {
  margin-bottom: 25px;
}
.cid-uRuYxyabJM .list li:last-child {
  margin-bottom: 0;
}
.cid-uRuYxyabJM .mbr-desc {
  margin-bottom: 8px;
}
.cid-uRuYxyabJM .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uRuYxyabJM .social-row .soc-item {
  margin: 9px 9px 0 0;
}
.cid-uRuYxyabJM .social-row .soc-item a:hover .mbr-iconfont {
  border-color: #ffffff;
}
.cid-uRuYxyabJM .social-row .soc-item a .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 37px;
  height: 37px;
  font-size: 18px;
  border-radius: 100%;
  border: 1px solid #000000;
  transition: all .3s ease;
}
.cid-uRuYxyabJM .copyright {
  margin: 110px 0 0 0;
  padding: 17px 70px;
  position: relative;
  color: #000000;
  text-align: center;
}
.cid-uRuYxyabJM .copyright:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100rem;
  display: block;
  min-width: 1000vh;
  height: 1px;
  background-color: #000000;
  opacity: .4;
}
@media (max-width: 992px) {
  .cid-uRuYxyabJM .copyright {
    margin-top: 50px;
    padding: 17px 24px;
  }
}
.cid-uRuYxyabJM .mbr-desc,
.cid-uRuYxyabJM .mbr-iconfont {
  color: #000000;
}
.cid-uRuYxyabJM .mbr-text,
.cid-uRuYxyabJM .mbr-section-btn {
  color: #000000;
}
.cid-uRv17ZB85q .navbar-dropdown {
  position: relative !important;
}
.cid-uRv17ZB85q .container-fluid {
  padding-left: 80px;
  padding-right: 80px;
}
@media (max-width: 1440px) {
  .cid-uRv17ZB85q .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 992px) {
  .cid-uRv17ZB85q .container-fluid {
    padding-left: 12px;
    padding-right: 12px;
  }
}
.cid-uRv17ZB85q .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-uRv17ZB85q .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-uRv17ZB85q .dropdown-item {
  border: none !important;
  background: #ffffff !important;
}
.cid-uRv17ZB85q .dropdown-item:hover,
.cid-uRv17ZB85q .dropdown-item:focus {
  background: #ffffff !important;
  color: #000000 !important;
}
.cid-uRv17ZB85q .dropdown-item:hover span {
  color: white;
}
.cid-uRv17ZB85q .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uRv17ZB85q .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uRv17ZB85q .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uRv17ZB85q .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uRv17ZB85q .nav-link {
  position: relative;
}
.cid-uRv17ZB85q .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-uRv17ZB85q .container {
    flex-wrap: nowrap;
  }
}
.cid-uRv17ZB85q .iconfont-wrapper {
  color: #c10b02 !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-uRv17ZB85q .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uRv17ZB85q .dropdown-menu,
.cid-uRv17ZB85q .navbar.opened {
  background: #ffffff !important;
}
.cid-uRv17ZB85q .nav-item:focus,
.cid-uRv17ZB85q .nav-link:focus {
  outline: none;
}
.cid-uRv17ZB85q .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uRv17ZB85q .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-uRv17ZB85q .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uRv17ZB85q .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uRv17ZB85q .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uRv17ZB85q .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uRv17ZB85q .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uRv17ZB85q .navbar.opened {
  transition: all 0.3s;
}
.cid-uRv17ZB85q .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 22px;
  line-height: 1.5;
  border-radius: 0;
  margin-left: 4px;
  margin-bottom: 4px;
}
.cid-uRv17ZB85q .navbar .navbar-logo img {
  width: auto;
}
.cid-uRv17ZB85q .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uRv17ZB85q .navbar.collapsed {
  justify-content: center;
}
.cid-uRv17ZB85q .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uRv17ZB85q .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uRv17ZB85q .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uRv17ZB85q .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uRv17ZB85q .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uRv17ZB85q .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-uRv17ZB85q .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uRv17ZB85q .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uRv17ZB85q .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uRv17ZB85q .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uRv17ZB85q .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uRv17ZB85q .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uRv17ZB85q .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uRv17ZB85q .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-uRv17ZB85q .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uRv17ZB85q .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uRv17ZB85q .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .cid-uRv17ZB85q .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-uRv17ZB85q .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uRv17ZB85q .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uRv17ZB85q .navbar.navbar-short {
  min-height: 96px;
}
.cid-uRv17ZB85q .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-uRv17ZB85q .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-uRv17ZB85q .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uRv17ZB85q .navbar-brand .navbar-caption:hover,
.cid-uRv17ZB85q .navbar-brand .navbar-caption:focus {
  color: #000000 !important;
}
.cid-uRv17ZB85q .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uRv17ZB85q .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-uRv17ZB85q .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #000000 !important;
}
.cid-uRv17ZB85q .dropdown-item.active,
.cid-uRv17ZB85q .dropdown-item:active {
  background-color: transparent;
}
.cid-uRv17ZB85q .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uRv17ZB85q .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uRv17ZB85q .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uRv17ZB85q .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-uRv17ZB85q .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-uRv17ZB85q .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-uRv17ZB85q .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uRv17ZB85q ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-uRv17ZB85q ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-uRv17ZB85q .navbar-buttons {
  text-align: center;
  width: auto;
}
.cid-uRv17ZB85q .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  min-height: auto;
  width: auto;
}
.cid-uRv17ZB85q .navbar-buttons .btn .mbr-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .cid-uRv17ZB85q .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-uRv17ZB85q button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #ffffff !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uRv17ZB85q button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uRv17ZB85q button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-uRv17ZB85q button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uRv17ZB85q button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uRv17ZB85q button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-uRv17ZB85q nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uRv17ZB85q nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uRv17ZB85q nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uRv17ZB85q nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uRv17ZB85q .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uRv17ZB85q a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uRv17ZB85q .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-uRv17ZB85q .navbar {
    height: 70px;
  }
  .cid-uRv17ZB85q .navbar.opened {
    height: auto;
  }
  .cid-uRv17ZB85q .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uRv17ZB85q .navbar-nav {
  margin: 0 auto;
}
.cid-uRv17ZB85q .nav-item {
  padding: 0;
  margin: 0;
}
.cid-uRv17ZB85q .nav-item .nav-link {
  padding: 8px 22px !important;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border-radius: 3rem;
}
.cid-uRv17ZB85q .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-uRv17ZB85q .nav-item .nav-link:hover,
.cid-uRv17ZB85q .nav-item .nav-link:focus {
  background-color: transparent;
  color: #000000 !important;
  opacity: .5;
}
.cid-uRv17ZB85q .nav-item .nav-link:hover::after,
.cid-uRv17ZB85q .nav-item .nav-link:focus::after {
  color: inherit !important;
}
.cid-uRv17ZB85q .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-uRv17ZB85q .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-uRv17ZB85q .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-uRv17ZB85q .navbar {
    justify-content: flex-start !important;
  }
  .cid-uRv17ZB85q .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-uRv17ZB85q .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-uRv17ZB85q .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-uRv17ZB85q .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-uRv17ZB85q .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .cid-uRv17ZB85q .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-uRv17ZB85q .content-wrap {
  min-height: 110px;
}
.cid-uRv180W3cB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d7feff;
}
.cid-uRv180W3cB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRv180W3cB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRv180W3cB .content-wrapper {
  display: flex;
  position: relative;
  padding: 60px;
}
@media (max-width: 992px) {
  .cid-uRv180W3cB .content-wrapper {
    padding: 30px 20px;
  }
}
.cid-uRv180W3cB .content-wrapper .image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uRv180W3cB .content-wrapper .image-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uRv180W3cB .content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background-image: linear-gradient(0.251turn, #d7feff 37%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}
.cid-uRv180W3cB .content-wrapper .content-wrap {
  position: relative;
  z-index: 2;
  display: inline-block;
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uRv180W3cB .content-wrapper .content-wrap {
    width: 100%;
  }
}
.cid-uRv180W3cB .content-wrapper .content-wrap .desc-wrapper .mbr-desc {
  display: inline-block;
  background-color: #d7feff;
  padding: 8px 16px;
  margin-bottom: 32px;
}
.cid-uRv180W3cB .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uRv180W3cB .content-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uRv180W3cB .content-wrapper .content-wrap .mbr-section-btn {
  margin-top: 64px;
}
.cid-uRv180W3cB .content-wrapper .content-wrap .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uRv180W3cB .mbr-section-title {
  color: #404349;
}
.cid-uRv180W3cB .mbr-text {
  color: #000000;
}
.cid-uRv180W3cB .mbr-desc {
  color: #b19a7c;
}
.cid-uRv180W3cB .mbr-section-title,
.cid-uRv180W3cB .mbr-section-btn {
  color: #000000;
}
.cid-uRv1828n28 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uRv1828n28 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRv1828n28 .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-uRv1828n28 .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uRv1828n28 .container {
    padding: 0 12px;
  }
}
.cid-uRv1828n28 .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uRv1828n28 .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-uRv1828n28 .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-uRv1828n28 .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #000000;
  width: 22px;
  height: 22px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-uRv1828n28 .mbr-section-title {
  color: #000000;
}
.cid-uRv1838SsI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d7feff;
}
.cid-uRv1838SsI .card-wrapper {
  background: #ffffff;
  padding: 5rem;
}
@media (max-width: 992px) {
  .cid-uRv1838SsI .card-wrapper {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uRv1838SsI .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-uRv1838SsI .mbr-text {
  color: #000000;
}
.cid-uRv1838SsI .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uRv1838SsI .mbr-section-title {
  color: #000000;
}
.cid-uRv1844naD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uRv1844naD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRv1844naD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRv1844naD .title-wrapper {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uRv1844naD .title-wrapper {
    padding: 0;
  }
}
.cid-uRv1844naD .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
.cid-uRv1844naD .title-wrapper .mbr-section-title span {
  color: #000000;
}
@media (max-width: 992px) {
  .cid-uRv1844naD .title-wrapper .mbr-section-title {
    margin-bottom: 46px;
  }
}
.cid-uRv1844naD .content-wrapper {
  background-color: #d7feff;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uRv1844naD .content-wrapper {
    display: block;
  }
}
.cid-uRv1844naD .content-wrapper .content-wrap {
  padding: 100px 60px 100px;
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uRv1844naD .content-wrapper .content-wrap {
    padding: 46px 22px;
    width: 100%;
  }
}
.cid-uRv1844naD .content-wrapper .content-wrap .mbr-text {
  margin-bottom: 36px;
}
@media (max-width: 992px) {
  .cid-uRv1844naD .content-wrapper .content-wrap .mbr-text {
    margin-bottom: 22px;
  }
}
.cid-uRv1844naD .content-wrapper .content-wrap .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uRv1844naD .content-wrapper .image-wrapper {
  position: relative;
  width: 40%;
  min-height: 350px;
}
@media (max-width: 1200px) {
  .cid-uRv1844naD .content-wrapper .image-wrapper {
    width: 45%;
  }
}
@media (max-width: 992px) {
  .cid-uRv1844naD .content-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-uRv1844naD .content-wrapper .image-wrapper .image-wrap {
  height: 100%;
}
.cid-uRv1844naD .content-wrapper .image-wrapper .image-wrap img {
  height: 100%;
  width: 100%;
  border-radius: 0 !important;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uRv1844naD .content-wrapper .image-wrapper .image-wrap img {
    height: 350px;
  }
}
.cid-uRv1844naD .content-wrapper .image-wrapper .price-wrapper {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 32px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uRv1844naD .content-wrapper .image-wrapper .price-wrapper {
    padding: 22px;
    position: static;
    min-height: auto;
    width: 100%;
    display: block;
    transform: none;
  }
}
.cid-uRv1844naD .content-wrapper .image-wrapper .price-wrapper .price-wrap {
  width: 100%;
}
.cid-uRv1844naD .content-wrapper .image-wrapper .price-wrapper .price-wrap .mbr-price {
  margin-bottom: 10px;
}
.cid-uRv1844naD .content-wrapper .image-wrapper .price-wrapper .price-wrap .mbr-desc {
  margin-bottom: 0;
}
.cid-uRv1844naD .mbr-section-title {
  color: #212529;
}
.cid-uRv1844naD .mbr-text {
  color: #51565c;
}
.cid-uRv1844naD .mbr-price {
  color: #000000;
}
.cid-uRv1844naD .mbr-desc {
  color: #ff8576;
}
.cid-uRv1844naD .mbr-text,
.cid-uRv1844naD .mbr-section-btn {
  color: #000000;
}
.cid-uRv1855kVQ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uRv1855kVQ .mbr-text {
  color: #000000;
}
.cid-uRv1855kVQ .mbr-section-subtitle {
  color: #000000;
}
.cid-uRv1855kVQ .mbr-section-title {
  color: #000000;
}
.cid-uRv1864bRR {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #d7feff;
}
.cid-uRv1864bRR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRv1864bRR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRv1864bRR .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uRv1864bRR .container-fluid {
    padding: 0 20px;
  }
}
.cid-uRv1864bRR .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uRv1864bRR .container {
    padding: 0 20px;
  }
}
.cid-uRv1864bRR .row {
  justify-content: center;
}
.cid-uRv1864bRR .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uRv1864bRR .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-uRv1864bRR .card-wrapper {
  padding: 32px;
  margin-bottom: 64px;
  border: 2px solid #d7feff;
}
.cid-uRv1864bRR .card-wrapper .icon-wrapper {
  margin-bottom: 88px;
}
.cid-uRv1864bRR .card-wrapper .icon-wrapper .mbr-iconfont {
  color: #1d1d1d;
  font-size: 42px;
}
.cid-uRv1864bRR .card-wrapper .mbr-card-title {
  margin-bottom: 32px;
}
.cid-uRv1864bRR .card-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-uRv1864bRR .mbr-section-title {
  color: #1d1d1d;
}
.cid-uRv1864bRR .mbr-card-title {
  color: #1d1d1d;
}
.cid-uRv1864bRR .mbr-text {
  color: #1d1d1d;
}
.cid-uRv1864bRR .mbr-card-title,
.cid-uRv1864bRR .icon-wrapper {
  text-align: center;
}
.cid-uRv1864bRR .mbr-section-title,
.cid-uRv1864bRR .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uRv187hRjD {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
  background-image: radial-gradient(at 100% -70%, #ffffff, #ffffff, #ffffff);
}
.cid-uRv187hRjD .header-text {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uRv187hRjD img {
  width: 100%;
  border-radius: 30px;
  margin-left: 2rem;
}
@media (max-width: 992px) {
  .cid-uRv187hRjD img {
    margin-left: 0;
    margin-top: 4rem;
  }
}
.cid-uRv187hRjD .row {
  margin: auto;
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 4rem 3rem;
  overflow: visible;
  position: relative;
}
@media (max-width: 992px) {
  .cid-uRv187hRjD .row {
    padding: 2rem 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uRv187hRjD .row {
    padding: 1rem 0rem;
  }
}
.cid-uRv187hRjD .row:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid #ffffff;
  border-radius: 30px;
  pointer-events: none;
}
.cid-uRv187hRjD .row:after {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.5;
  height: 100%;
  width: 100%;
  pointer-events: none;
  background-color: #ffffff;
  border-radius: 30px;
}
.cid-uRv187hRjD .card-header {
  border-bottom: 1px solid #ffffff;
  margin-bottom: 0px!important;
}
.cid-uRv187hRjD span {
  transform: rotate(45deg);
  transition: all 0.3s;
}
.cid-uRv187hRjD .collapsed span {
  transform: rotate(0deg);
}
.cid-uRv187hRjD .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-uRv187hRjD .panel-group {
  width: 100%;
}
.cid-uRv187hRjD .sign {
  color: currentColor;
  font-family: 'Moririse2' !important;
}
.cid-uRv187hRjD .card {
  border-radius: 0px;
}
.cid-uRv187hRjD .card .card-header {
  border-radius: 0px;
  padding: 0;
  background-color: transparent;
}
.cid-uRv187hRjD .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  margin-bottom: 0;
  font-style: normal;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  line-height: normal;
}
.cid-uRv187hRjD .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uRv187hRjD .card .card-header a.panel-title h4 {
  padding: 1.5rem 1rem 13px 0px;
  margin-bottom: 0;
}
.cid-uRv187hRjD .mbr-section-title,
.cid-uRv187hRjD .mbr-section-subtitle,
.cid-uRv187hRjD .content-block,
.cid-uRv187hRjD .image-wrapper {
  position: relative;
  z-index: 1;
}
.cid-uRv187hRjD .panel-text {
  color: #000000;
}
.cid-uRv187hRjD .header-text,
.cid-uRv187hRjD .sign {
  color: #263d5a;
  text-align: right;
}
.cid-uRv187hRjD .mbr-section-title {
  color: #000000;
}
.cid-uRv187hRjD .header-text,
.cid-uRv187hRjD .sign,
.cid-uRv187hRjD .card-header {
  color: #000000;
  text-align: left;
}
.cid-uRv187hRjD .mbr-section-subtitle {
  color: #263d5a;
}
.cid-uRv188AmBh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uRv188AmBh .mbr-text {
  color: #000000;
}
.cid-uRv188AmBh .mbr-section-subtitle {
  color: #000000;
}
.cid-uRv188AmBh .mbr-section-title {
  color: #000000;
}
.cid-uRv189FLZa {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uRv189FLZa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRv189FLZa .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-uRv189FLZa .container {
    padding: 0 20px;
  }
}
.cid-uRv189FLZa .row {
  margin: 0;
}
.cid-uRv189FLZa .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uRv189FLZa .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uRv189FLZa .video-block .video-wrapper .app-video-wrapper::before {
  color: #499d7e;
  text-shadow: none;
}
.cid-uRv189FLZa .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-uRv189FLZa .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-uRv189FLZa .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-uRv189FLZa .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uRv18aDQ9V {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uRv18aDQ9V .wrapper {
  background: #d7feff;
}
.cid-uRv18aDQ9V .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRv18aDQ9V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRv18aDQ9V .mbr-section-title {
  color: #000000;
}
.cid-uRv18bGdyP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uRv18bGdyP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRv18bGdyP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-uRv18bGdyP .card-content-text {
    padding: 0 1.5rem 1.5rem 1.5rem;
  }
}
@media (min-width: 768px) {
  .cid-uRv18bGdyP .card-content-text {
    padding: 0 2.25rem 2.25rem 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-uRv18bGdyP .card-content-text {
    padding: 1rem 4rem 4rem 4rem;
  }
}
.cid-uRv18bGdyP .card-wrapper {
  background: #d7feff;
}
.cid-uRv18bGdyP .mbr-text,
.cid-uRv18bGdyP .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-uRv18bGdyP .card-title,
.cid-uRv18bGdyP .card-box {
  text-align: center;
  color: #000000;
}
.cid-uRv18bGdyP .image-wrapper img {
  width: 100%;
}
.cid-uRv18cUqye {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uRv18cUqye .mbr-text {
  color: #000000;
}
.cid-uRv18cUqye .mbr-section-subtitle {
  color: #000000;
}
.cid-uRv18cUqye .mbr-section-title {
  color: #000000;
}
.cid-uRv18dT49h {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uRv18dT49h .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRv18dT49h .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRv18dT49h .content-wrapper {
  padding: 80px 90px;
  background-color: #d7feff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uRv18dT49h .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-uRv18dT49h .content-wrapper .title-wrapper {
  width: 50%;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uRv18dT49h .content-wrapper .title-wrapper {
    margin-bottom: 24px;
    width: 100%;
  }
}
.cid-uRv18dT49h .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uRv18dT49h .content-wrapper .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uRv18dT49h .content-wrapper .title-wrapper .mbr-text {
  margin-bottom: 38px;
}
@media (max-width: 992px) {
  .cid-uRv18dT49h .content-wrapper .title-wrapper .mbr-text {
    margin-bottom: 16px;
  }
}
.cid-uRv18dT49h .content-wrapper .image-wrapper {
  width: 45%;
}
@media (max-width: 992px) {
  .cid-uRv18dT49h .content-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-uRv18dT49h .content-wrapper .image-wrapper img {
  height: 450px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uRv18dT49h .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-uRv18dT49h .mbr-section-title {
  color: #050f0f;
}
.cid-uRv18dT49h .mbr-text {
  color: #050f0f;
}
.cid-uRv18dT49h .mbr-section-title,
.cid-uRv18dT49h .mbr-section-btn {
  text-align: center;
}
.cid-uRv18f69C5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uRv18f69C5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRv18f69C5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRv18f69C5 .content-wrapper .mbr-label {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uRv18f69C5 .content-wrapper .mbr-label {
    width: 100%;
  }
}
.cid-uRv18f69C5 .content-wrapper .panel-group .card {
  position: relative;
  padding: 0 0 15px 0;
  background-color: transparent;
  border-bottom: 1px solid #000000;
  border-radius: 0 !important;
  margin-bottom: 20px;
}
.cid-uRv18f69C5 .content-wrapper .panel-group .card:last-child {
  border-bottom: none;
}
.cid-uRv18f69C5 .content-wrapper .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uRv18f69C5 .content-wrapper .panel-group .card .card-header .panel-title {
  width: 100%;
}
.cid-uRv18f69C5 .content-wrapper .panel-group .card .card-header .panel-title .title-wrap {
  display: inline-flex;
  flex-direction: row-reverse;
  align-items: center;
}
.cid-uRv18f69C5 .content-wrapper .panel-group .card .card-header .panel-title .title-wrap .panel-title-edit {
  margin-bottom: 0;
}
.cid-uRv18f69C5 .content-wrapper .panel-group .card .card-header .panel-title .title-wrap .icon-wrapper {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  transition: all 0.3s ease-in-out;
  background-color: #d7feff;
}
.cid-uRv18f69C5 .content-wrapper .panel-group .card .card-header .panel-title .title-wrap .icon-wrapper .mbr-iconfont {
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  color: #000000;
}
.cid-uRv18f69C5 .content-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .title-wrap .icon-wrapper {
  background-color: #148cdb;
}
.cid-uRv18f69C5 .content-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .title-wrap .icon-wrapper .mbr-iconfont {
  transform: rotate(-45deg);
  color: #000000;
}
.cid-uRv18f69C5 .content-wrapper .panel-group .card .panel-collapse .panel-body {
  margin: 40px 0;
  padding-left: 65px;
}
@media (max-width: 992px) {
  .cid-uRv18f69C5 .content-wrapper .panel-group .card .panel-collapse .panel-body {
    padding-left: 0;
    margin: 15px 0 0 0;
  }
}
.cid-uRv18f69C5 .content-wrapper .panel-group .card .panel-collapse .panel-body .panel-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uRv18f69C5 .content-wrapper .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 100%;
  }
}
.cid-uRv18f69C5 .mbr-label {
  color: #000000;
}
.cid-uRv18f69C5 .panel-title-edit {
  color: #000000;
}
.cid-uRv18f69C5 .panel-text {
  color: #000000;
}
.cid-uRv18giWgC {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background: #ffffff;
}
.cid-uRv18giWgC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRv18giWgC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRv18giWgC .google-map {
  height: 30rem;
  position: relative;
  border-radius: 2rem;
}
.cid-uRv18giWgC .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-uRv18giWgC .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-uRv18giWgC .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uRv18giWgC .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uRv18giWgC .content-head {
  max-width: 800px;
}
.cid-uRv18giWgC .mbr-section-title {
  color: #000000;
}
.cid-uRv18hAdeM {
  padding-top: 7rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #d7feff;
}
.cid-uRv18hAdeM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRv18hAdeM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRv18hAdeM .row {
  justify-content: space-between;
}
.cid-uRv18hAdeM .mbr-section-title {
  margin: 0;
  color: #000000;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uRv18hAdeM .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uRv18hAdeM .mbr-text {
  margin-bottom: 10px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uRv18hAdeM .mbr-section-btn {
    margin-bottom: 20px;
  }
}
.cid-uRv18hAdeM .list {
  padding: 0;
  margin-bottom: 0;
  list-style-type: none;
  color: #000000;
}
.cid-uRv18hAdeM .list li {
  margin-bottom: 25px;
}
.cid-uRv18hAdeM .list li:last-child {
  margin-bottom: 0;
}
.cid-uRv18hAdeM .mbr-desc {
  margin-bottom: 8px;
}
.cid-uRv18hAdeM .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uRv18hAdeM .social-row .soc-item {
  margin: 9px 9px 0 0;
}
.cid-uRv18hAdeM .social-row .soc-item a:hover .mbr-iconfont {
  border-color: #ffffff;
}
.cid-uRv18hAdeM .social-row .soc-item a .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 37px;
  height: 37px;
  font-size: 18px;
  border-radius: 100%;
  border: 1px solid #000000;
  transition: all .3s ease;
}
.cid-uRv18hAdeM .copyright {
  margin: 110px 0 0 0;
  padding: 17px 70px;
  position: relative;
  color: #000000;
  text-align: center;
}
.cid-uRv18hAdeM .copyright:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100rem;
  display: block;
  min-width: 1000vh;
  height: 1px;
  background-color: #000000;
  opacity: .4;
}
@media (max-width: 992px) {
  .cid-uRv18hAdeM .copyright {
    margin-top: 50px;
    padding: 17px 24px;
  }
}
.cid-uRv18hAdeM .mbr-desc,
.cid-uRv18hAdeM .mbr-iconfont {
  color: #000000;
}
.cid-uRv18hAdeM .mbr-text,
.cid-uRv18hAdeM .mbr-section-btn {
  color: #000000;
}
