body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- 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.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #4479d9 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #4479d9 !important;
  border-color: #4479d9 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #2150a5 !important;
  border-color: #2150a5 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2150a5 !important;
  border-color: #2150a5 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #4479d9;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2150a5 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #4479d9 !important;
  border-color: #4479d9 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #4479d9 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #1f4a98 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #4479d9;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #4479d9;
  border-color: #4479d9;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #4479d9;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #eef2fb;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #4479d9 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #4479d9;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #4479d9;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #4479d9;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #4479d9;
  border-bottom-color: #4479d9;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #4479d9 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%234479d9' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-tXL6veNmHy {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-tXL6veNmHy .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-tXL6veNmHy .btn {
  padding: .6rem 1.3rem;
}
@media (max-width: 767px) {
  .cid-tXL6veNmHy .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-tXL6veNmHy .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tXL6veNmHy .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-tXL6veNmHy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tXL6veNmHy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tXL6veNmHy .navbar-nav {
  margin: auto;
  margin-left: 0;
}
.cid-tXL6veNmHy .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-tXL6veNmHy .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-tXL6veNmHy .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-tXL6veNmHy .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-tXL6veNmHy .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-tXL6veNmHy .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-tXL6veNmHy .navbar-nav {
    padding: 0 1rem;
  }
}
.cid-tXL6veNmHy .nav-link {
  width: fit-content;
  position: relative;
}
.cid-tXL6veNmHy .navbar-logo {
  padding-left: 1rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-tXL6veNmHy .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-tXL6veNmHy .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-tXL6veNmHy .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-tXL6veNmHy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-tXL6veNmHy .container {
  display: flex;
  height: 64px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(255, 255, 255, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2rem;
  margin-top: 1rem;
  background-color: #ffffff;
  border-radius: 4px !important;
}
@media (max-width: 992px) {
  .cid-tXL6veNmHy .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tXL6veNmHy .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-tXL6veNmHy .container {
    width: auto;
    margin-left: 6.8rem;
  }
}
.cid-tXL6veNmHy .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tXL6veNmHy .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #ffffff;
  background: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(10px);
  border-radius: 4px !important;
}
.cid-tXL6veNmHy .nav-item:focus,
.cid-tXL6veNmHy .nav-link:focus {
  outline: none;
}
.cid-tXL6veNmHy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tXL6veNmHy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tXL6veNmHy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tXL6veNmHy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tXL6veNmHy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tXL6veNmHy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tXL6veNmHy .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-tXL6veNmHy .navbar.opened {
  transition: all 0.3s;
}
.cid-tXL6veNmHy .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tXL6veNmHy .navbar .navbar-logo img {
  width: auto;
}
.cid-tXL6veNmHy .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-tXL6veNmHy .navbar.collapsed {
  justify-content: center;
}
.cid-tXL6veNmHy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tXL6veNmHy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tXL6veNmHy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.6rem);
  }
}
.cid-tXL6veNmHy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tXL6veNmHy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tXL6veNmHy .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-tXL6veNmHy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tXL6veNmHy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tXL6veNmHy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-tXL6veNmHy .navbar {
    min-height: 72px;
  }
  .cid-tXL6veNmHy .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-tXL6veNmHy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tXL6veNmHy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tXL6veNmHy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tXL6veNmHy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tXL6veNmHy .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-tXL6veNmHy .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tXL6veNmHy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-tXL6veNmHy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tXL6veNmHy .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tXL6veNmHy .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-tXL6veNmHy .dropdown-item.active,
