body {
  font-family: Inter;
}
.display-1 {
  font-family: 'Inter', sans-serif;
  font-size: 4rem;
  line-height: 1.15;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Inter', sans-serif;
  font-size: 2.5rem;
  line-height: 1.15;
}
.display-2 > .mbr-iconfont {
  font-size: 3.125rem;
}
.display-4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.625rem;
}
.display-5 {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  line-height: 1.4;
}
.display-5 > .mbr-iconfont {
  font-size: 1.75rem;
}
.display-7 {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5625rem;
}
/* ---- 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: 2rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.525rem + (2.5 - 1.525) * ((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.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1rem;
    font-size: calc( 1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #fc7942 !important;
}
.bg-success {
  background-color: #a6b1d8 !important;
}
.bg-info {
  background-color: #5189b8 !important;
}
.bg-warning {
  background-color: #fbdeff !important;
}
.bg-danger {
  background-color: #b63b07 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #fc7942 !important;
  border: 2px solid #131313 !important;
  color: #131313 !important;
  box-shadow: 4px 4px 0 #131313 !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #131313 !important;
  background-color: #fc7942 !important;
  border: 2px solid #131313 !important;
  box-shadow: none !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #131313 !important;
  background-color: #e44604 !important;
  border-color: #e44604 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #a6d8b5 !important;
  border: 2px solid #131313 !important;
  color: #131313 !important;
  box-shadow: 4px 4px 0 #131313 !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #131313 !important;
  background-color: #a6d8b5 !important;
  border: 2px solid #131313 !important;
  box-shadow: none !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #131313 !important;
  background-color: #6abe83 !important;
  border-color: #6abe83 !important;
}
.btn-info,
.btn-info:active {
  background-color: #5189b8 !important;
  border: 2px solid #131313 !important;
  color: #131313 !important;
  box-shadow: 4px 4px 0 #131313 !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #131313 !important;
  background-color: #5189b8 !important;
  border: 2px solid #131313 !important;
  box-shadow: none !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #131313 !important;
  background-color: #345c7f !important;
  border-color: #345c7f !important;
}
.btn-success,
.btn-success:active {
  background-color: #a6b1d8 !important;
  border: 2px solid #131313 !important;
  color: #131313 !important;
  box-shadow: 4px 4px 0 #131313 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #131313 !important;
  background-color: #a6b1d8 !important;
  border: 2px solid #131313 !important;
  box-shadow: none !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #131313 !important;
  background-color: #6a7cbe !important;
  border-color: #6a7cbe !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #fbdeff !important;
  border: 2px solid #131313 !important;
  color: #131313 !important;
  box-shadow: 4px 4px 0 #131313 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #131313 !important;
  background-color: #fbdeff !important;
  border: 2px solid #131313 !important;
  box-shadow: none !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #131313 !important;
  background-color: #f087ff !important;
  border-color: #f087ff !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #b63b07 !important;
  border: 2px solid #131313 !important;
  color: #131313 !important;
  box-shadow: 4px 4px 0 #131313 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #131313 !important;
  background-color: #b63b07 !important;
  border: 2px solid #131313 !important;
  box-shadow: none !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #131313 !important;
  background-color: #632004 !important;
  border-color: #632004 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border: 2px solid #131313 !important;
  color: #131313 !important;
  box-shadow: 4px 4px 0 #131313 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #131313 !important;
  background-color: #ffffff !important;
  border: 2px solid #131313 !important;
  box-shadow: none !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #131313 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-black,
.btn-black:active {
  background-color: #131313 !important;
  border: 2px solid #131313 !important;
  color: #131313 !important;
  box-shadow: 4px 4px 0 #131313 !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #131313 !important;
  background-color: #131313 !important;
  border: 2px solid #131313 !important;
  box-shadow: none !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #131313 !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fc7942;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #e44604 !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: #fc7942 !important;
  border-color: #fc7942 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #a6d8b5;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #6abe83 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #275836 !important;
  background-color: #a6d8b5 !important;
  border-color: #a6d8b5 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #5189b8;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #345c7f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #5189b8 !important;
  border-color: #5189b8 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #a6b1d8;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #6a7cbe !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #a6b1d8 !important;
  border-color: #a6b1d8 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fbdeff;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #f087ff !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #c300de !important;
  background-color: #fbdeff !important;
  border-color: #fbdeff !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #b63b07;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #632004 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b63b07 !important;
  border-color: #b63b07 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #131313;
}
.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: #131313 !important;
  border-color: #131313 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.text-primary {
  color: #fc7942 !important;
}
.text-secondary {
  color: #a6d8b5 !important;
}
.text-success {
  color: #a6b1d8 !important;
}
.text-info {
  color: #5189b8 !important;
}
.text-warning {
  color: #fbdeff !important;
}
.text-danger {
  color: #b63b07 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #131313 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #d54103 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #5fb97a !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #5f73b9 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #2f5474 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #ef78ff !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #541b03 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #cccccc !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: #fc7942;
}
.nav-tabs .nav-link:not(.active) {
  color: #131313;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #5189b8;
}
.alert-warning {
  background-color: #fbdeff;
}
.alert-danger {
  background-color: #b63b07;
}
.mbr-gallery-filter li.active .btn {
  background-color: #fc7942;
  border-color: #fc7942;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #fc7942;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #acc6dd;
}
.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: #f87a45;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.625rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #fc7942 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.625rem;
}
blockquote {
  border-color: #fc7942;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #fc7942;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #fc7942;
}
.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: #fc7942;
  border-bottom-color: #fc7942;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #fc7942 !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: #a6d8b5 !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='%23fc7942' %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: .3s all;
  font-weight: 600 !important;
}
a:hover {
  background-image: none !important;
}
.container {
  max-width: 1440px;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 1600px) {
  .container {
    max-width: 1320px;
  }
}
@media (max-width: 1399px) {
  .container {
    max-width: 1140px;
  }
}
@media (max-width: 1199px) {
  .container {
    max-width: 960px;
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (max-width: 991px) {
  .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .container {
    max-width: 100%;
  }
}
.container-small {
  max-width: 1480px;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  word-wrap: break-word;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 1500px) {
  .container-small {
    max-width: 1180px;
  }
}
@media (max-width: 1024px) {
  .container-small {
    max-width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 991px) {
  .container-small {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (max-width: 767px) {
  .container-small {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.container-fluid {
  max-width: 1724px;
  padding-left: 12px;
  padding-right: 12px;
}
.row {
  margin-left: -12px;
  margin-right: -12px;
  justify-content: center;
}
.row > [class*="col"] {
  padding-left: 12px;
  padding-right: 12px;
}
b,
strong {
  font-weight: 600 !important;
}
.mbr-section-btn .btn {
  position: relative;
  min-width: 100px;
  min-height: 68px;
  padding: 20px 44px;
  border-radius: 0;
  font-weight: 600 !important;
  transition: all .3s;
}
@media (max-width: 1199px) {
  .mbr-section-btn .btn {
    padding: 20px 30px;
  }
}
@media (max-width: 767px) {
  .mbr-section-btn .btn {
    padding: 15px 20px;
  }
}
.mbr-section-btn .btn-black {
  color: #FFFFFF !important;
  border: 2px solid #FFFFFF !important;
  box-shadow: 4px 4px 0 #FFFFFF !important;
}
.mbr-section-btn .btn-black:hover {
  box-shadow: none !important;
}
.cid-tBom1Dnp1f {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tBom1Dnp1f nav.navbar {
  position: fixed;
}
.cid-tBom1Dnp1f .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-tBom1Dnp1f .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tBom1Dnp1f .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tBom1Dnp1f .dropdown-item:hover,
.cid-tBom1Dnp1f .dropdown-item:focus {
  background: #fc7942 !important;
  color: white !important;
}
.cid-tBom1Dnp1f .dropdown-item:hover span {
  color: white;
}
.cid-tBom1Dnp1f .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tBom1Dnp1f .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tBom1Dnp1f .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tBom1Dnp1f .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tBom1Dnp1f .nav-link {
  position: relative;
}
.cid-tBom1Dnp1f .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tBom1Dnp1f .container {
    flex-wrap: nowrap;
  }
}
.cid-tBom1Dnp1f .navbar-nav {
  margin: 0 auto;
}
.cid-tBom1Dnp1f .dropdown-menu,
.cid-tBom1Dnp1f .navbar.opened {
  background: #ffffff !important;
}
.cid-tBom1Dnp1f .nav-item:focus,
.cid-tBom1Dnp1f .nav-link:focus {
  outline: none;
}
.cid-tBom1Dnp1f .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tBom1Dnp1f .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tBom1Dnp1f .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tBom1Dnp1f .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tBom1Dnp1f .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tBom1Dnp1f .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tBom1Dnp1f .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  border: none !important;
  box-shadow: none !important;
  overflow: hidden;
}
.cid-tBom1Dnp1f .navbar.opened {
  transition: all 0.3s;
}
.cid-tBom1Dnp1f .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tBom1Dnp1f .navbar .navbar-logo img {
  width: auto;
}
.cid-tBom1Dnp1f .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tBom1Dnp1f .navbar.collapsed {
  justify-content: center;
}
.cid-tBom1Dnp1f .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tBom1Dnp1f .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tBom1Dnp1f .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tBom1Dnp1f .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tBom1Dnp1f .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tBom1Dnp1f .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-tBom1Dnp1f .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tBom1Dnp1f .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tBom1Dnp1f .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tBom1Dnp1f .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tBom1Dnp1f .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tBom1Dnp1f .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tBom1Dnp1f .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-tBom1Dnp1f .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tBom1Dnp1f .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tBom1Dnp1f .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tBom1Dnp1f .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tBom1Dnp1f .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tBom1Dnp1f .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tBom1Dnp1f .navbar.navbar-short {
  min-height: 60px;
}
.cid-tBom1Dnp1f .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tBom1Dnp1f .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tBom1Dnp1f .navbar-brand {
  min-height: 108px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tBom1Dnp1f .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tBom1Dnp1f .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tBom1Dnp1f .dropdown-item.active,
.cid-tBom1Dnp1f .dropdown-item:active {
  background-color: transparent;
}
.cid-tBom1Dnp1f .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tBom1Dnp1f .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tBom1Dnp1f .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tBom1Dnp1f .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tBom1Dnp1f .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tBom1Dnp1f .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tBom1Dnp1f ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tBom1Dnp1f .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tBom1Dnp1f button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tBom1Dnp1f button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #131313;
}
.cid-tBom1Dnp1f button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tBom1Dnp1f button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tBom1Dnp1f button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tBom1Dnp1f button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tBom1Dnp1f nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tBom1Dnp1f nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tBom1Dnp1f nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tBom1Dnp1f nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tBom1Dnp1f .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tBom1Dnp1f a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tBom1Dnp1f .navbar {
    height: 70px;
  }
  .cid-tBom1Dnp1f .navbar.opened {
    height: auto;
  }
  .cid-tBom1Dnp1f .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tBom1Dnp1f .container,
.cid-tBom1Dnp1f .container-fluid {
  position: relative;
  min-height: 108px;
}
@media (min-width: 992px) {
  .cid-tBom1Dnp1f .container:before,
  .cid-tBom1Dnp1f .container-fluid:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #131313;
  }
}
.cid-tBom1Dnp1f .navbar-short {
  background-color: #ffffff !important;
}
.cid-tBom1Dnp1f .navbar-short .container,
.cid-tBom1Dnp1f .navbar-short .container-fluid {
  min-height: 85px;
}
.cid-tBom1Dnp1f .navbar-short .container:before,
.cid-tBom1Dnp1f .navbar-short .container-fluid:before {
  display: none;
}
.cid-tBom1Dnp1f .navbar-short .navbar-brand {
  min-height: 85px !important;
}
.cid-tBom1Dnp1f .mbr-section-btn .btn {
  padding: 10px 25px;
  min-height: 48px;
}
.cid-tBom1Dnp1f .border-item {
  position: absolute;
  bottom: -1px;
  display: none;
  width: 100%;
  background-color: transparent;
  height: 2px;
  background-color: #131313;
}
@media (max-width: 991px) {
  .cid-tBom1Dnp1f .border-item {
    display: block;
  }
}
@media (max-width: 991px) {
  .cid-tBom1Dnp1f .container,
  .cid-tBom1Dnp1f .container-fluid {
    min-height: 85px;
  }
  .cid-tBom1Dnp1f .navbar-brand {
    min-height: 85px;
  }
  .cid-tBom1Dnp1f .navbar-short .container,
  .cid-tBom1Dnp1f .navbar-short .container-fluid {
    min-height: 75px;
  }
  .cid-tBom1Dnp1f .navbar-short .navbar-brand {
    min-height: 75px !important;
  }
  .cid-tBom1Dnp1f .navbar.navbar-short {
    background-color: #ffffff !important;
  }
  .cid-tBom1Dnp1f .navbar-collapse {
    position: relative;
    order: 5;
    z-index: 5 !important;
    padding-bottom: 10px;
  }
  .cid-tBom1Dnp1f .navbar-nav .nav-item {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }
  .cid-tBom1Dnp1f .mbr-section-btn {
    text-align: left;
  }
  .cid-tBom1Dnp1f .border-item {
    position: relative;
    bottom: 0;
    margin-top: auto;
  }
  .cid-tBom1Dnp1f .border-item:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100vw;
    height: 100vw;
    background: #ffffff;
    z-index: 4;
    transition: 0.1s all;
  }
}
.cid-ucJqJBE8hG {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #780016;
}
.cid-ucJqJBE8hG .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucJqJBE8hG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-ucJqJBE8hG .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ucJqJBE8hG img {
  border-radius: 2rem;
}
.cid-ucJqJBE8hG .row {
  flex-direction: row-reverse;
}
.cid-ucJqJBE8hG .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-ucJqJBE8hG .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-ucJqJBE8hG .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-ucJqJBE8hG .mbr-section-title {
  color: #ffffff;
}
.cid-ucJqJBE8hG .mbr-text,
.cid-ucJqJBE8hG .mbr-section-btn {
  color: #ffffff;
}
.cid-ucJqmqgRk4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ucJqmqgRk4 .container {
  max-width: 1240px;
}
@media (max-width: 1199px) {
  .cid-ucJqmqgRk4 .container {
    max-width: 1040px;
  }
}
.cid-ucJqmqgRk4 .row {
  justify-content: center;
}
.cid-ucJqmqgRk4 .item:focus,
.cid-ucJqmqgRk4 span:focus {
  outline: none;
}
.cid-ucJqmqgRk4 .col-items {
  display: flex;
  justify-content: center;
  align-items: stretch;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-ucJqmqgRk4 .col-items {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-ucJqmqgRk4 .item {
    width: 100%;
  }
  .cid-ucJqmqgRk4 .item:first-child {
    padding-bottom: 0.5rem;
  }
  .cid-ucJqmqgRk4 .item:last-child {
    padding-top: 0.5rem;
  }
}
@media (min-width: 992px) {
  .cid-ucJqmqgRk4 .item:first-child {
    padding-right: 0.5rem;
  }
  .cid-ucJqmqgRk4 .item:last-child {
    padding-left: 0.5rem;
  }
}
.cid-ucJqmqgRk4 .item-wrap {
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  padding: 24px;
  border-radius: 1rem;
}
@media (min-width: 768px) {
  .cid-ucJqmqgRk4 .item-wrap {
    padding: 27px;
  }
}
@media (min-width: 992px) {
  .cid-ucJqmqgRk4 .item-wrap {
    padding: 50px;
  }
}
.cid-ucJqmqgRk4 .item-content {
  width: 100%;
}
.cid-ucJqmqgRk4 .label-text {
  color: #ffffff;
  opacity: 0.8;
  width: 100%;
  margin-bottom: 16px;
}
.cid-ucJqmqgRk4 .mbr-text {
  color: #ffffff;
  margin-top: 12px;
  margin-bottom: 0;
  opacity: 0.8;
}
.cid-ucJqmqgRk4 .item-title {
  color: #ffffff;
  margin-top: 12px;
  margin-bottom: 0;
}
.cid-ucJqmqgRk4 .list-container {
  display: flex;
  flex-direction: column;
  margin-top: 18px;
}
.cid-ucJqmqgRk4 .list-item {
  display: flex;
  align-items: center;
}
.cid-ucJqmqgRk4 .list-item:not(:last-child) {
  margin-bottom: 16px;
}
.cid-ucJqmqgRk4 .icon-box {
  padding-right: 14px;
}
.cid-ucJqmqgRk4 .list-text {
  flex-grow: 1;
  color: #000000;
  margin-bottom: 0;
}
.cid-ucJqmqgRk4 .link-container {
  display: flex;
  flex-direction: column;
  margin-top: 50px;
}
@media (min-width: 992px) {
  .cid-ucJqmqgRk4 .link-container {
    margin-top: 72px;
  }
}
.cid-ucJqmqgRk4 .link-container .link:first-child {
  margin-bottom: 16px;
}
.cid-ucJqmqgRk4 .link-container .link span {
  padding-right: 10px;
}
.cid-ucFLytNcIx {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #780016;
}
.cid-ucFLytNcIx .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #fc7942;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-ucFLytNcIx .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-ucFLytNcIx .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-ucFLytNcIx .main-title.display-2 {
  line-height: 1.375;
}
.cid-ucFLytNcIx .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-ucFLytNcIx .mbr-text {
  color: #606060;
}
.cid-ucFLytNcIx .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-ucFLytNcIx .mbr-section-btn {
  margin-top: 24px;
}
.cid-ucFLytNcIx .mbr-section-btn .btn {
  margin-left: 14.1px;
  padding: 18px 26px;
}
.cid-ucFLytNcIx .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-ucFLytNcIx .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-ucFLytNcIx .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFLytNcIx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucFLytNcIx .mbr-text,
.cid-ucFLytNcIx .mbr-section-btn {
  color: #ffffff;
}
.cid-tBon8M64Sx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tBon8M64Sx .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBon8M64Sx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBon8M64Sx .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tBon8M64Sx .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tBon8M64Sx .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tBon8M64Sx .mbr-section-title {
  color: #131313;
}
.cid-tBon8M64Sx .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tBon8M64Sx .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tBon8M64Sx .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tBon8M64Sx .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #000000;
  box-shadow: 4px 4px 0 #000000;
  background: #780016;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tBon8M64Sx .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-tBon8M64Sx .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tBon8M64Sx .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-tBon8M64Sx .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-tBon8M64Sx .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #ffffff;
}
.cid-tBon8M64Sx .card-title {
  color: #131313;
}
.cid-tBon8M64Sx .card-text {
  margin-top: 10px;
  color: #131313;
  text-align: center;
}
.cid-tBon8M64Sx .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tBon8M64Sx .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-tBon8M64Sx .card-link {
    margin-top: 15px;
  }
}
.cid-tBon8M64Sx .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tBon8M64Sx .card-title,
.cid-tBon8M64Sx .iconfont-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-ucIDhenSvf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #780016;
}
.cid-ucIDhenSvf .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucIDhenSvf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-ucIDhenSvf .container {
    padding: 0 24px;
  }
}
.cid-ucIDhenSvf .image-wrapper {
  padding-right: 80px;
  padding-right: 0;
  padding-left: 80px;
}
@media (max-width: 992px) {
  .cid-ucIDhenSvf .image-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-ucIDhenSvf .image-wrapper {
    padding: 0;
    margin-bottom: 40px;
  }
}
.cid-ucIDhenSvf .image-wrapper img {
  height: 600px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ucIDhenSvf .image-wrapper img {
    height: 350px;
  }
}
.cid-ucIDhenSvf .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-ucIDhenSvf .content-wrapper .mbr-section-title span {
  color: #e0b548;
}
.cid-ucIDhenSvf .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ucIDhenSvf .content-wrapper .mbr-desc {
  margin: 32px 0 0;
}
@media (max-width: 992px) {
  .cid-ucIDhenSvf .content-wrapper .mbr-desc {
    margin: 24px 0 0;
  }
}
.cid-ucIDhenSvf .content-wrapper .mbr-section-btn {
  margin-top: 32px;
}
@media (max-width: 992px) {
  .cid-ucIDhenSvf .content-wrapper .mbr-section-btn {
    margin-top: 24px;
  }
}
.cid-ucIDhenSvf .mbr-section-title {
  color: #F9F6E0;
}
.cid-ucIDhenSvf .mbr-text {
  color: #ffffff;
}
.cid-ucIDhenSvf .mbr-desc {
  color: #E0B548;
}
.cid-ucIDhenSvf .mbr-section-title,
.cid-ucIDhenSvf .mbr-section-btn {
  color: #ffffff;
}
.cid-ucJqiSUhkb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ucJqiSUhkb .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-ucJqiSUhkb .card-title {
  margin-bottom: 26px;
  color: #a6d8b5;
}
.cid-ucJqiSUhkb .mbr-text {
  margin-bottom: 30px;
}
.cid-ucJqiSUhkb .iconfont-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  display: inline-block;
  text-align: center;
  width: 70px;
  height: 70px;
}
.cid-ucJqiSUhkb .iconfont-wrapper svg {
  position: absolute;
  top: -20px;
  left: -28px;
}
.cid-ucJqiSUhkb .iconfont-wrapper svg #grad_1 {
  stop-color: #6b3df0;
}
.cid-ucJqiSUhkb .iconfont-wrapper svg #grad_2 {
  stop-color: #b39cf7;
}
.cid-ucJqiSUhkb .iconfont-wrapper svg #blur_svg {
  flood-color: #6b3df0;
}
.cid-ucJqiSUhkb .iconfont-wrapper .mbr-iconfont {
  color: #ffffff;
  font-size: 38px;
  line-height: 73px;
  position: absolute;
  top: 0;
  left: 14px;
  z-index: 5;
}
@media (min-width: 992px) {
  .cid-ucJqiSUhkb .text-wrapper {
    padding-right: 0;
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ucJqiSUhkb .text-wrapper {
    text-align: center;
  }
  .cid-ucJqiSUhkb .image-wrapper {
    margin-bottom: 40px;
  }
  .cid-ucJqiSUhkb .mbr-text {
    margin-bottom: 20px;
  }
  .cid-ucJqiSUhkb .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-ucJqiSUhkb .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucJqiSUhkb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucJqiSUhkb .mbr-text,
.cid-ucJqiSUhkb .mbr-section-btn {
  color: #000000;
}
.cid-ucJqiSUhkb .card-title,
.cid-ucJqiSUhkb .icon_block {
  color: #000000;
}
.cid-ucFWTxFKU4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #780016;
}
.cid-ucFWTxFKU4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFWTxFKU4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucFWTxFKU4 .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-ucFWTxFKU4 .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-ucFWTxFKU4 .container {
    padding: 0 24px;
  }
}
.cid-ucFWTxFKU4 .row {
  justify-content: center;
}
.cid-ucFWTxFKU4 .content-wrapper {
  border-radius: 40px;
  background-color: #780016;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-ucFWTxFKU4 .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-ucFWTxFKU4 .content-wrapper {
    padding: 32px;
  }
}
.cid-ucFWTxFKU4 .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-ucFWTxFKU4 .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-ucFWTxFKU4 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ucFWTxFKU4 .mbr-text {
  color: #ffffff;
}
.cid-tBopawO05S {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tBopawO05S .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBopawO05S .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBopawO05S .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1500px) {
  .cid-tBopawO05S .mbr-section-head {
    margin-bottom: 40px;
  }
}
@media (max-width: 991px) {
  .cid-tBopawO05S .mbr-section-head {
    margin-bottom: 20px;
  }
}
.cid-tBopawO05S .mbr-section-title {
  color: #131313;
}
.cid-tBopawO05S .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tBopawO05S .cards-row {
  margin-top: 5px;
  row-gap: 20px;
}
.cid-tBopawO05S .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tBopawO05S .card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  padding: 60px 52px 48px 48px;
  margin: 0 auto;
  border: 2px solid #780016;
  box-shadow: 4px 4px 0 #780016;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1024px) {
  .cid-tBopawO05S .card-wrapper {
    padding: 30px 30px 40px 25px;
  }
}
@media (max-width: 767px) {
  .cid-tBopawO05S .card-wrapper {
    padding: 10px 25px 40px 20px;
  }
}
@media (min-width: 992px) {
  .cid-tBopawO05S .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tBopawO05S .card-title {
  color: #131313;
  text-align: center;
}
.cid-tBopawO05S .price-box {
  display: flex;
  align-items: baseline;
  width: 100%;
  margin-top: 20px;
}
@media (max-width: 1024px) {
  .cid-tBopawO05S .price-box {
    margin-top: 5px;
  }
}
.cid-tBopawO05S .number-text {
  color: #FC7942;
}
.cid-tBopawO05S .stint-text {
  color: #FC7942;
}
.cid-tBopawO05S .card-text {
  margin-top: 20px;
  color: #131313;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-tBopawO05S .card-text {
    margin-top: 10px;
  }
}
.cid-tBopawO05S .list-box {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  width: 100%;
  margin-top: 50px;
}
@media (max-width: 1024px) {
  .cid-tBopawO05S .list-box {
    margin-top: 24px;
  }
}
.cid-tBopawO05S .list-item {
  display: flex;
  align-items: center;
  width: 100%;
  column-gap: 10px;
}
.cid-tBopawO05S .iconfont-wrapper {
  flex-shrink: 0;
}
.cid-tBopawO05S .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 18px;
  color: #fc7942;
}
.cid-tBopawO05S .list-text {
  flex-grow: 1;
  color: #131313;
}
.cid-tBopawO05S .mbr-section-btn {
  margin-top: auto;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-top: 65px;
}
@media (max-width: 1199px) {
  .cid-tBopawO05S .mbr-section-btn {
    padding-top: 30px;
  }
}
@media (max-width: 991px) {
  .cid-tBopawO05S .mbr-section-btn {
    padding-top: 20px;
  }
}
.cid-tBopawO05S .mbr-section-btn .btn {
  width: 100%;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
@media (max-width: 1500px) {
  .cid-tBopawO05S .mbr-section-btn .btn {
    padding: 20px 24px !important;
  }
}
.cid-ucFJ1gYfcz {
  padding-top: 7rem;
  padding-bottom: 8rem;
  background-color: #780016;
}
.cid-ucFJ1gYfcz .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFJ1gYfcz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucFJ1gYfcz .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ucFJ1gYfcz .mbr-section-subtitle {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-ucFJ1gYfcz .mbr-section-subtitle {
    margin-top: 18px;
  }
}
.cid-ucFJ1gYfcz .mbr-text {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-ucFJ1gYfcz .mbr-text {
    margin-top: 18px;
  }
}
.cid-ucFJ1gYfcz .mbr-section-btn {
  margin-top: 60px;
}
@media (max-width: 991px) {
  .cid-ucFJ1gYfcz .mbr-section-btn {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .cid-ucFJ1gYfcz .mbr-section-btn {
    margin-top: 20px;
  }
}
.cid-ucFJ1gYfcz .mbr-text,
.cid-ucFJ1gYfcz .mbr-section-btn {
  color: #ffffff;
}
.cid-tBopWFuktj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tBopWFuktj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBopWFuktj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBopWFuktj .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tBopWFuktj .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tBopWFuktj .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tBopWFuktj .mbr-section-title {
  color: #131313;
}
.cid-tBopWFuktj .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tBopWFuktj .items-row {
  row-gap: 40px;
  margin: 5px -20px 0 !important;
}
@media (max-width: 767px) {
  .cid-tBopWFuktj .items-row {
    row-gap: 30px;
    margin: 0 -15px !important;
  }
}
.cid-tBopWFuktj .item {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
  padding: 0 20px !important;
}
.cid-tBopWFuktj .item-wrapper {
  width: 100%;
  padding: 11px 11px 40px;
  border: 2px solid #780016;
  box-shadow: 4px 4px 0 #780016;
  background: #ffffff;
  transition: .3s all;
}
@media (min-width: 992px) {
  .cid-tBopWFuktj .item-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tBopWFuktj .item-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 674/calc(145 * 3);
}
.cid-tBopWFuktj .item-content {
  margin-top: 40px;
  padding-left: 40px;
  padding-right: 130px;
}
@media (max-width: 1199px) {
  .cid-tBopWFuktj .item-content {
    margin-top: 0;
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .cid-tBopWFuktj .item-content {
    margin-top: 20px;
  }
}
.cid-tBopWFuktj .card-title {
  color: #131313;
}
.cid-tBopWFuktj .card-text {
  margin-top: 5px;
  color: #131313;
}
.cid-tBopWFuktj .link-text {
  margin-top: 14px;
  color: #FC7942;
}
@media (max-width: 991px) {
  .cid-tBopWFuktj .link-text {
    margin-top: 10px;
  }
}
.cid-tBopWFuktj .link-text a.text-primary:hover {
  color: #131313 !important;
}
.cid-tBopWFuktj .mbr-section-btn {
  margin-top: 5px;
}
.cid-tBopWFuktj .card-text,
.cid-tBopWFuktj .mbr-section-btn {
  text-align: center;
}
.cid-ucFWuLFEiu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #780016;
}
.cid-ucFWuLFEiu .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFWuLFEiu .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-ucFWuLFEiu .container {
    padding: 0 20px;
  }
}
.cid-ucFWuLFEiu .row {
  margin: 0;
}
.cid-ucFWuLFEiu .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-ucFWuLFEiu .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-ucFWuLFEiu .video-block .video-wrapper .app-video-wrapper::before {
  color: #f5fd7b;
  text-shadow: none;
}
.cid-ucFWuLFEiu .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-ucFWuLFEiu .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-ucFWuLFEiu .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-ucFWuLFEiu .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ucJHtrCbiw {
  background-color: #780016;
}
.cid-ucJHtrCbiw .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucJHtrCbiw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucJHtrCbiw .content-bg {
  border-top-left-radius: 6.67rem;
  border-top-right-radius: 6.67rem;
  width: 100%;
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: transparent;
  background: #ffffff;
}
.cid-ucJHtrCbiw .container {
  max-width: 1280px;
}
.cid-ucJHtrCbiw .row {
  justify-content: center;
}
.cid-ucJHtrCbiw .mbr-section-title {
  color: #212132;
}
.cid-ucJHtrCbiw .mbr-section-subtitle {
  color: #212132;
  margin-top: 1rem;
}
.cid-ucJHtrCbiw .mbr-section-title,
.cid-ucJHtrCbiw .mbr-section-btn {
  color: #000000;
}
.cid-tBopQfYj2W {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #780016;
}
.cid-tBopQfYj2W .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBopQfYj2W .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBopQfYj2W .row {
  margin: 0 !important;
}
.cid-tBopQfYj2W .mbr-section-head {
  width: 40%;
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-tBopQfYj2W .mbr-section-head {
    width: 100%;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tBopQfYj2W .mbr-section-head {
    margin-bottom: 40px;
  }
}
.cid-tBopQfYj2W .mbr-section-title {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-tBopQfYj2W .mbr-section-subtitle {
  color: #131313;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tBopQfYj2W .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-tBopQfYj2W .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tBopQfYj2W .mbr-section-btn {
    margin-top: 10px;
  }
}
.cid-tBopQfYj2W .col-list {
  width: 1px;
  flex-grow: 1;
  padding: 0 0 0 100px !important;
}
@media (max-width: 1024px) {
  .cid-tBopQfYj2W .col-list {
    padding: 0 0 0 20px !important;
  }
}
@media (max-width: 991px) {
  .cid-tBopQfYj2W .col-list {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-tBopQfYj2W .mbr-iconfont {
  position: relative;
  font-size: 16px !important;
  font-family: 'Moririse2' !important;
  font-weight: 900;
  color: #ffffff;
  margin-left: 0.5rem;
}
.cid-tBopQfYj2W .sign-open {
  display: none;
  font-size: 16px !important;
  margin-left: 0.5rem;
  color: #ffffff;
  font-weight: 900;
}
.cid-tBopQfYj2W .panel-group {
  border: none;
}
.cid-tBopQfYj2W .card {
  padding: 10px 10px 10px 0;
  border-radius: 0;
  border-top: 2px solid #ffffff;
}
.cid-tBopQfYj2W .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tBopQfYj2W .card-header:hover .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-tBopQfYj2W .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  color: #131313;
  transition: .2s all;
}
.cid-tBopQfYj2W .panel-title[aria-expanded="true"] .mbr-iconfont {
  display: none;
}
.cid-tBopQfYj2W .panel-title[aria-expanded="true"] .sign-open {
  display: block;
}
.cid-tBopQfYj2W .panel-title-edit {
  color: #ffffff;
}
.cid-tBopQfYj2W .panel-body {
  padding: 0 0 20px;
}
.cid-tBopQfYj2W .panel-text {
  color: #131313;
  margin: 0;
}
.cid-ucJHxsXkeZ {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.cid-ucJHxsXkeZ svg {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.2);
  animation: wave 5s ease-in-out infinite;
}
@keyframes line {
  from {
    transform: translateY(4px);
  }
  50% {
    transform: translateY(-4px);
  }
  to {
    transform: translateY(4px);
  }
}
@keyframes wave {
  from {
    transform: rotate(-0.2deg) translate(-50%) scale(2, 1.2);
  }
  50% {
    transform: rotate(0.2deg) translate(-50%) scale(2.1, 1.3);
  }
  to {
    transform: rotate(-0.2deg) translate(-50%) scale(2, 1.2);
  }
}
.cid-ucJHxsXkeZ .mbr-text,
.cid-ucJHxsXkeZ .mbr-section-btn {
  color: #000000;
}
.cid-ucJHxsXkeZ #e12_areaS3 {
  fill: #780016 !important;
}
.cid-ucJHxsXkeZ #e19_areaS3 {
  fill: #780016 !important;
}
.cid-ucJHxsXkeZ H1 {
  color: #000000;
}
.cid-ucJHxsXkeZ img {
  width: 70%;
  border-radius: 10px;
  animation: line 4s ease-in-out infinite;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-ucJHxsXkeZ .box {
  width: 95%;
  height: 90%;
  opacity: 0.5;
  background-color: #ffffff;
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translate(-50%);
  border-radius: 0.5rem;
}
@media (max-width: 1200px) {
  .cid-ucJHxsXkeZ .box {
    top: 2%;
    width: 97%;
    height: 96%;
  }
}
@media (max-width: 576px) {
  .cid-ucJHxsXkeZ img {
    width: 100%;
  }
}
.cid-ucFIQXS100 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ucFIQXS100 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFIQXS100 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucFIQXS100 .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-ucFIQXS100 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-ucFIQXS100 .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-ucFIQXS100 .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-ucFIQXS100 .container {
    padding: 0 16px;
  }
}
.cid-ucFIQXS100 .google-map iframe {
  height: 400px;
  border-radius: 1rem !important;
}
@media (max-width: 992px) {
  .cid-ucFIQXS100 .google-map iframe {
    height: 350px;
  }
}
.cid-ucFJCUT94h {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #780016;
}
.cid-ucFJCUT94h .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFJCUT94h .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucFJCUT94h .row {
  justify-content: space-between;
}
.cid-ucFJCUT94h .mbr-section-title {
  margin: 0;
  color: #E0BDB6;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-ucFJCUT94h .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-ucFJCUT94h .mbr-text {
  margin-bottom: 10px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-ucFJCUT94h .mbr-section-btn {
    margin-bottom: 20px;
  }
}
.cid-ucFJCUT94h .list {
  padding: 0;
  margin-bottom: 0;
  list-style-type: none;
  color: #ffffff;
}
.cid-ucFJCUT94h .list li {
  margin-bottom: 25px;
}
.cid-ucFJCUT94h .list li:last-child {
  margin-bottom: 0;
}
.cid-ucFJCUT94h .mbr-desc {
  margin-bottom: 8px;
}
.cid-ucFJCUT94h .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ucFJCUT94h .social-row .soc-item {
  margin: 9px 9px 0 0;
}
.cid-ucFJCUT94h .social-row .soc-item a:hover .mbr-iconfont {
  border-color: #5189b8;
}
.cid-ucFJCUT94h .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 #ffffff;
  transition: all .3s ease;
}
.cid-ucFJCUT94h .copyright {
  margin: 110px 0 0 0;
  padding: 17px 70px;
  position: relative;
  color: #ffffff;
  text-align: center;
}
.cid-ucFJCUT94h .copyright:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100rem;
  display: block;
  min-width: 1000vh;
  height: 1px;
  background-color: #ffffff;
  opacity: .4;
}
@media (max-width: 992px) {
  .cid-ucFJCUT94h .copyright {
    margin-top: 50px;
    padding: 17px 24px;
  }
}
.cid-ucFJCUT94h .mbr-desc,
.cid-ucFJCUT94h .mbr-iconfont {
  color: #ffffff;
}
.cid-ucFJCUT94h .mbr-text,
.cid-ucFJCUT94h .mbr-section-btn {
  color: #ffffff;
}
.cid-ucFTn0H7Zb {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ucFTn0H7Zb nav.navbar {
  position: fixed;
}
.cid-ucFTn0H7Zb .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-ucFTn0H7Zb .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ucFTn0H7Zb .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ucFTn0H7Zb .dropdown-item:hover,
.cid-ucFTn0H7Zb .dropdown-item:focus {
  background: #fc7942 !important;
  color: white !important;
}
.cid-ucFTn0H7Zb .dropdown-item:hover span {
  color: white;
}
.cid-ucFTn0H7Zb .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ucFTn0H7Zb .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ucFTn0H7Zb .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ucFTn0H7Zb .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ucFTn0H7Zb .nav-link {
  position: relative;
}
.cid-ucFTn0H7Zb .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ucFTn0H7Zb .container {
    flex-wrap: nowrap;
  }
}
.cid-ucFTn0H7Zb .navbar-nav {
  margin: 0 auto;
}
.cid-ucFTn0H7Zb .dropdown-menu,
.cid-ucFTn0H7Zb .navbar.opened {
  background: #ffffff !important;
}
.cid-ucFTn0H7Zb .nav-item:focus,
.cid-ucFTn0H7Zb .nav-link:focus {
  outline: none;
}
.cid-ucFTn0H7Zb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ucFTn0H7Zb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ucFTn0H7Zb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ucFTn0H7Zb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ucFTn0H7Zb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ucFTn0H7Zb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ucFTn0H7Zb .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  border: none !important;
  box-shadow: none !important;
  overflow: hidden;
}
.cid-ucFTn0H7Zb .navbar.opened {
  transition: all 0.3s;
}
.cid-ucFTn0H7Zb .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ucFTn0H7Zb .navbar .navbar-logo img {
  width: auto;
}
.cid-ucFTn0H7Zb .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ucFTn0H7Zb .navbar.collapsed {
  justify-content: center;
}
.cid-ucFTn0H7Zb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ucFTn0H7Zb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ucFTn0H7Zb .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-ucFTn0H7Zb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ucFTn0H7Zb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ucFTn0H7Zb .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-ucFTn0H7Zb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ucFTn0H7Zb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-ucFTn0H7Zb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ucFTn0H7Zb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ucFTn0H7Zb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ucFTn0H7Zb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ucFTn0H7Zb .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-ucFTn0H7Zb .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ucFTn0H7Zb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ucFTn0H7Zb .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ucFTn0H7Zb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ucFTn0H7Zb .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ucFTn0H7Zb .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ucFTn0H7Zb .navbar.navbar-short {
  min-height: 60px;
}
.cid-ucFTn0H7Zb .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ucFTn0H7Zb .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ucFTn0H7Zb .navbar-brand {
  min-height: 108px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ucFTn0H7Zb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ucFTn0H7Zb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ucFTn0H7Zb .dropdown-item.active,
.cid-ucFTn0H7Zb .dropdown-item:active {
  background-color: transparent;
}
.cid-ucFTn0H7Zb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ucFTn0H7Zb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ucFTn0H7Zb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ucFTn0H7Zb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ucFTn0H7Zb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ucFTn0H7Zb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ucFTn0H7Zb ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ucFTn0H7Zb .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ucFTn0H7Zb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ucFTn0H7Zb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #131313;
}
.cid-ucFTn0H7Zb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ucFTn0H7Zb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucFTn0H7Zb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucFTn0H7Zb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ucFTn0H7Zb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucFTn0H7Zb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ucFTn0H7Zb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ucFTn0H7Zb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucFTn0H7Zb .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ucFTn0H7Zb a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ucFTn0H7Zb .navbar {
    height: 70px;
  }
  .cid-ucFTn0H7Zb .navbar.opened {
    height: auto;
  }
  .cid-ucFTn0H7Zb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ucFTn0H7Zb .container,
.cid-ucFTn0H7Zb .container-fluid {
  position: relative;
  min-height: 108px;
}
@media (min-width: 992px) {
  .cid-ucFTn0H7Zb .container:before,
  .cid-ucFTn0H7Zb .container-fluid:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #131313;
  }
}
.cid-ucFTn0H7Zb .navbar-short {
  background-color: #ffffff !important;
}
.cid-ucFTn0H7Zb .navbar-short .container,
.cid-ucFTn0H7Zb .navbar-short .container-fluid {
  min-height: 85px;
}
.cid-ucFTn0H7Zb .navbar-short .container:before,
.cid-ucFTn0H7Zb .navbar-short .container-fluid:before {
  display: none;
}
.cid-ucFTn0H7Zb .navbar-short .navbar-brand {
  min-height: 85px !important;
}
.cid-ucFTn0H7Zb .mbr-section-btn .btn {
  padding: 10px 25px;
  min-height: 48px;
}
.cid-ucFTn0H7Zb .border-item {
  position: absolute;
  bottom: -1px;
  display: none;
  width: 100%;
  background-color: transparent;
  height: 2px;
  background-color: #131313;
}
@media (max-width: 991px) {
  .cid-ucFTn0H7Zb .border-item {
    display: block;
  }
}
@media (max-width: 991px) {
  .cid-ucFTn0H7Zb .container,
  .cid-ucFTn0H7Zb .container-fluid {
    min-height: 85px;
  }
  .cid-ucFTn0H7Zb .navbar-brand {
    min-height: 85px;
  }
  .cid-ucFTn0H7Zb .navbar-short .container,
  .cid-ucFTn0H7Zb .navbar-short .container-fluid {
    min-height: 75px;
  }
  .cid-ucFTn0H7Zb .navbar-short .navbar-brand {
    min-height: 75px !important;
  }
  .cid-ucFTn0H7Zb .navbar.navbar-short {
    background-color: #ffffff !important;
  }
  .cid-ucFTn0H7Zb .navbar-collapse {
    position: relative;
    order: 5;
    z-index: 5 !important;
    padding-bottom: 10px;
  }
  .cid-ucFTn0H7Zb .navbar-nav .nav-item {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }
  .cid-ucFTn0H7Zb .mbr-section-btn {
    text-align: left;
  }
  .cid-ucFTn0H7Zb .border-item {
    position: relative;
    bottom: 0;
    margin-top: auto;
  }
  .cid-ucFTn0H7Zb .border-item:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100vw;
    height: 100vw;
    background: #ffffff;
    z-index: 4;
    transition: 0.1s all;
  }
}
.cid-ucJOM9szWK {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #780016;
}
.cid-ucJOM9szWK .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucJOM9szWK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-ucJOM9szWK .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ucJOM9szWK img {
  border-radius: 2rem;
}
.cid-ucJOM9szWK .row {
  flex-direction: row-reverse;
}
.cid-ucJOM9szWK .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-ucJOM9szWK .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-ucJOM9szWK .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-ucJOM9szWK .mbr-section-title {
  color: #ffffff;
}
.cid-ucJOM9szWK .mbr-text,
.cid-ucJOM9szWK .mbr-section-btn {
  color: #ffffff;
}
.cid-ucFTn3DTBL {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-ucFTn3DTBL .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #fc7942;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-ucFTn3DTBL .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-ucFTn3DTBL .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-ucFTn3DTBL .main-title.display-2 {
  line-height: 1.375;
}
.cid-ucFTn3DTBL .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-ucFTn3DTBL .mbr-text {
  color: #606060;
}
.cid-ucFTn3DTBL .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-ucFTn3DTBL .mbr-section-btn {
  margin-top: 24px;
}
.cid-ucFTn3DTBL .mbr-section-btn .btn {
  margin-left: 14.1px;
  padding: 18px 26px;
}
.cid-ucFTn3DTBL .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-ucFTn3DTBL .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-ucFTn3DTBL .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFTn3DTBL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucFTn3DTBL .mbr-text,
.cid-ucFTn3DTBL .mbr-section-btn {
  color: #000000;
}
.cid-ucFTnfkPvX {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ucFTnfkPvX .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFTnfkPvX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucFTnfkPvX .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-ucFTnfkPvX .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-ucFTnfkPvX .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-ucFTnfkPvX .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-ucFTnfkPvX .container {
    padding: 0 16px;
  }
}
.cid-ucFTnfkPvX .google-map iframe {
  height: 400px;
  border-radius: 1rem !important;
}
@media (max-width: 992px) {
  .cid-ucFTnfkPvX .google-map iframe {
    height: 350px;
  }
}
.cid-ucFTngmxLs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #780016;
}
.cid-ucFTngmxLs .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFTngmxLs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucFTngmxLs .row {
  justify-content: space-between;
}
.cid-ucFTngmxLs .mbr-section-title {
  margin: 0;
  color: #E0BDB6;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-ucFTngmxLs .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-ucFTngmxLs .mbr-text {
  margin-bottom: 10px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-ucFTngmxLs .mbr-section-btn {
    margin-bottom: 20px;
  }
}
.cid-ucFTngmxLs .list {
  padding: 0;
  margin-bottom: 0;
  list-style-type: none;
  color: #ffffff;
}
.cid-ucFTngmxLs .list li {
  margin-bottom: 25px;
}
.cid-ucFTngmxLs .list li:last-child {
  margin-bottom: 0;
}
.cid-ucFTngmxLs .mbr-desc {
  margin-bottom: 8px;
}
.cid-ucFTngmxLs .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ucFTngmxLs .social-row .soc-item {
  margin: 9px 9px 0 0;
}
.cid-ucFTngmxLs .social-row .soc-item a:hover .mbr-iconfont {
  border-color: #5189b8;
}
.cid-ucFTngmxLs .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-ucFTngmxLs .copyright {
  margin: 110px 0 0 0;
  padding: 17px 70px;
  position: relative;
  color: #000000;
  text-align: center;
}
.cid-ucFTngmxLs .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-ucFTngmxLs .copyright {
    margin-top: 50px;
    padding: 17px 24px;
  }
}
.cid-ucFTngmxLs .mbr-desc,
.cid-ucFTngmxLs .mbr-iconfont {
  color: #ffffff;
}
.cid-ucFTngmxLs .mbr-text,
.cid-ucFTngmxLs .mbr-section-btn {
  color: #ffffff;
}
.cid-ucFTQweqh1 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ucFTQweqh1 nav.navbar {
  position: fixed;
}
.cid-ucFTQweqh1 .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-ucFTQweqh1 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ucFTQweqh1 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ucFTQweqh1 .dropdown-item:hover,
.cid-ucFTQweqh1 .dropdown-item:focus {
  background: #fc7942 !important;
  color: white !important;
}
.cid-ucFTQweqh1 .dropdown-item:hover span {
  color: white;
}
.cid-ucFTQweqh1 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ucFTQweqh1 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ucFTQweqh1 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ucFTQweqh1 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ucFTQweqh1 .nav-link {
  position: relative;
}
.cid-ucFTQweqh1 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ucFTQweqh1 .container {
    flex-wrap: nowrap;
  }
}
.cid-ucFTQweqh1 .navbar-nav {
  margin: 0 auto;
}
.cid-ucFTQweqh1 .dropdown-menu,
.cid-ucFTQweqh1 .navbar.opened {
  background: #ffffff !important;
}
.cid-ucFTQweqh1 .nav-item:focus,
.cid-ucFTQweqh1 .nav-link:focus {
  outline: none;
}
.cid-ucFTQweqh1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ucFTQweqh1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ucFTQweqh1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ucFTQweqh1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ucFTQweqh1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ucFTQweqh1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ucFTQweqh1 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  border: none !important;
  box-shadow: none !important;
  overflow: hidden;
}
.cid-ucFTQweqh1 .navbar.opened {
  transition: all 0.3s;
}
.cid-ucFTQweqh1 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ucFTQweqh1 .navbar .navbar-logo img {
  width: auto;
}
.cid-ucFTQweqh1 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ucFTQweqh1 .navbar.collapsed {
  justify-content: center;
}
.cid-ucFTQweqh1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ucFTQweqh1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ucFTQweqh1 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-ucFTQweqh1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ucFTQweqh1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ucFTQweqh1 .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-ucFTQweqh1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ucFTQweqh1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-ucFTQweqh1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ucFTQweqh1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ucFTQweqh1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ucFTQweqh1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ucFTQweqh1 .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-ucFTQweqh1 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ucFTQweqh1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ucFTQweqh1 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ucFTQweqh1 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ucFTQweqh1 .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ucFTQweqh1 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ucFTQweqh1 .navbar.navbar-short {
  min-height: 60px;
}
.cid-ucFTQweqh1 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ucFTQweqh1 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ucFTQweqh1 .navbar-brand {
  min-height: 108px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ucFTQweqh1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ucFTQweqh1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ucFTQweqh1 .dropdown-item.active,
.cid-ucFTQweqh1 .dropdown-item:active {
  background-color: transparent;
}
.cid-ucFTQweqh1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ucFTQweqh1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ucFTQweqh1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ucFTQweqh1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ucFTQweqh1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ucFTQweqh1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ucFTQweqh1 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ucFTQweqh1 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ucFTQweqh1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ucFTQweqh1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #131313;
}
.cid-ucFTQweqh1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ucFTQweqh1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucFTQweqh1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucFTQweqh1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ucFTQweqh1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucFTQweqh1 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ucFTQweqh1 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ucFTQweqh1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucFTQweqh1 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ucFTQweqh1 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ucFTQweqh1 .navbar {
    height: 70px;
  }
  .cid-ucFTQweqh1 .navbar.opened {
    height: auto;
  }
  .cid-ucFTQweqh1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ucFTQweqh1 .container,
.cid-ucFTQweqh1 .container-fluid {
  position: relative;
  min-height: 108px;
}
@media (min-width: 992px) {
  .cid-ucFTQweqh1 .container:before,
  .cid-ucFTQweqh1 .container-fluid:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #131313;
  }
}
.cid-ucFTQweqh1 .navbar-short {
  background-color: #ffffff !important;
}
.cid-ucFTQweqh1 .navbar-short .container,
.cid-ucFTQweqh1 .navbar-short .container-fluid {
  min-height: 85px;
}
.cid-ucFTQweqh1 .navbar-short .container:before,
.cid-ucFTQweqh1 .navbar-short .container-fluid:before {
  display: none;
}
.cid-ucFTQweqh1 .navbar-short .navbar-brand {
  min-height: 85px !important;
}
.cid-ucFTQweqh1 .mbr-section-btn .btn {
  padding: 10px 25px;
  min-height: 48px;
}
.cid-ucFTQweqh1 .border-item {
  position: absolute;
  bottom: -1px;
  display: none;
  width: 100%;
  background-color: transparent;
  height: 2px;
  background-color: #131313;
}
@media (max-width: 991px) {
  .cid-ucFTQweqh1 .border-item {
    display: block;
  }
}
@media (max-width: 991px) {
  .cid-ucFTQweqh1 .container,
  .cid-ucFTQweqh1 .container-fluid {
    min-height: 85px;
  }
  .cid-ucFTQweqh1 .navbar-brand {
    min-height: 85px;
  }
  .cid-ucFTQweqh1 .navbar-short .container,
  .cid-ucFTQweqh1 .navbar-short .container-fluid {
    min-height: 75px;
  }
  .cid-ucFTQweqh1 .navbar-short .navbar-brand {
    min-height: 75px !important;
  }
  .cid-ucFTQweqh1 .navbar.navbar-short {
    background-color: #ffffff !important;
  }
  .cid-ucFTQweqh1 .navbar-collapse {
    position: relative;
    order: 5;
    z-index: 5 !important;
    padding-bottom: 10px;
  }
  .cid-ucFTQweqh1 .navbar-nav .nav-item {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }
  .cid-ucFTQweqh1 .mbr-section-btn {
    text-align: left;
  }
  .cid-ucFTQweqh1 .border-item {
    position: relative;
    bottom: 0;
    margin-top: auto;
  }
  .cid-ucFTQweqh1 .border-item:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100vw;
    height: 100vw;
    background: #ffffff;
    z-index: 4;
    transition: 0.1s all;
  }
}
.cid-ucJOSIGJcB {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #780016;
}
.cid-ucJOSIGJcB .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucJOSIGJcB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-ucJOSIGJcB .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ucJOSIGJcB img {
  border-radius: 2rem;
}
.cid-ucJOSIGJcB .row {
  flex-direction: row-reverse;
}
.cid-ucJOSIGJcB .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-ucJOSIGJcB .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-ucJOSIGJcB .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-ucJOSIGJcB .mbr-section-title {
  color: #ffffff;
}
.cid-ucJOSIGJcB .mbr-text,
.cid-ucJOSIGJcB .mbr-section-btn {
  color: #ffffff;
}
.cid-ucFTQyvzkp {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-ucFTQyvzkp .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #fc7942;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-ucFTQyvzkp .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-ucFTQyvzkp .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-ucFTQyvzkp .main-title.display-2 {
  line-height: 1.375;
}
.cid-ucFTQyvzkp .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-ucFTQyvzkp .mbr-text {
  color: #606060;
}
.cid-ucFTQyvzkp .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-ucFTQyvzkp .mbr-section-btn {
  margin-top: 24px;
}
.cid-ucFTQyvzkp .mbr-section-btn .btn {
  margin-left: 14.1px;
  padding: 18px 26px;
}
.cid-ucFTQyvzkp .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-ucFTQyvzkp .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-ucFTQyvzkp .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFTQyvzkp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucFTQyvzkp .mbr-text,
.cid-ucFTQyvzkp .mbr-section-btn {
  color: #000000;
}
.cid-ucFTQzmBQ5 {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ucFTQzmBQ5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFTQzmBQ5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucFTQzmBQ5 .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-ucFTQzmBQ5 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-ucFTQzmBQ5 .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-ucFTQzmBQ5 .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-ucFTQzmBQ5 .container {
    padding: 0 16px;
  }
}
.cid-ucFTQzmBQ5 .google-map iframe {
  height: 400px;
  border-radius: 1rem !important;
}
@media (max-width: 992px) {
  .cid-ucFTQzmBQ5 .google-map iframe {
    height: 350px;
  }
}
.cid-ucFTQAff9p {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #780016;
}
.cid-ucFTQAff9p .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFTQAff9p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucFTQAff9p .row {
  justify-content: space-between;
}
.cid-ucFTQAff9p .mbr-section-title {
  margin: 0;
  color: #E0BDB6;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-ucFTQAff9p .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-ucFTQAff9p .mbr-text {
  margin-bottom: 10px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-ucFTQAff9p .mbr-section-btn {
    margin-bottom: 20px;
  }
}
.cid-ucFTQAff9p .list {
  padding: 0;
  margin-bottom: 0;
  list-style-type: none;
  color: #ffffff;
}
.cid-ucFTQAff9p .list li {
  margin-bottom: 25px;
}
.cid-ucFTQAff9p .list li:last-child {
  margin-bottom: 0;
}
.cid-ucFTQAff9p .mbr-desc {
  margin-bottom: 8px;
}
.cid-ucFTQAff9p .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ucFTQAff9p .social-row .soc-item {
  margin: 9px 9px 0 0;
}
.cid-ucFTQAff9p .social-row .soc-item a:hover .mbr-iconfont {
  border-color: #5189b8;
}
.cid-ucFTQAff9p .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 #ffffff;
  transition: all .3s ease;
}
.cid-ucFTQAff9p .copyright {
  margin: 110px 0 0 0;
  padding: 17px 70px;
  position: relative;
  color: #ffffff;
  text-align: center;
}
.cid-ucFTQAff9p .copyright:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100rem;
  display: block;
  min-width: 1000vh;
  height: 1px;
  background-color: #ffffff;
  opacity: .4;
}
@media (max-width: 992px) {
  .cid-ucFTQAff9p .copyright {
    margin-top: 50px;
    padding: 17px 24px;
  }
}
.cid-ucFTQAff9p .mbr-desc,
.cid-ucFTQAff9p .mbr-iconfont {
  color: #ffffff;
}
.cid-ucFTQAff9p .mbr-text,
.cid-ucFTQAff9p .mbr-section-btn {
  color: #ffffff;
}
.cid-ucJOXkyDAf {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ucJOXkyDAf nav.navbar {
  position: fixed;
}
.cid-ucJOXkyDAf .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-ucJOXkyDAf .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ucJOXkyDAf .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ucJOXkyDAf .dropdown-item:hover,
.cid-ucJOXkyDAf .dropdown-item:focus {
  background: #fc7942 !important;
  color: white !important;
}
.cid-ucJOXkyDAf .dropdown-item:hover span {
  color: white;
}
.cid-ucJOXkyDAf .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ucJOXkyDAf .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ucJOXkyDAf .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ucJOXkyDAf .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ucJOXkyDAf .nav-link {
  position: relative;
}
.cid-ucJOXkyDAf .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ucJOXkyDAf .container {
    flex-wrap: nowrap;
  }
}
.cid-ucJOXkyDAf .navbar-nav {
  margin: 0 auto;
}
.cid-ucJOXkyDAf .dropdown-menu,
.cid-ucJOXkyDAf .navbar.opened {
  background: #ffffff !important;
}
.cid-ucJOXkyDAf .nav-item:focus,
.cid-ucJOXkyDAf .nav-link:focus {
  outline: none;
}
.cid-ucJOXkyDAf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ucJOXkyDAf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ucJOXkyDAf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ucJOXkyDAf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ucJOXkyDAf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ucJOXkyDAf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ucJOXkyDAf .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  border: none !important;
  box-shadow: none !important;
  overflow: hidden;
}
.cid-ucJOXkyDAf .navbar.opened {
  transition: all 0.3s;
}
.cid-ucJOXkyDAf .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ucJOXkyDAf .navbar .navbar-logo img {
  width: auto;
}
.cid-ucJOXkyDAf .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ucJOXkyDAf .navbar.collapsed {
  justify-content: center;
}
.cid-ucJOXkyDAf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ucJOXkyDAf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ucJOXkyDAf .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-ucJOXkyDAf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ucJOXkyDAf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ucJOXkyDAf .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-ucJOXkyDAf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ucJOXkyDAf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-ucJOXkyDAf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ucJOXkyDAf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ucJOXkyDAf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ucJOXkyDAf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ucJOXkyDAf .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-ucJOXkyDAf .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ucJOXkyDAf .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ucJOXkyDAf .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ucJOXkyDAf .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ucJOXkyDAf .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ucJOXkyDAf .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ucJOXkyDAf .navbar.navbar-short {
  min-height: 60px;
}
.cid-ucJOXkyDAf .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ucJOXkyDAf .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ucJOXkyDAf .navbar-brand {
  min-height: 108px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ucJOXkyDAf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ucJOXkyDAf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ucJOXkyDAf .dropdown-item.active,
.cid-ucJOXkyDAf .dropdown-item:active {
  background-color: transparent;
}
.cid-ucJOXkyDAf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ucJOXkyDAf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ucJOXkyDAf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ucJOXkyDAf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ucJOXkyDAf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ucJOXkyDAf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ucJOXkyDAf ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ucJOXkyDAf .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ucJOXkyDAf button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ucJOXkyDAf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #131313;
}
.cid-ucJOXkyDAf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ucJOXkyDAf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucJOXkyDAf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucJOXkyDAf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ucJOXkyDAf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucJOXkyDAf nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ucJOXkyDAf nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ucJOXkyDAf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucJOXkyDAf .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ucJOXkyDAf a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ucJOXkyDAf .navbar {
    height: 70px;
  }
  .cid-ucJOXkyDAf .navbar.opened {
    height: auto;
  }
  .cid-ucJOXkyDAf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ucJOXkyDAf .container,
.cid-ucJOXkyDAf .container-fluid {
  position: relative;
  min-height: 108px;
}
@media (min-width: 992px) {
  .cid-ucJOXkyDAf .container:before,
  .cid-ucJOXkyDAf .container-fluid:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #131313;
  }
}
.cid-ucJOXkyDAf .navbar-short {
  background-color: #ffffff !important;
}
.cid-ucJOXkyDAf .navbar-short .container,
.cid-ucJOXkyDAf .navbar-short .container-fluid {
  min-height: 85px;
}
.cid-ucJOXkyDAf .navbar-short .container:before,
.cid-ucJOXkyDAf .navbar-short .container-fluid:before {
  display: none;
}
.cid-ucJOXkyDAf .navbar-short .navbar-brand {
  min-height: 85px !important;
}
.cid-ucJOXkyDAf .mbr-section-btn .btn {
  padding: 10px 25px;
  min-height: 48px;
}
.cid-ucJOXkyDAf .border-item {
  position: absolute;
  bottom: -1px;
  display: none;
  width: 100%;
  background-color: transparent;
  height: 2px;
  background-color: #131313;
}
@media (max-width: 991px) {
  .cid-ucJOXkyDAf .border-item {
    display: block;
  }
}
@media (max-width: 991px) {
  .cid-ucJOXkyDAf .container,
  .cid-ucJOXkyDAf .container-fluid {
    min-height: 85px;
  }
  .cid-ucJOXkyDAf .navbar-brand {
    min-height: 85px;
  }
  .cid-ucJOXkyDAf .navbar-short .container,
  .cid-ucJOXkyDAf .navbar-short .container-fluid {
    min-height: 75px;
  }
  .cid-ucJOXkyDAf .navbar-short .navbar-brand {
    min-height: 75px !important;
  }
  .cid-ucJOXkyDAf .navbar.navbar-short {
    background-color: #ffffff !important;
  }
  .cid-ucJOXkyDAf .navbar-collapse {
    position: relative;
    order: 5;
    z-index: 5 !important;
    padding-bottom: 10px;
  }
  .cid-ucJOXkyDAf .navbar-nav .nav-item {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }
  .cid-ucJOXkyDAf .mbr-section-btn {
    text-align: left;
  }
  .cid-ucJOXkyDAf .border-item {
    position: relative;
    bottom: 0;
    margin-top: auto;
  }
  .cid-ucJOXkyDAf .border-item:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100vw;
    height: 100vw;
    background: #ffffff;
    z-index: 4;
    transition: 0.1s all;
  }
}
.cid-ucJOXlCGcP {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #780016;
}
.cid-ucJOXlCGcP .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucJOXlCGcP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-ucJOXlCGcP .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ucJOXlCGcP img {
  border-radius: 2rem;
}
.cid-ucJOXlCGcP .row {
  flex-direction: row-reverse;
}
.cid-ucJOXlCGcP .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-ucJOXlCGcP .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-ucJOXlCGcP .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-ucJOXlCGcP .mbr-section-title {
  color: #ffffff;
}
.cid-ucJOXlCGcP .mbr-text,
.cid-ucJOXlCGcP .mbr-section-btn {
  color: #ffffff;
}
.cid-ucJOXmC34p {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ucJOXmC34p .container {
  max-width: 1240px;
}
@media (max-width: 1199px) {
  .cid-ucJOXmC34p .container {
    max-width: 1040px;
  }
}
.cid-ucJOXmC34p .row {
  justify-content: center;
}
.cid-ucJOXmC34p .item:focus,
.cid-ucJOXmC34p span:focus {
  outline: none;
}
.cid-ucJOXmC34p .col-items {
  display: flex;
  justify-content: center;
  align-items: stretch;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-ucJOXmC34p .col-items {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-ucJOXmC34p .item {
    width: 100%;
  }
  .cid-ucJOXmC34p .item:first-child {
    padding-bottom: 0.5rem;
  }
  .cid-ucJOXmC34p .item:last-child {
    padding-top: 0.5rem;
  }
}
@media (min-width: 992px) {
  .cid-ucJOXmC34p .item:first-child {
    padding-right: 0.5rem;
  }
  .cid-ucJOXmC34p .item:last-child {
    padding-left: 0.5rem;
  }
}
.cid-ucJOXmC34p .item-wrap {
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  padding: 24px;
  border-radius: 1rem;
}
@media (min-width: 768px) {
  .cid-ucJOXmC34p .item-wrap {
    padding: 27px;
  }
}
@media (min-width: 992px) {
  .cid-ucJOXmC34p .item-wrap {
    padding: 50px;
  }
}
.cid-ucJOXmC34p .item-content {
  width: 100%;
}
.cid-ucJOXmC34p .label-text {
  color: #ffffff;
  opacity: 0.8;
  width: 100%;
  margin-bottom: 16px;
}
.cid-ucJOXmC34p .mbr-text {
  color: #ffffff;
  margin-top: 12px;
  margin-bottom: 0;
  opacity: 0.8;
}
.cid-ucJOXmC34p .item-title {
  color: #ffffff;
  margin-top: 12px;
  margin-bottom: 0;
}
.cid-ucJOXmC34p .list-container {
  display: flex;
  flex-direction: column;
  margin-top: 18px;
}
.cid-ucJOXmC34p .list-item {
  display: flex;
  align-items: center;
}
.cid-ucJOXmC34p .list-item:not(:last-child) {
  margin-bottom: 16px;
}
.cid-ucJOXmC34p .icon-box {
  padding-right: 14px;
}
.cid-ucJOXmC34p .list-text {
  flex-grow: 1;
  color: #000000;
  margin-bottom: 0;
}
.cid-ucJOXmC34p .link-container {
  display: flex;
  flex-direction: column;
  margin-top: 50px;
}
@media (min-width: 992px) {
  .cid-ucJOXmC34p .link-container {
    margin-top: 72px;
  }
}
.cid-ucJOXmC34p .link-container .link:first-child {
  margin-bottom: 16px;
}
.cid-ucJOXmC34p .link-container .link span {
  padding-right: 10px;
}
.cid-ucJOXnTgyu {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #780016;
}
.cid-ucJOXnTgyu .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #fc7942;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-ucJOXnTgyu .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-ucJOXnTgyu .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-ucJOXnTgyu .main-title.display-2 {
  line-height: 1.375;
}
.cid-ucJOXnTgyu .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-ucJOXnTgyu .mbr-text {
  color: #606060;
}
.cid-ucJOXnTgyu .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-ucJOXnTgyu .mbr-section-btn {
  margin-top: 24px;
}
.cid-ucJOXnTgyu .mbr-section-btn .btn {
  margin-left: 14.1px;
  padding: 18px 26px;
}
.cid-ucJOXnTgyu .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-ucJOXnTgyu .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-ucJOXnTgyu .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucJOXnTgyu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucJOXnTgyu .mbr-text,
.cid-ucJOXnTgyu .mbr-section-btn {
  color: #ffffff;
}
.cid-ucJOXoMvG1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ucJOXoMvG1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucJOXoMvG1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucJOXoMvG1 .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-ucJOXoMvG1 .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-ucJOXoMvG1 .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-ucJOXoMvG1 .mbr-section-title {
  color: #131313;
}
.cid-ucJOXoMvG1 .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-ucJOXoMvG1 .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-ucJOXoMvG1 .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-ucJOXoMvG1 .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #000000;
  box-shadow: 4px 4px 0 #000000;
  background: #780016;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-ucJOXoMvG1 .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-ucJOXoMvG1 .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-ucJOXoMvG1 .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-ucJOXoMvG1 .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-ucJOXoMvG1 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #ffffff;
}
.cid-ucJOXoMvG1 .card-title {
  color: #131313;
}
.cid-ucJOXoMvG1 .card-text {
  margin-top: 10px;
  color: #131313;
  text-align: center;
}
.cid-ucJOXoMvG1 .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-ucJOXoMvG1 .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-ucJOXoMvG1 .card-link {
    margin-top: 15px;
  }
}
.cid-ucJOXoMvG1 .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-ucJOXoMvG1 .card-title,
.cid-ucJOXoMvG1 .iconfont-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-ucJOXpYj29 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #780016;
}
.cid-ucJOXpYj29 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucJOXpYj29 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-ucJOXpYj29 .container {
    padding: 0 24px;
  }
}
.cid-ucJOXpYj29 .image-wrapper {
  padding-right: 80px;
  padding-right: 0;
  padding-left: 80px;
}
@media (max-width: 992px) {
  .cid-ucJOXpYj29 .image-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-ucJOXpYj29 .image-wrapper {
    padding: 0;
    margin-bottom: 40px;
  }
}
.cid-ucJOXpYj29 .image-wrapper img {
  height: 600px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ucJOXpYj29 .image-wrapper img {
    height: 350px;
  }
}
.cid-ucJOXpYj29 .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-ucJOXpYj29 .content-wrapper .mbr-section-title span {
  color: #e0b548;
}
.cid-ucJOXpYj29 .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ucJOXpYj29 .content-wrapper .mbr-desc {
  margin: 32px 0 0;
}
@media (max-width: 992px) {
  .cid-ucJOXpYj29 .content-wrapper .mbr-desc {
    margin: 24px 0 0;
  }
}
.cid-ucJOXpYj29 .content-wrapper .mbr-section-btn {
  margin-top: 32px;
}
@media (max-width: 992px) {
  .cid-ucJOXpYj29 .content-wrapper .mbr-section-btn {
    margin-top: 24px;
  }
}
.cid-ucJOXpYj29 .mbr-section-title {
  color: #F9F6E0;
}
.cid-ucJOXpYj29 .mbr-text {
  color: #ffffff;
}
.cid-ucJOXpYj29 .mbr-desc {
  color: #E0B548;
}
.cid-ucJOXpYj29 .mbr-section-title,
.cid-ucJOXpYj29 .mbr-section-btn {
  color: #ffffff;
}
.cid-ucJOXqTOKi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ucJOXqTOKi .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-ucJOXqTOKi .card-title {
  margin-bottom: 26px;
  color: #a6d8b5;
}
.cid-ucJOXqTOKi .mbr-text {
  margin-bottom: 30px;
}
.cid-ucJOXqTOKi .iconfont-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  display: inline-block;
  text-align: center;
  width: 70px;
  height: 70px;
}
.cid-ucJOXqTOKi .iconfont-wrapper svg {
  position: absolute;
  top: -20px;
  left: -28px;
}
.cid-ucJOXqTOKi .iconfont-wrapper svg #grad_1 {
  stop-color: #6b3df0;
}
.cid-ucJOXqTOKi .iconfont-wrapper svg #grad_2 {
  stop-color: #b39cf7;
}
.cid-ucJOXqTOKi .iconfont-wrapper svg #blur_svg {
  flood-color: #6b3df0;
}
.cid-ucJOXqTOKi .iconfont-wrapper .mbr-iconfont {
  color: #ffffff;
  font-size: 38px;
  line-height: 73px;
  position: absolute;
  top: 0;
  left: 14px;
  z-index: 5;
}
@media (min-width: 992px) {
  .cid-ucJOXqTOKi .text-wrapper {
    padding-right: 0;
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ucJOXqTOKi .text-wrapper {
    text-align: center;
  }
  .cid-ucJOXqTOKi .image-wrapper {
    margin-bottom: 40px;
  }
  .cid-ucJOXqTOKi .mbr-text {
    margin-bottom: 20px;
  }
  .cid-ucJOXqTOKi .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-ucJOXqTOKi .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucJOXqTOKi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucJOXqTOKi .mbr-text,
.cid-ucJOXqTOKi .mbr-section-btn {
  color: #000000;
}
.cid-ucJOXqTOKi .card-title,
.cid-ucJOXqTOKi .icon_block {
  color: #000000;
}
.cid-ucJOXrYNRd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #780016;
}
.cid-ucJOXrYNRd .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucJOXrYNRd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucJOXrYNRd .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-ucJOXrYNRd .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-ucJOXrYNRd .container {
    padding: 0 24px;
  }
}
.cid-ucJOXrYNRd .row {
  justify-content: center;
}
.cid-ucJOXrYNRd .content-wrapper {
  border-radius: 40px;
  background-color: #780016;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-ucJOXrYNRd .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-ucJOXrYNRd .content-wrapper {
    padding: 32px;
  }
}
.cid-ucJOXrYNRd .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-ucJOXrYNRd .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-ucJOXrYNRd .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ucJOXrYNRd .mbr-text {
  color: #ffffff;
}
.cid-ucJOXsSbvf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ucJOXsSbvf .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucJOXsSbvf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucJOXsSbvf .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1500px) {
  .cid-ucJOXsSbvf .mbr-section-head {
    margin-bottom: 40px;
  }
}
@media (max-width: 991px) {
  .cid-ucJOXsSbvf .mbr-section-head {
    margin-bottom: 20px;
  }
}
.cid-ucJOXsSbvf .mbr-section-title {
  color: #131313;
}
.cid-ucJOXsSbvf .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-ucJOXsSbvf .cards-row {
  margin-top: 5px;
  row-gap: 20px;
}
.cid-ucJOXsSbvf .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-ucJOXsSbvf .card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  padding: 60px 52px 48px 48px;
  margin: 0 auto;
  border: 2px solid #780016;
  box-shadow: 4px 4px 0 #780016;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1024px) {
  .cid-ucJOXsSbvf .card-wrapper {
    padding: 30px 30px 40px 25px;
  }
}
@media (max-width: 767px) {
  .cid-ucJOXsSbvf .card-wrapper {
    padding: 10px 25px 40px 20px;
  }
}
@media (min-width: 992px) {
  .cid-ucJOXsSbvf .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-ucJOXsSbvf .card-title {
  color: #131313;
  text-align: center;
}
.cid-ucJOXsSbvf .price-box {
  display: flex;
  align-items: baseline;
  width: 100%;
  margin-top: 20px;
}
@media (max-width: 1024px) {
  .cid-ucJOXsSbvf .price-box {
    margin-top: 5px;
  }
}
.cid-ucJOXsSbvf .number-text {
  color: #FC7942;
}
.cid-ucJOXsSbvf .stint-text {
  color: #FC7942;
}
.cid-ucJOXsSbvf .card-text {
  margin-top: 20px;
  color: #131313;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-ucJOXsSbvf .card-text {
    margin-top: 10px;
  }
}
.cid-ucJOXsSbvf .list-box {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  width: 100%;
  margin-top: 50px;
}
@media (max-width: 1024px) {
  .cid-ucJOXsSbvf .list-box {
    margin-top: 24px;
  }
}
.cid-ucJOXsSbvf .list-item {
  display: flex;
  align-items: center;
  width: 100%;
  column-gap: 10px;
}
.cid-ucJOXsSbvf .iconfont-wrapper {
  flex-shrink: 0;
}
.cid-ucJOXsSbvf .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 18px;
  color: #fc7942;
}
.cid-ucJOXsSbvf .list-text {
  flex-grow: 1;
  color: #131313;
}
.cid-ucJOXsSbvf .mbr-section-btn {
  margin-top: auto;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-top: 65px;
}
@media (max-width: 1199px) {
  .cid-ucJOXsSbvf .mbr-section-btn {
    padding-top: 30px;
  }
}
@media (max-width: 991px) {
  .cid-ucJOXsSbvf .mbr-section-btn {
    padding-top: 20px;
  }
}
.cid-ucJOXsSbvf .mbr-section-btn .btn {
  width: 100%;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
@media (max-width: 1500px) {
  .cid-ucJOXsSbvf .mbr-section-btn .btn {
    padding: 20px 24px !important;
  }
}
.cid-ucJOXusnUb {
  padding-top: 7rem;
  padding-bottom: 8rem;
  background-color: #780016;
}
.cid-ucJOXusnUb .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucJOXusnUb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucJOXusnUb .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ucJOXusnUb .mbr-section-subtitle {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-ucJOXusnUb .mbr-section-subtitle {
    margin-top: 18px;
  }
}
.cid-ucJOXusnUb .mbr-text {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-ucJOXusnUb .mbr-text {
    margin-top: 18px;
  }
}
.cid-ucJOXusnUb .mbr-section-btn {
  margin-top: 60px;
}
@media (max-width: 991px) {
  .cid-ucJOXusnUb .mbr-section-btn {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .cid-ucJOXusnUb .mbr-section-btn {
    margin-top: 20px;
  }
}
.cid-ucJOXusnUb .mbr-text,
.cid-ucJOXusnUb .mbr-section-btn {
  color: #ffffff;
}
.cid-ucJOXvoT5R {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ucJOXvoT5R .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucJOXvoT5R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucJOXvoT5R .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-ucJOXvoT5R .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-ucJOXvoT5R .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-ucJOXvoT5R .mbr-section-title {
  color: #131313;
}
.cid-ucJOXvoT5R .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-ucJOXvoT5R .items-row {
  row-gap: 40px;
  margin: 5px -20px 0 !important;
}
@media (max-width: 767px) {
  .cid-ucJOXvoT5R .items-row {
    row-gap: 30px;
    margin: 0 -15px !important;
  }
}
.cid-ucJOXvoT5R .item {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
  padding: 0 20px !important;
}
.cid-ucJOXvoT5R .item-wrapper {
  width: 100%;
  padding: 11px 11px 40px;
  border: 2px solid #780016;
  box-shadow: 4px 4px 0 #780016;
  background: #ffffff;
  transition: .3s all;
}
@media (min-width: 992px) {
  .cid-ucJOXvoT5R .item-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-ucJOXvoT5R .item-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 674/calc(145 * 3);
}
.cid-ucJOXvoT5R .item-content {
  margin-top: 40px;
  padding-left: 40px;
  padding-right: 130px;
}
@media (max-width: 1199px) {
  .cid-ucJOXvoT5R .item-content {
    margin-top: 0;
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .cid-ucJOXvoT5R .item-content {
    margin-top: 20px;
  }
}
.cid-ucJOXvoT5R .card-title {
  color: #131313;
}
.cid-ucJOXvoT5R .card-text {
  margin-top: 5px;
  color: #131313;
}
.cid-ucJOXvoT5R .link-text {
  margin-top: 14px;
  color: #FC7942;
}
@media (max-width: 991px) {
  .cid-ucJOXvoT5R .link-text {
    margin-top: 10px;
  }
}
.cid-ucJOXvoT5R .link-text a.text-primary:hover {
  color: #131313 !important;
}
.cid-ucJOXvoT5R .mbr-section-btn {
  margin-top: 5px;
}
.cid-ucJOXvoT5R .card-text,
.cid-ucJOXvoT5R .mbr-section-btn {
  text-align: center;
}
.cid-ucJOXwvWsj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #780016;
}
.cid-ucJOXwvWsj .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucJOXwvWsj .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-ucJOXwvWsj .container {
    padding: 0 20px;
  }
}
.cid-ucJOXwvWsj .row {
  margin: 0;
}
.cid-ucJOXwvWsj .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-ucJOXwvWsj .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-ucJOXwvWsj .video-block .video-wrapper .app-video-wrapper::before {
  color: #f5fd7b;
  text-shadow: none;
}
.cid-ucJOXwvWsj .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-ucJOXwvWsj .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-ucJOXwvWsj .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-ucJOXwvWsj .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ucJOXxuwl7 {
  background-color: #780016;
}
.cid-ucJOXxuwl7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucJOXxuwl7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucJOXxuwl7 .content-bg {
  border-top-left-radius: 6.67rem;
  border-top-right-radius: 6.67rem;
  width: 100%;
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: transparent;
  background: #ffffff;
}
.cid-ucJOXxuwl7 .container {
  max-width: 1280px;
}
.cid-ucJOXxuwl7 .row {
  justify-content: center;
}
.cid-ucJOXxuwl7 .mbr-section-title {
  color: #212132;
}
.cid-ucJOXxuwl7 .mbr-section-subtitle {
  color: #212132;
  margin-top: 1rem;
}
.cid-ucJOXxuwl7 .mbr-section-title,
.cid-ucJOXxuwl7 .mbr-section-btn {
  color: #000000;
}
.cid-ucJOXyyD1x {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #780016;
}
.cid-ucJOXyyD1x .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucJOXyyD1x .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucJOXyyD1x .row {
  margin: 0 !important;
}
.cid-ucJOXyyD1x .mbr-section-head {
  width: 40%;
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-ucJOXyyD1x .mbr-section-head {
    width: 100%;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-ucJOXyyD1x .mbr-section-head {
    margin-bottom: 40px;
  }
}
.cid-ucJOXyyD1x .mbr-section-title {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-ucJOXyyD1x .mbr-section-subtitle {
  color: #131313;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-ucJOXyyD1x .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-ucJOXyyD1x .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-ucJOXyyD1x .mbr-section-btn {
    margin-top: 10px;
  }
}
.cid-ucJOXyyD1x .col-list {
  width: 1px;
  flex-grow: 1;
  padding: 0 0 0 100px !important;
}
@media (max-width: 1024px) {
  .cid-ucJOXyyD1x .col-list {
    padding: 0 0 0 20px !important;
  }
}
@media (max-width: 991px) {
  .cid-ucJOXyyD1x .col-list {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-ucJOXyyD1x .mbr-iconfont {
  position: relative;
  font-size: 16px !important;
  font-family: 'Moririse2' !important;
  font-weight: 900;
  color: #ffffff;
  margin-left: 0.5rem;
}
.cid-ucJOXyyD1x .sign-open {
  display: none;
  font-size: 16px !important;
  margin-left: 0.5rem;
  color: #ffffff;
  font-weight: 900;
}
.cid-ucJOXyyD1x .panel-group {
  border: none;
}
.cid-ucJOXyyD1x .card {
  padding: 10px 10px 10px 0;
  border-radius: 0;
  border-top: 2px solid #ffffff;
}
.cid-ucJOXyyD1x .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
  margin-bottom: 0;
}
.cid-ucJOXyyD1x .card-header:hover .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-ucJOXyyD1x .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  color: #131313;
  transition: .2s all;
}
.cid-ucJOXyyD1x .panel-title[aria-expanded="true"] .mbr-iconfont {
  display: none;
}
.cid-ucJOXyyD1x .panel-title[aria-expanded="true"] .sign-open {
  display: block;
}
.cid-ucJOXyyD1x .panel-title-edit {
  color: #ffffff;
}
.cid-ucJOXyyD1x .panel-body {
  padding: 0 0 20px;
}
.cid-ucJOXyyD1x .panel-text {
  color: #131313;
  margin: 0;
}
.cid-ucJOXzRndS {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.cid-ucJOXzRndS svg {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.2);
  animation: wave 5s ease-in-out infinite;
}
@keyframes line {
  from {
    transform: translateY(4px);
  }
  50% {
    transform: translateY(-4px);
  }
  to {
    transform: translateY(4px);
  }
}
@keyframes wave {
  from {
    transform: rotate(-0.2deg) translate(-50%) scale(2, 1.2);
  }
  50% {
    transform: rotate(0.2deg) translate(-50%) scale(2.1, 1.3);
  }
  to {
    transform: rotate(-0.2deg) translate(-50%) scale(2, 1.2);
  }
}
.cid-ucJOXzRndS .mbr-text,
.cid-ucJOXzRndS .mbr-section-btn {
  color: #000000;
}
.cid-ucJOXzRndS #e12_areaS3 {
  fill: #780016 !important;
}
.cid-ucJOXzRndS #e19_areaS3 {
  fill: #780016 !important;
}
.cid-ucJOXzRndS H1 {
  color: #000000;
}
.cid-ucJOXzRndS img {
  width: 70%;
  border-radius: 10px;
  animation: line 4s ease-in-out infinite;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-ucJOXzRndS .box {
  width: 95%;
  height: 90%;
  opacity: 0.5;
  background-color: #ffffff;
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translate(-50%);
  border-radius: 0.5rem;
}
@media (max-width: 1200px) {
  .cid-ucJOXzRndS .box {
    top: 2%;
    width: 97%;
    height: 96%;
  }
}
@media (max-width: 576px) {
  .cid-ucJOXzRndS img {
    width: 100%;
  }
}
.cid-ucJQo5zEBW {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ucJQo5zEBW .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucJQo5zEBW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucJQo5zEBW .container-fluid {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-ucJQo5zEBW .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-ucJQo5zEBW .container {
    padding: 0 20px;
  }
}
.cid-ucJQo5zEBW .content-wrapper {
  padding: 60px 0;
}
@media (max-width: 992px) {
  .cid-ucJQo5zEBW .content-wrapper {
    padding: 46px 0;
  }
}
.cid-ucJQo5zEBW .content-wrapper .content-wrap {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-ucJQo5zEBW .content-wrapper .content-wrap {
    margin-bottom: 46px;
  }
}
.cid-ucJQo5zEBW .content-wrapper .content-wrap .mbr-desc {
  margin-bottom: 32px;
}
.cid-ucJQo5zEBW .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-ucJQo5zEBW .content-wrapper .panel-group .card {
  border-radius: 20px !important;
  background-color: #780016;
  margin-bottom: 12px;
  padding: 60px;
}
@media (max-width: 992px) {
  .cid-ucJQo5zEBW .content-wrapper .panel-group .card {
    padding: 46px 20px;
  }
}
.cid-ucJQo5zEBW .content-wrapper .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-ucJQo5zEBW .content-wrapper .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-ucJQo5zEBW .content-wrapper .panel-group .card .card-header .panel-title .panel-title-edit {
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-ucJQo5zEBW .content-wrapper .panel-group .card .card-header .panel-title .panel-title-edit {
    width: auto;
  }
}
.cid-ucJQo5zEBW .content-wrapper .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  width: 32px;
  height: 32px;
  min-width: 32px;
  transition: all 0.3s ease-in-out;
  color: #ffffff;
  margin-left: 16px;
}
.cid-ucJQo5zEBW .content-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-ucJQo5zEBW .content-wrapper .panel-group .card .panel-collapse .panel-body {
  padding-top: 60px;
}
@media (max-width: 992px) {
  .cid-ucJQo5zEBW .content-wrapper .panel-group .card .panel-collapse .panel-body {
    padding-top: 46px;
  }
}
.cid-ucJQo5zEBW .content-wrapper .panel-group .card .panel-collapse .panel-body .panel-text {
  display: inline-flex;
  width: 30%;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .cid-ucJQo5zEBW .content-wrapper .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 50%;
  }
}
@media (max-width: 992px) {
  .cid-ucJQo5zEBW .content-wrapper .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 100%;
  }
}
.cid-ucJQo5zEBW .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-ucJQo5zEBW .mbr-desc {
  color: #000000;
  text-align: center;
}
.cid-ucJQo5zEBW .panel-title-edit {
  color: #ffffff;
}
.cid-ucJQo5zEBW .panel-text {
  color: #000000;
}
.cid-ucJQo5zEBW .panel-text,
.cid-ucJQo5zEBW .panel-body {
  color: #ffffff;
}
.cid-ucJOXAVLti {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ucJOXAVLti .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucJOXAVLti .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucJOXAVLti .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-ucJOXAVLti .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-ucJOXAVLti .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-ucJOXAVLti .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-ucJOXAVLti .container {
    padding: 0 16px;
  }
}
.cid-ucJOXAVLti .google-map iframe {
  height: 400px;
  border-radius: 1rem !important;
}
@media (max-width: 992px) {
  .cid-ucJOXAVLti .google-map iframe {
    height: 350px;
  }
}
.cid-ucJOXBXFYt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #780016;
}
.cid-ucJOXBXFYt .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucJOXBXFYt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucJOXBXFYt .row {
  justify-content: space-between;
}
.cid-ucJOXBXFYt .mbr-section-title {
  margin: 0;
  color: #E0BDB6;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-ucJOXBXFYt .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-ucJOXBXFYt .mbr-text {
  margin-bottom: 10px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-ucJOXBXFYt .mbr-section-btn {
    margin-bottom: 20px;
  }
}
.cid-ucJOXBXFYt .list {
  padding: 0;
  margin-bottom: 0;
  list-style-type: none;
  color: #ffffff;
}
.cid-ucJOXBXFYt .list li {
  margin-bottom: 25px;
}
.cid-ucJOXBXFYt .list li:last-child {
  margin-bottom: 0;
}
.cid-ucJOXBXFYt .mbr-desc {
  margin-bottom: 8px;
}
.cid-ucJOXBXFYt .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ucJOXBXFYt .social-row .soc-item {
  margin: 9px 9px 0 0;
}
.cid-ucJOXBXFYt .social-row .soc-item a:hover .mbr-iconfont {
  border-color: #5189b8;
}
.cid-ucJOXBXFYt .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 #ffffff;
  transition: all .3s ease;
}
.cid-ucJOXBXFYt .copyright {
  margin: 110px 0 0 0;
  padding: 17px 70px;
  position: relative;
  color: #ffffff;
  text-align: center;
}
.cid-ucJOXBXFYt .copyright:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100rem;
  display: block;
  min-width: 1000vh;
  height: 1px;
  background-color: #ffffff;
  opacity: .4;
}
@media (max-width: 992px) {
  .cid-ucJOXBXFYt .copyright {
    margin-top: 50px;
    padding: 17px 24px;
  }
}
.cid-ucJOXBXFYt .mbr-desc,
.cid-ucJOXBXFYt .mbr-iconfont {
  color: #ffffff;
}
.cid-ucJOXBXFYt .mbr-text,
.cid-ucJOXBXFYt .mbr-section-btn {
  color: #ffffff;
}
.cid-ucJQBN0eLV {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ucJQBN0eLV nav.navbar {
  position: fixed;
}
.cid-ucJQBN0eLV .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-ucJQBN0eLV .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ucJQBN0eLV .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ucJQBN0eLV .dropdown-item:hover,
.cid-ucJQBN0eLV .dropdown-item:focus {
  background: #fc7942 !important;
  color: white !important;
}
.cid-ucJQBN0eLV .dropdown-item:hover span {
  color: white;
}
.cid-ucJQBN0eLV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ucJQBN0eLV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ucJQBN0eLV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ucJQBN0eLV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ucJQBN0eLV .nav-link {
  position: relative;
}
.cid-ucJQBN0eLV .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ucJQBN0eLV .container {
    flex-wrap: nowrap;
  }
}
.cid-ucJQBN0eLV .navbar-nav {
  margin: 0 auto;
}
.cid-ucJQBN0eLV .dropdown-menu,
.cid-ucJQBN0eLV .navbar.opened {
  background: #ffffff !important;
}
.cid-ucJQBN0eLV .nav-item:focus,
.cid-ucJQBN0eLV .nav-link:focus {
  outline: none;
}
.cid-ucJQBN0eLV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ucJQBN0eLV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ucJQBN0eLV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ucJQBN0eLV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ucJQBN0eLV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ucJQBN0eLV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ucJQBN0eLV .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  border: none !important;
  box-shadow: none !important;
  overflow: hidden;
}
.cid-ucJQBN0eLV .navbar.opened {
  transition: all 0.3s;
}
.cid-ucJQBN0eLV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ucJQBN0eLV .navbar .navbar-logo img {
  width: auto;
}
.cid-ucJQBN0eLV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ucJQBN0eLV .navbar.collapsed {
  justify-content: center;
}
.cid-ucJQBN0eLV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ucJQBN0eLV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ucJQBN0eLV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-ucJQBN0eLV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ucJQBN0eLV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ucJQBN0eLV .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-ucJQBN0eLV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ucJQBN0eLV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-ucJQBN0eLV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ucJQBN0eLV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ucJQBN0eLV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ucJQBN0eLV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ucJQBN0eLV .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-ucJQBN0eLV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ucJQBN0eLV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ucJQBN0eLV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ucJQBN0eLV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ucJQBN0eLV .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ucJQBN0eLV .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ucJQBN0eLV .navbar.navbar-short {
  min-height: 60px;
}
.cid-ucJQBN0eLV .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ucJQBN0eLV .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ucJQBN0eLV .navbar-brand {
  min-height: 108px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ucJQBN0eLV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ucJQBN0eLV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ucJQBN0eLV .dropdown-item.active,
.cid-ucJQBN0eLV .dropdown-item:active {
  background-color: transparent;
}
.cid-ucJQBN0eLV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ucJQBN0eLV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ucJQBN0eLV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ucJQBN0eLV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ucJQBN0eLV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ucJQBN0eLV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ucJQBN0eLV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ucJQBN0eLV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ucJQBN0eLV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ucJQBN0eLV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #131313;
}
.cid-ucJQBN0eLV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ucJQBN0eLV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucJQBN0eLV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucJQBN0eLV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ucJQBN0eLV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucJQBN0eLV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ucJQBN0eLV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ucJQBN0eLV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucJQBN0eLV .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ucJQBN0eLV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ucJQBN0eLV .navbar {
    height: 70px;
  }
  .cid-ucJQBN0eLV .navbar.opened {
    height: auto;
  }
  .cid-ucJQBN0eLV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ucJQBN0eLV .container,
.cid-ucJQBN0eLV .container-fluid {
  position: relative;
  min-height: 108px;
}
@media (min-width: 992px) {
  .cid-ucJQBN0eLV .container:before,
  .cid-ucJQBN0eLV .container-fluid:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #131313;
  }
}
.cid-ucJQBN0eLV .navbar-short {
  background-color: #ffffff !important;
}
.cid-ucJQBN0eLV .navbar-short .container,
.cid-ucJQBN0eLV .navbar-short .container-fluid {
  min-height: 85px;
}
.cid-ucJQBN0eLV .navbar-short .container:before,
.cid-ucJQBN0eLV .navbar-short .container-fluid:before {
  display: none;
}
.cid-ucJQBN0eLV .navbar-short .navbar-brand {
  min-height: 85px !important;
}
.cid-ucJQBN0eLV .mbr-section-btn .btn {
  padding: 10px 25px;
  min-height: 48px;
}
.cid-ucJQBN0eLV .border-item {
  position: absolute;
  bottom: -1px;
  display: none;
  width: 100%;
  background-color: transparent;
  height: 2px;
  background-color: #131313;
}
@media (max-width: 991px) {
  .cid-ucJQBN0eLV .border-item {
    display: block;
  }
}
@media (max-width: 991px) {
  .cid-ucJQBN0eLV .container,
  .cid-ucJQBN0eLV .container-fluid {
    min-height: 85px;
  }
  .cid-ucJQBN0eLV .navbar-brand {
    min-height: 85px;
  }
  .cid-ucJQBN0eLV .navbar-short .container,
  .cid-ucJQBN0eLV .navbar-short .container-fluid {
    min-height: 75px;
  }
  .cid-ucJQBN0eLV .navbar-short .navbar-brand {
    min-height: 75px !important;
  }
  .cid-ucJQBN0eLV .navbar.navbar-short {
    background-color: #ffffff !important;
  }
  .cid-ucJQBN0eLV .navbar-collapse {
    position: relative;
    order: 5;
    z-index: 5 !important;
    padding-bottom: 10px;
  }
  .cid-ucJQBN0eLV .navbar-nav .nav-item {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }
  .cid-ucJQBN0eLV .mbr-section-btn {
    text-align: left;
  }
  .cid-ucJQBN0eLV .border-item {
    position: relative;
    bottom: 0;
    margin-top: auto;
  }
  .cid-ucJQBN0eLV .border-item:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100vw;
    height: 100vw;
    background: #ffffff;
    z-index: 4;
    transition: 0.1s all;
  }
}
.cid-ucJQBNVEAT {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #780016;
}
.cid-ucJQBNVEAT .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucJQBNVEAT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-ucJQBNVEAT .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ucJQBNVEAT img {
  border-radius: 2rem;
}
.cid-ucJQBNVEAT .row {
  flex-direction: row-reverse;
}
.cid-ucJQBNVEAT .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-ucJQBNVEAT .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-ucJQBNVEAT .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-ucJQBNVEAT .mbr-section-title {
  color: #ffffff;
}
.cid-ucJQBNVEAT .mbr-text,
.cid-ucJQBNVEAT .mbr-section-btn {
  color: #ffffff;
}
.cid-ucJQBP1u0g {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ucJQBP1u0g .container {
  max-width: 1240px;
}
@media (max-width: 1199px) {
  .cid-ucJQBP1u0g .container {
    max-width: 1040px;
  }
}
.cid-ucJQBP1u0g .row {
  justify-content: center;
}
.cid-ucJQBP1u0g .item:focus,
.cid-ucJQBP1u0g span:focus {
  outline: none;
}
.cid-ucJQBP1u0g .col-items {
  display: flex;
  justify-content: center;
  align-items: stretch;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-ucJQBP1u0g .col-items {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-ucJQBP1u0g .item {
    width: 100%;
  }
  .cid-ucJQBP1u0g .item:first-child {
    padding-bottom: 0.5rem;
  }
  .cid-ucJQBP1u0g .item:last-child {
    padding-top: 0.5rem;
  }
}
@media (min-width: 992px) {
  .cid-ucJQBP1u0g .item:first-child {
    padding-right: 0.5rem;
  }
  .cid-ucJQBP1u0g .item:last-child {
    padding-left: 0.5rem;
  }
}
.cid-ucJQBP1u0g .item-wrap {
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  padding: 24px;
  border-radius: 1rem;
}
@media (min-width: 768px) {
  .cid-ucJQBP1u0g .item-wrap {
    padding: 27px;
  }
}
@media (min-width: 992px) {
  .cid-ucJQBP1u0g .item-wrap {
    padding: 50px;
  }
}
.cid-ucJQBP1u0g .item-content {
  width: 100%;
}
.cid-ucJQBP1u0g .label-text {
  color: #ffffff;
  opacity: 0.8;
  width: 100%;
  margin-bottom: 16px;
}
.cid-ucJQBP1u0g .mbr-text {
  color: #ffffff;
  margin-top: 12px;
  margin-bottom: 0;
  opacity: 0.8;
}
.cid-ucJQBP1u0g .item-title {
  color: #ffffff;
  margin-top: 12px;
  margin-bottom: 0;
}
.cid-ucJQBP1u0g .list-container {
  display: flex;
  flex-direction: column;
  margin-top: 18px;
}
.cid-ucJQBP1u0g .list-item {
  display: flex;
  align-items: center;
}
.cid-ucJQBP1u0g .list-item:not(:last-child) {
  margin-bottom: 16px;
}
.cid-ucJQBP1u0g .icon-box {
  padding-right: 14px;
}
.cid-ucJQBP1u0g .list-text {
  flex-grow: 1;
  color: #000000;
  margin-bottom: 0;
}
.cid-ucJQBP1u0g .link-container {
  display: flex;
  flex-direction: column;
  margin-top: 50px;
}
@media (min-width: 992px) {
  .cid-ucJQBP1u0g .link-container {
    margin-top: 72px;
  }
}
.cid-ucJQBP1u0g .link-container .link:first-child {
  margin-bottom: 16px;
}
.cid-ucJQBP1u0g .link-container .link span {
  padding-right: 10px;
}
.cid-ucJQBQ4Nyc {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #780016;
}
.cid-ucJQBQ4Nyc .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #fc7942;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-ucJQBQ4Nyc .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-ucJQBQ4Nyc .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-ucJQBQ4Nyc .main-title.display-2 {
  line-height: 1.375;
}
.cid-ucJQBQ4Nyc .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-ucJQBQ4Nyc .mbr-text {
  color: #606060;
}
.cid-ucJQBQ4Nyc .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-ucJQBQ4Nyc .mbr-section-btn {
  margin-top: 24px;
}
.cid-ucJQBQ4Nyc .mbr-section-btn .btn {
  margin-left: 14.1px;
  padding: 18px 26px;
}
.cid-ucJQBQ4Nyc .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-ucJQBQ4Nyc .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-ucJQBQ4Nyc .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucJQBQ4Nyc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucJQBQ4Nyc .mbr-text,
.cid-ucJQBQ4Nyc .mbr-section-btn {
  color: #ffffff;
}
.cid-ucJQBQWI4Q {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ucJQBQWI4Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucJQBQWI4Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucJQBQWI4Q .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-ucJQBQWI4Q .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-ucJQBQWI4Q .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-ucJQBQWI4Q .mbr-section-title {
  color: #131313;
}
.cid-ucJQBQWI4Q .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-ucJQBQWI4Q .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-ucJQBQWI4Q .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-ucJQBQWI4Q .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #000000;
  box-shadow: 4px 4px 0 #000000;
  background: #780016;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-ucJQBQWI4Q .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-ucJQBQWI4Q .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-ucJQBQWI4Q .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-ucJQBQWI4Q .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-ucJQBQWI4Q .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #ffffff;
}
.cid-ucJQBQWI4Q .card-title {
  color: #131313;
}
.cid-ucJQBQWI4Q .card-text {
  margin-top: 10px;
  color: #131313;
  text-align: center;
}
.cid-ucJQBQWI4Q .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-ucJQBQWI4Q .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-ucJQBQWI4Q .card-link {
    margin-top: 15px;
  }
}
.cid-ucJQBQWI4Q .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-ucJQBQWI4Q .card-title,
.cid-ucJQBQWI4Q .iconfont-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-ucJQBT2Jcq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ucJQBT2Jcq .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-ucJQBT2Jcq .card-title {
  margin-bottom: 26px;
  color: #a6d8b5;
}
.cid-ucJQBT2Jcq .mbr-text {
  margin-bottom: 30px;
}
.cid-ucJQBT2Jcq .iconfont-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  display: inline-block;
  text-align: center;
  width: 70px;
  height: 70px;
}
.cid-ucJQBT2Jcq .iconfont-wrapper svg {
  position: absolute;
  top: -20px;
  left: -28px;
}
.cid-ucJQBT2Jcq .iconfont-wrapper svg #grad_1 {
  stop-color: #6b3df0;
}
.cid-ucJQBT2Jcq .iconfont-wrapper svg #grad_2 {
  stop-color: #b39cf7;
}
.cid-ucJQBT2Jcq .iconfont-wrapper svg #blur_svg {
  flood-color: #6b3df0;
}
.cid-ucJQBT2Jcq .iconfont-wrapper .mbr-iconfont {
  color: #ffffff;
  font-size: 38px;
  line-height: 73px;
  position: absolute;
  top: 0;
  left: 14px;
  z-index: 5;
}
@media (min-width: 992px) {
  .cid-ucJQBT2Jcq .text-wrapper {
    padding-right: 0;
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ucJQBT2Jcq .text-wrapper {
    text-align: center;
  }
  .cid-ucJQBT2Jcq .image-wrapper {
    margin-bottom: 40px;
  }
  .cid-ucJQBT2Jcq .mbr-text {
    margin-bottom: 20px;
  }
  .cid-ucJQBT2Jcq .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-ucJQBT2Jcq .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucJQBT2Jcq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucJQBT2Jcq .mbr-text,
.cid-ucJQBT2Jcq .mbr-section-btn {
  color: #000000;
}
.cid-ucJQBT2Jcq .card-title,
.cid-ucJQBT2Jcq .icon_block {
  color: #000000;
}
.cid-ucJQBU6JmE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #780016;
}
.cid-ucJQBU6JmE .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucJQBU6JmE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucJQBU6JmE .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-ucJQBU6JmE .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-ucJQBU6JmE .container {
    padding: 0 24px;
  }
}
.cid-ucJQBU6JmE .row {
  justify-content: center;
}
.cid-ucJQBU6JmE .content-wrapper {
  border-radius: 40px;
  background-color: #780016;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-ucJQBU6JmE .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-ucJQBU6JmE .content-wrapper {
    padding: 32px;
  }
}
.cid-ucJQBU6JmE .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-ucJQBU6JmE .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-ucJQBU6JmE .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ucJQBU6JmE .mbr-text {
  color: #ffffff;
}
.cid-ucJQBV0tvl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ucJQBV0tvl .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucJQBV0tvl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucJQBV0tvl .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1500px) {
  .cid-ucJQBV0tvl .mbr-section-head {
    margin-bottom: 40px;
  }
}
@media (max-width: 991px) {
  .cid-ucJQBV0tvl .mbr-section-head {
    margin-bottom: 20px;
  }
}
.cid-ucJQBV0tvl .mbr-section-title {
  color: #131313;
}
.cid-ucJQBV0tvl .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-ucJQBV0tvl .cards-row {
  margin-top: 5px;
  row-gap: 20px;
}
.cid-ucJQBV0tvl .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-ucJQBV0tvl .card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  padding: 60px 52px 48px 48px;
  margin: 0 auto;
  border: 2px solid #780016;
  box-shadow: 4px 4px 0 #780016;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1024px) {
  .cid-ucJQBV0tvl .card-wrapper {
    padding: 30px 30px 40px 25px;
  }
}
@media (max-width: 767px) {
  .cid-ucJQBV0tvl .card-wrapper {
    padding: 10px 25px 40px 20px;
  }
}
@media (min-width: 992px) {
  .cid-ucJQBV0tvl .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-ucJQBV0tvl .card-title {
  color: #131313;
  text-align: center;
}
.cid-ucJQBV0tvl .price-box {
  display: flex;
  align-items: baseline;
  width: 100%;
  margin-top: 20px;
}
@media (max-width: 1024px) {
  .cid-ucJQBV0tvl .price-box {
    margin-top: 5px;
  }
}
.cid-ucJQBV0tvl .number-text {
  color: #FC7942;
}
.cid-ucJQBV0tvl .stint-text {
  color: #FC7942;
}
.cid-ucJQBV0tvl .card-text {
  margin-top: 20px;
  color: #131313;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-ucJQBV0tvl .card-text {
    margin-top: 10px;
  }
}
.cid-ucJQBV0tvl .list-box {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  width: 100%;
  margin-top: 50px;
}
@media (max-width: 1024px) {
  .cid-ucJQBV0tvl .list-box {
    margin-top: 24px;
  }
}
.cid-ucJQBV0tvl .list-item {
  display: flex;
  align-items: center;
  width: 100%;
  column-gap: 10px;
}
.cid-ucJQBV0tvl .iconfont-wrapper {
  flex-shrink: 0;
}
.cid-ucJQBV0tvl .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 18px;
  color: #fc7942;
}
.cid-ucJQBV0tvl .list-text {
  flex-grow: 1;
  color: #131313;
}
.cid-ucJQBV0tvl .mbr-section-btn {
  margin-top: auto;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-top: 65px;
}
@media (max-width: 1199px) {
  .cid-ucJQBV0tvl .mbr-section-btn {
    padding-top: 30px;
  }
}
@media (max-width: 991px) {
  .cid-ucJQBV0tvl .mbr-section-btn {
    padding-top: 20px;
  }
}
.cid-ucJQBV0tvl .mbr-section-btn .btn {
  width: 100%;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
@media (max-width: 1500px) {
  .cid-ucJQBV0tvl .mbr-section-btn .btn {
    padding: 20px 24px !important;
  }
}
.cid-ucJQBWvOiv {
  padding-top: 7rem;
  padding-bottom: 8rem;
  background-color: #780016;
}
.cid-ucJQBWvOiv .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucJQBWvOiv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucJQBWvOiv .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ucJQBWvOiv .mbr-section-subtitle {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-ucJQBWvOiv .mbr-section-subtitle {
    margin-top: 18px;
  }
}
.cid-ucJQBWvOiv .mbr-text {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-ucJQBWvOiv .mbr-text {
    margin-top: 18px;
  }
}
.cid-ucJQBWvOiv .mbr-section-btn {
  margin-top: 60px;
}
@media (max-width: 991px) {
  .cid-ucJQBWvOiv .mbr-section-btn {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .cid-ucJQBWvOiv .mbr-section-btn {
    margin-top: 20px;
  }
}
.cid-ucJQBWvOiv .mbr-text,
.cid-ucJQBWvOiv .mbr-section-btn {
  color: #ffffff;
}
.cid-ucJQBXtPT8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ucJQBXtPT8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucJQBXtPT8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucJQBXtPT8 .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-ucJQBXtPT8 .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-ucJQBXtPT8 .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-ucJQBXtPT8 .mbr-section-title {
  color: #131313;
}
.cid-ucJQBXtPT8 .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-ucJQBXtPT8 .items-row {
  row-gap: 40px;
  margin: 5px -20px 0 !important;
}
@media (max-width: 767px) {
  .cid-ucJQBXtPT8 .items-row {
    row-gap: 30px;
    margin: 0 -15px !important;
  }
}
.cid-ucJQBXtPT8 .item {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
  padding: 0 20px !important;
}
.cid-ucJQBXtPT8 .item-wrapper {
  width: 100%;
  padding: 11px 11px 40px;
  border: 2px solid #780016;
  box-shadow: 4px 4px 0 #780016;
  background: #ffffff;
  transition: .3s all;
}
@media (min-width: 992px) {
  .cid-ucJQBXtPT8 .item-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-ucJQBXtPT8 .item-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 674/calc(145 * 3);
}
.cid-ucJQBXtPT8 .item-content {
  margin-top: 40px;
  padding-left: 40px;
  padding-right: 130px;
}
@media (max-width: 1199px) {
  .cid-ucJQBXtPT8 .item-content {
    margin-top: 0;
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .cid-ucJQBXtPT8 .item-content {
    margin-top: 20px;
  }
}
.cid-ucJQBXtPT8 .card-title {
  color: #131313;
}
.cid-ucJQBXtPT8 .card-text {
  margin-top: 5px;
  color: #131313;
}
.cid-ucJQBXtPT8 .link-text {
  margin-top: 14px;
  color: #FC7942;
}
@media (max-width: 991px) {
  .cid-ucJQBXtPT8 .link-text {
    margin-top: 10px;
  }
}
.cid-ucJQBXtPT8 .link-text a.text-primary:hover {
  color: #131313 !important;
}
.cid-ucJQBXtPT8 .mbr-section-btn {
  margin-top: 5px;
}
.cid-ucJQBXtPT8 .card-text,
.cid-ucJQBXtPT8 .mbr-section-btn {
  text-align: center;
}
.cid-ucJQBYEVSD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #780016;
}
.cid-ucJQBYEVSD .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucJQBYEVSD .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-ucJQBYEVSD .container {
    padding: 0 20px;
  }
}
.cid-ucJQBYEVSD .row {
  margin: 0;
}
.cid-ucJQBYEVSD .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-ucJQBYEVSD .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-ucJQBYEVSD .video-block .video-wrapper .app-video-wrapper::before {
  color: #f5fd7b;
  text-shadow: none;
}
.cid-ucJQBYEVSD .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-ucJQBYEVSD .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-ucJQBYEVSD .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-ucJQBYEVSD .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ucJQBZyTbC {
  background-color: #780016;
}
.cid-ucJQBZyTbC .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucJQBZyTbC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucJQBZyTbC .content-bg {
  border-top-left-radius: 6.67rem;
  border-top-right-radius: 6.67rem;
  width: 100%;
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: transparent;
  background: #ffffff;
}
.cid-ucJQBZyTbC .container {
  max-width: 1280px;
}
.cid-ucJQBZyTbC .row {
  justify-content: center;
}
.cid-ucJQBZyTbC .mbr-section-title {
  color: #212132;
}
.cid-ucJQBZyTbC .mbr-section-subtitle {
  color: #212132;
  margin-top: 1rem;
}
.cid-ucJQBZyTbC .mbr-section-title,
.cid-ucJQBZyTbC .mbr-section-btn {
  color: #000000;
}
.cid-ucJQC0zpQx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #780016;
}
.cid-ucJQC0zpQx .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucJQC0zpQx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucJQC0zpQx .row {
  margin: 0 !important;
}
.cid-ucJQC0zpQx .mbr-section-head {
  width: 40%;
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-ucJQC0zpQx .mbr-section-head {
    width: 100%;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-ucJQC0zpQx .mbr-section-head {
    margin-bottom: 40px;
  }
}
.cid-ucJQC0zpQx .mbr-section-title {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-ucJQC0zpQx .mbr-section-subtitle {
  color: #131313;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-ucJQC0zpQx .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-ucJQC0zpQx .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-ucJQC0zpQx .mbr-section-btn {
    margin-top: 10px;
  }
}
.cid-ucJQC0zpQx .col-list {
  width: 1px;
  flex-grow: 1;
  padding: 0 0 0 100px !important;
}
@media (max-width: 1024px) {
  .cid-ucJQC0zpQx .col-list {
    padding: 0 0 0 20px !important;
  }
}
@media (max-width: 991px) {
  .cid-ucJQC0zpQx .col-list {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-ucJQC0zpQx .mbr-iconfont {
  position: relative;
  font-size: 16px !important;
  font-family: 'Moririse2' !important;
  font-weight: 900;
  color: #ffffff;
  margin-left: 0.5rem;
}
.cid-ucJQC0zpQx .sign-open {
  display: none;
  font-size: 16px !important;
  margin-left: 0.5rem;
  color: #ffffff;
  font-weight: 900;
}
.cid-ucJQC0zpQx .panel-group {
  border: none;
}
.cid-ucJQC0zpQx .card {
  padding: 10px 10px 10px 0;
  border-radius: 0;
  border-top: 2px solid #ffffff;
}
.cid-ucJQC0zpQx .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
  margin-bottom: 0;
}
.cid-ucJQC0zpQx .card-header:hover .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-ucJQC0zpQx .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  color: #131313;
  transition: .2s all;
}
.cid-ucJQC0zpQx .panel-title[aria-expanded="true"] .mbr-iconfont {
  display: none;
}
.cid-ucJQC0zpQx .panel-title[aria-expanded="true"] .sign-open {
  display: block;
}
.cid-ucJQC0zpQx .panel-title-edit {
  color: #ffffff;
}
.cid-ucJQC0zpQx .panel-body {
  padding: 0 0 20px;
}
.cid-ucJQC0zpQx .panel-text {
  color: #131313;
  margin: 0;
}
.cid-ucJQC1Pgp1 {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.cid-ucJQC1Pgp1 svg {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.2);
  animation: wave 5s ease-in-out infinite;
}
@keyframes line {
  from {
    transform: translateY(4px);
  }
  50% {
    transform: translateY(-4px);
  }
  to {
    transform: translateY(4px);
  }
}
@keyframes wave {
  from {
    transform: rotate(-0.2deg) translate(-50%) scale(2, 1.2);
  }
  50% {
    transform: rotate(0.2deg) translate(-50%) scale(2.1, 1.3);
  }
  to {
    transform: rotate(-0.2deg) translate(-50%) scale(2, 1.2);
  }
}
.cid-ucJQC1Pgp1 .mbr-text,
.cid-ucJQC1Pgp1 .mbr-section-btn {
  color: #000000;
}
.cid-ucJQC1Pgp1 #e12_areaS3 {
  fill: #780016 !important;
}
.cid-ucJQC1Pgp1 #e19_areaS3 {
  fill: #780016 !important;
}
.cid-ucJQC1Pgp1 H1 {
  color: #000000;
}
.cid-ucJQC1Pgp1 img {
  width: 70%;
  border-radius: 10px;
  animation: line 4s ease-in-out infinite;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-ucJQC1Pgp1 .box {
  width: 95%;
  height: 90%;
  opacity: 0.5;
  background-color: #ffffff;
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translate(-50%);
  border-radius: 0.5rem;
}
@media (max-width: 1200px) {
  .cid-ucJQC1Pgp1 .box {
    top: 2%;
    width: 97%;
    height: 96%;
  }
}
@media (max-width: 576px) {
  .cid-ucJQC1Pgp1 img {
    width: 100%;
  }
}
.cid-ucJRDbqIQ2 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ucJRDbqIQ2 .main-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-ucJRDbqIQ2 .main-container {
    flex-wrap: wrap;
    padding: 0 40px;
  }
}
.cid-ucJRDbqIQ2 .col-title,
.cid-ucJRDbqIQ2 .col-text {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 10px;
}
.cid-ucJRDbqIQ2 .mbr-section-title {
  color: #000000;
  margin-bottom: 0 !important;
}
@media (max-width: 767px) {
  .cid-ucJRDbqIQ2 .mbr-section-title {
    text-align: center !important;
  }
}
.cid-ucJRDbqIQ2 .mbr-section-subtitle {
  color: #112B6D;
  margin-bottom: 0 !important;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-ucJRDbqIQ2 .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-ucJRDbqIQ2 .mbr-text {
  color: #000000;
  margin-bottom: 0.9rem !important;
}
@media (max-width: 767px) {
  .cid-ucJRDbqIQ2 .mbr-text {
    text-align: center !important;
  }
}
.cid-ucJQC2NBOg {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ucJQC2NBOg .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucJQC2NBOg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucJQC2NBOg .container-fluid {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-ucJQC2NBOg .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-ucJQC2NBOg .container {
    padding: 0 20px;
  }
}
.cid-ucJQC2NBOg .content-wrapper {
  padding: 60px 0;
}
@media (max-width: 992px) {
  .cid-ucJQC2NBOg .content-wrapper {
    padding: 46px 0;
  }
}
.cid-ucJQC2NBOg .content-wrapper .content-wrap {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-ucJQC2NBOg .content-wrapper .content-wrap {
    margin-bottom: 46px;
  }
}
.cid-ucJQC2NBOg .content-wrapper .content-wrap .mbr-desc {
  margin-bottom: 32px;
}
.cid-ucJQC2NBOg .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-ucJQC2NBOg .content-wrapper .panel-group .card {
  border-radius: 20px !important;
  background-color: #780016;
  margin-bottom: 12px;
  padding: 60px;
}
@media (max-width: 992px) {
  .cid-ucJQC2NBOg .content-wrapper .panel-group .card {
    padding: 46px 20px;
  }
}
.cid-ucJQC2NBOg .content-wrapper .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-ucJQC2NBOg .content-wrapper .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-ucJQC2NBOg .content-wrapper .panel-group .card .card-header .panel-title .panel-title-edit {
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-ucJQC2NBOg .content-wrapper .panel-group .card .card-header .panel-title .panel-title-edit {
    width: auto;
  }
}
.cid-ucJQC2NBOg .content-wrapper .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  width: 32px;
  height: 32px;
  min-width: 32px;
  transition: all 0.3s ease-in-out;
  color: #ffffff;
  margin-left: 16px;
}
.cid-ucJQC2NBOg .content-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-ucJQC2NBOg .content-wrapper .panel-group .card .panel-collapse .panel-body {
  padding-top: 60px;
}
@media (max-width: 992px) {
  .cid-ucJQC2NBOg .content-wrapper .panel-group .card .panel-collapse .panel-body {
    padding-top: 46px;
  }
}
.cid-ucJQC2NBOg .content-wrapper .panel-group .card .panel-collapse .panel-body .panel-text {
  display: inline-flex;
  width: 30%;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .cid-ucJQC2NBOg .content-wrapper .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 50%;
  }
}
@media (max-width: 992px) {
  .cid-ucJQC2NBOg .content-wrapper .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 100%;
  }
}
.cid-ucJQC2NBOg .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-ucJQC2NBOg .mbr-desc {
  color: #000000;
  text-align: center;
}
.cid-ucJQC2NBOg .panel-title-edit {
  color: #ffffff;
}
.cid-ucJQC2NBOg .panel-text {
  color: #000000;
}
.cid-ucJQC2NBOg .panel-text,
.cid-ucJQC2NBOg .panel-body {
  color: #ffffff;
}
.cid-ucJQC3WnWw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ucJQC3WnWw .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucJQC3WnWw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucJQC3WnWw .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-ucJQC3WnWw .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-ucJQC3WnWw .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-ucJQC3WnWw .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-ucJQC3WnWw .container {
    padding: 0 16px;
  }
}
.cid-ucJQC3WnWw .google-map iframe {
  height: 400px;
  border-radius: 1rem !important;
}
@media (max-width: 992px) {
  .cid-ucJQC3WnWw .google-map iframe {
    height: 350px;
  }
}
.cid-ucJQC56vZw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #780016;
}
.cid-ucJQC56vZw .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucJQC56vZw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucJQC56vZw .row {
  justify-content: space-between;
}
.cid-ucJQC56vZw .mbr-section-title {
  margin: 0;
  color: #E0BDB6;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-ucJQC56vZw .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-ucJQC56vZw .mbr-text {
  margin-bottom: 10px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-ucJQC56vZw .mbr-section-btn {
    margin-bottom: 20px;
  }
}
.cid-ucJQC56vZw .list {
  padding: 0;
  margin-bottom: 0;
  list-style-type: none;
  color: #ffffff;
}
.cid-ucJQC56vZw .list li {
  margin-bottom: 25px;
}
.cid-ucJQC56vZw .list li:last-child {
  margin-bottom: 0;
}
.cid-ucJQC56vZw .mbr-desc {
  margin-bottom: 8px;
}
.cid-ucJQC56vZw .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ucJQC56vZw .social-row .soc-item {
  margin: 9px 9px 0 0;
}
.cid-ucJQC56vZw .social-row .soc-item a:hover .mbr-iconfont {
  border-color: #5189b8;
}
.cid-ucJQC56vZw .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 #ffffff;
  transition: all .3s ease;
}
.cid-ucJQC56vZw .copyright {
  margin: 110px 0 0 0;
  padding: 17px 70px;
  position: relative;
  color: #ffffff;
  text-align: center;
}
.cid-ucJQC56vZw .copyright:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100rem;
  display: block;
  min-width: 1000vh;
  height: 1px;
  background-color: #ffffff;
  opacity: .4;
}
@media (max-width: 992px) {
  .cid-ucJQC56vZw .copyright {
    margin-top: 50px;
    padding: 17px 24px;
  }
}
.cid-ucJQC56vZw .mbr-desc,
.cid-ucJQC56vZw .mbr-iconfont {
  color: #ffffff;
}
.cid-ucJQC56vZw .mbr-text,
.cid-ucJQC56vZw .mbr-section-btn {
  color: #ffffff;
}
.cid-ucJSwbZ0Va {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ucJSwbZ0Va nav.navbar {
  position: fixed;
}
.cid-ucJSwbZ0Va .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-ucJSwbZ0Va .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ucJSwbZ0Va .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ucJSwbZ0Va .dropdown-item:hover,
.cid-ucJSwbZ0Va .dropdown-item:focus {
  background: #fc7942 !important;
  color: white !important;
}
.cid-ucJSwbZ0Va .dropdown-item:hover span {
  color: white;
}
.cid-ucJSwbZ0Va .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ucJSwbZ0Va .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ucJSwbZ0Va .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ucJSwbZ0Va .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ucJSwbZ0Va .nav-link {
  position: relative;
}
.cid-ucJSwbZ0Va .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ucJSwbZ0Va .container {
    flex-wrap: nowrap;
  }
}
.cid-ucJSwbZ0Va .navbar-nav {
  margin: 0 auto;
}
.cid-ucJSwbZ0Va .dropdown-menu,
.cid-ucJSwbZ0Va .navbar.opened {
  background: #ffffff !important;
}
.cid-ucJSwbZ0Va .nav-item:focus,
.cid-ucJSwbZ0Va .nav-link:focus {
  outline: none;
}
.cid-ucJSwbZ0Va .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ucJSwbZ0Va .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ucJSwbZ0Va .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ucJSwbZ0Va .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ucJSwbZ0Va .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ucJSwbZ0Va .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ucJSwbZ0Va .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  border: none !important;
  box-shadow: none !important;
  overflow: hidden;
}
.cid-ucJSwbZ0Va .navbar.opened {
  transition: all 0.3s;
}
.cid-ucJSwbZ0Va .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ucJSwbZ0Va .navbar .navbar-logo img {
  width: auto;
}
.cid-ucJSwbZ0Va .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ucJSwbZ0Va .navbar.collapsed {
  justify-content: center;
}
.cid-ucJSwbZ0Va .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ucJSwbZ0Va .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ucJSwbZ0Va .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-ucJSwbZ0Va .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ucJSwbZ0Va .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ucJSwbZ0Va .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-ucJSwbZ0Va .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ucJSwbZ0Va .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-ucJSwbZ0Va .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ucJSwbZ0Va .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ucJSwbZ0Va .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ucJSwbZ0Va .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ucJSwbZ0Va .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-ucJSwbZ0Va .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ucJSwbZ0Va .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ucJSwbZ0Va .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ucJSwbZ0Va .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ucJSwbZ0Va .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ucJSwbZ0Va .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ucJSwbZ0Va .navbar.navbar-short {
  min-height: 60px;
}
.cid-ucJSwbZ0Va .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ucJSwbZ0Va .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ucJSwbZ0Va .navbar-brand {
  min-height: 108px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ucJSwbZ0Va .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ucJSwbZ0Va .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ucJSwbZ0Va .dropdown-item.active,
.cid-ucJSwbZ0Va .dropdown-item:active {
  background-color: transparent;
}
.cid-ucJSwbZ0Va .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ucJSwbZ0Va .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ucJSwbZ0Va .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ucJSwbZ0Va .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ucJSwbZ0Va .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ucJSwbZ0Va .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ucJSwbZ0Va ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ucJSwbZ0Va .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ucJSwbZ0Va button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ucJSwbZ0Va button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #131313;
}
.cid-ucJSwbZ0Va button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ucJSwbZ0Va button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucJSwbZ0Va button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucJSwbZ0Va button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ucJSwbZ0Va nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucJSwbZ0Va nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ucJSwbZ0Va nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ucJSwbZ0Va nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucJSwbZ0Va .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ucJSwbZ0Va a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ucJSwbZ0Va .navbar {
    height: 70px;
  }
  .cid-ucJSwbZ0Va .navbar.opened {
    height: auto;
  }
  .cid-ucJSwbZ0Va .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ucJSwbZ0Va .container,
.cid-ucJSwbZ0Va .container-fluid {
  position: relative;
  min-height: 108px;
}
@media (min-width: 992px) {
  .cid-ucJSwbZ0Va .container:before,
  .cid-ucJSwbZ0Va .container-fluid:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #131313;
  }
}
.cid-ucJSwbZ0Va .navbar-short {
  background-color: #ffffff !important;
}
.cid-ucJSwbZ0Va .navbar-short .container,
.cid-ucJSwbZ0Va .navbar-short .container-fluid {
  min-height: 85px;
}
.cid-ucJSwbZ0Va .navbar-short .container:before,
.cid-ucJSwbZ0Va .navbar-short .container-fluid:before {
  display: none;
}
.cid-ucJSwbZ0Va .navbar-short .navbar-brand {
  min-height: 85px !important;
}
.cid-ucJSwbZ0Va .mbr-section-btn .btn {
  padding: 10px 25px;
  min-height: 48px;
}
.cid-ucJSwbZ0Va .border-item {
  position: absolute;
  bottom: -1px;
  display: none;
  width: 100%;
  background-color: transparent;
  height: 2px;
  background-color: #131313;
}
@media (max-width: 991px) {
  .cid-ucJSwbZ0Va .border-item {
    display: block;
  }
}
@media (max-width: 991px) {
  .cid-ucJSwbZ0Va .container,
  .cid-ucJSwbZ0Va .container-fluid {
    min-height: 85px;
  }
  .cid-ucJSwbZ0Va .navbar-brand {
    min-height: 85px;
  }
  .cid-ucJSwbZ0Va .navbar-short .container,
  .cid-ucJSwbZ0Va .navbar-short .container-fluid {
    min-height: 75px;
  }
  .cid-ucJSwbZ0Va .navbar-short .navbar-brand {
    min-height: 75px !important;
  }
  .cid-ucJSwbZ0Va .navbar.navbar-short {
    background-color: #ffffff !important;
  }
  .cid-ucJSwbZ0Va .navbar-collapse {
    position: relative;
    order: 5;
    z-index: 5 !important;
    padding-bottom: 10px;
  }
  .cid-ucJSwbZ0Va .navbar-nav .nav-item {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }
  .cid-ucJSwbZ0Va .mbr-section-btn {
    text-align: left;
  }
  .cid-ucJSwbZ0Va .border-item {
    position: relative;
    bottom: 0;
    margin-top: auto;
  }
  .cid-ucJSwbZ0Va .border-item:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100vw;
    height: 100vw;
    background: #ffffff;
    z-index: 4;
    transition: 0.1s all;
  }
}
.cid-ucJSwdRQz3 {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #780016;
}
.cid-ucJSwdRQz3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucJSwdRQz3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-ucJSwdRQz3 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ucJSwdRQz3 img {
  border-radius: 2rem;
}
.cid-ucJSwdRQz3 .row {
  flex-direction: row-reverse;
}
.cid-ucJSwdRQz3 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-ucJSwdRQz3 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-ucJSwdRQz3 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-ucJSwdRQz3 .mbr-section-title {
  color: #ffffff;
}
.cid-ucJSwdRQz3 .mbr-text,
.cid-ucJSwdRQz3 .mbr-section-btn {
  color: #ffffff;
}
.cid-ucJSwf7bSm {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ucJSwf7bSm .container {
  max-width: 1240px;
}
@media (max-width: 1199px) {
  .cid-ucJSwf7bSm .container {
    max-width: 1040px;
  }
}
.cid-ucJSwf7bSm .row {
  justify-content: center;
}
.cid-ucJSwf7bSm .item:focus,
.cid-ucJSwf7bSm span:focus {
  outline: none;
}
.cid-ucJSwf7bSm .col-items {
  display: flex;
  justify-content: center;
  align-items: stretch;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-ucJSwf7bSm .col-items {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-ucJSwf7bSm .item {
    width: 100%;
  }
  .cid-ucJSwf7bSm .item:first-child {
    padding-bottom: 0.5rem;
  }
  .cid-ucJSwf7bSm .item:last-child {
    padding-top: 0.5rem;
  }
}
@media (min-width: 992px) {
  .cid-ucJSwf7bSm .item:first-child {
    padding-right: 0.5rem;
  }
  .cid-ucJSwf7bSm .item:last-child {
    padding-left: 0.5rem;
  }
}
.cid-ucJSwf7bSm .item-wrap {
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  padding: 24px;
  border-radius: 1rem;
}
@media (min-width: 768px) {
  .cid-ucJSwf7bSm .item-wrap {
    padding: 27px;
  }
}
@media (min-width: 992px) {
  .cid-ucJSwf7bSm .item-wrap {
    padding: 50px;
  }
}
.cid-ucJSwf7bSm .item-content {
  width: 100%;
}
.cid-ucJSwf7bSm .label-text {
  color: #ffffff;
  opacity: 0.8;
  width: 100%;
  margin-bottom: 16px;
}
.cid-ucJSwf7bSm .mbr-text {
  color: #ffffff;
  margin-top: 12px;
  margin-bottom: 0;
  opacity: 0.8;
}
.cid-ucJSwf7bSm .item-title {
  color: #ffffff;
  margin-top: 12px;
  margin-bottom: 0;
}
.cid-ucJSwf7bSm .list-container {
  display: flex;
  flex-direction: column;
  margin-top: 18px;
}
.cid-ucJSwf7bSm .list-item {
  display: flex;
  align-items: center;
}
.cid-ucJSwf7bSm .list-item:not(:last-child) {
  margin-bottom: 16px;
}
.cid-ucJSwf7bSm .icon-box {
  padding-right: 14px;
}
.cid-ucJSwf7bSm .list-text {
  flex-grow: 1;
  color: #000000;
  margin-bottom: 0;
}
.cid-ucJSwf7bSm .link-container {
  display: flex;
  flex-direction: column;
  margin-top: 50px;
}
@media (min-width: 992px) {
  .cid-ucJSwf7bSm .link-container {
    margin-top: 72px;
  }
}
.cid-ucJSwf7bSm .link-container .link:first-child {
  margin-bottom: 16px;
}
.cid-ucJSwf7bSm .link-container .link span {
  padding-right: 10px;
}
.cid-ucJSwgjEnw {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #780016;
}
.cid-ucJSwgjEnw .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #fc7942;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-ucJSwgjEnw .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-ucJSwgjEnw .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-ucJSwgjEnw .main-title.display-2 {
  line-height: 1.375;
}
.cid-ucJSwgjEnw .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-ucJSwgjEnw .mbr-text {
  color: #606060;
}
.cid-ucJSwgjEnw .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-ucJSwgjEnw .mbr-section-btn {
  margin-top: 24px;
}
.cid-ucJSwgjEnw .mbr-section-btn .btn {
  margin-left: 14.1px;
  padding: 18px 26px;
}
.cid-ucJSwgjEnw .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-ucJSwgjEnw .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-ucJSwgjEnw .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucJSwgjEnw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucJSwgjEnw .mbr-text,
.cid-ucJSwgjEnw .mbr-section-btn {
  color: #ffffff;
}
.cid-ucJSwhiovr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ucJSwhiovr .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucJSwhiovr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucJSwhiovr .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-ucJSwhiovr .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-ucJSwhiovr .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-ucJSwhiovr .mbr-section-title {
  color: #131313;
}
.cid-ucJSwhiovr .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-ucJSwhiovr .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-ucJSwhiovr .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-ucJSwhiovr .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #000000;
  box-shadow: 4px 4px 0 #000000;
  background: #780016;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-ucJSwhiovr .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-ucJSwhiovr .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-ucJSwhiovr .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-ucJSwhiovr .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-ucJSwhiovr .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #ffffff;
}
.cid-ucJSwhiovr .card-title {
  color: #131313;
}
.cid-ucJSwhiovr .card-text {
  margin-top: 10px;
  color: #131313;
  text-align: center;
}
.cid-ucJSwhiovr .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-ucJSwhiovr .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-ucJSwhiovr .card-link {
    margin-top: 15px;
  }
}
.cid-ucJSwhiovr .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-ucJSwhiovr .card-title,
.cid-ucJSwhiovr .iconfont-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-ucJSwiDTeA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ucJSwiDTeA .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-ucJSwiDTeA .card-title {
  margin-bottom: 26px;
  color: #a6d8b5;
}
.cid-ucJSwiDTeA .mbr-text {
  margin-bottom: 30px;
}
.cid-ucJSwiDTeA .iconfont-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  display: inline-block;
  text-align: center;
  width: 70px;
  height: 70px;
}
.cid-ucJSwiDTeA .iconfont-wrapper svg {
  position: absolute;
  top: -20px;
  left: -28px;
}
.cid-ucJSwiDTeA .iconfont-wrapper svg #grad_1 {
  stop-color: #6b3df0;
}
.cid-ucJSwiDTeA .iconfont-wrapper svg #grad_2 {
  stop-color: #b39cf7;
}
.cid-ucJSwiDTeA .iconfont-wrapper svg #blur_svg {
  flood-color: #6b3df0;
}
.cid-ucJSwiDTeA .iconfont-wrapper .mbr-iconfont {
  color: #ffffff;
  font-size: 38px;
  line-height: 73px;
  position: absolute;
  top: 0;
  left: 14px;
  z-index: 5;
}
@media (min-width: 992px) {
  .cid-ucJSwiDTeA .text-wrapper {
    padding-right: 0;
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ucJSwiDTeA .text-wrapper {
    text-align: center;
  }
  .cid-ucJSwiDTeA .image-wrapper {
    margin-bottom: 40px;
  }
  .cid-ucJSwiDTeA .mbr-text {
    margin-bottom: 20px;
  }
  .cid-ucJSwiDTeA .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-ucJSwiDTeA .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucJSwiDTeA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucJSwiDTeA .mbr-text,
.cid-ucJSwiDTeA .mbr-section-btn {
  color: #000000;
}
.cid-ucJSwiDTeA .card-title,
.cid-ucJSwiDTeA .icon_block {
  color: #000000;
}
.cid-ucJSwjANBf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #780016;
}
.cid-ucJSwjANBf .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucJSwjANBf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucJSwjANBf .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-ucJSwjANBf .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-ucJSwjANBf .container {
    padding: 0 24px;
  }
}
.cid-ucJSwjANBf .row {
  justify-content: center;
}
.cid-ucJSwjANBf .content-wrapper {
  border-radius: 40px;
  background-color: #780016;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-ucJSwjANBf .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-ucJSwjANBf .content-wrapper {
    padding: 32px;
  }
}
.cid-ucJSwjANBf .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-ucJSwjANBf .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-ucJSwjANBf .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ucJSwjANBf .mbr-text {
  color: #ffffff;
}
.cid-ucJSwkA8fy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ucJSwkA8fy .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucJSwkA8fy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucJSwkA8fy .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1500px) {
  .cid-ucJSwkA8fy .mbr-section-head {
    margin-bottom: 40px;
  }
}
@media (max-width: 991px) {
  .cid-ucJSwkA8fy .mbr-section-head {
    margin-bottom: 20px;
  }
}
.cid-ucJSwkA8fy .mbr-section-title {
  color: #131313;
}
.cid-ucJSwkA8fy .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-ucJSwkA8fy .cards-row {
  margin-top: 5px;
  row-gap: 20px;
}
.cid-ucJSwkA8fy .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-ucJSwkA8fy .card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  padding: 60px 52px 48px 48px;
  margin: 0 auto;
  border: 2px solid #780016;
  box-shadow: 4px 4px 0 #780016;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1024px) {
  .cid-ucJSwkA8fy .card-wrapper {
    padding: 30px 30px 40px 25px;
  }
}
@media (max-width: 767px) {
  .cid-ucJSwkA8fy .card-wrapper {
    padding: 10px 25px 40px 20px;
  }
}
@media (min-width: 992px) {
  .cid-ucJSwkA8fy .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-ucJSwkA8fy .card-title {
  color: #131313;
  text-align: center;
}
.cid-ucJSwkA8fy .price-box {
  display: flex;
  align-items: baseline;
  width: 100%;
  margin-top: 20px;
}
@media (max-width: 1024px) {
  .cid-ucJSwkA8fy .price-box {
    margin-top: 5px;
  }
}
.cid-ucJSwkA8fy .number-text {
  color: #FC7942;
}
.cid-ucJSwkA8fy .stint-text {
  color: #FC7942;
}
.cid-ucJSwkA8fy .card-text {
  margin-top: 20px;
  color: #131313;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-ucJSwkA8fy .card-text {
    margin-top: 10px;
  }
}
.cid-ucJSwkA8fy .list-box {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  width: 100%;
  margin-top: 50px;
}
@media (max-width: 1024px) {
  .cid-ucJSwkA8fy .list-box {
    margin-top: 24px;
  }
}
.cid-ucJSwkA8fy .list-item {
  display: flex;
  align-items: center;
  width: 100%;
  column-gap: 10px;
}
.cid-ucJSwkA8fy .iconfont-wrapper {
  flex-shrink: 0;
}
.cid-ucJSwkA8fy .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 18px;
  color: #fc7942;
}
.cid-ucJSwkA8fy .list-text {
  flex-grow: 1;
  color: #131313;
}
.cid-ucJSwkA8fy .mbr-section-btn {
  margin-top: auto;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-top: 65px;
}
@media (max-width: 1199px) {
  .cid-ucJSwkA8fy .mbr-section-btn {
    padding-top: 30px;
  }
}
@media (max-width: 991px) {
  .cid-ucJSwkA8fy .mbr-section-btn {
    padding-top: 20px;
  }
}
.cid-ucJSwkA8fy .mbr-section-btn .btn {
  width: 100%;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
@media (max-width: 1500px) {
  .cid-ucJSwkA8fy .mbr-section-btn .btn {
    padding: 20px 24px !important;
  }
}
.cid-ucJSwmk3o8 {
  padding-top: 7rem;
  padding-bottom: 8rem;
  background-color: #780016;
}
.cid-ucJSwmk3o8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucJSwmk3o8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucJSwmk3o8 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ucJSwmk3o8 .mbr-section-subtitle {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-ucJSwmk3o8 .mbr-section-subtitle {
    margin-top: 18px;
  }
}
.cid-ucJSwmk3o8 .mbr-text {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-ucJSwmk3o8 .mbr-text {
    margin-top: 18px;
  }
}
.cid-ucJSwmk3o8 .mbr-section-btn {
  margin-top: 60px;
}
@media (max-width: 991px) {
  .cid-ucJSwmk3o8 .mbr-section-btn {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .cid-ucJSwmk3o8 .mbr-section-btn {
    margin-top: 20px;
  }
}
.cid-ucJSwmk3o8 .mbr-text,
.cid-ucJSwmk3o8 .mbr-section-btn {
  color: #ffffff;
}
.cid-ucJSwntZyN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ucJSwntZyN .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucJSwntZyN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucJSwntZyN .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-ucJSwntZyN .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-ucJSwntZyN .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-ucJSwntZyN .mbr-section-title {
  color: #131313;
}
.cid-ucJSwntZyN .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-ucJSwntZyN .items-row {
  row-gap: 40px;
  margin: 5px -20px 0 !important;
}
@media (max-width: 767px) {
  .cid-ucJSwntZyN .items-row {
    row-gap: 30px;
    margin: 0 -15px !important;
  }
}
.cid-ucJSwntZyN .item {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
  padding: 0 20px !important;
}
.cid-ucJSwntZyN .item-wrapper {
  width: 100%;
  padding: 11px 11px 40px;
  border: 2px solid #780016;
  box-shadow: 4px 4px 0 #780016;
  background: #ffffff;
  transition: .3s all;
}
@media (min-width: 992px) {
  .cid-ucJSwntZyN .item-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-ucJSwntZyN .item-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 674/calc(145 * 3);
}
.cid-ucJSwntZyN .item-content {
  margin-top: 40px;
  padding-left: 40px;
  padding-right: 130px;
}
@media (max-width: 1199px) {
  .cid-ucJSwntZyN .item-content {
    margin-top: 0;
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .cid-ucJSwntZyN .item-content {
    margin-top: 20px;
  }
}
.cid-ucJSwntZyN .card-title {
  color: #131313;
}
.cid-ucJSwntZyN .card-text {
  margin-top: 5px;
  color: #131313;
}
.cid-ucJSwntZyN .link-text {
  margin-top: 14px;
  color: #FC7942;
}
@media (max-width: 991px) {
  .cid-ucJSwntZyN .link-text {
    margin-top: 10px;
  }
}
.cid-ucJSwntZyN .link-text a.text-primary:hover {
  color: #131313 !important;
}
.cid-ucJSwntZyN .mbr-section-btn {
  margin-top: 5px;
}
.cid-ucJSwntZyN .card-text,
.cid-ucJSwntZyN .mbr-section-btn {
  text-align: center;
}
.cid-ucJSwpNA0I {
  background-color: #780016;
}
.cid-ucJSwpNA0I .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucJSwpNA0I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucJSwpNA0I .content-bg {
  border-top-left-radius: 6.67rem;
  border-top-right-radius: 6.67rem;
  width: 100%;
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: transparent;
  background: #ffffff;
}
.cid-ucJSwpNA0I .container {
  max-width: 1280px;
}
.cid-ucJSwpNA0I .row {
  justify-content: center;
}
.cid-ucJSwpNA0I .mbr-section-title {
  color: #212132;
}
.cid-ucJSwpNA0I .mbr-section-subtitle {
  color: #212132;
  margin-top: 1rem;
}
.cid-ucJSwpNA0I .mbr-section-title,
.cid-ucJSwpNA0I .mbr-section-btn {
  color: #000000;
}
.cid-ucJSwqFkMI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #780016;
}
.cid-ucJSwqFkMI .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucJSwqFkMI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucJSwqFkMI .row {
  margin: 0 !important;
}
.cid-ucJSwqFkMI .mbr-section-head {
  width: 40%;
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-ucJSwqFkMI .mbr-section-head {
    width: 100%;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-ucJSwqFkMI .mbr-section-head {
    margin-bottom: 40px;
  }
}
.cid-ucJSwqFkMI .mbr-section-title {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-ucJSwqFkMI .mbr-section-subtitle {
  color: #131313;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-ucJSwqFkMI .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-ucJSwqFkMI .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-ucJSwqFkMI .mbr-section-btn {
    margin-top: 10px;
  }
}
.cid-ucJSwqFkMI .col-list {
  width: 1px;
  flex-grow: 1;
  padding: 0 0 0 100px !important;
}
@media (max-width: 1024px) {
  .cid-ucJSwqFkMI .col-list {
    padding: 0 0 0 20px !important;
  }
}
@media (max-width: 991px) {
  .cid-ucJSwqFkMI .col-list {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-ucJSwqFkMI .mbr-iconfont {
  position: relative;
  font-size: 16px !important;
  font-family: 'Moririse2' !important;
  font-weight: 900;
  color: #ffffff;
  margin-left: 0.5rem;
}
.cid-ucJSwqFkMI .sign-open {
  display: none;
  font-size: 16px !important;
  margin-left: 0.5rem;
  color: #ffffff;
  font-weight: 900;
}
.cid-ucJSwqFkMI .panel-group {
  border: none;
}
.cid-ucJSwqFkMI .card {
  padding: 10px 10px 10px 0;
  border-radius: 0;
  border-top: 2px solid #ffffff;
}
.cid-ucJSwqFkMI .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
  margin-bottom: 0;
}
.cid-ucJSwqFkMI .card-header:hover .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-ucJSwqFkMI .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  color: #131313;
  transition: .2s all;
}
.cid-ucJSwqFkMI .panel-title[aria-expanded="true"] .mbr-iconfont {
  display: none;
}
.cid-ucJSwqFkMI .panel-title[aria-expanded="true"] .sign-open {
  display: block;
}
.cid-ucJSwqFkMI .panel-title-edit {
  color: #ffffff;
}
.cid-ucJSwqFkMI .panel-body {
  padding: 0 0 20px;
}
.cid-ucJSwqFkMI .panel-text {
  color: #131313;
  margin: 0;
}
.cid-ucJSwrZ0cc {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.cid-ucJSwrZ0cc svg {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.2);
  animation: wave 5s ease-in-out infinite;
}
@keyframes line {
  from {
    transform: translateY(4px);
  }
  50% {
    transform: translateY(-4px);
  }
  to {
    transform: translateY(4px);
  }
}
@keyframes wave {
  from {
    transform: rotate(-0.2deg) translate(-50%) scale(2, 1.2);
  }
  50% {
    transform: rotate(0.2deg) translate(-50%) scale(2.1, 1.3);
  }
  to {
    transform: rotate(-0.2deg) translate(-50%) scale(2, 1.2);
  }
}
.cid-ucJSwrZ0cc .mbr-text,
.cid-ucJSwrZ0cc .mbr-section-btn {
  color: #000000;
}
.cid-ucJSwrZ0cc #e12_areaS3 {
  fill: #780016 !important;
}
.cid-ucJSwrZ0cc #e19_areaS3 {
  fill: #780016 !important;
}
.cid-ucJSwrZ0cc H1 {
  color: #000000;
}
.cid-ucJSwrZ0cc img {
  width: 70%;
  border-radius: 10px;
  animation: line 4s ease-in-out infinite;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-ucJSwrZ0cc .box {
  width: 95%;
  height: 90%;
  opacity: 0.5;
  background-color: #ffffff;
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translate(-50%);
  border-radius: 0.5rem;
}
@media (max-width: 1200px) {
  .cid-ucJSwrZ0cc .box {
    top: 2%;
    width: 97%;
    height: 96%;
  }
}
@media (max-width: 576px) {
  .cid-ucJSwrZ0cc img {
    width: 100%;
  }
}
.cid-ucJSwt3InA {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ucJSwt3InA .main-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-ucJSwt3InA .main-container {
    flex-wrap: wrap;
    padding: 0 40px;
  }
}
.cid-ucJSwt3InA .col-title,
.cid-ucJSwt3InA .col-text {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 10px;
}
.cid-ucJSwt3InA .mbr-section-title {
  color: #000000;
  margin-bottom: 0 !important;
}
@media (max-width: 767px) {
  .cid-ucJSwt3InA .mbr-section-title {
    text-align: center !important;
  }
}
.cid-ucJSwt3InA .mbr-section-subtitle {
  color: #112B6D;
  margin-bottom: 0 !important;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-ucJSwt3InA .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-ucJSwt3InA .mbr-text {
  color: #000000;
  margin-bottom: 0.9rem !important;
}
@media (max-width: 767px) {
  .cid-ucJSwt3InA .mbr-text {
    text-align: center !important;
  }
}
.cid-ucJSwtY4VP {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ucJSwtY4VP .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucJSwtY4VP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucJSwtY4VP .container-fluid {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-ucJSwtY4VP .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-ucJSwtY4VP .container {
    padding: 0 20px;
  }
}
.cid-ucJSwtY4VP .content-wrapper {
  padding: 60px 0;
}
@media (max-width: 992px) {
  .cid-ucJSwtY4VP .content-wrapper {
    padding: 46px 0;
  }
}
.cid-ucJSwtY4VP .content-wrapper .content-wrap {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-ucJSwtY4VP .content-wrapper .content-wrap {
    margin-bottom: 46px;
  }
}
.cid-ucJSwtY4VP .content-wrapper .content-wrap .mbr-desc {
  margin-bottom: 32px;
}
.cid-ucJSwtY4VP .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-ucJSwtY4VP .content-wrapper .panel-group .card {
  border-radius: 20px !important;
  background-color: #780016;
  margin-bottom: 12px;
  padding: 60px;
}
@media (max-width: 992px) {
  .cid-ucJSwtY4VP .content-wrapper .panel-group .card {
    padding: 46px 20px;
  }
}
.cid-ucJSwtY4VP .content-wrapper .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-ucJSwtY4VP .content-wrapper .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-ucJSwtY4VP .content-wrapper .panel-group .card .card-header .panel-title .panel-title-edit {
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-ucJSwtY4VP .content-wrapper .panel-group .card .card-header .panel-title .panel-title-edit {
    width: auto;
  }
}
.cid-ucJSwtY4VP .content-wrapper .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  width: 32px;
  height: 32px;
  min-width: 32px;
  transition: all 0.3s ease-in-out;
  color: #ffffff;
  margin-left: 16px;
}
.cid-ucJSwtY4VP .content-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-ucJSwtY4VP .content-wrapper .panel-group .card .panel-collapse .panel-body {
  padding-top: 60px;
}
@media (max-width: 992px) {
  .cid-ucJSwtY4VP .content-wrapper .panel-group .card .panel-collapse .panel-body {
    padding-top: 46px;
  }
}
.cid-ucJSwtY4VP .content-wrapper .panel-group .card .panel-collapse .panel-body .panel-text {
  display: inline-flex;
  width: 30%;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .cid-ucJSwtY4VP .content-wrapper .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 50%;
  }
}
@media (max-width: 992px) {
  .cid-ucJSwtY4VP .content-wrapper .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 100%;
  }
}
.cid-ucJSwtY4VP .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-ucJSwtY4VP .mbr-desc {
  color: #000000;
  text-align: center;
}
.cid-ucJSwtY4VP .panel-title-edit {
  color: #ffffff;
}
.cid-ucJSwtY4VP .panel-text {
  color: #000000;
}
.cid-ucJSwtY4VP .panel-text,
.cid-ucJSwtY4VP .panel-body {
  color: #ffffff;
}
.cid-ucJSwAkM0V {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ucJSwAkM0V .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucJSwAkM0V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucJSwAkM0V .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-ucJSwAkM0V .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-ucJSwAkM0V .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-ucJSwAkM0V .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-ucJSwAkM0V .container {
    padding: 0 16px;
  }
}
.cid-ucJSwAkM0V .google-map iframe {
  height: 400px;
  border-radius: 1rem !important;
}
@media (max-width: 992px) {
  .cid-ucJSwAkM0V .google-map iframe {
    height: 350px;
  }
}
.cid-ucJSwBY8bl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #780016;
}
.cid-ucJSwBY8bl .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucJSwBY8bl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucJSwBY8bl .row {
  justify-content: space-between;
}
.cid-ucJSwBY8bl .mbr-section-title {
  margin: 0;
  color: #E0BDB6;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-ucJSwBY8bl .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-ucJSwBY8bl .mbr-text {
  margin-bottom: 10px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-ucJSwBY8bl .mbr-section-btn {
    margin-bottom: 20px;
  }
}
.cid-ucJSwBY8bl .list {
  padding: 0;
  margin-bottom: 0;
  list-style-type: none;
  color: #ffffff;
}
.cid-ucJSwBY8bl .list li {
  margin-bottom: 25px;
}
.cid-ucJSwBY8bl .list li:last-child {
  margin-bottom: 0;
}
.cid-ucJSwBY8bl .mbr-desc {
  margin-bottom: 8px;
}
.cid-ucJSwBY8bl .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ucJSwBY8bl .social-row .soc-item {
  margin: 9px 9px 0 0;
}
.cid-ucJSwBY8bl .social-row .soc-item a:hover .mbr-iconfont {
  border-color: #5189b8;
}
.cid-ucJSwBY8bl .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 #ffffff;
  transition: all .3s ease;
}
.cid-ucJSwBY8bl .copyright {
  margin: 110px 0 0 0;
  padding: 17px 70px;
  position: relative;
  color: #ffffff;
  text-align: center;
}
.cid-ucJSwBY8bl .copyright:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100rem;
  display: block;
  min-width: 1000vh;
  height: 1px;
  background-color: #ffffff;
  opacity: .4;
}
@media (max-width: 992px) {
  .cid-ucJSwBY8bl .copyright {
    margin-top: 50px;
    padding: 17px 24px;
  }
}
.cid-ucJSwBY8bl .mbr-desc,
.cid-ucJSwBY8bl .mbr-iconfont {
  color: #ffffff;
}
.cid-ucJSwBY8bl .mbr-text,
.cid-ucJSwBY8bl .mbr-section-btn {
  color: #ffffff;
}
