.btn {
  border-width: 2px;
}
body {
  font-family: Noto Sans;
}
.display-1 {
  font-family: 'tahoma';
  font-size: 4.375rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.46875rem;
}
.display-2 {
  font-family: 'tahoma';
  font-size: 2.5rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.125rem;
}
.display-4 {
  font-family: 'tahoma';
  font-size: 1.25rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.5625rem;
}
.display-5 {
  font-family: 'tahoma';
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 500;
}
.display-5 > .mbr-iconfont {
  font-size: 1.75rem;
}
.display-7 {
  font-family: 'tahoma';
  font-size: 1.125rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.40625rem;
}
/* ---- 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.5rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.0625rem;
    font-size: calc( 2.18125rem + (4.375 - 2.18125) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.18125rem + (4.375 - 2.18125) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1rem;
    font-size: calc( 1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.9rem;
    font-size: calc( 1.04375rem + (1.125 - 1.04375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.04375rem + (1.125 - 1.04375) * ((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: #164194 !important;
}
.bg-success {
  background-color: #61411e !important;
}
.bg-info {
  background-color: #446a49 !important;
}
.bg-warning {
  background-color: #ffffff !important;
}
.bg-danger {
  background-color: #164194 !important;
}
.btn-primary:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #164194;
  border: 1px solid #164194;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-primary,
.btn-primary:active {
  background-color: transparent  !important;
  border-color: #164194 !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: #000000 !important;
}
.btn-primary:hover:before,
.btn-primary:focus:before,
.btn-primary.focus:before,
.btn-primary.active:before {
  background-color: #164194 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #000000 !important;
  background-color: #0b2049 !important;
  border-color: #0b2049 !important;
}
.btn-secondary:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #eddcce;
  border: 1px solid #eddcce;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-secondary,
.btn-secondary:active {
  background-color: transparent  !important;
  border-color: #eddcce !important;
  color: #765aae !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: #765aae !important;
}
.btn-secondary:hover:before,
.btn-secondary:focus:before,
.btn-secondary.focus:before,
.btn-secondary.active:before {
  background-color: #eddcce !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #765aae !important;
  background-color: #d6af8f !important;
  border-color: #d6af8f !important;
}
.btn-info:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #446a49;
  border: 1px solid #446a49;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-info,
.btn-info:active {
  background-color: transparent  !important;
  border-color: #446a49 !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: #000000 !important;
}
.btn-info:hover:before,
.btn-info:focus:before,
.btn-info.focus:before,
.btn-info.active:before {
  background-color: #446a49 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #000000 !important;
  background-color: #223525 !important;
  border-color: #223525 !important;
}
.btn-success:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #61411e;
  border: 1px solid #61411e;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-success,
.btn-success:active {
  background-color: transparent  !important;
  border-color: #61411e !important;
  color: #000000 !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: #000000 !important;
}
.btn-success:hover:before,
.btn-success:focus:before,
.btn-success.focus:before,
.btn-success.active:before {
  background-color: #61411e !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #000000 !important;
  background-color: #1f150a !important;
  border-color: #1f150a !important;
}
.btn-warning:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1px solid #ffffff;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-warning,
.btn-warning:active {
  background-color: transparent  !important;
  border-color: #ffffff !important;
  color: #a6a6a6 !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: #a6a6a6 !important;
}
.btn-warning:hover:before,
.btn-warning:focus:before,
.btn-warning.focus:before,
.btn-warning.active:before {
  background-color: #ffffff !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #a6a6a6 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-danger:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #164194;
  border: 1px solid #164194;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-danger,
.btn-danger:active {
  background-color: transparent  !important;
  border-color: #164194 !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: #000000 !important;
}
.btn-danger:hover:before,
.btn-danger:focus:before,
.btn-danger.focus:before,
.btn-danger.active:before {
  background-color: #164194 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #000000 !important;
  background-color: #0b2049 !important;
  border-color: #0b2049 !important;
}
.btn-white:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1px solid #ffffff;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-white,
.btn-white:active {
  background-color: transparent  !important;
  border-color: #ffffff !important;
  color: #a6a6a6 !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: #a6a6a6 !important;
}
.btn-white:hover:before,
.btn-white:focus:before,
.btn-white.focus:before,
.btn-white.active:before {
  background-color: #ffffff !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #a6a6a6 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-black:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #353535;
  border: 1px solid #353535;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-black,
.btn-black:active {
  background-color: transparent  !important;
  border-color: #353535 !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: #000000 !important;
}
.btn-black:hover:before,
.btn-black:focus:before,
.btn-black.focus:before,
.btn-black.active:before {
  background-color: #353535 !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #000000 !important;
  background-color: #0a0a0a !important;
  border-color: #0a0a0a !important;
}
.btn-primary-outline:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #164194;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-primary-outline,
.btn-primary-outline:active {
  color: #000000;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000000 !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #000000 !important;
  background-color: #0b2049 !important;
  border-color: #0b2049 !important;
}
.btn-secondary-outline:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #eddcce;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  color: #164194;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #164194 !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #164194 !important;
  background-color: #d6af8f !important;
  border-color: #d6af8f !important;
}
.btn-info-outline:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #446a49;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-info-outline,
.btn-info-outline:active {
  color: #000000;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #000000 !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #000000 !important;
  background-color: #223525 !important;
  border-color: #223525 !important;
}
.btn-success-outline:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #61411e;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-success-outline,
.btn-success-outline:active {
  color: #000000;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #000000 !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #000000 !important;
  background-color: #1f150a !important;
  border-color: #1f150a !important;
}
.btn-warning-outline:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #ffffff;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-warning-outline,
.btn-warning-outline:active {
  color: #164194;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #164194 !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #164194 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-danger-outline:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #164194;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-danger-outline,
.btn-danger-outline:active {
  color: #000000;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #000000 !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #000000 !important;
  background-color: #0b2049 !important;
  border-color: #0b2049 !important;
}
.btn-black-outline:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #164194;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-black-outline,
.btn-black-outline:active {
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #000000 !important;
  background-color: #0b2049 !important;
  border-color: #0b2049 !important;
}
.btn-white-outline:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #164194;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-white-outline,
.btn-white-outline:active {
  color: #000000;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #000000 !important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #000000 !important;
  background-color: #0b2049 !important;
  border-color: #0b2049 !important;
}
.text-primary {
  color: #164194 !important;
}
.text-secondary {
  color: #eddcce !important;
}
.text-success {
  color: #61411e !important;
}
.text-info {
  color: #446a49 !important;
}
.text-warning {
  color: #ffffff !important;
}
.text-danger {
  color: #164194 !important;
}
.text-white {
  color: #164194 !important;
}
.text-black {
  color: #164194 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #091a3b !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #d2a783 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #130d06 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1c2c1e !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #cccccc !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #091a3b !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: #020202 !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: #164194;
}
.nav-tabs .nav-link:not(.active) {
  color: #353535;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #446a49;
}
.alert-warning {
  background-color: #ffffff;
}
.alert-danger {
  background-color: #164194;
}
.mbr-gallery-filter li.active .btn {
  background-color: #164194;
  border-color: #164194;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #164194;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #467ce3;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #c2823c;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #80ae86;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #467ce3;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'tahoma';
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.5625rem;
}
.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: #164194 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'tahoma';
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.5625rem;
}
blockquote {
  border-color: #164194;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #164194;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #164194;
}
.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: #164194;
  border-bottom-color: #164194;
}
.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: #164194 !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: #eddcce !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='%23164194' %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-duration: .4s;
}
a:hover {
  background-image: none !important;
}
.container {
  max-width: 1190px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1199px) {
  .container {
    max-width: 990px;
  }
}
@media (max-width: 991px) {
  .container {
    max-width: 670px;
  }
}
@media (max-width: 991px) {
  .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
}
.row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.row {
  justify-content: center;
}
b,
strong {
  font-weight: 700 !important;
}
.mbr-section-btn .btn {
  position: relative;
  min-width: 200px;
  min-height: 60px;
  padding: 14px 28px;
  font-weight: 500;
  transition-duration: .35s;
  box-shadow: none !important;
  border: none !important;
  border-radius: 0 !important;
  z-index: 2;
}
.mbr-section-btn .btn.btn-black {
  color: #ffffff !important;
}
.mbr-section-btn .btn.btn-white {
  color: #353535 !important;
}
.mbr-section-btn .btn.btn-black-outline {
  color: #353535 !important;
}
.mbr-section-btn .btn.btn-white-outline {
  color: #ffffff !important;
}
.mbr-section-btn .btn:hover {
  transform: scale(0.9);
}
.mbr-section-btn .btn:hover:before {
  transform: rotate(0deg) scale(1.1111);
}
.cid-tqnGSSQQAK {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 90px;
}
.cid-tqnGSSQQAK nav.navbar {
  position: fixed;
}
.cid-tqnGSSQQAK .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-tqnGSSQQAK .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tqnGSSQQAK .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tqnGSSQQAK .dropdown-item:hover,
.cid-tqnGSSQQAK .dropdown-item:focus {
  background: #164194 !important;
  color: white !important;
}
.cid-tqnGSSQQAK .dropdown-item:hover span {
  color: white;
}
.cid-tqnGSSQQAK .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tqnGSSQQAK .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tqnGSSQQAK .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tqnGSSQQAK .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tqnGSSQQAK .nav-link {
  position: relative;
}
.cid-tqnGSSQQAK .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tqnGSSQQAK .container {
    flex-wrap: nowrap;
  }
}
.cid-tqnGSSQQAK .iconfont-wrapper {
  color: #353535 !important;
  font-size: 18px;
  padding-right: 0;
}
.cid-tqnGSSQQAK .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-tqnGSSQQAK .iconfont-wrapper .mbr-iconfont:hover {
  color: #164194;
}
.cid-tqnGSSQQAK .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 66.66666667%;
  margin-right: auto;
  min-height: 89px;
}
.cid-tqnGSSQQAK .navbar-nav .nav-item {
  margin: 2px;
}
.cid-tqnGSSQQAK .navbar-nav .nav-link {
  padding: 5px 9px;
  transition: .4s all;
}
.cid-tqnGSSQQAK .navbar-nav .nav-link:hover {
  transform: scale(1.1);
}
.cid-tqnGSSQQAK .dropdown-menu,
.cid-tqnGSSQQAK .navbar.opened {
  background: #eddcce !important;
}
.cid-tqnGSSQQAK .nav-item:focus,
.cid-tqnGSSQQAK .nav-link:focus {
  outline: none;
}
.cid-tqnGSSQQAK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tqnGSSQQAK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tqnGSSQQAK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tqnGSSQQAK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqnGSSQQAK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tqnGSSQQAK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tqnGSSQQAK .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #eddcce;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-tqnGSSQQAK .navbar.opened {
  transition: all 0.3s;
}
.cid-tqnGSSQQAK .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tqnGSSQQAK .navbar .navbar-logo img {
  width: auto;
}
.cid-tqnGSSQQAK .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tqnGSSQQAK .navbar.collapsed {
  justify-content: center;
}
.cid-tqnGSSQQAK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tqnGSSQQAK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tqnGSSQQAK .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tqnGSSQQAK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tqnGSSQQAK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tqnGSSQQAK .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-tqnGSSQQAK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tqnGSSQQAK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tqnGSSQQAK .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tqnGSSQQAK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tqnGSSQQAK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tqnGSSQQAK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tqnGSSQQAK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tqnGSSQQAK .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-tqnGSSQQAK .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tqnGSSQQAK .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tqnGSSQQAK .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tqnGSSQQAK .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tqnGSSQQAK .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tqnGSSQQAK .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tqnGSSQQAK .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tqnGSSQQAK .navbar.navbar-short {
  min-height: 90px;
}
.cid-tqnGSSQQAK .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tqnGSSQQAK .navbar.navbar-short .navbar-brand {
  min-height: 89px;
  padding: 0;
}
.cid-tqnGSSQQAK .navbar-brand {
  min-height: 89px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  width: 25%;
}
.cid-tqnGSSQQAK .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tqnGSSQQAK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tqnGSSQQAK .dropdown-item.active,
.cid-tqnGSSQQAK .dropdown-item:active {
  background-color: transparent;
}
.cid-tqnGSSQQAK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tqnGSSQQAK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tqnGSSQQAK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tqnGSSQQAK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #eddcce;
}
.cid-tqnGSSQQAK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tqnGSSQQAK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqnGSSQQAK ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tqnGSSQQAK .navbar-buttons {
  text-align: center;
}
.cid-tqnGSSQQAK button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  background-color: #f6efe8;
  border-radius: 50%;
}
.cid-tqnGSSQQAK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 13px;
  width: 22px;
  height: 2px;
  background-color: #715537;
}
.cid-tqnGSSQQAK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 17px;
  transition: all 0.2s;
}
.cid-tqnGSSQQAK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-tqnGSSQQAK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-tqnGSSQQAK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 29px;
  transition: all 0.2s;
}
.cid-tqnGSSQQAK nav.opened .hamburger span:nth-child(1) {
  top: 17px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-tqnGSSQQAK nav.opened .hamburger span:nth-child(2) {
  transform: translateY(-1px) rotate(45deg);
  transition: all 0.25s;
}
.cid-tqnGSSQQAK nav.opened .hamburger span:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
  transition: all 0.25s;
}
.cid-tqnGSSQQAK nav.opened .hamburger span:nth-child(4) {
  top: 29px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-tqnGSSQQAK .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tqnGSSQQAK a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqnGSSQQAK .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-tqnGSSQQAK .navbar {
    height: 70px;
  }
  .cid-tqnGSSQQAK .navbar.opened {
    height: auto;
  }
  .cid-tqnGSSQQAK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqnGSSQQAK .container,
.cid-tqnGSSQQAK .container-fluid {
  flex-wrap: wrap;
}
.cid-tqnGSSQQAK .navbar-collapse {
  width: 75%;
  min-height: 89px;
}
.cid-tqnGSSQQAK .border-item {
  width: 100%;
  height: 1px;
  background-color: #caa9a8;
}
.cid-tqnGSSQQAK .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-tqnGSSQQAK .navbar-brand {
    width: calc(100% - 48px) !important;
    min-height: 89px;
  }
  .cid-tqnGSSQQAK .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 1rem;
    order: 5;
  }
  .cid-tqnGSSQQAK .navbar-nav {
    width: 100%;
  }
}
.cid-tqnIBxS2Xz {
  background-image: url("../../../assets/images/hintergrund-3.png-1451x816.png");
  overflow: hidden;
}
.cid-tqnIBxS2Xz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqnIBxS2Xz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqnIBxS2Xz .row {
  flex-wrap: nowrap;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tqnIBxS2Xz .row {
    flex-wrap: wrap;
  }
}
.cid-tqnIBxS2Xz .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tqnIBxS2Xz .text-wrap {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tqnIBxS2Xz .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-tqnIBxS2Xz .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #a9bbab;
  transform: translateY(40%);
}
.cid-tqnIBxS2Xz .mbr-section-title {
  color: #eddcce;
  text-align: left;
}
.cid-tqnIBxS2Xz .mbr-section-title a {
  pointer-events: none !important;
  font-style: italic !important;
  font-weight: bold !important;
}
.cid-tqnIBxS2Xz .mbr-section-subtitle {
  margin-top: 30px;
  color: #353535;
}
@media (max-width: 767px) {
  .cid-tqnIBxS2Xz .mbr-section-subtitle {
    margin-top: 12px;
  }
}
.cid-tqnIBxS2Xz .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tqnIBxS2Xz .mbr-text {
    margin-top: 12px;
  }
}
.cid-tqnIBxS2Xz .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tqnIBxS2Xz .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-tqnIBxS2Xz .col-img {
  width: 430px;
}
@media (max-width: 1199px) {
  .cid-tqnIBxS2Xz .col-img {
    width: 350px;
  }
}
.cid-tqnIBxS2Xz .img-wrap {
  position: relative;
  width: 100%;
}
.cid-tqnIBxS2Xz .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-top-left-radius: 65px;
  border-top-right-radius: 65px;
  border-bottom-right-radius: 65px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-tqnIBxS2Xz .img-wrap .img-box {
    border-top-left-radius: 55px;
    border-top-right-radius: 55px;
    border-bottom-right-radius: 55px;
  }
}
.cid-tqnIBxS2Xz .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-tqnIBxS2Xz .img-wrap .frame-box {
  position: absolute;
  height: 240px;
}
.cid-tqnIBxS2Xz .img-wrap .frame-box svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}
.cid-tqnIBxS2Xz .img-wrap .frame-box-1 {
  bottom: -20%;
  left: -14%;
  width: 85%;
  transform: rotate(10deg);
}
.cid-tqnIBxS2Xz .img-wrap .frame-box-2 {
  bottom: -18%;
  right: -14%;
  width: 84%;
  transform: rotate(0deg);
}
@media (max-width: 991px) {
  .cid-tqnIBxS2Xz .img-wrap .frame-box-2 {
    bottom: auto;
    top: -15%;
  }
}
.cid-tqnIBxS2Xz .mbr-text,
.cid-tqnIBxS2Xz .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-vmkT1fzG32 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #164194;
}
.cid-vmkT1fzG32 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vmkT1fzG32 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vmkT1fzG32 .text-wrap {
  width: 100%;
}
.cid-vmkT1fzG32 .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 767px) {
  .cid-vmkT1fzG32 .mbr-section-head {
    margin-bottom: 60px;
  }
}
.cid-vmkT1fzG32 .mbr-section-title {
  color: #eddcce;
  margin-bottom: 0;
}
.cid-vmkT1fzG32 .mbr-text {
  color: #353535;
  margin-top: 20px;
}
.cid-vmkT1fzG32 .item-row {
  row-gap: 40px;
  margin-left: -20px;
  margin-right: -20px;
}
.cid-vmkT1fzG32 .item-row > [class*="col"] {
  padding-left: 20px;
  padding-right: 20px;
}
.cid-vmkT1fzG32 .card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  height: 100%;
  background-color: #f8f1ea;
  overflow: hidden;
}
.cid-vmkT1fzG32 .card_1 {
  border: 1px solid rgba(248, 241, 234, 0.8);
  border-radius: 0 45px 45px 45px;
}
.cid-vmkT1fzG32 .card_1 .card-title-wrap {
  border-radius: 0 44px 44px 44px;
  border: 1px solid rgba(248, 241, 234, 0.8);
  background-color: rgba(150, 173, 218, 0.8);
}
.cid-vmkT1fzG32 .card_2 {
  border: 1px solid rgba(248, 241, 234, 0.8);
  border-radius: 45px;
}
.cid-vmkT1fzG32 .card_2 .card-title-wrap {
  border-radius: 44px;
  border: 1px solid rgba(248, 241, 234, 0.8);
  background-color: rgba(150, 173, 218, 0.8);
}
.cid-vmkT1fzG32 .card_3 {
  border: 1px solid rgba(130, 157, 133, 0.8);
  border-radius: 45px 45px 0 45px;
}
.cid-vmkT1fzG32 .card_3 .card-title-wrap {
  border-radius: 44px 44px 0 44px;
  border: 1px solid rgba(130, 157, 133, 0.8);
  background-color: rgba(195, 195, 195, 0.8);
}
.cid-vmkT1fzG32 .card-title-wrap {
  padding: 45px 26px;
}
.cid-vmkT1fzG32 .card-title {
  width: 100%;
  margin: 0;
  color: #164194;
}
.cid-vmkT1fzG32 .card-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex-grow: 1;
  padding: 32px 26px 50px;
}
.cid-vmkT1fzG32 .card-text {
  color: #353535;
  margin: 0 0 auto;
}
.cid-vmkT1fzG32 .card-text-bottom {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  row-gap: 18px;
  margin-top: 28px;
}
.cid-vmkT1fzG32 .card-duration {
  color: #353535;
}
.cid-vmkT1fzG32 .card-cost {
  color: #353535;
}
.cid-vmkT1fzG32 .mbr-section-btn {
  margin-top: 5px;
}
.cid-vmkT1fzG32 .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
.cid-vmkT1fzG32 .card-text,
.cid-vmkT1fzG32 .mbr-section-btn {
  color: #164194;
}
.cid-tqnMpBk11O {
  padding-top: 10rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/fl-coaching-246-1920x895.jpeg");
}
.cid-tqnMpBk11O .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqnMpBk11O .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqnMpBk11O .mbr-section-title {
  width: 100%;
  color: #164194;
  margin-bottom: 0;
}
.cid-tqnMpBk11O .mbr-section-title.display-4 {
  font-size: 40px;
}
@media (max-width: 767px) {
  .cid-tqnMpBk11O .mbr-section-title.display-4 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 575px) {
  .cid-tqnMpBk11O .mbr-section-title.display-4 {
    font-size: 26px;
  }
}
.cid-tqnMpBk11O .mbr-text {
  width: 100%;
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tqnMpBk11O .mbr-text {
    margin-top: 16px;
  }
}
.cid-tqnMpBk11O .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tqnMpBk11O .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-tqnJNh3H3d {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #eddcce;
  overflow: hidden;
}
.cid-tqnJNh3H3d .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqnJNh3H3d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqnJNh3H3d .row {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tqnJNh3H3d .row {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-tqnJNh3H3d .col-text {
    order: 2;
  }
}
.cid-tqnJNh3H3d .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tqnJNh3H3d .text-wrap {
    margin-top: 30px;
  }
}
.cid-tqnJNh3H3d .mbr-section-title {
  color: #164194;
}
.cid-tqnJNh3H3d .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tqnJNh3H3d .mbr-text {
    margin-top: 12px;
  }
}
.cid-tqnJNh3H3d .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tqnJNh3H3d .mbr-section-btn {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tqnJNh3H3d .col-img {
    order: 1;
  }
}
.cid-tqnJNh3H3d .img-wrap {
  position: relative;
  width: 100%;
}
.cid-tqnJNh3H3d .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 65px 65px 65px 0;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-tqnJNh3H3d .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
  }
}
@media (max-width: 991px) {
  .cid-tqnJNh3H3d .img-wrap .img-box {
    border-radius: 65px 65px 65px 0;
  }
}
@media (max-width: 767px) {
  .cid-tqnJNh3H3d .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
  }
}
@media (max-width: 575px) {
  .cid-tqnJNh3H3d .img-wrap .img-box {
    border-radius: 45px 45px 45px 0;
  }
}
.cid-tqnJNh3H3d .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-tqnJNh3H3d .mbr-text,
.cid-tqnJNh3H3d .mbr-section-btn {
  text-align: left;
  color: #164194;
}
.cid-vmU5SmjXMY {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #164194;
}
.cid-vmU5SmjXMY .mbr-fallback-image.disabled {
  display: none;
}
.cid-vmU5SmjXMY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vmU5SmjXMY .text-wrap {
  width: 100%;
}
.cid-vmU5SmjXMY .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 767px) {
  .cid-vmU5SmjXMY .mbr-section-head {
    margin-bottom: 60px;
  }
}
.cid-vmU5SmjXMY .mbr-section-title {
  color: #eddcce;
  margin-bottom: 0;
}
.cid-vmU5SmjXMY .mbr-text {
  color: #353535;
  margin-top: 20px;
}
.cid-vmU5SmjXMY .item-row {
  row-gap: 40px;
  margin-left: -20px;
  margin-right: -20px;
}
.cid-vmU5SmjXMY .item-row > [class*="col"] {
  padding-left: 20px;
  padding-right: 20px;
}
.cid-vmU5SmjXMY .card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  height: 100%;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-vmU5SmjXMY .card_1 {
  border: 1px solid rgba(248, 241, 234, 0.8);
  border-radius: 0 45px 45px 45px;
}
.cid-vmU5SmjXMY .card_1 .card-title-wrap {
  border-radius: 0 44px 44px 44px;
  border: 1px solid rgba(248, 241, 234, 0.8);
  background-color: rgba(150, 173, 218, 0.8);
}
.cid-vmU5SmjXMY .card_2 {
  border: 1px solid rgba(248, 241, 234, 0.8);
  border-radius: 45px;
}
.cid-vmU5SmjXMY .card_2 .card-title-wrap {
  border-radius: 44px;
  border: 1px solid rgba(248, 241, 234, 0.8);
  background-color: rgba(150, 173, 218, 0.8);
}
.cid-vmU5SmjXMY .card_3 {
  border: 1px solid rgba(130, 157, 133, 0.8);
  border-radius: 45px 45px 0 45px;
}
.cid-vmU5SmjXMY .card_3 .card-title-wrap {
  border-radius: 44px 44px 0 44px;
  border: 1px solid rgba(130, 157, 133, 0.8);
  background-color: rgba(195, 195, 195, 0.8);
}
.cid-vmU5SmjXMY .card-title-wrap {
  padding: 45px 26px;
}
.cid-vmU5SmjXMY .card-title {
  width: 100%;
  margin: 0;
  color: #164194;
}
.cid-vmU5SmjXMY .card-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex-grow: 1;
  padding: 32px 26px 50px;
}
.cid-vmU5SmjXMY .card-text {
  color: #353535;
  margin: 0 0 auto;
}
.cid-vmU5SmjXMY .card-text-bottom {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  row-gap: 18px;
  margin-top: 28px;
}
.cid-vmU5SmjXMY .card-duration {
  color: #353535;
}
.cid-vmU5SmjXMY .card-cost {
  color: #353535;
}
.cid-vmU5SmjXMY .mbr-section-btn {
  margin-top: 5px;
}
.cid-vmU5SmjXMY .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
.cid-vmU5SmjXMY .card-text,
.cid-vmU5SmjXMY .mbr-section-btn {
  color: #164194;
}
.cid-vmU5SVXMU6 {
  padding-top: 4rem;
  padding-bottom: 6rem;
  background-color: #164194;
}
.cid-vmU5SVXMU6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vmU5SVXMU6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vmU5SVXMU6 .text-wrap {
  width: 100%;
}
.cid-vmU5SVXMU6 .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 767px) {
  .cid-vmU5SVXMU6 .mbr-section-head {
    margin-bottom: 60px;
  }
}
.cid-vmU5SVXMU6 .mbr-section-title {
  color: #829D85;
  margin-bottom: 0;
}
.cid-vmU5SVXMU6 .mbr-text {
  color: #353535;
  margin-top: 20px;
}
.cid-vmU5SVXMU6 .item-row {
  row-gap: 40px;
  margin-left: -20px;
  margin-right: -20px;
}
.cid-vmU5SVXMU6 .item-row > [class*="col"] {
  padding-left: 20px;
  padding-right: 20px;
}
.cid-vmU5SVXMU6 .card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  height: 100%;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-vmU5SVXMU6 .card_1 {
  border: 1px solid rgba(248, 241, 234, 0.8);
  border-radius: 0 45px 45px 45px;
}
.cid-vmU5SVXMU6 .card_1 .card-title-wrap {
  border-radius: 0 44px 44px 44px;
  border: 1px solid rgba(248, 241, 234, 0.8);
  background-color: rgba(150, 173, 218, 0.8);
}
.cid-vmU5SVXMU6 .card_2 {
  border: 1px solid rgba(248, 241, 234, 0.8);
  border-radius: 45px;
}
.cid-vmU5SVXMU6 .card_2 .card-title-wrap {
  border-radius: 44px;
  border: 1px solid rgba(248, 241, 234, 0.8);
  background-color: rgba(150, 173, 218, 0.8);
}
.cid-vmU5SVXMU6 .card_3 {
  border: 1px solid rgba(130, 157, 133, 0.8);
  border-radius: 45px 45px 0 45px;
}
.cid-vmU5SVXMU6 .card_3 .card-title-wrap {
  border-radius: 44px 44px 0 44px;
  border: 1px solid rgba(130, 157, 133, 0.8);
  background-color: rgba(195, 195, 195, 0.8);
}
.cid-vmU5SVXMU6 .card-title-wrap {
  padding: 45px 26px;
}
.cid-vmU5SVXMU6 .card-title {
  width: 100%;
  margin: 0;
  color: #164194;
}
.cid-vmU5SVXMU6 .card-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex-grow: 1;
  padding: 32px 26px 50px;
}
.cid-vmU5SVXMU6 .card-text {
  color: #353535;
  margin: 0 0 auto;
}
.cid-vmU5SVXMU6 .card-text-bottom {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  row-gap: 18px;
  margin-top: 28px;
}
.cid-vmU5SVXMU6 .card-duration {
  color: #353535;
}
.cid-vmU5SVXMU6 .card-cost {
  color: #353535;
}
.cid-vmU5SVXMU6 .mbr-section-btn {
  margin-top: 5px;
}
.cid-vmU5SVXMU6 .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
.cid-tqnOQy9hhI {
  padding-top: 4rem;
  padding-bottom: 6rem;
  background-color: #eddcce;
}
.cid-tqnOQy9hhI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqnOQy9hhI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqnOQy9hhI .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-tqnOQy9hhI .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tqnOQy9hhI .mbr-section-head {
    margin-bottom: 50px;
  }
}
.cid-tqnOQy9hhI .mbr-section-title {
  color: #164194;
  margin-bottom: 0;
}
.cid-tqnOQy9hhI .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 991px) {
  .cid-tqnOQy9hhI .col-img {
    display: none;
  }
}
.cid-tqnOQy9hhI .img-wrap {
  width: 100%;
}
.cid-tqnOQy9hhI .img-wrap .img-box {
  width: 100%;
  border-radius: 65px 65px 0 65px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-tqnOQy9hhI .img-wrap .img-box {
    border-radius: 40px 40px 0 40px;
  }
}
.cid-tqnOQy9hhI .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-tqnOQy9hhI .mbr-iconfont {
  position: relative;
  font-size: 24px !important;
  font-family: 'Moririse2' !important;
  color: #987a5a;
  margin-left: 1rem;
  padding: 10px;
  transition: .3s all;
}
.cid-tqnOQy9hhI .mbr-iconfont:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(195, 195, 195, 0.9);
  opacity: 0;
  transition: .3s all;
}
.cid-tqnOQy9hhI .mbr-iconfont:before {
  position: relative;
  z-index: 2;
}
.cid-tqnOQy9hhI .panel-group {
  border: none;
  border-top: 1px solid #895957;
  margin-top: 10px;
}
@media (max-width: 991px) {
  .cid-tqnOQy9hhI .panel-group {
    margin-top: 0;
  }
}
.cid-tqnOQy9hhI .card {
  border-bottom: 1px solid #895957;
  border-radius: 0;
}
.cid-tqnOQy9hhI .card-header {
  padding: 20px 0;
  border: none;
  background-color: transparent;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cid-tqnOQy9hhI .card-header {
    padding: 8px 0;
  }
}
.cid-tqnOQy9hhI .card-header:hover .mbr-iconfont {
  color: #895957;
}
.cid-tqnOQy9hhI .card-header:hover .mbr-iconfont:after {
  opacity: 1;
}
.cid-tqnOQy9hhI .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #987A5A;
}
.cid-tqnOQy9hhI .panel-title[aria-expanded="true"] .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-tqnOQy9hhI .panel-title-edit {
  color: #164194;
}
.cid-tqnOQy9hhI .panel-body {
  padding: 0 0 40px;
}
@media (max-width: 767px) {
  .cid-tqnOQy9hhI .panel-body {
    padding: 0 0 24px;
  }
}
.cid-tqnOQy9hhI .panel-text {
  color: #164194;
  margin: 0;
}
.cid-tqnNMOA2Of {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #164194;
}
.cid-tqnNMOA2Of .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqnNMOA2Of .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqnNMOA2Of .text-wrap {
  width: 100%;
}
.cid-tqnNMOA2Of .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 767px) {
  .cid-tqnNMOA2Of .mbr-section-head {
    margin-bottom: 60px;
  }
}
.cid-tqnNMOA2Of .mbr-section-title {
  color: #eddcce;
  margin-bottom: 0;
}
.cid-tqnNMOA2Of .mbr-text {
  color: #eddcce;
  margin-top: 20px;
}
.cid-tqnNMOA2Of .item-row {
  row-gap: 40px;
  margin-left: -20px;
  margin-right: -20px;
}
.cid-tqnNMOA2Of .item-row > [class*="col"] {
  padding-left: 20px;
  padding-right: 20px;
}
.cid-tqnNMOA2Of .card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  height: 100%;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-tqnNMOA2Of .card_1 {
  border: 1px solid rgba(248, 241, 234, 0.8);
  border-radius: 0 45px 45px 45px;
}
.cid-tqnNMOA2Of .card_1 .card-title-wrap {
  border-radius: 0 44px 44px 44px;
  border: 1px solid rgba(248, 241, 234, 0.8);
  background-color: rgba(150, 173, 218, 0.8);
}
.cid-tqnNMOA2Of .card_2 {
  border: 1px solid rgba(248, 241, 234, 0.8);
  border-radius: 45px;
}
.cid-tqnNMOA2Of .card_2 .card-title-wrap {
  border-radius: 44px;
  border: 1px solid rgba(248, 241, 234, 0.8);
  background-color: rgba(150, 173, 218, 0.8);
}
.cid-tqnNMOA2Of .card_3 {
  border: 1px solid rgba(248, 241, 234, 0.8);
  border-radius: 45px 45px 0 45px;
}
.cid-tqnNMOA2Of .card_3 .card-title-wrap {
  border-radius: 44px 44px 0 44px;
  border: 1px solid rgba(248, 241, 234, 0.8);
  background-color: rgba(150, 173, 218, 0.8);
}
.cid-tqnNMOA2Of .card-title-wrap {
  padding: 45px 26px;
}
.cid-tqnNMOA2Of .card-title {
  width: 100%;
  margin: 0;
  color: #164194;
}
.cid-tqnNMOA2Of .card-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex-grow: 1;
  padding: 32px 26px 50px;
}
.cid-tqnNMOA2Of .card-text {
  color: #353535;
  margin: 0 0 auto;
}
.cid-tqnNMOA2Of .card-text-bottom {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  row-gap: 18px;
  margin-top: 28px;
}
.cid-tqnNMOA2Of .card-duration {
  color: #353535;
}
.cid-tqnNMOA2Of .card-cost {
  color: #353535;
}
.cid-tqnNMOA2Of .mbr-section-btn {
  margin-top: 5px;
}
.cid-tqnNMOA2Of .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
.cid-tqnNMOA2Of .card-text,
.cid-tqnNMOA2Of .mbr-section-btn {
  color: #164194;
}
.cid-uYzQXILToD {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/fl-coaching-176-1920x1280.jpg");
}
.cid-uYzQXILToD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYzQXILToD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYzQXILToD .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-uYzQXILToD .mbr-section-head {
    margin-bottom: 75px;
  }
}
@media (max-width: 767px) {
  .cid-uYzQXILToD .mbr-section-head {
    margin-bottom: 65px;
  }
}
.cid-uYzQXILToD .mbr-section-title {
  color: #164194;
  margin-bottom: 0;
}
.cid-uYzQXILToD .mbr-section-subtitle {
  color: #164194;
  margin-top: 20px;
}
.cid-uYzQXILToD .form-wrap {
  width: 100%;
  margin: 0 auto;
  padding: 0 !important;
}
.cid-uYzQXILToD form {
  width: 100%;
}
.cid-uYzQXILToD form .dragArea.row {
  justify-content: flex-start;
  width: auto !important;
}
.cid-uYzQXILToD form p {
  color: #353535;
}
.cid-uYzQXILToD form .mbr-section-btn .btn {
  width: 100%;
}
.cid-uYzQXILToD form .mbr-section-btn .btn:before {
  transform: rotate(0);
  border-radius: 60px;
  background: transparent;
}
.cid-uYzQXILToD form .mbr-section-btn .btn:hover {
  transform: translate(0, 0);
}
.cid-uYzQXILToD form .form-group {
  margin-top: 0 !important;
  margin-bottom: 24px !important;
}
.cid-uYzQXILToD form .form-control {
  height: 60px;
  border: none !important;
  border-bottom: 1px solid #164194 !important;
  background: transparent;
  outline: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  margin-bottom: 0;
  padding: 20px 0;
  font-size: 18px;
  color: #353535;
  font-weight: 500;
  transition: .3s;
}
.cid-uYzQXILToD form .form-control::-webkit-input-placeholder {
  color: #6C6C6C;
}
.cid-uYzQXILToD form .form-control::-moz-placeholder {
  color: #6C6C6C;
}
.cid-uYzQXILToD form .form-control:-moz-placeholder {
  color: #6C6C6C;
}
.cid-uYzQXILToD form .form-control:-ms-input-placeholder {
  color: #6C6C6C;
}
.cid-uYzQXILToD form select {
  color: #6C6C6C !important;
}
.cid-uYzQXILToD form textarea {
  height: 150px !important;
  min-height: 150px !important;
  padding: 20px;
  resize: none;
}
.cid-uYzQXILToD form textarea::-webkit-input-placeholder {
  color: #6C6C6C !important;
}
.cid-uYzQXILToD form textarea::-moz-placeholder {
  color: #6C6C6C !important;
}
.cid-uYzQXILToD form textarea:-moz-placeholder {
  color: #6C6C6C !important;
}
.cid-uYzQXILToD form textarea:-ms-input-placeholder {
  color: #6C6C6C !important;
}
.cid-uYzQXILToD form input,
.cid-uYzQXILToD form textarea {
  transition: .4s all;
}
.cid-uYzQXILToD form input:active,
.cid-uYzQXILToD form textarea:active,
.cid-uYzQXILToD form input:focus,
.cid-uYzQXILToD form textarea:focus {
  background-color: transparent !important;
  border-color: #164194 !important;
  outline: none !important;
}
.cid-uYzQXILToD form input:active::-webkit-input-placeholder,
.cid-uYzQXILToD form textarea:active::-webkit-input-placeholder,
.cid-uYzQXILToD form input:focus::-webkit-input-placeholder,
.cid-uYzQXILToD form textarea:focus::-webkit-input-placeholder {
  color: #6C6C6C !important;
}
.cid-uYzQXILToD form input:active::-moz-placeholder,
.cid-uYzQXILToD form textarea:active::-moz-placeholder,
.cid-uYzQXILToD form input:focus::-moz-placeholder,
.cid-uYzQXILToD form textarea:focus::-moz-placeholder {
  color: #6C6C6C !important;
}
.cid-uYzQXILToD form input:active:-moz-placeholder,
.cid-uYzQXILToD form textarea:active:-moz-placeholder,
.cid-uYzQXILToD form input:focus:-moz-placeholder,
.cid-uYzQXILToD form textarea:focus:-moz-placeholder {
  color: #6C6C6C !important;
}
.cid-uYzQXILToD form input:active:-ms-input-placeholder,
.cid-uYzQXILToD form textarea:active:-ms-input-placeholder,
.cid-uYzQXILToD form input:focus:-ms-input-placeholder,
.cid-uYzQXILToD form textarea:focus:-ms-input-placeholder {
  color: #6C6C6C !important;
}
.cid-uYzQXILToD form .row {
  flex-wrap: wrap;
  margin-left: -8px !important;
  margin-right: -8px !important;
}
.cid-uYzQXILToD form .row [class*=col] {
  padding-left: 8px !important;
  padding-right: 8px !important;
}
.cid-uYzQXILToD form label {
  width: 100%;
  color: #353535;
  margin-bottom: 5px;
}
.cid-uYzQXILToD form .form-check label {
  color: #353535;
}
.cid-uYzQXILToD form .form-check-input {
  border-color: #164194 !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}
.cid-uYzQXILToD form .form-check-input:focus,
.cid-uYzQXILToD form .form-check-input:hover {
  background-color: transparent !important;
  border-color: #164194 !important;
}
.cid-uYzQXILToD form .form-check-input:checked {
  border-color: #164194 !important;
  background-color: #FFFCF5 !important;
}
.cid-uYzQXILToD LABEL {
  color: #164194;
}
.cid-uYzQWeduVz {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #164194;
  overflow: hidden;
}
.cid-uYzQWeduVz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYzQWeduVz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYzQWeduVz .mbr-section-head {
  width: 100%;
  margin-bottom: 100px;
}
@media (max-width: 991px) {
  .cid-uYzQWeduVz .mbr-section-head {
    margin-bottom: 75px;
  }
}
@media (max-width: 767px) {
  .cid-uYzQWeduVz .mbr-section-head {
    margin-bottom: 60px;
  }
}
.cid-uYzQWeduVz .main-title {
  color: #eddcce;
  margin-bottom: 0;
}
.cid-uYzQWeduVz .main-subtitle {
  color: #353535;
  margin-top: 20px;
}
.cid-uYzQWeduVz .row {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uYzQWeduVz .row {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-uYzQWeduVz .col-text {
    order: 2;
  }
}
.cid-uYzQWeduVz .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 80px 0;
  margin-top: 40px;
}
@media (max-width: 991px) {
  .cid-uYzQWeduVz .text-wrap {
    margin-top: 0;
    padding: 80px 0 55px;
  }
}
.cid-uYzQWeduVz .text-wrap:before {
  content: "";
  position: absolute;
  right: -100px;
  top: 0;
  height: 100%;
  width: 100vw;
  border-radius: 0 65px 65px 0;
  background-color: #eddcce;
  z-index: -1;
}
@media (max-width: 1199px) {
  .cid-uYzQWeduVz .text-wrap:before {
    border-radius: 0 40px 40px 0;
  }
}
@media (max-width: 991px) {
  .cid-uYzQWeduVz .text-wrap:before {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0;
  }
}
.cid-uYzQWeduVz .mbr-section-title {
  color: #164194;
}
.cid-uYzQWeduVz .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uYzQWeduVz .mbr-text {
    margin-top: 12px;
  }
}
.cid-uYzQWeduVz .link-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 90px;
}
@media (max-width: 1199px) {
  .cid-uYzQWeduVz .link-wrap {
    margin-top: 60px;
  }
}
@media (max-width: 767px) {
  .cid-uYzQWeduVz .link-wrap {
    flex-wrap: wrap;
  }
}
@media (max-width: 575px) {
  .cid-uYzQWeduVz .link-wrap {
    margin-top: 40px;
  }
}
.cid-uYzQWeduVz .link-text {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 125px;
  width: 100%;
  color: #164194;
}
@media (max-width: 767px) {
  .cid-uYzQWeduVz .link-text {
    min-height: 160px;
  }
}
.cid-uYzQWeduVz .link-text a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 125px;
  width: 100%;
  padding: 10px;
  color: inherit !important;
  transition: .3s all !important;
}
@media (max-width: 767px) {
  .cid-uYzQWeduVz .link-text a {
    min-height: 160px;
  }
}
.cid-uYzQWeduVz .link-item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 31%;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  transition: .3s all;
}
.cid-uYzQWeduVz .link-item:nth-child(1) {
  background-image: url("../../../assets/images/button1-217x120.png");
  z-index: 1;
}
@media (max-width: 767px) {
  .cid-uYzQWeduVz .link-item:nth-child(1) {
    margin-right: auto;
  }
}
.cid-uYzQWeduVz .link-item:nth-child(2) {
  margin: 12px -10px 0;
  background-image: url("../../../assets/images/button2-217x120.png");
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-uYzQWeduVz .link-item:nth-child(2) {
    margin: -20px 0 0;
    margin-left: auto;
  }
}
.cid-uYzQWeduVz .link-item:nth-child(2) .link-text {
  min-height: 135px;
}
@media (max-width: 767px) {
  .cid-uYzQWeduVz .link-item:nth-child(2) .link-text {
    min-height: 160px;
  }
}
.cid-uYzQWeduVz .link-item:nth-child(3) {
  background-image: url("../../../assets/images/button3-217x119.png");
  z-index: 1;
}
@media (max-width: 767px) {
  .cid-uYzQWeduVz .link-item:nth-child(3) {
    margin: -20px 0 0;
    margin-right: auto;
  }
}
@media (max-width: 767px) {
  .cid-uYzQWeduVz .link-item {
    width: 60%;
  }
}
@media (max-width: 575px) {
  .cid-uYzQWeduVz .link-item {
    width: 75%;
  }
}
@media (min-width: 768px) {
  .cid-uYzQWeduVz .link-item:hover {
    transform: rotate(-12deg);
  }
  .cid-uYzQWeduVz .link-item:hover .link-text a {
    color: inherit !important;
    transform: rotate(12deg) scale(0.9);
  }
  .cid-uYzQWeduVz .link-item:nth-child(2):hover {
    transform: rotate(12deg);
  }
  .cid-uYzQWeduVz .link-item:nth-child(2):hover .link-text a {
    color: inherit !important;
    transform: rotate(-12deg) scale(0.9);
  }
}
.cid-uYzQWeduVz .col-img {
  width: 430px;
}
@media (max-width: 1199px) {
  .cid-uYzQWeduVz .col-img {
    width: 330px;
  }
}
@media (max-width: 991px) {
  .cid-uYzQWeduVz .col-img {
    max-width: 350px;
    width: 100%;
    margin: 0 auto;
    order: 1;
    margin-bottom: -45px;
  }
}
.cid-uYzQWeduVz .img-wrap {
  position: relative;
  width: 100%;
}
.cid-uYzQWeduVz .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 0 65px 65px 65px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-uYzQWeduVz .img-wrap .img-box {
    border-radius: 0 40px 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-uYzQWeduVz .img-wrap .img-box {
    border-radius: 0 40px 40px 40px;
  }
}
.cid-uYzQWeduVz .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-vmkXcuRdC7 .google-map {
  height: 30rem;
  position: relative;
}
.cid-vmkXcuRdC7 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-vmkXcuRdC7 .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-vmkXcuRdC7 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-vmkXcuRdC7 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tqnNLkY391 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #164194;
}
.cid-tqnNLkY391 .mbr-text {
  color: #FFFCF5;
}
.cid-tqnNLkY391 .media-container-row .mbr-text {
  color: #eddcce;
}
.cid-tqnGSSQQAK {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 90px;
}
.cid-tqnGSSQQAK nav.navbar {
  position: fixed;
}
.cid-tqnGSSQQAK .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-tqnGSSQQAK .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tqnGSSQQAK .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tqnGSSQQAK .dropdown-item:hover,
.cid-tqnGSSQQAK .dropdown-item:focus {
  background: #164194 !important;
  color: white !important;
}
.cid-tqnGSSQQAK .dropdown-item:hover span {
  color: white;
}
.cid-tqnGSSQQAK .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tqnGSSQQAK .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tqnGSSQQAK .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tqnGSSQQAK .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tqnGSSQQAK .nav-link {
  position: relative;
}
.cid-tqnGSSQQAK .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tqnGSSQQAK .container {
    flex-wrap: nowrap;
  }
}
.cid-tqnGSSQQAK .iconfont-wrapper {
  color: #353535 !important;
  font-size: 18px;
  padding-right: 0;
}
.cid-tqnGSSQQAK .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-tqnGSSQQAK .iconfont-wrapper .mbr-iconfont:hover {
  color: #164194;
}
.cid-tqnGSSQQAK .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 66.66666667%;
  margin-right: auto;
  min-height: 89px;
}
.cid-tqnGSSQQAK .navbar-nav .nav-item {
  margin: 2px;
}
.cid-tqnGSSQQAK .navbar-nav .nav-link {
  padding: 5px 9px;
  transition: .4s all;
}
.cid-tqnGSSQQAK .navbar-nav .nav-link:hover {
  transform: scale(1.1);
}
.cid-tqnGSSQQAK .dropdown-menu,
.cid-tqnGSSQQAK .navbar.opened {
  background: #eddcce !important;
}
.cid-tqnGSSQQAK .nav-item:focus,
.cid-tqnGSSQQAK .nav-link:focus {
  outline: none;
}
.cid-tqnGSSQQAK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tqnGSSQQAK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tqnGSSQQAK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tqnGSSQQAK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqnGSSQQAK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tqnGSSQQAK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tqnGSSQQAK .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #eddcce;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-tqnGSSQQAK .navbar.opened {
  transition: all 0.3s;
}
.cid-tqnGSSQQAK .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tqnGSSQQAK .navbar .navbar-logo img {
  width: auto;
}
.cid-tqnGSSQQAK .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tqnGSSQQAK .navbar.collapsed {
  justify-content: center;
}
.cid-tqnGSSQQAK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tqnGSSQQAK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tqnGSSQQAK .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tqnGSSQQAK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tqnGSSQQAK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tqnGSSQQAK .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-tqnGSSQQAK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tqnGSSQQAK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tqnGSSQQAK .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tqnGSSQQAK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tqnGSSQQAK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tqnGSSQQAK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tqnGSSQQAK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tqnGSSQQAK .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-tqnGSSQQAK .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tqnGSSQQAK .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tqnGSSQQAK .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tqnGSSQQAK .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tqnGSSQQAK .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tqnGSSQQAK .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tqnGSSQQAK .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tqnGSSQQAK .navbar.navbar-short {
  min-height: 90px;
}
.cid-tqnGSSQQAK .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tqnGSSQQAK .navbar.navbar-short .navbar-brand {
  min-height: 89px;
  padding: 0;
}
.cid-tqnGSSQQAK .navbar-brand {
  min-height: 89px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  width: 25%;
}
.cid-tqnGSSQQAK .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tqnGSSQQAK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tqnGSSQQAK .dropdown-item.active,
.cid-tqnGSSQQAK .dropdown-item:active {
  background-color: transparent;
}
.cid-tqnGSSQQAK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tqnGSSQQAK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tqnGSSQQAK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tqnGSSQQAK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #eddcce;
}
.cid-tqnGSSQQAK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tqnGSSQQAK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqnGSSQQAK ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tqnGSSQQAK .navbar-buttons {
  text-align: center;
}
.cid-tqnGSSQQAK button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  background-color: #f6efe8;
  border-radius: 50%;
}
.cid-tqnGSSQQAK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 13px;
  width: 22px;
  height: 2px;
  background-color: #715537;
}
.cid-tqnGSSQQAK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 17px;
  transition: all 0.2s;
}
.cid-tqnGSSQQAK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-tqnGSSQQAK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-tqnGSSQQAK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 29px;
  transition: all 0.2s;
}
.cid-tqnGSSQQAK nav.opened .hamburger span:nth-child(1) {
  top: 17px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-tqnGSSQQAK nav.opened .hamburger span:nth-child(2) {
  transform: translateY(-1px) rotate(45deg);
  transition: all 0.25s;
}
.cid-tqnGSSQQAK nav.opened .hamburger span:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
  transition: all 0.25s;
}
.cid-tqnGSSQQAK nav.opened .hamburger span:nth-child(4) {
  top: 29px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-tqnGSSQQAK .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tqnGSSQQAK a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqnGSSQQAK .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-tqnGSSQQAK .navbar {
    height: 70px;
  }
  .cid-tqnGSSQQAK .navbar.opened {
    height: auto;
  }
  .cid-tqnGSSQQAK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqnGSSQQAK .container,
.cid-tqnGSSQQAK .container-fluid {
  flex-wrap: wrap;
}
.cid-tqnGSSQQAK .navbar-collapse {
  width: 75%;
  min-height: 89px;
}
.cid-tqnGSSQQAK .border-item {
  width: 100%;
  height: 1px;
  background-color: #caa9a8;
}
.cid-tqnGSSQQAK .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-tqnGSSQQAK .navbar-brand {
    width: calc(100% - 48px) !important;
    min-height: 89px;
  }
  .cid-tqnGSSQQAK .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 1rem;
    order: 5;
  }
  .cid-tqnGSSQQAK .navbar-nav {
    width: 100%;
  }
}
.cid-vbjkYfvi0i {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #164194;
}
.cid-vbjkYfvi0i .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbjkYfvi0i .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbjkYfvi0i .card-wrapper {
  padding: 0 66px;
}
@media (max-width: 992px) {
  .cid-vbjkYfvi0i .card-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-vbjkYfvi0i .content-wrap .label-wrapper {
    margin-bottom: 32px;
  }
}
.cid-vbjkYfvi0i .content-wrap .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 10px;
}
.cid-vbjkYfvi0i .content-wrap .label-wrapper .image-wrapper img {
  height: 365px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vbjkYfvi0i .content-wrap .label-wrapper .image-wrapper img {
    height: 300px;
  }
}
.cid-vbjkYfvi0i .content-wrap .text-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-vbjkYfvi0i .content-wrap .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-vbjkYfvi0i .content-wrap .text-wrapper .line-wrap {
  width: 100%;
  height: 24px;
  background-image: linear-gradient(90deg, #eddcce 0, transparent 100%);
  margin-bottom: 24px;
}
.cid-vbjkYfvi0i .content-wrap .text-wrapper .text_2 {
  margin-bottom: 0;
}
.cid-vbjkYfvi0i .content-wrap .text-wrapper .mbr-section-btn {
  margin-top: 14px;
}
.cid-vbjkYfvi0i .mbr-label {
  color: #f6f4f0;
}
.cid-vbjkYfvi0i .mbr-section-title {
  color: #f6f4f0;
}
.cid-vbjkYfvi0i .mbr-text {
  color: #f6f4f0;
}
.cid-vbjmkk7pSU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eddcce;
}
.cid-vbjmkk7pSU .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbjmkk7pSU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbjmkk7pSU .card-wrapper {
  padding: 0 66px;
}
@media (max-width: 992px) {
  .cid-vbjmkk7pSU .card-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-vbjmkk7pSU .content-wrap .label-wrapper {
    margin-bottom: 32px;
  }
}
.cid-vbjmkk7pSU .content-wrap .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 10px;
}
.cid-vbjmkk7pSU .content-wrap .label-wrapper .image-wrapper img {
  height: 365px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vbjmkk7pSU .content-wrap .label-wrapper .image-wrapper img {
    height: 300px;
  }
}
.cid-vbjmkk7pSU .content-wrap .text-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-vbjmkk7pSU .content-wrap .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-vbjmkk7pSU .content-wrap .text-wrapper .line-wrap {
  width: 100%;
  height: 24px;
  background-image: linear-gradient(90deg, #164194 0, transparent 100%);
  margin-bottom: 24px;
}
.cid-vbjmkk7pSU .content-wrap .text-wrapper .text_2 {
  margin-bottom: 0;
}
.cid-vbjmkk7pSU .content-wrap .text-wrapper .mbr-section-btn {
  margin-top: 14px;
}
.cid-vbjmkk7pSU .mbr-label {
  color: #f6f4f0;
}
.cid-vbjmkk7pSU .mbr-section-title {
  color: #f6f4f0;
}
.cid-vbjmkk7pSU .mbr-text {
  color: #164194;
}
.cid-vbjmkk7pSU .mbr-label,
.cid-vbjmkk7pSU .label-wrapper {
  color: #164194;
}
.cid-tqnNLkY391 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #164194;
}
.cid-tqnNLkY391 .mbr-text {
  color: #FFFCF5;
}
.cid-tqnNLkY391 .media-container-row .mbr-text {
  color: #eddcce;
}
.cid-vd7BrxVotj {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 90px;
}
.cid-vd7BrxVotj nav.navbar {
  position: fixed;
}
.cid-vd7BrxVotj .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-vd7BrxVotj .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vd7BrxVotj .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vd7BrxVotj .dropdown-item:hover,
.cid-vd7BrxVotj .dropdown-item:focus {
  background: #164194 !important;
  color: white !important;
}
.cid-vd7BrxVotj .dropdown-item:hover span {
  color: white;
}
.cid-vd7BrxVotj .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vd7BrxVotj .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vd7BrxVotj .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vd7BrxVotj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vd7BrxVotj .nav-link {
  position: relative;
}
.cid-vd7BrxVotj .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vd7BrxVotj .container {
    flex-wrap: nowrap;
  }
}
.cid-vd7BrxVotj .iconfont-wrapper {
  color: #353535 !important;
  font-size: 18px;
  padding-right: 0;
}
.cid-vd7BrxVotj .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-vd7BrxVotj .iconfont-wrapper .mbr-iconfont:hover {
  color: #164194;
}
.cid-vd7BrxVotj .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 66.66666667%;
  margin-right: auto;
  min-height: 89px;
}
.cid-vd7BrxVotj .navbar-nav .nav-item {
  margin: 2px;
}
.cid-vd7BrxVotj .navbar-nav .nav-link {
  padding: 5px 9px;
  transition: .4s all;
}
.cid-vd7BrxVotj .navbar-nav .nav-link:hover {
  transform: scale(1.1);
}
.cid-vd7BrxVotj .dropdown-menu,
.cid-vd7BrxVotj .navbar.opened {
  background: #eddcce !important;
}
.cid-vd7BrxVotj .nav-item:focus,
.cid-vd7BrxVotj .nav-link:focus {
  outline: none;
}
.cid-vd7BrxVotj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vd7BrxVotj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vd7BrxVotj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vd7BrxVotj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vd7BrxVotj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vd7BrxVotj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vd7BrxVotj .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #eddcce;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-vd7BrxVotj .navbar.opened {
  transition: all 0.3s;
}
.cid-vd7BrxVotj .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vd7BrxVotj .navbar .navbar-logo img {
  width: auto;
}
.cid-vd7BrxVotj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vd7BrxVotj .navbar.collapsed {
  justify-content: center;
}
.cid-vd7BrxVotj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vd7BrxVotj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vd7BrxVotj .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vd7BrxVotj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vd7BrxVotj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vd7BrxVotj .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-vd7BrxVotj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vd7BrxVotj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vd7BrxVotj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vd7BrxVotj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vd7BrxVotj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vd7BrxVotj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vd7BrxVotj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vd7BrxVotj .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-vd7BrxVotj .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vd7BrxVotj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vd7BrxVotj .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vd7BrxVotj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vd7BrxVotj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vd7BrxVotj .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vd7BrxVotj .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vd7BrxVotj .navbar.navbar-short {
  min-height: 90px;
}
.cid-vd7BrxVotj .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vd7BrxVotj .navbar.navbar-short .navbar-brand {
  min-height: 89px;
  padding: 0;
}
.cid-vd7BrxVotj .navbar-brand {
  min-height: 89px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  width: 25%;
}
.cid-vd7BrxVotj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vd7BrxVotj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vd7BrxVotj .dropdown-item.active,
.cid-vd7BrxVotj .dropdown-item:active {
  background-color: transparent;
}
.cid-vd7BrxVotj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vd7BrxVotj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vd7BrxVotj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vd7BrxVotj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #eddcce;
}
.cid-vd7BrxVotj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vd7BrxVotj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vd7BrxVotj ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vd7BrxVotj .navbar-buttons {
  text-align: center;
}
.cid-vd7BrxVotj button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  background-color: #f6efe8;
  border-radius: 50%;
}
.cid-vd7BrxVotj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 13px;
  width: 22px;
  height: 2px;
  background-color: #715537;
}
.cid-vd7BrxVotj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 17px;
  transition: all 0.2s;
}
.cid-vd7BrxVotj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-vd7BrxVotj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-vd7BrxVotj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 29px;
  transition: all 0.2s;
}
.cid-vd7BrxVotj nav.opened .hamburger span:nth-child(1) {
  top: 17px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-vd7BrxVotj nav.opened .hamburger span:nth-child(2) {
  transform: translateY(-1px) rotate(45deg);
  transition: all 0.25s;
}
.cid-vd7BrxVotj nav.opened .hamburger span:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
  transition: all 0.25s;
}
.cid-vd7BrxVotj nav.opened .hamburger span:nth-child(4) {
  top: 29px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-vd7BrxVotj .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vd7BrxVotj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vd7BrxVotj .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-vd7BrxVotj .navbar {
    height: 70px;
  }
  .cid-vd7BrxVotj .navbar.opened {
    height: auto;
  }
  .cid-vd7BrxVotj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vd7BrxVotj .container,
.cid-vd7BrxVotj .container-fluid {
  flex-wrap: wrap;
}
.cid-vd7BrxVotj .navbar-collapse {
  width: 75%;
  min-height: 89px;
}
.cid-vd7BrxVotj .border-item {
  width: 100%;
  height: 1px;
  background-color: #caa9a8;
}
.cid-vd7BrxVotj .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-vd7BrxVotj .navbar-brand {
    width: calc(100% - 48px) !important;
    min-height: 89px;
  }
  .cid-vd7BrxVotj .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 1rem;
    order: 5;
  }
  .cid-vd7BrxVotj .navbar-nav {
    width: 100%;
  }
}
.cid-vd7BryiKDM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/image002.jpg-1327x546.jpg");
}
.cid-vd7BryiKDM .mbr-fallback-image.disabled {
  display: none;
}
.cid-vd7BryiKDM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vd7BryiKDM .card-wrapper {
  padding: 0 66px;
}
@media (max-width: 992px) {
  .cid-vd7BryiKDM .card-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-vd7BryiKDM .content-wrap .label-wrapper {
    margin-bottom: 32px;
  }
}
.cid-vd7BryiKDM .content-wrap .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 10px;
}
.cid-vd7BryiKDM .content-wrap .label-wrapper .image-wrapper img {
  height: 365px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vd7BryiKDM .content-wrap .label-wrapper .image-wrapper img {
    height: 300px;
  }
}
.cid-vd7BryiKDM .content-wrap .text-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-vd7BryiKDM .content-wrap .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-vd7BryiKDM .content-wrap .text-wrapper .line-wrap {
  width: 100%;
  height: 24px;
  background-image: linear-gradient(90deg, #eddcce 0, transparent 100%);
  margin-bottom: 24px;
}
.cid-vd7BryiKDM .content-wrap .text-wrapper .text_2 {
  margin-bottom: 0;
}
.cid-vd7BryiKDM .content-wrap .text-wrapper .mbr-section-btn {
  margin-top: 14px;
}
.cid-vd7BryiKDM .mbr-label {
  color: #f6f4f0;
}
.cid-vd7BryiKDM .mbr-section-title {
  color: #f6f4f0;
}
.cid-vd7BryiKDM .mbr-text {
  color: #eddcce;
}
.cid-vd7BryiKDM .mbr-section-title,
.cid-vd7BryiKDM .mbr-section-btn {
  color: #eddcce;
}
.cid-vd7BryiKDM P {
  color: #ffffff;
}
.cid-vd7BryzasO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eddcce;
}
.cid-vd7BryzasO .mbr-fallback-image.disabled {
  display: none;
}
.cid-vd7BryzasO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vd7BryzasO .card-wrapper {
  padding: 0 66px;
}
@media (max-width: 992px) {
  .cid-vd7BryzasO .card-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-vd7BryzasO .content-wrap .label-wrapper {
    margin-bottom: 32px;
  }
}
.cid-vd7BryzasO .content-wrap .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 10px;
}
.cid-vd7BryzasO .content-wrap .label-wrapper .image-wrapper img {
  height: 365px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vd7BryzasO .content-wrap .label-wrapper .image-wrapper img {
    height: 300px;
  }
}
.cid-vd7BryzasO .content-wrap .text-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-vd7BryzasO .content-wrap .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-vd7BryzasO .content-wrap .text-wrapper .line-wrap {
  width: 100%;
  height: 24px;
  background-image: linear-gradient(90deg, #164194 0, transparent 100%);
  margin-bottom: 24px;
}
.cid-vd7BryzasO .content-wrap .text-wrapper .text_2 {
  margin-bottom: 0;
}
.cid-vd7BryzasO .content-wrap .text-wrapper .mbr-section-btn {
  margin-top: 14px;
}
.cid-vd7BryzasO .mbr-label {
  color: #f6f4f0;
}
.cid-vd7BryzasO .mbr-section-title {
  color: #f6f4f0;
}
.cid-vd7BryzasO .mbr-text {
  color: #164194;
  text-align: left;
}
.cid-vd7BryzasO .mbr-label,
.cid-vd7BryzasO .label-wrapper {
  color: #164194;
}
.cid-vd7FczOjtZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #164194;
}
.cid-vd7FczOjtZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-vd7FczOjtZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vd7FczOjtZ .card-wrapper {
  padding: 0 66px;
}
@media (max-width: 992px) {
  .cid-vd7FczOjtZ .card-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-vd7FczOjtZ .content-wrap .label-wrapper {
    margin-bottom: 32px;
  }
}
.cid-vd7FczOjtZ .content-wrap .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 10px;
}
.cid-vd7FczOjtZ .content-wrap .label-wrapper .image-wrapper img {
  height: 365px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vd7FczOjtZ .content-wrap .label-wrapper .image-wrapper img {
    height: 300px;
  }
}
.cid-vd7FczOjtZ .content-wrap .text-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-vd7FczOjtZ .content-wrap .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-vd7FczOjtZ .content-wrap .text-wrapper .line-wrap {
  width: 100%;
  height: 24px;
  background-image: linear-gradient(90deg, #eddcce 0, transparent 100%);
  margin-bottom: 24px;
}
.cid-vd7FczOjtZ .content-wrap .text-wrapper .text_2 {
  margin-bottom: 0;
}
.cid-vd7FczOjtZ .content-wrap .text-wrapper .mbr-section-btn {
  margin-top: 14px;
}
.cid-vd7FczOjtZ .mbr-label {
  color: #f6f4f0;
}
.cid-vd7FczOjtZ .mbr-section-title {
  color: #f6f4f0;
}
.cid-vd7FczOjtZ .mbr-text {
  color: #eddcce;
  text-align: left;
}
.cid-vd7FczOjtZ .mbr-label,
.cid-vd7FczOjtZ .label-wrapper {
  color: #eddcce;
}
.cid-vd7FPzyXKc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eddcce;
}
.cid-vd7FPzyXKc .mbr-fallback-image.disabled {
  display: none;
}
.cid-vd7FPzyXKc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vd7FPzyXKc .card-wrapper {
  padding: 0 66px;
}
@media (max-width: 992px) {
  .cid-vd7FPzyXKc .card-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-vd7FPzyXKc .content-wrap .label-wrapper {
    margin-bottom: 32px;
  }
}
.cid-vd7FPzyXKc .content-wrap .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 10px;
}
.cid-vd7FPzyXKc .content-wrap .label-wrapper .image-wrapper img {
  height: 365px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vd7FPzyXKc .content-wrap .label-wrapper .image-wrapper img {
    height: 300px;
  }
}
.cid-vd7FPzyXKc .content-wrap .text-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-vd7FPzyXKc .content-wrap .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-vd7FPzyXKc .content-wrap .text-wrapper .line-wrap {
  width: 100%;
  height: 24px;
  background-image: linear-gradient(90deg, #164194 0, transparent 100%);
  margin-bottom: 24px;
}
.cid-vd7FPzyXKc .content-wrap .text-wrapper .text_2 {
  margin-bottom: 0;
}
.cid-vd7FPzyXKc .content-wrap .text-wrapper .mbr-section-btn {
  margin-top: 14px;
}
.cid-vd7FPzyXKc .mbr-label {
  color: #f6f4f0;
}
.cid-vd7FPzyXKc .mbr-section-title {
  color: #f6f4f0;
}
.cid-vd7FPzyXKc .mbr-text {
  color: #164194;
  text-align: left;
}
.cid-vd7FPzyXKc .mbr-label,
.cid-vd7FPzyXKc .label-wrapper {
  color: #164194;
}
.cid-vd7G3XnPub {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #164194;
}
.cid-vd7G3XnPub .mbr-fallback-image.disabled {
  display: none;
}
.cid-vd7G3XnPub .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vd7G3XnPub .card-wrapper {
  padding: 0 66px;
}
@media (max-width: 992px) {
  .cid-vd7G3XnPub .card-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-vd7G3XnPub .content-wrap .label-wrapper {
    margin-bottom: 32px;
  }
}
.cid-vd7G3XnPub .content-wrap .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 10px;
}
.cid-vd7G3XnPub .content-wrap .label-wrapper .image-wrapper img {
  height: 365px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vd7G3XnPub .content-wrap .label-wrapper .image-wrapper img {
    height: 300px;
  }
}
.cid-vd7G3XnPub .content-wrap .text-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-vd7G3XnPub .content-wrap .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-vd7G3XnPub .content-wrap .text-wrapper .line-wrap {
  width: 100%;
  height: 24px;
  background-image: linear-gradient(90deg, #eddcce 0, transparent 100%);
  margin-bottom: 24px;
}
.cid-vd7G3XnPub .content-wrap .text-wrapper .text_2 {
  margin-bottom: 0;
}
.cid-vd7G3XnPub .content-wrap .text-wrapper .mbr-section-btn {
  margin-top: 14px;
}
.cid-vd7G3XnPub .mbr-label {
  color: #f6f4f0;
}
.cid-vd7G3XnPub .mbr-section-title {
  color: #f6f4f0;
}
.cid-vd7G3XnPub .mbr-text {
  color: #eddcce;
  text-align: left;
}
.cid-vd7G3XnPub .mbr-label,
.cid-vd7G3XnPub .label-wrapper {
  color: #eddcce;
}
.cid-vd7Brz7mtQ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #164194;
}
.cid-vd7Brz7mtQ .mbr-text {
  color: #FFFCF5;
}
.cid-vd7Brz7mtQ .media-container-row .mbr-text {
  color: #eddcce;
}
.cid-vdcXInb5gX {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 90px;
}
.cid-vdcXInb5gX nav.navbar {
  position: fixed;
}
.cid-vdcXInb5gX .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-vdcXInb5gX .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vdcXInb5gX .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vdcXInb5gX .dropdown-item:hover,
.cid-vdcXInb5gX .dropdown-item:focus {
  background: #164194 !important;
  color: white !important;
}
.cid-vdcXInb5gX .dropdown-item:hover span {
  color: white;
}
.cid-vdcXInb5gX .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vdcXInb5gX .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vdcXInb5gX .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vdcXInb5gX .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vdcXInb5gX .nav-link {
  position: relative;
}
.cid-vdcXInb5gX .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vdcXInb5gX .container {
    flex-wrap: nowrap;
  }
}
.cid-vdcXInb5gX .iconfont-wrapper {
  color: #353535 !important;
  font-size: 18px;
  padding-right: 0;
}
.cid-vdcXInb5gX .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-vdcXInb5gX .iconfont-wrapper .mbr-iconfont:hover {
  color: #164194;
}
.cid-vdcXInb5gX .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 66.66666667%;
  margin-right: auto;
  min-height: 89px;
}
.cid-vdcXInb5gX .navbar-nav .nav-item {
  margin: 2px;
}
.cid-vdcXInb5gX .navbar-nav .nav-link {
  padding: 5px 9px;
  transition: .4s all;
}
.cid-vdcXInb5gX .navbar-nav .nav-link:hover {
  transform: scale(1.1);
}
.cid-vdcXInb5gX .dropdown-menu,
.cid-vdcXInb5gX .navbar.opened {
  background: #eddcce !important;
}
.cid-vdcXInb5gX .nav-item:focus,
.cid-vdcXInb5gX .nav-link:focus {
  outline: none;
}
.cid-vdcXInb5gX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vdcXInb5gX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vdcXInb5gX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vdcXInb5gX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vdcXInb5gX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vdcXInb5gX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vdcXInb5gX .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #eddcce;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-vdcXInb5gX .navbar.opened {
  transition: all 0.3s;
}
.cid-vdcXInb5gX .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vdcXInb5gX .navbar .navbar-logo img {
  width: auto;
}
.cid-vdcXInb5gX .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vdcXInb5gX .navbar.collapsed {
  justify-content: center;
}
.cid-vdcXInb5gX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vdcXInb5gX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vdcXInb5gX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vdcXInb5gX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vdcXInb5gX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vdcXInb5gX .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-vdcXInb5gX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vdcXInb5gX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vdcXInb5gX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vdcXInb5gX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vdcXInb5gX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vdcXInb5gX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vdcXInb5gX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vdcXInb5gX .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-vdcXInb5gX .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vdcXInb5gX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vdcXInb5gX .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vdcXInb5gX .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vdcXInb5gX .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vdcXInb5gX .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vdcXInb5gX .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vdcXInb5gX .navbar.navbar-short {
  min-height: 90px;
}
.cid-vdcXInb5gX .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vdcXInb5gX .navbar.navbar-short .navbar-brand {
  min-height: 89px;
  padding: 0;
}
.cid-vdcXInb5gX .navbar-brand {
  min-height: 89px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  width: 25%;
}
.cid-vdcXInb5gX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vdcXInb5gX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vdcXInb5gX .dropdown-item.active,
.cid-vdcXInb5gX .dropdown-item:active {
  background-color: transparent;
}
.cid-vdcXInb5gX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vdcXInb5gX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vdcXInb5gX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vdcXInb5gX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #eddcce;
}
.cid-vdcXInb5gX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vdcXInb5gX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vdcXInb5gX ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vdcXInb5gX .navbar-buttons {
  text-align: center;
}
.cid-vdcXInb5gX button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  background-color: #f6efe8;
  border-radius: 50%;
}
.cid-vdcXInb5gX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 13px;
  width: 22px;
  height: 2px;
  background-color: #715537;
}
.cid-vdcXInb5gX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 17px;
  transition: all 0.2s;
}
.cid-vdcXInb5gX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-vdcXInb5gX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-vdcXInb5gX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 29px;
  transition: all 0.2s;
}
.cid-vdcXInb5gX nav.opened .hamburger span:nth-child(1) {
  top: 17px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-vdcXInb5gX nav.opened .hamburger span:nth-child(2) {
  transform: translateY(-1px) rotate(45deg);
  transition: all 0.25s;
}
.cid-vdcXInb5gX nav.opened .hamburger span:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
  transition: all 0.25s;
}
.cid-vdcXInb5gX nav.opened .hamburger span:nth-child(4) {
  top: 29px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-vdcXInb5gX .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vdcXInb5gX a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vdcXInb5gX .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-vdcXInb5gX .navbar {
    height: 70px;
  }
  .cid-vdcXInb5gX .navbar.opened {
    height: auto;
  }
  .cid-vdcXInb5gX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vdcXInb5gX .container,
.cid-vdcXInb5gX .container-fluid {
  flex-wrap: wrap;
}
.cid-vdcXInb5gX .navbar-collapse {
  width: 75%;
  min-height: 89px;
}
.cid-vdcXInb5gX .border-item {
  width: 100%;
  height: 1px;
  background-color: #caa9a8;
}
.cid-vdcXInb5gX .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-vdcXInb5gX .navbar-brand {
    width: calc(100% - 48px) !important;
    min-height: 89px;
  }
  .cid-vdcXInb5gX .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 1rem;
    order: 5;
  }
  .cid-vdcXInb5gX .navbar-nav {
    width: 100%;
  }
}
.cid-vdcXInyTcS {
  padding-top: 8rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/image002.jpg-1327x546.jpg");
}
.cid-vdcXInyTcS .mbr-fallback-image.disabled {
  display: none;
}
.cid-vdcXInyTcS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vdcXInyTcS .card-wrapper {
  padding: 0 66px;
}
@media (max-width: 992px) {
  .cid-vdcXInyTcS .card-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-vdcXInyTcS .content-wrap .label-wrapper {
    margin-bottom: 32px;
  }
}
.cid-vdcXInyTcS .content-wrap .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 10px;
}
.cid-vdcXInyTcS .content-wrap .label-wrapper .image-wrapper img {
  height: 365px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vdcXInyTcS .content-wrap .label-wrapper .image-wrapper img {
    height: 300px;
  }
}
.cid-vdcXInyTcS .content-wrap .text-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-vdcXInyTcS .content-wrap .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-vdcXInyTcS .content-wrap .text-wrapper .line-wrap {
  width: 100%;
  height: 24px;
  background-image: linear-gradient(90deg, #eddcce 0, transparent 100%);
  margin-bottom: 24px;
}
.cid-vdcXInyTcS .content-wrap .text-wrapper .text_2 {
  margin-bottom: 0;
}
.cid-vdcXInyTcS .content-wrap .text-wrapper .mbr-section-btn {
  margin-top: 14px;
}
.cid-vdcXInyTcS .mbr-label {
  color: #f6f4f0;
}
.cid-vdcXInyTcS .mbr-section-title {
  color: #f6f4f0;
}
.cid-vdcXInyTcS .mbr-text {
  color: #eddcce;
}
.cid-vdcXInyTcS .mbr-section-title,
.cid-vdcXInyTcS .mbr-section-btn {
  color: #eddcce;
}
.cid-vdcYviXhZa {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #eddcce;
}
.cid-vdcYviXhZa .mbr-fallback-image.disabled {
  display: none;
}
.cid-vdcYviXhZa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vdcYviXhZa .row {
    align-items: center !important;
  }
}
.cid-vdcYviXhZa .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-vdcYviXhZa .mbr-section-head {
    margin-bottom: 75px;
  }
}
@media (max-width: 767px) {
  .cid-vdcYviXhZa .mbr-section-head {
    margin-bottom: 65px;
  }
}
.cid-vdcYviXhZa .mbr-section-title {
  color: #164194;
  margin-bottom: 0;
}
.cid-vdcYviXhZa .mbr-section-subtitle {
  color: #164194;
  margin-top: 20px;
}
.cid-vdcYviXhZa .text-wrap {
  width: 100%;
  padding: 36px 0;
  border-top: 1px solid #eddcce;
}
@media (max-width: 991px) {
  .cid-vdcYviXhZa .text-wrap {
    padding: 30px 0;
  }
}
.cid-vdcYviXhZa .mbr-title {
  color: #164194;
}
.cid-vdcYviXhZa .mbr-text {
  margin-top: 12px;
  color: #353535;
}
.cid-vdcYviXhZa .list-box {
  width: 100%;
}
.cid-vdcYviXhZa .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #164194;
}
.cid-vdcYviXhZa .list-text {
  position: relative;
}
.cid-vdcYviXhZa .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-vdcYviXhZa .list-text:before {
  content: "";
  position: absolute;
  display: block;
  width: 16px;
  height: 14px;
  left: -30px;
  top: 7px;
  background-image: url("../../../assets/images/marker.svg");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.cid-vdcYviXhZa .mbr-section-btn {
  margin-top: 20px;
}
.cid-vdcYviXhZa .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-radius: 0 100px 0 0;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-vdcYviXhZa .img-box {
    border-radius: 0;
  }
}
@media (max-width: 767px) {
  .cid-vdcYviXhZa .img-box {
    border-radius: 0 15vw 0 0;
  }
}
.cid-vdcYviXhZa .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-vdcYviXhZa .mbr-text,
.cid-vdcYviXhZa .mbr-section-btn {
  color: #164194;
  text-align: left;
}
.cid-vdcYuplx6L {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #164194;
}
.cid-vdcYuplx6L .mbr-fallback-image.disabled {
  display: none;
}
.cid-vdcYuplx6L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vdcYuplx6L .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-vdcYuplx6L .row {
    align-items: center !important;
  }
}
.cid-vdcYuplx6L .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-vdcYuplx6L .mbr-section-head {
    margin-bottom: 75px;
  }
}
@media (max-width: 767px) {
  .cid-vdcYuplx6L .mbr-section-head {
    margin-bottom: 65px;
  }
}
.cid-vdcYuplx6L .mbr-section-title {
  color: #eddcce;
  margin-bottom: 0;
}
.cid-vdcYuplx6L .mbr-section-subtitle {
  color: #eddcce;
  margin-top: 20px;
}
.cid-vdcYuplx6L .text-wrap {
  width: 100%;
  padding: 36px 0;
}
@media (max-width: 991px) {
  .cid-vdcYuplx6L .text-wrap {
    padding: 30px 0;
  }
}
.cid-vdcYuplx6L .mbr-title {
  color: #eddcce;
}
.cid-vdcYuplx6L .mbr-text {
  margin-top: 12px;
  color: #353535;
}
.cid-vdcYuplx6L .list-box {
  width: 100%;
}
.cid-vdcYuplx6L .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #164194;
  padding-left: 0;
}
.cid-vdcYuplx6L .list-text {
  position: relative;
}
.cid-vdcYuplx6L .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-vdcYuplx6L .mbr-section-btn {
  margin-top: 20px;
}
.cid-vdcYuplx6L .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-radius: 0 0 0 100px;
  overflow: hidden;
  border-radius: 0 0 100px 0;
}
@media (max-width: 991px) {
  .cid-vdcYuplx6L .img-box {
    border-radius: 0;
  }
}
@media (max-width: 767px) {
  .cid-vdcYuplx6L .img-box {
    border-radius: 0 0 0 15vw;
    border-radius: 0 0 15vw 0;
  }
}
.cid-vdcYuplx6L .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-vdcYuplx6L .mbr-text,
.cid-vdcYuplx6L .mbr-section-btn {
  color: #eddcce;
}
.cid-vdcXIpvt4o {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #164194;
}
.cid-vdcXIpvt4o .mbr-text {
  color: #FFFCF5;
}
.cid-vdcXIpvt4o .media-container-row .mbr-text {
  color: #eddcce;
}
.cid-vdi6YyRsap {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 90px;
}
.cid-vdi6YyRsap nav.navbar {
  position: fixed;
}
.cid-vdi6YyRsap .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-vdi6YyRsap .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vdi6YyRsap .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vdi6YyRsap .dropdown-item:hover,
.cid-vdi6YyRsap .dropdown-item:focus {
  background: #164194 !important;
  color: white !important;
}
.cid-vdi6YyRsap .dropdown-item:hover span {
  color: white;
}
.cid-vdi6YyRsap .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vdi6YyRsap .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vdi6YyRsap .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vdi6YyRsap .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vdi6YyRsap .nav-link {
  position: relative;
}
.cid-vdi6YyRsap .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vdi6YyRsap .container {
    flex-wrap: nowrap;
  }
}
.cid-vdi6YyRsap .iconfont-wrapper {
  color: #353535 !important;
  font-size: 18px;
  padding-right: 0;
}
.cid-vdi6YyRsap .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-vdi6YyRsap .iconfont-wrapper .mbr-iconfont:hover {
  color: #164194;
}
.cid-vdi6YyRsap .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 66.66666667%;
  margin-right: auto;
  min-height: 89px;
}
.cid-vdi6YyRsap .navbar-nav .nav-item {
  margin: 2px;
}
.cid-vdi6YyRsap .navbar-nav .nav-link {
  padding: 5px 9px;
  transition: .4s all;
}
.cid-vdi6YyRsap .navbar-nav .nav-link:hover {
  transform: scale(1.1);
}
.cid-vdi6YyRsap .dropdown-menu,
.cid-vdi6YyRsap .navbar.opened {
  background: #eddcce !important;
}
.cid-vdi6YyRsap .nav-item:focus,
.cid-vdi6YyRsap .nav-link:focus {
  outline: none;
}
.cid-vdi6YyRsap .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vdi6YyRsap .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vdi6YyRsap .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vdi6YyRsap .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vdi6YyRsap .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vdi6YyRsap .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vdi6YyRsap .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #eddcce;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-vdi6YyRsap .navbar.opened {
  transition: all 0.3s;
}
.cid-vdi6YyRsap .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vdi6YyRsap .navbar .navbar-logo img {
  width: auto;
}
.cid-vdi6YyRsap .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vdi6YyRsap .navbar.collapsed {
  justify-content: center;
}
.cid-vdi6YyRsap .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vdi6YyRsap .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vdi6YyRsap .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vdi6YyRsap .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vdi6YyRsap .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vdi6YyRsap .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-vdi6YyRsap .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vdi6YyRsap .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vdi6YyRsap .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vdi6YyRsap .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vdi6YyRsap .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vdi6YyRsap .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vdi6YyRsap .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vdi6YyRsap .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-vdi6YyRsap .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vdi6YyRsap .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vdi6YyRsap .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vdi6YyRsap .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vdi6YyRsap .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vdi6YyRsap .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vdi6YyRsap .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vdi6YyRsap .navbar.navbar-short {
  min-height: 90px;
}
.cid-vdi6YyRsap .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vdi6YyRsap .navbar.navbar-short .navbar-brand {
  min-height: 89px;
  padding: 0;
}
.cid-vdi6YyRsap .navbar-brand {
  min-height: 89px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  width: 25%;
}
.cid-vdi6YyRsap .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vdi6YyRsap .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vdi6YyRsap .dropdown-item.active,
.cid-vdi6YyRsap .dropdown-item:active {
  background-color: transparent;
}
.cid-vdi6YyRsap .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vdi6YyRsap .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vdi6YyRsap .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vdi6YyRsap .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #eddcce;
}
.cid-vdi6YyRsap .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vdi6YyRsap .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vdi6YyRsap ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vdi6YyRsap .navbar-buttons {
  text-align: center;
}
.cid-vdi6YyRsap button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  background-color: #f6efe8;
  border-radius: 50%;
}
.cid-vdi6YyRsap button.navbar-toggler .hamburger span {
  position: absolute;
  right: 13px;
  width: 22px;
  height: 2px;
  background-color: #715537;
}
.cid-vdi6YyRsap button.navbar-toggler .hamburger span:nth-child(1) {
  top: 17px;
  transition: all 0.2s;
}
.cid-vdi6YyRsap button.navbar-toggler .hamburger span:nth-child(2) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-vdi6YyRsap button.navbar-toggler .hamburger span:nth-child(3) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-vdi6YyRsap button.navbar-toggler .hamburger span:nth-child(4) {
  top: 29px;
  transition: all 0.2s;
}
.cid-vdi6YyRsap nav.opened .hamburger span:nth-child(1) {
  top: 17px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-vdi6YyRsap nav.opened .hamburger span:nth-child(2) {
  transform: translateY(-1px) rotate(45deg);
  transition: all 0.25s;
}
.cid-vdi6YyRsap nav.opened .hamburger span:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
  transition: all 0.25s;
}
.cid-vdi6YyRsap nav.opened .hamburger span:nth-child(4) {
  top: 29px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-vdi6YyRsap .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vdi6YyRsap a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vdi6YyRsap .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-vdi6YyRsap .navbar {
    height: 70px;
  }
  .cid-vdi6YyRsap .navbar.opened {
    height: auto;
  }
  .cid-vdi6YyRsap .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vdi6YyRsap .container,
.cid-vdi6YyRsap .container-fluid {
  flex-wrap: wrap;
}
.cid-vdi6YyRsap .navbar-collapse {
  width: 75%;
  min-height: 89px;
}
.cid-vdi6YyRsap .border-item {
  width: 100%;
  height: 1px;
  background-color: #caa9a8;
}
.cid-vdi6YyRsap .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-vdi6YyRsap .navbar-brand {
    width: calc(100% - 48px) !important;
    min-height: 89px;
  }
  .cid-vdi6YyRsap .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 1rem;
    order: 5;
  }
  .cid-vdi6YyRsap .navbar-nav {
    width: 100%;
  }
}
.cid-vdi6Yzj3Og {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/image002.jpg-1327x546.jpg");
}
.cid-vdi6Yzj3Og .mbr-fallback-image.disabled {
  display: none;
}
.cid-vdi6Yzj3Og .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vdi6Yzj3Og .card-wrapper {
  padding: 0 66px;
}
@media (max-width: 992px) {
  .cid-vdi6Yzj3Og .card-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-vdi6Yzj3Og .content-wrap .label-wrapper {
    margin-bottom: 32px;
  }
}
.cid-vdi6Yzj3Og .content-wrap .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 10px;
}
.cid-vdi6Yzj3Og .content-wrap .label-wrapper .image-wrapper img {
  height: 365px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vdi6Yzj3Og .content-wrap .label-wrapper .image-wrapper img {
    height: 300px;
  }
}
.cid-vdi6Yzj3Og .content-wrap .text-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-vdi6Yzj3Og .content-wrap .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-vdi6Yzj3Og .content-wrap .text-wrapper .line-wrap {
  width: 100%;
  height: 24px;
  background-image: linear-gradient(90deg, #eddcce 0, transparent 100%);
  margin-bottom: 24px;
}
.cid-vdi6Yzj3Og .content-wrap .text-wrapper .text_2 {
  margin-bottom: 0;
}
.cid-vdi6Yzj3Og .content-wrap .text-wrapper .mbr-section-btn {
  margin-top: 14px;
}
.cid-vdi6Yzj3Og .mbr-label {
  color: #f6f4f0;
}
.cid-vdi6Yzj3Og .mbr-section-title {
  color: #f6f4f0;
}
.cid-vdi6Yzj3Og .mbr-text {
  color: #eddcce;
}
.cid-vdi6Yzj3Og .mbr-section-title,
.cid-vdi6Yzj3Og .mbr-section-btn {
  color: #eddcce;
}
.cid-vdibptQO7M {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #eddcce;
}
.cid-vdibptQO7M .mbr-fallback-image.disabled {
  display: none;
}
.cid-vdibptQO7M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vdibptQO7M .text-wrap {
  width: 100%;
}
.cid-vdibptQO7M .mbr-title {
  margin-bottom: 0;
  color: #153b85;
}
.cid-vdibptQO7M .mbr-text {
  padding-top: 16px;
  color: #153b85;
}
.cid-vdibptQO7M .list-wrap {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-vdibptQO7M .list-wrap {
    margin-top: 24px;
  }
}
.cid-vdibptQO7M .list-box {
  width: 100%;
}
.cid-vdibptQO7M .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
}
.cid-vdibptQO7M .list-text {
  position: relative;
}
.cid-vdibptQO7M .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-vdibptQO7M .list-text:before {
  content: "";
  position: absolute;
  display: block;
  width: 16px;
  height: 14px;
  left: -30px;
  top: 7px;
  background-image: url("../../../assets/images/marker.svg");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.cid-vdi6YARfGP {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #164194;
}
.cid-vdi6YARfGP .mbr-text {
  color: #FFFCF5;
}
.cid-vdi6YARfGP .media-container-row .mbr-text {
  color: #eddcce;
}
.cid-vdouMr1Rff {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 90px;
}
.cid-vdouMr1Rff nav.navbar {
  position: fixed;
}
.cid-vdouMr1Rff .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-vdouMr1Rff .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vdouMr1Rff .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vdouMr1Rff .dropdown-item:hover,
.cid-vdouMr1Rff .dropdown-item:focus {
  background: #164194 !important;
  color: white !important;
}
.cid-vdouMr1Rff .dropdown-item:hover span {
  color: white;
}
.cid-vdouMr1Rff .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vdouMr1Rff .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vdouMr1Rff .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vdouMr1Rff .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vdouMr1Rff .nav-link {
  position: relative;
}
.cid-vdouMr1Rff .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vdouMr1Rff .container {
    flex-wrap: nowrap;
  }
}
.cid-vdouMr1Rff .iconfont-wrapper {
  color: #353535 !important;
  font-size: 18px;
  padding-right: 0;
}
.cid-vdouMr1Rff .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-vdouMr1Rff .iconfont-wrapper .mbr-iconfont:hover {
  color: #164194;
}
.cid-vdouMr1Rff .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 66.66666667%;
  margin-right: auto;
  min-height: 89px;
}
.cid-vdouMr1Rff .navbar-nav .nav-item {
  margin: 2px;
}
.cid-vdouMr1Rff .navbar-nav .nav-link {
  padding: 5px 9px;
  transition: .4s all;
}
.cid-vdouMr1Rff .navbar-nav .nav-link:hover {
  transform: scale(1.1);
}
.cid-vdouMr1Rff .dropdown-menu,
.cid-vdouMr1Rff .navbar.opened {
  background: #eddcce !important;
}
.cid-vdouMr1Rff .nav-item:focus,
.cid-vdouMr1Rff .nav-link:focus {
  outline: none;
}
.cid-vdouMr1Rff .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vdouMr1Rff .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vdouMr1Rff .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vdouMr1Rff .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vdouMr1Rff .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vdouMr1Rff .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vdouMr1Rff .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #eddcce;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-vdouMr1Rff .navbar.opened {
  transition: all 0.3s;
}
.cid-vdouMr1Rff .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vdouMr1Rff .navbar .navbar-logo img {
  width: auto;
}
.cid-vdouMr1Rff .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vdouMr1Rff .navbar.collapsed {
  justify-content: center;
}
.cid-vdouMr1Rff .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vdouMr1Rff .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vdouMr1Rff .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vdouMr1Rff .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vdouMr1Rff .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vdouMr1Rff .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-vdouMr1Rff .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vdouMr1Rff .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vdouMr1Rff .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vdouMr1Rff .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vdouMr1Rff .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vdouMr1Rff .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vdouMr1Rff .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vdouMr1Rff .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-vdouMr1Rff .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vdouMr1Rff .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vdouMr1Rff .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vdouMr1Rff .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vdouMr1Rff .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vdouMr1Rff .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vdouMr1Rff .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vdouMr1Rff .navbar.navbar-short {
  min-height: 90px;
}
.cid-vdouMr1Rff .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vdouMr1Rff .navbar.navbar-short .navbar-brand {
  min-height: 89px;
  padding: 0;
}
.cid-vdouMr1Rff .navbar-brand {
  min-height: 89px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  width: 25%;
}
.cid-vdouMr1Rff .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vdouMr1Rff .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vdouMr1Rff .dropdown-item.active,
.cid-vdouMr1Rff .dropdown-item:active {
  background-color: transparent;
}
.cid-vdouMr1Rff .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vdouMr1Rff .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vdouMr1Rff .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vdouMr1Rff .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #eddcce;
}
.cid-vdouMr1Rff .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vdouMr1Rff .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vdouMr1Rff ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vdouMr1Rff .navbar-buttons {
  text-align: center;
}
.cid-vdouMr1Rff button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  background-color: #f6efe8;
  border-radius: 50%;
}
.cid-vdouMr1Rff button.navbar-toggler .hamburger span {
  position: absolute;
  right: 13px;
  width: 22px;
  height: 2px;
  background-color: #715537;
}
.cid-vdouMr1Rff button.navbar-toggler .hamburger span:nth-child(1) {
  top: 17px;
  transition: all 0.2s;
}
.cid-vdouMr1Rff button.navbar-toggler .hamburger span:nth-child(2) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-vdouMr1Rff button.navbar-toggler .hamburger span:nth-child(3) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-vdouMr1Rff button.navbar-toggler .hamburger span:nth-child(4) {
  top: 29px;
  transition: all 0.2s;
}
.cid-vdouMr1Rff nav.opened .hamburger span:nth-child(1) {
  top: 17px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-vdouMr1Rff nav.opened .hamburger span:nth-child(2) {
  transform: translateY(-1px) rotate(45deg);
  transition: all 0.25s;
}
.cid-vdouMr1Rff nav.opened .hamburger span:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
  transition: all 0.25s;
}
.cid-vdouMr1Rff nav.opened .hamburger span:nth-child(4) {
  top: 29px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-vdouMr1Rff .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vdouMr1Rff a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vdouMr1Rff .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-vdouMr1Rff .navbar {
    height: 70px;
  }
  .cid-vdouMr1Rff .navbar.opened {
    height: auto;
  }
  .cid-vdouMr1Rff .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vdouMr1Rff .container,
.cid-vdouMr1Rff .container-fluid {
  flex-wrap: wrap;
}
.cid-vdouMr1Rff .navbar-collapse {
  width: 75%;
  min-height: 89px;
}
.cid-vdouMr1Rff .border-item {
  width: 100%;
  height: 1px;
  background-color: #caa9a8;
}
.cid-vdouMr1Rff .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-vdouMr1Rff .navbar-brand {
    width: calc(100% - 48px) !important;
    min-height: 89px;
  }
  .cid-vdouMr1Rff .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 1rem;
    order: 5;
  }
  .cid-vdouMr1Rff .navbar-nav {
    width: 100%;
  }
}
.cid-vdouMrvpcE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/image002.jpg-1327x546.jpg");
}
.cid-vdouMrvpcE .mbr-fallback-image.disabled {
  display: none;
}
.cid-vdouMrvpcE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vdouMrvpcE .card-wrapper {
  padding: 0 66px;
}
@media (max-width: 992px) {
  .cid-vdouMrvpcE .card-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-vdouMrvpcE .content-wrap .label-wrapper {
    margin-bottom: 32px;
  }
}
.cid-vdouMrvpcE .content-wrap .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 10px;
}
.cid-vdouMrvpcE .content-wrap .label-wrapper .image-wrapper img {
  height: 365px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vdouMrvpcE .content-wrap .label-wrapper .image-wrapper img {
    height: 300px;
  }
}
.cid-vdouMrvpcE .content-wrap .text-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-vdouMrvpcE .content-wrap .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-vdouMrvpcE .content-wrap .text-wrapper .line-wrap {
  width: 100%;
  height: 24px;
  background-image: linear-gradient(90deg, #eddcce 0, transparent 100%);
  margin-bottom: 24px;
}
.cid-vdouMrvpcE .content-wrap .text-wrapper .text_2 {
  margin-bottom: 0;
}
.cid-vdouMrvpcE .content-wrap .text-wrapper .mbr-section-btn {
  margin-top: 14px;
}
.cid-vdouMrvpcE .mbr-label {
  color: #f6f4f0;
}
.cid-vdouMrvpcE .mbr-section-title {
  color: #f6f4f0;
}
.cid-vdouMrvpcE .mbr-text {
  color: #eddcce;
}
.cid-vdouMrvpcE .mbr-section-title,
.cid-vdouMrvpcE .mbr-section-btn {
  color: #eddcce;
}
.cid-vdovxDQGxh {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #eddcce;
}
.cid-vdovxDQGxh .mbr-fallback-image.disabled {
  display: none;
}
.cid-vdovxDQGxh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vdovxDQGxh .text-wrap {
  width: 100%;
}
.cid-vdovxDQGxh .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 767px) {
  .cid-vdovxDQGxh .mbr-section-head {
    margin-bottom: 60px;
  }
}
.cid-vdovxDQGxh .mbr-section-title {
  color: #164194;
  margin-bottom: 0;
}
.cid-vdovxDQGxh .mbr-text {
  color: #353535;
  margin-top: 20px;
}
.cid-vdovxDQGxh .item-row {
  row-gap: 40px;
  margin-left: -20px;
  margin-right: -20px;
}
.cid-vdovxDQGxh .item-row > [class*="col"] {
  padding-left: 20px;
  padding-right: 20px;
}
.cid-vdovxDQGxh .card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  height: 100%;
  background-color: #164194;
  overflow: hidden;
}
.cid-vdovxDQGxh .card_1 {
  border: 1px solid rgba(22, 65, 148, 0.8);
  border-radius: 0 45px 45px 45px;
}
.cid-vdovxDQGxh .card_1 .card-title-wrap {
  border-radius: 0 44px 44px 44px;
  border: 1px solid rgba(22, 65, 148, 0.8);
  background-color: rgba(255, 255, 255, 0.8);
}
.cid-vdovxDQGxh .card_2 {
  border: 1px solid rgba(22, 65, 148, 0.8);
  border-radius: 45px;
}
.cid-vdovxDQGxh .card_2 .card-title-wrap {
  border-radius: 44px;
  border: 1px solid rgba(22, 65, 148, 0.8);
  background-color: rgba(255, 255, 255, 0.8);
}
.cid-vdovxDQGxh .card_3 {
  border: 1px solid rgba(22, 65, 148, 0.8);
  border-radius: 45px 45px 0 45px;
}
.cid-vdovxDQGxh .card_3 .card-title-wrap {
  border-radius: 44px 44px 0 44px;
  border: 1px solid rgba(22, 65, 148, 0.8);
  background-color: rgba(255, 255, 255, 0.8);
}
.cid-vdovxDQGxh .card-title-wrap {
  padding: 45px 26px;
}
.cid-vdovxDQGxh .card-title {
  width: 100%;
  margin: 0;
  color: #164194;
}
.cid-vdovxDQGxh .card-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex-grow: 1;
  padding: 32px 26px 50px;
}
.cid-vdovxDQGxh .card-text {
  color: #353535;
  margin: 0 0 auto;
}
.cid-vdovxDQGxh .card-text-bottom {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  row-gap: 18px;
  margin-top: 28px;
}
.cid-vdovxDQGxh .card-duration {
  color: #164194;
}
.cid-vdovxDQGxh .card-cost {
  color: #164194;
}
.cid-vdovxDQGxh .mbr-section-btn {
  margin-top: 5px;
}
.cid-vdovxDQGxh .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
.cid-vdovxDQGxh .card-text,
.cid-vdovxDQGxh .mbr-section-btn {
  color: #eddcce;
}
.cid-vdoyrh9GcI {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #153b85;
}
.cid-vdoyrh9GcI .mbr-fallback-image.disabled {
  display: none;
}
.cid-vdoyrh9GcI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vdoyrh9GcI .text-wrap {
  width: 100%;
}
.cid-vdoyrh9GcI .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 767px) {
  .cid-vdoyrh9GcI .mbr-section-head {
    margin-bottom: 60px;
  }
}
.cid-vdoyrh9GcI .mbr-section-title {
  color: #eddcce;
  margin-bottom: 0;
}
.cid-vdoyrh9GcI .mbr-text {
  color: #353535;
  margin-top: 20px;
}
.cid-vdoyrh9GcI .item-row {
  row-gap: 40px;
  margin-left: -20px;
  margin-right: -20px;
}
.cid-vdoyrh9GcI .item-row > [class*="col"] {
  padding-left: 20px;
  padding-right: 20px;
}
.cid-vdoyrh9GcI .card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  height: 100%;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-vdoyrh9GcI .card_1 {
  border: 1px solid rgba(248, 241, 234, 0.8);
  border-radius: 0 45px 45px 45px;
}
.cid-vdoyrh9GcI .card_1 .card-title-wrap {
  border-radius: 0 44px 44px 44px;
  border: 1px solid rgba(248, 241, 234, 0.8);
  background-color: rgba(150, 173, 218, 0.8);
}
.cid-vdoyrh9GcI .card_2 {
  border: 1px solid rgba(248, 241, 234, 0.8);
  border-radius: 45px;
}
.cid-vdoyrh9GcI .card_2 .card-title-wrap {
  border-radius: 44px;
  border: 1px solid rgba(248, 241, 234, 0.8);
  background-color: rgba(150, 173, 218, 0.8);
}
.cid-vdoyrh9GcI .card_3 {
  border: 1px solid rgba(248, 241, 234, 0.8);
  border-radius: 45px 45px 0 45px;
}
.cid-vdoyrh9GcI .card_3 .card-title-wrap {
  border-radius: 44px 44px 0 44px;
  border: 1px solid rgba(248, 241, 234, 0.8);
  background-color: rgba(150, 173, 218, 0.8);
}
.cid-vdoyrh9GcI .card-title-wrap {
  padding: 45px 26px;
}
.cid-vdoyrh9GcI .card-title {
  width: 100%;
  margin: 0;
  color: #164194;
}
.cid-vdoyrh9GcI .card-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex-grow: 1;
  padding: 32px 26px 50px;
}
.cid-vdoyrh9GcI .card-text {
  color: #353535;
  margin: 0 0 auto;
}
.cid-vdoyrh9GcI .card-text-bottom {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  row-gap: 18px;
  margin-top: 28px;
}
.cid-vdoyrh9GcI .card-duration {
  color: #164194;
}
.cid-vdoyrh9GcI .card-cost {
  color: #164194;
}
.cid-vdoyrh9GcI .mbr-section-btn {
  margin-top: 5px;
}
.cid-vdoyrh9GcI .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
.cid-vdoyrh9GcI .card-text,
.cid-vdoyrh9GcI .mbr-section-btn {
  color: #164194;
}
.cid-vdoy2vy11H {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #eddcce;
}
.cid-vdoy2vy11H .mbr-fallback-image.disabled {
  display: none;
}
.cid-vdoy2vy11H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vdoy2vy11H .text-wrap {
  width: 100%;
}
.cid-vdoy2vy11H .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 767px) {
  .cid-vdoy2vy11H .mbr-section-head {
    margin-bottom: 60px;
  }
}
.cid-vdoy2vy11H .mbr-section-title {
  color: #153b85;
  margin-bottom: 0;
}
.cid-vdoy2vy11H .mbr-text {
  color: #353535;
  margin-top: 20px;
}
.cid-vdoy2vy11H .item-row {
  row-gap: 40px;
  margin-left: -20px;
  margin-right: -20px;
}
.cid-vdoy2vy11H .item-row > [class*="col"] {
  padding-left: 20px;
  padding-right: 20px;
}
.cid-vdoy2vy11H .card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  height: 100%;
  background-color: #164194;
  overflow: hidden;
}
.cid-vdoy2vy11H .card_1 {
  border: 1px solid rgba(22, 65, 148, 0.8);
  border-radius: 0 45px 45px 45px;
}
.cid-vdoy2vy11H .card_1 .card-title-wrap {
  border-radius: 0 44px 44px 44px;
  border: 1px solid rgba(22, 65, 148, 0.8);
  background-color: rgba(255, 255, 255, 0.8);
}
.cid-vdoy2vy11H .card_2 {
  border: 1px solid rgba(202, 169, 168, 0.8);
  border-radius: 45px;
}
.cid-vdoy2vy11H .card_2 .card-title-wrap {
  border-radius: 44px;
  border: 1px solid rgba(202, 169, 168, 0.8);
  background-color: rgba(241, 219, 218, 0.8);
}
.cid-vdoy2vy11H .card_3 {
  border: 1px solid rgba(130, 157, 133, 0.8);
  border-radius: 45px 45px 0 45px;
}
.cid-vdoy2vy11H .card_3 .card-title-wrap {
  border-radius: 44px 44px 0 44px;
  border: 1px solid rgba(130, 157, 133, 0.8);
  background-color: rgba(195, 195, 195, 0.8);
}
.cid-vdoy2vy11H .card-title-wrap {
  padding: 45px 26px;
}
.cid-vdoy2vy11H .card-title {
  width: 100%;
  margin: 0;
  color: #164194;
}
.cid-vdoy2vy11H .card-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex-grow: 1;
  padding: 32px 26px 50px;
}
.cid-vdoy2vy11H .card-text {
  color: #353535;
  margin: 0 0 auto;
}
.cid-vdoy2vy11H .card-text-bottom {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  row-gap: 18px;
  margin-top: 28px;
}
.cid-vdoy2vy11H .card-duration {
  color: #eddcce;
}
.cid-vdoy2vy11H .card-cost {
  color: #164194;
}
.cid-vdoy2vy11H .mbr-section-btn {
  margin-top: 5px;
}
.cid-vdoy2vy11H .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
.cid-vdoy2vy11H .card-text,
.cid-vdoy2vy11H .mbr-section-btn {
  color: #eddcce;
}
.cid-vdouMslVWG {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #164194;
}
.cid-vdouMslVWG .mbr-fallback-image.disabled {
  display: none;
}
.cid-vdouMslVWG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vdouMslVWG .text-wrap {
  width: 100%;
}
.cid-vdouMslVWG .mbr-title {
  margin-bottom: 0;
  color: #eddcce;
}
.cid-vdouMslVWG .mbr-text {
  padding-top: 16px;
  color: #eddcce;
}
.cid-vdouMslVWG .list-wrap {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-vdouMslVWG .list-wrap {
    margin-top: 24px;
  }
}
.cid-vdouMslVWG .list-box {
  width: 100%;
}
.cid-vdouMslVWG .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
}
.cid-vdouMslVWG .list-text {
  position: relative;
}
.cid-vdouMslVWG .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-vdouMslVWG .list-text:before {
  content: "";
  position: absolute;
  display: block;
  width: 16px;
  height: 14px;
  left: -30px;
  top: 7px;
  background-image: url("../../../assets/images/marker.svg");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.cid-vdouMsLD4V {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #164194;
}
.cid-vdouMsLD4V .mbr-text {
  color: #FFFCF5;
}
.cid-vdouMsLD4V .media-container-row .mbr-text {
  color: #eddcce;
}
