body {
  font-family: 'Archivo', sans-serif;
}
.display-1 {
  font-family: 'Archivo', sans-serif;
  font-size: 4.5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.625rem;
}
.display-2 {
  font-family: 'Archivo', sans-serif;
  font-size: 2.8rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.5rem;
}
.display-4 {
  font-family: 'Archivo', sans-serif;
  font-size: 1.3rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.625rem;
}
.display-5 {
  font-family: 'Archivo', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.875rem;
}
.display-7 {
  font-family: 'Archivo', 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.6rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.15rem;
    font-size: calc( 2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.24rem;
    font-size: calc( 1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-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: #f32800 !important;
}
.bg-success {
  background-color: #c8d4f2 !important;
}
.bg-info {
  background-color: #7087c0 !important;
}
.bg-warning {
  background-color: #671555 !important;
}
.bg-danger {
  background-color: #2f0025 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #f32800 !important;
  border-color: #f32800 !important;
  color: #000000 !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: #9c1a00 !important;
  border-color: #9c1a00 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #000000 !important;
  background-color: #9c1a00 !important;
  border-color: #9c1a00 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #c3ead8 !important;
  border-color: #c3ead8 !important;
  color: #3d3d3d !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: #83d4ae !important;
  border-color: #83d4ae !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #3d3d3d !important;
  background-color: #83d4ae !important;
  border-color: #83d4ae !important;
}
.btn-info,
.btn-info:active {
  background-color: #7087c0 !important;
  border-color: #7087c0 !important;
  color: #000000 !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: #425b97 !important;
  border-color: #425b97 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #000000 !important;
  background-color: #425b97 !important;
  border-color: #425b97 !important;
}
.btn-success,
.btn-success:active {
  background-color: #c8d4f2 !important;
  border-color: #c8d4f2 !important;
  color: #444444 !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: #829de1 !important;
  border-color: #829de1 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #444444 !important;
  background-color: #829de1 !important;
  border-color: #829de1 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #671555 !important;
  border-color: #671555 !important;
  color: #000000 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #1f061a !important;
  border-color: #1f061a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #000000 !important;
  background-color: #1f061a !important;
  border-color: #1f061a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #2f0025 !important;
  border-color: #2f0025 !important;
  color: #000000 !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: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #000000 !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #666666 !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: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #666666 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-black,
.btn-black:active {
  background-color: #1d191f !important;
  border-color: #1d191f !important;
  color: #000000 !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: #000000 !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f32800;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #9c1a00 !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: #f32800 !important;
  border-color: #f32800 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #c3ead8;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #83d4ae !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #2d815a !important;
  background-color: #c3ead8 !important;
  border-color: #c3ead8 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #7087c0;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #425b97 !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: #7087c0 !important;
  border-color: #7087c0 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #c8d4f2;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #829de1 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #244597 !important;
  background-color: #c8d4f2 !important;
  border-color: #c8d4f2 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #671555;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #1f061a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #671555 !important;
  border-color: #671555 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #2f0025;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #000000 !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: #2f0025 !important;
  border-color: #2f0025 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #1d191f;
}
.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: #1d191f !important;
  border-color: #1d191f !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.text-primary {
  color: #f32800 !important;
}
.text-secondary {
  color: #c3ead8 !important;
}
.text-success {
  color: #c8d4f2 !important;
}
.text-info {
  color: #7087c0 !important;
}
.text-warning {
  color: #671555 !important;
}
.text-danger {
  color: #2f0025 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #1d191f !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #8d1700 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #77d0a7 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #7694df !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #3e548c !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #12040f !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #000000 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #cccccc !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #f32800;
}
.nav-tabs .nav-link:not(.active) {
  color: #1d191f;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #7087c0;
}
.alert-warning {
  background-color: #671555;
}
.alert-danger {
  background-color: #2f0025;
}
.mbr-gallery-filter li.active .btn {
  background-color: #f32800;
  border-color: #f32800;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #f32800;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffcac0;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #c9d1e7;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #d12bac;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ff95e8;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Archivo', sans-serif;
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.625rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #f32800 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Archivo', sans-serif;
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.625rem;
}
blockquote {
  border-color: #f32800;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #f32800;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #f32800;
}
.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: #f32800;
  border-bottom-color: #f32800;
}
.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: #f32800 !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: #c3ead8 !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='%23f32800' %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;
}
a:hover {
  background-image: none !important;
}
.container {
  max-width: 1200px;
  padding-left: 10px;
  padding-right: 10px;
}
@media (max-width: 767px) {
  .container {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.row {
  margin-left: -10px;
  margin-right: -10px;
  justify-content: center;
}
.row > [class*="col"] {
  padding-left: 10px;
  padding-right: 10px;
}
.row {
  justify-content: center;
}
.mbr-section-btn .btn {
  min-width: 120px;
  border-radius: 30px;
  padding: 12px 35px;
  line-height: 1.25;
  font-weight: 500 !important;
  box-shadow: none !important;
}
.mbr-section-btn .btn-black {
  color: #ffffff !important;
}
.mbr-section-btn .btn-black:hover {
  background-color: #535353 !important;
  border-color: #535353 !important;
  color: #ffffff !important;
}
@media (max-width: 575px) {
  .mbr-section-btn {
    width: 100%;
  }
  .mbr-section-btn .btn {
    width: 100%;
  }
}
b {
  font-weight: 600 !important;
}
.cid-t712sL0LRO {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t712sL0LRO nav.navbar {
  position: fixed;
}
.cid-t712sL0LRO .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-t712sL0LRO .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t712sL0LRO .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t712sL0LRO .dropdown-item:hover,
.cid-t712sL0LRO .dropdown-item:focus {
  background: #f32800 !important;
  color: #1d191f !important;
}
.cid-t712sL0LRO .dropdown-item:hover span {
  color: white;
}
.cid-t712sL0LRO .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t712sL0LRO .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t712sL0LRO .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t712sL0LRO .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t712sL0LRO .nav-link {
  position: relative;
}
.cid-t712sL0LRO .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t712sL0LRO .container {
    flex-wrap: nowrap;
  }
}
.cid-t712sL0LRO .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t712sL0LRO .navbar-nav {
  margin-right: auto;
}
.cid-t712sL0LRO .navbar-nav .nav-item {
  margin: 0 10px !important;
}
.cid-t712sL0LRO .navbar-nav .nav-item .nav-link {
  padding: 13px 30px !important;
  margin: 0 !important;
  border-radius: 30px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-t712sL0LRO .navbar-nav .nav-item .nav-link:hover {
    background: rgba(51, 51, 51, 0.1);
  }
}
.cid-t712sL0LRO .dropdown-menu,
.cid-t712sL0LRO .navbar.opened {
  background: #ffffff !important;
}
.cid-t712sL0LRO .nav-item:focus,
.cid-t712sL0LRO .nav-link:focus {
  outline: none;
}
.cid-t712sL0LRO .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t712sL0LRO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t712sL0LRO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t712sL0LRO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t712sL0LRO .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t712sL0LRO .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t712sL0LRO .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
  border-radius: 0 !important;
}
.cid-t712sL0LRO .navbar.opened {
  transition: all 0.3s;
}
.cid-t712sL0LRO .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t712sL0LRO .navbar .navbar-logo img {
  width: auto;
}
.cid-t712sL0LRO .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t712sL0LRO .navbar.collapsed {
  justify-content: center;
}
.cid-t712sL0LRO .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t712sL0LRO .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t712sL0LRO .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-t712sL0LRO .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t712sL0LRO .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t712sL0LRO .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-t712sL0LRO .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t712sL0LRO .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t712sL0LRO .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t712sL0LRO .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t712sL0LRO .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t712sL0LRO .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t712sL0LRO .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t712sL0LRO .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-t712sL0LRO .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t712sL0LRO .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t712sL0LRO .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t712sL0LRO .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t712sL0LRO .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t712sL0LRO .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t712sL0LRO .navbar.navbar-short {
  min-height: 60px;
}
.cid-t712sL0LRO .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t712sL0LRO .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t712sL0LRO .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 115px;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-left: 5px;
}
.cid-t712sL0LRO .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t712sL0LRO .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t712sL0LRO .dropdown-item.active,
.cid-t712sL0LRO .dropdown-item:active {
  background-color: transparent;
}
.cid-t712sL0LRO .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t712sL0LRO .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t712sL0LRO .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t712sL0LRO .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t712sL0LRO .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t712sL0LRO .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t712sL0LRO ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t712sL0LRO .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t712sL0LRO button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t712sL0LRO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #cdb2c7;
}
.cid-t712sL0LRO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t712sL0LRO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t712sL0LRO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t712sL0LRO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t712sL0LRO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t712sL0LRO nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t712sL0LRO nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t712sL0LRO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t712sL0LRO .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t712sL0LRO a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t712sL0LRO .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t712sL0LRO .navbar {
    height: 70px;
  }
  .cid-t712sL0LRO .navbar.opened {
    height: auto;
  }
  .cid-t712sL0LRO .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t712sL0LRO .mbr-section-btn {
  margin: 0 -0.6rem;
  min-width: auto;
}
.cid-t712sL0LRO .navbar-toggler {
  position: relative;
  z-index: 11;
}
@media (min-width: 768px) {
  .cid-t712sL0LRO .navbar-toggler {
    margin-right: 20px;
  }
}
@media (max-width: 991px) {
  .cid-t712sL0LRO .container,
  .cid-t712sL0LRO .container-fluid {
    flex-wrap: nowrap;
  }
  .cid-t712sL0LRO .navbar-nav {
    width: 100%;
    align-items: flex-start;
  }
  .cid-t712sL0LRO .navbar-nav .nav-item {
    width: 100%;
    margin: 0 !important;
    padding: 10px !important;
    justify-content: flex-start;
    text-align: left;
  }
  .cid-t712sL0LRO .navbar-nav .nav-item .nav-link {
    justify-content: flex-start;
    text-align: left;
    width: 100%;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0;
  }
  .cid-t712sL0LRO .icons-menu {
    padding-right: 0 !important;
    padding-top: 20px !important;
    padding-bottom: 0 !important;
  }
  .cid-t712sL0LRO .mbr-section-btn {
    width: 100%;
    margin-top: 30px;
  }
  .cid-t712sL0LRO .mbr-section-btn .btn {
    width: 100%;
  }
  .cid-t712sL0LRO .navbar-collapse {
    display: flex !important;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    position: fixed;
    background-color: #9db0de;
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 10;
    max-height: 100vh !important;
    overflow: auto;
    transition: .3s !important;
  }
  .cid-t712sL0LRO .navbar-collapse.show {
    padding: 100px 15px;
    position: fixed;
    background-color: #9db0de;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 10;
    max-height: 100vh !important;
    overflow: auto;
  }
  .cid-t712sL0LRO .navbar.collapsed .dropdown-menu .dropdown-item {
    text-align: left;
  }
}
.cid-u681iYgVAj {
  background-image: url("../../../assets/images/inflatable-rentals87-1800x1201.jpg");
}
.cid-u681iYgVAj .mbr-fallback-image.disabled {
  display: none;
}
.cid-u681iYgVAj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u681iYgVAj .mbr-text,
.cid-u681iYgVAj .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-u681iYgVAj .mbr-section-title {
  color: #ffffff;
}
.cid-u681shVfZo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u681shVfZo .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-u681shVfZo .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-u681shVfZo .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-u681shVfZo .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #6592e6;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u64vnXaNbv {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #6592e6;
  overflow: hidden;
}
.cid-u64vnXaNbv .mbr-fallback-image.disabled {
  display: none;
}
.cid-u64vnXaNbv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u64vnXaNbv .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 767px) {
  .cid-u64vnXaNbv .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-u64vnXaNbv .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-u64vnXaNbv .card-title {
  color: #212428;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-u64vnXaNbv .card-title {
    margin-bottom: 20px;
  }
}
.cid-u64vnXaNbv .card-subtitle {
  color: #212428;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-u64vnXaNbv .card-subtitle {
    margin-bottom: 20px;
  }
}
.cid-u64vnXaNbv .card-text {
  color: #212428;
  margin-bottom: 0;
}
.cid-tXLkUItu6a {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tXLkUItu6a .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXLkUItu6a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXLkUItu6a .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-tXLkUItu6a .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .cid-tXLkUItu6a .container {
    padding: 0 6px;
  }
}
.cid-tXLkUItu6a .row {
  margin: 0;
  padding: 150px;
}
@media (max-width: 1440px) {
  .cid-tXLkUItu6a .row {
    padding: 150px 32px;
  }
}
@media (max-width: 1200px) {
  .cid-tXLkUItu6a .row {
    padding: 150px 8px;
  }
}
@media (max-width: 992px) {
  .cid-tXLkUItu6a .row {
    padding: 70px 60px;
  }
}
@media (max-width: 768px) {
  .cid-tXLkUItu6a .row {
    padding: 70px 30px;
  }
}
.cid-tXLkUItu6a .row .card {
  padding: 0;
  border-radius: 0 !important;
  overflow: visible;
}
.cid-tXLkUItu6a .desc-wrapper {
  padding-right: 32px;
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-tXLkUItu6a .desc-wrapper {
    padding: 0;
  }
}
.cid-tXLkUItu6a .desc-wrapper .mbr-desc {
  padding: 10px 18px;
  display: inline-flex;
  border: 1px solid #cfcfcf;
  border-radius: 30px;
  margin-bottom: 0;
}
.cid-tXLkUItu6a .title-wrapper {
  margin-bottom: 64px;
}
.cid-tXLkUItu6a .title-wrapper span {
  color: #009472;
}
.cid-tXLkUItu6a .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tXLkUItu6a .cards-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px 40px;
}
@media (max-width: 992px) {
  .cid-tXLkUItu6a .cards-wrapper {
    display: block;
  }
}
.cid-tXLkUItu6a .cards-wrapper .item {
  position: relative;
  margin-top: 50px;
}
@media (max-width: 992px) {
  .cid-tXLkUItu6a .cards-wrapper .item {
    margin: 50px 0 100px 0;
  }
}
.cid-tXLkUItu6a .cards-wrapper .item .item-wrapper {
  padding: 0 30px 30px;
  border-radius: 16px !important;
  background-color: #6592e6;
}
@media (max-width: 992px) {
  .cid-tXLkUItu6a .cards-wrapper .item .item-wrapper {
    padding: 0 22px 22px;
  }
}
.cid-tXLkUItu6a .cards-wrapper .item .item-wrapper .item-img {
  margin-bottom: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  height: 50px;
}
.cid-tXLkUItu6a .cards-wrapper .item .item-wrapper .item-img img {
  position: absolute;
  top: -50px;
  height: 100px;
  width: 100px;
  object-fit: cover;
  border-radius: 100% !important;
  border: 10px solid #003629;
}
.cid-tXLkUItu6a .cards-wrapper .item .item-wrapper .item-content .card-title {
  margin-bottom: 10px;
}
.cid-tXLkUItu6a .cards-wrapper .item .item-wrapper .item-content .card-desc {
  margin-bottom: 10px;
}
.cid-tXLkUItu6a .cards-wrapper .item .item-wrapper .item-content .mbr-text {
  margin-bottom: 0;
}
.cid-tXLkUItu6a .cards-wrapper .item .item-wrapper .item-content .mbr-section-btn {
  margin-top: 20px;
}
.cid-tXLkUItu6a .cards-wrapper .item .item-wrapper .item-content .mbr-section-btn .btn {
  border: none;
  text-decoration: underline;
}
.cid-tXLkUItu6a .mbr-desc {
  color: #262626;
}
.cid-tXLkUItu6a .mbr-section-title {
  color: #131313;
}
.cid-tXLkUItu6a .card-desc {
  color: #003629;
  text-align: center;
}
.cid-tXLkUItu6a .card-title {
  color: #131313;
}
.cid-tXLkUItu6a .card-text {
  color: #131313;
  text-align: center;
}
.cid-tXLkUItu6a .card-title,
.cid-tXLkUItu6a .mbr-section-btn {
  text-align: center;
}
.cid-u684SBWYI1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #6592e6;
  overflow: hidden;
}
.cid-u684SBWYI1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u684SBWYI1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u684SBWYI1 .card-row {
  align-items: stretch;
}
.cid-u684SBWYI1 .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  max-width: 1000px;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  box-shadow: 10px 10px 19px #000000, -10px -10px 19px #000000;
}
@media (max-width: 767px) {
  .cid-u684SBWYI1 .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-u684SBWYI1 .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-u684SBWYI1 .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}