.cid-tXL6veNmHy .dropdown-item:active {
  background-color: transparent;
}
.cid-tXL6veNmHy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tXL6veNmHy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tXL6veNmHy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tXL6veNmHy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tXL6veNmHy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-tXL6veNmHy .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-tXL6veNmHy ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tXL6veNmHy .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-tXL6veNmHy .navbar-buttons {
    text-align: left;
  }
}
.cid-tXL6veNmHy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tXL6veNmHy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tXL6veNmHy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tXL6veNmHy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXL6veNmHy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXL6veNmHy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tXL6veNmHy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXL6veNmHy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tXL6veNmHy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tXL6veNmHy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXL6veNmHy .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tXL6veNmHy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tXL6veNmHy .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tXL6veNmHy .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tXL6veNmHy .navbar {
    height: 70px;
  }
  .cid-tXL6veNmHy .navbar.opened {
    height: auto;
  }
  .cid-tXL6veNmHy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tXL6veNmHy .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-tXL6veNmHy .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-tXL6veNmHy .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-tXL6veNmHy .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-tXL6veNmHy .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-tXL6veNmHy .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-tXL6veNmHy .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-tXL6veNmHy .navbar-brand {
    margin-right: auto;
  }
  .cid-tXL6veNmHy .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #ffffff;
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.8) !important;
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(8px);
    border-radius: 4px !important;
  }
  .cid-tXL6veNmHy .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-tXL6veNmHy .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-tXL6veNmHy .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tXL6veNmHy .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-tXL6veNmHy .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-tXL6veNmHy .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-tXL6veNmHy .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-tXL6veNmHy .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tXL6veNmHy .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-tXL6veNmHy .navbar-collapse {
    padding: 1rem;
  }
}
.cid-tXLGnHupxp {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #eacbcd;
}
.cid-tXLGnHupxp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXLGnHupxp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXLGnHupxp .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tXLGnHupxp .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-tXIRokhGLk {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #eacbcd;
}
.cid-tXIRokhGLk .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXIRokhGLk .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-tXIRokhGLk .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-tXIRokhGLk .container {
    padding: 0 12px;
  }
}
.cid-tXIRokhGLk .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-tXIRokhGLk .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-tXIRokhGLk .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-tXIRokhGLk .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #0c2c68;
  width: 22px;
  height: 22px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-tXIRokhGLk .mbr-section-title {
  color: #222222;
}
.cid-tXKFJDVUBD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eacbcd;
}
.cid-tXKFJDVUBD .line {
  background-color: #4479d9;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tXKFJDVUBD .mbr-text {
  text-align: left;
}
.cid-tXIStW90xV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eacbcd;
}
.cid-tXIStW90xV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXIStW90xV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXIStW90xV .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tXIStW90xV .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tXIStW90xV .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tXIStW90xV .mbr-section-title {
  color: #131313;
}
.cid-tXIStW90xV .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tXIStW90xV .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tXIStW90xV .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tXIStW90xV .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: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tXIStW90xV .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-tXIStW90xV .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tXIStW90xV .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-tXIStW90xV .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-tXIStW90xV .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tXIStW90xV .card-title {
  color: #131313;
}
.cid-tXIStW90xV .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-tXIStW90xV .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tXIStW90xV .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-tXIStW90xV .card-link {
    margin-top: 15px;
  }
}
.cid-tXIStW90xV .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tXIStW90xV .card-title,
.cid-tXIStW90xV .iconfont-wrapper {
  text-align: center;
}
.cid-tXKFKlTUat {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eacbcd;
}
.cid-tXKFKlTUat .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXKFKlTUat .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXKFKlTUat .mbr-section-subtitle {
  text-align: left;
}
.cid-tXISuAabfk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eacbcd;
}
.cid-tXISuAabfk .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXISuAabfk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXISuAabfk .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tXISuAabfk .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tXISuAabfk .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tXISuAabfk .mbr-section-title {
  color: #131313;
}
.cid-tXISuAabfk .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tXISuAabfk .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tXISuAabfk .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tXISuAabfk .card-wrapper {
  display: flex;
  width: calc(100% - 24px);
  padding: 52px 30px 52px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tXISuAabfk .card-wrapper {
    padding: 40px 30px 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-tXISuAabfk .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tXISuAabfk .card-wrapper {
    width: calc(100% - 14px);
    flex-direction: column;
    padding: 30px 25px 25px;
  }
}
@media (min-width: 992px) {
  .cid-tXISuAabfk .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tXISuAabfk .iconfont-wrapper {
  margin-right: 40px;
}
@media (max-width: 767px) {
  .cid-tXISuAabfk .iconfont-wrapper {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.cid-tXISuAabfk .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tXISuAabfk .content-wrap {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .cid-tXISuAabfk .content-wrap {
    margin-top: 0;
  }
}
.cid-tXISuAabfk .card-title {
  color: #131313;
}
.cid-tXISuAabfk .card-text {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tXISuAabfk .card-text {
    margin-top: 15px;
  }
}
.cid-tXISuAabfk .card-link {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tXISuAabfk .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tXISuAabfk .card-link {
    margin-top: 15px;
  }
}
.cid-tXISuAabfk .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tXKFKSo4N1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eacbcd;
}
.cid-tXKFKSo4N1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXKFKSo4N1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXKFKSo4N1 .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tXKFKSo4N1 .mbr-section-subtitle {
  text-align: left;
}
.cid-tXISvqYzWQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eacbcd;
}
.cid-tXISvqYzWQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXISvqYzWQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXISvqYzWQ .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tXISvqYzWQ .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tXISvqYzWQ .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tXISvqYzWQ .mbr-section-title {
  color: #131313;
}
.cid-tXISvqYzWQ .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tXISvqYzWQ .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tXISvqYzWQ .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tXISvqYzWQ .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #eacbcd;
  box-shadow: 4px 4px 0 #eacbcd;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tXISvqYzWQ .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-tXISvqYzWQ .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tXISvqYzWQ .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-tXISvqYzWQ .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-tXISvqYzWQ .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tXISvqYzWQ .card-title {
  color: #131313;
}
.cid-tXISvqYzWQ .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-tXISvqYzWQ .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tXISvqYzWQ .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-tXISvqYzWQ .card-link {
    margin-top: 15px;
  }
}
.cid-tXISvqYzWQ .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tXISvqYzWQ .card-title,
.cid-tXISvqYzWQ .iconfont-wrapper {
  text-align: center;
}
.cid-tXKFLnPhFr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eacbcd;
}
.cid-tXKFLnPhFr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXKFLnPhFr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXKFLnPhFr .mbr-section-subtitle {
  text-align: left;
}
.cid-tXIVXoSeJl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eacbcd;
}
.cid-tXIVXoSeJl .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXIVXoSeJl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXIVXoSeJl .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tXIVXoSeJl .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tXIVXoSeJl .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tXIVXoSeJl .mbr-section-title {
  color: #131313;
}
.cid-tXIVXoSeJl .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tXIVXoSeJl .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tXIVXoSeJl .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tXIVXoSeJl .card-wrapper {
  display: flex;
  width: calc(100% - 24px);
  padding: 52px 30px 52px 40px;
  margin: 0 auto;
  border: 2px solid #eacbcd;
  box-shadow: 4px 4px 0 #eacbcd;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tXIVXoSeJl .card-wrapper {
    padding: 40px 30px 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-tXIVXoSeJl .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tXIVXoSeJl .card-wrapper {
    width: calc(100% - 14px);
    flex-direction: column;
    padding: 30px 25px 25px;
  }
}
@media (min-width: 992px) {
  .cid-tXIVXoSeJl .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tXIVXoSeJl .iconfont-wrapper {
  margin-right: 40px;
}
@media (max-width: 767px) {
  .cid-tXIVXoSeJl .iconfont-wrapper {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.cid-tXIVXoSeJl .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tXIVXoSeJl .content-wrap {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .cid-tXIVXoSeJl .content-wrap {
    margin-top: 0;
  }
}
.cid-tXIVXoSeJl .card-title {
  color: #131313;
}
.cid-tXIVXoSeJl .card-text {
  margin-top: 24px;
  color: #131313;
  text-align: center;
}
@media (max-width: 1199px) {
  .cid-tXIVXoSeJl .card-text {
    margin-top: 15px;
  }
}
.cid-tXIVXoSeJl .card-link {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tXIVXoSeJl .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tXIVXoSeJl .card-link {
    margin-top: 15px;
  }
}
.cid-tXIVXoSeJl .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tXIVXoSeJl .card-title,
.cid-tXIVXoSeJl .iconfont-wrapper {
  text-align: center;
}
.cid-tXKFLSAAq3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eacbcd;
}
.cid-tXKFLSAAq3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXKFLSAAq3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXKFLSAAq3 .mbr-section-subtitle {
  text-align: left;
}
.cid-tXIYOAqiRn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eacbcd;
}
.cid-tXIYOAqiRn .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXIYOAqiRn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXIYOAqiRn .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-tXIYOAqiRn .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-tXIYOAqiRn .container {
    padding: 0 25px;
  }
}
.cid-tXIYOAqiRn .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-tXIYOAqiRn .title-wrapper .mbr-section-title {
    margin-bottom: 25px;
  }
}
.cid-tXIYOAqiRn .mbr-section-subtitle {
  margin-bottom: 50px;
  color: #E33030;
}
@media (max-width: 992px) {
  .cid-tXIYOAqiRn .mbr-section-subtitle {
    margin-bottom: 25px;
  }
}
.cid-tXIYOAqiRn .panel-group .card {
  border-bottom: 1px solid #ffffff;
  border-radius: 0;
}
.cid-tXIYOAqiRn .panel-group .card:first-child {
  border-top: 1px solid #ffffff;
}
.cid-tXIYOAqiRn .panel-group .card .card-header {
  padding: 25px 0;
  border: none;
  background-color: transparent;
}
.cid-tXIYOAqiRn .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tXIYOAqiRn .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-tXIYOAqiRn .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-tXIYOAqiRn .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-tXIYOAqiRn .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: block;
  font-size: 24px;
  color: #ffffff;
  margin-left: 10px;
  transform: rotate(45deg);
  transition: all 0.3s ease-in-out;
}
.cid-tXIYOAqiRn .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 30px;
}
.cid-tXIYOAqiRn .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tXIYOAqiRn .panel-title-edit {
  color: #000000;
}
.cid-tXIYOAqiRn .panel-text {
  color: #000000;
}
.cid-tXKFMojZ2d {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #eacbcd;
}
.cid-tXKFMojZ2d .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXKFMojZ2d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXKFMojZ2d .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tXKFMojZ2d .mbr-section-subtitle {
  text-align: left;
}
.cid-tXLA5y7547 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #eacbcd;
}
.cid-tXLA5y7547 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXLA5y7547 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXLA5y7547 .container-fluid {
  padding: 0 16px;
}
@media (max-width: 991px) {
  .cid-tXLA5y7547 .container-fluid {
    padding: 0 12px;
  }
}
.cid-tXLA5y7547 .container-fluid .row {
  padding: 0;
}
.cid-tXLA5y7547 .row {
  border: 3px solid #d2d2d2;
  margin-top: -3px;
  border-radius: 5px;
}
.cid-tXLA5y7547 .card {
  padding: 64px 28px;
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-tXLA5y7547 .card {
    padding: 48px 20px;
  }
}
.cid-tXLA5y7547 .card .title-wrapper {
  width: 80%;
  margin: 0 auto 48px;
}
.cid-tXLA5y7547 .card .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tXLA5y7547 .card .video-block {
  width: 80%;
  margin: 0 auto;
  border: 5px solid #d2d2d2;
}
.cid-tXLA5y7547 .app-video-wrapper::before {
  color: #ff5640;
  text-shadow: none;
}
.cid-tXLA5y7547 .mbr-section-title {
  color: #1b577a;
  text-align: left;
}
.cid-tXKMFiL0ty {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eacbcd;
}
.cid-tXKMFiL0ty blockquote {
  border-color: #ffffff;
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-tXKMFiL0ty .mbr-section-title {
  text-align: center;
}
.cid-tXJ1Yd4WQe {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #eacbcd;
}
.cid-tXJ1Yd4WQe .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXJ1Yd4WQe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXJ1Yd4WQe .google-map {
  height: 30rem;
  position: relative;
}
.cid-tXJ1Yd4WQe .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tXJ1Yd4WQe .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tXJ1Yd4WQe .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tXJ1Yd4WQe .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tXIRwocShk {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #eacbcd;
}
.cid-tXIRwocShk .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXIRwocShk .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-tXIRwocShk .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tXIRwocShk .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-tXIRwocShk a {
  font-weight: 600;
}
.cid-tXIRwocShk a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-tXIRwocShk .col-lg-3,
  .cid-tXIRwocShk .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-tXIRwocShk .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-tXIRwocShk .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-tXIRwocShk h5 {
  margin: 0;
}
.cid-tXIRwocShk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXIRwocShk .iconfont-wrapper {
  position: relative;
}
.cid-tXIRwocShk .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-tXIRwocShk .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-tXIRwocShk .sociconfont-wrapper {
  display: flex;
}
.cid-tXIRwocShk .card-title,
.cid-tXIRwocShk .iconfont-wrapper {
  color: #1d1d1f;
}
.cid-tXIRwocShk .card-text {
  color: #000000;
}
.cid-tXIRwocShk .mbr-section-title {
  color: #000000;
}
.cid-tXIRwocShk .main-title,
.cid-tXIRwocShk .iconfont-wrapper {
  text-align: left;
}
.cid-tXKGhKMDKr {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-tXLHE8oiwa {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #eacbcd;
}
.cid-tXLHE8oiwa .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXLHE8oiwa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXLHE8oiwa .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tXLHE8oiwa .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-tXKPEtE5VN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eacbcd;
}
.cid-tXKPEtE5VN .line {
  background-color: #e43f3f;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tXKPEtE5VN .mbr-text {
  text-align: left;
}
.cid-tXKPEtV4i8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #eacbcd;
}
.cid-tXKPEtV4i8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXKPEtV4i8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXKPEtV4i8 .google-map {
  height: 30rem;
  position: relative;
}
.cid-tXKPEtV4i8 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tXKPEtV4i8 .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tXKPEtV4i8 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tXKPEtV4i8 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tXKPEukPpu {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #f6f6f6;
}
.cid-tXKPEukPpu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXKPEukPpu .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-tXKPEukPpu .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tXKPEukPpu .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-tXKPEukPpu a {
  font-weight: 600;
}
.cid-tXKPEukPpu a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-tXKPEukPpu .col-lg-3,
  .cid-tXKPEukPpu .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-tXKPEukPpu .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-tXKPEukPpu .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-tXKPEukPpu h5 {
  margin: 0;
}
.cid-tXKPEukPpu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXKPEukPpu .iconfont-wrapper {
  position: relative;
}
.cid-tXKPEukPpu .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-tXKPEukPpu .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-tXKPEukPpu .sociconfont-wrapper {
  display: flex;
}
.cid-tXKPEukPpu .card-title,
.cid-tXKPEukPpu .iconfont-wrapper {
  color: #1d1d1f;
}
.cid-tXKPEukPpu .card-text {
  color: #000000;
}
.cid-tXKPEukPpu .mbr-section-title {
  color: #000000;
}
.cid-tXKPEukPpu .main-title,
.cid-tXKPEukPpu .iconfont-wrapper {
  text-align: left;
}
.cid-tXKPEvxl83 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-tXL6veNmHy {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-tXL6veNmHy .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-tXL6veNmHy .btn {
  padding: .6rem 1.3rem;
}
@media (max-width: 767px) {
  .cid-tXL6veNmHy .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-tXL6veNmHy .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tXL6veNmHy .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-tXL6veNmHy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tXL6veNmHy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tXL6veNmHy .navbar-nav {
  margin: auto;
  margin-left: 0;
}
.cid-tXL6veNmHy .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-tXL6veNmHy .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-tXL6veNmHy .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-tXL6veNmHy .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-tXL6veNmHy .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-tXL6veNmHy .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-tXL6veNmHy .navbar-nav {
    padding: 0 1rem;
  }
}
.cid-tXL6veNmHy .nav-link {
  width: fit-content;
  position: relative;
}
.cid-tXL6veNmHy .navbar-logo {
  padding-left: 1rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-tXL6veNmHy .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-tXL6veNmHy .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-tXL6veNmHy .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-tXL6veNmHy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-tXL6veNmHy .container {
  display: flex;
  height: 64px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(255, 255, 255, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2rem;
  margin-top: 1rem;
  background-color: #ffffff;
  border-radius: 4px !important;
}
@media (max-width: 992px) {
  .cid-tXL6veNmHy .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tXL6veNmHy .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-tXL6veNmHy .container {
    width: auto;
    margin-left: 6.8rem;
  }
}
.cid-tXL6veNmHy .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tXL6veNmHy .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #ffffff;
  background: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(10px);
  border-radius: 4px !important;
}
.cid-tXL6veNmHy .nav-item:focus,
.cid-tXL6veNmHy .nav-link:focus {
  outline: none;
}
.cid-tXL6veNmHy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tXL6veNmHy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tXL6veNmHy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tXL6veNmHy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tXL6veNmHy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tXL6veNmHy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tXL6veNmHy .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-tXL6veNmHy .navbar.opened {
  transition: all 0.3s;
}
.cid-tXL6veNmHy .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tXL6veNmHy .navbar .navbar-logo img {
  width: auto;
}
.cid-tXL6veNmHy .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-tXL6veNmHy .navbar.collapsed {
  justify-content: center;
}
.cid-tXL6veNmHy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tXL6veNmHy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tXL6veNmHy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.6rem);
  }
}
.cid-tXL6veNmHy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tXL6veNmHy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tXL6veNmHy .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-tXL6veNmHy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tXL6veNmHy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tXL6veNmHy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-tXL6veNmHy .navbar {
    min-height: 72px;
  }
  .cid-tXL6veNmHy .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-tXL6veNmHy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tXL6veNmHy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tXL6veNmHy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tXL6veNmHy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tXL6veNmHy .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-tXL6veNmHy .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tXL6veNmHy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-tXL6veNmHy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tXL6veNmHy .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tXL6veNmHy .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-tXL6veNmHy .dropdown-item.active,
