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: #3ee296 !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: #3ee296 !important;
  border-color: #3ee296 !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: #1aaf6a !important;
  border-color: #1aaf6a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #000000 !important;
  background-color: #1aaf6a !important;
  border-color: #1aaf6a !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: #3ee296;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #1aaf6a !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: #3ee296 !important;
  border-color: #3ee296 !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: #3ee296 !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: #18a262 !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: #3ee296;
}
.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: #effdf6;
}
.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-u69yHrW1X9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #e2e7f8;
}
.cid-u69yHrW1X9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u69yHrW1X9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u69yHrW1X9 .container-fluid {
  padding: 10px 8px;
}
@media (max-width: 992px) {
  .cid-u69yHrW1X9 .container {
    padding: 10px 8px;
  }
}
.cid-u69yHrW1X9 .row {
  border-radius: 25px;
  background-color: #fff86d;
  padding: 100px 40px 40px;
  margin: 0;
  overflow: hidden;
  justify-content: center;
  box-shadow: inset -60px 0 30rem #fff86d;
}
@media (max-width: 768px) {
  .cid-u69yHrW1X9 .row {
    padding: 50px 10px 40px;
  }
}
.cid-u69yHrW1X9 .row .card {
  padding: 0;
  justify-content: center;
}
.cid-u69yHrW1X9 .image-wrapper {
  position: relative;
  margin-right: 50px;
}
@media (max-width: 992px) {
  .cid-u69yHrW1X9 .image-wrapper {
    margin: 0 0 32px 0;
  }
}
.cid-u69yHrW1X9 .image-wrapper img {
  height: 650px;
  border-radius: 25px !important;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-u69yHrW1X9 .image-wrapper img {
    height: 350px;
  }
}
.cid-u69yHrW1X9 .image-wrapper .icon-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.cid-u69yHrW1X9 .image-wrapper .icon-wrapper .mbr-iconfont {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  font-size: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  color: #ffffff;
  background-color: #f85f32;
  transform: rotate(-20deg);
  pointer-events: visible;
}
.cid-u69yHrW1X9 .image-wrapper .icon-wrapper .mbr-iconfont:nth-child(2) {
  left: auto;
  right: 0;
  background-color: #e354e3;
  transform: rotate(20deg);
}
.cid-u69yHrW1X9 .image-wrapper .icon-wrapper .mbr-iconfont:nth-child(3) {
  top: auto;
  bottom: 0;
  background-color: #715edb;
  transform: rotate(-20deg);
}
@media (max-width: 768px) {
  .cid-u69yHrW1X9 .image-wrapper .icon-wrapper .mbr-iconfont {
    width: 50px;
    height: 50px;
    font-size: 25px;
  }
}
.cid-u69yHrW1X9 .content-wrapper .mbr-section-subtitle {
  opacity: .5;
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-u69yHrW1X9 .content-wrapper .mbr-section-subtitle {
    margin-bottom: 32px;
  }
}
.cid-u69yHrW1X9 .content-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-u69yHrW1X9 .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-u69yHrW1X9 .content-wrapper .mbr-section-title span {
  opacity: .8;
}
.cid-u69yHrW1X9 .content-wrapper .mbr-text {
  opacity: .5;
  margin-bottom: 0;
}
.cid-u69yHrW1X9 .content-wrapper .mbr-section-btn {
  margin-top: 22px;
}
.cid-u69yHrW1X9 .mbr-section-title {
  color: #ffffff;
}
.cid-u69yHrW1X9 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u69yHrW1X9 .mbr-text {
  color: #000000;
}
.cid-u69yHrW1X9 .mbr-section-title,
.cid-u69yHrW1X9 .mbr-section-btn {
  color: #000000;
}
.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: #000000;
  background: #fff86d;
  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: #fff86d;
  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: #fff86d;
}
@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: #fff86d;
  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: #fff86d;
  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 #fff86d;
  }
}
.cid-t71aetn65o .card-wrapper:hover .card-box {
  background-color: #fff86d;
}
.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: #fff86d;
}
@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: #fff86d;
}
.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: 0rem;
  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-u69zxE8X0s {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u69zxE8X0s .mbr-fallback-image.disabled {
  display: none;
}
.cid-u69zxE8X0s .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u69zxE8X0s .row {
  justify-content: flex-start;
}
.cid-u69zxE8X0s .content-container {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background-color: #fff86d;
}
.cid-u69zxE8X0s .content-padding {
  display: flex;
  max-width: 1140px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 80px 100px 0 100px;
}
@media (max-width: 991px) {
  .cid-u69zxE8X0s .content-padding {
    padding: 80px 75px 0 75px;
  }
}
@media (max-width: 767px) {
  .cid-u69zxE8X0s .content-padding {
    padding: 60px 20px 0 20px;
  }
}
.cid-u69zxE8X0s .content-wrap {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 767px) {
  .cid-u69zxE8X0s .content-wrap {
    margin-bottom: 60px;
  }
}
.cid-u69zxE8X0s .mbr-section-title {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  width: 100%;
}
.cid-u69zxE8X0s .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  margin-top: 20px;
  width: 100%;
}
.cid-u69zxE8X0s .mbr-section-btn {
  width: 100%;
  margin-top: 20px;
}
.cid-u69zxE8X0s .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}
.cid-u69zxE8X0s .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tXLumYcAyh {
  display: flex;
  padding-top: 15px;
  padding-bottom: 0px;
  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: #fff86d;
}
@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: #ffffff;
  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: #fff86d;
  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: #ffffff;
  }
}
@media (max-width: 991px) {
  .cid-tXLuXTXlDf .col-brand {
    padding: 0 15px 65px 15px;
    padding-top: 5rem;
    border-bottom-left-radius: 40px;
    background-color: #fff86d;
  }
}
.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: #ffffff;
}
.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, #fff86d, #fff86d);
  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: #ffffff;
  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: #fff86d;
  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: #ffffff;
  }
}
@media (max-width: 991px) {
  .cid-tXLuXTXlDf .col-brand {
    padding: 0 15px 65px 15px;
    padding-top: 5rem;
    border-bottom-left-radius: 40px;
    background-color: #fff86d;
  }
}
.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: #ffffff;
}
.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, #fff86d, #fff86d);
  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: #ffffff;
  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: #fff86d;
  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: #ffffff;
  }
}
@media (max-width: 991px) {
  .cid-u64tsLuNoO .col-brand {
    padding: 0 15px 65px 15px;
    padding-top: 5rem;
    border-bottom-left-radius: 40px;
    background-color: #fff86d;
  }
}
.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: #ffffff;
}
.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-u69DOIiRXi {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u69DOIiRXi nav.navbar {
  position: fixed;
}
.cid-u69DOIiRXi .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-u69DOIiRXi .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u69DOIiRXi .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u69DOIiRXi .dropdown-item:hover,
.cid-u69DOIiRXi .dropdown-item:focus {
  background: #f32800 !important;
  color: #1d191f !important;
}
.cid-u69DOIiRXi .dropdown-item:hover span {
  color: white;
}
.cid-u69DOIiRXi .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u69DOIiRXi .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u69DOIiRXi .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u69DOIiRXi .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u69DOIiRXi .nav-link {
  position: relative;
}
.cid-u69DOIiRXi .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u69DOIiRXi .container {
    flex-wrap: nowrap;
  }
}
.cid-u69DOIiRXi .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u69DOIiRXi .navbar-nav {
  margin-right: auto;
}
.cid-u69DOIiRXi .navbar-nav .nav-item {
  margin: 0 10px !important;
}
.cid-u69DOIiRXi .navbar-nav .nav-item .nav-link {
  padding: 13px 30px !important;
  margin: 0 !important;
  border-radius: 30px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-u69DOIiRXi .navbar-nav .nav-item .nav-link:hover {
    background: rgba(51, 51, 51, 0.1);
  }
}
.cid-u69DOIiRXi .dropdown-menu,
.cid-u69DOIiRXi .navbar.opened {
  background: #ffffff !important;
}
.cid-u69DOIiRXi .nav-item:focus,
.cid-u69DOIiRXi .nav-link:focus {
  outline: none;
}
.cid-u69DOIiRXi .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u69DOIiRXi .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u69DOIiRXi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u69DOIiRXi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u69DOIiRXi .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u69DOIiRXi .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u69DOIiRXi .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-u69DOIiRXi .navbar.opened {
  transition: all 0.3s;
}
.cid-u69DOIiRXi .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u69DOIiRXi .navbar .navbar-logo img {
  width: auto;
}
.cid-u69DOIiRXi .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u69DOIiRXi .navbar.collapsed {
  justify-content: center;
}
.cid-u69DOIiRXi .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u69DOIiRXi .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u69DOIiRXi .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-u69DOIiRXi .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u69DOIiRXi .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u69DOIiRXi .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-u69DOIiRXi .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u69DOIiRXi .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u69DOIiRXi .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u69DOIiRXi .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u69DOIiRXi .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u69DOIiRXi .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u69DOIiRXi .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u69DOIiRXi .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-u69DOIiRXi .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u69DOIiRXi .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u69DOIiRXi .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u69DOIiRXi .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u69DOIiRXi .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u69DOIiRXi .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u69DOIiRXi .navbar.navbar-short {
  min-height: 60px;
}
.cid-u69DOIiRXi .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u69DOIiRXi .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u69DOIiRXi .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-u69DOIiRXi .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u69DOIiRXi .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u69DOIiRXi .dropdown-item.active,
.cid-u69DOIiRXi .dropdown-item:active {
  background-color: transparent;
}
.cid-u69DOIiRXi .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u69DOIiRXi .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u69DOIiRXi .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u69DOIiRXi .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u69DOIiRXi .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u69DOIiRXi .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u69DOIiRXi ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u69DOIiRXi .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u69DOIiRXi button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u69DOIiRXi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #cdb2c7;
}
.cid-u69DOIiRXi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u69DOIiRXi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u69DOIiRXi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u69DOIiRXi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u69DOIiRXi nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u69DOIiRXi nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u69DOIiRXi nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u69DOIiRXi nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u69DOIiRXi .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u69DOIiRXi a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u69DOIiRXi .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-u69DOIiRXi .navbar {
    height: 70px;
  }
  .cid-u69DOIiRXi .navbar.opened {
    height: auto;
  }
  .cid-u69DOIiRXi .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u69DOIiRXi .mbr-section-btn {
  margin: 0 -0.6rem;
  min-width: auto;
}
.cid-u69DOIiRXi .navbar-toggler {
  position: relative;
  z-index: 11;
}
@media (min-width: 768px) {
  .cid-u69DOIiRXi .navbar-toggler {
    margin-right: 20px;
  }
}
@media (max-width: 991px) {
  .cid-u69DOIiRXi .container,
  .cid-u69DOIiRXi .container-fluid {
    flex-wrap: nowrap;
  }
  .cid-u69DOIiRXi .navbar-nav {
    width: 100%;
    align-items: flex-start;
  }
  .cid-u69DOIiRXi .navbar-nav .nav-item {
    width: 100%;
    margin: 0 !important;
    padding: 10px !important;
    justify-content: flex-start;
    text-align: left;
  }
  .cid-u69DOIiRXi .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-u69DOIiRXi .icons-menu {
    padding-right: 0 !important;
    padding-top: 20px !important;
    padding-bottom: 0 !important;
  }
  .cid-u69DOIiRXi .mbr-section-btn {
    width: 100%;
    margin-top: 30px;
  }
  .cid-u69DOIiRXi .mbr-section-btn .btn {
    width: 100%;
  }
  .cid-u69DOIiRXi .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-u69DOIiRXi .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-u69DOIiRXi .navbar.collapsed .dropdown-menu .dropdown-item {
    text-align: left;
  }
}
.cid-u69DOKuUfs {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #e2e7f8;
}
.cid-u69DOKuUfs .mbr-fallback-image.disabled {
  display: none;
}
.cid-u69DOKuUfs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u69DOKuUfs .container-fluid {
  padding: 10px 8px;
}
@media (max-width: 992px) {
  .cid-u69DOKuUfs .container {
    padding: 10px 8px;
  }
}
.cid-u69DOKuUfs .row {
  border-radius: 25px;
  background-color: #fff86d;
  padding: 100px 40px 40px;
  margin: 0;
  overflow: hidden;
  justify-content: center;
  box-shadow: inset -60px 0 30rem #fff86d;
}
@media (max-width: 768px) {
  .cid-u69DOKuUfs .row {
    padding: 50px 10px 40px;
  }
}
.cid-u69DOKuUfs .row .card {
  padding: 0;
  justify-content: center;
}
.cid-u69DOKuUfs .image-wrapper {
  position: relative;
  margin-right: 50px;
}
@media (max-width: 992px) {
  .cid-u69DOKuUfs .image-wrapper {
    margin: 0 0 32px 0;
  }
}
.cid-u69DOKuUfs .image-wrapper img {
  height: 650px;
  border-radius: 25px !important;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-u69DOKuUfs .image-wrapper img {
    height: 350px;
  }
}
.cid-u69DOKuUfs .image-wrapper .icon-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.cid-u69DOKuUfs .image-wrapper .icon-wrapper .mbr-iconfont {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  font-size: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  color: #ffffff;
  background-color: #f85f32;
  transform: rotate(-20deg);
  pointer-events: visible;
}
.cid-u69DOKuUfs .image-wrapper .icon-wrapper .mbr-iconfont:nth-child(2) {
  left: auto;
  right: 0;
  background-color: #e354e3;
  transform: rotate(20deg);
}
.cid-u69DOKuUfs .image-wrapper .icon-wrapper .mbr-iconfont:nth-child(3) {
  top: auto;
  bottom: 0;
  background-color: #715edb;
  transform: rotate(-20deg);
}
@media (max-width: 768px) {
  .cid-u69DOKuUfs .image-wrapper .icon-wrapper .mbr-iconfont {
    width: 50px;
    height: 50px;
    font-size: 25px;
  }
}
.cid-u69DOKuUfs .content-wrapper .mbr-section-subtitle {
  opacity: .5;
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-u69DOKuUfs .content-wrapper .mbr-section-subtitle {
    margin-bottom: 32px;
  }
}
.cid-u69DOKuUfs .content-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-u69DOKuUfs .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-u69DOKuUfs .content-wrapper .mbr-section-title span {
  opacity: .8;
}
.cid-u69DOKuUfs .content-wrapper .mbr-text {
  opacity: .5;
  margin-bottom: 0;
}
.cid-u69DOKuUfs .content-wrapper .mbr-section-btn {
  margin-top: 22px;
}
.cid-u69DOKuUfs .mbr-section-title {
  color: #ffffff;
}
.cid-u69DOKuUfs .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u69DOKuUfs .mbr-text {
  color: #000000;
}
.cid-u69DOKuUfs .mbr-section-title,
.cid-u69DOKuUfs .mbr-section-btn {
  color: #000000;
}
.cid-u69DOMfJR1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u69DOMfJR1 .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-u69DOMfJR1 .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-u69DOMfJR1 .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-u69DOMfJR1 .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: #000000;
  background: #fff86d;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u69DON1r3z {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #fff86d;
  overflow: hidden;
}
.cid-u69DON1r3z .mbr-fallback-image.disabled {
  display: none;
}
.cid-u69DON1r3z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u69DON1r3z .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-u69DON1r3z .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-u69DON1r3z .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-u69DON1r3z .card-title {
  color: #212428;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-u69DON1r3z .card-title {
    margin-bottom: 20px;
  }
}
.cid-u69DON1r3z .card-subtitle {
  color: #212428;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-u69DON1r3z .card-subtitle {
    margin-bottom: 20px;
  }
}
.cid-u69DON1r3z .card-text {
  color: #212428;
  margin-bottom: 0;
}
.cid-u69DONR73K {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u69DONR73K .mbr-fallback-image.disabled {
  display: none;
}
.cid-u69DONR73K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u69DONR73K .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-u69DONR73K .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .cid-u69DONR73K .container {
    padding: 0 6px;
  }
}
.cid-u69DONR73K .row {
  margin: 0;
  padding: 150px;
}
@media (max-width: 1440px) {
  .cid-u69DONR73K .row {
    padding: 150px 32px;
  }
}
@media (max-width: 1200px) {
  .cid-u69DONR73K .row {
    padding: 150px 8px;
  }
}
@media (max-width: 992px) {
  .cid-u69DONR73K .row {
    padding: 70px 60px;
  }
}
@media (max-width: 768px) {
  .cid-u69DONR73K .row {
    padding: 70px 30px;
  }
}
.cid-u69DONR73K .row .card {
  padding: 0;
  border-radius: 0 !important;
  overflow: visible;
}
.cid-u69DONR73K .desc-wrapper {
  padding-right: 32px;
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-u69DONR73K .desc-wrapper {
    padding: 0;
  }
}
.cid-u69DONR73K .desc-wrapper .mbr-desc {
  padding: 10px 18px;
  display: inline-flex;
  border: 1px solid #cfcfcf;
  border-radius: 30px;
  margin-bottom: 0;
}
.cid-u69DONR73K .title-wrapper {
  margin-bottom: 64px;
}
.cid-u69DONR73K .title-wrapper span {
  color: #009472;
}
.cid-u69DONR73K .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-u69DONR73K .cards-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px 40px;
}
@media (max-width: 992px) {
  .cid-u69DONR73K .cards-wrapper {
    display: block;
  }
}
.cid-u69DONR73K .cards-wrapper .item {
  position: relative;
  margin-top: 50px;
}
@media (max-width: 992px) {
  .cid-u69DONR73K .cards-wrapper .item {
    margin: 50px 0 100px 0;
  }
}
.cid-u69DONR73K .cards-wrapper .item .item-wrapper {
  padding: 0 30px 30px;
  border-radius: 16px !important;
  background-color: #fff86d;
}
@media (max-width: 992px) {
  .cid-u69DONR73K .cards-wrapper .item .item-wrapper {
    padding: 0 22px 22px;
  }
}
.cid-u69DONR73K .cards-wrapper .item .item-wrapper .item-img {
  margin-bottom: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  height: 50px;
}
.cid-u69DONR73K .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-u69DONR73K .cards-wrapper .item .item-wrapper .item-content .card-title {
  margin-bottom: 10px;
}
.cid-u69DONR73K .cards-wrapper .item .item-wrapper .item-content .card-desc {
  margin-bottom: 10px;
}
.cid-u69DONR73K .cards-wrapper .item .item-wrapper .item-content .mbr-text {
  margin-bottom: 0;
}
.cid-u69DONR73K .cards-wrapper .item .item-wrapper .item-content .mbr-section-btn {
  margin-top: 20px;
}
.cid-u69DONR73K .cards-wrapper .item .item-wrapper .item-content .mbr-section-btn .btn {
  border: none;
  text-decoration: underline;
}
.cid-u69DONR73K .mbr-desc {
  color: #262626;
}
.cid-u69DONR73K .mbr-section-title {
  color: #131313;
}
.cid-u69DONR73K .card-desc {
  color: #003629;
  text-align: center;
}
.cid-u69DONR73K .card-title {
  color: #131313;
}
.cid-u69DONR73K .card-text {
  color: #131313;
  text-align: center;
}
.cid-u69DONR73K .card-title,
.cid-u69DONR73K .mbr-section-btn {
  text-align: center;
}
.cid-u69DOP9nk1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fff86d;
  overflow: hidden;
}
.cid-u69DOP9nk1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u69DOP9nk1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u69DOP9nk1 .card-row {
  align-items: stretch;
}
.cid-u69DOP9nk1 .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-u69DOP9nk1 .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-u69DOP9nk1 .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-u69DOP9nk1 .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}
.cid-u69DOP9nk1 .item-img img {
  width: 100%;
  aspect-ratio: 1.77777778;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-u69DOP9nk1 .card-box {
  padding-top: 30px;
  width: 100%;
}
.cid-u69DOP9nk1 .card-title {
  color: #C4CFDE;
  margin-bottom: 0;
}
.cid-u69DOP9nk1 .card-subtitle {
  color: #000000;
  margin-bottom: 0;
  margin-top: 20px;
  text-align: center;
}
.cid-u69DOP9nk1 .card-text {
  color: #878e99;
  margin-bottom: 0;
  margin-top: 40px;
}
.cid-u69DOP9nk1 .mbr-section-btn {
  margin-top: 30px;
}
.cid-u69DOP9nk1 .card-text,
.cid-u69DOP9nk1 .mbr-section-btn {
  color: #000000;
}
.cid-u69DOQi6xy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #f6f6f6;
}
.cid-u69DOQi6xy .mbr-fallback-image.disabled {
  display: none;
}
.cid-u69DOQi6xy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u69DOQi6xy .row {
  justify-content: center;
}
.cid-u69DOQi6xy .col-title {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .cid-u69DOQi6xy .col-title {
    margin-bottom: 20px;
  }
}
.cid-u69DOQi6xy .mbr-section-title {
  color: #000000;
  opacity: 0.85;
}
.cid-u69DOQi6xy .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-u69DOQi6xy .mbr-section-subtitle {
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
  }
}
.cid-u69DOQi6xy .card-row {
  align-items: stretch;
}
.cid-u69DOQi6xy .card {
  padding: 10px;
}
.cid-u69DOQi6xy .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-u69DOQi6xy .mbr-iconfont {
  display: block;
  font-size: 40px;
  color: #000000;
}
.cid-u69DOQi6xy .card-head {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-u69DOQi6xy .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: #fff86d;
  transition: .3s all;
}
@media (max-width: 767px) {
  .cid-u69DOQi6xy .iconfont-wrapper {
    min-width: 60px;
    min-height: 60px;
    padding: 5px;
  }
}
.cid-u69DOQi6xy .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-u69DOQi6xy .card-wrapper:hover {
    transform: translate(10px, -10px);
    box-shadow: -16px 16px 0 #fff86d;
  }
}
.cid-u69DOQi6xy .card-wrapper:hover .card-box {
  background-color: #fff86d;
}
.cid-u69DOQi6xy .card-wrapper:hover .iconfont-wrapper {
  background-color: #ffffff;
}
.cid-u69DOQi6xy .card-title {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0;
}
.cid-u69DOQi6xy .card-text {
  margin-top: 20px;
  color: #1d191f;
  margin-bottom: 0;
  text-align: center;
}
.cid-u69DOQi6xy .card-title,
.cid-u69DOQi6xy .iconfont-wrapper {
  text-align: center;
}
.cid-u69DORQF6m {
  display: flex;
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #fff86d;
}
@media (min-width: 768px) {
  .cid-u69DORQF6m {
    align-items: center;
  }
  .cid-u69DORQF6m .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-u69DORQF6m .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-u69DORQF6m {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-u69DORQF6m .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-u69DORQF6m .content-wrap {
    width: 100%;
  }
}
.cid-u69DORQF6m .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-u69DORQF6m .mbr-text,
.cid-u69DORQF6m .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-u69DOT02q5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u69DOT02q5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u69DOT02q5 .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-u69DOT02q5 .container {
    padding: 0 24px;
  }
}
.cid-u69DOT02q5 .row {
  border-top: 1px solid #000000;
}
@media (min-width: 992px) {
  .cid-u69DOT02q5 .row {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-u69DOT02q5 .row {
    border: none;
  }
}
.cid-u69DOT02q5 .row .card {
  padding: 0;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-u69DOT02q5 .row .card {
    padding: 0 16px;
  }
}
.cid-u69DOT02q5 .content-wrapper {
  padding: 32px;
  position: sticky;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u69DOT02q5 .content-wrapper {
    padding: 24px;
  }
}
.cid-u69DOT02q5 .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-u69DOT02q5 .content-wrapper .mbr-section-title {
    text-align: left;
  }
}
.cid-u69DOT02q5 .content-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-u69DOT02q5 .content-wrapper .mbr-text {
    text-align: left;
  }
}
.cid-u69DOT02q5 .content-wrapper .mbr-section-btn {
  margin-top: 32px;
}
@media (max-width: 992px) {
  .cid-u69DOT02q5 .content-wrapper .mbr-section-btn {
    text-align: left;
    margin-top: 24px;
  }
}
.cid-u69DOT02q5 .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-u69DOT02q5 .panel-group .card:first-child {
  border-top: none;
}
@media (max-width: 992px) {
  .cid-u69DOT02q5 .panel-group .card:first-child {
    border-top: 1px solid #000000;
  }
}
@media (max-width: 992px) {
  .cid-u69DOT02q5 .panel-group .card {
    border-right: none;
  }
}
@media (max-width: 992px) {
  .cid-u69DOT02q5 .panel-group .card {
    padding: 24px;
    border-left: none;
  }
}
.cid-u69DOT02q5 .panel-group .card .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
}
.cid-u69DOT02q5 .panel-group .card .card-header .panel-title {
  display: block;
}
.cid-u69DOT02q5 .panel-group .card .card-header .panel-title:not(.collapsed) .panel-title-edit {
  display: inline;
  padding-left: 24px;
  border-left: 1px solid #000000;
}
.cid-u69DOT02q5 .panel-group .card .card-header .panel-title .panel-title-edit {
  transition: all 0.3s ease-in-out;
  margin: 0;
}
.cid-u69DOT02q5 .panel-group .card .card-header .panel-title .panel-title-edit span {
  color: #000000;
}
.cid-u69DOT02q5 .panel-group .card .panel-collapse .panel-body {
  padding-top: 32px;
}
@media (max-width: 992px) {
  .cid-u69DOT02q5 .panel-group .card .panel-collapse .panel-body {
    padding-top: 24px;
  }
}
.cid-u69DOT02q5 .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-u69DOT02q5 .mbr-section-title {
  color: #F9F6E0;
}
.cid-u69DOT02q5 .mbr-text {
  color: #F9F6E0;
  text-align: right;
}
.cid-u69DOT02q5 .panel-title-edit {
  color: #E0B548;
}
.cid-u69DOT02q5 .panel-text {
  color: #F9F6E0;
}
.cid-u69DOT02q5 .mbr-section-title,
.cid-u69DOT02q5 .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-u69DOT02q5 .panel-title-edit,
.cid-u69DOT02q5 .panel-title {
  color: #000000;
}
.cid-u69DOUnyFk {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fff86d;
}
.cid-u69DOUnyFk .mbr-fallback-image.disabled {
  display: none;
}
.cid-u69DOUnyFk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u69DOUnyFk .row {
  justify-content: flex-start;
}
.cid-u69DOUnyFk .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-u69DOUnyFk .content-container {
    flex-wrap: wrap;
  }
}
.cid-u69DOUnyFk .content-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 100px 65px;
  width: 60%;
}
@media (max-width: 767px) {
  .cid-u69DOUnyFk .content-wrap {
    width: 100%;
    padding: 40px 25px;
  }
}
.cid-u69DOUnyFk .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-u69DOUnyFk .image-wrapper {
    width: 100%;
    border-radius: 20px;
    height: 200px;
  }
}
.cid-u69DOUnyFk .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-u69DOUnyFk .label-container {
  display: flex;
  align-items: center;
  width: max-content;
  padding: 2px 10px;
  margin-bottom: 10px;
  border-radius: 20px;
  background-color: #fff86d;
}
.cid-u69DOUnyFk .label-text {
  color: #000000;
  margin: 0;
}
.cid-u69DOUnyFk .mbr-section-title {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  width: 100%;
}
.cid-u69DOUnyFk .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  margin-top: 15px;
  width: 100%;
}
.cid-u69DOUnyFk .date-text {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  margin-top: 20px;
  width: 100%;
}
.cid-u69DOUnyFk .mbr-section-btn {
  margin-top: 10px;
}
@media (min-width: 576px) {
  .cid-u69DOUnyFk .mbr-section-btn {
    flex-grow: 1;
  }
}
.cid-u69DOVX1JH {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u69DOVX1JH .mbr-fallback-image.disabled {
  display: none;
}
.cid-u69DOVX1JH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u69DOVX1JH .row {
  justify-content: flex-start;
}
.cid-u69DOVX1JH .mbr-section-title {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  text-align: center;
}
.cid-u69DOVX1JH .mbr-section-subtitle {
  color: #1d191f;
  margin-bottom: 0 !important;
  margin-top: 20px;
}
.cid-u69DOVX1JH .mbr-section-subtitle,
.cid-u69DOVX1JH .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-u69DOVX1JH .mbr-section-subtitle,
.cid-u69DOVX1JH .mbr-section-btn DIV {
  text-align: left;
}
.cid-u69DOXt1Jl {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u69DOXt1Jl .mbr-fallback-image.disabled {
  display: none;
}
.cid-u69DOXt1Jl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u69DOXt1Jl .row {
  justify-content: flex-start;
}
.cid-u69DOXt1Jl .content-container {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background-color: #fff86d;
}
.cid-u69DOXt1Jl .content-padding {
  display: flex;
  max-width: 1140px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 80px 100px 0 100px;
}
@media (max-width: 991px) {
  .cid-u69DOXt1Jl .content-padding {
    padding: 80px 75px 0 75px;
  }
}
@media (max-width: 767px) {
  .cid-u69DOXt1Jl .content-padding {
    padding: 60px 20px 0 20px;
  }
}
.cid-u69DOXt1Jl .content-wrap {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 767px) {
  .cid-u69DOXt1Jl .content-wrap {
    margin-bottom: 60px;
  }
}
.cid-u69DOXt1Jl .mbr-section-title {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  width: 100%;
}
.cid-u69DOXt1Jl .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  margin-top: 20px;
  width: 100%;
}
.cid-u69DOXt1Jl .mbr-section-btn {
  width: 100%;
  margin-top: 20px;
}
.cid-u69DOXt1Jl .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}
.cid-u69DOXt1Jl .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-u69DOYUO5T {
  display: flex;
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .cid-u69DOYUO5T {
    align-items: center;
  }
  .cid-u69DOYUO5T .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-u69DOYUO5T .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-u69DOYUO5T {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-u69DOYUO5T .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-u69DOYUO5T .content-wrap {
    width: 100%;
  }
}
.cid-u69DOYUO5T .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-u69DOYUO5T .mbr-text,
.cid-u69DOYUO5T .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-u69DP0hgYI {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u69DP0hgYI .mbr-fallback-image.disabled {
  display: none;
}
.cid-u69DP0hgYI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u69DP0hgYI .row {
  justify-content: flex-start;
}
.cid-u69DP0hgYI .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: #fff86d;
}
@media (max-width: 767px) {
  .cid-u69DP0hgYI .content-container {
    padding: 30px;
  }
}
.cid-u69DP0hgYI .content-wrap {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.cid-u69DP0hgYI .mbr-section-title {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  width: 100%;
}
.cid-u69DP0hgYI .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  margin-top: 20px;
  width: 100%;
}
.cid-u69DP0hgYI .mbr-section-btn {
  width: 100%;
  margin-top: 50px;
}
.cid-u69DP0hgYI .mbr-section-subtitle,
.cid-u69DP0hgYI .mbr-section-btn DIV {
  text-align: left;
}
.cid-u69Jd5LqFF {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u69Jd5LqFF .mbr-fallback-image.disabled {
  display: none;
}
.cid-u69Jd5LqFF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u69Jd5LqFF .container-fluid {
  padding: 0 70px;
}
@media (max-width: 1440px) {
  .cid-u69Jd5LqFF .container-fluid {
    padding: 0 48px;
  }
}
@media (max-width: 992px) {
  .cid-u69Jd5LqFF .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-u69Jd5LqFF .container {
    padding: 0 20px;
  }
}
.cid-u69Jd5LqFF .desc-wrapper .mbr-desc {
  margin-bottom: 30px;
}
.cid-u69Jd5LqFF .panel-group .card {
  border-bottom: 1px solid #dfe6ea;
  border-radius: 0 !important;
  padding: 40px 0;
}
.cid-u69Jd5LqFF .panel-group .card:first-child {
  border-top: 1px solid #dfe6ea;
}
.cid-u69Jd5LqFF .panel-group .card .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
}
.cid-u69Jd5LqFF .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-u69Jd5LqFF .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  color: #ffffff;
}
.cid-u69Jd5LqFF .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper::before {
  transform: scale(1);
}
.cid-u69Jd5LqFF .panel-group .card .card-header .panel-title .panel-wrap {
  display: flex;
  align-items: center;
  width: 80%;
}
@media (max-width: 992px) {
  .cid-u69Jd5LqFF .panel-group .card .card-header .panel-title .panel-wrap {
    width: 100%;
  }
}
.cid-u69Jd5LqFF .panel-group .card .card-header .panel-title .panel-wrap .panel-number {
  min-width: 210px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-u69Jd5LqFF .panel-group .card .card-header .panel-title .panel-wrap .panel-number {
    display: none;
  }
}
.cid-u69Jd5LqFF .panel-group .card .card-header .panel-title .panel-wrap .panel-title-edit {
  width: 100%;
  margin-bottom: 0;
}
.cid-u69Jd5LqFF .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: #fff86d;
  transition: all 0.3s ease-in-out;
  margin-left: 10px;
  border-radius: 100%;
}
.cid-u69Jd5LqFF .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-u69Jd5LqFF .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-u69Jd5LqFF .panel-group .card .panel-collapse .panel-body {
  display: flex;
  padding-top: 40px;
}
.cid-u69Jd5LqFF .panel-group .card .panel-collapse .panel-body .panel-padding {
  min-width: 210px;
}
@media (max-width: 992px) {
  .cid-u69Jd5LqFF .panel-group .card .panel-collapse .panel-body .panel-padding {
    display: none;
  }
}
.cid-u69Jd5LqFF .panel-group .card .panel-collapse .panel-body .panel-text {
  width: 60%;
  margin-bottom: 0;
}
.cid-u69Jd5LqFF .mbr-desc {
  color: #000000;
}
.cid-u69Jd5LqFF .panel-number {
  color: #000000;
}
.cid-u69Jd5LqFF .panel-title-edit {
  color: #000000;
}
.cid-u69Jd5LqFF .panel-text {
  color: #000000;
}
.cid-u69DP1vUz5 {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u69DP1vUz5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u69DP1vUz5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u69DP1vUz5 .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u69DP1vUz5 .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-u69DP1vUz5 .container {
    padding: 0 14px;
  }
}
.cid-u69DP1vUz5 .google-map iframe {
  border-radius: 0 !important;
  height: 600px;
}
@media (max-width: 992px) {
  .cid-u69DP1vUz5 .google-map iframe {
    height: 300px;
  }
}
.cid-u69DP2BO7b .footer-head {
  width: 100%;
  position: relative;
  z-index: 5;
  background-color: #ffffff;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  overflow: hidden;
}
.cid-u69DP2BO7b .img-bg {
  content: '';
  position: absolute;
  top: 0;
  right: 57%;
  bottom: 0;
  left: 0;
  background-color: #fff86d;
  border-top-right-radius: 190px;
  border-bottom-left-radius: 40px;
}
@media (max-width: 991px) {
  .cid-u69DP2BO7b .img-bg {
    display: none;
  }
}
.cid-u69DP2BO7b .container {
  display: flex;
  justify-content: center;
  max-width: 1160px;
}
@media (max-width: 991px) {
  .cid-u69DP2BO7b .container {
    padding: 0 !important;
  }
}
.cid-u69DP2BO7b .row {
  width: 100%;
  align-items: center;
}
.cid-u69DP2BO7b .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-u69DP2BO7b .content-container {
    padding-top: 0;
    background-color: #ffffff;
  }
}
@media (max-width: 991px) {
  .cid-u69DP2BO7b .col-brand {
    padding: 0 15px 65px 15px;
    padding-top: 5rem;
    border-bottom-left-radius: 40px;
    background-color: #fff86d;
  }
}
.cid-u69DP2BO7b .col-links {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
}
@media (max-width: 991px) {
  .cid-u69DP2BO7b .col-links {
    padding: 70px 15px 0 15px;
  }
}
.cid-u69DP2BO7b .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-u69DP2BO7b .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-u69DP2BO7b .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-u69DP2BO7b .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u69DP2BO7b .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u69DP2BO7b .brand-text {
  margin-top: 75px;
  margin-bottom: 0;
  color: #000000;
  opacity: 0.85;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-u69DP2BO7b .brand-text {
    margin-top: 45px;
  }
}
.cid-u69DP2BO7b .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 10px;
}
.cid-u69DP2BO7b .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.cid-u69DP2BO7b .mbr-iconfont {
  font-size: 16px;
  color: #000000;
}
.cid-u69DP2BO7b .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-u69DP2BO7b .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u69DP2BO7b .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
@media (max-width: 991px) {
  .cid-u69DP2BO7b .col-link {
    width: auto !important;
    max-width: 33.33333333%;
  }
}
@media (max-width: 767px) {
  .cid-u69DP2BO7b .col-link {
    max-width: 100%;
    width: 100% !important;
  }
}
@media (max-width: 768px) {
  .cid-u69DP2BO7b .col-link1 {
    margin-bottom: 30px;
  }
}
.cid-u69DP2BO7b .col-link2 {
  padding-left: 30px;
}
@media (max-width: 768px) {
  .cid-u69DP2BO7b .col-link2 {
    padding-left: 0;
    margin-bottom: 30px;
  }
}
@media (min-width: 1200px) {
  .cid-u69DP2BO7b .col-link3 {
    padding-left: 70px;
  }
}
@media (max-width: 991px) {
  .cid-u69DP2BO7b .col-link3 {
    padding-left: 70px;
  }
}
@media (max-width: 768px) {
  .cid-u69DP2BO7b .col-link3 {
    padding-left: 0;
  }
}
.cid-u69DP2BO7b .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #1d191f;
}
.cid-u69DP2BO7b .list li {
  display: flex;
  align-items: center;
  line-height: 1.44;
}
.cid-u69DP2BO7b .list a {
  display: flex;
  align-items: center;
  line-height: 1.44;
}
.cid-u69DP2BO7b .footer-copyright {
  position: relative;
  z-index: 4;
  width: 100%;
  margin-top: -40px;
  background-color: #ffffff;
}
.cid-u69DP2BO7b .col-copyright {
  padding: 85px 0 60px 0 !important;
}
@media (max-width: 991px) {
  .cid-u69DP2BO7b .col-copyright {
    padding: 85px 10px 60px 10px !important;
  }
}
.cid-u69DP2BO7b .copyright {
  color: #C3EAD8;
}
@media (max-width: 991px) {
  .cid-u69DP2BO7b .copyright {
    text-align: center !important;
  }
}
.cid-u69G9IUsdy {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u69G9IUsdy nav.navbar {
  position: fixed;
}
.cid-u69G9IUsdy .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-u69G9IUsdy .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u69G9IUsdy .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u69G9IUsdy .dropdown-item:hover,
.cid-u69G9IUsdy .dropdown-item:focus {
  background: #f32800 !important;
  color: #1d191f !important;
}
.cid-u69G9IUsdy .dropdown-item:hover span {
  color: white;
}
.cid-u69G9IUsdy .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u69G9IUsdy .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u69G9IUsdy .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u69G9IUsdy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u69G9IUsdy .nav-link {
  position: relative;
}
.cid-u69G9IUsdy .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u69G9IUsdy .container {
    flex-wrap: nowrap;
  }
}
.cid-u69G9IUsdy .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u69G9IUsdy .navbar-nav {
  margin-right: auto;
}
.cid-u69G9IUsdy .navbar-nav .nav-item {
  margin: 0 10px !important;
}
.cid-u69G9IUsdy .navbar-nav .nav-item .nav-link {
  padding: 13px 30px !important;
  margin: 0 !important;
  border-radius: 30px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-u69G9IUsdy .navbar-nav .nav-item .nav-link:hover {
    background: rgba(51, 51, 51, 0.1);
  }
}
.cid-u69G9IUsdy .dropdown-menu,
.cid-u69G9IUsdy .navbar.opened {
  background: #ffffff !important;
}
.cid-u69G9IUsdy .nav-item:focus,
.cid-u69G9IUsdy .nav-link:focus {
  outline: none;
}
.cid-u69G9IUsdy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u69G9IUsdy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u69G9IUsdy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u69G9IUsdy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u69G9IUsdy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u69G9IUsdy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u69G9IUsdy .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-u69G9IUsdy .navbar.opened {
  transition: all 0.3s;
}
.cid-u69G9IUsdy .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u69G9IUsdy .navbar .navbar-logo img {
  width: auto;
}
.cid-u69G9IUsdy .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u69G9IUsdy .navbar.collapsed {
  justify-content: center;
}
.cid-u69G9IUsdy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u69G9IUsdy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u69G9IUsdy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-u69G9IUsdy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u69G9IUsdy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u69G9IUsdy .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-u69G9IUsdy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u69G9IUsdy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u69G9IUsdy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u69G9IUsdy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u69G9IUsdy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u69G9IUsdy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u69G9IUsdy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u69G9IUsdy .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-u69G9IUsdy .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u69G9IUsdy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u69G9IUsdy .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u69G9IUsdy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u69G9IUsdy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u69G9IUsdy .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u69G9IUsdy .navbar.navbar-short {
  min-height: 60px;
}
.cid-u69G9IUsdy .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u69G9IUsdy .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u69G9IUsdy .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-u69G9IUsdy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u69G9IUsdy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u69G9IUsdy .dropdown-item.active,
.cid-u69G9IUsdy .dropdown-item:active {
  background-color: transparent;
}
.cid-u69G9IUsdy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u69G9IUsdy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u69G9IUsdy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u69G9IUsdy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u69G9IUsdy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u69G9IUsdy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u69G9IUsdy ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u69G9IUsdy .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u69G9IUsdy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u69G9IUsdy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #cdb2c7;
}
.cid-u69G9IUsdy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u69G9IUsdy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u69G9IUsdy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u69G9IUsdy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u69G9IUsdy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u69G9IUsdy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u69G9IUsdy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u69G9IUsdy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u69G9IUsdy .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u69G9IUsdy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u69G9IUsdy .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-u69G9IUsdy .navbar {
    height: 70px;
  }
  .cid-u69G9IUsdy .navbar.opened {
    height: auto;
  }
  .cid-u69G9IUsdy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u69G9IUsdy .mbr-section-btn {
  margin: 0 -0.6rem;
  min-width: auto;
}
.cid-u69G9IUsdy .navbar-toggler {
  position: relative;
  z-index: 11;
}
@media (min-width: 768px) {
  .cid-u69G9IUsdy .navbar-toggler {
    margin-right: 20px;
  }
}
@media (max-width: 991px) {
  .cid-u69G9IUsdy .container,
  .cid-u69G9IUsdy .container-fluid {
    flex-wrap: nowrap;
  }
  .cid-u69G9IUsdy .navbar-nav {
    width: 100%;
    align-items: flex-start;
  }
  .cid-u69G9IUsdy .navbar-nav .nav-item {
    width: 100%;
    margin: 0 !important;
    padding: 10px !important;
    justify-content: flex-start;
    text-align: left;
  }
  .cid-u69G9IUsdy .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-u69G9IUsdy .icons-menu {
    padding-right: 0 !important;
    padding-top: 20px !important;
    padding-bottom: 0 !important;
  }
  .cid-u69G9IUsdy .mbr-section-btn {
    width: 100%;
    margin-top: 30px;
  }
  .cid-u69G9IUsdy .mbr-section-btn .btn {
    width: 100%;
  }
  .cid-u69G9IUsdy .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-u69G9IUsdy .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-u69G9IUsdy .navbar.collapsed .dropdown-menu .dropdown-item {
    text-align: left;
  }
}
.cid-u69G9LKrT3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #e2e7f8;
}
.cid-u69G9LKrT3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u69G9LKrT3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u69G9LKrT3 .container-fluid {
  padding: 10px 8px;
}
@media (max-width: 992px) {
  .cid-u69G9LKrT3 .container {
    padding: 10px 8px;
  }
}
.cid-u69G9LKrT3 .row {
  border-radius: 25px;
  background-color: #fff86d;
  padding: 100px 40px 40px;
  margin: 0;
  overflow: hidden;
  justify-content: center;
  box-shadow: inset -60px 0 30rem #fff86d;
}
@media (max-width: 768px) {
  .cid-u69G9LKrT3 .row {
    padding: 50px 10px 40px;
  }
}
.cid-u69G9LKrT3 .row .card {
  padding: 0;
  justify-content: center;
}
.cid-u69G9LKrT3 .image-wrapper {
  position: relative;
  margin-right: 50px;
}
@media (max-width: 992px) {
  .cid-u69G9LKrT3 .image-wrapper {
    margin: 0 0 32px 0;
  }
}
.cid-u69G9LKrT3 .image-wrapper img {
  height: 650px;
  border-radius: 25px !important;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-u69G9LKrT3 .image-wrapper img {
    height: 350px;
  }
}
.cid-u69G9LKrT3 .image-wrapper .icon-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.cid-u69G9LKrT3 .image-wrapper .icon-wrapper .mbr-iconfont {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  font-size: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  color: #ffffff;
  background-color: #f85f32;
  transform: rotate(-20deg);
  pointer-events: visible;
}
.cid-u69G9LKrT3 .image-wrapper .icon-wrapper .mbr-iconfont:nth-child(2) {
  left: auto;
  right: 0;
  background-color: #e354e3;
  transform: rotate(20deg);
}
.cid-u69G9LKrT3 .image-wrapper .icon-wrapper .mbr-iconfont:nth-child(3) {
  top: auto;
  bottom: 0;
  background-color: #715edb;
  transform: rotate(-20deg);
}
@media (max-width: 768px) {
  .cid-u69G9LKrT3 .image-wrapper .icon-wrapper .mbr-iconfont {
    width: 50px;
    height: 50px;
    font-size: 25px;
  }
}
.cid-u69G9LKrT3 .content-wrapper .mbr-section-subtitle {
  opacity: .5;
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-u69G9LKrT3 .content-wrapper .mbr-section-subtitle {
    margin-bottom: 32px;
  }
}
.cid-u69G9LKrT3 .content-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-u69G9LKrT3 .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-u69G9LKrT3 .content-wrapper .mbr-section-title span {
  opacity: .8;
}
.cid-u69G9LKrT3 .content-wrapper .mbr-text {
  opacity: .5;
  margin-bottom: 0;
}
.cid-u69G9LKrT3 .content-wrapper .mbr-section-btn {
  margin-top: 22px;
}
.cid-u69G9LKrT3 .mbr-section-title {
  color: #ffffff;
}
.cid-u69G9LKrT3 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u69G9LKrT3 .mbr-text {
  color: #000000;
}
.cid-u69G9LKrT3 .mbr-section-title,
.cid-u69G9LKrT3 .mbr-section-btn {
  color: #000000;
}
.cid-u69G9OhCfc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u69G9OhCfc .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-u69G9OhCfc .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-u69G9OhCfc .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-u69G9OhCfc .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: #000000;
  background: #fff86d;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u69G9PMBWy {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #fff86d;
  overflow: hidden;
}
.cid-u69G9PMBWy .mbr-fallback-image.disabled {
  display: none;
}
.cid-u69G9PMBWy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u69G9PMBWy .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-u69G9PMBWy .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-u69G9PMBWy .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-u69G9PMBWy .card-title {
  color: #212428;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-u69G9PMBWy .card-title {
    margin-bottom: 20px;
  }
}
.cid-u69G9PMBWy .card-subtitle {
  color: #212428;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-u69G9PMBWy .card-subtitle {
    margin-bottom: 20px;
  }
}
.cid-u69G9PMBWy .card-text {
  color: #212428;
  margin-bottom: 0;
}
.cid-u69G9SygLu {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u69G9SygLu .mbr-fallback-image.disabled {
  display: none;
}
.cid-u69G9SygLu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u69G9SygLu .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-u69G9SygLu .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .cid-u69G9SygLu .container {
    padding: 0 6px;
  }
}
.cid-u69G9SygLu .row {
  margin: 0;
  padding: 150px;
}
@media (max-width: 1440px) {
  .cid-u69G9SygLu .row {
    padding: 150px 32px;
  }
}
@media (max-width: 1200px) {
  .cid-u69G9SygLu .row {
    padding: 150px 8px;
  }
}
@media (max-width: 992px) {
  .cid-u69G9SygLu .row {
    padding: 70px 60px;
  }
}
@media (max-width: 768px) {
  .cid-u69G9SygLu .row {
    padding: 70px 30px;
  }
}
.cid-u69G9SygLu .row .card {
  padding: 0;
  border-radius: 0 !important;
  overflow: visible;
}
.cid-u69G9SygLu .desc-wrapper {
  padding-right: 32px;
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-u69G9SygLu .desc-wrapper {
    padding: 0;
  }
}
.cid-u69G9SygLu .desc-wrapper .mbr-desc {
  padding: 10px 18px;
  display: inline-flex;
  border: 1px solid #cfcfcf;
  border-radius: 30px;
  margin-bottom: 0;
}
.cid-u69G9SygLu .title-wrapper {
  margin-bottom: 64px;
}
.cid-u69G9SygLu .title-wrapper span {
  color: #009472;
}
.cid-u69G9SygLu .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-u69G9SygLu .cards-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px 40px;
}
@media (max-width: 992px) {
  .cid-u69G9SygLu .cards-wrapper {
    display: block;
  }
}
.cid-u69G9SygLu .cards-wrapper .item {
  position: relative;
  margin-top: 50px;
}
@media (max-width: 992px) {
  .cid-u69G9SygLu .cards-wrapper .item {
    margin: 50px 0 100px 0;
  }
}
.cid-u69G9SygLu .cards-wrapper .item .item-wrapper {
  padding: 0 30px 30px;
  border-radius: 16px !important;
  background-color: #fff86d;
}
@media (max-width: 992px) {
  .cid-u69G9SygLu .cards-wrapper .item .item-wrapper {
    padding: 0 22px 22px;
  }
}
.cid-u69G9SygLu .cards-wrapper .item .item-wrapper .item-img {
  margin-bottom: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  height: 50px;
}
.cid-u69G9SygLu .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-u69G9SygLu .cards-wrapper .item .item-wrapper .item-content .card-title {
  margin-bottom: 10px;
}
.cid-u69G9SygLu .cards-wrapper .item .item-wrapper .item-content .card-desc {
  margin-bottom: 10px;
}
.cid-u69G9SygLu .cards-wrapper .item .item-wrapper .item-content .mbr-text {
  margin-bottom: 0;
}
.cid-u69G9SygLu .cards-wrapper .item .item-wrapper .item-content .mbr-section-btn {
  margin-top: 20px;
}
.cid-u69G9SygLu .cards-wrapper .item .item-wrapper .item-content .mbr-section-btn .btn {
  border: none;
  text-decoration: underline;
}
.cid-u69G9SygLu .mbr-desc {
  color: #262626;
}
.cid-u69G9SygLu .mbr-section-title {
  color: #131313;
}
.cid-u69G9SygLu .card-desc {
  color: #003629;
  text-align: center;
}
.cid-u69G9SygLu .card-title {
  color: #131313;
}
.cid-u69G9SygLu .card-text {
  color: #131313;
  text-align: center;
}
.cid-u69G9SygLu .card-title,
.cid-u69G9SygLu .mbr-section-btn {
  text-align: center;
}
.cid-u69G9UDCbB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fff86d;
  overflow: hidden;
}
.cid-u69G9UDCbB .mbr-fallback-image.disabled {
  display: none;
}
.cid-u69G9UDCbB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u69G9UDCbB .card-row {
  align-items: stretch;
}
.cid-u69G9UDCbB .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-u69G9UDCbB .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-u69G9UDCbB .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-u69G9UDCbB .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}
.cid-u69G9UDCbB .item-img img {
  width: 100%;
  aspect-ratio: 1.77777778;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-u69G9UDCbB .card-box {
  padding-top: 30px;
  width: 100%;
}
.cid-u69G9UDCbB .card-title {
  color: #C4CFDE;
  margin-bottom: 0;
}
.cid-u69G9UDCbB .card-subtitle {
  color: #000000;
  margin-bottom: 0;
  margin-top: 20px;
  text-align: center;
}
.cid-u69G9UDCbB .card-text {
  color: #878e99;
  margin-bottom: 0;
  margin-top: 40px;
}
.cid-u69G9UDCbB .mbr-section-btn {
  margin-top: 30px;
}
.cid-u69G9UDCbB .card-text,
.cid-u69G9UDCbB .mbr-section-btn {
  color: #000000;
}
.cid-u69G9W5xVi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #f6f6f6;
}
.cid-u69G9W5xVi .mbr-fallback-image.disabled {
  display: none;
}
.cid-u69G9W5xVi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u69G9W5xVi .row {
  justify-content: center;
}
.cid-u69G9W5xVi .col-title {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .cid-u69G9W5xVi .col-title {
    margin-bottom: 20px;
  }
}
.cid-u69G9W5xVi .mbr-section-title {
  color: #000000;
  opacity: 0.85;
}
.cid-u69G9W5xVi .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-u69G9W5xVi .mbr-section-subtitle {
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
  }
}
.cid-u69G9W5xVi .card-row {
  align-items: stretch;
}
.cid-u69G9W5xVi .card {
  padding: 10px;
}
.cid-u69G9W5xVi .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-u69G9W5xVi .mbr-iconfont {
  display: block;
  font-size: 40px;
  color: #000000;
}
.cid-u69G9W5xVi .card-head {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-u69G9W5xVi .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: #fff86d;
  transition: .3s all;
}
@media (max-width: 767px) {
  .cid-u69G9W5xVi .iconfont-wrapper {
    min-width: 60px;
    min-height: 60px;
    padding: 5px;
  }
}
.cid-u69G9W5xVi .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-u69G9W5xVi .card-wrapper:hover {
    transform: translate(10px, -10px);
    box-shadow: -16px 16px 0 #fff86d;
  }
}
.cid-u69G9W5xVi .card-wrapper:hover .card-box {
  background-color: #fff86d;
}
.cid-u69G9W5xVi .card-wrapper:hover .iconfont-wrapper {
  background-color: #ffffff;
}
.cid-u69G9W5xVi .card-title {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0;
}
.cid-u69G9W5xVi .card-text {
  margin-top: 20px;
  color: #1d191f;
  margin-bottom: 0;
  text-align: center;
}
.cid-u69G9W5xVi .card-title,
.cid-u69G9W5xVi .iconfont-wrapper {
  text-align: center;
}
.cid-u69G9Y5x6N {
  display: flex;
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #fff86d;
}
@media (min-width: 768px) {
  .cid-u69G9Y5x6N {
    align-items: center;
  }
  .cid-u69G9Y5x6N .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-u69G9Y5x6N .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-u69G9Y5x6N {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-u69G9Y5x6N .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-u69G9Y5x6N .content-wrap {
    width: 100%;
  }
}
.cid-u69G9Y5x6N .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-u69G9Y5x6N .mbr-text,
.cid-u69G9Y5x6N .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-u69G9ZA2qm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u69G9ZA2qm .mbr-fallback-image.disabled {
  display: none;
}
.cid-u69G9ZA2qm .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-u69G9ZA2qm .container {
    padding: 0 24px;
  }
}
.cid-u69G9ZA2qm .row {
  border-top: 1px solid #000000;
}
@media (min-width: 992px) {
  .cid-u69G9ZA2qm .row {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-u69G9ZA2qm .row {
    border: none;
  }
}
.cid-u69G9ZA2qm .row .card {
  padding: 0;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-u69G9ZA2qm .row .card {
    padding: 0 16px;
  }
}
.cid-u69G9ZA2qm .content-wrapper {
  padding: 32px;
  position: sticky;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u69G9ZA2qm .content-wrapper {
    padding: 24px;
  }
}
.cid-u69G9ZA2qm .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-u69G9ZA2qm .content-wrapper .mbr-section-title {
    text-align: left;
  }
}
.cid-u69G9ZA2qm .content-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-u69G9ZA2qm .content-wrapper .mbr-text {
    text-align: left;
  }
}
.cid-u69G9ZA2qm .content-wrapper .mbr-section-btn {
  margin-top: 32px;
}
@media (max-width: 992px) {
  .cid-u69G9ZA2qm .content-wrapper .mbr-section-btn {
    text-align: left;
    margin-top: 24px;
  }
}
.cid-u69G9ZA2qm .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-u69G9ZA2qm .panel-group .card:first-child {
  border-top: none;
}
@media (max-width: 992px) {
  .cid-u69G9ZA2qm .panel-group .card:first-child {
    border-top: 1px solid #000000;
  }
}
@media (max-width: 992px) {
  .cid-u69G9ZA2qm .panel-group .card {
    border-right: none;
  }
}
@media (max-width: 992px) {
  .cid-u69G9ZA2qm .panel-group .card {
    padding: 24px;
    border-left: none;
  }
}
.cid-u69G9ZA2qm .panel-group .card .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
}
.cid-u69G9ZA2qm .panel-group .card .card-header .panel-title {
  display: block;
}
.cid-u69G9ZA2qm .panel-group .card .card-header .panel-title:not(.collapsed) .panel-title-edit {
  display: inline;
  padding-left: 24px;
  border-left: 1px solid #000000;
}
.cid-u69G9ZA2qm .panel-group .card .card-header .panel-title .panel-title-edit {
  transition: all 0.3s ease-in-out;
  margin: 0;
}
.cid-u69G9ZA2qm .panel-group .card .card-header .panel-title .panel-title-edit span {
  color: #000000;
}
.cid-u69G9ZA2qm .panel-group .card .panel-collapse .panel-body {
  padding-top: 32px;
}
@media (max-width: 992px) {
  .cid-u69G9ZA2qm .panel-group .card .panel-collapse .panel-body {
    padding-top: 24px;
  }
}
.cid-u69G9ZA2qm .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-u69G9ZA2qm .mbr-section-title {
  color: #F9F6E0;
}
.cid-u69G9ZA2qm .mbr-text {
  color: #F9F6E0;
  text-align: right;
}
.cid-u69G9ZA2qm .panel-title-edit {
  color: #E0B548;
}
.cid-u69G9ZA2qm .panel-text {
  color: #F9F6E0;
}
.cid-u69G9ZA2qm .mbr-section-title,
.cid-u69G9ZA2qm .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-u69G9ZA2qm .panel-title-edit,
.cid-u69G9ZA2qm .panel-title {
  color: #000000;
}
.cid-u69Ga1KNXR {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fff86d;
}
.cid-u69Ga1KNXR .mbr-fallback-image.disabled {
  display: none;
}
.cid-u69Ga1KNXR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u69Ga1KNXR .row {
  justify-content: flex-start;
}
.cid-u69Ga1KNXR .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-u69Ga1KNXR .content-container {
    flex-wrap: wrap;
  }
}
.cid-u69Ga1KNXR .content-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 100px 65px;
  width: 60%;
}
@media (max-width: 767px) {
  .cid-u69Ga1KNXR .content-wrap {
    width: 100%;
    padding: 40px 25px;
  }
}
.cid-u69Ga1KNXR .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-u69Ga1KNXR .image-wrapper {
    width: 100%;
    border-radius: 20px;
    height: 200px;
  }
}
.cid-u69Ga1KNXR .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-u69Ga1KNXR .label-container {
  display: flex;
  align-items: center;
  width: max-content;
  padding: 2px 10px;
  margin-bottom: 10px;
  border-radius: 20px;
  background-color: #fff86d;
}
.cid-u69Ga1KNXR .label-text {
  color: #000000;
  margin: 0;
}
.cid-u69Ga1KNXR .mbr-section-title {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  width: 100%;
}
.cid-u69Ga1KNXR .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  margin-top: 15px;
  width: 100%;
}
.cid-u69Ga1KNXR .date-text {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  margin-top: 20px;
  width: 100%;
}
.cid-u69Ga1KNXR .mbr-section-btn {
  margin-top: 10px;
}
@media (min-width: 576px) {
  .cid-u69Ga1KNXR .mbr-section-btn {
    flex-grow: 1;
  }
}
.cid-u69Ga2K3Uc {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u69Ga2K3Uc .mbr-fallback-image.disabled {
  display: none;
}
.cid-u69Ga2K3Uc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u69Ga2K3Uc .row {
  justify-content: flex-start;
}
.cid-u69Ga2K3Uc .mbr-section-title {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  text-align: center;
}
.cid-u69Ga2K3Uc .mbr-section-subtitle {
  color: #1d191f;
  margin-bottom: 0 !important;
  margin-top: 20px;
}
.cid-u69Ga2K3Uc .mbr-section-subtitle,
.cid-u69Ga2K3Uc .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-u69Ga2K3Uc .mbr-section-subtitle,
.cid-u69Ga2K3Uc .mbr-section-btn DIV {
  text-align: left;
}
.cid-u69Ga434lT {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u69Ga434lT .mbr-fallback-image.disabled {
  display: none;
}
.cid-u69Ga434lT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u69Ga434lT .row {
  justify-content: flex-start;
}
.cid-u69Ga434lT .content-container {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background-color: #fff86d;
}
.cid-u69Ga434lT .content-padding {
  display: flex;
  max-width: 1140px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 80px 100px 0 100px;
}
@media (max-width: 991px) {
  .cid-u69Ga434lT .content-padding {
    padding: 80px 75px 0 75px;
  }
}
@media (max-width: 767px) {
  .cid-u69Ga434lT .content-padding {
    padding: 60px 20px 0 20px;
  }
}
.cid-u69Ga434lT .content-wrap {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 767px) {
  .cid-u69Ga434lT .content-wrap {
    margin-bottom: 60px;
  }
}
.cid-u69Ga434lT .mbr-section-title {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  width: 100%;
}
.cid-u69Ga434lT .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  margin-top: 20px;
  width: 100%;
}
.cid-u69Ga434lT .mbr-section-btn {
  width: 100%;
  margin-top: 20px;
}
.cid-u69Ga434lT .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}
.cid-u69Ga434lT .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-u69Ga5b79Q {
  display: flex;
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .cid-u69Ga5b79Q {
    align-items: center;
  }
  .cid-u69Ga5b79Q .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-u69Ga5b79Q .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-u69Ga5b79Q {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-u69Ga5b79Q .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-u69Ga5b79Q .content-wrap {
    width: 100%;
  }
}
.cid-u69Ga5b79Q .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-u69Ga5b79Q .mbr-text,
.cid-u69Ga5b79Q .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-u69Ga6ejVN {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u69Ga6ejVN .mbr-fallback-image.disabled {
  display: none;
}
.cid-u69Ga6ejVN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u69Ga6ejVN .row {
  justify-content: flex-start;
}
.cid-u69Ga6ejVN .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: #fff86d;
}
@media (max-width: 767px) {
  .cid-u69Ga6ejVN .content-container {
    padding: 30px;
  }
}
.cid-u69Ga6ejVN .content-wrap {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.cid-u69Ga6ejVN .mbr-section-title {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  width: 100%;
}
.cid-u69Ga6ejVN .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  margin-top: 20px;
  width: 100%;
}
.cid-u69Ga6ejVN .mbr-section-btn {
  width: 100%;
  margin-top: 50px;
}
.cid-u69Ga6ejVN .mbr-section-subtitle,
.cid-u69Ga6ejVN .mbr-section-btn DIV {
  text-align: left;
}
.cid-u69J2QcHSH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u69J2QcHSH .mbr-fallback-image.disabled {
  display: none;
}
.cid-u69J2QcHSH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u69J2QcHSH .container-fluid {
  padding: 0 70px;
}
@media (max-width: 1440px) {
  .cid-u69J2QcHSH .container-fluid {
    padding: 0 48px;
  }
}
@media (max-width: 992px) {
  .cid-u69J2QcHSH .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-u69J2QcHSH .container {
    padding: 0 20px;
  }
}
.cid-u69J2QcHSH .desc-wrapper .mbr-desc {
  margin-bottom: 30px;
}
.cid-u69J2QcHSH .panel-group .card {
  border-bottom: 1px solid #dfe6ea;
  border-radius: 0 !important;
  padding: 40px 0;
}
.cid-u69J2QcHSH .panel-group .card:first-child {
  border-top: 1px solid #dfe6ea;
}
.cid-u69J2QcHSH .panel-group .card .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
}
.cid-u69J2QcHSH .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-u69J2QcHSH .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  color: #ffffff;
}
.cid-u69J2QcHSH .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper::before {
  transform: scale(1);
}
.cid-u69J2QcHSH .panel-group .card .card-header .panel-title .panel-wrap {
  display: flex;
  align-items: center;
  width: 80%;
}
@media (max-width: 992px) {
  .cid-u69J2QcHSH .panel-group .card .card-header .panel-title .panel-wrap {
    width: 100%;
  }
}
.cid-u69J2QcHSH .panel-group .card .card-header .panel-title .panel-wrap .panel-number {
  min-width: 210px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-u69J2QcHSH .panel-group .card .card-header .panel-title .panel-wrap .panel-number {
    display: none;
  }
}
.cid-u69J2QcHSH .panel-group .card .card-header .panel-title .panel-wrap .panel-title-edit {
  width: 100%;
  margin-bottom: 0;
}
.cid-u69J2QcHSH .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: #fff86d;
  transition: all 0.3s ease-in-out;
  margin-left: 10px;
  border-radius: 100%;
}
.cid-u69J2QcHSH .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-u69J2QcHSH .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-u69J2QcHSH .panel-group .card .panel-collapse .panel-body {
  display: flex;
  padding-top: 40px;
}
.cid-u69J2QcHSH .panel-group .card .panel-collapse .panel-body .panel-padding {
  min-width: 210px;
}
@media (max-width: 992px) {
  .cid-u69J2QcHSH .panel-group .card .panel-collapse .panel-body .panel-padding {
    display: none;
  }
}
.cid-u69J2QcHSH .panel-group .card .panel-collapse .panel-body .panel-text {
  width: 60%;
  margin-bottom: 0;
}
.cid-u69J2QcHSH .mbr-desc {
  color: #000000;
}
.cid-u69J2QcHSH .panel-number {
  color: #000000;
}
.cid-u69J2QcHSH .panel-title-edit {
  color: #000000;
}
.cid-u69J2QcHSH .panel-text {
  color: #000000;
}
.cid-u69Ga7fPLA {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u69Ga7fPLA .mbr-fallback-image.disabled {
  display: none;
}
.cid-u69Ga7fPLA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u69Ga7fPLA .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u69Ga7fPLA .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-u69Ga7fPLA .container {
    padding: 0 14px;
  }
}
.cid-u69Ga7fPLA .google-map iframe {
  border-radius: 0 !important;
  height: 600px;
}
@media (max-width: 992px) {
  .cid-u69Ga7fPLA .google-map iframe {
    height: 300px;
  }
}
.cid-u69Ga8xtnn .footer-head {
  width: 100%;
  position: relative;
  z-index: 5;
  background-color: #ffffff;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  overflow: hidden;
}
.cid-u69Ga8xtnn .img-bg {
  content: '';
  position: absolute;
  top: 0;
  right: 57%;
  bottom: 0;
  left: 0;
  background-color: #fff86d;
  border-top-right-radius: 190px;
  border-bottom-left-radius: 40px;
}
@media (max-width: 991px) {
  .cid-u69Ga8xtnn .img-bg {
    display: none;
  }
}
.cid-u69Ga8xtnn .container {
  display: flex;
  justify-content: center;
  max-width: 1160px;
}
@media (max-width: 991px) {
  .cid-u69Ga8xtnn .container {
    padding: 0 !important;
  }
}
.cid-u69Ga8xtnn .row {
  width: 100%;
  align-items: center;
}
.cid-u69Ga8xtnn .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-u69Ga8xtnn .content-container {
    padding-top: 0;
    background-color: #ffffff;
  }
}
@media (max-width: 991px) {
  .cid-u69Ga8xtnn .col-brand {
    padding: 0 15px 65px 15px;
    padding-top: 5rem;
    border-bottom-left-radius: 40px;
    background-color: #fff86d;
  }
}
.cid-u69Ga8xtnn .col-links {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
}
@media (max-width: 991px) {
  .cid-u69Ga8xtnn .col-links {
    padding: 70px 15px 0 15px;
  }
}
.cid-u69Ga8xtnn .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-u69Ga8xtnn .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-u69Ga8xtnn .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-u69Ga8xtnn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u69Ga8xtnn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u69Ga8xtnn .brand-text {
  margin-top: 75px;
  margin-bottom: 0;
  color: #000000;
  opacity: 0.85;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-u69Ga8xtnn .brand-text {
    margin-top: 45px;
  }
}
.cid-u69Ga8xtnn .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 10px;
}
.cid-u69Ga8xtnn .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.cid-u69Ga8xtnn .mbr-iconfont {
  font-size: 16px;
  color: #000000;
}
.cid-u69Ga8xtnn .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-u69Ga8xtnn .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u69Ga8xtnn .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
@media (max-width: 991px) {
  .cid-u69Ga8xtnn .col-link {
    width: auto !important;
    max-width: 33.33333333%;
  }
}
@media (max-width: 767px) {
  .cid-u69Ga8xtnn .col-link {
    max-width: 100%;
    width: 100% !important;
  }
}
@media (max-width: 768px) {
  .cid-u69Ga8xtnn .col-link1 {
    margin-bottom: 30px;
  }
}
.cid-u69Ga8xtnn .col-link2 {
  padding-left: 30px;
}
@media (max-width: 768px) {
  .cid-u69Ga8xtnn .col-link2 {
    padding-left: 0;
    margin-bottom: 30px;
  }
}
@media (min-width: 1200px) {
  .cid-u69Ga8xtnn .col-link3 {
    padding-left: 70px;
  }
}
@media (max-width: 991px) {
  .cid-u69Ga8xtnn .col-link3 {
    padding-left: 70px;
  }
}
@media (max-width: 768px) {
  .cid-u69Ga8xtnn .col-link3 {
    padding-left: 0;
  }
}
.cid-u69Ga8xtnn .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #1d191f;
}
.cid-u69Ga8xtnn .list li {
  display: flex;
  align-items: center;
  line-height: 1.44;
}
.cid-u69Ga8xtnn .list a {
  display: flex;
  align-items: center;
  line-height: 1.44;
}
.cid-u69Ga8xtnn .footer-copyright {
  position: relative;
  z-index: 4;
  width: 100%;
  margin-top: -40px;
  background-color: #ffffff;
}
.cid-u69Ga8xtnn .col-copyright {
  padding: 85px 0 60px 0 !important;
}
@media (max-width: 991px) {
  .cid-u69Ga8xtnn .col-copyright {
    padding: 85px 10px 60px 10px !important;
  }
}
.cid-u69Ga8xtnn .copyright {
  color: #C3EAD8;
}
@media (max-width: 991px) {
  .cid-u69Ga8xtnn .copyright {
    text-align: center !important;
  }
}
.cid-u69IFDCBDm {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u69IFDCBDm nav.navbar {
  position: fixed;
}
.cid-u69IFDCBDm .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-u69IFDCBDm .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u69IFDCBDm .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u69IFDCBDm .dropdown-item:hover,
.cid-u69IFDCBDm .dropdown-item:focus {
  background: #f32800 !important;
  color: #1d191f !important;
}
.cid-u69IFDCBDm .dropdown-item:hover span {
  color: white;
}
.cid-u69IFDCBDm .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u69IFDCBDm .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u69IFDCBDm .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u69IFDCBDm .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u69IFDCBDm .nav-link {
  position: relative;
}
.cid-u69IFDCBDm .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u69IFDCBDm .container {
    flex-wrap: nowrap;
  }
}
.cid-u69IFDCBDm .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u69IFDCBDm .navbar-nav {
  margin-right: auto;
}
.cid-u69IFDCBDm .navbar-nav .nav-item {
  margin: 0 10px !important;
}
.cid-u69IFDCBDm .navbar-nav .nav-item .nav-link {
  padding: 13px 30px !important;
  margin: 0 !important;
  border-radius: 30px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-u69IFDCBDm .navbar-nav .nav-item .nav-link:hover {
    background: rgba(51, 51, 51, 0.1);
  }
}
.cid-u69IFDCBDm .dropdown-menu,
.cid-u69IFDCBDm .navbar.opened {
  background: #ffffff !important;
}
.cid-u69IFDCBDm .nav-item:focus,
.cid-u69IFDCBDm .nav-link:focus {
  outline: none;
}
.cid-u69IFDCBDm .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u69IFDCBDm .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u69IFDCBDm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u69IFDCBDm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u69IFDCBDm .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u69IFDCBDm .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u69IFDCBDm .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-u69IFDCBDm .navbar.opened {
  transition: all 0.3s;
}
.cid-u69IFDCBDm .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u69IFDCBDm .navbar .navbar-logo img {
  width: auto;
}
.cid-u69IFDCBDm .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u69IFDCBDm .navbar.collapsed {
  justify-content: center;
}
.cid-u69IFDCBDm .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u69IFDCBDm .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u69IFDCBDm .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-u69IFDCBDm .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u69IFDCBDm .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u69IFDCBDm .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-u69IFDCBDm .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u69IFDCBDm .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u69IFDCBDm .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u69IFDCBDm .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u69IFDCBDm .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u69IFDCBDm .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u69IFDCBDm .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u69IFDCBDm .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-u69IFDCBDm .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u69IFDCBDm .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u69IFDCBDm .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u69IFDCBDm .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u69IFDCBDm .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u69IFDCBDm .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u69IFDCBDm .navbar.navbar-short {
  min-height: 60px;
}
.cid-u69IFDCBDm .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u69IFDCBDm .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u69IFDCBDm .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-u69IFDCBDm .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u69IFDCBDm .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u69IFDCBDm .dropdown-item.active,
.cid-u69IFDCBDm .dropdown-item:active {
  background-color: transparent;
}
.cid-u69IFDCBDm .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u69IFDCBDm .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u69IFDCBDm .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u69IFDCBDm .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u69IFDCBDm .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u69IFDCBDm .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u69IFDCBDm ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u69IFDCBDm .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u69IFDCBDm button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u69IFDCBDm button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #cdb2c7;
}
.cid-u69IFDCBDm button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u69IFDCBDm button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u69IFDCBDm button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u69IFDCBDm button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u69IFDCBDm nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u69IFDCBDm nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u69IFDCBDm nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u69IFDCBDm nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u69IFDCBDm .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u69IFDCBDm a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u69IFDCBDm .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-u69IFDCBDm .navbar {
    height: 70px;
  }
  .cid-u69IFDCBDm .navbar.opened {
    height: auto;
  }
  .cid-u69IFDCBDm .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u69IFDCBDm .mbr-section-btn {
  margin: 0 -0.6rem;
  min-width: auto;
}
.cid-u69IFDCBDm .navbar-toggler {
  position: relative;
  z-index: 11;
}
@media (min-width: 768px) {
  .cid-u69IFDCBDm .navbar-toggler {
    margin-right: 20px;
  }
}
@media (max-width: 991px) {
  .cid-u69IFDCBDm .container,
  .cid-u69IFDCBDm .container-fluid {
    flex-wrap: nowrap;
  }
  .cid-u69IFDCBDm .navbar-nav {
    width: 100%;
    align-items: flex-start;
  }
  .cid-u69IFDCBDm .navbar-nav .nav-item {
    width: 100%;
    margin: 0 !important;
    padding: 10px !important;
    justify-content: flex-start;
    text-align: left;
  }
  .cid-u69IFDCBDm .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-u69IFDCBDm .icons-menu {
    padding-right: 0 !important;
    padding-top: 20px !important;
    padding-bottom: 0 !important;
  }
  .cid-u69IFDCBDm .mbr-section-btn {
    width: 100%;
    margin-top: 30px;
  }
  .cid-u69IFDCBDm .mbr-section-btn .btn {
    width: 100%;
  }
  .cid-u69IFDCBDm .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-u69IFDCBDm .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-u69IFDCBDm .navbar.collapsed .dropdown-menu .dropdown-item {
    text-align: left;
  }
}
.cid-u69IFFgAIM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #e2e7f8;
}
.cid-u69IFFgAIM .mbr-fallback-image.disabled {
  display: none;
}
.cid-u69IFFgAIM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u69IFFgAIM .container-fluid {
  padding: 10px 8px;
}
@media (max-width: 992px) {
  .cid-u69IFFgAIM .container {
    padding: 10px 8px;
  }
}
.cid-u69IFFgAIM .row {
  border-radius: 25px;
  background-color: #fff86d;
  padding: 100px 40px 40px;
  margin: 0;
  overflow: hidden;
  justify-content: center;
  box-shadow: inset -60px 0 30rem #fff86d;
}
@media (max-width: 768px) {
  .cid-u69IFFgAIM .row {
    padding: 50px 10px 40px;
  }
}
.cid-u69IFFgAIM .row .card {
  padding: 0;
  justify-content: center;
}
.cid-u69IFFgAIM .image-wrapper {
  position: relative;
  margin-right: 50px;
}
@media (max-width: 992px) {
  .cid-u69IFFgAIM .image-wrapper {
    margin: 0 0 32px 0;
  }
}
.cid-u69IFFgAIM .image-wrapper img {
  height: 650px;
  border-radius: 25px !important;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-u69IFFgAIM .image-wrapper img {
    height: 350px;
  }
}
.cid-u69IFFgAIM .image-wrapper .icon-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.cid-u69IFFgAIM .image-wrapper .icon-wrapper .mbr-iconfont {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  font-size: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  color: #ffffff;
  background-color: #f85f32;
  transform: rotate(-20deg);
  pointer-events: visible;
}
.cid-u69IFFgAIM .image-wrapper .icon-wrapper .mbr-iconfont:nth-child(2) {
  left: auto;
  right: 0;
  background-color: #e354e3;
  transform: rotate(20deg);
}
.cid-u69IFFgAIM .image-wrapper .icon-wrapper .mbr-iconfont:nth-child(3) {
  top: auto;
  bottom: 0;
  background-color: #715edb;
  transform: rotate(-20deg);
}
@media (max-width: 768px) {
  .cid-u69IFFgAIM .image-wrapper .icon-wrapper .mbr-iconfont {
    width: 50px;
    height: 50px;
    font-size: 25px;
  }
}
.cid-u69IFFgAIM .content-wrapper .mbr-section-subtitle {
  opacity: .5;
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-u69IFFgAIM .content-wrapper .mbr-section-subtitle {
    margin-bottom: 32px;
  }
}
.cid-u69IFFgAIM .content-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-u69IFFgAIM .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-u69IFFgAIM .content-wrapper .mbr-section-title span {
  opacity: .8;
}
.cid-u69IFFgAIM .content-wrapper .mbr-text {
  opacity: .5;
  margin-bottom: 0;
}
.cid-u69IFFgAIM .content-wrapper .mbr-section-btn {
  margin-top: 22px;
}
.cid-u69IFFgAIM .mbr-section-title {
  color: #ffffff;
}
.cid-u69IFFgAIM .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u69IFFgAIM .mbr-text {
  color: #000000;
}
.cid-u69IFFgAIM .mbr-section-title,
.cid-u69IFFgAIM .mbr-section-btn {
  color: #000000;
}
.cid-u69IFGBNAl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u69IFGBNAl .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-u69IFGBNAl .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-u69IFGBNAl .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-u69IFGBNAl .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: #000000;
  background: #fff86d;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u69IFHoWgF {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #fff86d;
  overflow: hidden;
}
.cid-u69IFHoWgF .mbr-fallback-image.disabled {
  display: none;
}
.cid-u69IFHoWgF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u69IFHoWgF .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-u69IFHoWgF .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-u69IFHoWgF .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-u69IFHoWgF .card-title {
  color: #212428;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-u69IFHoWgF .card-title {
    margin-bottom: 20px;
  }
}
.cid-u69IFHoWgF .card-subtitle {
  color: #212428;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-u69IFHoWgF .card-subtitle {
    margin-bottom: 20px;
  }
}
.cid-u69IFHoWgF .card-text {
  color: #212428;
  margin-bottom: 0;
}
.cid-u69IFIiKq9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u69IFIiKq9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u69IFIiKq9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u69IFIiKq9 .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-u69IFIiKq9 .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .cid-u69IFIiKq9 .container {
    padding: 0 6px;
  }
}
.cid-u69IFIiKq9 .row {
  margin: 0;
  padding: 150px;
}
@media (max-width: 1440px) {
  .cid-u69IFIiKq9 .row {
    padding: 150px 32px;
  }
}
@media (max-width: 1200px) {
  .cid-u69IFIiKq9 .row {
    padding: 150px 8px;
  }
}
@media (max-width: 992px) {
  .cid-u69IFIiKq9 .row {
    padding: 70px 60px;
  }
}
@media (max-width: 768px) {
  .cid-u69IFIiKq9 .row {
    padding: 70px 30px;
  }
}
.cid-u69IFIiKq9 .row .card {
  padding: 0;
  border-radius: 0 !important;
  overflow: visible;
}
.cid-u69IFIiKq9 .desc-wrapper {
  padding-right: 32px;
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-u69IFIiKq9 .desc-wrapper {
    padding: 0;
  }
}
.cid-u69IFIiKq9 .desc-wrapper .mbr-desc {
  padding: 10px 18px;
  display: inline-flex;
  border: 1px solid #cfcfcf;
  border-radius: 30px;
  margin-bottom: 0;
}
.cid-u69IFIiKq9 .title-wrapper {
  margin-bottom: 64px;
}
.cid-u69IFIiKq9 .title-wrapper span {
  color: #009472;
}
.cid-u69IFIiKq9 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-u69IFIiKq9 .cards-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px 40px;
}
@media (max-width: 992px) {
  .cid-u69IFIiKq9 .cards-wrapper {
    display: block;
  }
}
.cid-u69IFIiKq9 .cards-wrapper .item {
  position: relative;
  margin-top: 50px;
}
@media (max-width: 992px) {
  .cid-u69IFIiKq9 .cards-wrapper .item {
    margin: 50px 0 100px 0;
  }
}
.cid-u69IFIiKq9 .cards-wrapper .item .item-wrapper {
  padding: 0 30px 30px;
  border-radius: 16px !important;
  background-color: #fff86d;
}
@media (max-width: 992px) {
  .cid-u69IFIiKq9 .cards-wrapper .item .item-wrapper {
    padding: 0 22px 22px;
  }
}
.cid-u69IFIiKq9 .cards-wrapper .item .item-wrapper .item-img {
  margin-bottom: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  height: 50px;
}
.cid-u69IFIiKq9 .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-u69IFIiKq9 .cards-wrapper .item .item-wrapper .item-content .card-title {
  margin-bottom: 10px;
}
.cid-u69IFIiKq9 .cards-wrapper .item .item-wrapper .item-content .card-desc {
  margin-bottom: 10px;
}
.cid-u69IFIiKq9 .cards-wrapper .item .item-wrapper .item-content .mbr-text {
  margin-bottom: 0;
}
.cid-u69IFIiKq9 .cards-wrapper .item .item-wrapper .item-content .mbr-section-btn {
  margin-top: 20px;
}
.cid-u69IFIiKq9 .cards-wrapper .item .item-wrapper .item-content .mbr-section-btn .btn {
  border: none;
  text-decoration: underline;
}
.cid-u69IFIiKq9 .mbr-desc {
  color: #262626;
}
.cid-u69IFIiKq9 .mbr-section-title {
  color: #131313;
}
.cid-u69IFIiKq9 .card-desc {
  color: #003629;
  text-align: center;
}
.cid-u69IFIiKq9 .card-title {
  color: #131313;
}
.cid-u69IFIiKq9 .card-text {
  color: #131313;
  text-align: center;
}
.cid-u69IFIiKq9 .card-title,
.cid-u69IFIiKq9 .mbr-section-btn {
  text-align: center;
}
.cid-u69IFJAKBE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fff86d;
  overflow: hidden;
}
.cid-u69IFJAKBE .mbr-fallback-image.disabled {
  display: none;
}
.cid-u69IFJAKBE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u69IFJAKBE .card-row {
  align-items: stretch;
}
.cid-u69IFJAKBE .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-u69IFJAKBE .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-u69IFJAKBE .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-u69IFJAKBE .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}
.cid-u69IFJAKBE .item-img img {
  width: 100%;
  aspect-ratio: 1.77777778;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-u69IFJAKBE .card-box {
  padding-top: 30px;
  width: 100%;
}
.cid-u69IFJAKBE .card-title {
  color: #C4CFDE;
  margin-bottom: 0;
}
.cid-u69IFJAKBE .card-subtitle {
  color: #000000;
  margin-bottom: 0;
  margin-top: 20px;
  text-align: center;
}
.cid-u69IFJAKBE .card-text {
  color: #878e99;
  margin-bottom: 0;
  margin-top: 40px;
}
.cid-u69IFJAKBE .mbr-section-btn {
  margin-top: 30px;
}
.cid-u69IFJAKBE .card-text,
.cid-u69IFJAKBE .mbr-section-btn {
  color: #000000;
}
.cid-u69IFKFERJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #f6f6f6;
}
.cid-u69IFKFERJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-u69IFKFERJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u69IFKFERJ .row {
  justify-content: center;
}
.cid-u69IFKFERJ .col-title {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .cid-u69IFKFERJ .col-title {
    margin-bottom: 20px;
  }
}
.cid-u69IFKFERJ .mbr-section-title {
  color: #000000;
  opacity: 0.85;
}
.cid-u69IFKFERJ .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-u69IFKFERJ .mbr-section-subtitle {
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
  }
}
.cid-u69IFKFERJ .card-row {
  align-items: stretch;
}
.cid-u69IFKFERJ .card {
  padding: 10px;
}
.cid-u69IFKFERJ .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-u69IFKFERJ .mbr-iconfont {
  display: block;
  font-size: 40px;
  color: #000000;
}
.cid-u69IFKFERJ .card-head {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-u69IFKFERJ .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: #fff86d;
  transition: .3s all;
}
@media (max-width: 767px) {
  .cid-u69IFKFERJ .iconfont-wrapper {
    min-width: 60px;
    min-height: 60px;
    padding: 5px;
  }
}
.cid-u69IFKFERJ .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-u69IFKFERJ .card-wrapper:hover {
    transform: translate(10px, -10px);
    box-shadow: -16px 16px 0 #fff86d;
  }
}
.cid-u69IFKFERJ .card-wrapper:hover .card-box {
  background-color: #fff86d;
}
.cid-u69IFKFERJ .card-wrapper:hover .iconfont-wrapper {
  background-color: #ffffff;
}
.cid-u69IFKFERJ .card-title {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0;
}
.cid-u69IFKFERJ .card-text {
  margin-top: 20px;
  color: #1d191f;
  margin-bottom: 0;
  text-align: center;
}
.cid-u69IFKFERJ .card-title,
.cid-u69IFKFERJ .iconfont-wrapper {
  text-align: center;
}
.cid-u69IFLSAmh {
  display: flex;
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #fff86d;
}
@media (min-width: 768px) {
  .cid-u69IFLSAmh {
    align-items: center;
  }
  .cid-u69IFLSAmh .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-u69IFLSAmh .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-u69IFLSAmh {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-u69IFLSAmh .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-u69IFLSAmh .content-wrap {
    width: 100%;
  }
}
.cid-u69IFLSAmh .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-u69IFLSAmh .mbr-text,
.cid-u69IFLSAmh .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-u69IFMOad0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u69IFMOad0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u69IFMOad0 .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-u69IFMOad0 .container {
    padding: 0 24px;
  }
}
.cid-u69IFMOad0 .row {
  border-top: 1px solid #000000;
}
@media (min-width: 992px) {
  .cid-u69IFMOad0 .row {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-u69IFMOad0 .row {
    border: none;
  }
}
.cid-u69IFMOad0 .row .card {
  padding: 0;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-u69IFMOad0 .row .card {
    padding: 0 16px;
  }
}
.cid-u69IFMOad0 .content-wrapper {
  padding: 32px;
  position: sticky;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u69IFMOad0 .content-wrapper {
    padding: 24px;
  }
}
.cid-u69IFMOad0 .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-u69IFMOad0 .content-wrapper .mbr-section-title {
    text-align: left;
  }
}
.cid-u69IFMOad0 .content-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-u69IFMOad0 .content-wrapper .mbr-text {
    text-align: left;
  }
}
.cid-u69IFMOad0 .content-wrapper .mbr-section-btn {
  margin-top: 32px;
}
@media (max-width: 992px) {
  .cid-u69IFMOad0 .content-wrapper .mbr-section-btn {
    text-align: left;
    margin-top: 24px;
  }
}
.cid-u69IFMOad0 .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-u69IFMOad0 .panel-group .card:first-child {
  border-top: none;
}
@media (max-width: 992px) {
  .cid-u69IFMOad0 .panel-group .card:first-child {
    border-top: 1px solid #000000;
  }
}
@media (max-width: 992px) {
  .cid-u69IFMOad0 .panel-group .card {
    border-right: none;
  }
}
@media (max-width: 992px) {
  .cid-u69IFMOad0 .panel-group .card {
    padding: 24px;
    border-left: none;
  }
}
.cid-u69IFMOad0 .panel-group .card .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
}
.cid-u69IFMOad0 .panel-group .card .card-header .panel-title {
  display: block;
}
.cid-u69IFMOad0 .panel-group .card .card-header .panel-title:not(.collapsed) .panel-title-edit {
  display: inline;
  padding-left: 24px;
  border-left: 1px solid #000000;
}
.cid-u69IFMOad0 .panel-group .card .card-header .panel-title .panel-title-edit {
  transition: all 0.3s ease-in-out;
  margin: 0;
}
.cid-u69IFMOad0 .panel-group .card .card-header .panel-title .panel-title-edit span {
  color: #000000;
}
.cid-u69IFMOad0 .panel-group .card .panel-collapse .panel-body {
  padding-top: 32px;
}
@media (max-width: 992px) {
  .cid-u69IFMOad0 .panel-group .card .panel-collapse .panel-body {
    padding-top: 24px;
  }
}
.cid-u69IFMOad0 .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-u69IFMOad0 .mbr-section-title {
  color: #F9F6E0;
}
.cid-u69IFMOad0 .mbr-text {
  color: #F9F6E0;
  text-align: right;
}
.cid-u69IFMOad0 .panel-title-edit {
  color: #E0B548;
}
.cid-u69IFMOad0 .panel-text {
  color: #F9F6E0;
}
.cid-u69IFMOad0 .mbr-section-title,
.cid-u69IFMOad0 .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-u69IFMOad0 .panel-title-edit,
.cid-u69IFMOad0 .panel-title {
  color: #000000;
}
.cid-u69IFOk8CA {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fff86d;
}
.cid-u69IFOk8CA .mbr-fallback-image.disabled {
  display: none;
}
.cid-u69IFOk8CA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u69IFOk8CA .row {
  justify-content: flex-start;
}
.cid-u69IFOk8CA .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-u69IFOk8CA .content-container {
    flex-wrap: wrap;
  }
}
.cid-u69IFOk8CA .content-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 100px 65px;
  width: 60%;
}
@media (max-width: 767px) {
  .cid-u69IFOk8CA .content-wrap {
    width: 100%;
    padding: 40px 25px;
  }
}
.cid-u69IFOk8CA .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-u69IFOk8CA .image-wrapper {
    width: 100%;
    border-radius: 20px;
    height: 200px;
  }
}
.cid-u69IFOk8CA .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-u69IFOk8CA .label-container {
  display: flex;
  align-items: center;
  width: max-content;
  padding: 2px 10px;
  margin-bottom: 10px;
  border-radius: 20px;
  background-color: #ffffff;
}
.cid-u69IFOk8CA .label-text {
  color: #000000;
  margin: 0;
}
.cid-u69IFOk8CA .mbr-section-title {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  width: 100%;
}
.cid-u69IFOk8CA .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  margin-top: 15px;
  width: 100%;
}
.cid-u69IFOk8CA .date-text {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  margin-top: 20px;
  width: 100%;
}
.cid-u69IFOk8CA .mbr-section-btn {
  margin-top: 10px;
}
@media (min-width: 576px) {
  .cid-u69IFOk8CA .mbr-section-btn {
    flex-grow: 1;
  }
}
.cid-u69IFPXDvD {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u69IFPXDvD .mbr-fallback-image.disabled {
  display: none;
}
.cid-u69IFPXDvD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u69IFPXDvD .row {
  justify-content: flex-start;
}
.cid-u69IFPXDvD .mbr-section-title {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  text-align: center;
}
.cid-u69IFPXDvD .mbr-section-subtitle {
  color: #1d191f;
  margin-bottom: 0 !important;
  margin-top: 20px;
}
.cid-u69IFPXDvD .mbr-section-subtitle,
.cid-u69IFPXDvD .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-u69IFPXDvD .mbr-section-subtitle,
.cid-u69IFPXDvD .mbr-section-btn DIV {
  text-align: left;
}
.cid-u69IFRsVz9 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u69IFRsVz9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u69IFRsVz9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u69IFRsVz9 .row {
  justify-content: flex-start;
}
.cid-u69IFRsVz9 .content-container {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background-color: #fff86d;
}
.cid-u69IFRsVz9 .content-padding {
  display: flex;
  max-width: 1140px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 80px 100px 0 100px;
}
@media (max-width: 991px) {
  .cid-u69IFRsVz9 .content-padding {
    padding: 80px 75px 0 75px;
  }
}
@media (max-width: 767px) {
  .cid-u69IFRsVz9 .content-padding {
    padding: 60px 20px 0 20px;
  }
}
.cid-u69IFRsVz9 .content-wrap {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 767px) {
  .cid-u69IFRsVz9 .content-wrap {
    margin-bottom: 60px;
  }
}
.cid-u69IFRsVz9 .mbr-section-title {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  width: 100%;
}
.cid-u69IFRsVz9 .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  margin-top: 20px;
  width: 100%;
}
.cid-u69IFRsVz9 .mbr-section-btn {
  width: 100%;
  margin-top: 20px;
}
.cid-u69IFRsVz9 .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}
.cid-u69IFRsVz9 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-u69IFSI934 {
  display: flex;
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .cid-u69IFSI934 {
    align-items: center;
  }
  .cid-u69IFSI934 .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-u69IFSI934 .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-u69IFSI934 {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-u69IFSI934 .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-u69IFSI934 .content-wrap {
    width: 100%;
  }
}
.cid-u69IFSI934 .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-u69IFSI934 .mbr-text,
.cid-u69IFSI934 .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-u69QFluG8V {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u69QFluG8V .mbr-fallback-image.disabled {
  display: none;
}
.cid-u69QFluG8V .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-u69QFluG8V .container {
    padding: 0 30px;
  }
}
.cid-u69QFluG8V .row {
  justify-content: center;
}
.cid-u69QFluG8V .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-u69QFluG8V .video-block .video-wrapper iframe {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-u69QFluG8V .video-block .video-wrapper iframe {
    height: 300px;
  }
}
.cid-u69QFluG8V .video-block .video-wrapper .app-video-wrapper::before {
  color: #fff86d;
  text-shadow: none;
}
.cid-u69QFluG8V .video-block .video-wrapper .app-video-wrapper img {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-u69QFluG8V .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-u69QFluG8V .mbr-section-title {
  color: #212529;
  text-align: center;
}
.cid-u69IFU5c1L {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u69IFU5c1L .mbr-fallback-image.disabled {
  display: none;
}
.cid-u69IFU5c1L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u69IFU5c1L .row {
  justify-content: flex-start;
}
.cid-u69IFU5c1L .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: #fff86d;
}
@media (max-width: 767px) {
  .cid-u69IFU5c1L .content-container {
    padding: 30px;
  }
}
.cid-u69IFU5c1L .content-wrap {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.cid-u69IFU5c1L .mbr-section-title {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  width: 100%;
}
.cid-u69IFU5c1L .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  margin-top: 20px;
  width: 100%;
}
.cid-u69IFU5c1L .mbr-section-btn {
  width: 100%;
  margin-top: 50px;
}
.cid-u69IFU5c1L .mbr-section-subtitle,
.cid-u69IFU5c1L .mbr-section-btn DIV {
  text-align: left;
}
.cid-u69IPCaEDH {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u69IPCaEDH .mbr-fallback-image.disabled {
  display: none;
}
.cid-u69IPCaEDH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u69IPCaEDH .container-fluid {
  padding: 0 70px;
}
@media (max-width: 1440px) {
  .cid-u69IPCaEDH .container-fluid {
    padding: 0 48px;
  }
}
@media (max-width: 992px) {
  .cid-u69IPCaEDH .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-u69IPCaEDH .container {
    padding: 0 20px;
  }
}
.cid-u69IPCaEDH .desc-wrapper .mbr-desc {
  margin-bottom: 30px;
}
.cid-u69IPCaEDH .panel-group .card {
  border-bottom: 1px solid #dfe6ea;
  border-radius: 0 !important;
  padding: 40px 0;
}
.cid-u69IPCaEDH .panel-group .card:first-child {
  border-top: 1px solid #dfe6ea;
}
.cid-u69IPCaEDH .panel-group .card .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
}
.cid-u69IPCaEDH .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-u69IPCaEDH .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  color: #ffffff;
}
.cid-u69IPCaEDH .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper::before {
  transform: scale(1);
}
.cid-u69IPCaEDH .panel-group .card .card-header .panel-title .panel-wrap {
  display: flex;
  align-items: center;
  width: 80%;
}
@media (max-width: 992px) {
  .cid-u69IPCaEDH .panel-group .card .card-header .panel-title .panel-wrap {
    width: 100%;
  }
}
.cid-u69IPCaEDH .panel-group .card .card-header .panel-title .panel-wrap .panel-number {
  min-width: 210px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-u69IPCaEDH .panel-group .card .card-header .panel-title .panel-wrap .panel-number {
    display: none;
  }
}
.cid-u69IPCaEDH .panel-group .card .card-header .panel-title .panel-wrap .panel-title-edit {
  width: 100%;
  margin-bottom: 0;
}
.cid-u69IPCaEDH .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: #fff86d;
  transition: all 0.3s ease-in-out;
  margin-left: 10px;
  border-radius: 100%;
}
.cid-u69IPCaEDH .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-u69IPCaEDH .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-u69IPCaEDH .panel-group .card .panel-collapse .panel-body {
  display: flex;
  padding-top: 40px;
}
.cid-u69IPCaEDH .panel-group .card .panel-collapse .panel-body .panel-padding {
  min-width: 210px;
}
@media (max-width: 992px) {
  .cid-u69IPCaEDH .panel-group .card .panel-collapse .panel-body .panel-padding {
    display: none;
  }
}
.cid-u69IPCaEDH .panel-group .card .panel-collapse .panel-body .panel-text {
  width: 60%;
  margin-bottom: 0;
}
.cid-u69IPCaEDH .mbr-desc {
  color: #000000;
}
.cid-u69IPCaEDH .panel-number {
  color: #000000;
}
.cid-u69IPCaEDH .panel-title-edit {
  color: #000000;
}
.cid-u69IPCaEDH .panel-text {
  color: #000000;
}
.cid-u69IFViHRm {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u69IFViHRm .mbr-fallback-image.disabled {
  display: none;
}
.cid-u69IFViHRm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u69IFViHRm .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u69IFViHRm .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-u69IFViHRm .container {
    padding: 0 14px;
  }
}
.cid-u69IFViHRm .google-map iframe {
  border-radius: 0 !important;
  height: 600px;
}
@media (max-width: 992px) {
  .cid-u69IFViHRm .google-map iframe {
    height: 300px;
  }
}
.cid-u69IFX1p5r .footer-head {
  width: 100%;
  position: relative;
  z-index: 5;
  background-color: #ffffff;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  overflow: hidden;
}
.cid-u69IFX1p5r .img-bg {
  content: '';
  position: absolute;
  top: 0;
  right: 57%;
  bottom: 0;
  left: 0;
  background-color: #fff86d;
  border-top-right-radius: 190px;
  border-bottom-left-radius: 40px;
}
@media (max-width: 991px) {
  .cid-u69IFX1p5r .img-bg {
    display: none;
  }
}
.cid-u69IFX1p5r .container {
  display: flex;
  justify-content: center;
  max-width: 1160px;
}
@media (max-width: 991px) {
  .cid-u69IFX1p5r .container {
    padding: 0 !important;
  }
}
.cid-u69IFX1p5r .row {
  width: 100%;
  align-items: center;
}
.cid-u69IFX1p5r .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-u69IFX1p5r .content-container {
    padding-top: 0;
    background-color: #ffffff;
  }
}
@media (max-width: 991px) {
  .cid-u69IFX1p5r .col-brand {
    padding: 0 15px 65px 15px;
    padding-top: 5rem;
    border-bottom-left-radius: 40px;
    background-color: #fff86d;
  }
}
.cid-u69IFX1p5r .col-links {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
}
@media (max-width: 991px) {
  .cid-u69IFX1p5r .col-links {
    padding: 70px 15px 0 15px;
  }
}
.cid-u69IFX1p5r .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-u69IFX1p5r .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-u69IFX1p5r .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-u69IFX1p5r .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u69IFX1p5r .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u69IFX1p5r .brand-text {
  margin-top: 75px;
  margin-bottom: 0;
  color: #000000;
  opacity: 0.85;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-u69IFX1p5r .brand-text {
    margin-top: 45px;
  }
}
.cid-u69IFX1p5r .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 10px;
}
.cid-u69IFX1p5r .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.cid-u69IFX1p5r .mbr-iconfont {
  font-size: 16px;
  color: #000000;
}
.cid-u69IFX1p5r .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-u69IFX1p5r .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u69IFX1p5r .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
@media (max-width: 991px) {
  .cid-u69IFX1p5r .col-link {
    width: auto !important;
    max-width: 33.33333333%;
  }
}
@media (max-width: 767px) {
  .cid-u69IFX1p5r .col-link {
    max-width: 100%;
    width: 100% !important;
  }
}
@media (max-width: 768px) {
  .cid-u69IFX1p5r .col-link1 {
    margin-bottom: 30px;
  }
}
.cid-u69IFX1p5r .col-link2 {
  padding-left: 30px;
}
@media (max-width: 768px) {
  .cid-u69IFX1p5r .col-link2 {
    padding-left: 0;
    margin-bottom: 30px;
  }
}
@media (min-width: 1200px) {
  .cid-u69IFX1p5r .col-link3 {
    padding-left: 70px;
  }
}
@media (max-width: 991px) {
  .cid-u69IFX1p5r .col-link3 {
    padding-left: 70px;
  }
}
@media (max-width: 768px) {
  .cid-u69IFX1p5r .col-link3 {
    padding-left: 0;
  }
}
.cid-u69IFX1p5r .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #1d191f;
}
.cid-u69IFX1p5r .list li {
  display: flex;
  align-items: center;
  line-height: 1.44;
}
.cid-u69IFX1p5r .list a {
  display: flex;
  align-items: center;
  line-height: 1.44;
}
.cid-u69IFX1p5r .footer-copyright {
  position: relative;
  z-index: 4;
  width: 100%;
  margin-top: -40px;
  background-color: #ffffff;
}
.cid-u69IFX1p5r .col-copyright {
  padding: 85px 0 60px 0 !important;
}
@media (max-width: 991px) {
  .cid-u69IFX1p5r .col-copyright {
    padding: 85px 10px 60px 10px !important;
  }
}
.cid-u69IFX1p5r .copyright {
  color: #C3EAD8;
}
@media (max-width: 991px) {
  .cid-u69IFX1p5r .copyright {
    text-align: center !important;
  }
}