.cid-u684SBWYI1 .item-img img {
  width: 100%;
  aspect-ratio: 1.77777778;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-u684SBWYI1 .card-box {
  padding-top: 30px;
  width: 100%;
}
.cid-u684SBWYI1 .card-title {
  color: #C4CFDE;
  margin-bottom: 0;
}
.cid-u684SBWYI1 .card-subtitle {
  color: #000000;
  margin-bottom: 0;
  margin-top: 20px;
  text-align: center;
}
.cid-u684SBWYI1 .card-text {
  color: #878e99;
  margin-bottom: 0;
  margin-top: 40px;
}
.cid-u684SBWYI1 .mbr-section-btn {
  margin-top: 30px;
}
.cid-u684SBWYI1 .card-text,
.cid-u684SBWYI1 .mbr-section-btn {
  color: #000000;
}
.cid-t71aetn65o {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #f6f6f6;
}
.cid-t71aetn65o .mbr-fallback-image.disabled {
  display: none;
}
.cid-t71aetn65o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t71aetn65o .row {
  justify-content: center;
}
.cid-t71aetn65o .col-title {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .cid-t71aetn65o .col-title {
    margin-bottom: 20px;
  }
}
.cid-t71aetn65o .mbr-section-title {
  color: #000000;
  opacity: 0.85;
}
.cid-t71aetn65o .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-t71aetn65o .mbr-section-subtitle {
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
  }
}
.cid-t71aetn65o .card-row {
  align-items: stretch;
}
.cid-t71aetn65o .card {
  padding: 10px;
}
.cid-t71aetn65o .card-box {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  padding: 33px 38px 33px 38px;
  background-color: #ffffff;
  transition: .3s all;
  border: 2px solid #1d191f;
}
.cid-t71aetn65o .mbr-iconfont {
  display: block;
  font-size: 40px;
  color: #000000;
}
.cid-t71aetn65o .card-head {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-t71aetn65o .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  min-height: 80px;
  padding: 10px;
  margin-right: 25px;
  border-radius: 10px;
  overflow: hidden;
  background-color: #6592e6;
  transition: .3s all;
}
@media (max-width: 767px) {
  .cid-t71aetn65o .iconfont-wrapper {
    min-width: 60px;
    min-height: 60px;
    padding: 5px;
  }
}
.cid-t71aetn65o .card-wrapper {
  display: flex;
  -webkit-transition: box-shadow 200ms ease, -webkit-transform 200ms ease;
  transition: box-shadow 200ms ease, transform 200ms ease;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .cid-t71aetn65o .card-wrapper:hover {
    transform: translate(10px, -10px);
    box-shadow: -16px 16px 0 #6592e6;
  }
}
.cid-t71aetn65o .card-wrapper:hover .card-box {
  background-color: #6592e6;
}
.cid-t71aetn65o .card-wrapper:hover .iconfont-wrapper {
  background-color: #ffffff;
}
.cid-t71aetn65o .card-title {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0;
}
.cid-t71aetn65o .card-text {
  margin-top: 20px;
  color: #1d191f;
  margin-bottom: 0;
  text-align: center;
}
.cid-t71aetn65o .card-title,
.cid-t71aetn65o .iconfont-wrapper {
  text-align: center;
}
.cid-tXLhrMmYdI {
  display: flex;
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #6592e6;
}
@media (min-width: 768px) {
  .cid-tXLhrMmYdI {
    align-items: center;
  }
  .cid-tXLhrMmYdI .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tXLhrMmYdI .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tXLhrMmYdI {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tXLhrMmYdI .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tXLhrMmYdI .content-wrap {
    width: 100%;
  }
}
.cid-tXLhrMmYdI .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-tXLhrMmYdI .mbr-text,
.cid-tXLhrMmYdI .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-tXLhq9in5a {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tXLhq9in5a .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXLhq9in5a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-tXLhq9in5a .container {
    padding: 0 24px;
  }
}
.cid-tXLhq9in5a .row {
  border-top: 1px solid #000000;
}
@media (min-width: 992px) {
  .cid-tXLhq9in5a .row {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-tXLhq9in5a .row {
    border: none;
  }
}
.cid-tXLhq9in5a .row .card {
  padding: 0;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-tXLhq9in5a .row .card {
    padding: 0 16px;
  }
}
.cid-tXLhq9in5a .content-wrapper {
  padding: 32px;
  position: sticky;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tXLhq9in5a .content-wrapper {
    padding: 24px;
  }
}
.cid-tXLhq9in5a .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-tXLhq9in5a .content-wrapper .mbr-section-title {
    text-align: left;
  }
}
.cid-tXLhq9in5a .content-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tXLhq9in5a .content-wrapper .mbr-text {
    text-align: left;
  }
}
.cid-tXLhq9in5a .content-wrapper .mbr-section-btn {
  margin-top: 32px;
}
@media (max-width: 992px) {
  .cid-tXLhq9in5a .content-wrapper .mbr-section-btn {
    text-align: left;
    margin-top: 24px;
  }
}
.cid-tXLhq9in5a .panel-group .card {
  padding: 32px;
  border-top: 1px solid #000000;
  border-left: 1px solid #000000;
  border-radius: 0 !important;
  border-left: none;
  border-right: 1px solid #000000;
}
.cid-tXLhq9in5a .panel-group .card:first-child {
  border-top: none;
}
@media (max-width: 992px) {
  .cid-tXLhq9in5a .panel-group .card:first-child {
    border-top: 1px solid #000000;
  }
}
@media (max-width: 992px) {
  .cid-tXLhq9in5a .panel-group .card {
    border-right: none;
  }
}
@media (max-width: 992px) {
  .cid-tXLhq9in5a .panel-group .card {
    padding: 24px;
    border-left: none;
  }
}
.cid-tXLhq9in5a .panel-group .card .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
}
.cid-tXLhq9in5a .panel-group .card .card-header .panel-title {
  display: block;
}
.cid-tXLhq9in5a .panel-group .card .card-header .panel-title:not(.collapsed) .panel-title-edit {
  display: inline;
  padding-left: 24px;
  border-left: 1px solid #000000;
}
.cid-tXLhq9in5a .panel-group .card .card-header .panel-title .panel-title-edit {
  transition: all 0.3s ease-in-out;
  margin: 0;
}
.cid-tXLhq9in5a .panel-group .card .card-header .panel-title .panel-title-edit span {
  color: #000000;
}
.cid-tXLhq9in5a .panel-group .card .panel-collapse .panel-body {
  padding-top: 32px;
}
@media (max-width: 992px) {
  .cid-tXLhq9in5a .panel-group .card .panel-collapse .panel-body {
    padding-top: 24px;
  }
}
.cid-tXLhq9in5a .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tXLhq9in5a .mbr-section-title {
  color: #F9F6E0;
}
.cid-tXLhq9in5a .mbr-text {
  color: #F9F6E0;
  text-align: right;
}
.cid-tXLhq9in5a .panel-title-edit {
  color: #E0B548;
}
.cid-tXLhq9in5a .panel-text {
  color: #F9F6E0;
}
.cid-tXLhq9in5a .mbr-section-title,
.cid-tXLhq9in5a .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-tXLhq9in5a .panel-title-edit,
.cid-tXLhq9in5a .panel-title {
  color: #000000;
}
.cid-tXLhynZkW5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #6592e6;
}
.cid-tXLhynZkW5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXLhynZkW5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXLhynZkW5 .row {
  justify-content: flex-start;
}
.cid-tXLhynZkW5 .content-container {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  overflow: hidden;
  max-width: 1160px;
  margin: 0 auto;
  background-color: #ffffff;
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .cid-tXLhynZkW5 .content-container {
    flex-wrap: wrap;
  }
}
.cid-tXLhynZkW5 .content-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 100px 65px;
  width: 60%;
}
@media (max-width: 767px) {
  .cid-tXLhynZkW5 .content-wrap {
    width: 100%;
    padding: 40px 25px;
  }
}
.cid-tXLhynZkW5 .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40%;
  flex-grow: 1;
  height: 480px;
  border-radius: 20px 0 0 20px;
  overflow: hidden;
  border-radius: 0 20px 20px 0;
}
@media (max-width: 767px) {
  .cid-tXLhynZkW5 .image-wrapper {
    width: 100%;
    border-radius: 20px;
    height: 200px;
  }
}
.cid-tXLhynZkW5 .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tXLhynZkW5 .label-container {
  display: flex;
  align-items: center;
  width: max-content;
  padding: 2px 10px;
  margin-bottom: 10px;
  border-radius: 20px;
  background-color: #fff86d;
}
.cid-tXLhynZkW5 .label-text {
  color: #000000;
  margin: 0;
}
.cid-tXLhynZkW5 .mbr-section-title {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  width: 100%;
}
.cid-tXLhynZkW5 .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  margin-top: 15px;
  width: 100%;
}
.cid-tXLhynZkW5 .date-text {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  margin-top: 20px;
  width: 100%;
}
.cid-tXLhynZkW5 .mbr-section-btn {
  margin-top: 10px;
}
@media (min-width: 576px) {
  .cid-tXLhynZkW5 .mbr-section-btn {
    flex-grow: 1;
  }
}
.cid-t71f4epNhX {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-t71f4epNhX .mbr-fallback-image.disabled {
  display: none;
}
.cid-t71f4epNhX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t71f4epNhX .row {
  justify-content: flex-start;
}
.cid-t71f4epNhX .mbr-section-title {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  text-align: center;
}
.cid-t71f4epNhX .mbr-section-subtitle {
  color: #1d191f;
  margin-bottom: 0 !important;
  margin-top: 20px;
}
.cid-t71f4epNhX .mbr-section-subtitle,
.cid-t71f4epNhX .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-t71f4epNhX .mbr-section-subtitle,
.cid-t71f4epNhX .mbr-section-btn DIV {
  text-align: left;
}
.cid-u63oDc3Cc3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #6592e6;
}
.cid-u63oDc3Cc3 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-u63oDc3Cc3 .card-title {
  margin-bottom: 26px;
  color: #c3ead8;
}
.cid-u63oDc3Cc3 .mbr-text {
  margin-bottom: 30px;
}
.cid-u63oDc3Cc3 .iconfont-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  display: inline-block;
  text-align: center;
  width: 70px;
  height: 70px;
}
.cid-u63oDc3Cc3 .iconfont-wrapper svg {
  position: absolute;
  top: -20px;
  left: -28px;
}
.cid-u63oDc3Cc3 .iconfont-wrapper svg #grad_1 {
  stop-color: #6b3df0;
}
.cid-u63oDc3Cc3 .iconfont-wrapper svg #grad_2 {
  stop-color: #b39cf7;
}
.cid-u63oDc3Cc3 .iconfont-wrapper svg #blur_svg {
  flood-color: #6b3df0;
}
.cid-u63oDc3Cc3 .iconfont-wrapper .mbr-iconfont {
  color: #ffffff;
  font-size: 38px;
  line-height: 73px;
  position: absolute;
  top: 0;
  left: 14px;
  z-index: 5;
}
@media (min-width: 992px) {
  .cid-u63oDc3Cc3 .text-wrapper {
    padding-right: 0;
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u63oDc3Cc3 .text-wrapper {
    text-align: center;
  }
  .cid-u63oDc3Cc3 .image-wrapper {
    margin-bottom: 40px;
  }
  .cid-u63oDc3Cc3 .mbr-text {
    margin-bottom: 20px;
  }
  .cid-u63oDc3Cc3 .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-u63oDc3Cc3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u63oDc3Cc3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u63oDc3Cc3 .mbr-text,
.cid-u63oDc3Cc3 .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-u63oDc3Cc3 .card-title,
.cid-u63oDc3Cc3 .icon_block {
  color: #000000;
  text-align: center;
}
.cid-tXLumYcAyh {
  display: flex;
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .cid-tXLumYcAyh {
    align-items: center;
  }
  .cid-tXLumYcAyh .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tXLumYcAyh .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tXLumYcAyh {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tXLumYcAyh .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tXLumYcAyh .content-wrap {
    width: 100%;
  }
}
.cid-tXLumYcAyh .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-tXLumYcAyh .mbr-text,
.cid-tXLumYcAyh .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-u685zVUSZR {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u685zVUSZR .mbr-fallback-image.disabled {
  display: none;
}
.cid-u685zVUSZR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u685zVUSZR .row {
  justify-content: flex-start;
}
.cid-u685zVUSZR .content-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  min-height: 361px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 10px;
  border-radius: 20px;
  background-color: #6592e6;
}
@media (max-width: 767px) {
  .cid-u685zVUSZR .content-container {
    padding: 30px;
  }
}
.cid-u685zVUSZR .content-wrap {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.cid-u685zVUSZR .mbr-section-title {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  width: 100%;
}
.cid-u685zVUSZR .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  margin-top: 20px;
  width: 100%;
}
.cid-u685zVUSZR .mbr-section-btn {
  width: 100%;
  margin-top: 50px;
}
.cid-u685zVUSZR .mbr-section-subtitle,
.cid-u685zVUSZR .mbr-section-btn DIV {
  text-align: left;
}
.cid-u62G52vuUY {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u62G52vuUY .mbr-fallback-image.disabled {
  display: none;
}
.cid-u62G52vuUY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u62G52vuUY .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u62G52vuUY .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-u62G52vuUY .container {
    padding: 0 14px;
  }
}
.cid-u62G52vuUY .google-map iframe {
  border-radius: 0 !important;
  height: 600px;
}
@media (max-width: 992px) {
  .cid-u62G52vuUY .google-map iframe {
    height: 300px;
  }
}
.cid-tXLuXTXlDf .footer-head {
  width: 100%;
  position: relative;
  z-index: 5;
  background-color: #6592e6;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  overflow: hidden;
}
.cid-tXLuXTXlDf .img-bg {
  content: '';
  position: absolute;
  top: 0;
  right: 57%;
  bottom: 0;
  left: 0;
  background-color: #6592e6;
  border-top-right-radius: 190px;
  border-bottom-left-radius: 40px;
}
@media (max-width: 991px) {
  .cid-tXLuXTXlDf .img-bg {
    display: none;
  }
}
.cid-tXLuXTXlDf .container {
  display: flex;
  justify-content: center;
  max-width: 1160px;
}
@media (max-width: 991px) {
  .cid-tXLuXTXlDf .container {
    padding: 0 !important;
  }
}
.cid-tXLuXTXlDf .row {
  width: 100%;
  align-items: center;
}
.cid-tXLuXTXlDf .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (max-width: 991px) {
  .cid-tXLuXTXlDf .content-container {
    padding-top: 0;
    background-color: #6592e6;
  }
}
@media (max-width: 991px) {
  .cid-tXLuXTXlDf .col-brand {
    padding: 0 15px 65px 15px;
    padding-top: 5rem;
    border-bottom-left-radius: 40px;
    background-color: #6592e6;
  }
}
.cid-tXLuXTXlDf .col-links {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
}
@media (max-width: 991px) {
  .cid-tXLuXTXlDf .col-links {
    padding: 70px 15px 0 15px;
  }
}
.cid-tXLuXTXlDf .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
}
.cid-tXLuXTXlDf .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tXLuXTXlDf .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tXLuXTXlDf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tXLuXTXlDf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tXLuXTXlDf .brand-text {
  margin-top: 75px;
  margin-bottom: 0;
  color: #000000;
  opacity: 0.85;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tXLuXTXlDf .brand-text {
    margin-top: 45px;
  }
}
.cid-tXLuXTXlDf .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 10px;
}
.cid-tXLuXTXlDf .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.cid-tXLuXTXlDf .mbr-iconfont {
  font-size: 16px;
  color: #000000;
}
.cid-tXLuXTXlDf .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-tXLuXTXlDf .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tXLuXTXlDf .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
@media (max-width: 991px) {
  .cid-tXLuXTXlDf .col-link {
    width: auto !important;
    max-width: 33.33333333%;
  }
}
@media (max-width: 767px) {
  .cid-tXLuXTXlDf .col-link {
    max-width: 100%;
    width: 100% !important;
  }
}
@media (max-width: 768px) {
  .cid-tXLuXTXlDf .col-link1 {
    margin-bottom: 30px;
  }
}
.cid-tXLuXTXlDf .col-link2 {
  padding-left: 30px;
}
@media (max-width: 768px) {
  .cid-tXLuXTXlDf .col-link2 {
    padding-left: 0;
    margin-bottom: 30px;
  }
}
@media (min-width: 1200px) {
  .cid-tXLuXTXlDf .col-link3 {
    padding-left: 70px;
  }
}
@media (max-width: 991px) {
  .cid-tXLuXTXlDf .col-link3 {
    padding-left: 70px;
  }
}
@media (max-width: 768px) {
  .cid-tXLuXTXlDf .col-link3 {
    padding-left: 0;
  }
}
.cid-tXLuXTXlDf .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #1d191f;
}
.cid-tXLuXTXlDf .list li {
  display: flex;
  align-items: center;
  line-height: 1.44;
}
.cid-tXLuXTXlDf .list a {
  display: flex;
  align-items: center;
  line-height: 1.44;
}
.cid-tXLuXTXlDf .footer-copyright {
  position: relative;
  z-index: 4;
  width: 100%;
  margin-top: -40px;
  background-color: #6592e6;
}
.cid-tXLuXTXlDf .col-copyright {
  padding: 85px 0 60px 0 !important;
}
@media (max-width: 991px) {
  .cid-tXLuXTXlDf .col-copyright {
    padding: 85px 10px 60px 10px !important;
  }
}
.cid-tXLuXTXlDf .copyright {
  color: #C3EAD8;
}
@media (max-width: 991px) {
  .cid-tXLuXTXlDf .copyright {
    text-align: center !important;
  }
}
.cid-tXLb4JMc4o {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tXLb4JMc4o nav.navbar {
  position: fixed;
}
.cid-tXLb4JMc4o .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-tXLb4JMc4o .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tXLb4JMc4o .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tXLb4JMc4o .dropdown-item:hover,
.cid-tXLb4JMc4o .dropdown-item:focus {
  background: #f32800 !important;
  color: #1d191f !important;
}
.cid-tXLb4JMc4o .dropdown-item:hover span {
  color: white;
}
.cid-tXLb4JMc4o .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tXLb4JMc4o .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tXLb4JMc4o .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tXLb4JMc4o .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tXLb4JMc4o .nav-link {
  position: relative;
}
.cid-tXLb4JMc4o .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tXLb4JMc4o .container {
    flex-wrap: nowrap;
  }
}
.cid-tXLb4JMc4o .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tXLb4JMc4o .navbar-nav {
  margin-right: auto;
}
.cid-tXLb4JMc4o .navbar-nav .nav-item {
  margin: 0 10px !important;
}
.cid-tXLb4JMc4o .navbar-nav .nav-item .nav-link {
  padding: 13px 30px !important;
  margin: 0 !important;
  border-radius: 30px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-tXLb4JMc4o .navbar-nav .nav-item .nav-link:hover {
    background: rgba(51, 51, 51, 0.1);
  }
}
.cid-tXLb4JMc4o .dropdown-menu,
.cid-tXLb4JMc4o .navbar.opened {
  background: #ffffff !important;
}
.cid-tXLb4JMc4o .nav-item:focus,
.cid-tXLb4JMc4o .nav-link:focus {
  outline: none;
}
.cid-tXLb4JMc4o .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tXLb4JMc4o .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tXLb4JMc4o .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tXLb4JMc4o .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tXLb4JMc4o .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tXLb4JMc4o .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tXLb4JMc4o .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
  border-radius: 0 !important;
}
.cid-tXLb4JMc4o .navbar.opened {
  transition: all 0.3s;
}
.cid-tXLb4JMc4o .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tXLb4JMc4o .navbar .navbar-logo img {
  width: auto;
}
.cid-tXLb4JMc4o .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tXLb4JMc4o .navbar.collapsed {
  justify-content: center;
}
.cid-tXLb4JMc4o .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tXLb4JMc4o .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tXLb4JMc4o .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-tXLb4JMc4o .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tXLb4JMc4o .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tXLb4JMc4o .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-tXLb4JMc4o .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tXLb4JMc4o .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tXLb4JMc4o .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tXLb4JMc4o .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tXLb4JMc4o .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tXLb4JMc4o .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tXLb4JMc4o .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tXLb4JMc4o .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-tXLb4JMc4o .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tXLb4JMc4o .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tXLb4JMc4o .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tXLb4JMc4o .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tXLb4JMc4o .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tXLb4JMc4o .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tXLb4JMc4o .navbar.navbar-short {
  min-height: 60px;
}
.cid-tXLb4JMc4o .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tXLb4JMc4o .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tXLb4JMc4o .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 115px;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-left: 5px;
}
.cid-tXLb4JMc4o .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tXLb4JMc4o .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tXLb4JMc4o .dropdown-item.active,
.cid-tXLb4JMc4o .dropdown-item:active {
  background-color: transparent;
}
.cid-tXLb4JMc4o .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tXLb4JMc4o .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tXLb4JMc4o .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tXLb4JMc4o .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tXLb4JMc4o .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tXLb4JMc4o .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tXLb4JMc4o ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tXLb4JMc4o .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tXLb4JMc4o button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tXLb4JMc4o button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #cdb2c7;
}
.cid-tXLb4JMc4o button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tXLb4JMc4o button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXLb4JMc4o button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXLb4JMc4o button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tXLb4JMc4o nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXLb4JMc4o nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tXLb4JMc4o nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tXLb4JMc4o nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXLb4JMc4o .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tXLb4JMc4o a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tXLb4JMc4o .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tXLb4JMc4o .navbar {
    height: 70px;
  }
  .cid-tXLb4JMc4o .navbar.opened {
    height: auto;
  }
  .cid-tXLb4JMc4o .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tXLb4JMc4o .mbr-section-btn {
  margin: 0 -0.6rem;
  min-width: auto;
}
.cid-tXLb4JMc4o .navbar-toggler {
  position: relative;
  z-index: 11;
}
@media (min-width: 768px) {
  .cid-tXLb4JMc4o .navbar-toggler {
    margin-right: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tXLb4JMc4o .container,
  .cid-tXLb4JMc4o .container-fluid {
    flex-wrap: nowrap;
  }
  .cid-tXLb4JMc4o .navbar-nav {
    width: 100%;
    align-items: flex-start;
  }
  .cid-tXLb4JMc4o .navbar-nav .nav-item {
    width: 100%;
    margin: 0 !important;
    padding: 10px !important;
    justify-content: flex-start;
    text-align: left;
  }
  .cid-tXLb4JMc4o .navbar-nav .nav-item .nav-link {
    justify-content: flex-start;
    text-align: left;
    width: 100%;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0;
  }
  .cid-tXLb4JMc4o .icons-menu {
    padding-right: 0 !important;
    padding-top: 20px !important;
    padding-bottom: 0 !important;
  }
  .cid-tXLb4JMc4o .mbr-section-btn {
    width: 100%;
    margin-top: 30px;
  }
  .cid-tXLb4JMc4o .mbr-section-btn .btn {
    width: 100%;
  }
  .cid-tXLb4JMc4o .navbar-collapse {
    display: flex !important;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    position: fixed;
    background-color: #9db0de;
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 10;
    max-height: 100vh !important;
    overflow: auto;
    transition: .3s !important;
  }
  .cid-tXLb4JMc4o .navbar-collapse.show {
    padding: 100px 15px;
    position: fixed;
    background-color: #9db0de;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 10;
    max-height: 100vh !important;
    overflow: auto;
  }
  .cid-tXLb4JMc4o .navbar.collapsed .dropdown-menu .dropdown-item {
    text-align: left;
  }
}
.cid-u68mpPAuNH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-u68mpPAuNH .mbr-fallback-image.disabled {
  display: none;
}
.cid-u68mpPAuNH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u68mpPAuNH .card-row {
  align-items: stretch;
}
.cid-u68mpPAuNH .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  max-width: 1000px;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #6592e6, #6592e6);
  box-shadow: 10px 10px 19px #e4eedb, -10px -10px 19px #e4eedb;
}
@media (max-width: 767px) {
  .cid-u68mpPAuNH .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-u68mpPAuNH .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-u68mpPAuNH .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}