.cid-tXL6veNmHy .dropdown-item:active {
  background-color: transparent;
}
.cid-tXL6veNmHy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tXL6veNmHy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tXL6veNmHy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tXL6veNmHy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tXL6veNmHy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-tXL6veNmHy .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-tXL6veNmHy ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tXL6veNmHy .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-tXL6veNmHy .navbar-buttons {
    text-align: left;
  }
}
.cid-tXL6veNmHy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tXL6veNmHy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tXL6veNmHy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tXL6veNmHy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXL6veNmHy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXL6veNmHy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tXL6veNmHy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXL6veNmHy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tXL6veNmHy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tXL6veNmHy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXL6veNmHy .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tXL6veNmHy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tXL6veNmHy .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tXL6veNmHy .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tXL6veNmHy .navbar {
    height: 70px;
  }
  .cid-tXL6veNmHy .navbar.opened {
    height: auto;
  }
  .cid-tXL6veNmHy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tXL6veNmHy .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-tXL6veNmHy .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-tXL6veNmHy .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-tXL6veNmHy .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-tXL6veNmHy .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-tXL6veNmHy .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-tXL6veNmHy .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-tXL6veNmHy .navbar-brand {
    margin-right: auto;
  }
  .cid-tXL6veNmHy .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #ffffff;
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.8) !important;
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(8px);
    border-radius: 4px !important;
  }
  .cid-tXL6veNmHy .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-tXL6veNmHy .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-tXL6veNmHy .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tXL6veNmHy .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-tXL6veNmHy .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-tXL6veNmHy .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-tXL6veNmHy .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-tXL6veNmHy .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tXL6veNmHy .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-tXL6veNmHy .navbar-collapse {
    padding: 1rem;
  }
}
.cid-tXLHthRELy {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #eacbcd;
}
.cid-tXLHthRELy .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXLHthRELy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXLHthRELy .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tXLHthRELy .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-tXKPjAxuEf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eacbcd;
}
.cid-tXKPjAxuEf .line {
  background-color: #4479d9;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tXKPjAxuEf .mbr-text {
  text-align: left;
}
.cid-tXKPjHAH6c {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #eacbcd;
}
.cid-tXKPjHAH6c .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXKPjHAH6c .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXKPjHAH6c .google-map {
  height: 30rem;
  position: relative;
}
.cid-tXKPjHAH6c .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tXKPjHAH6c .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tXKPjHAH6c .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tXKPjHAH6c .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tXKPjHAH6c .mbr-section-title {
  color: #ffffff;
}
.cid-tXKPjIal8I {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #eacbcd;
}
.cid-tXKPjIal8I .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXKPjIal8I .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-tXKPjIal8I .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tXKPjIal8I .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-tXKPjIal8I a {
  font-weight: 600;
}
.cid-tXKPjIal8I a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-tXKPjIal8I .col-lg-3,
  .cid-tXKPjIal8I .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-tXKPjIal8I .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-tXKPjIal8I .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-tXKPjIal8I h5 {
  margin: 0;
}
.cid-tXKPjIal8I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXKPjIal8I .iconfont-wrapper {
  position: relative;
}
.cid-tXKPjIal8I .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-tXKPjIal8I .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-tXKPjIal8I .sociconfont-wrapper {
  display: flex;
}
.cid-tXKPjIal8I .card-title,
.cid-tXKPjIal8I .iconfont-wrapper {
  color: #1d1d1f;
}
.cid-tXKPjIal8I .card-text {
  color: #000000;
}
.cid-tXKPjIal8I .mbr-section-title {
  color: #000000;
}
.cid-tXKPjIal8I .main-title,
.cid-tXKPjIal8I .iconfont-wrapper {
  text-align: left;
}
.cid-tXKPjISW9I {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-tXL6veNmHy {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-tXL6veNmHy .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-tXL6veNmHy .btn {
  padding: .6rem 1.3rem;
}
@media (max-width: 767px) {
  .cid-tXL6veNmHy .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-tXL6veNmHy .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tXL6veNmHy .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-tXL6veNmHy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tXL6veNmHy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tXL6veNmHy .navbar-nav {
  margin: auto;
  margin-left: 0;
}
.cid-tXL6veNmHy .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-tXL6veNmHy .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-tXL6veNmHy .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-tXL6veNmHy .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-tXL6veNmHy .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-tXL6veNmHy .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-tXL6veNmHy .navbar-nav {
    padding: 0 1rem;
  }
}
.cid-tXL6veNmHy .nav-link {
  width: fit-content;
  position: relative;
}
.cid-tXL6veNmHy .navbar-logo {
  padding-left: 1rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-tXL6veNmHy .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-tXL6veNmHy .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-tXL6veNmHy .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-tXL6veNmHy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-tXL6veNmHy .container {
  display: flex;
  height: 64px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(255, 255, 255, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2rem;
  margin-top: 1rem;
  background-color: #ffffff;
  border-radius: 4px !important;
}
@media (max-width: 992px) {
  .cid-tXL6veNmHy .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tXL6veNmHy .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-tXL6veNmHy .container {
    width: auto;
    margin-left: 6.8rem;
  }
}
.cid-tXL6veNmHy .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tXL6veNmHy .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #ffffff;
  background: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(10px);
  border-radius: 4px !important;
}
.cid-tXL6veNmHy .nav-item:focus,
.cid-tXL6veNmHy .nav-link:focus {
  outline: none;
}
.cid-tXL6veNmHy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tXL6veNmHy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tXL6veNmHy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tXL6veNmHy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tXL6veNmHy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tXL6veNmHy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tXL6veNmHy .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-tXL6veNmHy .navbar.opened {
  transition: all 0.3s;
}
.cid-tXL6veNmHy .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tXL6veNmHy .navbar .navbar-logo img {
  width: auto;
}
.cid-tXL6veNmHy .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-tXL6veNmHy .navbar.collapsed {
  justify-content: center;
}
.cid-tXL6veNmHy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tXL6veNmHy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tXL6veNmHy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.6rem);
  }
}
.cid-tXL6veNmHy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tXL6veNmHy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tXL6veNmHy .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-tXL6veNmHy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tXL6veNmHy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tXL6veNmHy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-tXL6veNmHy .navbar {
    min-height: 72px;
  }
  .cid-tXL6veNmHy .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-tXL6veNmHy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tXL6veNmHy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tXL6veNmHy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tXL6veNmHy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tXL6veNmHy .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-tXL6veNmHy .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tXL6veNmHy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-tXL6veNmHy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tXL6veNmHy .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tXL6veNmHy .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-tXL6veNmHy .dropdown-item.active,
.cid-tXL6veNmHy .dropdown-item:active {
  background-color: transparent;
}
.cid-tXL6veNmHy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tXL6veNmHy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tXL6veNmHy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tXL6veNmHy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tXL6veNmHy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-tXL6veNmHy .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-tXL6veNmHy ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tXL6veNmHy .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-tXL6veNmHy .navbar-buttons {
    text-align: left;
  }
}
.cid-tXL6veNmHy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tXL6veNmHy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tXL6veNmHy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tXL6veNmHy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXL6veNmHy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXL6veNmHy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tXL6veNmHy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXL6veNmHy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tXL6veNmHy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tXL6veNmHy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXL6veNmHy .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tXL6veNmHy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tXL6veNmHy .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tXL6veNmHy .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tXL6veNmHy .navbar {
    height: 70px;
  }
  .cid-tXL6veNmHy .navbar.opened {
    height: auto;
  }
  .cid-tXL6veNmHy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tXL6veNmHy .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-tXL6veNmHy .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-tXL6veNmHy .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-tXL6veNmHy .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-tXL6veNmHy .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-tXL6veNmHy .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-tXL6veNmHy .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-tXL6veNmHy .navbar-brand {
    margin-right: auto;
  }
  .cid-tXL6veNmHy .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #ffffff;
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.8) !important;
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(8px);
    border-radius: 4px !important;
  }
  .cid-tXL6veNmHy .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-tXL6veNmHy .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-tXL6veNmHy .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tXL6veNmHy .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-tXL6veNmHy .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-tXL6veNmHy .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-tXL6veNmHy .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-tXL6veNmHy .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tXL6veNmHy .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-tXL6veNmHy .navbar-collapse {
    padding: 1rem;
  }
}
.cid-tXLIEpx3Dr {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-tXLIEpx3Dr .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-tXLIEpx3Dr .btn {
  padding: .6rem 1.3rem;
}
@media (max-width: 767px) {
  .cid-tXLIEpx3Dr .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-tXLIEpx3Dr .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tXLIEpx3Dr .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-tXLIEpx3Dr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tXLIEpx3Dr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tXLIEpx3Dr .navbar-nav {
  margin: auto;
  margin-left: 0;
}
.cid-tXLIEpx3Dr .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-tXLIEpx3Dr .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-tXLIEpx3Dr .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-tXLIEpx3Dr .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-tXLIEpx3Dr .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-tXLIEpx3Dr .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-tXLIEpx3Dr .navbar-nav {
    padding: 0 1rem;
  }
}
.cid-tXLIEpx3Dr .nav-link {
  width: fit-content;
  position: relative;
}
.cid-tXLIEpx3Dr .navbar-logo {
  padding-left: 1rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-tXLIEpx3Dr .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-tXLIEpx3Dr .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-tXLIEpx3Dr .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-tXLIEpx3Dr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-tXLIEpx3Dr .container {
  display: flex;
  height: 64px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(255, 255, 255, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2rem;
  margin-top: 1rem;
  background-color: #ffffff;
  border-radius: 4px !important;
}
@media (max-width: 992px) {
  .cid-tXLIEpx3Dr .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tXLIEpx3Dr .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-tXLIEpx3Dr .container {
    width: auto;
    margin-left: 6.8rem;
  }
}
.cid-tXLIEpx3Dr .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tXLIEpx3Dr .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #ffffff;
  background: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(10px);
  border-radius: 4px !important;
}
.cid-tXLIEpx3Dr .nav-item:focus,
.cid-tXLIEpx3Dr .nav-link:focus {
  outline: none;
}
.cid-tXLIEpx3Dr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tXLIEpx3Dr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tXLIEpx3Dr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tXLIEpx3Dr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tXLIEpx3Dr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tXLIEpx3Dr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tXLIEpx3Dr .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-tXLIEpx3Dr .navbar.opened {
  transition: all 0.3s;
}
.cid-tXLIEpx3Dr .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tXLIEpx3Dr .navbar .navbar-logo img {
  width: auto;
}
.cid-tXLIEpx3Dr .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-tXLIEpx3Dr .navbar.collapsed {
  justify-content: center;
}
.cid-tXLIEpx3Dr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tXLIEpx3Dr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tXLIEpx3Dr .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.6rem);
  }
}
.cid-tXLIEpx3Dr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tXLIEpx3Dr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tXLIEpx3Dr .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-tXLIEpx3Dr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tXLIEpx3Dr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tXLIEpx3Dr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-tXLIEpx3Dr .navbar {
    min-height: 72px;
  }
  .cid-tXLIEpx3Dr .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-tXLIEpx3Dr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tXLIEpx3Dr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tXLIEpx3Dr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tXLIEpx3Dr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tXLIEpx3Dr .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-tXLIEpx3Dr .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tXLIEpx3Dr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-tXLIEpx3Dr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tXLIEpx3Dr .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tXLIEpx3Dr .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-tXLIEpx3Dr .dropdown-item.active,