.cid-u68mpPAuNH .item-img img {
  width: 100%;
  aspect-ratio: 1.77777778;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-u68mpPAuNH .card-box {
  padding-top: 30px;
  width: 100%;
}
.cid-u68mpPAuNH .card-title {
  color: #C4CFDE;
  margin-bottom: 0;
}
.cid-u68mpPAuNH .card-subtitle {
  color: #000000;
  margin-bottom: 0;
  margin-top: 20px;
  text-align: center;
}
.cid-u68mpPAuNH .card-text {
  color: #878e99;
  margin-bottom: 0;
  margin-top: 40px;
}
.cid-u68mpPAuNH .mbr-section-btn {
  margin-top: 30px;
}
.cid-u68mpPAuNH .card-text,
.cid-u68mpPAuNH .mbr-section-btn {
  color: #000000;
}
.cid-tXLb4Lm7WB {
  padding-top: 1rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tXLb4Lm7WB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXLb4Lm7WB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXLb4Lm7WB .row {
  justify-content: flex-start;
}
.cid-tXLb4Lm7WB .content-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  min-height: 361px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 10px;
  border-radius: 20px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tXLb4Lm7WB .content-container {
    padding: 30px;
  }
}
.cid-tXLb4Lm7WB .content-wrap {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.cid-tXLb4Lm7WB .mbr-section-title {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  width: 100%;
}
.cid-tXLb4Lm7WB .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  margin-top: 20px;
  width: 100%;
}
.cid-tXLb4Lm7WB .mbr-section-btn {
  width: 100%;
  margin-top: 50px;
}
.cid-tXLb4Lm7WB .mbr-section-subtitle,
.cid-tXLb4Lm7WB .mbr-section-btn DIV {
  text-align: left;
}
.cid-u623Fiu5GD {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #01004c;
}
.cid-u623Fiu5GD .mbr-fallback-image.disabled {
  display: none;
}
.cid-u623Fiu5GD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u623Fiu5GD .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u623Fiu5GD .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-u623Fiu5GD .container {
    padding: 0 14px;
  }
}
.cid-u623Fiu5GD .google-map iframe {
  border-radius: 0 !important;
  height: 600px;
}
@media (max-width: 992px) {
  .cid-u623Fiu5GD .google-map iframe {
    height: 300px;
  }
}
.cid-tXLuXTXlDf .footer-head {
  width: 100%;
  position: relative;
  z-index: 5;
  background-color: #cdb2c7;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  overflow: hidden;
}
.cid-tXLuXTXlDf .img-bg {
  content: '';
  position: absolute;
  top: 0;
  right: 57%;
  bottom: 0;
  left: 0;
  background-color: #cdb2c7;
  border-top-right-radius: 190px;
  border-bottom-left-radius: 40px;
}
@media (max-width: 991px) {
  .cid-tXLuXTXlDf .img-bg {
    display: none;
  }
}
.cid-tXLuXTXlDf .container {
  display: flex;
  justify-content: center;
  max-width: 1160px;
}
@media (max-width: 991px) {
  .cid-tXLuXTXlDf .container {
    padding: 0 !important;
  }
}
.cid-tXLuXTXlDf .row {
  width: 100%;
  align-items: center;
}
.cid-tXLuXTXlDf .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (max-width: 991px) {
  .cid-tXLuXTXlDf .content-container {
    padding-top: 0;
    background-color: #cdb2c7;
  }
}
@media (max-width: 991px) {
  .cid-tXLuXTXlDf .col-brand {
    padding: 0 15px 65px 15px;
    padding-top: 5rem;
    border-bottom-left-radius: 40px;
    background-color: #cdb2c7;
  }
}
.cid-tXLuXTXlDf .col-links {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
}
@media (max-width: 991px) {
  .cid-tXLuXTXlDf .col-links {
    padding: 70px 15px 0 15px;
  }
}
.cid-tXLuXTXlDf .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
}
.cid-tXLuXTXlDf .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tXLuXTXlDf .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tXLuXTXlDf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tXLuXTXlDf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tXLuXTXlDf .brand-text {
  margin-top: 75px;
  margin-bottom: 0;
  color: #000000;
  opacity: 0.85;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tXLuXTXlDf .brand-text {
    margin-top: 45px;
  }
}
.cid-tXLuXTXlDf .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 10px;
}
.cid-tXLuXTXlDf .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.cid-tXLuXTXlDf .mbr-iconfont {
  font-size: 16px;
  color: #000000;
}
.cid-tXLuXTXlDf .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-tXLuXTXlDf .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tXLuXTXlDf .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
@media (max-width: 991px) {
  .cid-tXLuXTXlDf .col-link {
    width: auto !important;
    max-width: 33.33333333%;
  }
}
@media (max-width: 767px) {
  .cid-tXLuXTXlDf .col-link {
    max-width: 100%;
    width: 100% !important;
  }
}
@media (max-width: 768px) {
  .cid-tXLuXTXlDf .col-link1 {
    margin-bottom: 30px;
  }
}
.cid-tXLuXTXlDf .col-link2 {
  padding-left: 30px;
}
@media (max-width: 768px) {
  .cid-tXLuXTXlDf .col-link2 {
    padding-left: 0;
    margin-bottom: 30px;
  }
}
@media (min-width: 1200px) {
  .cid-tXLuXTXlDf .col-link3 {
    padding-left: 70px;
  }
}
@media (max-width: 991px) {
  .cid-tXLuXTXlDf .col-link3 {
    padding-left: 70px;
  }
}
@media (max-width: 768px) {
  .cid-tXLuXTXlDf .col-link3 {
    padding-left: 0;
  }
}
.cid-tXLuXTXlDf .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #1d191f;
}
.cid-tXLuXTXlDf .list li {
  display: flex;
  align-items: center;
  line-height: 1.44;
}
.cid-tXLuXTXlDf .list a {
  display: flex;
  align-items: center;
  line-height: 1.44;
}
.cid-tXLuXTXlDf .footer-copyright {
  position: relative;
  z-index: 4;
  width: 100%;
  margin-top: -40px;
  background-color: #cdb2c7;
}
.cid-tXLuXTXlDf .col-copyright {
  padding: 85px 0 60px 0 !important;
}
@media (max-width: 991px) {
  .cid-tXLuXTXlDf .col-copyright {
    padding: 85px 10px 60px 10px !important;
  }
}
.cid-tXLuXTXlDf .copyright {
  color: #C3EAD8;
}
@media (max-width: 991px) {
  .cid-tXLuXTXlDf .copyright {
    text-align: center !important;
  }
}
.cid-u64tsryFIR {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u64tsryFIR nav.navbar {
  position: fixed;
}
.cid-u64tsryFIR .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-u64tsryFIR .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u64tsryFIR .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u64tsryFIR .dropdown-item:hover,
.cid-u64tsryFIR .dropdown-item:focus {
  background: #f32800 !important;
  color: #1d191f !important;
}
.cid-u64tsryFIR .dropdown-item:hover span {
  color: white;
}
.cid-u64tsryFIR .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u64tsryFIR .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u64tsryFIR .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u64tsryFIR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u64tsryFIR .nav-link {
  position: relative;
}
.cid-u64tsryFIR .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u64tsryFIR .container {
    flex-wrap: nowrap;
  }
}
.cid-u64tsryFIR .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u64tsryFIR .navbar-nav {
  margin-right: auto;
}
.cid-u64tsryFIR .navbar-nav .nav-item {
  margin: 0 10px !important;
}
.cid-u64tsryFIR .navbar-nav .nav-item .nav-link {
  padding: 13px 30px !important;
  margin: 0 !important;
  border-radius: 30px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-u64tsryFIR .navbar-nav .nav-item .nav-link:hover {
    background: rgba(51, 51, 51, 0.1);
  }
}
.cid-u64tsryFIR .dropdown-menu,
.cid-u64tsryFIR .navbar.opened {
  background: #ffffff !important;
}
.cid-u64tsryFIR .nav-item:focus,
.cid-u64tsryFIR .nav-link:focus {
  outline: none;
}
.cid-u64tsryFIR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u64tsryFIR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u64tsryFIR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u64tsryFIR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u64tsryFIR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u64tsryFIR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u64tsryFIR .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
  border-radius: 0 !important;
}
.cid-u64tsryFIR .navbar.opened {
  transition: all 0.3s;
}
.cid-u64tsryFIR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u64tsryFIR .navbar .navbar-logo img {
  width: auto;
}
.cid-u64tsryFIR .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u64tsryFIR .navbar.collapsed {
  justify-content: center;
}
.cid-u64tsryFIR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u64tsryFIR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u64tsryFIR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-u64tsryFIR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u64tsryFIR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u64tsryFIR .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-u64tsryFIR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u64tsryFIR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u64tsryFIR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u64tsryFIR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u64tsryFIR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u64tsryFIR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u64tsryFIR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u64tsryFIR .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-u64tsryFIR .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u64tsryFIR .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u64tsryFIR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u64tsryFIR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u64tsryFIR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u64tsryFIR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u64tsryFIR .navbar.navbar-short {
  min-height: 60px;
}
.cid-u64tsryFIR .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u64tsryFIR .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u64tsryFIR .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 115px;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-left: 5px;
}
.cid-u64tsryFIR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u64tsryFIR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u64tsryFIR .dropdown-item.active,
.cid-u64tsryFIR .dropdown-item:active {
  background-color: transparent;
}
.cid-u64tsryFIR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u64tsryFIR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u64tsryFIR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u64tsryFIR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u64tsryFIR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u64tsryFIR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u64tsryFIR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u64tsryFIR .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u64tsryFIR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u64tsryFIR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #cdb2c7;
}
.cid-u64tsryFIR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u64tsryFIR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u64tsryFIR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u64tsryFIR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u64tsryFIR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u64tsryFIR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u64tsryFIR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u64tsryFIR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u64tsryFIR .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u64tsryFIR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u64tsryFIR .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u64tsryFIR .navbar {
    height: 70px;
  }
  .cid-u64tsryFIR .navbar.opened {
    height: auto;
  }
  .cid-u64tsryFIR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u64tsryFIR .mbr-section-btn {
  margin: 0 -0.6rem;
  min-width: auto;
}
.cid-u64tsryFIR .navbar-toggler {
  position: relative;
  z-index: 11;
}
@media (min-width: 768px) {
  .cid-u64tsryFIR .navbar-toggler {
    margin-right: 20px;
  }
}
@media (max-width: 991px) {
  .cid-u64tsryFIR .container,
  .cid-u64tsryFIR .container-fluid {
    flex-wrap: nowrap;
  }
  .cid-u64tsryFIR .navbar-nav {
    width: 100%;
    align-items: flex-start;
  }
  .cid-u64tsryFIR .navbar-nav .nav-item {
    width: 100%;
    margin: 0 !important;
    padding: 10px !important;
    justify-content: flex-start;
    text-align: left;
  }
  .cid-u64tsryFIR .navbar-nav .nav-item .nav-link {
    justify-content: flex-start;
    text-align: left;
    width: 100%;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0;
  }
  .cid-u64tsryFIR .icons-menu {
    padding-right: 0 !important;
    padding-top: 20px !important;
    padding-bottom: 0 !important;
  }
  .cid-u64tsryFIR .mbr-section-btn {
    width: 100%;
    margin-top: 30px;
  }
  .cid-u64tsryFIR .mbr-section-btn .btn {
    width: 100%;
  }
  .cid-u64tsryFIR .navbar-collapse {
    display: flex !important;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    position: fixed;
    background-color: #9db0de;
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 10;
    max-height: 100vh !important;
    overflow: auto;
    transition: .3s !important;
  }
  .cid-u64tsryFIR .navbar-collapse.show {
    padding: 100px 15px;
    position: fixed;
    background-color: #9db0de;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 10;
    max-height: 100vh !important;
    overflow: auto;
  }
  .cid-u64tsryFIR .navbar.collapsed .dropdown-menu .dropdown-item {
    text-align: left;
  }
}
.cid-u68lAiv5LC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-u68lAiv5LC .mbr-fallback-image.disabled {
  display: none;
}
.cid-u68lAiv5LC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u68lAiv5LC .card-row {
  align-items: stretch;
}
.cid-u68lAiv5LC .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  max-width: 1000px;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #6592e6, #6592e6);
  box-shadow: 10px 10px 19px #e4eedb, -10px -10px 19px #e4eedb;
}
@media (max-width: 767px) {
  .cid-u68lAiv5LC .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-u68lAiv5LC .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-u68lAiv5LC .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}