.cid-tXLIEpx3Dr .dropdown-item:active {
  background-color: transparent;
}
.cid-tXLIEpx3Dr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tXLIEpx3Dr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tXLIEpx3Dr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tXLIEpx3Dr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tXLIEpx3Dr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-tXLIEpx3Dr .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-tXLIEpx3Dr ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tXLIEpx3Dr .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-tXLIEpx3Dr .navbar-buttons {
    text-align: left;
  }
}
.cid-tXLIEpx3Dr button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tXLIEpx3Dr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tXLIEpx3Dr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tXLIEpx3Dr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXLIEpx3Dr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXLIEpx3Dr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tXLIEpx3Dr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXLIEpx3Dr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tXLIEpx3Dr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tXLIEpx3Dr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXLIEpx3Dr .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tXLIEpx3Dr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tXLIEpx3Dr .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tXLIEpx3Dr .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tXLIEpx3Dr .navbar {
    height: 70px;
  }
  .cid-tXLIEpx3Dr .navbar.opened {
    height: auto;
  }
  .cid-tXLIEpx3Dr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tXLIEpx3Dr .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-tXLIEpx3Dr .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-tXLIEpx3Dr .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-tXLIEpx3Dr .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-tXLIEpx3Dr .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-tXLIEpx3Dr .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-tXLIEpx3Dr .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-tXLIEpx3Dr .navbar-brand {
    margin-right: auto;
  }
  .cid-tXLIEpx3Dr .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #ffffff;
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.8) !important;
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(8px);
    border-radius: 4px !important;
  }
  .cid-tXLIEpx3Dr .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-tXLIEpx3Dr .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-tXLIEpx3Dr .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tXLIEpx3Dr .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-tXLIEpx3Dr .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-tXLIEpx3Dr .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-tXLIEpx3Dr .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-tXLIEpx3Dr .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tXLIEpx3Dr .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-tXLIEpx3Dr .navbar-collapse {
    padding: 1rem;
  }
}
.cid-tXLIEq6IPW {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #eacbcd;
}
.cid-tXLIEq6IPW .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXLIEq6IPW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXLIEq6IPW .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tXLIEq6IPW .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-tXLIEqx2iL {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #eacbcd;
}
.cid-tXLIEqx2iL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXLIEqx2iL .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-tXLIEqx2iL .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-tXLIEqx2iL .container {
    padding: 0 12px;
  }
}
.cid-tXLIEqx2iL .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-tXLIEqx2iL .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-tXLIEqx2iL .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-tXLIEqx2iL .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #0c2c68;
  width: 22px;
  height: 22px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-tXLIEqx2iL .mbr-section-title {
  color: #222222;
}
.cid-tXLIEqQ6X6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eacbcd;
}
.cid-tXLIEqQ6X6 .line {
  background-color: #4479d9;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tXLIEqQ6X6 .mbr-text {
  text-align: left;
}
.cid-tXLIErbA11 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eacbcd;
}
.cid-tXLIErbA11 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXLIErbA11 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXLIErbA11 .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tXLIErbA11 .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tXLIErbA11 .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tXLIErbA11 .mbr-section-title {
  color: #131313;
}
.cid-tXLIErbA11 .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tXLIErbA11 .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tXLIErbA11 .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tXLIErbA11 .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: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tXLIErbA11 .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-tXLIErbA11 .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tXLIErbA11 .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-tXLIErbA11 .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-tXLIErbA11 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tXLIErbA11 .card-title {
  color: #131313;
}
.cid-tXLIErbA11 .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-tXLIErbA11 .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tXLIErbA11 .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-tXLIErbA11 .card-link {
    margin-top: 15px;
  }
}
.cid-tXLIErbA11 .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tXLIErbA11 .card-title,
.cid-tXLIErbA11 .iconfont-wrapper {
  text-align: center;
}
.cid-tXLIErOAyU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eacbcd;
}
.cid-tXLIErOAyU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXLIErOAyU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXLIErOAyU .mbr-section-subtitle {
  text-align: left;
}
.cid-tXLIEs9cEj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eacbcd;
}
.cid-tXLIEs9cEj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXLIEs9cEj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXLIEs9cEj .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tXLIEs9cEj .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tXLIEs9cEj .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tXLIEs9cEj .mbr-section-title {
  color: #131313;
}
.cid-tXLIEs9cEj .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tXLIEs9cEj .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tXLIEs9cEj .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tXLIEs9cEj .card-wrapper {
  display: flex;
  width: calc(100% - 24px);
  padding: 52px 30px 52px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tXLIEs9cEj .card-wrapper {
    padding: 40px 30px 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-tXLIEs9cEj .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tXLIEs9cEj .card-wrapper {
    width: calc(100% - 14px);
    flex-direction: column;
    padding: 30px 25px 25px;
  }
}
@media (min-width: 992px) {
  .cid-tXLIEs9cEj .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tXLIEs9cEj .iconfont-wrapper {
  margin-right: 40px;
}
@media (max-width: 767px) {
  .cid-tXLIEs9cEj .iconfont-wrapper {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.cid-tXLIEs9cEj .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tXLIEs9cEj .content-wrap {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .cid-tXLIEs9cEj .content-wrap {
    margin-top: 0;
  }
}
.cid-tXLIEs9cEj .card-title {
  color: #131313;
}
.cid-tXLIEs9cEj .card-text {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tXLIEs9cEj .card-text {
    margin-top: 15px;
  }
}
.cid-tXLIEs9cEj .card-link {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tXLIEs9cEj .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tXLIEs9cEj .card-link {
    margin-top: 15px;
  }
}
.cid-tXLIEs9cEj .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tXLIEsRrFS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eacbcd;
}
.cid-tXLIEsRrFS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXLIEsRrFS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXLIEsRrFS .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tXLIEsRrFS .mbr-section-subtitle {
  text-align: left;
}
.cid-tXLIEtl0yU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eacbcd;
}
.cid-tXLIEtl0yU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXLIEtl0yU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXLIEtl0yU .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tXLIEtl0yU .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tXLIEtl0yU .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tXLIEtl0yU .mbr-section-title {
  color: #131313;
}
.cid-tXLIEtl0yU .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tXLIEtl0yU .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tXLIEtl0yU .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tXLIEtl0yU .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #eacbcd;
  box-shadow: 4px 4px 0 #eacbcd;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tXLIEtl0yU .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-tXLIEtl0yU .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tXLIEtl0yU .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-tXLIEtl0yU .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-tXLIEtl0yU .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tXLIEtl0yU .card-title {
  color: #131313;
}
.cid-tXLIEtl0yU .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-tXLIEtl0yU .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tXLIEtl0yU .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-tXLIEtl0yU .card-link {
    margin-top: 15px;
  }
}
.cid-tXLIEtl0yU .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tXLIEtl0yU .card-title,
.cid-tXLIEtl0yU .iconfont-wrapper {
  text-align: center;
}
.cid-tXLIEu2TUh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eacbcd;
}
.cid-tXLIEu2TUh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXLIEu2TUh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXLIEu2TUh .mbr-section-subtitle {
  text-align: left;
}
.cid-tXLIEum5Hl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eacbcd;
}
.cid-tXLIEum5Hl .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXLIEum5Hl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXLIEum5Hl .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tXLIEum5Hl .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tXLIEum5Hl .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tXLIEum5Hl .mbr-section-title {
  color: #131313;
}
.cid-tXLIEum5Hl .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tXLIEum5Hl .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tXLIEum5Hl .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tXLIEum5Hl .card-wrapper {
  display: flex;
  width: calc(100% - 24px);
  padding: 52px 30px 52px 40px;
  margin: 0 auto;
  border: 2px solid #eacbcd;
  box-shadow: 4px 4px 0 #eacbcd;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tXLIEum5Hl .card-wrapper {
    padding: 40px 30px 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-tXLIEum5Hl .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tXLIEum5Hl .card-wrapper {
    width: calc(100% - 14px);
    flex-direction: column;
    padding: 30px 25px 25px;
  }
}
@media (min-width: 992px) {
  .cid-tXLIEum5Hl .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tXLIEum5Hl .iconfont-wrapper {
  margin-right: 40px;
}
@media (max-width: 767px) {
  .cid-tXLIEum5Hl .iconfont-wrapper {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.cid-tXLIEum5Hl .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tXLIEum5Hl .content-wrap {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .cid-tXLIEum5Hl .content-wrap {
    margin-top: 0;
  }
}
.cid-tXLIEum5Hl .card-title {
  color: #131313;
}
.cid-tXLIEum5Hl .card-text {
  margin-top: 24px;
  color: #131313;
  text-align: center;
}
@media (max-width: 1199px) {
  .cid-tXLIEum5Hl .card-text {
    margin-top: 15px;
  }
}
.cid-tXLIEum5Hl .card-link {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tXLIEum5Hl .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tXLIEum5Hl .card-link {
    margin-top: 15px;
  }
}
.cid-tXLIEum5Hl .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tXLIEum5Hl .card-title,
.cid-tXLIEum5Hl .iconfont-wrapper {
  text-align: center;
}
.cid-tXLIEuOJBW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eacbcd;
}
.cid-tXLIEuOJBW .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXLIEuOJBW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXLIEuOJBW .mbr-section-subtitle {
  text-align: left;
}
.cid-tXLIEvdCFK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eacbcd;
}
.cid-tXLIEvdCFK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXLIEvdCFK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXLIEvdCFK .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-tXLIEvdCFK .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-tXLIEvdCFK .container {
    padding: 0 25px;
  }
}
.cid-tXLIEvdCFK .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-tXLIEvdCFK .title-wrapper .mbr-section-title {
    margin-bottom: 25px;
  }
}
.cid-tXLIEvdCFK .mbr-section-subtitle {
  margin-bottom: 50px;
  color: #E33030;
}
@media (max-width: 992px) {
  .cid-tXLIEvdCFK .mbr-section-subtitle {
    margin-bottom: 25px;
  }
}
.cid-tXLIEvdCFK .panel-group .card {
  border-bottom: 1px solid #ffffff;
  border-radius: 0;
}
.cid-tXLIEvdCFK .panel-group .card:first-child {
  border-top: 1px solid #ffffff;
}
.cid-tXLIEvdCFK .panel-group .card .card-header {
  padding: 25px 0;
  border: none;
  background-color: transparent;
}
.cid-tXLIEvdCFK .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tXLIEvdCFK .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-tXLIEvdCFK .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-tXLIEvdCFK .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-tXLIEvdCFK .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: block;
  font-size: 24px;
  color: #ffffff;
  margin-left: 10px;
  transform: rotate(45deg);
  transition: all 0.3s ease-in-out;
}
.cid-tXLIEvdCFK .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 30px;
}
.cid-tXLIEvdCFK .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tXLIEvdCFK .panel-title-edit {
  color: #000000;
}
.cid-tXLIEvdCFK .panel-text {
  color: #000000;
}
.cid-tXLIEvP5pU {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #eacbcd;
}
.cid-tXLIEvP5pU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXLIEvP5pU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXLIEvP5pU .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tXLIEvP5pU .mbr-section-subtitle {
  text-align: left;
}
.cid-tXLIEwbGuW {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #eacbcd;
}
.cid-tXLIEwbGuW .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXLIEwbGuW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXLIEwbGuW .container-fluid {
  padding: 0 16px;
}
@media (max-width: 991px) {
  .cid-tXLIEwbGuW .container-fluid {
    padding: 0 12px;
  }
}
.cid-tXLIEwbGuW .container-fluid .row {
  padding: 0;
}
.cid-tXLIEwbGuW .row {
  border: 3px solid #d2d2d2;
  margin-top: -3px;
  border-radius: 5px;
}
.cid-tXLIEwbGuW .card {
  padding: 64px 28px;
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-tXLIEwbGuW .card {
    padding: 48px 20px;
  }
}
.cid-tXLIEwbGuW .card .title-wrapper {
  width: 80%;
  margin: 0 auto 48px;
}
.cid-tXLIEwbGuW .card .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tXLIEwbGuW .card .video-block {
  width: 80%;
  margin: 0 auto;
  border: 5px solid #d2d2d2;
}
.cid-tXLIEwbGuW .app-video-wrapper::before {
  color: #ff5640;
  text-shadow: none;
}
.cid-tXLIEwbGuW .mbr-section-title {
  color: #1b577a;
  text-align: left;
}
.cid-tXLIEwYcW2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eacbcd;
}
.cid-tXLIEwYcW2 blockquote {
  border-color: #ffffff;
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-tXLIEwYcW2 .mbr-section-title {
  text-align: center;
}
.cid-tXOxPxiddm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eacbcd;
}
.cid-tXOxPxiddm .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXOxPxiddm .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-tXOxPxiddm .container {
    padding: 0 30px;
  }
}
.cid-tXOxPxiddm .row {
  justify-content: center;
}
.cid-tXOxPxiddm .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-tXOxPxiddm .panel-group .card {
  border-radius: 0;
  border-bottom: 1px solid #212529;
  padding: 30px 0 40px;
}
.cid-tXOxPxiddm .panel-group .card:first-child {
  border-top: 1px solid #212529;
}
.cid-tXOxPxiddm .panel-group .card .card-header {
  padding: 10px 0;
  background-color: transparent;
  border: none;
}
.cid-tXOxPxiddm .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tXOxPxiddm .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-tXOxPxiddm .panel-group .card .card-header .panel-title .mbr-iconfont {
  font-size: 18px;
  color: #212529;
  transition: all 0.3s ease-in-out;
  margin-left: 30px;
}
.cid-tXOxPxiddm .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-tXOxPxiddm .mbr-section-btn {
  text-align: center;
}
.cid-tXOxPxiddm .mbr-section-btn .btn {
  text-decoration: none;
}
.cid-tXOxPxiddm .mbr-section-btn .btn:hover,
.cid-tXOxPxiddm .mbr-section-btn .btn:focus {
  opacity: .75;
}
.cid-tXOxPxiddm .mbr-section-title {
  color: #212529;
}
.cid-tXOxPxiddm .panel-title-edit {
  color: #212529;
}
.cid-tXOxPxiddm .panel-text {
  color: #212529;
}
.cid-tXLIExMiko {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #eacbcd;
}
.cid-tXLIExMiko .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXLIExMiko .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXLIExMiko .google-map {
  height: 30rem;
  position: relative;
}
.cid-tXLIExMiko .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tXLIExMiko .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tXLIExMiko .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tXLIExMiko .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tXLIEyUN86 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #eacbcd;
}
.cid-tXLIEyUN86 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXLIEyUN86 .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-tXLIEyUN86 .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tXLIEyUN86 .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-tXLIEyUN86 a {
  font-weight: 600;
}
.cid-tXLIEyUN86 a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-tXLIEyUN86 .col-lg-3,
  .cid-tXLIEyUN86 .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-tXLIEyUN86 .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-tXLIEyUN86 .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-tXLIEyUN86 h5 {
  margin: 0;
}
.cid-tXLIEyUN86 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXLIEyUN86 .iconfont-wrapper {
  position: relative;
}
.cid-tXLIEyUN86 .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-tXLIEyUN86 .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-tXLIEyUN86 .sociconfont-wrapper {
  display: flex;
}
.cid-tXLIEyUN86 .card-title,
.cid-tXLIEyUN86 .iconfont-wrapper {
  color: #1d1d1f;
}
.cid-tXLIEyUN86 .card-text {
  color: #000000;
}
.cid-tXLIEyUN86 .mbr-section-title {
  color: #000000;
}
.cid-tXLIEyUN86 .main-title,
.cid-tXLIEyUN86 .iconfont-wrapper {
  text-align: left;
}
.cid-tXLIEARW6T {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-tXLJyML03v {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-tXLJyML03v .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-tXLJyML03v .btn {
  padding: .6rem 1.3rem;
}
@media (max-width: 767px) {
  .cid-tXLJyML03v .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-tXLJyML03v .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tXLJyML03v .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-tXLJyML03v .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tXLJyML03v .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tXLJyML03v .navbar-nav {
  margin: auto;
  margin-left: 0;
}
.cid-tXLJyML03v .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-tXLJyML03v .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-tXLJyML03v .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-tXLJyML03v .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-tXLJyML03v .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-tXLJyML03v .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-tXLJyML03v .navbar-nav {
    padding: 0 1rem;
  }
}
.cid-tXLJyML03v .nav-link {
  width: fit-content;
  position: relative;
}
.cid-tXLJyML03v .navbar-logo {
  padding-left: 1rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-tXLJyML03v .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-tXLJyML03v .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-tXLJyML03v .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-tXLJyML03v .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-tXLJyML03v .container {
  display: flex;
  height: 64px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(255, 255, 255, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2rem;
  margin-top: 1rem;
  background-color: #ffffff;
  border-radius: 4px !important;
}
@media (max-width: 992px) {
  .cid-tXLJyML03v .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tXLJyML03v .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-tXLJyML03v .container {
    width: auto;
    margin-left: 6.8rem;
  }
}
.cid-tXLJyML03v .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tXLJyML03v .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #ffffff;
  background: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(10px);
  border-radius: 4px !important;
}
.cid-tXLJyML03v .nav-item:focus,
.cid-tXLJyML03v .nav-link:focus {
  outline: none;
}
.cid-tXLJyML03v .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tXLJyML03v .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tXLJyML03v .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tXLJyML03v .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tXLJyML03v .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tXLJyML03v .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tXLJyML03v .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-tXLJyML03v .navbar.opened {
  transition: all 0.3s;
}
.cid-tXLJyML03v .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tXLJyML03v .navbar .navbar-logo img {
  width: auto;
}
.cid-tXLJyML03v .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-tXLJyML03v .navbar.collapsed {
  justify-content: center;
}
.cid-tXLJyML03v .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tXLJyML03v .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tXLJyML03v .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.6rem);
  }
}
.cid-tXLJyML03v .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tXLJyML03v .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tXLJyML03v .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-tXLJyML03v .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tXLJyML03v .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tXLJyML03v .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-tXLJyML03v .navbar {
    min-height: 72px;
  }
  .cid-tXLJyML03v .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-tXLJyML03v .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tXLJyML03v .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tXLJyML03v .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tXLJyML03v .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tXLJyML03v .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-tXLJyML03v .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tXLJyML03v .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-tXLJyML03v .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tXLJyML03v .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tXLJyML03v .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-tXLJyML03v .dropdown-item.active,
.cid-tXLJyML03v .dropdown-item:active {
  background-color: transparent;
}
.cid-tXLJyML03v .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tXLJyML03v .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tXLJyML03v .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tXLJyML03v .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tXLJyML03v .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-tXLJyML03v .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-tXLJyML03v ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tXLJyML03v .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-tXLJyML03v .navbar-buttons {
    text-align: left;
  }
}
.cid-tXLJyML03v button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tXLJyML03v button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tXLJyML03v button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tXLJyML03v button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXLJyML03v button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXLJyML03v button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tXLJyML03v nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXLJyML03v nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tXLJyML03v nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tXLJyML03v nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXLJyML03v .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tXLJyML03v a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tXLJyML03v .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tXLJyML03v .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tXLJyML03v .navbar {
    height: 70px;
  }
  .cid-tXLJyML03v .navbar.opened {
    height: auto;
  }
  .cid-tXLJyML03v .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tXLJyML03v .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-tXLJyML03v .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-tXLJyML03v .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-tXLJyML03v .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-tXLJyML03v .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-tXLJyML03v .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-tXLJyML03v .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-tXLJyML03v .navbar-brand {
    margin-right: auto;
  }
  .cid-tXLJyML03v .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #ffffff;
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.8) !important;
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(8px);
    border-radius: 4px !important;
  }
  .cid-tXLJyML03v .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-tXLJyML03v .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-tXLJyML03v .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tXLJyML03v .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-tXLJyML03v .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-tXLJyML03v .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-tXLJyML03v .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-tXLJyML03v .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tXLJyML03v .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-tXLJyML03v .navbar-collapse {
    padding: 1rem;
  }
}
.cid-tXLJyNqOjG {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #eacbcd;
}
.cid-tXLJyNqOjG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXLJyNqOjG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXLJyNqOjG .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tXLJyNqOjG .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-tXLJyO6gpo {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #eacbcd;
}
.cid-tXLJyO6gpo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXLJyO6gpo .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-tXLJyO6gpo .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-tXLJyO6gpo .container {
    padding: 0 12px;
  }
}
.cid-tXLJyO6gpo .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-tXLJyO6gpo .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-tXLJyO6gpo .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-tXLJyO6gpo .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #0c2c68;
  width: 22px;
  height: 22px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-tXLJyO6gpo .mbr-section-title {
  color: #222222;
}
.cid-tXLJyOy67h {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eacbcd;
}
.cid-tXLJyOy67h .line {
  background-color: #4479d9;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tXLJyOy67h .mbr-text {
  text-align: left;
}
.cid-tXLJyOW9tm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eacbcd;
}
.cid-tXLJyOW9tm .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXLJyOW9tm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXLJyOW9tm .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tXLJyOW9tm .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tXLJyOW9tm .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tXLJyOW9tm .mbr-section-title {
  color: #131313;
}
.cid-tXLJyOW9tm .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tXLJyOW9tm .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tXLJyOW9tm .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tXLJyOW9tm .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: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tXLJyOW9tm .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-tXLJyOW9tm .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tXLJyOW9tm .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-tXLJyOW9tm .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-tXLJyOW9tm .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tXLJyOW9tm .card-title {
  color: #131313;
}
.cid-tXLJyOW9tm .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-tXLJyOW9tm .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tXLJyOW9tm .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-tXLJyOW9tm .card-link {
    margin-top: 15px;
  }
}
.cid-tXLJyOW9tm .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tXLJyOW9tm .card-title,
.cid-tXLJyOW9tm .iconfont-wrapper {
  text-align: center;
}
.cid-tXLJyPH6lV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eacbcd;
}
.cid-tXLJyPH6lV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXLJyPH6lV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXLJyPH6lV .mbr-section-subtitle {
  text-align: left;
}
.cid-tXLJyQkXM6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eacbcd;
}
.cid-tXLJyQkXM6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXLJyQkXM6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXLJyQkXM6 .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tXLJyQkXM6 .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tXLJyQkXM6 .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tXLJyQkXM6 .mbr-section-title {
  color: #131313;
}
.cid-tXLJyQkXM6 .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tXLJyQkXM6 .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tXLJyQkXM6 .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tXLJyQkXM6 .card-wrapper {
  display: flex;
  width: calc(100% - 24px);
  padding: 52px 30px 52px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tXLJyQkXM6 .card-wrapper {
    padding: 40px 30px 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-tXLJyQkXM6 .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tXLJyQkXM6 .card-wrapper {
    width: calc(100% - 14px);
    flex-direction: column;
    padding: 30px 25px 25px;
  }
}
@media (min-width: 992px) {
  .cid-tXLJyQkXM6 .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tXLJyQkXM6 .iconfont-wrapper {
  margin-right: 40px;
}
@media (max-width: 767px) {
  .cid-tXLJyQkXM6 .iconfont-wrapper {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.cid-tXLJyQkXM6 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tXLJyQkXM6 .content-wrap {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .cid-tXLJyQkXM6 .content-wrap {
    margin-top: 0;
  }
}
.cid-tXLJyQkXM6 .card-title {
  color: #131313;
}
.cid-tXLJyQkXM6 .card-text {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tXLJyQkXM6 .card-text {
    margin-top: 15px;
  }
}
.cid-tXLJyQkXM6 .card-link {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tXLJyQkXM6 .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tXLJyQkXM6 .card-link {
    margin-top: 15px;
  }
}
.cid-tXLJyQkXM6 .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tXLJyRd76M {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eacbcd;
}
.cid-tXLJyRd76M .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXLJyRd76M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXLJyRd76M .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tXLJyRd76M .mbr-section-subtitle {
  text-align: left;
}
.cid-tXLJyRHKHI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eacbcd;
}
.cid-tXLJyRHKHI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXLJyRHKHI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXLJyRHKHI .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tXLJyRHKHI .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tXLJyRHKHI .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tXLJyRHKHI .mbr-section-title {
  color: #131313;
}
.cid-tXLJyRHKHI .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tXLJyRHKHI .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tXLJyRHKHI .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tXLJyRHKHI .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #eacbcd;
  box-shadow: 4px 4px 0 #eacbcd;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tXLJyRHKHI .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-tXLJyRHKHI .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tXLJyRHKHI .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-tXLJyRHKHI .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-tXLJyRHKHI .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tXLJyRHKHI .card-title {
  color: #131313;
}
.cid-tXLJyRHKHI .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-tXLJyRHKHI .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tXLJyRHKHI .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-tXLJyRHKHI .card-link {
    margin-top: 15px;
  }
}
.cid-tXLJyRHKHI .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tXLJyRHKHI .card-title,
.cid-tXLJyRHKHI .iconfont-wrapper {
  text-align: center;
}
.cid-tXLJySzn5t {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eacbcd;
}
.cid-tXLJySzn5t .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXLJySzn5t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXLJySzn5t .mbr-section-subtitle {
  text-align: left;
}
.cid-tXLJyTdBmY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eacbcd;
}
.cid-tXLJyTdBmY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXLJyTdBmY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXLJyTdBmY .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tXLJyTdBmY .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tXLJyTdBmY .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tXLJyTdBmY .mbr-section-title {
  color: #131313;
}
.cid-tXLJyTdBmY .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tXLJyTdBmY .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tXLJyTdBmY .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tXLJyTdBmY .card-wrapper {
  display: flex;
  width: calc(100% - 24px);
  padding: 52px 30px 52px 40px;
  margin: 0 auto;
  border: 2px solid #eacbcd;
  box-shadow: 4px 4px 0 #eacbcd;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tXLJyTdBmY .card-wrapper {
    padding: 40px 30px 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-tXLJyTdBmY .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tXLJyTdBmY .card-wrapper {
    width: calc(100% - 14px);
    flex-direction: column;
    padding: 30px 25px 25px;
  }
}
@media (min-width: 992px) {
  .cid-tXLJyTdBmY .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tXLJyTdBmY .iconfont-wrapper {
  margin-right: 40px;
}
@media (max-width: 767px) {
  .cid-tXLJyTdBmY .iconfont-wrapper {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.cid-tXLJyTdBmY .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tXLJyTdBmY .content-wrap {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .cid-tXLJyTdBmY .content-wrap {
    margin-top: 0;
  }
}
.cid-tXLJyTdBmY .card-title {
  color: #131313;
}
.cid-tXLJyTdBmY .card-text {
  margin-top: 24px;
  color: #131313;
  text-align: center;
}
@media (max-width: 1199px) {
  .cid-tXLJyTdBmY .card-text {
    margin-top: 15px;
  }
}
.cid-tXLJyTdBmY .card-link {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tXLJyTdBmY .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tXLJyTdBmY .card-link {
    margin-top: 15px;
  }
}
.cid-tXLJyTdBmY .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tXLJyTdBmY .card-title,
.cid-tXLJyTdBmY .iconfont-wrapper {
  text-align: center;
}
.cid-tXLJyU4OhK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eacbcd;
}
.cid-tXLJyU4OhK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXLJyU4OhK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXLJyU4OhK .mbr-section-subtitle {
  text-align: left;
}
.cid-tXLJyUzILh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eacbcd;
}
.cid-tXLJyUzILh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXLJyUzILh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXLJyUzILh .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-tXLJyUzILh .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-tXLJyUzILh .container {
    padding: 0 25px;
  }
}
.cid-tXLJyUzILh .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-tXLJyUzILh .title-wrapper .mbr-section-title {
    margin-bottom: 25px;
  }
}
.cid-tXLJyUzILh .mbr-section-subtitle {
  margin-bottom: 50px;
  color: #E33030;
}
@media (max-width: 992px) {
  .cid-tXLJyUzILh .mbr-section-subtitle {
    margin-bottom: 25px;
  }
}
.cid-tXLJyUzILh .panel-group .card {
  border-bottom: 1px solid #ffffff;
  border-radius: 0;
}
.cid-tXLJyUzILh .panel-group .card:first-child {
  border-top: 1px solid #ffffff;
}
.cid-tXLJyUzILh .panel-group .card .card-header {
  padding: 25px 0;
  border: none;
  background-color: transparent;
}
.cid-tXLJyUzILh .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tXLJyUzILh .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-tXLJyUzILh .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-tXLJyUzILh .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-tXLJyUzILh .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: block;
  font-size: 24px;
  color: #ffffff;
  margin-left: 10px;
  transform: rotate(45deg);
  transition: all 0.3s ease-in-out;
}
.cid-tXLJyUzILh .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 30px;
}
.cid-tXLJyUzILh .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tXLJyUzILh .panel-title-edit {
  color: #000000;
}
.cid-tXLJyUzILh .panel-text {
  color: #000000;
}
.cid-tXLJyVxjUt {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #eacbcd;
}
.cid-tXLJyVxjUt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXLJyVxjUt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXLJyVxjUt .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tXLJyVxjUt .mbr-section-subtitle {
  text-align: left;
}
.cid-tXLJyWKmWG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eacbcd;
}
.cid-tXLJyWKmWG blockquote {
  border-color: #ffffff;
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-tXLJyWKmWG .mbr-section-title {
  text-align: center;
}
.cid-tXOyN1YbHc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eacbcd;
}
.cid-tXOyN1YbHc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXOyN1YbHc .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-tXOyN1YbHc .container {
    padding: 0 30px;
  }
}
.cid-tXOyN1YbHc .row {
  justify-content: center;
}
.cid-tXOyN1YbHc .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-tXOyN1YbHc .panel-group .card {
  border-radius: 0;
  border-bottom: 1px solid #212529;
  padding: 30px 0 40px;
}
.cid-tXOyN1YbHc .panel-group .card:first-child {
  border-top: 1px solid #212529;
}
.cid-tXOyN1YbHc .panel-group .card .card-header {
  padding: 10px 0;
  background-color: transparent;
  border: none;
}
.cid-tXOyN1YbHc .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tXOyN1YbHc .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-tXOyN1YbHc .panel-group .card .card-header .panel-title .mbr-iconfont {
  font-size: 18px;
  color: #212529;
  transition: all 0.3s ease-in-out;
  margin-left: 30px;
}
.cid-tXOyN1YbHc .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-tXOyN1YbHc .mbr-section-btn {
  text-align: center;
}
.cid-tXOyN1YbHc .mbr-section-btn .btn {
  text-decoration: none;
}
.cid-tXOyN1YbHc .mbr-section-btn .btn:hover,
.cid-tXOyN1YbHc .mbr-section-btn .btn:focus {
  opacity: .75;
}
.cid-tXOyN1YbHc .mbr-section-title {
  color: #212529;
}
.cid-tXOyN1YbHc .panel-title-edit {
  color: #212529;
}
.cid-tXOyN1YbHc .panel-text {
  color: #212529;
}
.cid-tXLJyXjzqQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #eacbcd;
}
.cid-tXLJyXjzqQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXLJyXjzqQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXLJyXjzqQ .google-map {
  height: 30rem;
  position: relative;
}
.cid-tXLJyXjzqQ .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tXLJyXjzqQ .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tXLJyXjzqQ .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tXLJyXjzqQ .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tXLJyXVsg8 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #eacbcd;
}
.cid-tXLJyXVsg8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXLJyXVsg8 .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-tXLJyXVsg8 .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tXLJyXVsg8 .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-tXLJyXVsg8 a {
  font-weight: 600;
}
.cid-tXLJyXVsg8 a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-tXLJyXVsg8 .col-lg-3,
  .cid-tXLJyXVsg8 .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-tXLJyXVsg8 .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-tXLJyXVsg8 .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-tXLJyXVsg8 h5 {
  margin: 0;
}
.cid-tXLJyXVsg8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXLJyXVsg8 .iconfont-wrapper {
  position: relative;
}
.cid-tXLJyXVsg8 .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-tXLJyXVsg8 .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-tXLJyXVsg8 .sociconfont-wrapper {
  display: flex;
}
.cid-tXLJyXVsg8 .card-title,
.cid-tXLJyXVsg8 .iconfont-wrapper {
  color: #1d1d1f;
}
.cid-tXLJyXVsg8 .card-text {
  color: #000000;
}
.cid-tXLJyXVsg8 .mbr-section-title {
  color: #000000;
}
.cid-tXLJyXVsg8 .main-title,
.cid-tXLJyXVsg8 .iconfont-wrapper {
  text-align: left;
}
.cid-tXLJz0NE5Q {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-tXLKaNphhD {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-tXLKaNphhD .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-tXLKaNphhD .btn {
  padding: .6rem 1.3rem;
}
@media (max-width: 767px) {
  .cid-tXLKaNphhD .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-tXLKaNphhD .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tXLKaNphhD .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-tXLKaNphhD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tXLKaNphhD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tXLKaNphhD .navbar-nav {
  margin: auto;
  margin-left: 0;
}
.cid-tXLKaNphhD .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-tXLKaNphhD .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-tXLKaNphhD .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-tXLKaNphhD .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-tXLKaNphhD .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-tXLKaNphhD .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-tXLKaNphhD .navbar-nav {
    padding: 0 1rem;
  }
}
.cid-tXLKaNphhD .nav-link {
  width: fit-content;
  position: relative;
}
.cid-tXLKaNphhD .navbar-logo {
  padding-left: 1rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-tXLKaNphhD .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-tXLKaNphhD .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-tXLKaNphhD .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-tXLKaNphhD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-tXLKaNphhD .container {
  display: flex;
  height: 64px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(255, 255, 255, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2rem;
  margin-top: 1rem;
  background-color: #ffffff;
  border-radius: 4px !important;
}
@media (max-width: 992px) {
  .cid-tXLKaNphhD .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tXLKaNphhD .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-tXLKaNphhD .container {
    width: auto;
    margin-left: 6.8rem;
  }
}
.cid-tXLKaNphhD .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tXLKaNphhD .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #ffffff;
  background: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(10px);
  border-radius: 4px !important;
}
.cid-tXLKaNphhD .nav-item:focus,
.cid-tXLKaNphhD .nav-link:focus {
  outline: none;
}
.cid-tXLKaNphhD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tXLKaNphhD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tXLKaNphhD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tXLKaNphhD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tXLKaNphhD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tXLKaNphhD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tXLKaNphhD .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-tXLKaNphhD .navbar.opened {
  transition: all 0.3s;
}
.cid-tXLKaNphhD .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tXLKaNphhD .navbar .navbar-logo img {
  width: auto;
}
.cid-tXLKaNphhD .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-tXLKaNphhD .navbar.collapsed {
  justify-content: center;
}
.cid-tXLKaNphhD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tXLKaNphhD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tXLKaNphhD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.6rem);
  }
}
.cid-tXLKaNphhD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tXLKaNphhD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tXLKaNphhD .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-tXLKaNphhD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tXLKaNphhD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tXLKaNphhD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-tXLKaNphhD .navbar {
    min-height: 72px;
  }
  .cid-tXLKaNphhD .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-tXLKaNphhD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tXLKaNphhD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tXLKaNphhD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tXLKaNphhD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tXLKaNphhD .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-tXLKaNphhD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tXLKaNphhD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-tXLKaNphhD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tXLKaNphhD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tXLKaNphhD .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-tXLKaNphhD .dropdown-item.active,