.cid-u68lAiv5LC .item-img img {
  width: 100%;
  aspect-ratio: 1.77777778;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-u68lAiv5LC .card-box {
  padding-top: 30px;
  width: 100%;
}
.cid-u68lAiv5LC .card-title {
  color: #C4CFDE;
  margin-bottom: 0;
}
.cid-u68lAiv5LC .card-subtitle {
  color: #000000;
  margin-bottom: 0;
  margin-top: 20px;
  text-align: center;
}
.cid-u68lAiv5LC .card-text {
  color: #878e99;
  margin-bottom: 0;
  margin-top: 40px;
}
.cid-u68lAiv5LC .mbr-section-btn {
  margin-top: 30px;
}
.cid-u68lAiv5LC .card-text,
.cid-u68lAiv5LC .mbr-section-btn {
  color: #000000;
}
.cid-u64tstZXoi {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u64tstZXoi .mbr-fallback-image.disabled {
  display: none;
}
.cid-u64tstZXoi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u64tstZXoi .row {
  justify-content: flex-start;
}
.cid-u64tstZXoi .content-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  min-height: 361px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 10px;
  border-radius: 20px;
}
@media (max-width: 767px) {
  .cid-u64tstZXoi .content-container {
    padding: 30px;
  }
}
.cid-u64tstZXoi .content-wrap {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.cid-u64tstZXoi .mbr-section-title {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  width: 100%;
}
.cid-u64tstZXoi .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  margin-top: 20px;
  width: 100%;
}
.cid-u64tstZXoi .mbr-section-btn {
  width: 100%;
  margin-top: 50px;
}
.cid-u64tstZXoi .mbr-section-subtitle,
.cid-u64tstZXoi .mbr-section-btn DIV {
  text-align: left;
}
.cid-u64tsK4zye {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u64tsK4zye .mbr-fallback-image.disabled {
  display: none;
}
.cid-u64tsK4zye .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u64tsK4zye .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u64tsK4zye .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-u64tsK4zye .container {
    padding: 0 14px;
  }
}
.cid-u64tsK4zye .google-map iframe {
  border-radius: 0 !important;
  height: 600px;
}
@media (max-width: 992px) {
  .cid-u64tsK4zye .google-map iframe {
    height: 300px;
  }
}
.cid-u64tsLuNoO .footer-head {
  width: 100%;
  position: relative;
  z-index: 5;
  background-color: #6592e6;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  overflow: hidden;
}
.cid-u64tsLuNoO .img-bg {
  content: '';
  position: absolute;
  top: 0;
  right: 57%;
  bottom: 0;
  left: 0;
  background-color: #6592e6;
  border-top-right-radius: 190px;
  border-bottom-left-radius: 40px;
}
@media (max-width: 991px) {
  .cid-u64tsLuNoO .img-bg {
    display: none;
  }
}
.cid-u64tsLuNoO .container {
  display: flex;
  justify-content: center;
  max-width: 1160px;
}
@media (max-width: 991px) {
  .cid-u64tsLuNoO .container {
    padding: 0 !important;
  }
}
.cid-u64tsLuNoO .row {
  width: 100%;
  align-items: center;
}
.cid-u64tsLuNoO .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (max-width: 991px) {
  .cid-u64tsLuNoO .content-container {
    padding-top: 0;
    background-color: #6592e6;
  }
}
@media (max-width: 991px) {
  .cid-u64tsLuNoO .col-brand {
    padding: 0 15px 65px 15px;
    padding-top: 5rem;
    border-bottom-left-radius: 40px;
    background-color: #6592e6;
  }
}
.cid-u64tsLuNoO .col-links {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
}
@media (max-width: 991px) {
  .cid-u64tsLuNoO .col-links {
    padding: 70px 15px 0 15px;
  }
}
.cid-u64tsLuNoO .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
}
.cid-u64tsLuNoO .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-u64tsLuNoO .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-u64tsLuNoO .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u64tsLuNoO .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u64tsLuNoO .brand-text {
  margin-top: 75px;
  margin-bottom: 0;
  color: #000000;
  opacity: 0.85;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-u64tsLuNoO .brand-text {
    margin-top: 45px;
  }
}
.cid-u64tsLuNoO .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 10px;
}
.cid-u64tsLuNoO .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.cid-u64tsLuNoO .mbr-iconfont {
  font-size: 16px;
  color: #000000;
}
.cid-u64tsLuNoO .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-u64tsLuNoO .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u64tsLuNoO .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
@media (max-width: 991px) {
  .cid-u64tsLuNoO .col-link {
    width: auto !important;
    max-width: 33.33333333%;
  }
}
@media (max-width: 767px) {
  .cid-u64tsLuNoO .col-link {
    max-width: 100%;
    width: 100% !important;
  }
}
@media (max-width: 768px) {
  .cid-u64tsLuNoO .col-link1 {
    margin-bottom: 30px;
  }
}
.cid-u64tsLuNoO .col-link2 {
  padding-left: 30px;
}
@media (max-width: 768px) {
  .cid-u64tsLuNoO .col-link2 {
    padding-left: 0;
    margin-bottom: 30px;
  }
}
@media (min-width: 1200px) {
  .cid-u64tsLuNoO .col-link3 {
    padding-left: 70px;
  }
}
@media (max-width: 991px) {
  .cid-u64tsLuNoO .col-link3 {
    padding-left: 70px;
  }
}
@media (max-width: 768px) {
  .cid-u64tsLuNoO .col-link3 {
    padding-left: 0;
  }
}
.cid-u64tsLuNoO .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #1d191f;
}
.cid-u64tsLuNoO .list li {
  display: flex;
  align-items: center;
  line-height: 1.44;
}
.cid-u64tsLuNoO .list a {
  display: flex;
  align-items: center;
  line-height: 1.44;
}
.cid-u64tsLuNoO .footer-copyright {
  position: relative;
  z-index: 4;
  width: 100%;
  margin-top: -40px;
  background-color: #6592e6;
}
.cid-u64tsLuNoO .col-copyright {
  padding: 85px 0 60px 0 !important;
}
@media (max-width: 991px) {
  .cid-u64tsLuNoO .col-copyright {
    padding: 85px 10px 60px 10px !important;
  }
}
.cid-u64tsLuNoO .copyright {
  color: #C3EAD8;
}
@media (max-width: 991px) {
  .cid-u64tsLuNoO .copyright {
    text-align: center !important;
  }
}
.cid-u68mHbbcdE {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u68mHbbcdE nav.navbar {
  position: fixed;
}
.cid-u68mHbbcdE .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-u68mHbbcdE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u68mHbbcdE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u68mHbbcdE .dropdown-item:hover,
.cid-u68mHbbcdE .dropdown-item:focus {
  background: #f32800 !important;
  color: #1d191f !important;
}
.cid-u68mHbbcdE .dropdown-item:hover span {
  color: white;
}
.cid-u68mHbbcdE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u68mHbbcdE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u68mHbbcdE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u68mHbbcdE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u68mHbbcdE .nav-link {
  position: relative;
}
.cid-u68mHbbcdE .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u68mHbbcdE .container {
    flex-wrap: nowrap;
  }
}
.cid-u68mHbbcdE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u68mHbbcdE .navbar-nav {
  margin-right: auto;
}
.cid-u68mHbbcdE .navbar-nav .nav-item {
  margin: 0 10px !important;
}
.cid-u68mHbbcdE .navbar-nav .nav-item .nav-link {
  padding: 13px 30px !important;
  margin: 0 !important;
  border-radius: 30px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-u68mHbbcdE .navbar-nav .nav-item .nav-link:hover {
    background: rgba(51, 51, 51, 0.1);
  }
}
.cid-u68mHbbcdE .dropdown-menu,
.cid-u68mHbbcdE .navbar.opened {
  background: #ffffff !important;
}
.cid-u68mHbbcdE .nav-item:focus,
.cid-u68mHbbcdE .nav-link:focus {
  outline: none;
}
.cid-u68mHbbcdE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u68mHbbcdE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u68mHbbcdE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u68mHbbcdE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u68mHbbcdE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u68mHbbcdE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u68mHbbcdE .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
  border-radius: 0 !important;
}
.cid-u68mHbbcdE .navbar.opened {
  transition: all 0.3s;
}
.cid-u68mHbbcdE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u68mHbbcdE .navbar .navbar-logo img {
  width: auto;
}
.cid-u68mHbbcdE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u68mHbbcdE .navbar.collapsed {
  justify-content: center;
}
.cid-u68mHbbcdE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u68mHbbcdE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u68mHbbcdE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-u68mHbbcdE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u68mHbbcdE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u68mHbbcdE .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-u68mHbbcdE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u68mHbbcdE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u68mHbbcdE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u68mHbbcdE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u68mHbbcdE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u68mHbbcdE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u68mHbbcdE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u68mHbbcdE .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-u68mHbbcdE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u68mHbbcdE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u68mHbbcdE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u68mHbbcdE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u68mHbbcdE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u68mHbbcdE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u68mHbbcdE .navbar.navbar-short {
  min-height: 60px;
}
.cid-u68mHbbcdE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u68mHbbcdE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u68mHbbcdE .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 115px;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-left: 5px;
}
.cid-u68mHbbcdE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u68mHbbcdE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u68mHbbcdE .dropdown-item.active,
.cid-u68mHbbcdE .dropdown-item:active {
  background-color: transparent;
}
.cid-u68mHbbcdE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u68mHbbcdE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u68mHbbcdE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u68mHbbcdE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u68mHbbcdE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u68mHbbcdE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u68mHbbcdE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u68mHbbcdE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u68mHbbcdE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u68mHbbcdE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #cdb2c7;
}
.cid-u68mHbbcdE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u68mHbbcdE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u68mHbbcdE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u68mHbbcdE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u68mHbbcdE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u68mHbbcdE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u68mHbbcdE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u68mHbbcdE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u68mHbbcdE .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u68mHbbcdE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u68mHbbcdE .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u68mHbbcdE .navbar {
    height: 70px;
  }
  .cid-u68mHbbcdE .navbar.opened {
    height: auto;
  }
  .cid-u68mHbbcdE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u68mHbbcdE .mbr-section-btn {
  margin: 0 -0.6rem;
  min-width: auto;
}
.cid-u68mHbbcdE .navbar-toggler {
  position: relative;
  z-index: 11;
}
@media (min-width: 768px) {
  .cid-u68mHbbcdE .navbar-toggler {
    margin-right: 20px;
  }
}
@media (max-width: 991px) {
  .cid-u68mHbbcdE .container,
  .cid-u68mHbbcdE .container-fluid {
    flex-wrap: nowrap;
  }
  .cid-u68mHbbcdE .navbar-nav {
    width: 100%;
    align-items: flex-start;
  }
  .cid-u68mHbbcdE .navbar-nav .nav-item {
    width: 100%;
    margin: 0 !important;
    padding: 10px !important;
    justify-content: flex-start;
    text-align: left;
  }
  .cid-u68mHbbcdE .navbar-nav .nav-item .nav-link {
    justify-content: flex-start;
    text-align: left;
    width: 100%;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0;
  }
  .cid-u68mHbbcdE .icons-menu {
    padding-right: 0 !important;
    padding-top: 20px !important;
    padding-bottom: 0 !important;
  }
  .cid-u68mHbbcdE .mbr-section-btn {
    width: 100%;
    margin-top: 30px;
  }
  .cid-u68mHbbcdE .mbr-section-btn .btn {
    width: 100%;
  }
  .cid-u68mHbbcdE .navbar-collapse {
    display: flex !important;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    position: fixed;
    background-color: #9db0de;
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 10;
    max-height: 100vh !important;
    overflow: auto;
    transition: .3s !important;
  }
  .cid-u68mHbbcdE .navbar-collapse.show {
    padding: 100px 15px;
    position: fixed;
    background-color: #9db0de;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 10;
    max-height: 100vh !important;
    overflow: auto;
  }
  .cid-u68mHbbcdE .navbar.collapsed .dropdown-menu .dropdown-item {
    text-align: left;
  }
}
.cid-u68mHcvv3d {
  background-image: url("../../../assets/images/bounce-house-rentals7-2000x1333.jpg");
}
.cid-u68mHcvv3d .mbr-fallback-image.disabled {
  display: none;
}
.cid-u68mHcvv3d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u68mHcvv3d .mbr-text,
.cid-u68mHcvv3d .mbr-section-btn {
  text-align: left;
}
.cid-u68mHdzjTF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u68mHdzjTF .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-u68mHdzjTF .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-u68mHdzjTF .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-u68mHdzjTF .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #6592e6;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u68mHetaLd {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #6592e6;
  overflow: hidden;
}
.cid-u68mHetaLd .mbr-fallback-image.disabled {
  display: none;
}
.cid-u68mHetaLd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u68mHetaLd .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 767px) {
  .cid-u68mHetaLd .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-u68mHetaLd .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-u68mHetaLd .card-title {
  color: #212428;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-u68mHetaLd .card-title {
    margin-bottom: 20px;
  }
}
.cid-u68mHetaLd .card-subtitle {
  color: #212428;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-u68mHetaLd .card-subtitle {
    margin-bottom: 20px;
  }
}
.cid-u68mHetaLd .card-text {
  color: #212428;
  margin-bottom: 0;
}
.cid-u68mHfCr9h {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u68mHfCr9h .mbr-fallback-image.disabled {
  display: none;
}
.cid-u68mHfCr9h .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u68mHfCr9h .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-u68mHfCr9h .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .cid-u68mHfCr9h .container {
    padding: 0 6px;
  }
}
.cid-u68mHfCr9h .row {
  margin: 0;
  padding: 150px;
}
@media (max-width: 1440px) {
  .cid-u68mHfCr9h .row {
    padding: 150px 32px;
  }
}
@media (max-width: 1200px) {
  .cid-u68mHfCr9h .row {
    padding: 150px 8px;
  }
}
@media (max-width: 992px) {
  .cid-u68mHfCr9h .row {
    padding: 70px 60px;
  }
}
@media (max-width: 768px) {
  .cid-u68mHfCr9h .row {
    padding: 70px 30px;
  }
}
.cid-u68mHfCr9h .row .card {
  padding: 0;
  border-radius: 0 !important;
  overflow: visible;
}
.cid-u68mHfCr9h .desc-wrapper {
  padding-right: 32px;
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-u68mHfCr9h .desc-wrapper {
    padding: 0;
  }
}
.cid-u68mHfCr9h .desc-wrapper .mbr-desc {
  padding: 10px 18px;
  display: inline-flex;
  border: 1px solid #cfcfcf;
  border-radius: 30px;
  margin-bottom: 0;
}
.cid-u68mHfCr9h .title-wrapper {
  margin-bottom: 64px;
}
.cid-u68mHfCr9h .title-wrapper span {
  color: #009472;
}
.cid-u68mHfCr9h .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-u68mHfCr9h .cards-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px 40px;
}
@media (max-width: 992px) {
  .cid-u68mHfCr9h .cards-wrapper {
    display: block;
  }
}
.cid-u68mHfCr9h .cards-wrapper .item {
  position: relative;
  margin-top: 50px;
}
@media (max-width: 992px) {
  .cid-u68mHfCr9h .cards-wrapper .item {
    margin: 50px 0 100px 0;
  }
}
.cid-u68mHfCr9h .cards-wrapper .item .item-wrapper {
  padding: 0 30px 30px;
  border-radius: 16px !important;
  background-color: #6592e6;
}
@media (max-width: 992px) {
  .cid-u68mHfCr9h .cards-wrapper .item .item-wrapper {
    padding: 0 22px 22px;
  }
}
.cid-u68mHfCr9h .cards-wrapper .item .item-wrapper .item-img {
  margin-bottom: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  height: 50px;
}
.cid-u68mHfCr9h .cards-wrapper .item .item-wrapper .item-img img {
  position: absolute;
  top: -50px;
  height: 100px;
  width: 100px;
  object-fit: cover;
  border-radius: 100% !important;
  border: 10px solid #003629;
}
.cid-u68mHfCr9h .cards-wrapper .item .item-wrapper .item-content .card-title {
  margin-bottom: 10px;
}
.cid-u68mHfCr9h .cards-wrapper .item .item-wrapper .item-content .card-desc {
  margin-bottom: 10px;
}
.cid-u68mHfCr9h .cards-wrapper .item .item-wrapper .item-content .mbr-text {
  margin-bottom: 0;
}
.cid-u68mHfCr9h .cards-wrapper .item .item-wrapper .item-content .mbr-section-btn {
  margin-top: 20px;
}
.cid-u68mHfCr9h .cards-wrapper .item .item-wrapper .item-content .mbr-section-btn .btn {
  border: none;
  text-decoration: underline;
}
.cid-u68mHfCr9h .mbr-desc {
  color: #262626;
}
.cid-u68mHfCr9h .mbr-section-title {
  color: #131313;
}
.cid-u68mHfCr9h .card-desc {
  color: #003629;
  text-align: center;
}
.cid-u68mHfCr9h .card-title {
  color: #131313;
}
.cid-u68mHfCr9h .card-text {
  color: #131313;
  text-align: center;
}
.cid-u68mHfCr9h .card-title,
.cid-u68mHfCr9h .mbr-section-btn {
  text-align: center;
}
.cid-u68mHgR09p {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #6592e6;
  overflow: hidden;
}
.cid-u68mHgR09p .mbr-fallback-image.disabled {
  display: none;
}
.cid-u68mHgR09p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u68mHgR09p .card-row {
  align-items: stretch;
}
.cid-u68mHgR09p .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  max-width: 1000px;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  box-shadow: 10px 10px 19px #000000, -10px -10px 19px #000000;
}
@media (max-width: 767px) {
  .cid-u68mHgR09p .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-u68mHgR09p .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-u68mHgR09p .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}
.cid-u68mHgR09p .item-img img {
  width: 100%;
  aspect-ratio: 1.77777778;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-u68mHgR09p .card-box {
  padding-top: 30px;
  width: 100%;
}
.cid-u68mHgR09p .card-title {
  color: #C4CFDE;
  margin-bottom: 0;
}
.cid-u68mHgR09p .card-subtitle {
  color: #000000;
  margin-bottom: 0;
  margin-top: 20px;
  text-align: center;
}
.cid-u68mHgR09p .card-text {
  color: #878e99;
  margin-bottom: 0;
  margin-top: 40px;
}
.cid-u68mHgR09p .mbr-section-btn {
  margin-top: 30px;
}
.cid-u68mHgR09p .card-text,
.cid-u68mHgR09p .mbr-section-btn {
  color: #000000;
}
.cid-u68mHi20yE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #f6f6f6;
}
.cid-u68mHi20yE .mbr-fallback-image.disabled {
  display: none;
}
.cid-u68mHi20yE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u68mHi20yE .row {
  justify-content: center;
}
.cid-u68mHi20yE .col-title {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .cid-u68mHi20yE .col-title {
    margin-bottom: 20px;
  }
}
.cid-u68mHi20yE .mbr-section-title {
  color: #000000;
  opacity: 0.85;
}
.cid-u68mHi20yE .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-u68mHi20yE .mbr-section-subtitle {
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
  }
}
.cid-u68mHi20yE .card-row {
  align-items: stretch;
}
.cid-u68mHi20yE .card {
  padding: 10px;
}
.cid-u68mHi20yE .card-box {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  padding: 33px 38px 33px 38px;
  background-color: #ffffff;
  transition: .3s all;
  border: 2px solid #1d191f;
}
.cid-u68mHi20yE .mbr-iconfont {
  display: block;
  font-size: 40px;
  color: #000000;
}
.cid-u68mHi20yE .card-head {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-u68mHi20yE .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  min-height: 80px;
  padding: 10px;
  margin-right: 25px;
  border-radius: 10px;
  overflow: hidden;
  background-color: #6592e6;
  transition: .3s all;
}
@media (max-width: 767px) {
  .cid-u68mHi20yE .iconfont-wrapper {
    min-width: 60px;
    min-height: 60px;
    padding: 5px;
  }
}
.cid-u68mHi20yE .card-wrapper {
  display: flex;
  -webkit-transition: box-shadow 200ms ease, -webkit-transform 200ms ease;
  transition: box-shadow 200ms ease, transform 200ms ease;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .cid-u68mHi20yE .card-wrapper:hover {
    transform: translate(10px, -10px);
    box-shadow: -16px 16px 0 #6592e6;
  }
}
.cid-u68mHi20yE .card-wrapper:hover .card-box {
  background-color: #6592e6;
}
.cid-u68mHi20yE .card-wrapper:hover .iconfont-wrapper {
  background-color: #ffffff;
}
.cid-u68mHi20yE .card-title {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0;
}
.cid-u68mHi20yE .card-text {
  margin-top: 20px;
  color: #1d191f;
  margin-bottom: 0;
  text-align: center;
}
.cid-u68mHi20yE .card-title,
.cid-u68mHi20yE .iconfont-wrapper {
  text-align: center;
}
.cid-u68mHjilZj {
  display: flex;
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #6592e6;
}
@media (min-width: 768px) {
  .cid-u68mHjilZj {
    align-items: center;
  }
  .cid-u68mHjilZj .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-u68mHjilZj .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-u68mHjilZj {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-u68mHjilZj .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-u68mHjilZj .content-wrap {
    width: 100%;
  }
}
.cid-u68mHjilZj .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-u68mHjilZj .mbr-text,
.cid-u68mHjilZj .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-u68mHkqGgR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u68mHkqGgR .mbr-fallback-image.disabled {
  display: none;
}
.cid-u68mHkqGgR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-u68mHkqGgR .container {
    padding: 0 24px;
  }
}
.cid-u68mHkqGgR .row {
  border-top: 1px solid #000000;
}
@media (min-width: 992px) {
  .cid-u68mHkqGgR .row {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-u68mHkqGgR .row {
    border: none;
  }
}
.cid-u68mHkqGgR .row .card {
  padding: 0;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-u68mHkqGgR .row .card {
    padding: 0 16px;
  }
}
.cid-u68mHkqGgR .content-wrapper {
  padding: 32px;
  position: sticky;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u68mHkqGgR .content-wrapper {
    padding: 24px;
  }
}
.cid-u68mHkqGgR .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-u68mHkqGgR .content-wrapper .mbr-section-title {
    text-align: left;
  }
}
.cid-u68mHkqGgR .content-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-u68mHkqGgR .content-wrapper .mbr-text {
    text-align: left;
  }
}
.cid-u68mHkqGgR .content-wrapper .mbr-section-btn {
  margin-top: 32px;
}
@media (max-width: 992px) {
  .cid-u68mHkqGgR .content-wrapper .mbr-section-btn {
    text-align: left;
    margin-top: 24px;
  }
}
.cid-u68mHkqGgR .panel-group .card {
  padding: 32px;
  border-top: 1px solid #000000;
  border-left: 1px solid #000000;
  border-radius: 0 !important;
  border-left: none;
  border-right: 1px solid #000000;
}
.cid-u68mHkqGgR .panel-group .card:first-child {
  border-top: none;
}
@media (max-width: 992px) {
  .cid-u68mHkqGgR .panel-group .card:first-child {
    border-top: 1px solid #000000;
  }
}
@media (max-width: 992px) {
  .cid-u68mHkqGgR .panel-group .card {
    border-right: none;
  }
}
@media (max-width: 992px) {
  .cid-u68mHkqGgR .panel-group .card {
    padding: 24px;
    border-left: none;
  }
}
.cid-u68mHkqGgR .panel-group .card .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
}
.cid-u68mHkqGgR .panel-group .card .card-header .panel-title {
  display: block;
}
.cid-u68mHkqGgR .panel-group .card .card-header .panel-title:not(.collapsed) .panel-title-edit {
  display: inline;
  padding-left: 24px;
  border-left: 1px solid #000000;
}
.cid-u68mHkqGgR .panel-group .card .card-header .panel-title .panel-title-edit {
  transition: all 0.3s ease-in-out;
  margin: 0;
}
.cid-u68mHkqGgR .panel-group .card .card-header .panel-title .panel-title-edit span {
  color: #000000;
}
.cid-u68mHkqGgR .panel-group .card .panel-collapse .panel-body {
  padding-top: 32px;
}
@media (max-width: 992px) {
  .cid-u68mHkqGgR .panel-group .card .panel-collapse .panel-body {
    padding-top: 24px;
  }
}
.cid-u68mHkqGgR .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-u68mHkqGgR .mbr-section-title {
  color: #F9F6E0;
}
.cid-u68mHkqGgR .mbr-text {
  color: #F9F6E0;
  text-align: right;
}
.cid-u68mHkqGgR .panel-title-edit {
  color: #E0B548;
}
.cid-u68mHkqGgR .panel-text {
  color: #F9F6E0;
}
.cid-u68mHkqGgR .mbr-section-title,
.cid-u68mHkqGgR .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-u68mHkqGgR .panel-title-edit,
.cid-u68mHkqGgR .panel-title {
  color: #000000;
}
.cid-u68mHlTX8V {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #6592e6;
}
.cid-u68mHlTX8V .mbr-fallback-image.disabled {
  display: none;
}
.cid-u68mHlTX8V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u68mHlTX8V .row {
  justify-content: flex-start;
}
.cid-u68mHlTX8V .content-container {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  overflow: hidden;
  max-width: 1160px;
  margin: 0 auto;
  background-color: #ffffff;
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .cid-u68mHlTX8V .content-container {
    flex-wrap: wrap;
  }
}
.cid-u68mHlTX8V .content-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 100px 65px;
  width: 60%;
}
@media (max-width: 767px) {
  .cid-u68mHlTX8V .content-wrap {
    width: 100%;
    padding: 40px 25px;
  }
}
.cid-u68mHlTX8V .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40%;
  flex-grow: 1;
  height: 480px;
  border-radius: 20px 0 0 20px;
  overflow: hidden;
  border-radius: 0 20px 20px 0;
}
@media (max-width: 767px) {
  .cid-u68mHlTX8V .image-wrapper {
    width: 100%;
    border-radius: 20px;
    height: 200px;
  }
}
.cid-u68mHlTX8V .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-u68mHlTX8V .label-container {
  display: flex;
  align-items: center;
  width: max-content;
  padding: 2px 10px;
  margin-bottom: 10px;
  border-radius: 20px;
  background-color: #fff86d;
}
.cid-u68mHlTX8V .label-text {
  color: #000000;
  margin: 0;
}
.cid-u68mHlTX8V .mbr-section-title {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  width: 100%;
}
.cid-u68mHlTX8V .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  margin-top: 15px;
  width: 100%;
}
.cid-u68mHlTX8V .date-text {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  margin-top: 20px;
  width: 100%;
}
.cid-u68mHlTX8V .mbr-section-btn {
  margin-top: 10px;
}
@media (min-width: 576px) {
  .cid-u68mHlTX8V .mbr-section-btn {
    flex-grow: 1;
  }
}
.cid-u68mHmNOAr {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u68mHmNOAr .mbr-fallback-image.disabled {
  display: none;
}
.cid-u68mHmNOAr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u68mHmNOAr .row {
  justify-content: flex-start;
}
.cid-u68mHmNOAr .mbr-section-title {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  text-align: center;
}
.cid-u68mHmNOAr .mbr-section-subtitle {
  color: #1d191f;
  margin-bottom: 0 !important;
  margin-top: 20px;
}
.cid-u68mHmNOAr .mbr-section-subtitle,
.cid-u68mHmNOAr .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-u68mHmNOAr .mbr-section-subtitle,
.cid-u68mHmNOAr .mbr-section-btn DIV {
  text-align: left;
}
.cid-u68mHnWPrC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #6592e6;
}
.cid-u68mHnWPrC .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-u68mHnWPrC .card-title {
  margin-bottom: 26px;
  color: #c3ead8;
}
.cid-u68mHnWPrC .mbr-text {
  margin-bottom: 30px;
}
.cid-u68mHnWPrC .iconfont-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  display: inline-block;
  text-align: center;
  width: 70px;
  height: 70px;
}
.cid-u68mHnWPrC .iconfont-wrapper svg {
  position: absolute;
  top: -20px;
  left: -28px;
}
.cid-u68mHnWPrC .iconfont-wrapper svg #grad_1 {
  stop-color: #6b3df0;
}
.cid-u68mHnWPrC .iconfont-wrapper svg #grad_2 {
  stop-color: #b39cf7;
}
.cid-u68mHnWPrC .iconfont-wrapper svg #blur_svg {
  flood-color: #6b3df0;
}
.cid-u68mHnWPrC .iconfont-wrapper .mbr-iconfont {
  color: #ffffff;
  font-size: 38px;
  line-height: 73px;
  position: absolute;
  top: 0;
  left: 14px;
  z-index: 5;
}
@media (min-width: 992px) {
  .cid-u68mHnWPrC .text-wrapper {
    padding-right: 0;
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u68mHnWPrC .text-wrapper {
    text-align: center;
  }
  .cid-u68mHnWPrC .image-wrapper {
    margin-bottom: 40px;
  }
  .cid-u68mHnWPrC .mbr-text {
    margin-bottom: 20px;
  }
  .cid-u68mHnWPrC .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-u68mHnWPrC .mbr-fallback-image.disabled {
  display: none;
}
.cid-u68mHnWPrC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u68mHnWPrC .mbr-text,
.cid-u68mHnWPrC .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-u68mHnWPrC .card-title,
.cid-u68mHnWPrC .icon_block {
  color: #000000;
  text-align: center;
}
.cid-u68mHoWbJC {
  display: flex;
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .cid-u68mHoWbJC {
    align-items: center;
  }
  .cid-u68mHoWbJC .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-u68mHoWbJC .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-u68mHoWbJC {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-u68mHoWbJC .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-u68mHoWbJC .content-wrap {
    width: 100%;
  }
}
.cid-u68mHoWbJC .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-u68mHoWbJC .mbr-text,
.cid-u68mHoWbJC .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-u68mHq1YN0 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u68mHq1YN0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u68mHq1YN0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u68mHq1YN0 .row {
  justify-content: flex-start;
}
.cid-u68mHq1YN0 .content-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  min-height: 361px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 10px;
  border-radius: 20px;
  background-color: #6592e6;
}
@media (max-width: 767px) {
  .cid-u68mHq1YN0 .content-container {
    padding: 30px;
  }
}
.cid-u68mHq1YN0 .content-wrap {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.cid-u68mHq1YN0 .mbr-section-title {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  width: 100%;
}
.cid-u68mHq1YN0 .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  margin-top: 20px;
  width: 100%;
}
.cid-u68mHq1YN0 .mbr-section-btn {
  width: 100%;
  margin-top: 50px;
}
.cid-u68mHq1YN0 .mbr-section-subtitle,
.cid-u68mHq1YN0 .mbr-section-btn DIV {
  text-align: left;
}
.cid-u68QSJEN81 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u68QSJEN81 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u68QSJEN81 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u68QSJEN81 .container-fluid {
  padding: 0 70px;
}
@media (max-width: 1440px) {
  .cid-u68QSJEN81 .container-fluid {
    padding: 0 48px;
  }
}
@media (max-width: 992px) {
  .cid-u68QSJEN81 .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-u68QSJEN81 .container {
    padding: 0 20px;
  }
}
.cid-u68QSJEN81 .desc-wrapper .mbr-desc {
  margin-bottom: 30px;
}
.cid-u68QSJEN81 .panel-group .card {
  border-bottom: 1px solid #dfe6ea;
  border-radius: 0 !important;
  padding: 40px 0;
}
.cid-u68QSJEN81 .panel-group .card:first-child {
  border-top: 1px solid #dfe6ea;
}
.cid-u68QSJEN81 .panel-group .card .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
}
.cid-u68QSJEN81 .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-u68QSJEN81 .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  color: #ffffff;
}
.cid-u68QSJEN81 .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper::before {
  transform: scale(1);
}
.cid-u68QSJEN81 .panel-group .card .card-header .panel-title .panel-wrap {
  display: flex;
  align-items: center;
  width: 80%;
}
@media (max-width: 992px) {
  .cid-u68QSJEN81 .panel-group .card .card-header .panel-title .panel-wrap {
    width: 100%;
  }
}
.cid-u68QSJEN81 .panel-group .card .card-header .panel-title .panel-wrap .panel-number {
  min-width: 210px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-u68QSJEN81 .panel-group .card .card-header .panel-title .panel-wrap .panel-number {
    display: none;
  }
}
.cid-u68QSJEN81 .panel-group .card .card-header .panel-title .panel-wrap .panel-title-edit {
  width: 100%;
  margin-bottom: 0;
}
.cid-u68QSJEN81 .panel-group .card .card-header .panel-title .icon-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  min-width: 55px;
  background-color: #6592e6;
  transition: all 0.3s ease-in-out;
  margin-left: 10px;
  border-radius: 100%;
}
.cid-u68QSJEN81 .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  position: relative;
  z-index: 1;
  font-size: 16px;
  color: #000000;
  transition: all 0.3s ease-in-out;
}
.cid-u68QSJEN81 .panel-group .card .card-header .panel-title .icon-wrapper::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-color: #000000;
  transform: scale(0);
  transition: all 0.3s ease-in-out;
  pointer-events: none;
}
.cid-u68QSJEN81 .panel-group .card .panel-collapse .panel-body {
  display: flex;
  padding-top: 40px;
}
.cid-u68QSJEN81 .panel-group .card .panel-collapse .panel-body .panel-padding {
  min-width: 210px;
}
@media (max-width: 992px) {
  .cid-u68QSJEN81 .panel-group .card .panel-collapse .panel-body .panel-padding {
    display: none;
  }
}
.cid-u68QSJEN81 .panel-group .card .panel-collapse .panel-body .panel-text {
  width: 60%;
  margin-bottom: 0;
}
.cid-u68QSJEN81 .mbr-desc {
  color: #000000;
}
.cid-u68QSJEN81 .panel-number {
  color: #000000;
}
.cid-u68QSJEN81 .panel-title-edit {
  color: #000000;
}
.cid-u68QSJEN81 .panel-text {
  color: #000000;
}
.cid-u68mHr3SkZ {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u68mHr3SkZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-u68mHr3SkZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u68mHr3SkZ .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u68mHr3SkZ .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-u68mHr3SkZ .container {
    padding: 0 14px;
  }
}
.cid-u68mHr3SkZ .google-map iframe {
  border-radius: 0 !important;
  height: 600px;
}
@media (max-width: 992px) {
  .cid-u68mHr3SkZ .google-map iframe {
    height: 300px;
  }
}
.cid-u68mHssuSo .footer-head {
  width: 100%;
  position: relative;
  z-index: 5;
  background-color: #6592e6;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  overflow: hidden;
}
.cid-u68mHssuSo .img-bg {
  content: '';
  position: absolute;
  top: 0;
  right: 57%;
  bottom: 0;
  left: 0;
  background-color: #6592e6;
  border-top-right-radius: 190px;
  border-bottom-left-radius: 40px;
}
@media (max-width: 991px) {
  .cid-u68mHssuSo .img-bg {
    display: none;
  }
}
.cid-u68mHssuSo .container {
  display: flex;
  justify-content: center;
  max-width: 1160px;
}
@media (max-width: 991px) {
  .cid-u68mHssuSo .container {
    padding: 0 !important;
  }
}
.cid-u68mHssuSo .row {
  width: 100%;
  align-items: center;
}
.cid-u68mHssuSo .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (max-width: 991px) {
  .cid-u68mHssuSo .content-container {
    padding-top: 0;
    background-color: #6592e6;
  }
}
@media (max-width: 991px) {
  .cid-u68mHssuSo .col-brand {
    padding: 0 15px 65px 15px;
    padding-top: 5rem;
    border-bottom-left-radius: 40px;
    background-color: #6592e6;
  }
}
.cid-u68mHssuSo .col-links {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
}
@media (max-width: 991px) {
  .cid-u68mHssuSo .col-links {
    padding: 70px 15px 0 15px;
  }
}
.cid-u68mHssuSo .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
}
.cid-u68mHssuSo .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-u68mHssuSo .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-u68mHssuSo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u68mHssuSo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u68mHssuSo .brand-text {
  margin-top: 75px;
  margin-bottom: 0;
  color: #000000;
  opacity: 0.85;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-u68mHssuSo .brand-text {
    margin-top: 45px;
  }
}
.cid-u68mHssuSo .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 10px;
}
.cid-u68mHssuSo .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.cid-u68mHssuSo .mbr-iconfont {
  font-size: 16px;
  color: #000000;
}
.cid-u68mHssuSo .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-u68mHssuSo .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u68mHssuSo .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
@media (max-width: 991px) {
  .cid-u68mHssuSo .col-link {
    width: auto !important;
    max-width: 33.33333333%;
  }
}
@media (max-width: 767px) {
  .cid-u68mHssuSo .col-link {
    max-width: 100%;
    width: 100% !important;
  }
}
@media (max-width: 768px) {
  .cid-u68mHssuSo .col-link1 {
    margin-bottom: 30px;
  }
}
.cid-u68mHssuSo .col-link2 {
  padding-left: 30px;
}
@media (max-width: 768px) {
  .cid-u68mHssuSo .col-link2 {
    padding-left: 0;
    margin-bottom: 30px;
  }
}
@media (min-width: 1200px) {
  .cid-u68mHssuSo .col-link3 {
    padding-left: 70px;
  }
}
@media (max-width: 991px) {
  .cid-u68mHssuSo .col-link3 {
    padding-left: 70px;
  }
}
@media (max-width: 768px) {
  .cid-u68mHssuSo .col-link3 {
    padding-left: 0;
  }
}
.cid-u68mHssuSo .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #1d191f;
}
.cid-u68mHssuSo .list li {
  display: flex;
  align-items: center;
  line-height: 1.44;
}
.cid-u68mHssuSo .list a {
  display: flex;
  align-items: center;
  line-height: 1.44;
}
.cid-u68mHssuSo .footer-copyright {
  position: relative;
  z-index: 4;
  width: 100%;
  margin-top: -40px;
  background-color: #6592e6;
}
.cid-u68mHssuSo .col-copyright {
  padding: 85px 0 60px 0 !important;
}
@media (max-width: 991px) {
  .cid-u68mHssuSo .col-copyright {
    padding: 85px 10px 60px 10px !important;
  }
}
.cid-u68mHssuSo .copyright {
  color: #C3EAD8;
}
@media (max-width: 991px) {
  .cid-u68mHssuSo .copyright {
    text-align: center !important;
  }
}
.cid-u68oOX6YZ0 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u68oOX6YZ0 nav.navbar {
  position: fixed;
}
.cid-u68oOX6YZ0 .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-u68oOX6YZ0 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u68oOX6YZ0 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u68oOX6YZ0 .dropdown-item:hover,
.cid-u68oOX6YZ0 .dropdown-item:focus {
  background: #f32800 !important;
  color: #1d191f !important;
}
.cid-u68oOX6YZ0 .dropdown-item:hover span {
  color: white;
}
.cid-u68oOX6YZ0 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u68oOX6YZ0 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u68oOX6YZ0 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u68oOX6YZ0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u68oOX6YZ0 .nav-link {
  position: relative;
}
.cid-u68oOX6YZ0 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u68oOX6YZ0 .container {
    flex-wrap: nowrap;
  }
}
.cid-u68oOX6YZ0 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u68oOX6YZ0 .navbar-nav {
  margin-right: auto;
}
.cid-u68oOX6YZ0 .navbar-nav .nav-item {
  margin: 0 10px !important;
}
.cid-u68oOX6YZ0 .navbar-nav .nav-item .nav-link {
  padding: 13px 30px !important;
  margin: 0 !important;
  border-radius: 30px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-u68oOX6YZ0 .navbar-nav .nav-item .nav-link:hover {
    background: rgba(51, 51, 51, 0.1);
  }
}
.cid-u68oOX6YZ0 .dropdown-menu,
.cid-u68oOX6YZ0 .navbar.opened {
  background: #ffffff !important;
}
.cid-u68oOX6YZ0 .nav-item:focus,
.cid-u68oOX6YZ0 .nav-link:focus {
  outline: none;
}
.cid-u68oOX6YZ0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u68oOX6YZ0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u68oOX6YZ0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u68oOX6YZ0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u68oOX6YZ0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u68oOX6YZ0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u68oOX6YZ0 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
  border-radius: 0 !important;
}
.cid-u68oOX6YZ0 .navbar.opened {
  transition: all 0.3s;
}
.cid-u68oOX6YZ0 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u68oOX6YZ0 .navbar .navbar-logo img {
  width: auto;
}
.cid-u68oOX6YZ0 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u68oOX6YZ0 .navbar.collapsed {
  justify-content: center;
}
.cid-u68oOX6YZ0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u68oOX6YZ0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u68oOX6YZ0 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-u68oOX6YZ0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u68oOX6YZ0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u68oOX6YZ0 .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-u68oOX6YZ0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u68oOX6YZ0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u68oOX6YZ0 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u68oOX6YZ0 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u68oOX6YZ0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u68oOX6YZ0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u68oOX6YZ0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u68oOX6YZ0 .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-u68oOX6YZ0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u68oOX6YZ0 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u68oOX6YZ0 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u68oOX6YZ0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u68oOX6YZ0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u68oOX6YZ0 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u68oOX6YZ0 .navbar.navbar-short {
  min-height: 60px;
}
.cid-u68oOX6YZ0 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u68oOX6YZ0 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u68oOX6YZ0 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 115px;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-left: 5px;
}
.cid-u68oOX6YZ0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u68oOX6YZ0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u68oOX6YZ0 .dropdown-item.active,
.cid-u68oOX6YZ0 .dropdown-item:active {
  background-color: transparent;
}
.cid-u68oOX6YZ0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u68oOX6YZ0 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u68oOX6YZ0 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u68oOX6YZ0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u68oOX6YZ0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u68oOX6YZ0 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u68oOX6YZ0 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u68oOX6YZ0 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u68oOX6YZ0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u68oOX6YZ0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #cdb2c7;
}
.cid-u68oOX6YZ0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u68oOX6YZ0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u68oOX6YZ0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u68oOX6YZ0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u68oOX6YZ0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u68oOX6YZ0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u68oOX6YZ0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u68oOX6YZ0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u68oOX6YZ0 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u68oOX6YZ0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u68oOX6YZ0 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u68oOX6YZ0 .navbar {
    height: 70px;
  }
  .cid-u68oOX6YZ0 .navbar.opened {
    height: auto;
  }
  .cid-u68oOX6YZ0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u68oOX6YZ0 .mbr-section-btn {
  margin: 0 -0.6rem;
  min-width: auto;
}
.cid-u68oOX6YZ0 .navbar-toggler {
  position: relative;
  z-index: 11;
}
@media (min-width: 768px) {
  .cid-u68oOX6YZ0 .navbar-toggler {
    margin-right: 20px;
  }
}
@media (max-width: 991px) {
  .cid-u68oOX6YZ0 .container,
  .cid-u68oOX6YZ0 .container-fluid {
    flex-wrap: nowrap;
  }
  .cid-u68oOX6YZ0 .navbar-nav {
    width: 100%;
    align-items: flex-start;
  }
  .cid-u68oOX6YZ0 .navbar-nav .nav-item {
    width: 100%;
    margin: 0 !important;
    padding: 10px !important;
    justify-content: flex-start;
    text-align: left;
  }
  .cid-u68oOX6YZ0 .navbar-nav .nav-item .nav-link {
    justify-content: flex-start;
    text-align: left;
    width: 100%;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0;
  }
  .cid-u68oOX6YZ0 .icons-menu {
    padding-right: 0 !important;
    padding-top: 20px !important;
    padding-bottom: 0 !important;
  }
  .cid-u68oOX6YZ0 .mbr-section-btn {
    width: 100%;
    margin-top: 30px;
  }
  .cid-u68oOX6YZ0 .mbr-section-btn .btn {
    width: 100%;
  }
  .cid-u68oOX6YZ0 .navbar-collapse {
    display: flex !important;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    position: fixed;
    background-color: #9db0de;
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 10;
    max-height: 100vh !important;
    overflow: auto;
    transition: .3s !important;
  }
  .cid-u68oOX6YZ0 .navbar-collapse.show {
    padding: 100px 15px;
    position: fixed;
    background-color: #9db0de;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 10;
    max-height: 100vh !important;
    overflow: auto;
  }
  .cid-u68oOX6YZ0 .navbar.collapsed .dropdown-menu .dropdown-item {
    text-align: left;
  }
}
.cid-u68oOZlgTg {
  background-image: url("../../../assets/images/inflatable-rentals45-612x408.jpg");
}
.cid-u68oOZlgTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-u68oOZlgTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u68oOZlgTg .mbr-text,
.cid-u68oOZlgTg .mbr-section-btn {
  text-align: left;
}
.cid-u68oP0Zmya {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u68oP0Zmya .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-u68oP0Zmya .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-u68oP0Zmya .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-u68oP0Zmya .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #6592e6;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u68oP1EcsW {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #6592e6;
  overflow: hidden;
}
.cid-u68oP1EcsW .mbr-fallback-image.disabled {
  display: none;
}
.cid-u68oP1EcsW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u68oP1EcsW .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 767px) {
  .cid-u68oP1EcsW .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-u68oP1EcsW .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-u68oP1EcsW .card-title {
  color: #212428;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-u68oP1EcsW .card-title {
    margin-bottom: 20px;
  }
}
.cid-u68oP1EcsW .card-subtitle {
  color: #212428;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-u68oP1EcsW .card-subtitle {
    margin-bottom: 20px;
  }
}
.cid-u68oP1EcsW .card-text {
  color: #212428;
  margin-bottom: 0;
}
.cid-u68oP2CZxg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u68oP2CZxg .mbr-fallback-image.disabled {
  display: none;
}
.cid-u68oP2CZxg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u68oP2CZxg .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-u68oP2CZxg .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .cid-u68oP2CZxg .container {
    padding: 0 6px;
  }
}
.cid-u68oP2CZxg .row {
  margin: 0;
  padding: 150px;
}
@media (max-width: 1440px) {
  .cid-u68oP2CZxg .row {
    padding: 150px 32px;
  }
}
@media (max-width: 1200px) {
  .cid-u68oP2CZxg .row {
    padding: 150px 8px;
  }
}
@media (max-width: 992px) {
  .cid-u68oP2CZxg .row {
    padding: 70px 60px;
  }
}
@media (max-width: 768px) {
  .cid-u68oP2CZxg .row {
    padding: 70px 30px;
  }
}
.cid-u68oP2CZxg .row .card {
  padding: 0;
  border-radius: 0 !important;
  overflow: visible;
}
.cid-u68oP2CZxg .desc-wrapper {
  padding-right: 32px;
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-u68oP2CZxg .desc-wrapper {
    padding: 0;
  }
}
.cid-u68oP2CZxg .desc-wrapper .mbr-desc {
  padding: 10px 18px;
  display: inline-flex;
  border: 1px solid #cfcfcf;
  border-radius: 30px;
  margin-bottom: 0;
}
.cid-u68oP2CZxg .title-wrapper {
  margin-bottom: 64px;
}
.cid-u68oP2CZxg .title-wrapper span {
  color: #009472;
}
.cid-u68oP2CZxg .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-u68oP2CZxg .cards-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px 40px;
}
@media (max-width: 992px) {
  .cid-u68oP2CZxg .cards-wrapper {
    display: block;
  }
}
.cid-u68oP2CZxg .cards-wrapper .item {
  position: relative;
  margin-top: 50px;
}
@media (max-width: 992px) {
  .cid-u68oP2CZxg .cards-wrapper .item {
    margin: 50px 0 100px 0;
  }
}
.cid-u68oP2CZxg .cards-wrapper .item .item-wrapper {
  padding: 0 30px 30px;
  border-radius: 16px !important;
  background-color: #6592e6;
}
@media (max-width: 992px) {
  .cid-u68oP2CZxg .cards-wrapper .item .item-wrapper {
    padding: 0 22px 22px;
  }
}
.cid-u68oP2CZxg .cards-wrapper .item .item-wrapper .item-img {
  margin-bottom: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  height: 50px;
}
.cid-u68oP2CZxg .cards-wrapper .item .item-wrapper .item-img img {
  position: absolute;
  top: -50px;
  height: 100px;
  width: 100px;
  object-fit: cover;
  border-radius: 100% !important;
  border: 10px solid #003629;
}
.cid-u68oP2CZxg .cards-wrapper .item .item-wrapper .item-content .card-title {
  margin-bottom: 10px;
}
.cid-u68oP2CZxg .cards-wrapper .item .item-wrapper .item-content .card-desc {
  margin-bottom: 10px;
}
.cid-u68oP2CZxg .cards-wrapper .item .item-wrapper .item-content .mbr-text {
  margin-bottom: 0;
}
.cid-u68oP2CZxg .cards-wrapper .item .item-wrapper .item-content .mbr-section-btn {
  margin-top: 20px;
}
.cid-u68oP2CZxg .cards-wrapper .item .item-wrapper .item-content .mbr-section-btn .btn {
  border: none;
  text-decoration: underline;
}
.cid-u68oP2CZxg .mbr-desc {
  color: #262626;
}
.cid-u68oP2CZxg .mbr-section-title {
  color: #131313;
}
.cid-u68oP2CZxg .card-desc {
  color: #003629;
  text-align: center;
}
.cid-u68oP2CZxg .card-title {
  color: #131313;
}
.cid-u68oP2CZxg .card-text {
  color: #131313;
  text-align: center;
}
.cid-u68oP2CZxg .card-title,
.cid-u68oP2CZxg .mbr-section-btn {
  text-align: center;
}
.cid-u68oP3Lqdp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #6592e6;
  overflow: hidden;
}
.cid-u68oP3Lqdp .mbr-fallback-image.disabled {
  display: none;
}
.cid-u68oP3Lqdp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u68oP3Lqdp .card-row {
  align-items: stretch;
}
.cid-u68oP3Lqdp .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  max-width: 1000px;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  box-shadow: 10px 10px 19px #000000, -10px -10px 19px #000000;
}
@media (max-width: 767px) {
  .cid-u68oP3Lqdp .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-u68oP3Lqdp .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-u68oP3Lqdp .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}