.cid-tXLKaNphhD .dropdown-item:active {
  background-color: transparent;
}
.cid-tXLKaNphhD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tXLKaNphhD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tXLKaNphhD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tXLKaNphhD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tXLKaNphhD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-tXLKaNphhD .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-tXLKaNphhD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tXLKaNphhD .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-tXLKaNphhD .navbar-buttons {
    text-align: left;
  }
}
.cid-tXLKaNphhD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tXLKaNphhD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tXLKaNphhD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tXLKaNphhD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXLKaNphhD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXLKaNphhD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tXLKaNphhD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXLKaNphhD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tXLKaNphhD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tXLKaNphhD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXLKaNphhD .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tXLKaNphhD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tXLKaNphhD .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tXLKaNphhD .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tXLKaNphhD .navbar {
    height: 70px;
  }
  .cid-tXLKaNphhD .navbar.opened {
    height: auto;
  }
  .cid-tXLKaNphhD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tXLKaNphhD .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-tXLKaNphhD .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-tXLKaNphhD .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-tXLKaNphhD .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-tXLKaNphhD .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-tXLKaNphhD .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-tXLKaNphhD .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-tXLKaNphhD .navbar-brand {
    margin-right: auto;
  }
  .cid-tXLKaNphhD .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #ffffff;
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.8) !important;
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(8px);
    border-radius: 4px !important;
  }
  .cid-tXLKaNphhD .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-tXLKaNphhD .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-tXLKaNphhD .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tXLKaNphhD .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-tXLKaNphhD .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-tXLKaNphhD .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-tXLKaNphhD .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-tXLKaNphhD .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tXLKaNphhD .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-tXLKaNphhD .navbar-collapse {
    padding: 1rem;
  }
}
.cid-tXLKaOcwYZ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #eacbcd;
}
.cid-tXLKaOcwYZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXLKaOcwYZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXLKaOcwYZ .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tXLKaOcwYZ .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-tXLKaOTz1r {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #eacbcd;
}
.cid-tXLKaOTz1r .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXLKaOTz1r .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-tXLKaOTz1r .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-tXLKaOTz1r .container {
    padding: 0 12px;
  }
}
.cid-tXLKaOTz1r .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-tXLKaOTz1r .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-tXLKaOTz1r .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-tXLKaOTz1r .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #0c2c68;
  width: 22px;
  height: 22px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-tXLKaOTz1r .mbr-section-title {
  color: #222222;
}
.cid-tXLKaPlC62 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eacbcd;
}
.cid-tXLKaPlC62 .line {
  background-color: #4479d9;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tXLKaPlC62 .mbr-text {
  text-align: left;
}
.cid-tXLKaPNPao {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eacbcd;
}
.cid-tXLKaPNPao .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXLKaPNPao .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXLKaPNPao .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tXLKaPNPao .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tXLKaPNPao .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tXLKaPNPao .mbr-section-title {
  color: #131313;
}
.cid-tXLKaPNPao .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tXLKaPNPao .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tXLKaPNPao .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tXLKaPNPao .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: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tXLKaPNPao .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-tXLKaPNPao .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tXLKaPNPao .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-tXLKaPNPao .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-tXLKaPNPao .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tXLKaPNPao .card-title {
  color: #131313;
}
.cid-tXLKaPNPao .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-tXLKaPNPao .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tXLKaPNPao .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-tXLKaPNPao .card-link {
    margin-top: 15px;
  }
}
.cid-tXLKaPNPao .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tXLKaPNPao .card-title,
.cid-tXLKaPNPao .iconfont-wrapper {
  text-align: center;
}
.cid-tXLKaQC2wW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eacbcd;
}
.cid-tXLKaQC2wW .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXLKaQC2wW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXLKaQC2wW .mbr-section-subtitle {
  text-align: left;
}
.cid-tXLKaRdify {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eacbcd;
}
.cid-tXLKaRdify .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXLKaRdify .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXLKaRdify .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tXLKaRdify .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tXLKaRdify .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tXLKaRdify .mbr-section-title {
  color: #131313;
}
.cid-tXLKaRdify .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tXLKaRdify .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tXLKaRdify .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tXLKaRdify .card-wrapper {
  display: flex;
  width: calc(100% - 24px);
  padding: 52px 30px 52px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tXLKaRdify .card-wrapper {
    padding: 40px 30px 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-tXLKaRdify .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tXLKaRdify .card-wrapper {
    width: calc(100% - 14px);
    flex-direction: column;
    padding: 30px 25px 25px;
  }
}
@media (min-width: 992px) {
  .cid-tXLKaRdify .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tXLKaRdify .iconfont-wrapper {
  margin-right: 40px;
}
@media (max-width: 767px) {
  .cid-tXLKaRdify .iconfont-wrapper {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.cid-tXLKaRdify .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tXLKaRdify .content-wrap {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .cid-tXLKaRdify .content-wrap {
    margin-top: 0;
  }
}
.cid-tXLKaRdify .card-title {
  color: #131313;
}
.cid-tXLKaRdify .card-text {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tXLKaRdify .card-text {
    margin-top: 15px;
  }
}
.cid-tXLKaRdify .card-link {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tXLKaRdify .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tXLKaRdify .card-link {
    margin-top: 15px;
  }
}
.cid-tXLKaRdify .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tXLKaSFrwh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eacbcd;
}
.cid-tXLKaSFrwh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXLKaSFrwh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXLKaSFrwh .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tXLKaSFrwh .mbr-section-subtitle {
  text-align: left;
}
.cid-tXLKaTd7DM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eacbcd;
}
.cid-tXLKaTd7DM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXLKaTd7DM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXLKaTd7DM .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tXLKaTd7DM .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tXLKaTd7DM .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tXLKaTd7DM .mbr-section-title {
  color: #131313;
}
.cid-tXLKaTd7DM .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tXLKaTd7DM .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tXLKaTd7DM .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tXLKaTd7DM .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #eacbcd;
  box-shadow: 4px 4px 0 #eacbcd;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tXLKaTd7DM .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-tXLKaTd7DM .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tXLKaTd7DM .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-tXLKaTd7DM .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-tXLKaTd7DM .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tXLKaTd7DM .card-title {
  color: #131313;
}
.cid-tXLKaTd7DM .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-tXLKaTd7DM .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tXLKaTd7DM .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-tXLKaTd7DM .card-link {
    margin-top: 15px;
  }
}
.cid-tXLKaTd7DM .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tXLKaTd7DM .card-title,
.cid-tXLKaTd7DM .iconfont-wrapper {
  text-align: center;
}
.cid-tXLKaU8v32 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eacbcd;
}
.cid-tXLKaU8v32 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXLKaU8v32 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXLKaU8v32 .mbr-section-subtitle {
  text-align: left;
}
.cid-tXLKaUBXD2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eacbcd;
}
.cid-tXLKaUBXD2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXLKaUBXD2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXLKaUBXD2 .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tXLKaUBXD2 .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tXLKaUBXD2 .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tXLKaUBXD2 .mbr-section-title {
  color: #131313;
}
.cid-tXLKaUBXD2 .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tXLKaUBXD2 .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tXLKaUBXD2 .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tXLKaUBXD2 .card-wrapper {
  display: flex;
  width: calc(100% - 24px);
  padding: 52px 30px 52px 40px;
  margin: 0 auto;
  border: 2px solid #eacbcd;
  box-shadow: 4px 4px 0 #eacbcd;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tXLKaUBXD2 .card-wrapper {
    padding: 40px 30px 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-tXLKaUBXD2 .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tXLKaUBXD2 .card-wrapper {
    width: calc(100% - 14px);
    flex-direction: column;
    padding: 30px 25px 25px;
  }
}
@media (min-width: 992px) {
  .cid-tXLKaUBXD2 .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tXLKaUBXD2 .iconfont-wrapper {
  margin-right: 40px;
}
@media (max-width: 767px) {
  .cid-tXLKaUBXD2 .iconfont-wrapper {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.cid-tXLKaUBXD2 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tXLKaUBXD2 .content-wrap {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .cid-tXLKaUBXD2 .content-wrap {
    margin-top: 0;
  }
}
.cid-tXLKaUBXD2 .card-title {
  color: #131313;
}
.cid-tXLKaUBXD2 .card-text {
  margin-top: 24px;
  color: #131313;
  text-align: center;
}
@media (max-width: 1199px) {
  .cid-tXLKaUBXD2 .card-text {
    margin-top: 15px;
  }
}
.cid-tXLKaUBXD2 .card-link {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tXLKaUBXD2 .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tXLKaUBXD2 .card-link {
    margin-top: 15px;
  }
}
.cid-tXLKaUBXD2 .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tXLKaUBXD2 .card-title,
.cid-tXLKaUBXD2 .iconfont-wrapper {
  text-align: center;
}
.cid-tXLKaVkGsu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eacbcd;
}
.cid-tXLKaVkGsu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXLKaVkGsu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXLKaVkGsu .mbr-section-subtitle {
  text-align: left;
}
.cid-tXLKaVUAFS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eacbcd;
}
.cid-tXLKaVUAFS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXLKaVUAFS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXLKaVUAFS .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-tXLKaVUAFS .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-tXLKaVUAFS .container {
    padding: 0 25px;
  }
}
.cid-tXLKaVUAFS .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-tXLKaVUAFS .title-wrapper .mbr-section-title {
    margin-bottom: 25px;
  }
}
.cid-tXLKaVUAFS .mbr-section-subtitle {
  margin-bottom: 50px;
  color: #E33030;
}
@media (max-width: 992px) {
  .cid-tXLKaVUAFS .mbr-section-subtitle {
    margin-bottom: 25px;
  }
}
.cid-tXLKaVUAFS .panel-group .card {
  border-bottom: 1px solid #ffffff;
  border-radius: 0;
}
.cid-tXLKaVUAFS .panel-group .card:first-child {
  border-top: 1px solid #ffffff;
}
.cid-tXLKaVUAFS .panel-group .card .card-header {
  padding: 25px 0;
  border: none;
  background-color: transparent;
}
.cid-tXLKaVUAFS .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tXLKaVUAFS .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-tXLKaVUAFS .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-tXLKaVUAFS .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-tXLKaVUAFS .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: block;
  font-size: 24px;
  color: #ffffff;
  margin-left: 10px;
  transform: rotate(45deg);
  transition: all 0.3s ease-in-out;
}
.cid-tXLKaVUAFS .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 30px;
}
.cid-tXLKaVUAFS .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tXLKaVUAFS .panel-title-edit {
  color: #000000;
}
.cid-tXLKaVUAFS .panel-text {
  color: #000000;
}
.cid-tXLKaWPMN8 {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #eacbcd;
}
.cid-tXLKaWPMN8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXLKaWPMN8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXLKaWPMN8 .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tXLKaWPMN8 .mbr-section-subtitle {
  text-align: left;
}
.cid-tXLKaXmLeL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eacbcd;
}
.cid-tXLKaXmLeL blockquote {
  border-color: #ffffff;
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-tXLKaXmLeL .mbr-section-title {
  text-align: center;
}
.cid-tXOz8y3Lcy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eacbcd;
}
.cid-tXOz8y3Lcy .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXOz8y3Lcy .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-tXOz8y3Lcy .container {
    padding: 0 30px;
  }
}
.cid-tXOz8y3Lcy .row {
  justify-content: center;
}
.cid-tXOz8y3Lcy .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-tXOz8y3Lcy .panel-group .card {
  border-radius: 0;
  border-bottom: 1px solid #212529;
  padding: 30px 0 40px;
}
.cid-tXOz8y3Lcy .panel-group .card:first-child {
  border-top: 1px solid #212529;
}
.cid-tXOz8y3Lcy .panel-group .card .card-header {
  padding: 10px 0;
  background-color: transparent;
  border: none;
}
.cid-tXOz8y3Lcy .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tXOz8y3Lcy .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-tXOz8y3Lcy .panel-group .card .card-header .panel-title .mbr-iconfont {
  font-size: 18px;
  color: #212529;
  transition: all 0.3s ease-in-out;
  margin-left: 30px;
}
.cid-tXOz8y3Lcy .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-tXOz8y3Lcy .mbr-section-btn {
  text-align: center;
}
.cid-tXOz8y3Lcy .mbr-section-btn .btn {
  text-decoration: none;
}
.cid-tXOz8y3Lcy .mbr-section-btn .btn:hover,
.cid-tXOz8y3Lcy .mbr-section-btn .btn:focus {
  opacity: .75;
}
.cid-tXOz8y3Lcy .mbr-section-title {
  color: #212529;
}
.cid-tXOz8y3Lcy .panel-title-edit {
  color: #212529;
}
.cid-tXOz8y3Lcy .panel-text {
  color: #212529;
}
.cid-tXLKaXQq8U {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #eacbcd;
}
.cid-tXLKaXQq8U .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXLKaXQq8U .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXLKaXQq8U .google-map {
  height: 30rem;
  position: relative;
}
.cid-tXLKaXQq8U .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tXLKaXQq8U .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tXLKaXQq8U .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tXLKaXQq8U .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tXLKaYpZOm {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #eacbcd;
}
.cid-tXLKaYpZOm .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXLKaYpZOm .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-tXLKaYpZOm .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tXLKaYpZOm .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-tXLKaYpZOm a {
  font-weight: 600;
}
.cid-tXLKaYpZOm a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-tXLKaYpZOm .col-lg-3,
  .cid-tXLKaYpZOm .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-tXLKaYpZOm .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-tXLKaYpZOm .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-tXLKaYpZOm h5 {
  margin: 0;
}
.cid-tXLKaYpZOm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXLKaYpZOm .iconfont-wrapper {
  position: relative;
}
.cid-tXLKaYpZOm .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-tXLKaYpZOm .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-tXLKaYpZOm .sociconfont-wrapper {
  display: flex;
}
.cid-tXLKaYpZOm .card-title,
.cid-tXLKaYpZOm .iconfont-wrapper {
  color: #1d1d1f;
}
.cid-tXLKaYpZOm .card-text {
  color: #000000;
}
.cid-tXLKaYpZOm .mbr-section-title {
  color: #000000;
}
.cid-tXLKaYpZOm .main-title,
.cid-tXLKaYpZOm .iconfont-wrapper {
  text-align: left;
}
.cid-tXLKaZkHfO {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