.cid-u68oP3Lqdp .item-img img {
  width: 100%;
  aspect-ratio: 1.77777778;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-u68oP3Lqdp .card-box {
  padding-top: 30px;
  width: 100%;
}
.cid-u68oP3Lqdp .card-title {
  color: #C4CFDE;
  margin-bottom: 0;
}
.cid-u68oP3Lqdp .card-subtitle {
  color: #000000;
  margin-bottom: 0;
  margin-top: 20px;
  text-align: center;
}
.cid-u68oP3Lqdp .card-text {
  color: #878e99;
  margin-bottom: 0;
  margin-top: 40px;
}
.cid-u68oP3Lqdp .mbr-section-btn {
  margin-top: 30px;
}
.cid-u68oP3Lqdp .card-text,
.cid-u68oP3Lqdp .mbr-section-btn {
  color: #000000;
}
.cid-u68oP4JcNq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #f6f6f6;
}
.cid-u68oP4JcNq .mbr-fallback-image.disabled {
  display: none;
}
.cid-u68oP4JcNq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u68oP4JcNq .row {
  justify-content: center;
}
.cid-u68oP4JcNq .col-title {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .cid-u68oP4JcNq .col-title {
    margin-bottom: 20px;
  }
}
.cid-u68oP4JcNq .mbr-section-title {
  color: #000000;
  opacity: 0.85;
}
.cid-u68oP4JcNq .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-u68oP4JcNq .mbr-section-subtitle {
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
  }
}
.cid-u68oP4JcNq .card-row {
  align-items: stretch;
}
.cid-u68oP4JcNq .card {
  padding: 10px;
}
.cid-u68oP4JcNq .card-box {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  padding: 33px 38px 33px 38px;
  background-color: #ffffff;
  transition: .3s all;
  border: 2px solid #1d191f;
}
.cid-u68oP4JcNq .mbr-iconfont {
  display: block;
  font-size: 40px;
  color: #000000;
}
.cid-u68oP4JcNq .card-head {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-u68oP4JcNq .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  min-height: 80px;
  padding: 10px;
  margin-right: 25px;
  border-radius: 10px;
  overflow: hidden;
  background-color: #6592e6;
  transition: .3s all;
}
@media (max-width: 767px) {
  .cid-u68oP4JcNq .iconfont-wrapper {
    min-width: 60px;
    min-height: 60px;
    padding: 5px;
  }
}
.cid-u68oP4JcNq .card-wrapper {
  display: flex;
  -webkit-transition: box-shadow 200ms ease, -webkit-transform 200ms ease;
  transition: box-shadow 200ms ease, transform 200ms ease;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .cid-u68oP4JcNq .card-wrapper:hover {
    transform: translate(10px, -10px);
    box-shadow: -16px 16px 0 #6592e6;
  }
}
.cid-u68oP4JcNq .card-wrapper:hover .card-box {
  background-color: #6592e6;
}
.cid-u68oP4JcNq .card-wrapper:hover .iconfont-wrapper {
  background-color: #ffffff;
}
.cid-u68oP4JcNq .card-title {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0;
}
.cid-u68oP4JcNq .card-text {
  margin-top: 20px;
  color: #1d191f;
  margin-bottom: 0;
  text-align: center;
}
.cid-u68oP4JcNq .card-title,
.cid-u68oP4JcNq .iconfont-wrapper {
  text-align: center;
}
.cid-u68oP62qCY {
  display: flex;
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #6592e6;
}
@media (min-width: 768px) {
  .cid-u68oP62qCY {
    align-items: center;
  }
  .cid-u68oP62qCY .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-u68oP62qCY .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-u68oP62qCY {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-u68oP62qCY .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-u68oP62qCY .content-wrap {
    width: 100%;
  }
}
.cid-u68oP62qCY .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-u68oP62qCY .mbr-text,
.cid-u68oP62qCY .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-u68oP75cSv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u68oP75cSv .mbr-fallback-image.disabled {
  display: none;
}
.cid-u68oP75cSv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-u68oP75cSv .container {
    padding: 0 24px;
  }
}
.cid-u68oP75cSv .row {
  border-top: 1px solid #000000;
}
@media (min-width: 992px) {
  .cid-u68oP75cSv .row {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-u68oP75cSv .row {
    border: none;
  }
}
.cid-u68oP75cSv .row .card {
  padding: 0;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-u68oP75cSv .row .card {
    padding: 0 16px;
  }
}
.cid-u68oP75cSv .content-wrapper {
  padding: 32px;
  position: sticky;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u68oP75cSv .content-wrapper {
    padding: 24px;
  }
}
.cid-u68oP75cSv .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-u68oP75cSv .content-wrapper .mbr-section-title {
    text-align: left;
  }
}
.cid-u68oP75cSv .content-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-u68oP75cSv .content-wrapper .mbr-text {
    text-align: left;
  }
}
.cid-u68oP75cSv .content-wrapper .mbr-section-btn {
  margin-top: 32px;
}
@media (max-width: 992px) {
  .cid-u68oP75cSv .content-wrapper .mbr-section-btn {
    text-align: left;
    margin-top: 24px;
  }
}
.cid-u68oP75cSv .panel-group .card {
  padding: 32px;
  border-top: 1px solid #000000;
  border-left: 1px solid #000000;
  border-radius: 0 !important;
  border-left: none;
  border-right: 1px solid #000000;
}
.cid-u68oP75cSv .panel-group .card:first-child {
  border-top: none;
}
@media (max-width: 992px) {
  .cid-u68oP75cSv .panel-group .card:first-child {
    border-top: 1px solid #000000;
  }
}
@media (max-width: 992px) {
  .cid-u68oP75cSv .panel-group .card {
    border-right: none;
  }
}
@media (max-width: 992px) {
  .cid-u68oP75cSv .panel-group .card {
    padding: 24px;
    border-left: none;
  }
}
.cid-u68oP75cSv .panel-group .card .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
}
.cid-u68oP75cSv .panel-group .card .card-header .panel-title {
  display: block;
}
.cid-u68oP75cSv .panel-group .card .card-header .panel-title:not(.collapsed) .panel-title-edit {
  display: inline;
  padding-left: 24px;
  border-left: 1px solid #000000;
}
.cid-u68oP75cSv .panel-group .card .card-header .panel-title .panel-title-edit {
  transition: all 0.3s ease-in-out;
  margin: 0;
}
.cid-u68oP75cSv .panel-group .card .card-header .panel-title .panel-title-edit span {
  color: #000000;
}
.cid-u68oP75cSv .panel-group .card .panel-collapse .panel-body {
  padding-top: 32px;
}
@media (max-width: 992px) {
  .cid-u68oP75cSv .panel-group .card .panel-collapse .panel-body {
    padding-top: 24px;
  }
}
.cid-u68oP75cSv .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-u68oP75cSv .mbr-section-title {
  color: #F9F6E0;
}
.cid-u68oP75cSv .mbr-text {
  color: #F9F6E0;
  text-align: right;
}
.cid-u68oP75cSv .panel-title-edit {
  color: #E0B548;
}
.cid-u68oP75cSv .panel-text {
  color: #F9F6E0;
}
.cid-u68oP75cSv .mbr-section-title,
.cid-u68oP75cSv .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-u68oP75cSv .panel-title-edit,
.cid-u68oP75cSv .panel-title {
  color: #000000;
}
.cid-u68oP8FePs {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #6592e6;
}
.cid-u68oP8FePs .mbr-fallback-image.disabled {
  display: none;
}
.cid-u68oP8FePs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u68oP8FePs .row {
  justify-content: flex-start;
}
.cid-u68oP8FePs .content-container {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  overflow: hidden;
  max-width: 1160px;
  margin: 0 auto;
  background-color: #ffffff;
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .cid-u68oP8FePs .content-container {
    flex-wrap: wrap;
  }
}
.cid-u68oP8FePs .content-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 100px 65px;
  width: 60%;
}
@media (max-width: 767px) {
  .cid-u68oP8FePs .content-wrap {
    width: 100%;
    padding: 40px 25px;
  }
}
.cid-u68oP8FePs .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40%;
  flex-grow: 1;
  height: 480px;
  border-radius: 20px 0 0 20px;
  overflow: hidden;
  border-radius: 0 20px 20px 0;
}
@media (max-width: 767px) {
  .cid-u68oP8FePs .image-wrapper {
    width: 100%;
    border-radius: 20px;
    height: 200px;
  }
}
.cid-u68oP8FePs .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-u68oP8FePs .label-container {
  display: flex;
  align-items: center;
  width: max-content;
  padding: 2px 10px;
  margin-bottom: 10px;
  border-radius: 20px;
  background-color: #fff86d;
}
.cid-u68oP8FePs .label-text {
  color: #000000;
  margin: 0;
}
.cid-u68oP8FePs .mbr-section-title {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  width: 100%;
}
.cid-u68oP8FePs .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  margin-top: 15px;
  width: 100%;
}
.cid-u68oP8FePs .date-text {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  margin-top: 20px;
  width: 100%;
}
.cid-u68oP8FePs .mbr-section-btn {
  margin-top: 10px;
}
@media (min-width: 576px) {
  .cid-u68oP8FePs .mbr-section-btn {
    flex-grow: 1;
  }
}
.cid-u68qRPe77A {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #6592e6;
}
.cid-u68qRPe77A .mbr-fallback-image.disabled {
  display: none;
}
.cid-u68qRPe77A .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-u68qRPe77A .container {
    padding: 0 30px;
  }
}
.cid-u68qRPe77A .row {
  justify-content: center;
}
.cid-u68qRPe77A .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-u68qRPe77A .video-block .video-wrapper iframe {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-u68qRPe77A .video-block .video-wrapper iframe {
    height: 300px;
  }
}
.cid-u68qRPe77A .video-block .video-wrapper .app-video-wrapper::before {
  color: #cd9d88;
  text-shadow: none;
}
.cid-u68qRPe77A .video-block .video-wrapper .app-video-wrapper img {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-u68qRPe77A .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-u68qRPe77A .mbr-section-title {
  color: #212529;
  text-align: center;
}
.cid-u68oP9JUKv {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u68oP9JUKv .mbr-fallback-image.disabled {
  display: none;
}
.cid-u68oP9JUKv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u68oP9JUKv .row {
  justify-content: flex-start;
}
.cid-u68oP9JUKv .mbr-section-title {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  text-align: center;
}
.cid-u68oP9JUKv .mbr-section-subtitle {
  color: #1d191f;
  margin-bottom: 0 !important;
  margin-top: 20px;
}
.cid-u68oP9JUKv .mbr-section-subtitle,
.cid-u68oP9JUKv .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-u68oP9JUKv .mbr-section-subtitle,
.cid-u68oP9JUKv .mbr-section-btn DIV {
  text-align: left;
}
.cid-u68oPb0sBN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #6592e6;
}
.cid-u68oPb0sBN .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-u68oPb0sBN .card-title {
  margin-bottom: 26px;
  color: #c3ead8;
}
.cid-u68oPb0sBN .mbr-text {
  margin-bottom: 30px;
}
.cid-u68oPb0sBN .iconfont-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  display: inline-block;
  text-align: center;
  width: 70px;
  height: 70px;
}
.cid-u68oPb0sBN .iconfont-wrapper svg {
  position: absolute;
  top: -20px;
  left: -28px;
}
.cid-u68oPb0sBN .iconfont-wrapper svg #grad_1 {
  stop-color: #6b3df0;
}
.cid-u68oPb0sBN .iconfont-wrapper svg #grad_2 {
  stop-color: #b39cf7;
}
.cid-u68oPb0sBN .iconfont-wrapper svg #blur_svg {
  flood-color: #6b3df0;
}
.cid-u68oPb0sBN .iconfont-wrapper .mbr-iconfont {
  color: #ffffff;
  font-size: 38px;
  line-height: 73px;
  position: absolute;
  top: 0;
  left: 14px;
  z-index: 5;
}
@media (min-width: 992px) {
  .cid-u68oPb0sBN .text-wrapper {
    padding-right: 0;
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u68oPb0sBN .text-wrapper {
    text-align: center;
  }
  .cid-u68oPb0sBN .image-wrapper {
    margin-bottom: 40px;
  }
  .cid-u68oPb0sBN .mbr-text {
    margin-bottom: 20px;
  }
  .cid-u68oPb0sBN .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-u68oPb0sBN .mbr-fallback-image.disabled {
  display: none;
}
.cid-u68oPb0sBN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u68oPb0sBN .mbr-text,
.cid-u68oPb0sBN .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-u68oPb0sBN .card-title,
.cid-u68oPb0sBN .icon_block {
  color: #000000;
  text-align: center;
}
.cid-u68oPc75Fc {
  display: flex;
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .cid-u68oPc75Fc {
    align-items: center;
  }
  .cid-u68oPc75Fc .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-u68oPc75Fc .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-u68oPc75Fc {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-u68oPc75Fc .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-u68oPc75Fc .content-wrap {
    width: 100%;
  }
}
.cid-u68oPc75Fc .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-u68oPc75Fc .mbr-text,
.cid-u68oPc75Fc .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-u68oPdulwS {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u68oPdulwS .mbr-fallback-image.disabled {
  display: none;
}
.cid-u68oPdulwS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u68oPdulwS .row {
  justify-content: flex-start;
}
.cid-u68oPdulwS .content-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  min-height: 361px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 10px;
  border-radius: 20px;
  background-color: #6592e6;
}
@media (max-width: 767px) {
  .cid-u68oPdulwS .content-container {
    padding: 30px;
  }
}
.cid-u68oPdulwS .content-wrap {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.cid-u68oPdulwS .mbr-section-title {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  width: 100%;
}
.cid-u68oPdulwS .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  margin-top: 20px;
  width: 100%;
}
.cid-u68oPdulwS .mbr-section-btn {
  width: 100%;
  margin-top: 50px;
}
.cid-u68oPdulwS .mbr-section-subtitle,
.cid-u68oPdulwS .mbr-section-btn DIV {
  text-align: left;
}
.cid-u68Sw2Xack {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u68Sw2Xack .mbr-fallback-image.disabled {
  display: none;
}
.cid-u68Sw2Xack .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u68Sw2Xack .container-fluid {
  padding: 0 70px;
}
@media (max-width: 1440px) {
  .cid-u68Sw2Xack .container-fluid {
    padding: 0 48px;
  }
}
@media (max-width: 992px) {
  .cid-u68Sw2Xack .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-u68Sw2Xack .container {
    padding: 0 20px;
  }
}
.cid-u68Sw2Xack .desc-wrapper .mbr-desc {
  margin-bottom: 30px;
}
.cid-u68Sw2Xack .panel-group .card {
  border-bottom: 1px solid #dfe6ea;
  border-radius: 0 !important;
  padding: 40px 0;
}
.cid-u68Sw2Xack .panel-group .card:first-child {
  border-top: 1px solid #dfe6ea;
}
.cid-u68Sw2Xack .panel-group .card .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
}
.cid-u68Sw2Xack .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-u68Sw2Xack .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  color: #ffffff;
}
.cid-u68Sw2Xack .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper::before {
  transform: scale(1);
}
.cid-u68Sw2Xack .panel-group .card .card-header .panel-title .panel-wrap {
  display: flex;
  align-items: center;
  width: 80%;
}
@media (max-width: 992px) {
  .cid-u68Sw2Xack .panel-group .card .card-header .panel-title .panel-wrap {
    width: 100%;
  }
}
.cid-u68Sw2Xack .panel-group .card .card-header .panel-title .panel-wrap .panel-number {
  min-width: 210px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-u68Sw2Xack .panel-group .card .card-header .panel-title .panel-wrap .panel-number {
    display: none;
  }
}
.cid-u68Sw2Xack .panel-group .card .card-header .panel-title .panel-wrap .panel-title-edit {
  width: 100%;
  margin-bottom: 0;
}
.cid-u68Sw2Xack .panel-group .card .card-header .panel-title .icon-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  min-width: 55px;
  background-color: #6592e6;
  transition: all 0.3s ease-in-out;
  margin-left: 10px;
  border-radius: 100%;
}
.cid-u68Sw2Xack .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  position: relative;
  z-index: 1;
  font-size: 16px;
  color: #000000;
  transition: all 0.3s ease-in-out;
}
.cid-u68Sw2Xack .panel-group .card .card-header .panel-title .icon-wrapper::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-color: #000000;
  transform: scale(0);
  transition: all 0.3s ease-in-out;
  pointer-events: none;
}
.cid-u68Sw2Xack .panel-group .card .panel-collapse .panel-body {
  display: flex;
  padding-top: 40px;
}
.cid-u68Sw2Xack .panel-group .card .panel-collapse .panel-body .panel-padding {
  min-width: 210px;
}
@media (max-width: 992px) {
  .cid-u68Sw2Xack .panel-group .card .panel-collapse .panel-body .panel-padding {
    display: none;
  }
}
.cid-u68Sw2Xack .panel-group .card .panel-collapse .panel-body .panel-text {
  width: 60%;
  margin-bottom: 0;
}
.cid-u68Sw2Xack .mbr-desc {
  color: #000000;
}
.cid-u68Sw2Xack .panel-number {
  color: #000000;
}
.cid-u68Sw2Xack .panel-title-edit {
  color: #000000;
}
.cid-u68Sw2Xack .panel-text {
  color: #000000;
}
.cid-u68oPeIpu7 {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u68oPeIpu7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u68oPeIpu7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u68oPeIpu7 .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u68oPeIpu7 .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-u68oPeIpu7 .container {
    padding: 0 14px;
  }
}
.cid-u68oPeIpu7 .google-map iframe {
  border-radius: 0 !important;
  height: 600px;
}
@media (max-width: 992px) {
  .cid-u68oPeIpu7 .google-map iframe {
    height: 300px;
  }
}
.cid-u68oPfYE11 .footer-head {
  width: 100%;
  position: relative;
  z-index: 5;
  background-color: #6592e6;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  overflow: hidden;
}
.cid-u68oPfYE11 .img-bg {
  content: '';
  position: absolute;
  top: 0;
  right: 57%;
  bottom: 0;
  left: 0;
  background-color: #6592e6;
  border-top-right-radius: 190px;
  border-bottom-left-radius: 40px;
}
@media (max-width: 991px) {
  .cid-u68oPfYE11 .img-bg {
    display: none;
  }
}
.cid-u68oPfYE11 .container {
  display: flex;
  justify-content: center;
  max-width: 1160px;
}
@media (max-width: 991px) {
  .cid-u68oPfYE11 .container {
    padding: 0 !important;
  }
}
.cid-u68oPfYE11 .row {
  width: 100%;
  align-items: center;
}
.cid-u68oPfYE11 .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (max-width: 991px) {
  .cid-u68oPfYE11 .content-container {
    padding-top: 0;
    background-color: #6592e6;
  }
}
@media (max-width: 991px) {
  .cid-u68oPfYE11 .col-brand {
    padding: 0 15px 65px 15px;
    padding-top: 5rem;
    border-bottom-left-radius: 40px;
    background-color: #6592e6;
  }
}
.cid-u68oPfYE11 .col-links {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
}
@media (max-width: 991px) {
  .cid-u68oPfYE11 .col-links {
    padding: 70px 15px 0 15px;
  }
}
.cid-u68oPfYE11 .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
}
.cid-u68oPfYE11 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-u68oPfYE11 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-u68oPfYE11 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u68oPfYE11 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u68oPfYE11 .brand-text {
  margin-top: 75px;
  margin-bottom: 0;
  color: #000000;
  opacity: 0.85;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-u68oPfYE11 .brand-text {
    margin-top: 45px;
  }
}
.cid-u68oPfYE11 .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 10px;
}
.cid-u68oPfYE11 .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.cid-u68oPfYE11 .mbr-iconfont {
  font-size: 16px;
  color: #000000;
}
.cid-u68oPfYE11 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-u68oPfYE11 .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u68oPfYE11 .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
@media (max-width: 991px) {
  .cid-u68oPfYE11 .col-link {
    width: auto !important;
    max-width: 33.33333333%;
  }
}
@media (max-width: 767px) {
  .cid-u68oPfYE11 .col-link {
    max-width: 100%;
    width: 100% !important;
  }
}
@media (max-width: 768px) {
  .cid-u68oPfYE11 .col-link1 {
    margin-bottom: 30px;
  }
}
.cid-u68oPfYE11 .col-link2 {
  padding-left: 30px;
}
@media (max-width: 768px) {
  .cid-u68oPfYE11 .col-link2 {
    padding-left: 0;
    margin-bottom: 30px;
  }
}
@media (min-width: 1200px) {
  .cid-u68oPfYE11 .col-link3 {
    padding-left: 70px;
  }
}
@media (max-width: 991px) {
  .cid-u68oPfYE11 .col-link3 {
    padding-left: 70px;
  }
}
@media (max-width: 768px) {
  .cid-u68oPfYE11 .col-link3 {
    padding-left: 0;
  }
}
.cid-u68oPfYE11 .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #1d191f;
}
.cid-u68oPfYE11 .list li {
  display: flex;
  align-items: center;
  line-height: 1.44;
}
.cid-u68oPfYE11 .list a {
  display: flex;
  align-items: center;
  line-height: 1.44;
}
.cid-u68oPfYE11 .footer-copyright {
  position: relative;
  z-index: 4;
  width: 100%;
  margin-top: -40px;
  background-color: #6592e6;
}
.cid-u68oPfYE11 .col-copyright {
  padding: 85px 0 60px 0 !important;
}
@media (max-width: 991px) {
  .cid-u68oPfYE11 .col-copyright {
    padding: 85px 10px 60px 10px !important;
  }
}
.cid-u68oPfYE11 .copyright {
  color: #C3EAD8;
}
@media (max-width: 991px) {
  .cid-u68oPfYE11 .copyright {
    text-align: center !important;
  }
}
.cid-u68qxQMkw3 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u68qxQMkw3 nav.navbar {
  position: fixed;
}
.cid-u68qxQMkw3 .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-u68qxQMkw3 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u68qxQMkw3 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u68qxQMkw3 .dropdown-item:hover,
.cid-u68qxQMkw3 .dropdown-item:focus {
  background: #f32800 !important;
  color: #1d191f !important;
}
.cid-u68qxQMkw3 .dropdown-item:hover span {
  color: white;
}
.cid-u68qxQMkw3 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u68qxQMkw3 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u68qxQMkw3 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u68qxQMkw3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u68qxQMkw3 .nav-link {
  position: relative;
}
.cid-u68qxQMkw3 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u68qxQMkw3 .container {
    flex-wrap: nowrap;
  }
}
.cid-u68qxQMkw3 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u68qxQMkw3 .navbar-nav {
  margin-right: auto;
}
.cid-u68qxQMkw3 .navbar-nav .nav-item {
  margin: 0 10px !important;
}
.cid-u68qxQMkw3 .navbar-nav .nav-item .nav-link {
  padding: 13px 30px !important;
  margin: 0 !important;
  border-radius: 30px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-u68qxQMkw3 .navbar-nav .nav-item .nav-link:hover {
    background: rgba(51, 51, 51, 0.1);
  }
}
.cid-u68qxQMkw3 .dropdown-menu,
.cid-u68qxQMkw3 .navbar.opened {
  background: #ffffff !important;
}
.cid-u68qxQMkw3 .nav-item:focus,
.cid-u68qxQMkw3 .nav-link:focus {
  outline: none;
}
.cid-u68qxQMkw3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u68qxQMkw3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u68qxQMkw3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u68qxQMkw3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u68qxQMkw3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u68qxQMkw3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u68qxQMkw3 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
  border-radius: 0 !important;
}
.cid-u68qxQMkw3 .navbar.opened {
  transition: all 0.3s;
}
.cid-u68qxQMkw3 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u68qxQMkw3 .navbar .navbar-logo img {
  width: auto;
}
.cid-u68qxQMkw3 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u68qxQMkw3 .navbar.collapsed {
  justify-content: center;
}
.cid-u68qxQMkw3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u68qxQMkw3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u68qxQMkw3 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-u68qxQMkw3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u68qxQMkw3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u68qxQMkw3 .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-u68qxQMkw3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u68qxQMkw3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u68qxQMkw3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u68qxQMkw3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u68qxQMkw3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u68qxQMkw3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u68qxQMkw3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u68qxQMkw3 .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-u68qxQMkw3 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u68qxQMkw3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u68qxQMkw3 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u68qxQMkw3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u68qxQMkw3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u68qxQMkw3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u68qxQMkw3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-u68qxQMkw3 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u68qxQMkw3 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u68qxQMkw3 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 115px;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-left: 5px;
}
.cid-u68qxQMkw3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u68qxQMkw3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u68qxQMkw3 .dropdown-item.active,
.cid-u68qxQMkw3 .dropdown-item:active {
  background-color: transparent;
}
.cid-u68qxQMkw3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u68qxQMkw3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u68qxQMkw3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u68qxQMkw3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u68qxQMkw3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u68qxQMkw3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u68qxQMkw3 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u68qxQMkw3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u68qxQMkw3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u68qxQMkw3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #cdb2c7;
}
.cid-u68qxQMkw3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u68qxQMkw3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u68qxQMkw3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u68qxQMkw3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u68qxQMkw3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u68qxQMkw3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u68qxQMkw3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u68qxQMkw3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u68qxQMkw3 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u68qxQMkw3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u68qxQMkw3 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u68qxQMkw3 .navbar {
    height: 70px;
  }
  .cid-u68qxQMkw3 .navbar.opened {
    height: auto;
  }
  .cid-u68qxQMkw3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u68qxQMkw3 .mbr-section-btn {
  margin: 0 -0.6rem;
  min-width: auto;
}
.cid-u68qxQMkw3 .navbar-toggler {
  position: relative;
  z-index: 11;
}
@media (min-width: 768px) {
  .cid-u68qxQMkw3 .navbar-toggler {
    margin-right: 20px;
  }
}
@media (max-width: 991px) {
  .cid-u68qxQMkw3 .container,
  .cid-u68qxQMkw3 .container-fluid {
    flex-wrap: nowrap;
  }
  .cid-u68qxQMkw3 .navbar-nav {
    width: 100%;
    align-items: flex-start;
  }
  .cid-u68qxQMkw3 .navbar-nav .nav-item {
    width: 100%;
    margin: 0 !important;
    padding: 10px !important;
    justify-content: flex-start;
    text-align: left;
  }
  .cid-u68qxQMkw3 .navbar-nav .nav-item .nav-link {
    justify-content: flex-start;
    text-align: left;
    width: 100%;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0;
  }
  .cid-u68qxQMkw3 .icons-menu {
    padding-right: 0 !important;
    padding-top: 20px !important;
    padding-bottom: 0 !important;
  }
  .cid-u68qxQMkw3 .mbr-section-btn {
    width: 100%;
    margin-top: 30px;
  }
  .cid-u68qxQMkw3 .mbr-section-btn .btn {
    width: 100%;
  }
  .cid-u68qxQMkw3 .navbar-collapse {
    display: flex !important;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    position: fixed;
    background-color: #9db0de;
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 10;
    max-height: 100vh !important;
    overflow: auto;
    transition: .3s !important;
  }
  .cid-u68qxQMkw3 .navbar-collapse.show {
    padding: 100px 15px;
    position: fixed;
    background-color: #9db0de;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 10;
    max-height: 100vh !important;
    overflow: auto;
  }
  .cid-u68qxQMkw3 .navbar.collapsed .dropdown-menu .dropdown-item {
    text-align: left;
  }
}
.cid-u68qxSDlVu {
  background-image: url("../../../assets/images/35.3164461d-1-500x333.jpg");
}
.cid-u68qxSDlVu .mbr-fallback-image.disabled {
  display: none;
}
.cid-u68qxSDlVu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u68qxSDlVu .mbr-text,
.cid-u68qxSDlVu .mbr-section-btn {
  text-align: left;
}
.cid-u68qxUB47g {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u68qxUB47g .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-u68qxUB47g .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-u68qxUB47g .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-u68qxUB47g .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #6592e6;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u68qxVozxX {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #6592e6;
  overflow: hidden;
}
.cid-u68qxVozxX .mbr-fallback-image.disabled {
  display: none;
}
.cid-u68qxVozxX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u68qxVozxX .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 767px) {
  .cid-u68qxVozxX .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-u68qxVozxX .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-u68qxVozxX .card-title {
  color: #212428;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-u68qxVozxX .card-title {
    margin-bottom: 20px;
  }
}
.cid-u68qxVozxX .card-subtitle {
  color: #212428;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-u68qxVozxX .card-subtitle {
    margin-bottom: 20px;
  }
}
.cid-u68qxVozxX .card-text {
  color: #212428;
  margin-bottom: 0;
}
.cid-u68qxWnDYB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u68qxWnDYB .mbr-fallback-image.disabled {
  display: none;
}
.cid-u68qxWnDYB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u68qxWnDYB .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-u68qxWnDYB .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .cid-u68qxWnDYB .container {
    padding: 0 6px;
  }
}
.cid-u68qxWnDYB .row {
  margin: 0;
  padding: 150px;
}
@media (max-width: 1440px) {
  .cid-u68qxWnDYB .row {
    padding: 150px 32px;
  }
}
@media (max-width: 1200px) {
  .cid-u68qxWnDYB .row {
    padding: 150px 8px;
  }
}
@media (max-width: 992px) {
  .cid-u68qxWnDYB .row {
    padding: 70px 60px;
  }
}
@media (max-width: 768px) {
  .cid-u68qxWnDYB .row {
    padding: 70px 30px;
  }
}
.cid-u68qxWnDYB .row .card {
  padding: 0;
  border-radius: 0 !important;
  overflow: visible;
}
.cid-u68qxWnDYB .desc-wrapper {
  padding-right: 32px;
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-u68qxWnDYB .desc-wrapper {
    padding: 0;
  }
}
.cid-u68qxWnDYB .desc-wrapper .mbr-desc {
  padding: 10px 18px;
  display: inline-flex;
  border: 1px solid #cfcfcf;
  border-radius: 30px;
  margin-bottom: 0;
}
.cid-u68qxWnDYB .title-wrapper {
  margin-bottom: 64px;
}
.cid-u68qxWnDYB .title-wrapper span {
  color: #009472;
}
.cid-u68qxWnDYB .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-u68qxWnDYB .cards-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px 40px;
}
@media (max-width: 992px) {
  .cid-u68qxWnDYB .cards-wrapper {
    display: block;
  }
}
.cid-u68qxWnDYB .cards-wrapper .item {
  position: relative;
  margin-top: 50px;
}
@media (max-width: 992px) {
  .cid-u68qxWnDYB .cards-wrapper .item {
    margin: 50px 0 100px 0;
  }
}
.cid-u68qxWnDYB .cards-wrapper .item .item-wrapper {
  padding: 0 30px 30px;
  border-radius: 16px !important;
  background-color: #6592e6;
}
@media (max-width: 992px) {
  .cid-u68qxWnDYB .cards-wrapper .item .item-wrapper {
    padding: 0 22px 22px;
  }
}
.cid-u68qxWnDYB .cards-wrapper .item .item-wrapper .item-img {
  margin-bottom: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  height: 50px;
}
.cid-u68qxWnDYB .cards-wrapper .item .item-wrapper .item-img img {
  position: absolute;
  top: -50px;
  height: 100px;
  width: 100px;
  object-fit: cover;
  border-radius: 100% !important;
  border: 10px solid #003629;
}
.cid-u68qxWnDYB .cards-wrapper .item .item-wrapper .item-content .card-title {
  margin-bottom: 10px;
}
.cid-u68qxWnDYB .cards-wrapper .item .item-wrapper .item-content .card-desc {
  margin-bottom: 10px;
}
.cid-u68qxWnDYB .cards-wrapper .item .item-wrapper .item-content .mbr-text {
  margin-bottom: 0;
}
.cid-u68qxWnDYB .cards-wrapper .item .item-wrapper .item-content .mbr-section-btn {
  margin-top: 20px;
}
.cid-u68qxWnDYB .cards-wrapper .item .item-wrapper .item-content .mbr-section-btn .btn {
  border: none;
  text-decoration: underline;
}
.cid-u68qxWnDYB .mbr-desc {
  color: #262626;
}
.cid-u68qxWnDYB .mbr-section-title {
  color: #131313;
}
.cid-u68qxWnDYB .card-desc {
  color: #003629;
  text-align: center;
}
.cid-u68qxWnDYB .card-title {
  color: #131313;
}
.cid-u68qxWnDYB .card-text {
  color: #131313;
  text-align: center;
}
.cid-u68qxWnDYB .card-title,
.cid-u68qxWnDYB .mbr-section-btn {
  text-align: center;
}
.cid-u68qxXMnOQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #6592e6;
  overflow: hidden;
}
.cid-u68qxXMnOQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-u68qxXMnOQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u68qxXMnOQ .card-row {
  align-items: stretch;
}
.cid-u68qxXMnOQ .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  max-width: 1000px;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  box-shadow: 10px 10px 19px #000000, -10px -10px 19px #000000;
}
@media (max-width: 767px) {
  .cid-u68qxXMnOQ .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-u68qxXMnOQ .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-u68qxXMnOQ .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}
.cid-u68qxXMnOQ .item-img img {
  width: 100%;
  aspect-ratio: 1.77777778;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-u68qxXMnOQ .card-box {
  padding-top: 30px;
  width: 100%;
}
.cid-u68qxXMnOQ .card-title {
  color: #C4CFDE;
  margin-bottom: 0;
}
.cid-u68qxXMnOQ .card-subtitle {
  color: #000000;
  margin-bottom: 0;
  margin-top: 20px;
  text-align: center;
}
.cid-u68qxXMnOQ .card-text {
  color: #878e99;
  margin-bottom: 0;
  margin-top: 40px;
}
.cid-u68qxXMnOQ .mbr-section-btn {
  margin-top: 30px;
}
.cid-u68qxXMnOQ .card-text,
.cid-u68qxXMnOQ .mbr-section-btn {
  color: #000000;
}
.cid-u68qxYLrQJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #f6f6f6;
}
.cid-u68qxYLrQJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-u68qxYLrQJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u68qxYLrQJ .row {
  justify-content: center;
}
.cid-u68qxYLrQJ .col-title {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .cid-u68qxYLrQJ .col-title {
    margin-bottom: 20px;
  }
}
.cid-u68qxYLrQJ .mbr-section-title {
  color: #000000;
  opacity: 0.85;
}
.cid-u68qxYLrQJ .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-u68qxYLrQJ .mbr-section-subtitle {
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
  }
}
.cid-u68qxYLrQJ .card-row {
  align-items: stretch;
}
.cid-u68qxYLrQJ .card {
  padding: 10px;
}
.cid-u68qxYLrQJ .card-box {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  padding: 33px 38px 33px 38px;
  background-color: #ffffff;
  transition: .3s all;
  border: 2px solid #1d191f;
}
.cid-u68qxYLrQJ .mbr-iconfont {
  display: block;
  font-size: 40px;
  color: #000000;
}
.cid-u68qxYLrQJ .card-head {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-u68qxYLrQJ .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  min-height: 80px;
  padding: 10px;
  margin-right: 25px;
  border-radius: 10px;
  overflow: hidden;
  background-color: #6592e6;
  transition: .3s all;
}
@media (max-width: 767px) {
  .cid-u68qxYLrQJ .iconfont-wrapper {
    min-width: 60px;
    min-height: 60px;
    padding: 5px;
  }
}
.cid-u68qxYLrQJ .card-wrapper {
  display: flex;
  -webkit-transition: box-shadow 200ms ease, -webkit-transform 200ms ease;
  transition: box-shadow 200ms ease, transform 200ms ease;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .cid-u68qxYLrQJ .card-wrapper:hover {
    transform: translate(10px, -10px);
    box-shadow: -16px 16px 0 #6592e6;
  }
}
.cid-u68qxYLrQJ .card-wrapper:hover .card-box {
  background-color: #6592e6;
}
.cid-u68qxYLrQJ .card-wrapper:hover .iconfont-wrapper {
  background-color: #ffffff;
}
.cid-u68qxYLrQJ .card-title {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0;
}
.cid-u68qxYLrQJ .card-text {
  margin-top: 20px;
  color: #1d191f;
  margin-bottom: 0;
  text-align: center;
}
.cid-u68qxYLrQJ .card-title,
.cid-u68qxYLrQJ .iconfont-wrapper {
  text-align: center;
}
.cid-u68qy06aVs {
  display: flex;
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #6592e6;
}
@media (min-width: 768px) {
  .cid-u68qy06aVs {
    align-items: center;
  }
  .cid-u68qy06aVs .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-u68qy06aVs .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-u68qy06aVs {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-u68qy06aVs .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-u68qy06aVs .content-wrap {
    width: 100%;
  }
}
.cid-u68qy06aVs .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-u68qy06aVs .mbr-text,
.cid-u68qy06aVs .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-u68qy1cn9o {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u68qy1cn9o .mbr-fallback-image.disabled {
  display: none;
}
.cid-u68qy1cn9o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-u68qy1cn9o .container {
    padding: 0 24px;
  }
}
.cid-u68qy1cn9o .row {
  border-top: 1px solid #000000;
}
@media (min-width: 992px) {
  .cid-u68qy1cn9o .row {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-u68qy1cn9o .row {
    border: none;
  }
}
.cid-u68qy1cn9o .row .card {
  padding: 0;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-u68qy1cn9o .row .card {
    padding: 0 16px;
  }
}
.cid-u68qy1cn9o .content-wrapper {
  padding: 32px;
  position: sticky;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u68qy1cn9o .content-wrapper {
    padding: 24px;
  }
}
.cid-u68qy1cn9o .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-u68qy1cn9o .content-wrapper .mbr-section-title {
    text-align: left;
  }
}
.cid-u68qy1cn9o .content-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-u68qy1cn9o .content-wrapper .mbr-text {
    text-align: left;
  }
}
.cid-u68qy1cn9o .content-wrapper .mbr-section-btn {
  margin-top: 32px;
}
@media (max-width: 992px) {
  .cid-u68qy1cn9o .content-wrapper .mbr-section-btn {
    text-align: left;
    margin-top: 24px;
  }
}
.cid-u68qy1cn9o .panel-group .card {
  padding: 32px;
  border-top: 1px solid #000000;
  border-left: 1px solid #000000;
  border-radius: 0 !important;
  border-left: none;
  border-right: 1px solid #000000;
}
.cid-u68qy1cn9o .panel-group .card:first-child {
  border-top: none;
}
@media (max-width: 992px) {
  .cid-u68qy1cn9o .panel-group .card:first-child {
    border-top: 1px solid #000000;
  }
}
@media (max-width: 992px) {
  .cid-u68qy1cn9o .panel-group .card {
    border-right: none;
  }
}
@media (max-width: 992px) {
  .cid-u68qy1cn9o .panel-group .card {
    padding: 24px;
    border-left: none;
  }
}
.cid-u68qy1cn9o .panel-group .card .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
}
.cid-u68qy1cn9o .panel-group .card .card-header .panel-title {
  display: block;
}
.cid-u68qy1cn9o .panel-group .card .card-header .panel-title:not(.collapsed) .panel-title-edit {
  display: inline;
  padding-left: 24px;
  border-left: 1px solid #000000;
}
.cid-u68qy1cn9o .panel-group .card .card-header .panel-title .panel-title-edit {
  transition: all 0.3s ease-in-out;
  margin: 0;
}
.cid-u68qy1cn9o .panel-group .card .card-header .panel-title .panel-title-edit span {
  color: #000000;
}
.cid-u68qy1cn9o .panel-group .card .panel-collapse .panel-body {
  padding-top: 32px;
}
@media (max-width: 992px) {
  .cid-u68qy1cn9o .panel-group .card .panel-collapse .panel-body {
    padding-top: 24px;
  }
}
.cid-u68qy1cn9o .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-u68qy1cn9o .mbr-section-title {
  color: #F9F6E0;
}
.cid-u68qy1cn9o .mbr-text {
  color: #F9F6E0;
  text-align: right;
}
.cid-u68qy1cn9o .panel-title-edit {
  color: #E0B548;
}
.cid-u68qy1cn9o .panel-text {
  color: #F9F6E0;
}
.cid-u68qy1cn9o .mbr-section-title,
.cid-u68qy1cn9o .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-u68qy1cn9o .panel-title-edit,
.cid-u68qy1cn9o .panel-title {
  color: #000000;
}
.cid-u68qy2vxIP {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #6592e6;
}
.cid-u68qy2vxIP .mbr-fallback-image.disabled {
  display: none;
}
.cid-u68qy2vxIP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u68qy2vxIP .row {
  justify-content: flex-start;
}
.cid-u68qy2vxIP .content-container {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  overflow: hidden;
  max-width: 1160px;
  margin: 0 auto;
  background-color: #ffffff;
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .cid-u68qy2vxIP .content-container {
    flex-wrap: wrap;
  }
}
.cid-u68qy2vxIP .content-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 100px 65px;
  width: 60%;
}
@media (max-width: 767px) {
  .cid-u68qy2vxIP .content-wrap {
    width: 100%;
    padding: 40px 25px;
  }
}
.cid-u68qy2vxIP .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40%;
  flex-grow: 1;
  height: 480px;
  border-radius: 20px 0 0 20px;
  overflow: hidden;
  border-radius: 0 20px 20px 0;
}
@media (max-width: 767px) {
  .cid-u68qy2vxIP .image-wrapper {
    width: 100%;
    border-radius: 20px;
    height: 200px;
  }
}
.cid-u68qy2vxIP .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-u68qy2vxIP .label-container {
  display: flex;
  align-items: center;
  width: max-content;
  padding: 2px 10px;
  margin-bottom: 10px;
  border-radius: 20px;
  background-color: #ffffff;
}
.cid-u68qy2vxIP .label-text {
  color: #f32800;
  margin: 0;
}
.cid-u68qy2vxIP .mbr-section-title {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  width: 100%;
}
.cid-u68qy2vxIP .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  margin-top: 15px;
  width: 100%;
}
.cid-u68qy2vxIP .date-text {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  margin-top: 20px;
  width: 100%;
}
.cid-u68qy2vxIP .mbr-section-btn {
  margin-top: 10px;
}
@media (min-width: 576px) {
  .cid-u68qy2vxIP .mbr-section-btn {
    flex-grow: 1;
  }
}
.cid-u68qy3FmCZ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u68qy3FmCZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-u68qy3FmCZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u68qy3FmCZ .row {
  justify-content: flex-start;
}
.cid-u68qy3FmCZ .mbr-section-title {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  text-align: center;
}
.cid-u68qy3FmCZ .mbr-section-subtitle {
  color: #1d191f;
  margin-bottom: 0 !important;
  margin-top: 20px;
}
.cid-u68qy3FmCZ .mbr-section-subtitle,
.cid-u68qy3FmCZ .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-u68qy3FmCZ .mbr-section-subtitle,
.cid-u68qy3FmCZ .mbr-section-btn DIV {
  text-align: left;
}
.cid-u68qy4KXSc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #6592e6;
}
.cid-u68qy4KXSc .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-u68qy4KXSc .card-title {
  margin-bottom: 26px;
  color: #c3ead8;
}
.cid-u68qy4KXSc .mbr-text {
  margin-bottom: 30px;
}
.cid-u68qy4KXSc .iconfont-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  display: inline-block;
  text-align: center;
  width: 70px;
  height: 70px;
}
.cid-u68qy4KXSc .iconfont-wrapper svg {
  position: absolute;
  top: -20px;
  left: -28px;
}
.cid-u68qy4KXSc .iconfont-wrapper svg #grad_1 {
  stop-color: #6b3df0;
}
.cid-u68qy4KXSc .iconfont-wrapper svg #grad_2 {
  stop-color: #b39cf7;
}
.cid-u68qy4KXSc .iconfont-wrapper svg #blur_svg {
  flood-color: #6b3df0;
}
.cid-u68qy4KXSc .iconfont-wrapper .mbr-iconfont {
  color: #ffffff;
  font-size: 38px;
  line-height: 73px;
  position: absolute;
  top: 0;
  left: 14px;
  z-index: 5;
}
@media (min-width: 992px) {
  .cid-u68qy4KXSc .text-wrapper {
    padding-right: 0;
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u68qy4KXSc .text-wrapper {
    text-align: center;
  }
  .cid-u68qy4KXSc .image-wrapper {
    margin-bottom: 40px;
  }
  .cid-u68qy4KXSc .mbr-text {
    margin-bottom: 20px;
  }
  .cid-u68qy4KXSc .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-u68qy4KXSc .mbr-fallback-image.disabled {
  display: none;
}
.cid-u68qy4KXSc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u68qy4KXSc .mbr-text,
.cid-u68qy4KXSc .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-u68qy4KXSc .card-title,
.cid-u68qy4KXSc .icon_block {
  color: #000000;
  text-align: center;
}
.cid-u68qy62pKd {
  display: flex;
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .cid-u68qy62pKd {
    align-items: center;
  }
  .cid-u68qy62pKd .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-u68qy62pKd .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-u68qy62pKd {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-u68qy62pKd .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-u68qy62pKd .content-wrap {
    width: 100%;
  }
}
.cid-u68qy62pKd .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-u68qy62pKd .mbr-text,
.cid-u68qy62pKd .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-u68qy7btKi {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u68qy7btKi .mbr-fallback-image.disabled {
  display: none;
}
.cid-u68qy7btKi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u68qy7btKi .row {
  justify-content: flex-start;
}
.cid-u68qy7btKi .content-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  min-height: 361px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 10px;
  border-radius: 20px;
  background-color: #6592e6;
}
@media (max-width: 767px) {
  .cid-u68qy7btKi .content-container {
    padding: 30px;
  }
}
.cid-u68qy7btKi .content-wrap {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.cid-u68qy7btKi .mbr-section-title {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  width: 100%;
}
.cid-u68qy7btKi .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  margin-top: 20px;
  width: 100%;
}
.cid-u68qy7btKi .mbr-section-btn {
  width: 100%;
  margin-top: 50px;
}
.cid-u68qy7btKi .mbr-section-subtitle,
.cid-u68qy7btKi .mbr-section-btn DIV {
  text-align: left;
}
.cid-u68TrQHEoj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u68TrQHEoj .mbr-fallback-image.disabled {
  display: none;
}
.cid-u68TrQHEoj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u68TrQHEoj .container-fluid {
  padding: 0 70px;
}
@media (max-width: 1440px) {
  .cid-u68TrQHEoj .container-fluid {
    padding: 0 48px;
  }
}
@media (max-width: 992px) {
  .cid-u68TrQHEoj .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-u68TrQHEoj .container {
    padding: 0 20px;
  }
}
.cid-u68TrQHEoj .desc-wrapper .mbr-desc {
  margin-bottom: 30px;
}
.cid-u68TrQHEoj .panel-group .card {
  border-bottom: 1px solid #dfe6ea;
  border-radius: 0 !important;
  padding: 40px 0;
}
.cid-u68TrQHEoj .panel-group .card:first-child {
  border-top: 1px solid #dfe6ea;
}
.cid-u68TrQHEoj .panel-group .card .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
}
.cid-u68TrQHEoj .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-u68TrQHEoj .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  color: #ffffff;
}
.cid-u68TrQHEoj .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper::before {
  transform: scale(1);
}
.cid-u68TrQHEoj .panel-group .card .card-header .panel-title .panel-wrap {
  display: flex;
  align-items: center;
  width: 80%;
}
@media (max-width: 992px) {
  .cid-u68TrQHEoj .panel-group .card .card-header .panel-title .panel-wrap {
    width: 100%;
  }
}
.cid-u68TrQHEoj .panel-group .card .card-header .panel-title .panel-wrap .panel-number {
  min-width: 210px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-u68TrQHEoj .panel-group .card .card-header .panel-title .panel-wrap .panel-number {
    display: none;
  }
}
.cid-u68TrQHEoj .panel-group .card .card-header .panel-title .panel-wrap .panel-title-edit {
  width: 100%;
  margin-bottom: 0;
}
.cid-u68TrQHEoj .panel-group .card .card-header .panel-title .icon-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  min-width: 55px;
  background-color: #6592e6;
  transition: all 0.3s ease-in-out;
  margin-left: 10px;
  border-radius: 100%;
}
.cid-u68TrQHEoj .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  position: relative;
  z-index: 1;
  font-size: 16px;
  color: #000000;
  transition: all 0.3s ease-in-out;
}
.cid-u68TrQHEoj .panel-group .card .card-header .panel-title .icon-wrapper::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-color: #000000;
  transform: scale(0);
  transition: all 0.3s ease-in-out;
  pointer-events: none;
}
.cid-u68TrQHEoj .panel-group .card .panel-collapse .panel-body {
  display: flex;
  padding-top: 40px;
}
.cid-u68TrQHEoj .panel-group .card .panel-collapse .panel-body .panel-padding {
  min-width: 210px;
}
@media (max-width: 992px) {
  .cid-u68TrQHEoj .panel-group .card .panel-collapse .panel-body .panel-padding {
    display: none;
  }
}
.cid-u68TrQHEoj .panel-group .card .panel-collapse .panel-body .panel-text {
  width: 60%;
  margin-bottom: 0;
}
.cid-u68TrQHEoj .mbr-desc {
  color: #000000;
}
.cid-u68TrQHEoj .panel-number {
  color: #000000;
}
.cid-u68TrQHEoj .panel-title-edit {
  color: #000000;
}
.cid-u68TrQHEoj .panel-text {
  color: #000000;
}
.cid-u68qy8h6n0 {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u68qy8h6n0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u68qy8h6n0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u68qy8h6n0 .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u68qy8h6n0 .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-u68qy8h6n0 .container {
    padding: 0 14px;
  }
}
.cid-u68qy8h6n0 .google-map iframe {
  border-radius: 0 !important;
  height: 600px;
}
@media (max-width: 992px) {
  .cid-u68qy8h6n0 .google-map iframe {
    height: 300px;
  }
}
.cid-u68qy9MaVp .footer-head {
  width: 100%;
  position: relative;
  z-index: 5;
  background-color: #6592e6;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  overflow: hidden;
}
.cid-u68qy9MaVp .img-bg {
  content: '';
  position: absolute;
  top: 0;
  right: 57%;
  bottom: 0;
  left: 0;
  background-color: #6592e6;
  border-top-right-radius: 190px;
  border-bottom-left-radius: 40px;
}
@media (max-width: 991px) {
  .cid-u68qy9MaVp .img-bg {
    display: none;
  }
}
.cid-u68qy9MaVp .container {
  display: flex;
  justify-content: center;
  max-width: 1160px;
}
@media (max-width: 991px) {
  .cid-u68qy9MaVp .container {
    padding: 0 !important;
  }
}
.cid-u68qy9MaVp .row {
  width: 100%;
  align-items: center;
}
.cid-u68qy9MaVp .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (max-width: 991px) {
  .cid-u68qy9MaVp .content-container {
    padding-top: 0;
    background-color: #6592e6;
  }
}
@media (max-width: 991px) {
  .cid-u68qy9MaVp .col-brand {
    padding: 0 15px 65px 15px;
    padding-top: 5rem;
    border-bottom-left-radius: 40px;
    background-color: #6592e6;
  }
}
.cid-u68qy9MaVp .col-links {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
}
@media (max-width: 991px) {
  .cid-u68qy9MaVp .col-links {
    padding: 70px 15px 0 15px;
  }
}
.cid-u68qy9MaVp .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
}
.cid-u68qy9MaVp .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-u68qy9MaVp .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-u68qy9MaVp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u68qy9MaVp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u68qy9MaVp .brand-text {
  margin-top: 75px;
  margin-bottom: 0;
  color: #000000;
  opacity: 0.85;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-u68qy9MaVp .brand-text {
    margin-top: 45px;
  }
}
.cid-u68qy9MaVp .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 10px;
}
.cid-u68qy9MaVp .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.cid-u68qy9MaVp .mbr-iconfont {
  font-size: 16px;
  color: #000000;
}
.cid-u68qy9MaVp .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-u68qy9MaVp .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u68qy9MaVp .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
@media (max-width: 991px) {
  .cid-u68qy9MaVp .col-link {
    width: auto !important;
    max-width: 33.33333333%;
  }
}
@media (max-width: 767px) {
  .cid-u68qy9MaVp .col-link {
    max-width: 100%;
    width: 100% !important;
  }
}
@media (max-width: 768px) {
  .cid-u68qy9MaVp .col-link1 {
    margin-bottom: 30px;
  }
}
.cid-u68qy9MaVp .col-link2 {
  padding-left: 30px;
}
@media (max-width: 768px) {
  .cid-u68qy9MaVp .col-link2 {
    padding-left: 0;
    margin-bottom: 30px;
  }
}
@media (min-width: 1200px) {
  .cid-u68qy9MaVp .col-link3 {
    padding-left: 70px;
  }
}
@media (max-width: 991px) {
  .cid-u68qy9MaVp .col-link3 {
    padding-left: 70px;
  }
}
@media (max-width: 768px) {
  .cid-u68qy9MaVp .col-link3 {
    padding-left: 0;
  }
}
.cid-u68qy9MaVp .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #1d191f;
}
.cid-u68qy9MaVp .list li {
  display: flex;
  align-items: center;
  line-height: 1.44;
}
.cid-u68qy9MaVp .list a {
  display: flex;
  align-items: center;
  line-height: 1.44;
}
.cid-u68qy9MaVp .footer-copyright {
  position: relative;
  z-index: 4;
  width: 100%;
  margin-top: -40px;
  background-color: #6592e6;
}
.cid-u68qy9MaVp .col-copyright {
  padding: 85px 0 60px 0 !important;
}
@media (max-width: 991px) {
  .cid-u68qy9MaVp .col-copyright {
    padding: 85px 10px 60px 10px !important;
  }
}
.cid-u68qy9MaVp .copyright {
  color: #C3EAD8;
}
@media (max-width: 991px) {
  .cid-u68qy9MaVp .copyright {
    text-align: center !important;
  }
}
