body {
  font-family: Noto Sans;
}
.display-1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.375rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.46875rem;
}
.display-2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.125rem;
}
.display-4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.5625rem;
}
.display-5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 500;
}
.display-5 > .mbr-iconfont {
  font-size: 1.75rem;
}
.display-7 {
  font-family: 'Outfit', sans-serif;
  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: #29a436 !important;
}
.bg-success {
  background-color: #446a49 !important;
}
.bg-info {
  background-color: #d0c4b7 !important;
}
.bg-warning {
  background-color: #caa9a8 !important;
}
.bg-danger {
  background-color: #895957 !important;
}
.btn-primary:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #29a436;
  border: 1px solid #29a436;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-primary,
.btn-primary:active {
  background-color: transparent  !important;
  border-color: #29a436 !important;
  color: #140707 !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: #140707 !important;
}
.btn-primary:hover:before,
.btn-primary:focus:before,
.btn-primary.focus:before,
.btn-primary.active:before {
  background-color: #29a436 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #140707 !important;
  background-color: #185f1f !important;
  border-color: #185f1f !important;
}
.btn-secondary:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #987a5a;
  border: 1px solid #987a5a;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-secondary,
.btn-secondary:active {
  background-color: transparent  !important;
  border-color: #987a5a !important;
  color: #1f1b24 !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: #1f1b24 !important;
}
.btn-secondary:hover:before,
.btn-secondary:focus:before,
.btn-secondary.focus:before,
.btn-secondary.active:before {
  background-color: #987a5a !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #1f1b24 !important;
  background-color: #624e3a !important;
  border-color: #624e3a !important;
}
.btn-info:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #d0c4b7;
  border: 1px solid #d0c4b7;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-info,
.btn-info:active {
  background-color: transparent  !important;
  border-color: #d0c4b7 !important;
  color: #686174 !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: #686174 !important;
}
.btn-info:hover:before,
.btn-info:focus:before,
.btn-info.focus:before,
.btn-info.active:before {
  background-color: #d0c4b7 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #686174 !important;
  background-color: #ae9983 !important;
  border-color: #ae9983 !important;
}
.btn-success: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-success,
.btn-success: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-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: #446a49 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #000000 !important;
  background-color: #223525 !important;
  border-color: #223525 !important;
}
.btn-warning:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #caa9a8;
  border: 1px solid #caa9a8;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-warning,
.btn-warning:active {
  background-color: transparent  !important;
  border-color: #caa9a8 !important;
  color: #54566c !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: #54566c !important;
}
.btn-warning:hover:before,
.btn-warning:focus:before,
.btn-warning.focus:before,
.btn-warning.active:before {
  background-color: #caa9a8 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #54566c !important;
  background-color: #a97472 !important;
  border-color: #a97472 !important;
}
.btn-danger:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #895957;
  border: 1px solid #895957;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-danger,
.btn-danger:active {
  background-color: transparent  !important;
  border-color: #895957 !important;
  color: #141519 !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: #141519 !important;
}
.btn-danger:hover:before,
.btn-danger:focus:before,
.btn-danger.focus:before,
.btn-danger.active:before {
  background-color: #895957 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #141519 !important;
  background-color: #543735 !important;
  border-color: #543735 !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 #29a436;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-primary-outline,
.btn-primary-outline:active {
  color: #140707;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #140707 !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #140707 !important;
  background-color: #185f1f !important;
  border-color: #185f1f !important;
}
.btn-secondary-outline:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #987a5a;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  color: #1f1b24;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #1f1b24 !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #1f1b24 !important;
  background-color: #624e3a !important;
  border-color: #624e3a !important;
}
.btn-info-outline:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #d0c4b7;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-info-outline,
.btn-info-outline:active {
  color: #686174;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #686174 !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #686174 !important;
  background-color: #ae9983 !important;
  border-color: #ae9983 !important;
}
.btn-success-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-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: #223525 !important;
  border-color: #223525 !important;
}
.btn-warning-outline:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #caa9a8;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-warning-outline,
.btn-warning-outline:active {
  color: #54566c;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #54566c !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #54566c !important;
  background-color: #a97472 !important;
  border-color: #a97472 !important;
}
.btn-danger-outline:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #895957;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-danger-outline,
.btn-danger-outline:active {
  color: #141519;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #141519 !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #141519 !important;
  background-color: #543735 !important;
  border-color: #543735 !important;
}
.btn-black-outline:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #353535;
  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: #0a0a0a !important;
  border-color: #0a0a0a !important;
}
.btn-white-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-white-outline,
.btn-white-outline:active {
  color: #a6a6a6;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #a6a6a6 !important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #a6a6a6 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.text-primary {
  color: #29a436 !important;
}
.text-secondary {
  color: #987a5a !important;
}
.text-success {
  color: #446a49 !important;
}
.text-info {
  color: #d0c4b7 !important;
}
.text-warning {
  color: #caa9a8 !important;
}
.text-danger {
  color: #895957 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #353535 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #15521b !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #584734 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #1c2c1e !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #a89179 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #a36a69 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #4b302f !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: #29a436;
}
.nav-tabs .nav-link:not(.active) {
  color: #353535;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #d0c4b7;
}
.alert-warning {
  background-color: #caa9a8;
}
.alert-danger {
  background-color: #895957;
}
.mbr-gallery-filter li.active .btn {
  background-color: #29a436;
  border-color: #29a436;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #29a436;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #71db7c;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #80ae86;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #c19f9e;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Outfit', sans-serif;
  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: #29a436 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Outfit', sans-serif;
  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: #29a436;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #29a436;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #29a436;
}
.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: #29a436;
  border-bottom-color: #29a436;
}
.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: #29a436 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #987a5a !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='%2329a436' %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);
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-v05sg1x1sJ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v05sg1x1sJ .menu-text {
  padding: 0 2rem;
  color: #29a436;
}
@media (max-width: 992px) {
  .cid-v05sg1x1sJ .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v05sg1x1sJ .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v05sg1x1sJ .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v05sg1x1sJ .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v05sg1x1sJ .container {
    padding: 0 1rem;
  }
}
.cid-v05sg1x1sJ .menu-tite {
  background: #29a436;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffc800;
}
.cid-v05sg1x1sJ .nav-link {
  position: relative;
}
.cid-v05sg1x1sJ .nav-link:hover {
  color: #d0c4b7 !important;
}
.cid-v05sg1x1sJ nav.navbar {
  position: fixed;
}
.cid-v05sg1x1sJ .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-v05sg1x1sJ .navbar.opened {
  transition: all 0.3s;
}
.cid-v05sg1x1sJ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v05sg1x1sJ .navbar .navbar-logo img {
  width: auto;
}
.cid-v05sg1x1sJ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v05sg1x1sJ .navbar.collapsed {
  justify-content: center;
}
.cid-v05sg1x1sJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v05sg1x1sJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v05sg1x1sJ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.1rem);
  }
}
.cid-v05sg1x1sJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v05sg1x1sJ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v05sg1x1sJ .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-v05sg1x1sJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v05sg1x1sJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v05sg1x1sJ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v05sg1x1sJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v05sg1x1sJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v05sg1x1sJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v05sg1x1sJ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v05sg1x1sJ .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-v05sg1x1sJ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v05sg1x1sJ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v05sg1x1sJ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v05sg1x1sJ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v05sg1x1sJ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v05sg1x1sJ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v05sg1x1sJ .navbar.navbar-short {
  min-height: 60px;
}
.cid-v05sg1x1sJ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v05sg1x1sJ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v05sg1x1sJ .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-v05sg1x1sJ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v05sg1x1sJ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v05sg1x1sJ .dropdown-item:hover,
.cid-v05sg1x1sJ .dropdown-item:focus {
  background: #29a436 !important;
  color: white !important;
}
.cid-v05sg1x1sJ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v05sg1x1sJ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v05sg1x1sJ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v05sg1x1sJ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v05sg1x1sJ .dropdown-menu,
.cid-v05sg1x1sJ .navbar.opened {
  background: #ffffff !important;
}
.cid-v05sg1x1sJ .nav-item:focus,
.cid-v05sg1x1sJ .nav-link:focus {
  outline: none;
}
.cid-v05sg1x1sJ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v05sg1x1sJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v05sg1x1sJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v05sg1x1sJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v05sg1x1sJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v05sg1x1sJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v05sg1x1sJ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v05sg1x1sJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v05sg1x1sJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v05sg1x1sJ .dropdown-item.active,
.cid-v05sg1x1sJ .dropdown-item:active {
  background-color: transparent;
}
.cid-v05sg1x1sJ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v05sg1x1sJ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v05sg1x1sJ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v05sg1x1sJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v05sg1x1sJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v05sg1x1sJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v05sg1x1sJ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v05sg1x1sJ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v05sg1x1sJ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v05sg1x1sJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v05sg1x1sJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v05sg1x1sJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v05sg1x1sJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v05sg1x1sJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v05sg1x1sJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v05sg1x1sJ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v05sg1x1sJ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v05sg1x1sJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v05sg1x1sJ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v05sg1x1sJ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v05sg1x1sJ .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-v05sg1x1sJ .navbar {
    height: 70px;
  }
  .cid-v05sg1x1sJ .navbar.opened {
    height: auto;
  }
  .cid-v05sg1x1sJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uZSxwLbH3Y {
  padding-top: 9rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/come-diventare-psicologo-gli-studi-il-percorso-formativo-e-consigli-utili-450x300.jpg");
  overflow: hidden;
}
.cid-uZSxwLbH3Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZSxwLbH3Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZSxwLbH3Y .row {
  flex-wrap: nowrap;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uZSxwLbH3Y .row {
    flex-wrap: wrap;
  }
}
.cid-uZSxwLbH3Y .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uZSxwLbH3Y .text-wrap {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-uZSxwLbH3Y .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-uZSxwLbH3Y .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #a9bbab;
  transform: translateY(40%);
}
.cid-uZSxwLbH3Y .mbr-section-title {
  color: #353535;
  text-align: left;
}
.cid-uZSxwLbH3Y .mbr-section-title a {
  pointer-events: none !important;
  font-style: italic !important;
  font-weight: bold !important;
}
.cid-uZSxwLbH3Y .mbr-section-subtitle {
  margin-top: 30px;
  color: #353535;
}
@media (max-width: 767px) {
  .cid-uZSxwLbH3Y .mbr-section-subtitle {
    margin-top: 12px;
  }
}
.cid-uZSxwLbH3Y .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uZSxwLbH3Y .mbr-text {
    margin-top: 12px;
  }
}
.cid-uZSxwLbH3Y .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uZSxwLbH3Y .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uZSxwLbH3Y .col-img {
  width: 430px;
}
@media (max-width: 1199px) {
  .cid-uZSxwLbH3Y .col-img {
    width: 350px;
  }
}
.cid-uZSxwLbH3Y .img-wrap {
  position: relative;
  width: 100%;
}
.cid-uZSxwLbH3Y .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-uZSxwLbH3Y .img-wrap .img-box {
    border-top-left-radius: 55px;
    border-top-right-radius: 55px;
    border-bottom-right-radius: 55px;
  }
}
.cid-uZSxwLbH3Y .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uZSxwLbH3Y .img-wrap .frame-box {
  position: absolute;
  height: 240px;
}
.cid-uZSxwLbH3Y .img-wrap .frame-box svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}
.cid-uZSxwLbH3Y .img-wrap .frame-box-1 {
  bottom: -20%;
  left: -14%;
  width: 85%;
  transform: rotate(10deg);
}
.cid-uZSxwLbH3Y .img-wrap .frame-box-2 {
  bottom: -18%;
  right: -14%;
  width: 84%;
  transform: rotate(0deg);
}
@media (max-width: 991px) {
  .cid-uZSxwLbH3Y .img-wrap .frame-box-2 {
    bottom: auto;
    top: -15%;
  }
}
.cid-uZSxwLbH3Y .mbr-text,
.cid-uZSxwLbH3Y .mbr-section-btn {
  text-align: left;
  color: #446a49;
}
.cid-tqnJNh3H3d {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fffcf5;
  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: #446a49;
  text-align: right;
}
.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: right;
  color: #446a49;
}
.cid-tqnPVhqg2X {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #fffcf5;
}
.cid-tqnPVhqg2X .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqnPVhqg2X .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqnPVhqg2X .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tqnPVhqg2X .row {
    align-items: center !important;
  }
}
.cid-tqnPVhqg2X .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-tqnPVhqg2X .mbr-section-head {
    margin-bottom: 75px;
  }
}
@media (max-width: 767px) {
  .cid-tqnPVhqg2X .mbr-section-head {
    margin-bottom: 65px;
  }
}
.cid-tqnPVhqg2X .mbr-section-title {
  color: #829D85;
  margin-bottom: 0;
}
.cid-tqnPVhqg2X .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
.cid-tqnPVhqg2X .text-wrap {
  width: 100%;
  padding: 36px 0;
}
@media (max-width: 991px) {
  .cid-tqnPVhqg2X .text-wrap {
    padding: 30px 0;
  }
}
.cid-tqnPVhqg2X .mbr-title {
  color: #446a49;
}
.cid-tqnPVhqg2X .mbr-text {
  margin-top: 12px;
  color: #353535;
}
.cid-tqnPVhqg2X .list-box {
  width: 100%;
}
.cid-tqnPVhqg2X .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #446a49;
  padding-left: 0;
}
.cid-tqnPVhqg2X .list-text {
  position: relative;
}
.cid-tqnPVhqg2X .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-tqnPVhqg2X .mbr-section-btn {
  margin-top: 20px;
}
.cid-tqnPVhqg2X .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-tqnPVhqg2X .img-box {
    border-radius: 0;
  }
}
@media (max-width: 767px) {
  .cid-tqnPVhqg2X .img-box {
    border-radius: 0 0 0 15vw;
    border-radius: 0 0 15vw 0;
  }
}
.cid-tqnPVhqg2X .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-v1oHc5dGrb {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fffdfb;
}
.cid-v1oHc5dGrb .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1oHc5dGrb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1oHc5dGrb .google-map {
  height: 350px;
  position: relative;
}
.cid-v1oHc5dGrb .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-v1oHc5dGrb .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-v1oHc5dGrb .google-map[data-state] {
  background: #e9e5dc;
}
.cid-v1oHc5dGrb .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-v1oHc5dGrb .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-v1oHc5dGrb .mbr-section-subtitle {
  text-align: center;
  color: #446a49;
}
.cid-v1oHc5dGrb .mbr-section-title {
  color: #446a49;
}
.cid-v1SefP8VXz {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f6efe8;
}
.cid-v1SefP8VXz .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1SefP8VXz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1SefP8VXz .content-wrapper .mbr-label {
  margin-bottom: 0;
}
.cid-v1SefP8VXz .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-v1SefP8VXz .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v1SefP8VXz .content-wrapper .mbr-section-btn {
  margin-top: 24px;
}
.cid-v1SefP8VXz .mbr-label {
  color: #111111;
  text-align: center;
}
.cid-v1SefP8VXz .mbr-section-title {
  color: #ff6d99;
}
.cid-v1SefP8VXz .mbr-text,
.cid-v1SefP8VXz .text-wrapper {
  color: #111111;
  text-align: center;
}
.cid-v1SefP8VXz .mbr-section-title,
.cid-v1SefP8VXz .mbr-section-btn {
  text-align: center;
  color: #446a49;
}
.cid-tqnMpBk11O {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/fiore-di-loto-1200x800.jpg");
}
.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: #446a49;
  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-uZT53jGXNT {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #fffdfb;
}
.cid-uZT53jGXNT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZT53jGXNT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZT53jGXNT .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uZT53jGXNT .container-fluid {
    padding: 0 20px;
  }
}
.cid-uZT53jGXNT .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uZT53jGXNT .container {
    padding: 0 20px;
  }
}
.cid-uZT53jGXNT .list-wrapper .list,
.cid-uZT53jGXNT .list-wrapper_2 .list_2 {
  display: inline-flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uZT53jGXNT .list-wrapper .list .item-wrap,
.cid-uZT53jGXNT .list-wrapper_2 .list_2 .item-wrap {
  margin-right: 24px;
  transition: all 0.3s ease-out;
}
.cid-uZT53jGXNT .list-wrapper .list .item-wrap:hover,
.cid-uZT53jGXNT .list-wrapper_2 .list_2 .item-wrap:hover {
  opacity: .7;
}
@media (max-width: 992px) {
  .cid-uZT53jGXNT .list-wrapper .list .item-wrap,
  .cid-uZT53jGXNT .list-wrapper_2 .list_2 .item-wrap {
    margin-bottom: 32px;
  }
}
.cid-uZT53jGXNT .logo-wrap img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: inline-flex;
  margin-bottom: 8px;
}
.cid-uZT53jGXNT .mbr-section-title {
  margin-bottom: 0;
  color: #1d1d1d;
}
@media (max-width: 992px) {
  .cid-uZT53jGXNT .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uZT53jGXNT .text-wrapper {
  margin: 40px 0 22px;
}
.cid-uZT53jGXNT .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uZT53jGXNT .copy-wrapper .copyright {
  margin-bottom: 0;
}
.cid-uZT53jGXNT .mbr-section-title,
.cid-uZT53jGXNT .logo-wrap {
  text-align: center;
  color: #446a49;
}
.cid-uZT53jGXNT .list {
  color: #1d1d1d;
}
.cid-uZT53jGXNT .list_2 {
  color: #989898;
}
.cid-uZT53jGXNT .mbr-text {
  color: #989898;
  text-align: center;
}
.cid-uZT53jGXNT .copyright {
  color: #353535;
  text-align: center;
}
.cid-uZT53jGXNT .list-wrapper_2 {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uZT53jGXNT .list-wrapper,
  .cid-uZT53jGXNT .list-wrapper_2 {
    text-align: center;
  }
}
.cid-uZT53jGXNT .list_2,
.cid-uZT53jGXNT .list-wrapper_2 {
  text-align: justify;
}
.cid-v05sg1x1sJ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v05sg1x1sJ .menu-text {
  padding: 0 2rem;
  color: #29a436;
}
@media (max-width: 992px) {
  .cid-v05sg1x1sJ .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v05sg1x1sJ .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v05sg1x1sJ .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v05sg1x1sJ .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v05sg1x1sJ .container {
    padding: 0 1rem;
  }
}
.cid-v05sg1x1sJ .menu-tite {
  background: #29a436;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffc800;
}
.cid-v05sg1x1sJ .nav-link {
  position: relative;
}
.cid-v05sg1x1sJ .nav-link:hover {
  color: #d0c4b7 !important;
}
.cid-v05sg1x1sJ nav.navbar {
  position: fixed;
}
.cid-v05sg1x1sJ .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-v05sg1x1sJ .navbar.opened {
  transition: all 0.3s;
}
.cid-v05sg1x1sJ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v05sg1x1sJ .navbar .navbar-logo img {
  width: auto;
}
.cid-v05sg1x1sJ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v05sg1x1sJ .navbar.collapsed {
  justify-content: center;
}
.cid-v05sg1x1sJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v05sg1x1sJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v05sg1x1sJ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.1rem);
  }
}
.cid-v05sg1x1sJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v05sg1x1sJ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v05sg1x1sJ .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-v05sg1x1sJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v05sg1x1sJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v05sg1x1sJ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v05sg1x1sJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v05sg1x1sJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v05sg1x1sJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v05sg1x1sJ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v05sg1x1sJ .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-v05sg1x1sJ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v05sg1x1sJ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v05sg1x1sJ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v05sg1x1sJ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v05sg1x1sJ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v05sg1x1sJ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v05sg1x1sJ .navbar.navbar-short {
  min-height: 60px;
}
.cid-v05sg1x1sJ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v05sg1x1sJ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v05sg1x1sJ .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-v05sg1x1sJ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v05sg1x1sJ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v05sg1x1sJ .dropdown-item:hover,
.cid-v05sg1x1sJ .dropdown-item:focus {
  background: #29a436 !important;
  color: white !important;
}
.cid-v05sg1x1sJ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v05sg1x1sJ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v05sg1x1sJ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v05sg1x1sJ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v05sg1x1sJ .dropdown-menu,
.cid-v05sg1x1sJ .navbar.opened {
  background: #ffffff !important;
}
.cid-v05sg1x1sJ .nav-item:focus,
.cid-v05sg1x1sJ .nav-link:focus {
  outline: none;
}
.cid-v05sg1x1sJ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v05sg1x1sJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v05sg1x1sJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v05sg1x1sJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v05sg1x1sJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v05sg1x1sJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v05sg1x1sJ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v05sg1x1sJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v05sg1x1sJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v05sg1x1sJ .dropdown-item.active,
.cid-v05sg1x1sJ .dropdown-item:active {
  background-color: transparent;
}
.cid-v05sg1x1sJ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v05sg1x1sJ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v05sg1x1sJ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v05sg1x1sJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v05sg1x1sJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v05sg1x1sJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v05sg1x1sJ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v05sg1x1sJ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v05sg1x1sJ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v05sg1x1sJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v05sg1x1sJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v05sg1x1sJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v05sg1x1sJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v05sg1x1sJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v05sg1x1sJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v05sg1x1sJ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v05sg1x1sJ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v05sg1x1sJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v05sg1x1sJ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v05sg1x1sJ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v05sg1x1sJ .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-v05sg1x1sJ .navbar {
    height: 70px;
  }
  .cid-v05sg1x1sJ .navbar.opened {
    height: auto;
  }
  .cid-v05sg1x1sJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v0sqQsOXYl {
  padding-top: 9rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-3-1920x1280.jpg");
  overflow: hidden;
}
.cid-v0sqQsOXYl .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0sqQsOXYl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0sqQsOXYl .row {
  flex-wrap: nowrap;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-v0sqQsOXYl .row {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-v0sqQsOXYl .col-text {
    order: 2;
  }
}
.cid-v0sqQsOXYl .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-v0sqQsOXYl .text-wrap {
    margin-top: 30px;
  }
}
.cid-v0sqQsOXYl .mbr-section-title {
  color: #353535;
}
.cid-v0sqQsOXYl .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v0sqQsOXYl .mbr-text {
    margin-top: 12px;
  }
}
.cid-v0sqQsOXYl .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v0sqQsOXYl .mbr-section-btn {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-v0sqQsOXYl .col-img {
    order: 1;
  }
}
.cid-v0sqQsOXYl .img-wrap {
  position: relative;
  width: 100%;
}
.cid-v0sqQsOXYl .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 65px 65px 65px 0;
  overflow: hidden;
  border-radius: 65px 65px 0 65px;
}
@media (max-width: 1199px) {
  .cid-v0sqQsOXYl .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
    border-radius: 55px 55px 0 55px;
  }
}
@media (max-width: 991px) {
  .cid-v0sqQsOXYl .img-wrap .img-box {
    border-radius: 65px 65px 65px 0;
    border-radius: 65px 65px 0 65px;
  }
}
@media (max-width: 767px) {
  .cid-v0sqQsOXYl .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
    border-radius: 55px  55px 0 55px;
  }
}
@media (max-width: 575px) {
  .cid-v0sqQsOXYl .img-wrap .img-box {
    border-radius: 45px 45px 45px 0;
    border-radius: 45px 45px 0 45px;
  }
}
.cid-v0sqQsOXYl .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-v0sqQsOXYl .mbr-text,
.cid-v0sqQsOXYl .mbr-section-btn {
  text-align: justify;
  color: #6c6c6c;
}
.cid-v0rWOy5F4n {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #f6efe8;
}
.cid-v0rWOy5F4n .text-wrapper {
  padding: 2rem 0;
}
.cid-v0rWOy5F4n .text-wrapper:hover .mbr-section-title a {
  color: #987a5a !important;
}
.cid-v0rWOy5F4n .image-wrapper,
.cid-v0rWOy5F4n img {
  width: 100%;
  object-fit: cover;
}
.cid-v0rWOy5F4n .mbr-section-subtitle {
  margin-bottom: 12px;
  color: #829d85;
}
.cid-v0rWOy5F4n .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-v0rWOy5F4n .mbr-section-btn .btn-secondary-outline:hover,
.cid-v0rWOy5F4n .mbr-section-btn .btn-secondary-outline .active,
.cid-v0rWOy5F4n .mbr-section-btn .btn-secondary-outline:focus {
  color: #29a436 !important;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-v0rWOy5F4n .mbr-section-title {
    font-size: 2.2rem;
  }
}
@media (max-width: 991px) {
  .cid-v0rWOy5F4n {
    flex-direction: column;
  }
  .cid-v0rWOy5F4n .text-wrapper {
    width: 100%;
    padding: 50px 2rem 2rem;
    padding: 0;
    margin: 2rem 0;
  }
}
@media (max-width: 767px) {
  .cid-v0rWOy5F4n .text-wrapper {
    padding: 30px 1rem;
    padding: 0;
  }
}
.cid-v0rWOy5F4n .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0rWOy5F4n .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0rWOy5F4n .mbr-section-title {
  color: #446a49;
}
.cid-v0rWOy5F4n .mbr-text,
.cid-v0rWOy5F4n .mbr-section-btn {
  color: #829d85;
}
.cid-v0sjE46NYl {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fffcf5;
}
.cid-v0sjE46NYl .text-wrapper {
  padding: 2rem 0;
}
.cid-v0sjE46NYl .text-wrapper:hover .mbr-section-title a {
  color: #987a5a !important;
}
.cid-v0sjE46NYl .image-wrapper,
.cid-v0sjE46NYl img {
  width: 100%;
  object-fit: cover;
}
.cid-v0sjE46NYl .mbr-section-subtitle {
  margin-bottom: 12px;
  color: #829d85;
}
.cid-v0sjE46NYl .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-v0sjE46NYl .mbr-section-btn .btn-secondary-outline:hover,
.cid-v0sjE46NYl .mbr-section-btn .btn-secondary-outline .active,
.cid-v0sjE46NYl .mbr-section-btn .btn-secondary-outline:focus {
  color: #29a436 !important;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-v0sjE46NYl .mbr-section-title {
    font-size: 2.2rem;
  }
}
@media (max-width: 991px) {
  .cid-v0sjE46NYl {
    flex-direction: column;
  }
  .cid-v0sjE46NYl .text-wrapper {
    width: 100%;
    padding: 50px 2rem 2rem;
    padding: 0;
    margin: 2rem 0;
  }
}
@media (max-width: 767px) {
  .cid-v0sjE46NYl .text-wrapper {
    padding: 30px 1rem;
    padding: 0;
  }
}
.cid-v0sjE46NYl .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0sjE46NYl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0sjE46NYl .mbr-section-title {
  color: #446a49;
}
.cid-v0sjE46NYl .mbr-text,
.cid-v0sjE46NYl .mbr-section-btn {
  color: #829d85;
}
.cid-v0skyHnVPD {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f6efe8;
}
.cid-v0skyHnVPD .text-wrapper {
  padding: 2rem 0;
}
.cid-v0skyHnVPD .text-wrapper:hover .mbr-section-title a {
  color: #987a5a !important;
}
.cid-v0skyHnVPD .image-wrapper,
.cid-v0skyHnVPD img {
  width: 100%;
  object-fit: cover;
}
.cid-v0skyHnVPD .mbr-section-subtitle {
  margin-bottom: 12px;
  color: #829d85;
}
.cid-v0skyHnVPD .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-v0skyHnVPD .mbr-section-btn .btn-secondary-outline:hover,
.cid-v0skyHnVPD .mbr-section-btn .btn-secondary-outline .active,
.cid-v0skyHnVPD .mbr-section-btn .btn-secondary-outline:focus {
  color: #29a436 !important;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-v0skyHnVPD .mbr-section-title {
    font-size: 2.2rem;
  }
}
@media (max-width: 991px) {
  .cid-v0skyHnVPD {
    flex-direction: column;
  }
  .cid-v0skyHnVPD .text-wrapper {
    width: 100%;
    padding: 50px 2rem 2rem;
    padding: 0;
    margin: 2rem 0;
  }
}
@media (max-width: 767px) {
  .cid-v0skyHnVPD .text-wrapper {
    padding: 30px 1rem;
    padding: 0;
  }
}
.cid-v0skyHnVPD .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0skyHnVPD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0skyHnVPD .mbr-section-title {
  color: #446a49;
}
.cid-v0skyHnVPD .mbr-text,
.cid-v0skyHnVPD .mbr-section-btn {
  color: #829d85;
}
.cid-v0sl3D8Tce {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fffcf5;
}
.cid-v0sl3D8Tce .text-wrapper {
  padding: 2rem 0;
}
.cid-v0sl3D8Tce .text-wrapper:hover .mbr-section-title a {
  color: #987a5a !important;
}
.cid-v0sl3D8Tce .image-wrapper,
.cid-v0sl3D8Tce img {
  width: 100%;
  object-fit: cover;
}
.cid-v0sl3D8Tce .mbr-section-subtitle {
  margin-bottom: 12px;
  color: #829d85;
}
.cid-v0sl3D8Tce .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-v0sl3D8Tce .mbr-section-btn .btn-secondary-outline:hover,
.cid-v0sl3D8Tce .mbr-section-btn .btn-secondary-outline .active,
.cid-v0sl3D8Tce .mbr-section-btn .btn-secondary-outline:focus {
  color: #29a436 !important;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-v0sl3D8Tce .mbr-section-title {
    font-size: 2.2rem;
  }
}
@media (max-width: 991px) {
  .cid-v0sl3D8Tce {
    flex-direction: column;
  }
  .cid-v0sl3D8Tce .text-wrapper {
    width: 100%;
    padding: 50px 2rem 2rem;
    padding: 0;
    margin: 2rem 0;
  }
}
@media (max-width: 767px) {
  .cid-v0sl3D8Tce .text-wrapper {
    padding: 30px 1rem;
    padding: 0;
  }
}
.cid-v0sl3D8Tce .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0sl3D8Tce .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0sl3D8Tce .mbr-section-title {
  color: #446a49;
}
.cid-v0sl3D8Tce .mbr-text,
.cid-v0sl3D8Tce .mbr-section-btn {
  color: #829d85;
}
.cid-v0slHERTCz {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f6efe8;
}
.cid-v0slHERTCz .text-wrapper {
  padding: 2rem 0;
}
.cid-v0slHERTCz .text-wrapper:hover .mbr-section-title a {
  color: #987a5a !important;
}
.cid-v0slHERTCz .image-wrapper,
.cid-v0slHERTCz img {
  width: 100%;
  object-fit: cover;
}
.cid-v0slHERTCz .mbr-section-subtitle {
  margin-bottom: 12px;
  color: #829d85;
}
.cid-v0slHERTCz .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-v0slHERTCz .mbr-section-btn .btn-secondary-outline:hover,
.cid-v0slHERTCz .mbr-section-btn .btn-secondary-outline .active,
.cid-v0slHERTCz .mbr-section-btn .btn-secondary-outline:focus {
  color: #29a436 !important;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-v0slHERTCz .mbr-section-title {
    font-size: 2.2rem;
  }
}
@media (max-width: 991px) {
  .cid-v0slHERTCz {
    flex-direction: column;
  }
  .cid-v0slHERTCz .text-wrapper {
    width: 100%;
    padding: 50px 2rem 2rem;
    padding: 0;
    margin: 2rem 0;
  }
}
@media (max-width: 767px) {
  .cid-v0slHERTCz .text-wrapper {
    padding: 30px 1rem;
    padding: 0;
  }
}
.cid-v0slHERTCz .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0slHERTCz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0slHERTCz .mbr-section-title {
  color: #446a49;
}
.cid-v0slHERTCz .mbr-text,
.cid-v0slHERTCz .mbr-section-btn {
  color: #829d85;
}
.cid-v0smcTDVfv {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #fffcf5;
}
.cid-v0smcTDVfv .text-wrapper {
  padding: 2rem 0;
}
.cid-v0smcTDVfv .text-wrapper:hover .mbr-section-title a {
  color: #987a5a !important;
}
.cid-v0smcTDVfv .image-wrapper,
.cid-v0smcTDVfv img {
  width: 100%;
  object-fit: cover;
}
.cid-v0smcTDVfv .mbr-section-subtitle {
  margin-bottom: 12px;
  color: #829d85;
}
.cid-v0smcTDVfv .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-v0smcTDVfv .mbr-section-btn .btn-secondary-outline:hover,
.cid-v0smcTDVfv .mbr-section-btn .btn-secondary-outline .active,
.cid-v0smcTDVfv .mbr-section-btn .btn-secondary-outline:focus {
  color: #29a436 !important;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-v0smcTDVfv .mbr-section-title {
    font-size: 2.2rem;
  }
}
@media (max-width: 991px) {
  .cid-v0smcTDVfv {
    flex-direction: column;
  }
  .cid-v0smcTDVfv .text-wrapper {
    width: 100%;
    padding: 50px 2rem 2rem;
    padding: 0;
    margin: 2rem 0;
  }
}
@media (max-width: 767px) {
  .cid-v0smcTDVfv .text-wrapper {
    padding: 30px 1rem;
    padding: 0;
  }
}
.cid-v0smcTDVfv .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0smcTDVfv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0smcTDVfv .mbr-section-title {
  color: #446a49;
}
.cid-v0smcTDVfv .mbr-text,
.cid-v0smcTDVfv .mbr-section-btn {
  color: #829d85;
}
.cid-v0smJdVOm8 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f6efe8;
}
.cid-v0smJdVOm8 .text-wrapper {
  padding: 2rem 0;
}
.cid-v0smJdVOm8 .text-wrapper:hover .mbr-section-title a {
  color: #987a5a !important;
}
.cid-v0smJdVOm8 .image-wrapper,
.cid-v0smJdVOm8 img {
  width: 100%;
  object-fit: cover;
}
.cid-v0smJdVOm8 .mbr-section-subtitle {
  margin-bottom: 12px;
  color: #829d85;
}
.cid-v0smJdVOm8 .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-v0smJdVOm8 .mbr-section-btn .btn-secondary-outline:hover,
.cid-v0smJdVOm8 .mbr-section-btn .btn-secondary-outline .active,
.cid-v0smJdVOm8 .mbr-section-btn .btn-secondary-outline:focus {
  color: #29a436 !important;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-v0smJdVOm8 .mbr-section-title {
    font-size: 2.2rem;
  }
}
@media (max-width: 991px) {
  .cid-v0smJdVOm8 {
    flex-direction: column;
  }
  .cid-v0smJdVOm8 .text-wrapper {
    width: 100%;
    padding: 50px 2rem 2rem;
    padding: 0;
    margin: 2rem 0;
  }
}
@media (max-width: 767px) {
  .cid-v0smJdVOm8 .text-wrapper {
    padding: 30px 1rem;
    padding: 0;
  }
}
.cid-v0smJdVOm8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0smJdVOm8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0smJdVOm8 .mbr-section-title {
  color: #446a49;
}
.cid-v0smJdVOm8 .mbr-text,
.cid-v0smJdVOm8 .mbr-section-btn {
  color: #829d85;
}
.cid-v0snhzmIrA {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fffcf5;
}
.cid-v0snhzmIrA .text-wrapper {
  padding: 2rem 0;
}
.cid-v0snhzmIrA .text-wrapper:hover .mbr-section-title a {
  color: #987a5a !important;
}
.cid-v0snhzmIrA .image-wrapper,
.cid-v0snhzmIrA img {
  width: 100%;
  object-fit: cover;
}
.cid-v0snhzmIrA .mbr-section-subtitle {
  margin-bottom: 12px;
  color: #829d85;
}
.cid-v0snhzmIrA .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-v0snhzmIrA .mbr-section-btn .btn-secondary-outline:hover,
.cid-v0snhzmIrA .mbr-section-btn .btn-secondary-outline .active,
.cid-v0snhzmIrA .mbr-section-btn .btn-secondary-outline:focus {
  color: #29a436 !important;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-v0snhzmIrA .mbr-section-title {
    font-size: 2.2rem;
  }
}
@media (max-width: 991px) {
  .cid-v0snhzmIrA {
    flex-direction: column;
  }
  .cid-v0snhzmIrA .text-wrapper {
    width: 100%;
    padding: 50px 2rem 2rem;
    padding: 0;
    margin: 2rem 0;
  }
}
@media (max-width: 767px) {
  .cid-v0snhzmIrA .text-wrapper {
    padding: 30px 1rem;
    padding: 0;
  }
}
.cid-v0snhzmIrA .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0snhzmIrA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0snhzmIrA .mbr-section-title {
  color: #446a49;
}
.cid-v0snhzmIrA .mbr-text,
.cid-v0snhzmIrA .mbr-section-btn {
  color: #829d85;
}
.cid-v1SfMN5OYm {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f6efe8;
}
.cid-v1SfMN5OYm .text-wrapper {
  padding: 2rem 0;
}
.cid-v1SfMN5OYm .text-wrapper:hover .mbr-section-title a {
  color: #987a5a !important;
}
.cid-v1SfMN5OYm .image-wrapper,
.cid-v1SfMN5OYm img {
  width: 100%;
  object-fit: cover;
}
.cid-v1SfMN5OYm .mbr-section-subtitle {
  margin-bottom: 12px;
  color: #829d85;
}
.cid-v1SfMN5OYm .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-v1SfMN5OYm .mbr-section-btn .btn-secondary-outline:hover,
.cid-v1SfMN5OYm .mbr-section-btn .btn-secondary-outline .active,
.cid-v1SfMN5OYm .mbr-section-btn .btn-secondary-outline:focus {
  color: #29a436 !important;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-v1SfMN5OYm .mbr-section-title {
    font-size: 2.2rem;
  }
}
@media (max-width: 991px) {
  .cid-v1SfMN5OYm {
    flex-direction: column;
  }
  .cid-v1SfMN5OYm .text-wrapper {
    width: 100%;
    padding: 50px 2rem 2rem;
    padding: 0;
    margin: 2rem 0;
  }
}
@media (max-width: 767px) {
  .cid-v1SfMN5OYm .text-wrapper {
    padding: 30px 1rem;
    padding: 0;
  }
}
.cid-v1SfMN5OYm .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1SfMN5OYm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1SfMN5OYm .mbr-section-title {
  color: #446a49;
}
.cid-v1SfMN5OYm .mbr-text,
.cid-v1SfMN5OYm .mbr-section-btn {
  color: #829d85;
}
.cid-v0spAYiLZZ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f6efe8;
}
.cid-v0spAYiLZZ .text-wrapper {
  padding: 2rem 0;
}
.cid-v0spAYiLZZ .text-wrapper:hover .mbr-section-title a {
  color: #987a5a !important;
}
.cid-v0spAYiLZZ .image-wrapper,
.cid-v0spAYiLZZ img {
  width: 100%;
  object-fit: cover;
}
.cid-v0spAYiLZZ .mbr-section-subtitle {
  margin-bottom: 12px;
  color: #829d85;
}
.cid-v0spAYiLZZ .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-v0spAYiLZZ .mbr-section-btn .btn-secondary-outline:hover,
.cid-v0spAYiLZZ .mbr-section-btn .btn-secondary-outline .active,
.cid-v0spAYiLZZ .mbr-section-btn .btn-secondary-outline:focus {
  color: #29a436 !important;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-v0spAYiLZZ .mbr-section-title {
    font-size: 2.2rem;
  }
}
@media (max-width: 991px) {
  .cid-v0spAYiLZZ {
    flex-direction: column;
  }
  .cid-v0spAYiLZZ .text-wrapper {
    width: 100%;
    padding: 50px 2rem 2rem;
    padding: 0;
    margin: 2rem 0;
  }
}
@media (max-width: 767px) {
  .cid-v0spAYiLZZ .text-wrapper {
    padding: 30px 1rem;
    padding: 0;
  }
}
.cid-v0spAYiLZZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0spAYiLZZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0spAYiLZZ .mbr-section-title {
  color: #446a49;
}
.cid-v0spAYiLZZ .mbr-text,
.cid-v0spAYiLZZ .mbr-section-btn {
  color: #829d85;
}
.cid-v0snLuPnOk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fffcf5;
}
.cid-v0snLuPnOk .text-wrapper {
  padding: 2rem 0;
}
.cid-v0snLuPnOk .text-wrapper:hover .mbr-section-title a {
  color: #987a5a !important;
}
.cid-v0snLuPnOk .image-wrapper,
.cid-v0snLuPnOk img {
  width: 100%;
  object-fit: cover;
}
.cid-v0snLuPnOk .mbr-section-subtitle {
  margin-bottom: 12px;
  color: #829d85;
}
.cid-v0snLuPnOk .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-v0snLuPnOk .mbr-section-btn .btn-secondary-outline:hover,
.cid-v0snLuPnOk .mbr-section-btn .btn-secondary-outline .active,
.cid-v0snLuPnOk .mbr-section-btn .btn-secondary-outline:focus {
  color: #29a436 !important;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-v0snLuPnOk .mbr-section-title {
    font-size: 2.2rem;
  }
}
@media (max-width: 991px) {
  .cid-v0snLuPnOk {
    flex-direction: column;
  }
  .cid-v0snLuPnOk .text-wrapper {
    width: 100%;
    padding: 50px 2rem 2rem;
    padding: 0;
    margin: 2rem 0;
  }
}
@media (max-width: 767px) {
  .cid-v0snLuPnOk .text-wrapper {
    padding: 30px 1rem;
    padding: 0;
  }
}
.cid-v0snLuPnOk .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0snLuPnOk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0snLuPnOk .mbr-section-title {
  color: #446a49;
}
.cid-v0snLuPnOk .mbr-text,
.cid-v0snLuPnOk .mbr-section-btn {
  color: #829d85;
}
.cid-v1RHHpVNO2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f6efe8;
}
.cid-v1RHHpVNO2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1RHHpVNO2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1RHHpVNO2 .content-wrapper .mbr-label {
  margin-bottom: 0;
}
.cid-v1RHHpVNO2 .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-v1RHHpVNO2 .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v1RHHpVNO2 .content-wrapper .mbr-section-btn {
  margin-top: 24px;
}
.cid-v1RHHpVNO2 .mbr-label {
  color: #111111;
  text-align: center;
}
.cid-v1RHHpVNO2 .mbr-section-title {
  color: #ff6d99;
}
.cid-v1RHHpVNO2 .mbr-text,
.cid-v1RHHpVNO2 .text-wrapper {
  color: #111111;
  text-align: center;
}
.cid-v1RHHpVNO2 .mbr-section-title,
.cid-v1RHHpVNO2 .mbr-section-btn {
  text-align: center;
  color: #446a49;
}
.cid-uZTaHbXQ0v {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/fiore-di-loto-1200x800.jpg");
}
.cid-uZTaHbXQ0v .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZTaHbXQ0v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZTaHbXQ0v .mbr-section-title {
  width: 100%;
  color: #6c6c6c;
  margin-bottom: 0;
}
.cid-uZTaHbXQ0v .mbr-section-title.display-4 {
  font-size: 40px;
}
@media (max-width: 767px) {
  .cid-uZTaHbXQ0v .mbr-section-title.display-4 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 575px) {
  .cid-uZTaHbXQ0v .mbr-section-title.display-4 {
    font-size: 26px;
  }
}
.cid-uZTaHbXQ0v .mbr-text {
  width: 100%;
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uZTaHbXQ0v .mbr-text {
    margin-top: 16px;
  }
}
.cid-uZTaHbXQ0v .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uZTaHbXQ0v .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uZT53jGXNT {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #fffdfb;
}
.cid-uZT53jGXNT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZT53jGXNT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZT53jGXNT .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uZT53jGXNT .container-fluid {
    padding: 0 20px;
  }
}
.cid-uZT53jGXNT .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uZT53jGXNT .container {
    padding: 0 20px;
  }
}
.cid-uZT53jGXNT .list-wrapper .list,
.cid-uZT53jGXNT .list-wrapper_2 .list_2 {
  display: inline-flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uZT53jGXNT .list-wrapper .list .item-wrap,
.cid-uZT53jGXNT .list-wrapper_2 .list_2 .item-wrap {
  margin-right: 24px;
  transition: all 0.3s ease-out;
}
.cid-uZT53jGXNT .list-wrapper .list .item-wrap:hover,
.cid-uZT53jGXNT .list-wrapper_2 .list_2 .item-wrap:hover {
  opacity: .7;
}
@media (max-width: 992px) {
  .cid-uZT53jGXNT .list-wrapper .list .item-wrap,
  .cid-uZT53jGXNT .list-wrapper_2 .list_2 .item-wrap {
    margin-bottom: 32px;
  }
}
.cid-uZT53jGXNT .logo-wrap img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: inline-flex;
  margin-bottom: 8px;
}
.cid-uZT53jGXNT .mbr-section-title {
  margin-bottom: 0;
  color: #1d1d1d;
}
@media (max-width: 992px) {
  .cid-uZT53jGXNT .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uZT53jGXNT .text-wrapper {
  margin: 40px 0 22px;
}
.cid-uZT53jGXNT .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uZT53jGXNT .copy-wrapper .copyright {
  margin-bottom: 0;
}
.cid-uZT53jGXNT .mbr-section-title,
.cid-uZT53jGXNT .logo-wrap {
  text-align: center;
  color: #446a49;
}
.cid-uZT53jGXNT .list {
  color: #1d1d1d;
}
.cid-uZT53jGXNT .list_2 {
  color: #989898;
}
.cid-uZT53jGXNT .mbr-text {
  color: #989898;
  text-align: center;
}
.cid-uZT53jGXNT .copyright {
  color: #353535;
  text-align: center;
}
.cid-uZT53jGXNT .list-wrapper_2 {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uZT53jGXNT .list-wrapper,
  .cid-uZT53jGXNT .list-wrapper_2 {
    text-align: center;
  }
}
.cid-uZT53jGXNT .list_2,
.cid-uZT53jGXNT .list-wrapper_2 {
  text-align: justify;
}
.cid-v05sg1x1sJ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v05sg1x1sJ .menu-text {
  padding: 0 2rem;
  color: #29a436;
}
@media (max-width: 992px) {
  .cid-v05sg1x1sJ .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v05sg1x1sJ .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v05sg1x1sJ .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v05sg1x1sJ .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v05sg1x1sJ .container {
    padding: 0 1rem;
  }
}
.cid-v05sg1x1sJ .menu-tite {
  background: #29a436;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffc800;
}
.cid-v05sg1x1sJ .nav-link {
  position: relative;
}
.cid-v05sg1x1sJ .nav-link:hover {
  color: #d0c4b7 !important;
}
.cid-v05sg1x1sJ nav.navbar {
  position: fixed;
}
.cid-v05sg1x1sJ .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-v05sg1x1sJ .navbar.opened {
  transition: all 0.3s;
}
.cid-v05sg1x1sJ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v05sg1x1sJ .navbar .navbar-logo img {
  width: auto;
}
.cid-v05sg1x1sJ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v05sg1x1sJ .navbar.collapsed {
  justify-content: center;
}
.cid-v05sg1x1sJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v05sg1x1sJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v05sg1x1sJ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.1rem);
  }
}
.cid-v05sg1x1sJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v05sg1x1sJ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v05sg1x1sJ .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-v05sg1x1sJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v05sg1x1sJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v05sg1x1sJ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v05sg1x1sJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v05sg1x1sJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v05sg1x1sJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v05sg1x1sJ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v05sg1x1sJ .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-v05sg1x1sJ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v05sg1x1sJ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v05sg1x1sJ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v05sg1x1sJ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v05sg1x1sJ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v05sg1x1sJ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v05sg1x1sJ .navbar.navbar-short {
  min-height: 60px;
}
.cid-v05sg1x1sJ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v05sg1x1sJ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v05sg1x1sJ .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-v05sg1x1sJ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v05sg1x1sJ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v05sg1x1sJ .dropdown-item:hover,
.cid-v05sg1x1sJ .dropdown-item:focus {
  background: #29a436 !important;
  color: white !important;
}
.cid-v05sg1x1sJ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v05sg1x1sJ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v05sg1x1sJ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v05sg1x1sJ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v05sg1x1sJ .dropdown-menu,
.cid-v05sg1x1sJ .navbar.opened {
  background: #ffffff !important;
}
.cid-v05sg1x1sJ .nav-item:focus,
.cid-v05sg1x1sJ .nav-link:focus {
  outline: none;
}
.cid-v05sg1x1sJ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v05sg1x1sJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v05sg1x1sJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v05sg1x1sJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v05sg1x1sJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v05sg1x1sJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v05sg1x1sJ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v05sg1x1sJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v05sg1x1sJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v05sg1x1sJ .dropdown-item.active,
.cid-v05sg1x1sJ .dropdown-item:active {
  background-color: transparent;
}
.cid-v05sg1x1sJ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v05sg1x1sJ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v05sg1x1sJ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v05sg1x1sJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v05sg1x1sJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v05sg1x1sJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v05sg1x1sJ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v05sg1x1sJ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v05sg1x1sJ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v05sg1x1sJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v05sg1x1sJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v05sg1x1sJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v05sg1x1sJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v05sg1x1sJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v05sg1x1sJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v05sg1x1sJ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v05sg1x1sJ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v05sg1x1sJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v05sg1x1sJ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v05sg1x1sJ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v05sg1x1sJ .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-v05sg1x1sJ .navbar {
    height: 70px;
  }
  .cid-v05sg1x1sJ .navbar.opened {
    height: auto;
  }
  .cid-v05sg1x1sJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v1oE6Yr4CL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/233190354-a-garden-filled-with-colorful-flowers-and-scattered-rocks-on-the-ground-under-the-bright-sunlight-450x252.jpg");
}
.cid-v1oE6Yr4CL .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1oE6Yr4CL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-v1oE6Yr4CL .container {
    padding: 0 15px;
  }
}
.cid-v1oE6Yr4CL .content-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-v1oE6Yr4CL .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-v1oE6Yr4CL .content-wrapper .mbr-text {
  margin-bottom: 30px;
}
.cid-v1oE6Yr4CL .content-wrapper .border-wrap {
  margin-top: 100px;
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #68707c;
}
.cid-v1oE6Yr4CL .content-wrapper .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #68707c;
  transform: rotate(20deg);
}
@media (max-width: 992px) {
  .cid-v1oE6Yr4CL .content-wrapper .border-wrap {
    margin-top: 40px;
  }
}
.cid-v1oE6Yr4CL .mbr-section-title {
  color: #131c28;
}
.cid-v1oE6Yr4CL .mbr-desc {
  color: #353535;
}
.cid-v1oE6Yr4CL .mbr-section-title,
.cid-v1oE6Yr4CL .mbr-section-btn {
  color: #6c6c6c;
}
.cid-uZTQIyd9By {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-uZTQIyd9By .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZTQIyd9By .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZTQIyd9By .row {
  flex-wrap: nowrap;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uZTQIyd9By .row {
    flex-wrap: wrap;
  }
}
.cid-uZTQIyd9By .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 80px 0;
}
.cid-uZTQIyd9By .text-wrap:before {
  content: "";
  position: absolute;
  right: -100px;
  top: 0;
  height: 100%;
  width: 100vw;
  border-radius: 0 65px 65px 0;
  background-color: #f6efe8;
  z-index: -1;
  border-radius: 65px 0 0 65px;
  right: auto;
  left: -100px;
}
@media (max-width: 1199px) {
  .cid-uZTQIyd9By .text-wrap:before {
    border-radius: 0 40px 40px 0;
    border-radius: 40px 0 0 40px;
  }
}
@media (max-width: 991px) {
  .cid-uZTQIyd9By .text-wrap:before {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0;
  }
}
@media (max-width: 991px) {
  .cid-uZTQIyd9By .text-wrap {
    padding: 50px 0 90px;
  }
}
@media (max-width: 767px) {
  .cid-uZTQIyd9By .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-uZTQIyd9By .mbr-section-title {
  color: #618365;
  text-align: justify;
}
.cid-uZTQIyd9By .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uZTQIyd9By .mbr-text {
    margin-top: 12px;
  }
}
.cid-uZTQIyd9By .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uZTQIyd9By .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uZTQIyd9By .col-img {
  width: 390px;
}
@media (max-width: 1199px) {
  .cid-uZTQIyd9By .col-img {
    width: 330px;
  }
}
@media (max-width: 991px) {
  .cid-uZTQIyd9By .col-img {
    width: 250px;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uZTQIyd9By .col-img {
    margin-bottom: -50px;
  }
}
.cid-uZTQIyd9By .img-wrap {
  position: relative;
  width: 100%;
}
.cid-uZTQIyd9By .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 0 65px 65px 65px;
  overflow: hidden;
  border-radius: 65px 0 65px 65px;
}
@media (max-width: 1199px) {
  .cid-uZTQIyd9By .img-wrap .img-box {
    border-radius: 0 40px 40px 40px;
    border-radius: 40px 0 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-uZTQIyd9By .img-wrap .img-box {
    transform: translateY(-50px);
    border-radius: 0 30px 30px 30px;
    border-radius: 30px 0 30px 30px;
  }
}
.cid-uZTQIyd9By .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uZTQIyd9By .mbr-section-title DIV {
  text-align: justify;
}
.cid-uZULneR0DA {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #f6efe8;
}
.cid-uZULneR0DA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZULneR0DA .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-uZULneR0DA .row {
    align-items: center !important;
  }
}
.cid-uZULneR0DA .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-uZULneR0DA .mbr-section-head {
    margin-bottom: 75px;
  }
}
@media (max-width: 767px) {
  .cid-uZULneR0DA .mbr-section-head {
    margin-bottom: 65px;
  }
}
.cid-uZULneR0DA .mbr-section-title {
  color: #446a49;
  margin-bottom: 0;
}
.cid-uZULneR0DA .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
.cid-uZULneR0DA .text-wrap {
  width: 100%;
  padding: 36px 0;
  border-top: 1px solid #f6efe8;
}
@media (max-width: 991px) {
  .cid-uZULneR0DA .text-wrap {
    padding: 30px 0;
  }
}
.cid-uZULneR0DA .mbr-title {
  color: #618365;
}
.cid-uZULneR0DA .mbr-text {
  margin-top: 12px;
  color: #353535;
}
.cid-uZULneR0DA .list-box {
  width: 100%;
}
.cid-uZULneR0DA .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #446a49;
  padding-left: 0;
}
.cid-uZULneR0DA .list-text {
  position: relative;
}
.cid-uZULneR0DA .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-uZULneR0DA .mbr-section-btn {
  margin-top: 20px;
}
.cid-uZULneR0DA .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-uZULneR0DA .img-box {
    border-radius: 0;
  }
}
@media (max-width: 767px) {
  .cid-uZULneR0DA .img-box {
    border-radius: 0 15vw 0 0;
  }
}
.cid-uZULneR0DA .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uZTUs9QARu {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #fffcf5;
}
.cid-uZTUs9QARu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZTUs9QARu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZTUs9QARu .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uZTUs9QARu .row {
    align-items: center !important;
  }
}
.cid-uZTUs9QARu .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-uZTUs9QARu .mbr-section-head {
    margin-bottom: 75px;
  }
}
@media (max-width: 767px) {
  .cid-uZTUs9QARu .mbr-section-head {
    margin-bottom: 65px;
  }
}
.cid-uZTUs9QARu .mbr-section-title {
  color: #829D85;
  margin-bottom: 0;
}
.cid-uZTUs9QARu .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
.cid-uZTUs9QARu .text-wrap {
  width: 100%;
  padding: 36px 0;
  border-top: 1px solid #829d85;
}
@media (max-width: 991px) {
  .cid-uZTUs9QARu .text-wrap {
    padding: 30px 0;
  }
}
.cid-uZTUs9QARu .mbr-title {
  color: #987A5A;
}
.cid-uZTUs9QARu .mbr-text {
  margin-top: 12px;
  color: #353535;
}
.cid-uZTUs9QARu .list-box {
  width: 100%;
}
.cid-uZTUs9QARu .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #618365;
  padding-left: 0;
}
.cid-uZTUs9QARu .list-text {
  position: relative;
}
.cid-uZTUs9QARu .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-uZTUs9QARu .mbr-section-btn {
  margin-top: 20px;
}
.cid-uZTUs9QARu .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-radius: 0 100px 0 0;
  overflow: hidden;
  border-radius: 100px 0 0 0;
}
@media (max-width: 991px) {
  .cid-uZTUs9QARu .img-box {
    border-radius: 0;
  }
}
@media (max-width: 767px) {
  .cid-uZTUs9QARu .img-box {
    border-radius: 0 15vw 0 0;
    border-radius: 15vw 0 0 0;
  }
}
.cid-uZTUs9QARu .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uZTRbx1nzh {
  padding-top: 1rem;
  padding-bottom: 6rem;
  background-color: #f6efe8;
}
.cid-uZTRbx1nzh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZTRbx1nzh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZTRbx1nzh .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-uZTRbx1nzh .mbr-section-head {
    margin-bottom: 75px;
  }
}
@media (max-width: 767px) {
  .cid-uZTRbx1nzh .mbr-section-head {
    margin-bottom: 65px;
  }
}
.cid-uZTRbx1nzh .mbr-section-title {
  color: #446a49;
  margin-bottom: 0;
}
.cid-uZTRbx1nzh .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
.cid-uZTRbx1nzh .text-wrap {
  width: 100%;
}
.cid-uZTRbx1nzh .mbr-text {
  color: #446a49;
}
.cid-uZTRbx1nzh .list-box {
  width: 100%;
}
.cid-uZTRbx1nzh .list {
  list-style: none;
  margin-top: 32px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
}
.cid-uZTRbx1nzh .list-text {
  position: relative;
}
.cid-uZTRbx1nzh .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-uZTRbx1nzh .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-uZTRbx1nzh .items-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 32px;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-uZTRbx1nzh .items-box {
    max-width: 540px;
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .cid-uZTRbx1nzh .items-box {
    gap: 20px;
  }
}
@media (max-width: 575px) {
  .cid-uZTRbx1nzh .items-box {
    gap: 16px;
  }
}
.cid-uZTRbx1nzh .item {
  border-radius: 30px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-uZTRbx1nzh .item {
    width: calc(50% - 16px);
  }
}
@media (max-width: 767px) {
  .cid-uZTRbx1nzh .item {
    border-radius: 22px;
  }
}
@media (max-width: 575px) {
  .cid-uZTRbx1nzh .item {
    width: 100%;
  }
}
.cid-uZTRbx1nzh .item:nth-child(1) {
  background-color: rgba(255, 252, 245, 0.95);
  border-bottom-right-radius: 0;
}
.cid-uZTRbx1nzh .item:nth-child(2) {
  background-color: rgba(190, 221, 193, 0.95);
  border-bottom-left-radius: 0;
}
.cid-uZTRbx1nzh .item:nth-child(3) {
  background-color: rgba(169, 187, 171, 0.95);
  border-top-right-radius: 0;
}
.cid-uZTRbx1nzh .item:nth-child(4) {
  border-top-left-radius: 0;
  background-color: rgba(213, 197, 181, 0.95);
}
.cid-uZTRbx1nzh .item-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 240px;
  max-width: 240px;
  min-height: 138px;
  padding: 30px;
}
@media (max-width: 1199px) {
  .cid-uZTRbx1nzh .item-wrap {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-uZTRbx1nzh .item-wrap {
    min-height: 105px;
    padding: 16px;
  }
}
.cid-uZTRbx1nzh .item-title {
  width: 100%;
  margin: 0;
  color: #446a49;
}
.cid-uZTRbx1nzh .item-text {
  width: 100%;
  margin: 16px 0 0;
  color: #353535;
}
@media (max-width: 767px) {
  .cid-uZTRbx1nzh .item-text {
    margin: 12px 0 0;
  }
}
.cid-uZTRd83FMF {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fffcf5;
}
.cid-uZTRd83FMF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZTRd83FMF .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-uZTRd83FMF .row {
    align-items: center !important;
  }
}
.cid-uZTRd83FMF .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-uZTRd83FMF .mbr-section-head {
    margin-bottom: 75px;
  }
}
@media (max-width: 767px) {
  .cid-uZTRd83FMF .mbr-section-head {
    margin-bottom: 65px;
  }
}
.cid-uZTRd83FMF .mbr-section-title {
  color: #829D85;
  margin-bottom: 0;
}
.cid-uZTRd83FMF .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
.cid-uZTRd83FMF .text-wrap {
  width: 100%;
  padding: 36px 0;
  border-top: 1px solid #829d85;
}
@media (max-width: 991px) {
  .cid-uZTRd83FMF .text-wrap {
    padding: 30px 0;
  }
}
.cid-uZTRd83FMF .mbr-title {
  color: #618365;
}
.cid-uZTRd83FMF .mbr-text {
  margin-top: 12px;
  color: #353535;
}
.cid-uZTRd83FMF .list-box {
  width: 100%;
}
.cid-uZTRd83FMF .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #446a49;
  padding-left: 0;
}
.cid-uZTRd83FMF .list-text {
  position: relative;
}
.cid-uZTRd83FMF .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-uZTRd83FMF .mbr-section-btn {
  margin-top: 20px;
}
.cid-uZTRd83FMF .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-uZTRd83FMF .img-box {
    border-radius: 0;
  }
}
@media (max-width: 767px) {
  .cid-uZTRd83FMF .img-box {
    border-radius: 0 15vw 0 0;
  }
}
.cid-uZTRd83FMF .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-v1RHyVyJec {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f6efe8;
}
.cid-v1RHyVyJec .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1RHyVyJec .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1RHyVyJec .content-wrapper .mbr-label {
  margin-bottom: 0;
}
.cid-v1RHyVyJec .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-v1RHyVyJec .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v1RHyVyJec .content-wrapper .mbr-section-btn {
  margin-top: 24px;
}
.cid-v1RHyVyJec .mbr-label {
  color: #111111;
  text-align: center;
}
.cid-v1RHyVyJec .mbr-section-title {
  color: #ff6d99;
}
.cid-v1RHyVyJec .mbr-text,
.cid-v1RHyVyJec .text-wrapper {
  color: #111111;
  text-align: center;
}
.cid-v1RHyVyJec .mbr-section-title,
.cid-v1RHyVyJec .mbr-section-btn {
  text-align: center;
  color: #446a49;
}
.cid-uZTaPPzgKI {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/fiore-di-loto-1200x800.jpg");
}
.cid-uZTaPPzgKI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZTaPPzgKI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZTaPPzgKI .mbr-section-title {
  width: 100%;
  color: #446a49;
  margin-bottom: 0;
}
.cid-uZTaPPzgKI .mbr-section-title.display-4 {
  font-size: 40px;
}
@media (max-width: 767px) {
  .cid-uZTaPPzgKI .mbr-section-title.display-4 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 575px) {
  .cid-uZTaPPzgKI .mbr-section-title.display-4 {
    font-size: 26px;
  }
}
.cid-uZTaPPzgKI .mbr-text {
  width: 100%;
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uZTaPPzgKI .mbr-text {
    margin-top: 16px;
  }
}
.cid-uZTaPPzgKI .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uZTaPPzgKI .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uZTaPQvVw9 {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #fffdfb;
}
.cid-uZTaPQvVw9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZTaPQvVw9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZTaPQvVw9 .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uZTaPQvVw9 .container-fluid {
    padding: 0 20px;
  }
}
.cid-uZTaPQvVw9 .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uZTaPQvVw9 .container {
    padding: 0 20px;
  }
}
.cid-uZTaPQvVw9 .list-wrapper .list,
.cid-uZTaPQvVw9 .list-wrapper_2 .list_2 {
  display: inline-flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uZTaPQvVw9 .list-wrapper .list .item-wrap,
.cid-uZTaPQvVw9 .list-wrapper_2 .list_2 .item-wrap {
  margin-right: 24px;
  transition: all 0.3s ease-out;
}
.cid-uZTaPQvVw9 .list-wrapper .list .item-wrap:hover,
.cid-uZTaPQvVw9 .list-wrapper_2 .list_2 .item-wrap:hover {
  opacity: .7;
}
@media (max-width: 992px) {
  .cid-uZTaPQvVw9 .list-wrapper .list .item-wrap,
  .cid-uZTaPQvVw9 .list-wrapper_2 .list_2 .item-wrap {
    margin-bottom: 32px;
  }
}
.cid-uZTaPQvVw9 .logo-wrap img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: inline-flex;
  margin-bottom: 8px;
}
.cid-uZTaPQvVw9 .mbr-section-title {
  margin-bottom: 0;
  color: #1d1d1d;
}
@media (max-width: 992px) {
  .cid-uZTaPQvVw9 .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uZTaPQvVw9 .text-wrapper {
  margin: 40px 0 22px;
}
.cid-uZTaPQvVw9 .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uZTaPQvVw9 .copy-wrapper .copyright {
  margin-bottom: 0;
}
.cid-uZTaPQvVw9 .mbr-section-title,
.cid-uZTaPQvVw9 .logo-wrap {
  text-align: center;
  color: #446a49;
}
.cid-uZTaPQvVw9 .list {
  color: #1d1d1d;
}
.cid-uZTaPQvVw9 .list_2 {
  color: #989898;
}
.cid-uZTaPQvVw9 .mbr-text {
  color: #989898;
  text-align: center;
}
.cid-uZTaPQvVw9 .copyright {
  color: #353535;
  text-align: center;
}
.cid-uZTaPQvVw9 .list-wrapper_2 {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uZTaPQvVw9 .list-wrapper,
  .cid-uZTaPQvVw9 .list-wrapper_2 {
    text-align: center;
  }
}
.cid-uZTaPQvVw9 .list_2,
.cid-uZTaPQvVw9 .list-wrapper_2 {
  text-align: justify;
}
.cid-v05sg1x1sJ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v05sg1x1sJ .menu-text {
  padding: 0 2rem;
  color: #29a436;
}
@media (max-width: 992px) {
  .cid-v05sg1x1sJ .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v05sg1x1sJ .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v05sg1x1sJ .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v05sg1x1sJ .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v05sg1x1sJ .container {
    padding: 0 1rem;
  }
}
.cid-v05sg1x1sJ .menu-tite {
  background: #29a436;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffc800;
}
.cid-v05sg1x1sJ .nav-link {
  position: relative;
}
.cid-v05sg1x1sJ .nav-link:hover {
  color: #d0c4b7 !important;
}
.cid-v05sg1x1sJ nav.navbar {
  position: fixed;
}
.cid-v05sg1x1sJ .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-v05sg1x1sJ .navbar.opened {
  transition: all 0.3s;
}
.cid-v05sg1x1sJ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v05sg1x1sJ .navbar .navbar-logo img {
  width: auto;
}
.cid-v05sg1x1sJ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v05sg1x1sJ .navbar.collapsed {
  justify-content: center;
}
.cid-v05sg1x1sJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v05sg1x1sJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v05sg1x1sJ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.1rem);
  }
}
.cid-v05sg1x1sJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v05sg1x1sJ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v05sg1x1sJ .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-v05sg1x1sJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v05sg1x1sJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v05sg1x1sJ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v05sg1x1sJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v05sg1x1sJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v05sg1x1sJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v05sg1x1sJ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v05sg1x1sJ .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-v05sg1x1sJ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v05sg1x1sJ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v05sg1x1sJ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v05sg1x1sJ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v05sg1x1sJ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v05sg1x1sJ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v05sg1x1sJ .navbar.navbar-short {
  min-height: 60px;
}
.cid-v05sg1x1sJ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v05sg1x1sJ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v05sg1x1sJ .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-v05sg1x1sJ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v05sg1x1sJ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v05sg1x1sJ .dropdown-item:hover,
.cid-v05sg1x1sJ .dropdown-item:focus {
  background: #29a436 !important;
  color: white !important;
}
.cid-v05sg1x1sJ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v05sg1x1sJ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v05sg1x1sJ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v05sg1x1sJ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v05sg1x1sJ .dropdown-menu,
.cid-v05sg1x1sJ .navbar.opened {
  background: #ffffff !important;
}
.cid-v05sg1x1sJ .nav-item:focus,
.cid-v05sg1x1sJ .nav-link:focus {
  outline: none;
}
.cid-v05sg1x1sJ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v05sg1x1sJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v05sg1x1sJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v05sg1x1sJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v05sg1x1sJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v05sg1x1sJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v05sg1x1sJ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v05sg1x1sJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v05sg1x1sJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v05sg1x1sJ .dropdown-item.active,
.cid-v05sg1x1sJ .dropdown-item:active {
  background-color: transparent;
}
.cid-v05sg1x1sJ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v05sg1x1sJ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v05sg1x1sJ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v05sg1x1sJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v05sg1x1sJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v05sg1x1sJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v05sg1x1sJ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v05sg1x1sJ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v05sg1x1sJ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v05sg1x1sJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v05sg1x1sJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v05sg1x1sJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v05sg1x1sJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v05sg1x1sJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v05sg1x1sJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v05sg1x1sJ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v05sg1x1sJ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v05sg1x1sJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v05sg1x1sJ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v05sg1x1sJ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v05sg1x1sJ .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-v05sg1x1sJ .navbar {
    height: 70px;
  }
  .cid-v05sg1x1sJ .navbar.opened {
    height: auto;
  }
  .cid-v05sg1x1sJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v17rs7EPxO {
  padding-top: 10rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-v17rs7EPxO .mbr-fallback-image.disabled {
  display: none;
}
.cid-v17rs7EPxO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v17rs7EPxO .mbr-section-title {
  width: 100%;
  color: #446a49;
  margin-bottom: 0;
}
.cid-v17rs7EPxO .mbr-section-title.display-4 {
  font-size: 40px;
}
@media (max-width: 767px) {
  .cid-v17rs7EPxO .mbr-section-title.display-4 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 575px) {
  .cid-v17rs7EPxO .mbr-section-title.display-4 {
    font-size: 26px;
  }
}
.cid-v17rs7EPxO .mbr-text {
  width: 100%;
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-v17rs7EPxO .mbr-text {
    margin-top: 16px;
  }
}
.cid-v17rs7EPxO .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-v17rs7EPxO .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uZV7zYCnHp {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-uZV7zYCnHp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZV7zYCnHp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZV7zYCnHp .row {
  flex-wrap: nowrap;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uZV7zYCnHp .row {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-uZV7zYCnHp .col-text {
    order: 2;
  }
}
.cid-uZV7zYCnHp .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uZV7zYCnHp .text-wrap {
    margin-top: 30px;
  }
}
.cid-uZV7zYCnHp .mbr-section-title {
  color: #446a49;
  text-align: justify;
}
.cid-uZV7zYCnHp .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uZV7zYCnHp .mbr-text {
    margin-top: 12px;
  }
}
.cid-uZV7zYCnHp .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uZV7zYCnHp .mbr-section-btn {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-uZV7zYCnHp .col-img {
    order: 1;
  }
}
.cid-uZV7zYCnHp .img-wrap {
  position: relative;
  width: 100%;
}
.cid-uZV7zYCnHp .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 65px 65px 65px 0;
  overflow: hidden;
  border-radius: 65px 65px 0 65px;
}
@media (max-width: 1199px) {
  .cid-uZV7zYCnHp .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
    border-radius: 55px 55px 0 55px;
  }
}
@media (max-width: 991px) {
  .cid-uZV7zYCnHp .img-wrap .img-box {
    border-radius: 65px 65px 65px 0;
    border-radius: 65px 65px 0 65px;
  }
}
@media (max-width: 767px) {
  .cid-uZV7zYCnHp .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
    border-radius: 55px  55px 0 55px;
  }
}
@media (max-width: 575px) {
  .cid-uZV7zYCnHp .img-wrap .img-box {
    border-radius: 45px 45px 45px 0;
    border-radius: 45px 45px 0 45px;
  }
}
.cid-uZV7zYCnHp .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uZV7zYCnHp .mbr-text,
.cid-uZV7zYCnHp .mbr-section-btn {
  text-align: justify;
  color: #618365;
}
.cid-v11xBvKqLT {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-v11xBvKqLT .mbr-fallback-image.disabled {
  display: none;
}
.cid-v11xBvKqLT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v11xBvKqLT .row {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v11xBvKqLT .row {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-v11xBvKqLT .col-text {
    order: 2;
  }
}
.cid-v11xBvKqLT .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-v11xBvKqLT .text-wrap {
    margin-top: 30px;
  }
}
.cid-v11xBvKqLT .mbr-section-title {
  color: #446a49;
  text-align: right;
}
.cid-v11xBvKqLT .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v11xBvKqLT .mbr-text {
    margin-top: 12px;
  }
}
.cid-v11xBvKqLT .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v11xBvKqLT .mbr-section-btn {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-v11xBvKqLT .col-img {
    order: 1;
  }
}
.cid-v11xBvKqLT .img-wrap {
  position: relative;
  width: 100%;
}
.cid-v11xBvKqLT .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 65px 65px 65px 0;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-v11xBvKqLT .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
  }
}
@media (max-width: 991px) {
  .cid-v11xBvKqLT .img-wrap .img-box {
    border-radius: 65px 65px 65px 0;
  }
}
@media (max-width: 767px) {
  .cid-v11xBvKqLT .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
  }
}
@media (max-width: 575px) {
  .cid-v11xBvKqLT .img-wrap .img-box {
    border-radius: 45px 45px 45px 0;
  }
}
.cid-v11xBvKqLT .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-v11xBvKqLT .mbr-text,
.cid-v11xBvKqLT .mbr-section-btn {
  text-align: right;
  color: #618365;
}
.cid-v11xClVa1T {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-v11xClVa1T .mbr-fallback-image.disabled {
  display: none;
}
.cid-v11xClVa1T .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v11xClVa1T .row {
  flex-wrap: nowrap;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-v11xClVa1T .row {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-v11xClVa1T .col-text {
    order: 2;
  }
}
.cid-v11xClVa1T .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-v11xClVa1T .text-wrap {
    margin-top: 30px;
  }
}
.cid-v11xClVa1T .mbr-section-title {
  color: #446a49;
  text-align: left;
}
.cid-v11xClVa1T .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v11xClVa1T .mbr-text {
    margin-top: 12px;
  }
}
.cid-v11xClVa1T .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v11xClVa1T .mbr-section-btn {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-v11xClVa1T .col-img {
    order: 1;
  }
}
.cid-v11xClVa1T .img-wrap {
  position: relative;
  width: 100%;
}
.cid-v11xClVa1T .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 65px 65px 65px 0;
  overflow: hidden;
  border-radius: 65px 65px 0 65px;
}
@media (max-width: 1199px) {
  .cid-v11xClVa1T .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
    border-radius: 55px 55px 0 55px;
  }
}
@media (max-width: 991px) {
  .cid-v11xClVa1T .img-wrap .img-box {
    border-radius: 65px 65px 65px 0;
    border-radius: 65px 65px 0 65px;
  }
}
@media (max-width: 767px) {
  .cid-v11xClVa1T .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
    border-radius: 55px  55px 0 55px;
  }
}
@media (max-width: 575px) {
  .cid-v11xClVa1T .img-wrap .img-box {
    border-radius: 45px 45px 45px 0;
    border-radius: 45px 45px 0 45px;
  }
}
.cid-v11xClVa1T .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-v11xClVa1T .mbr-text,
.cid-v11xClVa1T .mbr-section-btn {
  text-align: justify;
  color: #618365;
}
.cid-v11xCX0xzf {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-v11xCX0xzf .mbr-fallback-image.disabled {
  display: none;
}
.cid-v11xCX0xzf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v11xCX0xzf .row {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v11xCX0xzf .row {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-v11xCX0xzf .col-text {
    order: 2;
  }
}
.cid-v11xCX0xzf .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-v11xCX0xzf .text-wrap {
    margin-top: 30px;
  }
}
.cid-v11xCX0xzf .mbr-section-title {
  color: #446a49;
  text-align: right;
}
.cid-v11xCX0xzf .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v11xCX0xzf .mbr-text {
    margin-top: 12px;
  }
}
.cid-v11xCX0xzf .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v11xCX0xzf .mbr-section-btn {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-v11xCX0xzf .col-img {
    order: 1;
  }
}
.cid-v11xCX0xzf .img-wrap {
  position: relative;
  width: 100%;
}
.cid-v11xCX0xzf .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 65px 65px 65px 0;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-v11xCX0xzf .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
  }
}
@media (max-width: 991px) {
  .cid-v11xCX0xzf .img-wrap .img-box {
    border-radius: 65px 65px 65px 0;
  }
}
@media (max-width: 767px) {
  .cid-v11xCX0xzf .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
  }
}
@media (max-width: 575px) {
  .cid-v11xCX0xzf .img-wrap .img-box {
    border-radius: 45px 45px 45px 0;
  }
}
.cid-v11xCX0xzf .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-v11xCX0xzf .mbr-text,
.cid-v11xCX0xzf .mbr-section-btn {
  text-align: right;
  color: #618365;
}
.cid-v1RGxvGOA0 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f6efe8;
}
.cid-v1RGxvGOA0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1RGxvGOA0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1RGxvGOA0 .content-wrapper .mbr-label {
  margin-bottom: 0;
}
.cid-v1RGxvGOA0 .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-v1RGxvGOA0 .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v1RGxvGOA0 .content-wrapper .mbr-section-btn {
  margin-top: 24px;
}
.cid-v1RGxvGOA0 .mbr-label {
  color: #111111;
  text-align: center;
}
.cid-v1RGxvGOA0 .mbr-section-title {
  color: #ff6d99;
}
.cid-v1RGxvGOA0 .mbr-text,
.cid-v1RGxvGOA0 .text-wrapper {
  color: #111111;
  text-align: center;
}
.cid-v1RGxvGOA0 .mbr-section-title,
.cid-v1RGxvGOA0 .mbr-section-btn {
  text-align: center;
  color: #446a49;
}
.cid-uZTaSZIWG1 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/fiore-di-loto-1200x800.jpg");
}
.cid-uZTaSZIWG1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZTaSZIWG1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZTaSZIWG1 .mbr-section-title {
  width: 100%;
  color: #6c6c6c;
  margin-bottom: 0;
}
.cid-uZTaSZIWG1 .mbr-section-title.display-4 {
  font-size: 40px;
}
@media (max-width: 767px) {
  .cid-uZTaSZIWG1 .mbr-section-title.display-4 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 575px) {
  .cid-uZTaSZIWG1 .mbr-section-title.display-4 {
    font-size: 26px;
  }
}
.cid-uZTaSZIWG1 .mbr-text {
  width: 100%;
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uZTaSZIWG1 .mbr-text {
    margin-top: 16px;
  }
}
.cid-uZTaSZIWG1 .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uZTaSZIWG1 .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uZTaT0pL0R {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fffdfb;
}
.cid-uZTaT0pL0R .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZTaT0pL0R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZTaT0pL0R .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uZTaT0pL0R .container-fluid {
    padding: 0 20px;
  }
}
.cid-uZTaT0pL0R .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uZTaT0pL0R .container {
    padding: 0 20px;
  }
}
.cid-uZTaT0pL0R .list-wrapper .list,
.cid-uZTaT0pL0R .list-wrapper_2 .list_2 {
  display: inline-flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uZTaT0pL0R .list-wrapper .list .item-wrap,
.cid-uZTaT0pL0R .list-wrapper_2 .list_2 .item-wrap {
  margin-right: 24px;
  transition: all 0.3s ease-out;
}
.cid-uZTaT0pL0R .list-wrapper .list .item-wrap:hover,
.cid-uZTaT0pL0R .list-wrapper_2 .list_2 .item-wrap:hover {
  opacity: .7;
}
@media (max-width: 992px) {
  .cid-uZTaT0pL0R .list-wrapper .list .item-wrap,
  .cid-uZTaT0pL0R .list-wrapper_2 .list_2 .item-wrap {
    margin-bottom: 32px;
  }
}
.cid-uZTaT0pL0R .logo-wrap img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: inline-flex;
  margin-bottom: 8px;
}
.cid-uZTaT0pL0R .mbr-section-title {
  margin-bottom: 0;
  color: #1d1d1d;
}
@media (max-width: 992px) {
  .cid-uZTaT0pL0R .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uZTaT0pL0R .text-wrapper {
  margin: 40px 0 22px;
}
.cid-uZTaT0pL0R .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uZTaT0pL0R .copy-wrapper .copyright {
  margin-bottom: 0;
}
.cid-uZTaT0pL0R .mbr-section-title,
.cid-uZTaT0pL0R .logo-wrap {
  text-align: center;
  color: #446a49;
}
.cid-uZTaT0pL0R .list {
  color: #1d1d1d;
}
.cid-uZTaT0pL0R .list_2 {
  color: #989898;
}
.cid-uZTaT0pL0R .mbr-text {
  color: #989898;
  text-align: center;
}
.cid-uZTaT0pL0R .copyright {
  color: #353535;
  text-align: center;
}
.cid-uZTaT0pL0R .list-wrapper_2 {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uZTaT0pL0R .list-wrapper,
  .cid-uZTaT0pL0R .list-wrapper_2 {
    text-align: center;
  }
}
.cid-uZTaT0pL0R .list_2,
.cid-uZTaT0pL0R .list-wrapper_2 {
  text-align: justify;
}
.cid-v05sg1x1sJ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v05sg1x1sJ .menu-text {
  padding: 0 2rem;
  color: #29a436;
}
@media (max-width: 992px) {
  .cid-v05sg1x1sJ .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v05sg1x1sJ .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v05sg1x1sJ .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v05sg1x1sJ .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v05sg1x1sJ .container {
    padding: 0 1rem;
  }
}
.cid-v05sg1x1sJ .menu-tite {
  background: #29a436;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffc800;
}
.cid-v05sg1x1sJ .nav-link {
  position: relative;
}
.cid-v05sg1x1sJ .nav-link:hover {
  color: #d0c4b7 !important;
}
.cid-v05sg1x1sJ nav.navbar {
  position: fixed;
}
.cid-v05sg1x1sJ .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-v05sg1x1sJ .navbar.opened {
  transition: all 0.3s;
}
.cid-v05sg1x1sJ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v05sg1x1sJ .navbar .navbar-logo img {
  width: auto;
}
.cid-v05sg1x1sJ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v05sg1x1sJ .navbar.collapsed {
  justify-content: center;
}
.cid-v05sg1x1sJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v05sg1x1sJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v05sg1x1sJ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.1rem);
  }
}
.cid-v05sg1x1sJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v05sg1x1sJ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v05sg1x1sJ .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-v05sg1x1sJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v05sg1x1sJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v05sg1x1sJ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v05sg1x1sJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v05sg1x1sJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v05sg1x1sJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v05sg1x1sJ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v05sg1x1sJ .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-v05sg1x1sJ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v05sg1x1sJ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v05sg1x1sJ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v05sg1x1sJ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v05sg1x1sJ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v05sg1x1sJ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v05sg1x1sJ .navbar.navbar-short {
  min-height: 60px;
}
.cid-v05sg1x1sJ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v05sg1x1sJ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v05sg1x1sJ .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-v05sg1x1sJ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v05sg1x1sJ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v05sg1x1sJ .dropdown-item:hover,
.cid-v05sg1x1sJ .dropdown-item:focus {
  background: #29a436 !important;
  color: white !important;
}
.cid-v05sg1x1sJ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v05sg1x1sJ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v05sg1x1sJ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v05sg1x1sJ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v05sg1x1sJ .dropdown-menu,
.cid-v05sg1x1sJ .navbar.opened {
  background: #ffffff !important;
}
.cid-v05sg1x1sJ .nav-item:focus,
.cid-v05sg1x1sJ .nav-link:focus {
  outline: none;
}
.cid-v05sg1x1sJ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v05sg1x1sJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v05sg1x1sJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v05sg1x1sJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v05sg1x1sJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v05sg1x1sJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v05sg1x1sJ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v05sg1x1sJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v05sg1x1sJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v05sg1x1sJ .dropdown-item.active,
.cid-v05sg1x1sJ .dropdown-item:active {
  background-color: transparent;
}
.cid-v05sg1x1sJ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v05sg1x1sJ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v05sg1x1sJ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v05sg1x1sJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v05sg1x1sJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v05sg1x1sJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v05sg1x1sJ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v05sg1x1sJ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v05sg1x1sJ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v05sg1x1sJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v05sg1x1sJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v05sg1x1sJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v05sg1x1sJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v05sg1x1sJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v05sg1x1sJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v05sg1x1sJ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v05sg1x1sJ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v05sg1x1sJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v05sg1x1sJ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v05sg1x1sJ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v05sg1x1sJ .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-v05sg1x1sJ .navbar {
    height: 70px;
  }
  .cid-v05sg1x1sJ .navbar.opened {
    height: auto;
  }
  .cid-v05sg1x1sJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uZU0u2C5HI {
  padding-top: 9rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/sentiero-450x300.jpg");
}
.cid-uZU0u2C5HI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZU0u2C5HI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZU0u2C5HI .content-wrapper {
  position: relative;
  z-index: 1;
  width: 50%;
  margin: 0 auto;
}
@media (max-width: 1440px) {
  .cid-uZU0u2C5HI .content-wrapper {
    width: 75%;
  }
}
@media (max-width: 992px) {
  .cid-uZU0u2C5HI .content-wrapper {
    width: 100%;
  }
}
.cid-uZU0u2C5HI .content-wrapper .mbr-label {
  margin-bottom: 24px;
  text-transform: uppercase;
}
.cid-uZU0u2C5HI .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uZU0u2C5HI .content-wrapper .mbr-text {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uZU0u2C5HI .content-wrapper .mbr-text {
    margin-bottom: 24px;
  }
}
.cid-uZU0u2C5HI .content-wrapper .desc-wrapper {
  position: relative;
  margin: 24px 48px 0;
}
@media (max-width: 992px) {
  .cid-uZU0u2C5HI .content-wrapper .desc-wrapper {
    margin: 24px 0 0;
  }
}
.cid-uZU0u2C5HI .content-wrapper .desc-wrapper::before,
.cid-uZU0u2C5HI .content-wrapper .desc-wrapper::after {
  content: '';
  position: absolute;
  left: 0;
  background-image: linear-gradient(90deg, transparent, #ffffff 50%, transparent);
  width: 100%;
  height: 1px;
}
.cid-uZU0u2C5HI .content-wrapper .desc-wrapper::before {
  top: 0;
}
.cid-uZU0u2C5HI .content-wrapper .desc-wrapper:after {
  bottom: 0;
}
.cid-uZU0u2C5HI .content-wrapper .desc-wrapper .mbr-desc {
  padding: 8px 0;
  text-transform: uppercase;
  background-image: linear-gradient(90deg, transparent, #eeeef4 50%, transparent);
}
.cid-uZU0u2C5HI .mbr-label {
  color: #49496d;
  text-align: center;
}
.cid-uZU0u2C5HI .mbr-section-title {
  color: #181824;
}
.cid-uZU0u2C5HI .mbr-text {
  color: #54547e;
  text-align: center;
}
.cid-uZU0u2C5HI .mbr-desc {
  color: #49496d;
  text-align: center;
}
.cid-uZU0u2C5HI .mbr-section-title,
.cid-uZU0u2C5HI .mbr-section-btn {
  text-align: center;
}
.cid-uZU0u2C5HI .mbr-section-title,
.cid-uZU0u2C5HI .mbr-section-btn,
.cid-uZU0u2C5HI .logo-wrapper {
  color: #446a49;
}
.cid-v1oJAZUoyf {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f6efe8;
}
.cid-v1oJAZUoyf .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1oJAZUoyf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1oJAZUoyf .google-map {
  height: 350px;
  position: relative;
}
.cid-v1oJAZUoyf .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-v1oJAZUoyf .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-v1oJAZUoyf .google-map[data-state] {
  background: #e9e5dc;
}
.cid-v1oJAZUoyf .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-v1oJAZUoyf .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-v1oJAZUoyf .mbr-section-subtitle {
  text-align: center;
  color: #446a49;
}
.cid-v1oJAZUoyf .mbr-section-title {
  color: #446a49;
}
.cid-v1RIDpQVji {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fffcf5;
}
.cid-v1RIDpQVji .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1RIDpQVji .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1RIDpQVji .content-wrapper .mbr-label {
  margin-bottom: 0;
}
.cid-v1RIDpQVji .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-v1RIDpQVji .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v1RIDpQVji .content-wrapper .mbr-section-btn {
  margin-top: 24px;
}
.cid-v1RIDpQVji .mbr-label {
  color: #111111;
  text-align: center;
}
.cid-v1RIDpQVji .mbr-section-title {
  color: #ff6d99;
}
.cid-v1RIDpQVji .mbr-text,
.cid-v1RIDpQVji .text-wrapper {
  color: #111111;
  text-align: center;
}
.cid-v1RIDpQVji .mbr-section-title,
.cid-v1RIDpQVji .mbr-section-btn {
  text-align: center;
  color: #446a49;
}
.cid-uZTaWxF8k7 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/fiore-di-loto-1200x800.jpg");
}
.cid-uZTaWxF8k7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZTaWxF8k7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZTaWxF8k7 .mbr-section-title {
  width: 100%;
  color: #446a49;
  margin-bottom: 0;
}
.cid-uZTaWxF8k7 .mbr-section-title.display-4 {
  font-size: 40px;
}
@media (max-width: 767px) {
  .cid-uZTaWxF8k7 .mbr-section-title.display-4 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 575px) {
  .cid-uZTaWxF8k7 .mbr-section-title.display-4 {
    font-size: 26px;
  }
}
.cid-uZTaWxF8k7 .mbr-text {
  width: 100%;
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uZTaWxF8k7 .mbr-text {
    margin-top: 16px;
  }
}
.cid-uZTaWxF8k7 .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uZTaWxF8k7 .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uZTaWyi2f1 {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #fffdfb;
}
.cid-uZTaWyi2f1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZTaWyi2f1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZTaWyi2f1 .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uZTaWyi2f1 .container-fluid {
    padding: 0 20px;
  }
}
.cid-uZTaWyi2f1 .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uZTaWyi2f1 .container {
    padding: 0 20px;
  }
}
.cid-uZTaWyi2f1 .list-wrapper .list,
.cid-uZTaWyi2f1 .list-wrapper_2 .list_2 {
  display: inline-flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uZTaWyi2f1 .list-wrapper .list .item-wrap,
.cid-uZTaWyi2f1 .list-wrapper_2 .list_2 .item-wrap {
  margin-right: 24px;
  transition: all 0.3s ease-out;
}
.cid-uZTaWyi2f1 .list-wrapper .list .item-wrap:hover,
.cid-uZTaWyi2f1 .list-wrapper_2 .list_2 .item-wrap:hover {
  opacity: .7;
}
@media (max-width: 992px) {
  .cid-uZTaWyi2f1 .list-wrapper .list .item-wrap,
  .cid-uZTaWyi2f1 .list-wrapper_2 .list_2 .item-wrap {
    margin-bottom: 32px;
  }
}
.cid-uZTaWyi2f1 .logo-wrap img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: inline-flex;
  margin-bottom: 8px;
}
.cid-uZTaWyi2f1 .mbr-section-title {
  margin-bottom: 0;
  color: #1d1d1d;
}
@media (max-width: 992px) {
  .cid-uZTaWyi2f1 .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uZTaWyi2f1 .text-wrapper {
  margin: 40px 0 22px;
}
.cid-uZTaWyi2f1 .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uZTaWyi2f1 .copy-wrapper .copyright {
  margin-bottom: 0;
}
.cid-uZTaWyi2f1 .mbr-section-title,
.cid-uZTaWyi2f1 .logo-wrap {
  text-align: center;
  color: #446a49;
}
.cid-uZTaWyi2f1 .list {
  color: #1d1d1d;
}
.cid-uZTaWyi2f1 .list_2 {
  color: #989898;
}
.cid-uZTaWyi2f1 .mbr-text {
  color: #989898;
  text-align: center;
}
.cid-uZTaWyi2f1 .copyright {
  color: #353535;
  text-align: center;
}
.cid-uZTaWyi2f1 .list-wrapper_2 {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uZTaWyi2f1 .list-wrapper,
  .cid-uZTaWyi2f1 .list-wrapper_2 {
    text-align: center;
  }
}
.cid-uZTaWyi2f1 .list_2,
.cid-uZTaWyi2f1 .list-wrapper_2 {
  text-align: justify;
}
.cid-v05sg1x1sJ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v05sg1x1sJ .menu-text {
  padding: 0 2rem;
  color: #29a436;
}
@media (max-width: 992px) {
  .cid-v05sg1x1sJ .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v05sg1x1sJ .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v05sg1x1sJ .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v05sg1x1sJ .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v05sg1x1sJ .container {
    padding: 0 1rem;
  }
}
.cid-v05sg1x1sJ .menu-tite {
  background: #29a436;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffc800;
}
.cid-v05sg1x1sJ .nav-link {
  position: relative;
}
.cid-v05sg1x1sJ .nav-link:hover {
  color: #d0c4b7 !important;
}
.cid-v05sg1x1sJ nav.navbar {
  position: fixed;
}
.cid-v05sg1x1sJ .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-v05sg1x1sJ .navbar.opened {
  transition: all 0.3s;
}
.cid-v05sg1x1sJ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v05sg1x1sJ .navbar .navbar-logo img {
  width: auto;
}
.cid-v05sg1x1sJ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v05sg1x1sJ .navbar.collapsed {
  justify-content: center;
}
.cid-v05sg1x1sJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v05sg1x1sJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v05sg1x1sJ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.1rem);
  }
}
.cid-v05sg1x1sJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v05sg1x1sJ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v05sg1x1sJ .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-v05sg1x1sJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v05sg1x1sJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v05sg1x1sJ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v05sg1x1sJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v05sg1x1sJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v05sg1x1sJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v05sg1x1sJ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v05sg1x1sJ .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-v05sg1x1sJ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v05sg1x1sJ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v05sg1x1sJ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v05sg1x1sJ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v05sg1x1sJ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v05sg1x1sJ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v05sg1x1sJ .navbar.navbar-short {
  min-height: 60px;
}
.cid-v05sg1x1sJ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v05sg1x1sJ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v05sg1x1sJ .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-v05sg1x1sJ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v05sg1x1sJ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v05sg1x1sJ .dropdown-item:hover,
.cid-v05sg1x1sJ .dropdown-item:focus {
  background: #29a436 !important;
  color: white !important;
}
.cid-v05sg1x1sJ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v05sg1x1sJ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v05sg1x1sJ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v05sg1x1sJ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v05sg1x1sJ .dropdown-menu,
.cid-v05sg1x1sJ .navbar.opened {
  background: #ffffff !important;
}
.cid-v05sg1x1sJ .nav-item:focus,
.cid-v05sg1x1sJ .nav-link:focus {
  outline: none;
}
.cid-v05sg1x1sJ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v05sg1x1sJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v05sg1x1sJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v05sg1x1sJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v05sg1x1sJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v05sg1x1sJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v05sg1x1sJ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v05sg1x1sJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v05sg1x1sJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v05sg1x1sJ .dropdown-item.active,
.cid-v05sg1x1sJ .dropdown-item:active {
  background-color: transparent;
}
.cid-v05sg1x1sJ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v05sg1x1sJ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v05sg1x1sJ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v05sg1x1sJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v05sg1x1sJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v05sg1x1sJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v05sg1x1sJ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v05sg1x1sJ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v05sg1x1sJ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v05sg1x1sJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v05sg1x1sJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v05sg1x1sJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v05sg1x1sJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v05sg1x1sJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v05sg1x1sJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v05sg1x1sJ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v05sg1x1sJ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v05sg1x1sJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v05sg1x1sJ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v05sg1x1sJ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v05sg1x1sJ .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-v05sg1x1sJ .navbar {
    height: 70px;
  }
  .cid-v05sg1x1sJ .navbar.opened {
    height: auto;
  }
  .cid-v05sg1x1sJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uZUIrZ79dK {
  padding-top: 9rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/233190354-a-garden-filled-with-colorful-flowers-and-scattered-rocks-on-the-ground-under-the-bright-sunlight-450x252.jpg");
}
.cid-uZUIrZ79dK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZUIrZ79dK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZUIrZ79dK .text-wrap {
  width: 100%;
}
.cid-uZUIrZ79dK .mbr-title {
  margin-bottom: 0;
  color: #353535;
  text-align: justify;
}
.cid-uZUIrZ79dK .mbr-text {
  padding-top: 16px;
  color: #6c6c6c;
  text-align: justify;
}
.cid-uZUIrZ79dK .list-wrap {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uZUIrZ79dK .list-wrap {
    margin-top: 24px;
  }
}
.cid-uZUIrZ79dK .list-box {
  width: 100%;
}
.cid-uZUIrZ79dK .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
}
.cid-uZUIrZ79dK .list-text {
  position: relative;
}
.cid-uZUIrZ79dK .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-uZUIrZ79dK .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-v1SkafdZ34 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-v1SkafdZ34 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1SkafdZ34 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1SkafdZ34 .row {
  flex-wrap: nowrap;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-v1SkafdZ34 .row {
    flex-wrap: wrap;
  }
}
.cid-v1SkafdZ34 .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 80px 0;
}
.cid-v1SkafdZ34 .text-wrap:before {
  content: "";
  position: absolute;
  right: -100px;
  top: 0;
  height: 100%;
  width: 100vw;
  border-radius: 0 65px 65px 0;
  background-color: #f6efe8;
  z-index: -1;
  border-radius: 65px 0 0 65px;
  right: auto;
  left: -100px;
}
@media (max-width: 1199px) {
  .cid-v1SkafdZ34 .text-wrap:before {
    border-radius: 0 40px 40px 0;
    border-radius: 40px 0 0 40px;
  }
}
@media (max-width: 991px) {
  .cid-v1SkafdZ34 .text-wrap:before {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0;
  }
}
@media (max-width: 991px) {
  .cid-v1SkafdZ34 .text-wrap {
    padding: 50px 0 90px;
  }
}
@media (max-width: 767px) {
  .cid-v1SkafdZ34 .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-v1SkafdZ34 .mbr-section-title {
  color: #353535;
  text-align: justify;
}
.cid-v1SkafdZ34 .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v1SkafdZ34 .mbr-text {
    margin-top: 12px;
  }
}
.cid-v1SkafdZ34 .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v1SkafdZ34 .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-v1SkafdZ34 .col-img {
  width: 390px;
}
@media (max-width: 1199px) {
  .cid-v1SkafdZ34 .col-img {
    width: 330px;
  }
}
@media (max-width: 991px) {
  .cid-v1SkafdZ34 .col-img {
    width: 250px;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-v1SkafdZ34 .col-img {
    margin-bottom: -50px;
  }
}
.cid-v1SkafdZ34 .img-wrap {
  position: relative;
  width: 100%;
}
.cid-v1SkafdZ34 .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 0 65px 65px 65px;
  overflow: hidden;
  border-radius: 65px 0 65px 65px;
}
@media (max-width: 1199px) {
  .cid-v1SkafdZ34 .img-wrap .img-box {
    border-radius: 0 40px 40px 40px;
    border-radius: 40px 0 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-v1SkafdZ34 .img-wrap .img-box {
    transform: translateY(-50px);
    border-radius: 0 30px 30px 30px;
    border-radius: 30px 0 30px 30px;
  }
}
.cid-v1SkafdZ34 .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-v1SkafdZ34 .mbr-text,
.cid-v1SkafdZ34 .mbr-section-btn {
  text-align: justify;
}
.cid-v1I2gVsVQd {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-v1I2gVsVQd .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1I2gVsVQd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1I2gVsVQd .row {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v1I2gVsVQd .row {
    flex-wrap: wrap;
  }
}
.cid-v1I2gVsVQd .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 80px 0;
}
.cid-v1I2gVsVQd .text-wrap:before {
  content: "";
  position: absolute;
  right: -100px;
  top: 0;
  height: 100%;
  width: 100vw;
  border-radius: 0 65px 65px 0;
  background-color: #f6efe8;
  z-index: -1;
}
@media (max-width: 1199px) {
  .cid-v1I2gVsVQd .text-wrap:before {
    border-radius: 0 40px 40px 0;
  }
}
@media (max-width: 991px) {
  .cid-v1I2gVsVQd .text-wrap:before {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0;
  }
}
@media (max-width: 991px) {
  .cid-v1I2gVsVQd .text-wrap {
    padding: 50px 0 90px;
  }
}
@media (max-width: 767px) {
  .cid-v1I2gVsVQd .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-v1I2gVsVQd .mbr-section-title {
  color: #353535;
  text-align: justify;
}
.cid-v1I2gVsVQd .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v1I2gVsVQd .mbr-text {
    margin-top: 12px;
  }
}
.cid-v1I2gVsVQd .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v1I2gVsVQd .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-v1I2gVsVQd .col-img {
  width: 390px;
}
@media (max-width: 1199px) {
  .cid-v1I2gVsVQd .col-img {
    width: 330px;
  }
}
@media (max-width: 991px) {
  .cid-v1I2gVsVQd .col-img {
    width: 250px;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-v1I2gVsVQd .col-img {
    margin-bottom: -50px;
  }
}
.cid-v1I2gVsVQd .img-wrap {
  position: relative;
  width: 100%;
}
.cid-v1I2gVsVQd .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 0 65px 65px 65px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-v1I2gVsVQd .img-wrap .img-box {
    border-radius: 0 40px 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-v1I2gVsVQd .img-wrap .img-box {
    transform: translateY(-50px);
    border-radius: 0 30px 30px 30px;
  }
}
.cid-v1I2gVsVQd .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-v1I2gVsVQd .mbr-text,
.cid-v1I2gVsVQd .mbr-section-btn {
  text-align: justify;
}
.cid-v1w6Vxe2SJ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-v1w6Vxe2SJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1w6Vxe2SJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1w6Vxe2SJ .row {
  flex-wrap: nowrap;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-v1w6Vxe2SJ .row {
    flex-wrap: wrap;
  }
}
.cid-v1w6Vxe2SJ .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 80px 0;
}
.cid-v1w6Vxe2SJ .text-wrap:before {
  content: "";
  position: absolute;
  right: -100px;
  top: 0;
  height: 100%;
  width: 100vw;
  border-radius: 0 65px 65px 0;
  background-color: #f6efe8;
  z-index: -1;
  border-radius: 65px 0 0 65px;
  right: auto;
  left: -100px;
}
@media (max-width: 1199px) {
  .cid-v1w6Vxe2SJ .text-wrap:before {
    border-radius: 0 40px 40px 0;
    border-radius: 40px 0 0 40px;
  }
}
@media (max-width: 991px) {
  .cid-v1w6Vxe2SJ .text-wrap:before {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0;
  }
}
@media (max-width: 991px) {
  .cid-v1w6Vxe2SJ .text-wrap {
    padding: 50px 0 90px;
  }
}
@media (max-width: 767px) {
  .cid-v1w6Vxe2SJ .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-v1w6Vxe2SJ .mbr-section-title {
  color: #353535;
  text-align: justify;
}
.cid-v1w6Vxe2SJ .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v1w6Vxe2SJ .mbr-text {
    margin-top: 12px;
  }
}
.cid-v1w6Vxe2SJ .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v1w6Vxe2SJ .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-v1w6Vxe2SJ .col-img {
  width: 390px;
}
@media (max-width: 1199px) {
  .cid-v1w6Vxe2SJ .col-img {
    width: 330px;
  }
}
@media (max-width: 991px) {
  .cid-v1w6Vxe2SJ .col-img {
    width: 250px;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-v1w6Vxe2SJ .col-img {
    margin-bottom: -50px;
  }
}
.cid-v1w6Vxe2SJ .img-wrap {
  position: relative;
  width: 100%;
}
.cid-v1w6Vxe2SJ .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 0 65px 65px 65px;
  overflow: hidden;
  border-radius: 65px 0 65px 65px;
}
@media (max-width: 1199px) {
  .cid-v1w6Vxe2SJ .img-wrap .img-box {
    border-radius: 0 40px 40px 40px;
    border-radius: 40px 0 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-v1w6Vxe2SJ .img-wrap .img-box {
    transform: translateY(-50px);
    border-radius: 0 30px 30px 30px;
    border-radius: 30px 0 30px 30px;
  }
}
.cid-v1w6Vxe2SJ .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-v1w6Vxe2SJ .mbr-text,
.cid-v1w6Vxe2SJ .mbr-section-btn {
  text-align: justify;
}
.cid-v1w2z0VjZ4 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-v1w2z0VjZ4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1w2z0VjZ4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1w2z0VjZ4 .row {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v1w2z0VjZ4 .row {
    flex-wrap: wrap;
  }
}
.cid-v1w2z0VjZ4 .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 80px 0;
}
.cid-v1w2z0VjZ4 .text-wrap:before {
  content: "";
  position: absolute;
  right: -100px;
  top: 0;
  height: 100%;
  width: 100vw;
  border-radius: 0 65px 65px 0;
  background-color: #f6efe8;
  z-index: -1;
}
@media (max-width: 1199px) {
  .cid-v1w2z0VjZ4 .text-wrap:before {
    border-radius: 0 40px 40px 0;
  }
}
@media (max-width: 991px) {
  .cid-v1w2z0VjZ4 .text-wrap:before {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0;
  }
}
@media (max-width: 991px) {
  .cid-v1w2z0VjZ4 .text-wrap {
    padding: 50px 0 90px;
  }
}
@media (max-width: 767px) {
  .cid-v1w2z0VjZ4 .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-v1w2z0VjZ4 .mbr-section-title {
  color: #446a49;
  text-align: justify;
}
.cid-v1w2z0VjZ4 .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v1w2z0VjZ4 .mbr-text {
    margin-top: 12px;
  }
}
.cid-v1w2z0VjZ4 .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v1w2z0VjZ4 .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-v1w2z0VjZ4 .col-img {
  width: 390px;
}
@media (max-width: 1199px) {
  .cid-v1w2z0VjZ4 .col-img {
    width: 330px;
  }
}
@media (max-width: 991px) {
  .cid-v1w2z0VjZ4 .col-img {
    width: 250px;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-v1w2z0VjZ4 .col-img {
    margin-bottom: -50px;
  }
}
.cid-v1w2z0VjZ4 .img-wrap {
  position: relative;
  width: 100%;
}
.cid-v1w2z0VjZ4 .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 0 65px 65px 65px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-v1w2z0VjZ4 .img-wrap .img-box {
    border-radius: 0 40px 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-v1w2z0VjZ4 .img-wrap .img-box {
    transform: translateY(-50px);
    border-radius: 0 30px 30px 30px;
  }
}
.cid-v1w2z0VjZ4 .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-v1w2z0VjZ4 .mbr-text,
.cid-v1w2z0VjZ4 .mbr-section-btn {
  text-align: justify;
  color: #446a49;
}
.cid-v1w4cKv7EF {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-v1w4cKv7EF .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1w4cKv7EF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1w4cKv7EF .row {
  flex-wrap: nowrap;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-v1w4cKv7EF .row {
    flex-wrap: wrap;
  }
}
.cid-v1w4cKv7EF .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 80px 0;
}
.cid-v1w4cKv7EF .text-wrap:before {
  content: "";
  position: absolute;
  right: -100px;
  top: 0;
  height: 100%;
  width: 100vw;
  border-radius: 0 65px 65px 0;
  background-color: #f6efe8;
  z-index: -1;
  border-radius: 65px 0 0 65px;
  right: auto;
  left: -100px;
}
@media (max-width: 1199px) {
  .cid-v1w4cKv7EF .text-wrap:before {
    border-radius: 0 40px 40px 0;
    border-radius: 40px 0 0 40px;
  }
}
@media (max-width: 991px) {
  .cid-v1w4cKv7EF .text-wrap:before {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0;
  }
}
@media (max-width: 991px) {
  .cid-v1w4cKv7EF .text-wrap {
    padding: 50px 0 90px;
  }
}
@media (max-width: 767px) {
  .cid-v1w4cKv7EF .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-v1w4cKv7EF .mbr-section-title {
  color: #353535;
  text-align: justify;
}
.cid-v1w4cKv7EF .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v1w4cKv7EF .mbr-text {
    margin-top: 12px;
  }
}
.cid-v1w4cKv7EF .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v1w4cKv7EF .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-v1w4cKv7EF .col-img {
  width: 390px;
}
@media (max-width: 1199px) {
  .cid-v1w4cKv7EF .col-img {
    width: 330px;
  }
}
@media (max-width: 991px) {
  .cid-v1w4cKv7EF .col-img {
    width: 250px;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-v1w4cKv7EF .col-img {
    margin-bottom: -50px;
  }
}
.cid-v1w4cKv7EF .img-wrap {
  position: relative;
  width: 100%;
}
.cid-v1w4cKv7EF .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 0 65px 65px 65px;
  overflow: hidden;
  border-radius: 65px 0 65px 65px;
}
@media (max-width: 1199px) {
  .cid-v1w4cKv7EF .img-wrap .img-box {
    border-radius: 0 40px 40px 40px;
    border-radius: 40px 0 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-v1w4cKv7EF .img-wrap .img-box {
    transform: translateY(-50px);
    border-radius: 0 30px 30px 30px;
    border-radius: 30px 0 30px 30px;
  }
}
.cid-v1w4cKv7EF .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-v1w4cKv7EF .mbr-text,
.cid-v1w4cKv7EF .mbr-section-btn {
  text-align: justify;
}
.cid-v1RIvGy0Lu {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f6efe8;
}
.cid-v1RIvGy0Lu .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1RIvGy0Lu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1RIvGy0Lu .content-wrapper .mbr-label {
  margin-bottom: 0;
}
.cid-v1RIvGy0Lu .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-v1RIvGy0Lu .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v1RIvGy0Lu .content-wrapper .mbr-section-btn {
  margin-top: 24px;
}
.cid-v1RIvGy0Lu .mbr-label {
  color: #111111;
  text-align: center;
}
.cid-v1RIvGy0Lu .mbr-section-title {
  color: #ff6d99;
}
.cid-v1RIvGy0Lu .mbr-text,
.cid-v1RIvGy0Lu .text-wrapper {
  color: #111111;
  text-align: center;
}
.cid-v1RIvGy0Lu .mbr-section-title,
.cid-v1RIvGy0Lu .mbr-section-btn {
  text-align: center;
  color: #446a49;
}
.cid-uZTqGTCaJ9 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/fiore-di-loto-1200x800.jpg");
}
.cid-uZTqGTCaJ9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZTqGTCaJ9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZTqGTCaJ9 .mbr-section-title {
  width: 100%;
  color: #446a49;
  margin-bottom: 0;
}
.cid-uZTqGTCaJ9 .mbr-section-title.display-4 {
  font-size: 40px;
}
@media (max-width: 767px) {
  .cid-uZTqGTCaJ9 .mbr-section-title.display-4 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 575px) {
  .cid-uZTqGTCaJ9 .mbr-section-title.display-4 {
    font-size: 26px;
  }
}
.cid-uZTqGTCaJ9 .mbr-text {
  width: 100%;
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uZTqGTCaJ9 .mbr-text {
    margin-top: 16px;
  }
}
.cid-uZTqGTCaJ9 .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uZTqGTCaJ9 .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uZTqGU9SF4 {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #fffdfb;
}
.cid-uZTqGU9SF4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZTqGU9SF4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZTqGU9SF4 .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uZTqGU9SF4 .container-fluid {
    padding: 0 20px;
  }
}
.cid-uZTqGU9SF4 .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uZTqGU9SF4 .container {
    padding: 0 20px;
  }
}
.cid-uZTqGU9SF4 .list-wrapper .list,
.cid-uZTqGU9SF4 .list-wrapper_2 .list_2 {
  display: inline-flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uZTqGU9SF4 .list-wrapper .list .item-wrap,
.cid-uZTqGU9SF4 .list-wrapper_2 .list_2 .item-wrap {
  margin-right: 24px;
  transition: all 0.3s ease-out;
}
.cid-uZTqGU9SF4 .list-wrapper .list .item-wrap:hover,
.cid-uZTqGU9SF4 .list-wrapper_2 .list_2 .item-wrap:hover {
  opacity: .7;
}
@media (max-width: 992px) {
  .cid-uZTqGU9SF4 .list-wrapper .list .item-wrap,
  .cid-uZTqGU9SF4 .list-wrapper_2 .list_2 .item-wrap {
    margin-bottom: 32px;
  }
}
.cid-uZTqGU9SF4 .logo-wrap img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: inline-flex;
  margin-bottom: 8px;
}
.cid-uZTqGU9SF4 .mbr-section-title {
  margin-bottom: 0;
  color: #1d1d1d;
}
@media (max-width: 992px) {
  .cid-uZTqGU9SF4 .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uZTqGU9SF4 .text-wrapper {
  margin: 40px 0 22px;
}
.cid-uZTqGU9SF4 .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uZTqGU9SF4 .copy-wrapper .copyright {
  margin-bottom: 0;
}
.cid-uZTqGU9SF4 .mbr-section-title,
.cid-uZTqGU9SF4 .logo-wrap {
  text-align: center;
  color: #446a49;
}
.cid-uZTqGU9SF4 .list {
  color: #1d1d1d;
}
.cid-uZTqGU9SF4 .list_2 {
  color: #989898;
}
.cid-uZTqGU9SF4 .mbr-text {
  color: #989898;
  text-align: center;
}
.cid-uZTqGU9SF4 .copyright {
  color: #353535;
  text-align: center;
}
.cid-uZTqGU9SF4 .list-wrapper_2 {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uZTqGU9SF4 .list-wrapper,
  .cid-uZTqGU9SF4 .list-wrapper_2 {
    text-align: center;
  }
}
.cid-uZTqGU9SF4 .list_2,
.cid-uZTqGU9SF4 .list-wrapper_2 {
  text-align: justify;
}
.cid-v0mCiQQgFx {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0mCiQQgFx .menu-text {
  padding: 0 2rem;
  color: #29a436;
}
@media (max-width: 992px) {
  .cid-v0mCiQQgFx .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0mCiQQgFx .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0mCiQQgFx .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0mCiQQgFx .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0mCiQQgFx .container {
    padding: 0 1rem;
  }
}
.cid-v0mCiQQgFx .menu-tite {
  background: #29a436;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffc800;
}
.cid-v0mCiQQgFx .nav-link {
  position: relative;
}
.cid-v0mCiQQgFx .nav-link:hover {
  color: #d0c4b7 !important;
}
.cid-v0mCiQQgFx nav.navbar {
  position: fixed;
}
.cid-v0mCiQQgFx .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-v0mCiQQgFx .navbar.opened {
  transition: all 0.3s;
}
.cid-v0mCiQQgFx .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0mCiQQgFx .navbar .navbar-logo img {
  width: auto;
}
.cid-v0mCiQQgFx .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0mCiQQgFx .navbar.collapsed {
  justify-content: center;
}
.cid-v0mCiQQgFx .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0mCiQQgFx .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0mCiQQgFx .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.1rem);
  }
}
.cid-v0mCiQQgFx .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0mCiQQgFx .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0mCiQQgFx .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-v0mCiQQgFx .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0mCiQQgFx .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0mCiQQgFx .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0mCiQQgFx .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0mCiQQgFx .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0mCiQQgFx .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0mCiQQgFx .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0mCiQQgFx .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-v0mCiQQgFx .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0mCiQQgFx .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0mCiQQgFx .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0mCiQQgFx .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0mCiQQgFx .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0mCiQQgFx .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0mCiQQgFx .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0mCiQQgFx .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0mCiQQgFx .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0mCiQQgFx .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-v0mCiQQgFx .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0mCiQQgFx .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0mCiQQgFx .dropdown-item:hover,
.cid-v0mCiQQgFx .dropdown-item:focus {
  background: #29a436 !important;
  color: white !important;
}
.cid-v0mCiQQgFx .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0mCiQQgFx .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0mCiQQgFx .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0mCiQQgFx .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0mCiQQgFx .dropdown-menu,
.cid-v0mCiQQgFx .navbar.opened {
  background: #ffffff !important;
}
.cid-v0mCiQQgFx .nav-item:focus,
.cid-v0mCiQQgFx .nav-link:focus {
  outline: none;
}
.cid-v0mCiQQgFx .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0mCiQQgFx .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0mCiQQgFx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0mCiQQgFx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0mCiQQgFx .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0mCiQQgFx .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0mCiQQgFx .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0mCiQQgFx .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0mCiQQgFx .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0mCiQQgFx .dropdown-item.active,
.cid-v0mCiQQgFx .dropdown-item:active {
  background-color: transparent;
}
.cid-v0mCiQQgFx .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0mCiQQgFx .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0mCiQQgFx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0mCiQQgFx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v0mCiQQgFx .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0mCiQQgFx .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0mCiQQgFx ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0mCiQQgFx .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0mCiQQgFx button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0mCiQQgFx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0mCiQQgFx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0mCiQQgFx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0mCiQQgFx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0mCiQQgFx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0mCiQQgFx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0mCiQQgFx nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0mCiQQgFx nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0mCiQQgFx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0mCiQQgFx .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0mCiQQgFx a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0mCiQQgFx .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-v0mCiQQgFx .navbar {
    height: 70px;
  }
  .cid-v0mCiQQgFx .navbar.opened {
    height: auto;
  }
  .cid-v0mCiQQgFx .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v0mCiRG6hF {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background1.jpg");
  overflow: hidden;
}
.cid-v0mCiRG6hF .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mCiRG6hF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mCiRG6hF .row {
  flex-wrap: nowrap;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-v0mCiRG6hF .row {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-v0mCiRG6hF .col-text {
    order: 2;
  }
}
.cid-v0mCiRG6hF .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-v0mCiRG6hF .text-wrap {
    margin-top: 30px;
  }
}
.cid-v0mCiRG6hF .mbr-section-title {
  color: #446a49;
}
.cid-v0mCiRG6hF .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v0mCiRG6hF .mbr-text {
    margin-top: 12px;
  }
}
.cid-v0mCiRG6hF .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v0mCiRG6hF .mbr-section-btn {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-v0mCiRG6hF .col-img {
    order: 1;
  }
}
.cid-v0mCiRG6hF .img-wrap {
  position: relative;
  width: 100%;
}
.cid-v0mCiRG6hF .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 65px 65px 65px 0;
  overflow: hidden;
  border-radius: 65px 65px 0 65px;
}
@media (max-width: 1199px) {
  .cid-v0mCiRG6hF .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
    border-radius: 55px 55px 0 55px;
  }
}
@media (max-width: 991px) {
  .cid-v0mCiRG6hF .img-wrap .img-box {
    border-radius: 65px 65px 65px 0;
    border-radius: 65px 65px 0 65px;
  }
}
@media (max-width: 767px) {
  .cid-v0mCiRG6hF .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
    border-radius: 55px  55px 0 55px;
  }
}
@media (max-width: 575px) {
  .cid-v0mCiRG6hF .img-wrap .img-box {
    border-radius: 45px 45px 45px 0;
    border-radius: 45px 45px 0 45px;
  }
}
.cid-v0mCiRG6hF .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-v0mCiSborN {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fffcf5;
}
.cid-v0mCiSborN .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mCiSborN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mCiSborN .row {
  justify-content: space-between;
}
.cid-v0mCiSborN .content-wrapper .mbr-label {
  margin-bottom: 20px;
}
.cid-v0mCiSborN .content-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-v0mCiSborN .text-wrapper .mbr-text {
  margin-bottom: 14px;
}
.cid-v0mCiSborN .mbr-label {
  color: #666666;
}
.cid-v0mCiSborN .mbr-section-title {
  color: #0f0f0f;
}
.cid-v0mCiSborN .mbr-text {
  color: #666666;
}
.cid-v0mCiSborN .mbr-text,
.cid-v0mCiSborN .mbr-section-btn {
  color: #446a49;
}
.cid-v1RHsOn7b3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f6efe8;
}
.cid-v1RHsOn7b3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1RHsOn7b3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1RHsOn7b3 .content-wrapper .mbr-label {
  margin-bottom: 0;
}
.cid-v1RHsOn7b3 .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-v1RHsOn7b3 .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v1RHsOn7b3 .content-wrapper .mbr-section-btn {
  margin-top: 24px;
}
.cid-v1RHsOn7b3 .mbr-label {
  color: #111111;
  text-align: center;
}
.cid-v1RHsOn7b3 .mbr-section-title {
  color: #ff6d99;
}
.cid-v1RHsOn7b3 .mbr-text,
.cid-v1RHsOn7b3 .text-wrapper {
  color: #111111;
  text-align: center;
}
.cid-v1RHsOn7b3 .mbr-section-title,
.cid-v1RHsOn7b3 .mbr-section-btn {
  text-align: center;
  color: #446a49;
}
.cid-v0mCiSCTHO {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/fiore-di-loto-1200x800.jpg");
}
.cid-v0mCiSCTHO .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mCiSCTHO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mCiSCTHO .mbr-section-title {
  width: 100%;
  color: #6c6c6c;
  margin-bottom: 0;
}
.cid-v0mCiSCTHO .mbr-section-title.display-4 {
  font-size: 40px;
}
@media (max-width: 767px) {
  .cid-v0mCiSCTHO .mbr-section-title.display-4 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 575px) {
  .cid-v0mCiSCTHO .mbr-section-title.display-4 {
    font-size: 26px;
  }
}
.cid-v0mCiSCTHO .mbr-text {
  width: 100%;
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-v0mCiSCTHO .mbr-text {
    margin-top: 16px;
  }
}
.cid-v0mCiSCTHO .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-v0mCiSCTHO .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-v0mCiT3JPz {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #fffdfb;
}
.cid-v0mCiT3JPz .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mCiT3JPz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mCiT3JPz .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-v0mCiT3JPz .container-fluid {
    padding: 0 20px;
  }
}
.cid-v0mCiT3JPz .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-v0mCiT3JPz .container {
    padding: 0 20px;
  }
}
.cid-v0mCiT3JPz .list-wrapper .list,
.cid-v0mCiT3JPz .list-wrapper_2 .list_2 {
  display: inline-flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v0mCiT3JPz .list-wrapper .list .item-wrap,
.cid-v0mCiT3JPz .list-wrapper_2 .list_2 .item-wrap {
  margin-right: 24px;
  transition: all 0.3s ease-out;
}
.cid-v0mCiT3JPz .list-wrapper .list .item-wrap:hover,
.cid-v0mCiT3JPz .list-wrapper_2 .list_2 .item-wrap:hover {
  opacity: .7;
}
@media (max-width: 992px) {
  .cid-v0mCiT3JPz .list-wrapper .list .item-wrap,
  .cid-v0mCiT3JPz .list-wrapper_2 .list_2 .item-wrap {
    margin-bottom: 32px;
  }
}
.cid-v0mCiT3JPz .logo-wrap img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: inline-flex;
  margin-bottom: 8px;
}
.cid-v0mCiT3JPz .mbr-section-title {
  margin-bottom: 0;
  color: #1d1d1d;
}
@media (max-width: 992px) {
  .cid-v0mCiT3JPz .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-v0mCiT3JPz .text-wrapper {
  margin: 40px 0 22px;
}
.cid-v0mCiT3JPz .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v0mCiT3JPz .copy-wrapper .copyright {
  margin-bottom: 0;
}
.cid-v0mCiT3JPz .mbr-section-title,
.cid-v0mCiT3JPz .logo-wrap {
  text-align: center;
  color: #446a49;
}
.cid-v0mCiT3JPz .list {
  color: #1d1d1d;
}
.cid-v0mCiT3JPz .list_2 {
  color: #989898;
}
.cid-v0mCiT3JPz .mbr-text {
  color: #989898;
  text-align: center;
}
.cid-v0mCiT3JPz .copyright {
  color: #353535;
  text-align: center;
}
.cid-v0mCiT3JPz .list-wrapper_2 {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-v0mCiT3JPz .list-wrapper,
  .cid-v0mCiT3JPz .list-wrapper_2 {
    text-align: center;
  }
}
.cid-v0mCiT3JPz .list_2,
.cid-v0mCiT3JPz .list-wrapper_2 {
  text-align: justify;
}
.cid-v0rXBrkIuM {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0rXBrkIuM .menu-text {
  padding: 0 2rem;
  color: #29a436;
}
@media (max-width: 992px) {
  .cid-v0rXBrkIuM .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0rXBrkIuM .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0rXBrkIuM .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0rXBrkIuM .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0rXBrkIuM .container {
    padding: 0 1rem;
  }
}
.cid-v0rXBrkIuM .menu-tite {
  background: #29a436;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffc800;
}
.cid-v0rXBrkIuM .nav-link {
  position: relative;
}
.cid-v0rXBrkIuM .nav-link:hover {
  color: #d0c4b7 !important;
}
.cid-v0rXBrkIuM nav.navbar {
  position: fixed;
}
.cid-v0rXBrkIuM .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-v0rXBrkIuM .navbar.opened {
  transition: all 0.3s;
}
.cid-v0rXBrkIuM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0rXBrkIuM .navbar .navbar-logo img {
  width: auto;
}
.cid-v0rXBrkIuM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0rXBrkIuM .navbar.collapsed {
  justify-content: center;
}
.cid-v0rXBrkIuM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0rXBrkIuM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0rXBrkIuM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.1rem);
  }
}
.cid-v0rXBrkIuM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0rXBrkIuM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0rXBrkIuM .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-v0rXBrkIuM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0rXBrkIuM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0rXBrkIuM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0rXBrkIuM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0rXBrkIuM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0rXBrkIuM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0rXBrkIuM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0rXBrkIuM .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-v0rXBrkIuM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0rXBrkIuM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0rXBrkIuM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0rXBrkIuM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0rXBrkIuM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0rXBrkIuM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0rXBrkIuM .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0rXBrkIuM .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0rXBrkIuM .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0rXBrkIuM .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-v0rXBrkIuM .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0rXBrkIuM .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0rXBrkIuM .dropdown-item:hover,
.cid-v0rXBrkIuM .dropdown-item:focus {
  background: #29a436 !important;
  color: white !important;
}
.cid-v0rXBrkIuM .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0rXBrkIuM .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0rXBrkIuM .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0rXBrkIuM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0rXBrkIuM .dropdown-menu,
.cid-v0rXBrkIuM .navbar.opened {
  background: #ffffff !important;
}
.cid-v0rXBrkIuM .nav-item:focus,
.cid-v0rXBrkIuM .nav-link:focus {
  outline: none;
}
.cid-v0rXBrkIuM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0rXBrkIuM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0rXBrkIuM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0rXBrkIuM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0rXBrkIuM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0rXBrkIuM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0rXBrkIuM .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0rXBrkIuM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0rXBrkIuM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0rXBrkIuM .dropdown-item.active,
.cid-v0rXBrkIuM .dropdown-item:active {
  background-color: transparent;
}
.cid-v0rXBrkIuM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0rXBrkIuM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0rXBrkIuM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0rXBrkIuM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v0rXBrkIuM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0rXBrkIuM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0rXBrkIuM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0rXBrkIuM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0rXBrkIuM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0rXBrkIuM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0rXBrkIuM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0rXBrkIuM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0rXBrkIuM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0rXBrkIuM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0rXBrkIuM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0rXBrkIuM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0rXBrkIuM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0rXBrkIuM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0rXBrkIuM .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0rXBrkIuM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0rXBrkIuM .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-v0rXBrkIuM .navbar {
    height: 70px;
  }
  .cid-v0rXBrkIuM .navbar.opened {
    height: auto;
  }
  .cid-v0rXBrkIuM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v0s01l36oV {
  padding-top: 9rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1275.jpg");
  overflow: hidden;
}
.cid-v0s01l36oV .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0s01l36oV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0s01l36oV .row {
  flex-wrap: nowrap;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-v0s01l36oV .row {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-v0s01l36oV .col-text {
    order: 2;
  }
}
.cid-v0s01l36oV .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-v0s01l36oV .text-wrap {
    margin-top: 30px;
  }
}
.cid-v0s01l36oV .mbr-section-title {
  color: #446a49;
}
.cid-v0s01l36oV .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v0s01l36oV .mbr-text {
    margin-top: 12px;
  }
}
.cid-v0s01l36oV .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v0s01l36oV .mbr-section-btn {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-v0s01l36oV .col-img {
    order: 1;
  }
}
.cid-v0s01l36oV .img-wrap {
  position: relative;
  width: 100%;
}
.cid-v0s01l36oV .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 65px 65px 65px 0;
  overflow: hidden;
  border-radius: 65px 65px 0 65px;
}
@media (max-width: 1199px) {
  .cid-v0s01l36oV .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
    border-radius: 55px 55px 0 55px;
  }
}
@media (max-width: 991px) {
  .cid-v0s01l36oV .img-wrap .img-box {
    border-radius: 65px 65px 65px 0;
    border-radius: 65px 65px 0 65px;
  }
}
@media (max-width: 767px) {
  .cid-v0s01l36oV .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
    border-radius: 55px  55px 0 55px;
  }
}
@media (max-width: 575px) {
  .cid-v0s01l36oV .img-wrap .img-box {
    border-radius: 45px 45px 45px 0;
    border-radius: 45px 45px 0 45px;
  }
}
.cid-v0s01l36oV .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-v0s01l36oV .mbr-text,
.cid-v0s01l36oV .mbr-section-btn {
  text-align: justify;
  color: #353535;
}
.cid-v0s15jv8G4 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v0s15jv8G4 .mbr-section-subtitle,
.cid-v0s15jv8G4 .item-subtitle,
.cid-v0s15jv8G4 .item-title {
  margin-bottom: 12px;
  transition: all .2s;
}
@media (min-width: 992px) {
  .cid-v0s15jv8G4 .main_title {
    padding-right: 1rem;
  }
}
.cid-v0s15jv8G4 .card_item {
  margin-bottom: 60px;
}
@media (min-width: 991px) {
  .cid-v0s15jv8G4 .card_item:nth-child(2n+2) {
    margin-bottom: 0;
  }
  .cid-v0s15jv8G4 .card_item:nth-child(3n+3) {
    margin-bottom: 0;
  }
}
.cid-v0s15jv8G4 .card_item:hover .card_wrapper:before {
  height: 100%;
}
.cid-v0s15jv8G4 .card_wrapper {
  position: relative;
  padding-left: 50px;
  border-left: 1px solid #010a44;
}
.cid-v0s15jv8G4 .card_wrapper:before {
  content: '';
  position: absolute;
  width: 1px;
  height: 0;
  top: 0;
  left: -1px;
  background: #987a5a;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-v0s15jv8G4 .card_wrapper:hover .item-title a {
  color: #987a5a !important;
}
.cid-v0s15jv8G4 .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-v0s15jv8G4 .mbr-section-btn .btn-secondary-outline:hover,
.cid-v0s15jv8G4 .mbr-section-btn .btn-secondary-outline .active,
.cid-v0s15jv8G4 .mbr-section-btn .btn-secondary-outline:focus {
  color: #29a436 !important;
}
@media (max-width: 991px) {
  .cid-v0s15jv8G4 .main_title {
    margin-bottom: 50px;
  }
  .cid-v0s15jv8G4 .card_item:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .cid-v0s15jv8G4 .card_wrapper {
    padding-left: 20px;
  }
  .cid-v0s15jv8G4 .card_item {
    margin-bottom: 30px;
  }
}
.cid-v0s15jv8G4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0s15jv8G4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0s15jv8G4 .mbr-section-subtitle {
  color: #446a49;
}
.cid-v0s15jv8G4 .mbr-section-title {
  color: #829d85;
}
.cid-v0s15jv8G4 .item-subtitle {
  color: #446a49;
}
.cid-v1I9WZCixf {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v1I9WZCixf .mbr-section-subtitle,
.cid-v1I9WZCixf .item-subtitle,
.cid-v1I9WZCixf .item-title {
  margin-bottom: 12px;
  transition: all .2s;
}
@media (min-width: 992px) {
  .cid-v1I9WZCixf .main_title {
    padding-right: 1rem;
  }
}
.cid-v1I9WZCixf .card_item {
  margin-bottom: 60px;
}
@media (min-width: 991px) {
  .cid-v1I9WZCixf .card_item:nth-child(2n+2) {
    margin-bottom: 0;
  }
  .cid-v1I9WZCixf .card_item:nth-child(3n+3) {
    margin-bottom: 0;
  }
}
.cid-v1I9WZCixf .card_item:hover .card_wrapper:before {
  height: 100%;
}
.cid-v1I9WZCixf .card_wrapper {
  position: relative;
  padding-left: 50px;
  border-left: 1px solid #010a44;
}
.cid-v1I9WZCixf .card_wrapper:before {
  content: '';
  position: absolute;
  width: 1px;
  height: 0;
  top: 0;
  left: -1px;
  background: #987a5a;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-v1I9WZCixf .card_wrapper:hover .item-title a {
  color: #987a5a !important;
}
.cid-v1I9WZCixf .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-v1I9WZCixf .mbr-section-btn .btn-secondary-outline:hover,
.cid-v1I9WZCixf .mbr-section-btn .btn-secondary-outline .active,
.cid-v1I9WZCixf .mbr-section-btn .btn-secondary-outline:focus {
  color: #29a436 !important;
}
@media (max-width: 991px) {
  .cid-v1I9WZCixf .main_title {
    margin-bottom: 50px;
  }
  .cid-v1I9WZCixf .card_item:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .cid-v1I9WZCixf .card_wrapper {
    padding-left: 20px;
  }
  .cid-v1I9WZCixf .card_item {
    margin-bottom: 30px;
  }
}
.cid-v1I9WZCixf .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1I9WZCixf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1I9WZCixf .mbr-section-subtitle {
  color: #446a49;
}
.cid-v1I9WZCixf .mbr-section-title {
  color: #829d85;
}
.cid-v1I9WZCixf .item-subtitle {
  color: #446a49;
}
.cid-v1AN6Bedhx {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v1AN6Bedhx .mbr-section-subtitle,
.cid-v1AN6Bedhx .item-subtitle,
.cid-v1AN6Bedhx .item-title {
  margin-bottom: 12px;
  transition: all .2s;
}
@media (min-width: 992px) {
  .cid-v1AN6Bedhx .main_title {
    padding-right: 1rem;
  }
}
.cid-v1AN6Bedhx .card_item {
  margin-bottom: 60px;
}
@media (min-width: 991px) {
  .cid-v1AN6Bedhx .card_item:nth-child(2n+2) {
    margin-bottom: 0;
  }
  .cid-v1AN6Bedhx .card_item:nth-child(3n+3) {
    margin-bottom: 0;
  }
}
.cid-v1AN6Bedhx .card_item:hover .card_wrapper:before {
  height: 100%;
}
.cid-v1AN6Bedhx .card_wrapper {
  position: relative;
  padding-left: 50px;
  border-left: 1px solid #010a44;
}
.cid-v1AN6Bedhx .card_wrapper:before {
  content: '';
  position: absolute;
  width: 1px;
  height: 0;
  top: 0;
  left: -1px;
  background: #987a5a;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-v1AN6Bedhx .card_wrapper:hover .item-title a {
  color: #987a5a !important;
}
.cid-v1AN6Bedhx .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-v1AN6Bedhx .mbr-section-btn .btn-secondary-outline:hover,
.cid-v1AN6Bedhx .mbr-section-btn .btn-secondary-outline .active,
.cid-v1AN6Bedhx .mbr-section-btn .btn-secondary-outline:focus {
  color: #29a436 !important;
}
@media (max-width: 991px) {
  .cid-v1AN6Bedhx .main_title {
    margin-bottom: 50px;
  }
  .cid-v1AN6Bedhx .card_item:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .cid-v1AN6Bedhx .card_wrapper {
    padding-left: 20px;
  }
  .cid-v1AN6Bedhx .card_item {
    margin-bottom: 30px;
  }
}
.cid-v1AN6Bedhx .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1AN6Bedhx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1AN6Bedhx .mbr-section-subtitle {
  color: #446a49;
}
.cid-v1AN6Bedhx .mbr-section-title {
  color: #829d85;
}
.cid-v1AN6Bedhx .item-subtitle {
  color: #446a49;
}
.cid-v1ALrwK6IM {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v1ALrwK6IM .mbr-section-subtitle,
.cid-v1ALrwK6IM .item-subtitle,
.cid-v1ALrwK6IM .item-title {
  margin-bottom: 12px;
  transition: all .2s;
}
@media (min-width: 992px) {
  .cid-v1ALrwK6IM .main_title {
    padding-right: 1rem;
  }
}
.cid-v1ALrwK6IM .card_item {
  margin-bottom: 60px;
}
@media (min-width: 991px) {
  .cid-v1ALrwK6IM .card_item:nth-child(2n+2) {
    margin-bottom: 0;
  }
  .cid-v1ALrwK6IM .card_item:nth-child(3n+3) {
    margin-bottom: 0;
  }
}
.cid-v1ALrwK6IM .card_item:hover .card_wrapper:before {
  height: 100%;
}
.cid-v1ALrwK6IM .card_wrapper {
  position: relative;
  padding-left: 50px;
  border-left: 1px solid #010a44;
}
.cid-v1ALrwK6IM .card_wrapper:before {
  content: '';
  position: absolute;
  width: 1px;
  height: 0;
  top: 0;
  left: -1px;
  background: #987a5a;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-v1ALrwK6IM .card_wrapper:hover .item-title a {
  color: #987a5a !important;
}
.cid-v1ALrwK6IM .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-v1ALrwK6IM .mbr-section-btn .btn-secondary-outline:hover,
.cid-v1ALrwK6IM .mbr-section-btn .btn-secondary-outline .active,
.cid-v1ALrwK6IM .mbr-section-btn .btn-secondary-outline:focus {
  color: #29a436 !important;
}
@media (max-width: 991px) {
  .cid-v1ALrwK6IM .main_title {
    margin-bottom: 50px;
  }
  .cid-v1ALrwK6IM .card_item:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .cid-v1ALrwK6IM .card_wrapper {
    padding-left: 20px;
  }
  .cid-v1ALrwK6IM .card_item {
    margin-bottom: 30px;
  }
}
.cid-v1ALrwK6IM .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1ALrwK6IM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1ALrwK6IM .mbr-section-subtitle {
  color: #446a49;
}
.cid-v1ALrwK6IM .mbr-section-title {
  color: #829d85;
}
.cid-v1ALrwK6IM .item-subtitle {
  color: #446a49;
}
.cid-v0sc5Q0wi7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v0sc5Q0wi7 .mbr-section-subtitle,
.cid-v0sc5Q0wi7 .item-subtitle,
.cid-v0sc5Q0wi7 .item-title {
  margin-bottom: 12px;
  transition: all .2s;
}
@media (min-width: 992px) {
  .cid-v0sc5Q0wi7 .main_title {
    padding-right: 1rem;
  }
}
.cid-v0sc5Q0wi7 .card_item {
  margin-bottom: 60px;
}
@media (min-width: 991px) {
  .cid-v0sc5Q0wi7 .card_item:nth-child(2n+2) {
    margin-bottom: 0;
  }
  .cid-v0sc5Q0wi7 .card_item:nth-child(3n+3) {
    margin-bottom: 0;
  }
}
.cid-v0sc5Q0wi7 .card_item:hover .card_wrapper:before {
  height: 100%;
}
.cid-v0sc5Q0wi7 .card_wrapper {
  position: relative;
  padding-left: 50px;
  border-left: 1px solid #010a44;
}
.cid-v0sc5Q0wi7 .card_wrapper:before {
  content: '';
  position: absolute;
  width: 1px;
  height: 0;
  top: 0;
  left: -1px;
  background: #987a5a;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-v0sc5Q0wi7 .card_wrapper:hover .item-title a {
  color: #987a5a !important;
}
.cid-v0sc5Q0wi7 .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-v0sc5Q0wi7 .mbr-section-btn .btn-secondary-outline:hover,
.cid-v0sc5Q0wi7 .mbr-section-btn .btn-secondary-outline .active,
.cid-v0sc5Q0wi7 .mbr-section-btn .btn-secondary-outline:focus {
  color: #29a436 !important;
}
@media (max-width: 991px) {
  .cid-v0sc5Q0wi7 .main_title {
    margin-bottom: 50px;
  }
  .cid-v0sc5Q0wi7 .card_item:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .cid-v0sc5Q0wi7 .card_wrapper {
    padding-left: 20px;
  }
  .cid-v0sc5Q0wi7 .card_item {
    margin-bottom: 30px;
  }
}
.cid-v0sc5Q0wi7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0sc5Q0wi7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0sc5Q0wi7 .mbr-section-subtitle {
  color: #446a49;
}
.cid-v0sc5Q0wi7 .mbr-section-title {
  color: #618365;
}
.cid-v0sc5Q0wi7 .item-subtitle {
  color: #446a49;
}
.cid-v0scJZq85z {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v0scJZq85z .mbr-section-subtitle,
.cid-v0scJZq85z .item-subtitle,
.cid-v0scJZq85z .item-title {
  margin-bottom: 12px;
  transition: all .2s;
}
@media (min-width: 992px) {
  .cid-v0scJZq85z .main_title {
    padding-right: 1rem;
  }
}
.cid-v0scJZq85z .card_item {
  margin-bottom: 60px;
}
@media (min-width: 991px) {
  .cid-v0scJZq85z .card_item:nth-child(2n+2) {
    margin-bottom: 0;
  }
  .cid-v0scJZq85z .card_item:nth-child(3n+3) {
    margin-bottom: 0;
  }
}
.cid-v0scJZq85z .card_item:hover .card_wrapper:before {
  height: 100%;
}
.cid-v0scJZq85z .card_wrapper {
  position: relative;
  padding-left: 50px;
  border-left: 1px solid #010a44;
}
.cid-v0scJZq85z .card_wrapper:before {
  content: '';
  position: absolute;
  width: 1px;
  height: 0;
  top: 0;
  left: -1px;
  background: #987a5a;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-v0scJZq85z .card_wrapper:hover .item-title a {
  color: #987a5a !important;
}
.cid-v0scJZq85z .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-v0scJZq85z .mbr-section-btn .btn-secondary-outline:hover,
.cid-v0scJZq85z .mbr-section-btn .btn-secondary-outline .active,
.cid-v0scJZq85z .mbr-section-btn .btn-secondary-outline:focus {
  color: #29a436 !important;
}
@media (max-width: 991px) {
  .cid-v0scJZq85z .main_title {
    margin-bottom: 50px;
  }
  .cid-v0scJZq85z .card_item:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .cid-v0scJZq85z .card_wrapper {
    padding-left: 20px;
  }
  .cid-v0scJZq85z .card_item {
    margin-bottom: 30px;
  }
}
.cid-v0scJZq85z .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0scJZq85z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0scJZq85z .mbr-section-subtitle {
  color: #446a49;
}
.cid-v0scJZq85z .mbr-section-title {
  color: #618365;
}
.cid-v0scJZq85z .item-subtitle {
  color: #446a49;
}
.cid-v0s6P6WWam {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v0s6P6WWam .mbr-section-subtitle,
.cid-v0s6P6WWam .item-subtitle,
.cid-v0s6P6WWam .item-title {
  margin-bottom: 12px;
  transition: all .2s;
}
@media (min-width: 992px) {
  .cid-v0s6P6WWam .main_title {
    padding-right: 1rem;
  }
}
.cid-v0s6P6WWam .card_item {
  margin-bottom: 60px;
}
@media (min-width: 991px) {
  .cid-v0s6P6WWam .card_item:nth-child(2n+2) {
    margin-bottom: 0;
  }
  .cid-v0s6P6WWam .card_item:nth-child(3n+3) {
    margin-bottom: 0;
  }
}
.cid-v0s6P6WWam .card_item:hover .card_wrapper:before {
  height: 100%;
}
.cid-v0s6P6WWam .card_wrapper {
  position: relative;
  padding-left: 50px;
  border-left: 1px solid #010a44;
}
.cid-v0s6P6WWam .card_wrapper:before {
  content: '';
  position: absolute;
  width: 1px;
  height: 0;
  top: 0;
  left: -1px;
  background: #987a5a;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-v0s6P6WWam .card_wrapper:hover .item-title a {
  color: #987a5a !important;
}
.cid-v0s6P6WWam .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-v0s6P6WWam .mbr-section-btn .btn-secondary-outline:hover,
.cid-v0s6P6WWam .mbr-section-btn .btn-secondary-outline .active,
.cid-v0s6P6WWam .mbr-section-btn .btn-secondary-outline:focus {
  color: #29a436 !important;
}
@media (max-width: 991px) {
  .cid-v0s6P6WWam .main_title {
    margin-bottom: 50px;
  }
  .cid-v0s6P6WWam .card_item:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .cid-v0s6P6WWam .card_wrapper {
    padding-left: 20px;
  }
  .cid-v0s6P6WWam .card_item {
    margin-bottom: 30px;
  }
}
.cid-v0s6P6WWam .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0s6P6WWam .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0s6P6WWam .mbr-section-subtitle {
  color: #446a49;
}
.cid-v0s6P6WWam .mbr-section-title {
  color: #829d85;
}
.cid-v0s6P6WWam .item-subtitle {
  color: #446a49;
}
.cid-v0s9RkvePb {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v0s9RkvePb .mbr-section-subtitle,
.cid-v0s9RkvePb .item-subtitle,
.cid-v0s9RkvePb .item-title {
  margin-bottom: 12px;
  transition: all .2s;
}
@media (min-width: 992px) {
  .cid-v0s9RkvePb .main_title {
    padding-right: 1rem;
  }
}
.cid-v0s9RkvePb .card_item {
  margin-bottom: 60px;
}
@media (min-width: 991px) {
  .cid-v0s9RkvePb .card_item:nth-child(2n+2) {
    margin-bottom: 0;
  }
  .cid-v0s9RkvePb .card_item:nth-child(3n+3) {
    margin-bottom: 0;
  }
}
.cid-v0s9RkvePb .card_item:hover .card_wrapper:before {
  height: 100%;
}
.cid-v0s9RkvePb .card_wrapper {
  position: relative;
  padding-left: 50px;
  border-left: 1px solid #010a44;
}
.cid-v0s9RkvePb .card_wrapper:before {
  content: '';
  position: absolute;
  width: 1px;
  height: 0;
  top: 0;
  left: -1px;
  background: #987a5a;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-v0s9RkvePb .card_wrapper:hover .item-title a {
  color: #987a5a !important;
}
.cid-v0s9RkvePb .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-v0s9RkvePb .mbr-section-btn .btn-secondary-outline:hover,
.cid-v0s9RkvePb .mbr-section-btn .btn-secondary-outline .active,
.cid-v0s9RkvePb .mbr-section-btn .btn-secondary-outline:focus {
  color: #29a436 !important;
}
@media (max-width: 991px) {
  .cid-v0s9RkvePb .main_title {
    margin-bottom: 50px;
  }
  .cid-v0s9RkvePb .card_item:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .cid-v0s9RkvePb .card_wrapper {
    padding-left: 20px;
  }
  .cid-v0s9RkvePb .card_item {
    margin-bottom: 30px;
  }
}
.cid-v0s9RkvePb .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0s9RkvePb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0s9RkvePb .mbr-section-subtitle {
  color: #446a49;
}
.cid-v0s9RkvePb .mbr-section-title {
  color: #618365;
}
.cid-v0s9RkvePb .item-subtitle {
  color: #446a49;
}
.cid-v0s4u3o5lw {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v0s4u3o5lw .mbr-section-subtitle,
.cid-v0s4u3o5lw .item-subtitle,
.cid-v0s4u3o5lw .item-title {
  margin-bottom: 12px;
  transition: all .2s;
}
@media (min-width: 992px) {
  .cid-v0s4u3o5lw .main_title {
    padding-right: 1rem;
  }
}
.cid-v0s4u3o5lw .card_item {
  margin-bottom: 60px;
}
@media (min-width: 991px) {
  .cid-v0s4u3o5lw .card_item:nth-child(2n+2) {
    margin-bottom: 0;
  }
  .cid-v0s4u3o5lw .card_item:nth-child(3n+3) {
    margin-bottom: 0;
  }
}
.cid-v0s4u3o5lw .card_item:hover .card_wrapper:before {
  height: 100%;
}
.cid-v0s4u3o5lw .card_wrapper {
  position: relative;
  padding-left: 50px;
  border-left: 1px solid #010a44;
}
.cid-v0s4u3o5lw .card_wrapper:before {
  content: '';
  position: absolute;
  width: 1px;
  height: 0;
  top: 0;
  left: -1px;
  background: #987a5a;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-v0s4u3o5lw .card_wrapper:hover .item-title a {
  color: #987a5a !important;
}
.cid-v0s4u3o5lw .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-v0s4u3o5lw .mbr-section-btn .btn-secondary-outline:hover,
.cid-v0s4u3o5lw .mbr-section-btn .btn-secondary-outline .active,
.cid-v0s4u3o5lw .mbr-section-btn .btn-secondary-outline:focus {
  color: #29a436 !important;
}
@media (max-width: 991px) {
  .cid-v0s4u3o5lw .main_title {
    margin-bottom: 50px;
  }
  .cid-v0s4u3o5lw .card_item:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .cid-v0s4u3o5lw .card_wrapper {
    padding-left: 20px;
  }
  .cid-v0s4u3o5lw .card_item {
    margin-bottom: 30px;
  }
}
.cid-v0s4u3o5lw .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0s4u3o5lw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0s4u3o5lw .mbr-section-subtitle {
  color: #446a49;
}
.cid-v0s4u3o5lw .mbr-section-title {
  color: #618365;
}
.cid-v0s4u3o5lw .item-subtitle {
  color: #446a49;
}
.cid-v0setgXnxM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v0setgXnxM .mbr-section-subtitle,
.cid-v0setgXnxM .item-subtitle,
.cid-v0setgXnxM .item-title {
  margin-bottom: 12px;
  transition: all .2s;
}
@media (min-width: 992px) {
  .cid-v0setgXnxM .main_title {
    padding-right: 1rem;
  }
}
.cid-v0setgXnxM .card_item {
  margin-bottom: 60px;
}
@media (min-width: 991px) {
  .cid-v0setgXnxM .card_item:nth-child(2n+2) {
    margin-bottom: 0;
  }
  .cid-v0setgXnxM .card_item:nth-child(3n+3) {
    margin-bottom: 0;
  }
}
.cid-v0setgXnxM .card_item:hover .card_wrapper:before {
  height: 100%;
}
.cid-v0setgXnxM .card_wrapper {
  position: relative;
  padding-left: 50px;
  border-left: 1px solid #010a44;
}
.cid-v0setgXnxM .card_wrapper:before {
  content: '';
  position: absolute;
  width: 1px;
  height: 0;
  top: 0;
  left: -1px;
  background: #987a5a;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-v0setgXnxM .card_wrapper:hover .item-title a {
  color: #987a5a !important;
}
.cid-v0setgXnxM .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-v0setgXnxM .mbr-section-btn .btn-secondary-outline:hover,
.cid-v0setgXnxM .mbr-section-btn .btn-secondary-outline .active,
.cid-v0setgXnxM .mbr-section-btn .btn-secondary-outline:focus {
  color: #29a436 !important;
}
@media (max-width: 991px) {
  .cid-v0setgXnxM .main_title {
    margin-bottom: 50px;
  }
  .cid-v0setgXnxM .card_item:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .cid-v0setgXnxM .card_wrapper {
    padding-left: 20px;
  }
  .cid-v0setgXnxM .card_item {
    margin-bottom: 30px;
  }
}
.cid-v0setgXnxM .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0setgXnxM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0setgXnxM .mbr-section-subtitle {
  color: #446a49;
}
.cid-v0setgXnxM .mbr-section-title {
  color: #618365;
}
.cid-v0setgXnxM .item-subtitle {
  color: #446a49;
}
.cid-v0sduZiJhm {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v0sduZiJhm .mbr-section-subtitle,
.cid-v0sduZiJhm .item-subtitle,
.cid-v0sduZiJhm .item-title {
  margin-bottom: 12px;
  transition: all .2s;
}
@media (min-width: 992px) {
  .cid-v0sduZiJhm .main_title {
    padding-right: 1rem;
  }
}
.cid-v0sduZiJhm .card_item {
  margin-bottom: 60px;
}
@media (min-width: 991px) {
  .cid-v0sduZiJhm .card_item:nth-child(2n+2) {
    margin-bottom: 0;
  }
  .cid-v0sduZiJhm .card_item:nth-child(3n+3) {
    margin-bottom: 0;
  }
}
.cid-v0sduZiJhm .card_item:hover .card_wrapper:before {
  height: 100%;
}
.cid-v0sduZiJhm .card_wrapper {
  position: relative;
  padding-left: 50px;
  border-left: 1px solid #010a44;
}
.cid-v0sduZiJhm .card_wrapper:before {
  content: '';
  position: absolute;
  width: 1px;
  height: 0;
  top: 0;
  left: -1px;
  background: #987a5a;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-v0sduZiJhm .card_wrapper:hover .item-title a {
  color: #987a5a !important;
}
.cid-v0sduZiJhm .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-v0sduZiJhm .mbr-section-btn .btn-secondary-outline:hover,
.cid-v0sduZiJhm .mbr-section-btn .btn-secondary-outline .active,
.cid-v0sduZiJhm .mbr-section-btn .btn-secondary-outline:focus {
  color: #29a436 !important;
}
@media (max-width: 991px) {
  .cid-v0sduZiJhm .main_title {
    margin-bottom: 50px;
  }
  .cid-v0sduZiJhm .card_item:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .cid-v0sduZiJhm .card_wrapper {
    padding-left: 20px;
  }
  .cid-v0sduZiJhm .card_item {
    margin-bottom: 30px;
  }
}
.cid-v0sduZiJhm .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0sduZiJhm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0sduZiJhm .mbr-section-subtitle {
  color: #446a49;
}
.cid-v0sduZiJhm .mbr-section-title {
  color: #618365;
}
.cid-v0sduZiJhm .item-subtitle {
  color: #446a49;
}
.cid-v0s7FSl2y2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v0s7FSl2y2 .mbr-section-subtitle,
.cid-v0s7FSl2y2 .item-subtitle,
.cid-v0s7FSl2y2 .item-title {
  margin-bottom: 12px;
  transition: all .2s;
}
@media (min-width: 992px) {
  .cid-v0s7FSl2y2 .main_title {
    padding-right: 1rem;
  }
}
.cid-v0s7FSl2y2 .card_item {
  margin-bottom: 60px;
}
@media (min-width: 991px) {
  .cid-v0s7FSl2y2 .card_item:nth-child(2n+2) {
    margin-bottom: 0;
  }
  .cid-v0s7FSl2y2 .card_item:nth-child(3n+3) {
    margin-bottom: 0;
  }
}
.cid-v0s7FSl2y2 .card_item:hover .card_wrapper:before {
  height: 100%;
}
.cid-v0s7FSl2y2 .card_wrapper {
  position: relative;
  padding-left: 50px;
  border-left: 1px solid #010a44;
}
.cid-v0s7FSl2y2 .card_wrapper:before {
  content: '';
  position: absolute;
  width: 1px;
  height: 0;
  top: 0;
  left: -1px;
  background: #987a5a;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-v0s7FSl2y2 .card_wrapper:hover .item-title a {
  color: #987a5a !important;
}
.cid-v0s7FSl2y2 .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-v0s7FSl2y2 .mbr-section-btn .btn-secondary-outline:hover,
.cid-v0s7FSl2y2 .mbr-section-btn .btn-secondary-outline .active,
.cid-v0s7FSl2y2 .mbr-section-btn .btn-secondary-outline:focus {
  color: #29a436 !important;
}
@media (max-width: 991px) {
  .cid-v0s7FSl2y2 .main_title {
    margin-bottom: 50px;
  }
  .cid-v0s7FSl2y2 .card_item:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .cid-v0s7FSl2y2 .card_wrapper {
    padding-left: 20px;
  }
  .cid-v0s7FSl2y2 .card_item {
    margin-bottom: 30px;
  }
}
.cid-v0s7FSl2y2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0s7FSl2y2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0s7FSl2y2 .mbr-section-subtitle {
  color: #446a49;
}
.cid-v0s7FSl2y2 .mbr-section-title {
  color: #618365;
}
.cid-v0s7FSl2y2 .item-subtitle {
  color: #446a49;
}
.cid-v0sbgiidUZ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v0sbgiidUZ .mbr-section-subtitle,
.cid-v0sbgiidUZ .item-subtitle,
.cid-v0sbgiidUZ .item-title {
  margin-bottom: 12px;
  transition: all .2s;
}
@media (min-width: 992px) {
  .cid-v0sbgiidUZ .main_title {
    padding-right: 1rem;
  }
}
.cid-v0sbgiidUZ .card_item {
  margin-bottom: 60px;
}
@media (min-width: 991px) {
  .cid-v0sbgiidUZ .card_item:nth-child(2n+2) {
    margin-bottom: 0;
  }
  .cid-v0sbgiidUZ .card_item:nth-child(3n+3) {
    margin-bottom: 0;
  }
}
.cid-v0sbgiidUZ .card_item:hover .card_wrapper:before {
  height: 100%;
}
.cid-v0sbgiidUZ .card_wrapper {
  position: relative;
  padding-left: 50px;
  border-left: 1px solid #010a44;
}
.cid-v0sbgiidUZ .card_wrapper:before {
  content: '';
  position: absolute;
  width: 1px;
  height: 0;
  top: 0;
  left: -1px;
  background: #987a5a;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-v0sbgiidUZ .card_wrapper:hover .item-title a {
  color: #987a5a !important;
}
.cid-v0sbgiidUZ .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-v0sbgiidUZ .mbr-section-btn .btn-secondary-outline:hover,
.cid-v0sbgiidUZ .mbr-section-btn .btn-secondary-outline .active,
.cid-v0sbgiidUZ .mbr-section-btn .btn-secondary-outline:focus {
  color: #29a436 !important;
}
@media (max-width: 991px) {
  .cid-v0sbgiidUZ .main_title {
    margin-bottom: 50px;
  }
  .cid-v0sbgiidUZ .card_item:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .cid-v0sbgiidUZ .card_wrapper {
    padding-left: 20px;
  }
  .cid-v0sbgiidUZ .card_item {
    margin-bottom: 30px;
  }
}
.cid-v0sbgiidUZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0sbgiidUZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0sbgiidUZ .mbr-section-subtitle {
  color: #446a49;
}
.cid-v0sbgiidUZ .mbr-section-title {
  color: #618365;
}
.cid-v0sbgiidUZ .item-subtitle {
  color: #446a49;
}
.cid-v0s5ONdhX6 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v0s5ONdhX6 .mbr-section-subtitle,
.cid-v0s5ONdhX6 .item-subtitle,
.cid-v0s5ONdhX6 .item-title {
  margin-bottom: 12px;
  transition: all .2s;
}
@media (min-width: 992px) {
  .cid-v0s5ONdhX6 .main_title {
    padding-right: 1rem;
  }
}
.cid-v0s5ONdhX6 .card_item {
  margin-bottom: 60px;
}
@media (min-width: 991px) {
  .cid-v0s5ONdhX6 .card_item:nth-child(2n+2) {
    margin-bottom: 0;
  }
  .cid-v0s5ONdhX6 .card_item:nth-child(3n+3) {
    margin-bottom: 0;
  }
}
.cid-v0s5ONdhX6 .card_item:hover .card_wrapper:before {
  height: 100%;
}
.cid-v0s5ONdhX6 .card_wrapper {
  position: relative;
  padding-left: 50px;
  border-left: 1px solid #010a44;
}
.cid-v0s5ONdhX6 .card_wrapper:before {
  content: '';
  position: absolute;
  width: 1px;
  height: 0;
  top: 0;
  left: -1px;
  background: #987a5a;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-v0s5ONdhX6 .card_wrapper:hover .item-title a {
  color: #987a5a !important;
}
.cid-v0s5ONdhX6 .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-v0s5ONdhX6 .mbr-section-btn .btn-secondary-outline:hover,
.cid-v0s5ONdhX6 .mbr-section-btn .btn-secondary-outline .active,
.cid-v0s5ONdhX6 .mbr-section-btn .btn-secondary-outline:focus {
  color: #29a436 !important;
}
@media (max-width: 991px) {
  .cid-v0s5ONdhX6 .main_title {
    margin-bottom: 50px;
  }
  .cid-v0s5ONdhX6 .card_item:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .cid-v0s5ONdhX6 .card_wrapper {
    padding-left: 20px;
  }
  .cid-v0s5ONdhX6 .card_item {
    margin-bottom: 30px;
  }
}
.cid-v0s5ONdhX6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0s5ONdhX6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0s5ONdhX6 .mbr-section-subtitle {
  color: #446a49;
}
.cid-v0s5ONdhX6 .mbr-section-title {
  color: #618365;
}
.cid-v0s5ONdhX6 .item-subtitle {
  color: #446a49;
}
.cid-v0s1RaYyZR {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v0s1RaYyZR .mbr-section-subtitle,
.cid-v0s1RaYyZR .item-subtitle,
.cid-v0s1RaYyZR .item-title {
  margin-bottom: 12px;
  transition: all .2s;
}
@media (min-width: 992px) {
  .cid-v0s1RaYyZR .main_title {
    padding-right: 1rem;
  }
}
.cid-v0s1RaYyZR .card_item {
  margin-bottom: 60px;
}
@media (min-width: 991px) {
  .cid-v0s1RaYyZR .card_item:nth-child(2n+2) {
    margin-bottom: 0;
  }
  .cid-v0s1RaYyZR .card_item:nth-child(3n+3) {
    margin-bottom: 0;
  }
}
.cid-v0s1RaYyZR .card_item:hover .card_wrapper:before {
  height: 100%;
}
.cid-v0s1RaYyZR .card_wrapper {
  position: relative;
  padding-left: 50px;
  border-left: 1px solid #010a44;
}
.cid-v0s1RaYyZR .card_wrapper:before {
  content: '';
  position: absolute;
  width: 1px;
  height: 0;
  top: 0;
  left: -1px;
  background: #987a5a;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-v0s1RaYyZR .card_wrapper:hover .item-title a {
  color: #987a5a !important;
}
.cid-v0s1RaYyZR .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-v0s1RaYyZR .mbr-section-btn .btn-secondary-outline:hover,
.cid-v0s1RaYyZR .mbr-section-btn .btn-secondary-outline .active,
.cid-v0s1RaYyZR .mbr-section-btn .btn-secondary-outline:focus {
  color: #29a436 !important;
}
@media (max-width: 991px) {
  .cid-v0s1RaYyZR .main_title {
    margin-bottom: 50px;
  }
  .cid-v0s1RaYyZR .card_item:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .cid-v0s1RaYyZR .card_wrapper {
    padding-left: 20px;
  }
  .cid-v0s1RaYyZR .card_item {
    margin-bottom: 30px;
  }
}
.cid-v0s1RaYyZR .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0s1RaYyZR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0s1RaYyZR .mbr-section-subtitle {
  color: #446a49;
}
.cid-v0s1RaYyZR .mbr-section-title {
  color: #618365;
}
.cid-v0s1RaYyZR .item-subtitle {
  color: #446a49;
}
.cid-v0s3xJmlZ2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v0s3xJmlZ2 .mbr-section-subtitle,
.cid-v0s3xJmlZ2 .item-subtitle,
.cid-v0s3xJmlZ2 .item-title {
  margin-bottom: 12px;
  transition: all .2s;
}
@media (min-width: 992px) {
  .cid-v0s3xJmlZ2 .main_title {
    padding-right: 1rem;
  }
}
.cid-v0s3xJmlZ2 .card_item {
  margin-bottom: 60px;
}
@media (min-width: 991px) {
  .cid-v0s3xJmlZ2 .card_item:nth-child(2n+2) {
    margin-bottom: 0;
  }
  .cid-v0s3xJmlZ2 .card_item:nth-child(3n+3) {
    margin-bottom: 0;
  }
}
.cid-v0s3xJmlZ2 .card_item:hover .card_wrapper:before {
  height: 100%;
}
.cid-v0s3xJmlZ2 .card_wrapper {
  position: relative;
  padding-left: 50px;
  border-left: 1px solid #010a44;
}
.cid-v0s3xJmlZ2 .card_wrapper:before {
  content: '';
  position: absolute;
  width: 1px;
  height: 0;
  top: 0;
  left: -1px;
  background: #987a5a;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-v0s3xJmlZ2 .card_wrapper:hover .item-title a {
  color: #987a5a !important;
}
.cid-v0s3xJmlZ2 .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-v0s3xJmlZ2 .mbr-section-btn .btn-secondary-outline:hover,
.cid-v0s3xJmlZ2 .mbr-section-btn .btn-secondary-outline .active,
.cid-v0s3xJmlZ2 .mbr-section-btn .btn-secondary-outline:focus {
  color: #29a436 !important;
}
@media (max-width: 991px) {
  .cid-v0s3xJmlZ2 .main_title {
    margin-bottom: 50px;
  }
  .cid-v0s3xJmlZ2 .card_item:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .cid-v0s3xJmlZ2 .card_wrapper {
    padding-left: 20px;
  }
  .cid-v0s3xJmlZ2 .card_item {
    margin-bottom: 30px;
  }
}
.cid-v0s3xJmlZ2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0s3xJmlZ2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0s3xJmlZ2 .mbr-section-subtitle {
  color: #446a49;
}
.cid-v0s3xJmlZ2 .mbr-section-title {
  color: #618365;
}
.cid-v0s3xJmlZ2 .item-subtitle {
  color: #446a49;
}
.cid-v15FXCscQK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v15FXCscQK .mbr-section-subtitle,
.cid-v15FXCscQK .item-subtitle,
.cid-v15FXCscQK .item-title {
  margin-bottom: 12px;
  transition: all .2s;
}
@media (min-width: 992px) {
  .cid-v15FXCscQK .main_title {
    padding-right: 1rem;
  }
}
.cid-v15FXCscQK .card_item {
  margin-bottom: 60px;
}
@media (min-width: 991px) {
  .cid-v15FXCscQK .card_item:nth-child(2n+2) {
    margin-bottom: 0;
  }
  .cid-v15FXCscQK .card_item:nth-child(3n+3) {
    margin-bottom: 0;
  }
}
.cid-v15FXCscQK .card_item:hover .card_wrapper:before {
  height: 100%;
}
.cid-v15FXCscQK .card_wrapper {
  position: relative;
  padding-left: 50px;
  border-left: 1px solid #010a44;
}
.cid-v15FXCscQK .card_wrapper:before {
  content: '';
  position: absolute;
  width: 1px;
  height: 0;
  top: 0;
  left: -1px;
  background: #987a5a;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-v15FXCscQK .card_wrapper:hover .item-title a {
  color: #987a5a !important;
}
.cid-v15FXCscQK .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-v15FXCscQK .mbr-section-btn .btn-secondary-outline:hover,
.cid-v15FXCscQK .mbr-section-btn .btn-secondary-outline .active,
.cid-v15FXCscQK .mbr-section-btn .btn-secondary-outline:focus {
  color: #29a436 !important;
}
@media (max-width: 991px) {
  .cid-v15FXCscQK .main_title {
    margin-bottom: 50px;
  }
  .cid-v15FXCscQK .card_item:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .cid-v15FXCscQK .card_wrapper {
    padding-left: 20px;
  }
  .cid-v15FXCscQK .card_item {
    margin-bottom: 30px;
  }
}
.cid-v15FXCscQK .mbr-fallback-image.disabled {
  display: none;
}
.cid-v15FXCscQK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v15FXCscQK .mbr-section-subtitle {
  color: #446a49;
}
.cid-v15FXCscQK .mbr-section-title {
  color: #618365;
}
.cid-v15FXCscQK .item-subtitle {
  color: #446a49;
}
.cid-v0s6jiN4pi {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v0s6jiN4pi .mbr-section-subtitle,
.cid-v0s6jiN4pi .item-subtitle,
.cid-v0s6jiN4pi .item-title {
  margin-bottom: 12px;
  transition: all .2s;
}
@media (min-width: 992px) {
  .cid-v0s6jiN4pi .main_title {
    padding-right: 1rem;
  }
}
.cid-v0s6jiN4pi .card_item {
  margin-bottom: 60px;
}
@media (min-width: 991px) {
  .cid-v0s6jiN4pi .card_item:nth-child(2n+2) {
    margin-bottom: 0;
  }
  .cid-v0s6jiN4pi .card_item:nth-child(3n+3) {
    margin-bottom: 0;
  }
}
.cid-v0s6jiN4pi .card_item:hover .card_wrapper:before {
  height: 100%;
}
.cid-v0s6jiN4pi .card_wrapper {
  position: relative;
  padding-left: 50px;
  border-left: 1px solid #010a44;
}
.cid-v0s6jiN4pi .card_wrapper:before {
  content: '';
  position: absolute;
  width: 1px;
  height: 0;
  top: 0;
  left: -1px;
  background: #987a5a;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-v0s6jiN4pi .card_wrapper:hover .item-title a {
  color: #987a5a !important;
}
.cid-v0s6jiN4pi .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-v0s6jiN4pi .mbr-section-btn .btn-secondary-outline:hover,
.cid-v0s6jiN4pi .mbr-section-btn .btn-secondary-outline .active,
.cid-v0s6jiN4pi .mbr-section-btn .btn-secondary-outline:focus {
  color: #29a436 !important;
}
@media (max-width: 991px) {
  .cid-v0s6jiN4pi .main_title {
    margin-bottom: 50px;
  }
  .cid-v0s6jiN4pi .card_item:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .cid-v0s6jiN4pi .card_wrapper {
    padding-left: 20px;
  }
  .cid-v0s6jiN4pi .card_item {
    margin-bottom: 30px;
  }
}
.cid-v0s6jiN4pi .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0s6jiN4pi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0s6jiN4pi .mbr-section-subtitle {
  color: #446a49;
}
.cid-v0s6jiN4pi .mbr-section-title {
  color: #618365;
}
.cid-v0s6jiN4pi .item-subtitle {
  color: #446a49;
}
.cid-v1RHMFVbhx {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f6efe8;
}
.cid-v1RHMFVbhx .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1RHMFVbhx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1RHMFVbhx .content-wrapper .mbr-label {
  margin-bottom: 0;
}
.cid-v1RHMFVbhx .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-v1RHMFVbhx .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v1RHMFVbhx .content-wrapper .mbr-section-btn {
  margin-top: 24px;
}
.cid-v1RHMFVbhx .mbr-label {
  color: #111111;
  text-align: center;
}
.cid-v1RHMFVbhx .mbr-section-title {
  color: #ff6d99;
}
.cid-v1RHMFVbhx .mbr-text,
.cid-v1RHMFVbhx .text-wrapper {
  color: #111111;
  text-align: center;
}
.cid-v1RHMFVbhx .mbr-section-title,
.cid-v1RHMFVbhx .mbr-section-btn {
  text-align: center;
  color: #446a49;
}
.cid-v0rXBxz9vc {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/fiore-di-loto-1200x800.jpg");
}
.cid-v0rXBxz9vc .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0rXBxz9vc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0rXBxz9vc .mbr-section-title {
  width: 100%;
  color: #6c6c6c;
  margin-bottom: 0;
}
.cid-v0rXBxz9vc .mbr-section-title.display-4 {
  font-size: 40px;
}
@media (max-width: 767px) {
  .cid-v0rXBxz9vc .mbr-section-title.display-4 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 575px) {
  .cid-v0rXBxz9vc .mbr-section-title.display-4 {
    font-size: 26px;
  }
}
.cid-v0rXBxz9vc .mbr-text {
  width: 100%;
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-v0rXBxz9vc .mbr-text {
    margin-top: 16px;
  }
}
.cid-v0rXBxz9vc .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-v0rXBxz9vc .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-v0rXByjksr {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #fffdfb;
}
.cid-v0rXByjksr .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0rXByjksr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0rXByjksr .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-v0rXByjksr .container-fluid {
    padding: 0 20px;
  }
}
.cid-v0rXByjksr .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-v0rXByjksr .container {
    padding: 0 20px;
  }
}
.cid-v0rXByjksr .list-wrapper .list,
.cid-v0rXByjksr .list-wrapper_2 .list_2 {
  display: inline-flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v0rXByjksr .list-wrapper .list .item-wrap,
.cid-v0rXByjksr .list-wrapper_2 .list_2 .item-wrap {
  margin-right: 24px;
  transition: all 0.3s ease-out;
}
.cid-v0rXByjksr .list-wrapper .list .item-wrap:hover,
.cid-v0rXByjksr .list-wrapper_2 .list_2 .item-wrap:hover {
  opacity: .7;
}
@media (max-width: 992px) {
  .cid-v0rXByjksr .list-wrapper .list .item-wrap,
  .cid-v0rXByjksr .list-wrapper_2 .list_2 .item-wrap {
    margin-bottom: 32px;
  }
}
.cid-v0rXByjksr .logo-wrap img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: inline-flex;
  margin-bottom: 8px;
}
.cid-v0rXByjksr .mbr-section-title {
  margin-bottom: 0;
  color: #1d1d1d;
}
@media (max-width: 992px) {
  .cid-v0rXByjksr .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-v0rXByjksr .text-wrapper {
  margin: 40px 0 22px;
}
.cid-v0rXByjksr .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v0rXByjksr .copy-wrapper .copyright {
  margin-bottom: 0;
}
.cid-v0rXByjksr .mbr-section-title,
.cid-v0rXByjksr .logo-wrap {
  text-align: center;
  color: #446a49;
}
.cid-v0rXByjksr .list {
  color: #1d1d1d;
}
.cid-v0rXByjksr .list_2 {
  color: #989898;
}
.cid-v0rXByjksr .mbr-text {
  color: #989898;
  text-align: center;
}
.cid-v0rXByjksr .copyright {
  color: #353535;
  text-align: center;
}
.cid-v0rXByjksr .list-wrapper_2 {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-v0rXByjksr .list-wrapper,
  .cid-v0rXByjksr .list-wrapper_2 {
    text-align: center;
  }
}
.cid-v0rXByjksr .list_2,
.cid-v0rXByjksr .list-wrapper_2 {
  text-align: justify;
}
.cid-v0rXL9ZVqs {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0rXL9ZVqs .menu-text {
  padding: 0 2rem;
  color: #29a436;
}
@media (max-width: 992px) {
  .cid-v0rXL9ZVqs .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0rXL9ZVqs .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0rXL9ZVqs .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0rXL9ZVqs .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0rXL9ZVqs .container {
    padding: 0 1rem;
  }
}
.cid-v0rXL9ZVqs .menu-tite {
  background: #29a436;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffc800;
}
.cid-v0rXL9ZVqs .nav-link {
  position: relative;
}
.cid-v0rXL9ZVqs .nav-link:hover {
  color: #d0c4b7 !important;
}
.cid-v0rXL9ZVqs nav.navbar {
  position: fixed;
}
.cid-v0rXL9ZVqs .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-v0rXL9ZVqs .navbar.opened {
  transition: all 0.3s;
}
.cid-v0rXL9ZVqs .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0rXL9ZVqs .navbar .navbar-logo img {
  width: auto;
}
.cid-v0rXL9ZVqs .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0rXL9ZVqs .navbar.collapsed {
  justify-content: center;
}
.cid-v0rXL9ZVqs .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0rXL9ZVqs .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0rXL9ZVqs .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.1rem);
  }
}
.cid-v0rXL9ZVqs .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0rXL9ZVqs .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0rXL9ZVqs .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-v0rXL9ZVqs .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0rXL9ZVqs .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0rXL9ZVqs .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0rXL9ZVqs .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0rXL9ZVqs .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0rXL9ZVqs .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0rXL9ZVqs .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0rXL9ZVqs .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-v0rXL9ZVqs .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0rXL9ZVqs .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0rXL9ZVqs .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0rXL9ZVqs .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0rXL9ZVqs .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0rXL9ZVqs .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0rXL9ZVqs .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0rXL9ZVqs .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0rXL9ZVqs .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0rXL9ZVqs .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-v0rXL9ZVqs .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0rXL9ZVqs .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0rXL9ZVqs .dropdown-item:hover,
.cid-v0rXL9ZVqs .dropdown-item:focus {
  background: #29a436 !important;
  color: white !important;
}
.cid-v0rXL9ZVqs .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0rXL9ZVqs .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0rXL9ZVqs .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0rXL9ZVqs .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0rXL9ZVqs .dropdown-menu,
.cid-v0rXL9ZVqs .navbar.opened {
  background: #ffffff !important;
}
.cid-v0rXL9ZVqs .nav-item:focus,
.cid-v0rXL9ZVqs .nav-link:focus {
  outline: none;
}
.cid-v0rXL9ZVqs .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0rXL9ZVqs .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0rXL9ZVqs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0rXL9ZVqs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0rXL9ZVqs .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0rXL9ZVqs .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0rXL9ZVqs .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0rXL9ZVqs .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0rXL9ZVqs .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0rXL9ZVqs .dropdown-item.active,
.cid-v0rXL9ZVqs .dropdown-item:active {
  background-color: transparent;
}
.cid-v0rXL9ZVqs .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0rXL9ZVqs .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0rXL9ZVqs .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0rXL9ZVqs .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v0rXL9ZVqs .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0rXL9ZVqs .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0rXL9ZVqs ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0rXL9ZVqs .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0rXL9ZVqs button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0rXL9ZVqs button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0rXL9ZVqs button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0rXL9ZVqs button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0rXL9ZVqs button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0rXL9ZVqs button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0rXL9ZVqs nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0rXL9ZVqs nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0rXL9ZVqs nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0rXL9ZVqs nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0rXL9ZVqs .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0rXL9ZVqs a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0rXL9ZVqs .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-v0rXL9ZVqs .navbar {
    height: 70px;
  }
  .cid-v0rXL9ZVqs .navbar.opened {
    height: auto;
  }
  .cid-v0rXL9ZVqs .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v0W4oq1OiL {
  padding-top: 8rem;
  padding-bottom: 2rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-v0W4oq1OiL .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0W4oq1OiL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0W4oq1OiL .row {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v0W4oq1OiL .row {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-v0W4oq1OiL .col-text {
    order: 2;
  }
}
.cid-v0W4oq1OiL .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-v0W4oq1OiL .text-wrap {
    margin-top: 30px;
  }
}
.cid-v0W4oq1OiL .mbr-section-title {
  color: #446a49;
}
.cid-v0W4oq1OiL .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v0W4oq1OiL .mbr-text {
    margin-top: 12px;
  }
}
.cid-v0W4oq1OiL .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v0W4oq1OiL .mbr-section-btn {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-v0W4oq1OiL .col-img {
    order: 1;
  }
}
.cid-v0W4oq1OiL .img-wrap {
  position: relative;
  width: 100%;
}
.cid-v0W4oq1OiL .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 65px 65px 65px 0;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-v0W4oq1OiL .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
  }
}
@media (max-width: 991px) {
  .cid-v0W4oq1OiL .img-wrap .img-box {
    border-radius: 65px 65px 65px 0;
  }
}
@media (max-width: 767px) {
  .cid-v0W4oq1OiL .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
  }
}
@media (max-width: 575px) {
  .cid-v0W4oq1OiL .img-wrap .img-box {
    border-radius: 45px 45px 45px 0;
  }
}
.cid-v0W4oq1OiL .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-v0W4oq1OiL .mbr-text,
.cid-v0W4oq1OiL .mbr-section-btn {
  text-align: justify;
  color: #829d85;
}
.cid-v0sulzXX9B {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #f6efe8;
  overflow: hidden;
}
.cid-v0sulzXX9B .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0sulzXX9B .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0sulzXX9B .row {
  flex-wrap: nowrap;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-v0sulzXX9B .row {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-v0sulzXX9B .col-text {
    order: 2;
  }
}
.cid-v0sulzXX9B .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-v0sulzXX9B .text-wrap {
    margin-top: 30px;
  }
}
.cid-v0sulzXX9B .mbr-section-title {
  color: #446a49;
}
.cid-v0sulzXX9B .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v0sulzXX9B .mbr-text {
    margin-top: 12px;
  }
}
.cid-v0sulzXX9B .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v0sulzXX9B .mbr-section-btn {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-v0sulzXX9B .col-img {
    order: 1;
  }
}
.cid-v0sulzXX9B .img-wrap {
  position: relative;
  width: 100%;
}
.cid-v0sulzXX9B .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 65px 65px 65px 0;
  overflow: hidden;
  border-radius: 65px 65px 0 65px;
}
@media (max-width: 1199px) {
  .cid-v0sulzXX9B .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
    border-radius: 55px 55px 0 55px;
  }
}
@media (max-width: 991px) {
  .cid-v0sulzXX9B .img-wrap .img-box {
    border-radius: 65px 65px 65px 0;
    border-radius: 65px 65px 0 65px;
  }
}
@media (max-width: 767px) {
  .cid-v0sulzXX9B .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
    border-radius: 55px  55px 0 55px;
  }
}
@media (max-width: 575px) {
  .cid-v0sulzXX9B .img-wrap .img-box {
    border-radius: 45px 45px 45px 0;
    border-radius: 45px 45px 0 45px;
  }
}
.cid-v0sulzXX9B .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-v0sulzXX9B .mbr-text,
.cid-v0sulzXX9B .mbr-section-btn {
  text-align: justify;
  color: #829d85;
}
.cid-v0W2SRs8fZ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fffcf5;
}
.cid-v0W2SRs8fZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0W2SRs8fZ .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-v0W2SRs8fZ .row {
    align-items: center !important;
  }
}
.cid-v0W2SRs8fZ .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-v0W2SRs8fZ .mbr-section-head {
    margin-bottom: 75px;
  }
}
@media (max-width: 767px) {
  .cid-v0W2SRs8fZ .mbr-section-head {
    margin-bottom: 65px;
  }
}
.cid-v0W2SRs8fZ .mbr-section-title {
  color: #829D85;
  margin-bottom: 0;
}
.cid-v0W2SRs8fZ .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
.cid-v0W2SRs8fZ .text-wrap {
  width: 100%;
  padding: 36px 0;
  border-top: 1px solid #829d85;
}
@media (max-width: 991px) {
  .cid-v0W2SRs8fZ .text-wrap {
    padding: 30px 0;
  }
}
.cid-v0W2SRs8fZ .mbr-title {
  color: #446a49;
}
.cid-v0W2SRs8fZ .mbr-text {
  margin-top: 12px;
  color: #353535;
}
.cid-v0W2SRs8fZ .list-box {
  width: 100%;
}
.cid-v0W2SRs8fZ .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #618365;
}
.cid-v0W2SRs8fZ .list-text {
  position: relative;
}
.cid-v0W2SRs8fZ .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-v0W2SRs8fZ .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-v0W2SRs8fZ .mbr-section-btn {
  margin-top: 20px;
}
.cid-v0W2SRs8fZ .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-v0W2SRs8fZ .img-box {
    border-radius: 0;
  }
}
@media (max-width: 767px) {
  .cid-v0W2SRs8fZ .img-box {
    border-radius: 0 15vw 0 0;
  }
}
.cid-v0W2SRs8fZ .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-v0W7eyc3px {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f6efe8;
}
.cid-v0W7eyc3px .text-wrapper {
  padding: 2rem 0;
}
.cid-v0W7eyc3px .text-wrapper:hover .mbr-section-title a {
  color: #987a5a !important;
}
.cid-v0W7eyc3px .image-wrapper,
.cid-v0W7eyc3px img {
  width: 100%;
  object-fit: cover;
}
.cid-v0W7eyc3px .mbr-section-subtitle {
  margin-bottom: 12px;
  color: #829d85;
}
.cid-v0W7eyc3px .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-v0W7eyc3px .mbr-section-btn .btn-secondary-outline:hover,
.cid-v0W7eyc3px .mbr-section-btn .btn-secondary-outline .active,
.cid-v0W7eyc3px .mbr-section-btn .btn-secondary-outline:focus {
  color: #29a436 !important;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-v0W7eyc3px .mbr-section-title {
    font-size: 2.2rem;
  }
}
@media (max-width: 991px) {
  .cid-v0W7eyc3px {
    flex-direction: column;
  }
  .cid-v0W7eyc3px .text-wrapper {
    width: 100%;
    padding: 50px 2rem 2rem;
    padding: 0;
    margin: 2rem 0;
  }
}
@media (max-width: 767px) {
  .cid-v0W7eyc3px .text-wrapper {
    padding: 30px 1rem;
    padding: 0;
  }
}
.cid-v0W7eyc3px .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0W7eyc3px .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0W7eyc3px .mbr-section-title {
  color: #446a49;
}
.cid-v0W7eyc3px .mbr-text,
.cid-v0W7eyc3px .mbr-section-btn {
  color: #829d85;
}
.cid-v1RI7v4hBQ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fffcf5;
}
.cid-v1RI7v4hBQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1RI7v4hBQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1RI7v4hBQ .content-wrapper .mbr-label {
  margin-bottom: 0;
}
.cid-v1RI7v4hBQ .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-v1RI7v4hBQ .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v1RI7v4hBQ .content-wrapper .mbr-section-btn {
  margin-top: 24px;
}
.cid-v1RI7v4hBQ .mbr-label {
  color: #111111;
  text-align: center;
}
.cid-v1RI7v4hBQ .mbr-section-title {
  color: #ff6d99;
}
.cid-v1RI7v4hBQ .mbr-text,
.cid-v1RI7v4hBQ .text-wrapper {
  color: #111111;
  text-align: center;
}
.cid-v1RI7v4hBQ .mbr-section-title,
.cid-v1RI7v4hBQ .mbr-section-btn {
  text-align: center;
  color: #446a49;
}
.cid-v0rXLfexNe {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/fiore-di-loto-1200x800.jpg");
}
.cid-v0rXLfexNe .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0rXLfexNe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0rXLfexNe .mbr-section-title {
  width: 100%;
  color: #6c6c6c;
  margin-bottom: 0;
}
.cid-v0rXLfexNe .mbr-section-title.display-4 {
  font-size: 40px;
}
@media (max-width: 767px) {
  .cid-v0rXLfexNe .mbr-section-title.display-4 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 575px) {
  .cid-v0rXLfexNe .mbr-section-title.display-4 {
    font-size: 26px;
  }
}
.cid-v0rXLfexNe .mbr-text {
  width: 100%;
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-v0rXLfexNe .mbr-text {
    margin-top: 16px;
  }
}
.cid-v0rXLfexNe .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-v0rXLfexNe .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-v0rXLfRX0u {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #fffdfb;
}
.cid-v0rXLfRX0u .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0rXLfRX0u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0rXLfRX0u .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-v0rXLfRX0u .container-fluid {
    padding: 0 20px;
  }
}
.cid-v0rXLfRX0u .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-v0rXLfRX0u .container {
    padding: 0 20px;
  }
}
.cid-v0rXLfRX0u .list-wrapper .list,
.cid-v0rXLfRX0u .list-wrapper_2 .list_2 {
  display: inline-flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v0rXLfRX0u .list-wrapper .list .item-wrap,
.cid-v0rXLfRX0u .list-wrapper_2 .list_2 .item-wrap {
  margin-right: 24px;
  transition: all 0.3s ease-out;
}
.cid-v0rXLfRX0u .list-wrapper .list .item-wrap:hover,
.cid-v0rXLfRX0u .list-wrapper_2 .list_2 .item-wrap:hover {
  opacity: .7;
}
@media (max-width: 992px) {
  .cid-v0rXLfRX0u .list-wrapper .list .item-wrap,
  .cid-v0rXLfRX0u .list-wrapper_2 .list_2 .item-wrap {
    margin-bottom: 32px;
  }
}
.cid-v0rXLfRX0u .logo-wrap img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: inline-flex;
  margin-bottom: 8px;
}
.cid-v0rXLfRX0u .mbr-section-title {
  margin-bottom: 0;
  color: #1d1d1d;
}
@media (max-width: 992px) {
  .cid-v0rXLfRX0u .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-v0rXLfRX0u .text-wrapper {
  margin: 40px 0 22px;
}
.cid-v0rXLfRX0u .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v0rXLfRX0u .copy-wrapper .copyright {
  margin-bottom: 0;
}
.cid-v0rXLfRX0u .mbr-section-title,
.cid-v0rXLfRX0u .logo-wrap {
  text-align: center;
  color: #446a49;
}
.cid-v0rXLfRX0u .list {
  color: #1d1d1d;
}
.cid-v0rXLfRX0u .list_2 {
  color: #989898;
}
.cid-v0rXLfRX0u .mbr-text {
  color: #989898;
  text-align: center;
}
.cid-v0rXLfRX0u .copyright {
  color: #353535;
  text-align: center;
}
.cid-v0rXLfRX0u .list-wrapper_2 {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-v0rXLfRX0u .list-wrapper,
  .cid-v0rXLfRX0u .list-wrapper_2 {
    text-align: center;
  }
}
.cid-v0rXLfRX0u .list_2,
.cid-v0rXLfRX0u .list-wrapper_2 {
  text-align: justify;
}
.cid-v0Wanymoew {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0Wanymoew .menu-text {
  padding: 0 2rem;
  color: #29a436;
}
@media (max-width: 992px) {
  .cid-v0Wanymoew .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0Wanymoew .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0Wanymoew .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0Wanymoew .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0Wanymoew .container {
    padding: 0 1rem;
  }
}
.cid-v0Wanymoew .menu-tite {
  background: #29a436;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffc800;
}
.cid-v0Wanymoew .nav-link {
  position: relative;
}
.cid-v0Wanymoew .nav-link:hover {
  color: #d0c4b7 !important;
}
.cid-v0Wanymoew nav.navbar {
  position: fixed;
}
.cid-v0Wanymoew .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-v0Wanymoew .navbar.opened {
  transition: all 0.3s;
}
.cid-v0Wanymoew .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0Wanymoew .navbar .navbar-logo img {
  width: auto;
}
.cid-v0Wanymoew .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0Wanymoew .navbar.collapsed {
  justify-content: center;
}
.cid-v0Wanymoew .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0Wanymoew .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0Wanymoew .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.1rem);
  }
}
.cid-v0Wanymoew .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0Wanymoew .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0Wanymoew .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-v0Wanymoew .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0Wanymoew .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0Wanymoew .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0Wanymoew .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0Wanymoew .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0Wanymoew .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0Wanymoew .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0Wanymoew .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-v0Wanymoew .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0Wanymoew .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0Wanymoew .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0Wanymoew .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0Wanymoew .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0Wanymoew .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0Wanymoew .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0Wanymoew .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0Wanymoew .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0Wanymoew .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-v0Wanymoew .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0Wanymoew .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0Wanymoew .dropdown-item:hover,
.cid-v0Wanymoew .dropdown-item:focus {
  background: #29a436 !important;
  color: white !important;
}
.cid-v0Wanymoew .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0Wanymoew .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0Wanymoew .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0Wanymoew .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0Wanymoew .dropdown-menu,
.cid-v0Wanymoew .navbar.opened {
  background: #ffffff !important;
}
.cid-v0Wanymoew .nav-item:focus,
.cid-v0Wanymoew .nav-link:focus {
  outline: none;
}
.cid-v0Wanymoew .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0Wanymoew .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0Wanymoew .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0Wanymoew .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0Wanymoew .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0Wanymoew .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0Wanymoew .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0Wanymoew .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0Wanymoew .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0Wanymoew .dropdown-item.active,
.cid-v0Wanymoew .dropdown-item:active {
  background-color: transparent;
}
.cid-v0Wanymoew .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0Wanymoew .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0Wanymoew .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0Wanymoew .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v0Wanymoew .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0Wanymoew .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0Wanymoew ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0Wanymoew .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0Wanymoew button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0Wanymoew button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0Wanymoew button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0Wanymoew button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0Wanymoew button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0Wanymoew button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0Wanymoew nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0Wanymoew nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0Wanymoew nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0Wanymoew nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0Wanymoew .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0Wanymoew a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0Wanymoew .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-v0Wanymoew .navbar {
    height: 70px;
  }
  .cid-v0Wanymoew .navbar.opened {
    height: auto;
  }
  .cid-v0Wanymoew .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v0Wanz3lFd {
  padding-top: 9rem;
  padding-bottom: 2rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-v0Wanz3lFd .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0Wanz3lFd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0Wanz3lFd .row {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v0Wanz3lFd .row {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-v0Wanz3lFd .col-text {
    order: 2;
  }
}
.cid-v0Wanz3lFd .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-v0Wanz3lFd .text-wrap {
    margin-top: 30px;
  }
}
.cid-v0Wanz3lFd .mbr-section-title {
  color: #446a49;
}
.cid-v0Wanz3lFd .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v0Wanz3lFd .mbr-text {
    margin-top: 12px;
  }
}
.cid-v0Wanz3lFd .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v0Wanz3lFd .mbr-section-btn {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-v0Wanz3lFd .col-img {
    order: 1;
  }
}
.cid-v0Wanz3lFd .img-wrap {
  position: relative;
  width: 100%;
}
.cid-v0Wanz3lFd .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 65px 65px 65px 0;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-v0Wanz3lFd .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
  }
}
@media (max-width: 991px) {
  .cid-v0Wanz3lFd .img-wrap .img-box {
    border-radius: 65px 65px 65px 0;
  }
}
@media (max-width: 767px) {
  .cid-v0Wanz3lFd .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
  }
}
@media (max-width: 575px) {
  .cid-v0Wanz3lFd .img-wrap .img-box {
    border-radius: 45px 45px 45px 0;
  }
}
.cid-v0Wanz3lFd .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-v0Wanz3lFd .mbr-text,
.cid-v0Wanz3lFd .mbr-section-btn {
  text-align: justify;
  color: #829d85;
}
.cid-v0WanzBXgS {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #f6efe8;
  overflow: hidden;
}
.cid-v0WanzBXgS .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0WanzBXgS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0WanzBXgS .row {
  flex-wrap: nowrap;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-v0WanzBXgS .row {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-v0WanzBXgS .col-text {
    order: 2;
  }
}
.cid-v0WanzBXgS .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-v0WanzBXgS .text-wrap {
    margin-top: 30px;
  }
}
.cid-v0WanzBXgS .mbr-section-title {
  color: #446a49;
}
.cid-v0WanzBXgS .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v0WanzBXgS .mbr-text {
    margin-top: 12px;
  }
}
.cid-v0WanzBXgS .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v0WanzBXgS .mbr-section-btn {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-v0WanzBXgS .col-img {
    order: 1;
  }
}
.cid-v0WanzBXgS .img-wrap {
  position: relative;
  width: 100%;
}
.cid-v0WanzBXgS .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 65px 65px 65px 0;
  overflow: hidden;
  border-radius: 65px 65px 0 65px;
}
@media (max-width: 1199px) {
  .cid-v0WanzBXgS .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
    border-radius: 55px 55px 0 55px;
  }
}
@media (max-width: 991px) {
  .cid-v0WanzBXgS .img-wrap .img-box {
    border-radius: 65px 65px 65px 0;
    border-radius: 65px 65px 0 65px;
  }
}
@media (max-width: 767px) {
  .cid-v0WanzBXgS .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
    border-radius: 55px  55px 0 55px;
  }
}
@media (max-width: 575px) {
  .cid-v0WanzBXgS .img-wrap .img-box {
    border-radius: 45px 45px 45px 0;
    border-radius: 45px 45px 0 45px;
  }
}
.cid-v0WanzBXgS .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-v0WanzBXgS .mbr-text,
.cid-v0WanzBXgS .mbr-section-btn {
  text-align: justify;
  color: #829d85;
}
.cid-v0ZTqGxWxT {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-v0ZTqGxWxT .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0ZTqGxWxT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0ZTqGxWxT .row {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v0ZTqGxWxT .row {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-v0ZTqGxWxT .col-text {
    order: 2;
  }
}
.cid-v0ZTqGxWxT .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-v0ZTqGxWxT .text-wrap {
    margin-top: 30px;
  }
}
.cid-v0ZTqGxWxT .mbr-section-title {
  color: #446a49;
}
.cid-v0ZTqGxWxT .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v0ZTqGxWxT .mbr-text {
    margin-top: 12px;
  }
}
.cid-v0ZTqGxWxT .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v0ZTqGxWxT .mbr-section-btn {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-v0ZTqGxWxT .col-img {
    order: 1;
  }
}
.cid-v0ZTqGxWxT .img-wrap {
  position: relative;
  width: 100%;
}
.cid-v0ZTqGxWxT .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 65px 65px 65px 0;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-v0ZTqGxWxT .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
  }
}
@media (max-width: 991px) {
  .cid-v0ZTqGxWxT .img-wrap .img-box {
    border-radius: 65px 65px 65px 0;
  }
}
@media (max-width: 767px) {
  .cid-v0ZTqGxWxT .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
  }
}
@media (max-width: 575px) {
  .cid-v0ZTqGxWxT .img-wrap .img-box {
    border-radius: 45px 45px 45px 0;
  }
}
.cid-v0ZTqGxWxT .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-v0ZTqGxWxT .mbr-text,
.cid-v0ZTqGxWxT .mbr-section-btn {
  text-align: justify;
  color: #829d85;
}
.cid-v0ZTfKWf6F {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f6efe8;
  overflow: hidden;
}
.cid-v0ZTfKWf6F .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0ZTfKWf6F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0ZTfKWf6F .row {
  flex-wrap: nowrap;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-v0ZTfKWf6F .row {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-v0ZTfKWf6F .col-text {
    order: 2;
  }
}
.cid-v0ZTfKWf6F .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-v0ZTfKWf6F .text-wrap {
    margin-top: 30px;
  }
}
.cid-v0ZTfKWf6F .mbr-section-title {
  color: #446a49;
}
.cid-v0ZTfKWf6F .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v0ZTfKWf6F .mbr-text {
    margin-top: 12px;
  }
}
.cid-v0ZTfKWf6F .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v0ZTfKWf6F .mbr-section-btn {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-v0ZTfKWf6F .col-img {
    order: 1;
  }
}
.cid-v0ZTfKWf6F .img-wrap {
  position: relative;
  width: 100%;
}
.cid-v0ZTfKWf6F .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 65px 65px 65px 0;
  overflow: hidden;
  border-radius: 65px 65px 0 65px;
}
@media (max-width: 1199px) {
  .cid-v0ZTfKWf6F .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
    border-radius: 55px 55px 0 55px;
  }
}
@media (max-width: 991px) {
  .cid-v0ZTfKWf6F .img-wrap .img-box {
    border-radius: 65px 65px 65px 0;
    border-radius: 65px 65px 0 65px;
  }
}
@media (max-width: 767px) {
  .cid-v0ZTfKWf6F .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
    border-radius: 55px  55px 0 55px;
  }
}
@media (max-width: 575px) {
  .cid-v0ZTfKWf6F .img-wrap .img-box {
    border-radius: 45px 45px 45px 0;
    border-radius: 45px 45px 0 45px;
  }
}
.cid-v0ZTfKWf6F .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-v0ZTfKWf6F .mbr-text,
.cid-v0ZTfKWf6F .mbr-section-btn {
  text-align: justify;
  color: #829d85;
}
.cid-v1RIh2cEdR {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fffcf5;
}
.cid-v1RIh2cEdR .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1RIh2cEdR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1RIh2cEdR .content-wrapper .mbr-label {
  margin-bottom: 0;
}
.cid-v1RIh2cEdR .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-v1RIh2cEdR .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v1RIh2cEdR .content-wrapper .mbr-section-btn {
  margin-top: 24px;
}
.cid-v1RIh2cEdR .mbr-label {
  color: #111111;
  text-align: center;
}
.cid-v1RIh2cEdR .mbr-section-title {
  color: #ff6d99;
}
.cid-v1RIh2cEdR .mbr-text,
.cid-v1RIh2cEdR .text-wrapper {
  color: #111111;
  text-align: center;
}
.cid-v1RIh2cEdR .mbr-section-title,
.cid-v1RIh2cEdR .mbr-section-btn {
  text-align: center;
  color: #446a49;
}
.cid-v0WanBBpNp {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/fiore-di-loto-1200x800.jpg");
}
.cid-v0WanBBpNp .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0WanBBpNp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0WanBBpNp .mbr-section-title {
  width: 100%;
  color: #6c6c6c;
  margin-bottom: 0;
}
.cid-v0WanBBpNp .mbr-section-title.display-4 {
  font-size: 40px;
}
@media (max-width: 767px) {
  .cid-v0WanBBpNp .mbr-section-title.display-4 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 575px) {
  .cid-v0WanBBpNp .mbr-section-title.display-4 {
    font-size: 26px;
  }
}
.cid-v0WanBBpNp .mbr-text {
  width: 100%;
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-v0WanBBpNp .mbr-text {
    margin-top: 16px;
  }
}
.cid-v0WanBBpNp .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-v0WanBBpNp .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-v0WanC52xO {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #fffdfb;
}
.cid-v0WanC52xO .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0WanC52xO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0WanC52xO .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-v0WanC52xO .container-fluid {
    padding: 0 20px;
  }
}
.cid-v0WanC52xO .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-v0WanC52xO .container {
    padding: 0 20px;
  }
}
.cid-v0WanC52xO .list-wrapper .list,
.cid-v0WanC52xO .list-wrapper_2 .list_2 {
  display: inline-flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v0WanC52xO .list-wrapper .list .item-wrap,
.cid-v0WanC52xO .list-wrapper_2 .list_2 .item-wrap {
  margin-right: 24px;
  transition: all 0.3s ease-out;
}
.cid-v0WanC52xO .list-wrapper .list .item-wrap:hover,
.cid-v0WanC52xO .list-wrapper_2 .list_2 .item-wrap:hover {
  opacity: .7;
}
@media (max-width: 992px) {
  .cid-v0WanC52xO .list-wrapper .list .item-wrap,
  .cid-v0WanC52xO .list-wrapper_2 .list_2 .item-wrap {
    margin-bottom: 32px;
  }
}
.cid-v0WanC52xO .logo-wrap img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: inline-flex;
  margin-bottom: 8px;
}
.cid-v0WanC52xO .mbr-section-title {
  margin-bottom: 0;
  color: #1d1d1d;
}
@media (max-width: 992px) {
  .cid-v0WanC52xO .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-v0WanC52xO .text-wrapper {
  margin: 40px 0 22px;
}
.cid-v0WanC52xO .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v0WanC52xO .copy-wrapper .copyright {
  margin-bottom: 0;
}
.cid-v0WanC52xO .mbr-section-title,
.cid-v0WanC52xO .logo-wrap {
  text-align: center;
  color: #446a49;
}
.cid-v0WanC52xO .list {
  color: #1d1d1d;
}
.cid-v0WanC52xO .list_2 {
  color: #989898;
}
.cid-v0WanC52xO .mbr-text {
  color: #989898;
  text-align: center;
}
.cid-v0WanC52xO .copyright {
  color: #353535;
  text-align: center;
}
.cid-v0WanC52xO .list-wrapper_2 {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-v0WanC52xO .list-wrapper,
  .cid-v0WanC52xO .list-wrapper_2 {
    text-align: center;
  }
}
.cid-v0WanC52xO .list_2,
.cid-v0WanC52xO .list-wrapper_2 {
  text-align: justify;
}
.cid-v0WatocqGs {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0WatocqGs .menu-text {
  padding: 0 2rem;
  color: #29a436;
}
@media (max-width: 992px) {
  .cid-v0WatocqGs .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v0WatocqGs .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v0WatocqGs .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v0WatocqGs .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v0WatocqGs .container {
    padding: 0 1rem;
  }
}
.cid-v0WatocqGs .menu-tite {
  background: #29a436;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffc800;
}
.cid-v0WatocqGs .nav-link {
  position: relative;
}
.cid-v0WatocqGs .nav-link:hover {
  color: #d0c4b7 !important;
}
.cid-v0WatocqGs nav.navbar {
  position: fixed;
}
.cid-v0WatocqGs .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-v0WatocqGs .navbar.opened {
  transition: all 0.3s;
}
.cid-v0WatocqGs .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0WatocqGs .navbar .navbar-logo img {
  width: auto;
}
.cid-v0WatocqGs .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0WatocqGs .navbar.collapsed {
  justify-content: center;
}
.cid-v0WatocqGs .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0WatocqGs .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0WatocqGs .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.1rem);
  }
}
.cid-v0WatocqGs .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0WatocqGs .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0WatocqGs .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-v0WatocqGs .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0WatocqGs .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0WatocqGs .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0WatocqGs .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0WatocqGs .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0WatocqGs .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0WatocqGs .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0WatocqGs .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-v0WatocqGs .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0WatocqGs .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0WatocqGs .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0WatocqGs .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0WatocqGs .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0WatocqGs .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0WatocqGs .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0WatocqGs .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0WatocqGs .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0WatocqGs .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-v0WatocqGs .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0WatocqGs .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0WatocqGs .dropdown-item:hover,
.cid-v0WatocqGs .dropdown-item:focus {
  background: #29a436 !important;
  color: white !important;
}
.cid-v0WatocqGs .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0WatocqGs .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0WatocqGs .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v0WatocqGs .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0WatocqGs .dropdown-menu,
.cid-v0WatocqGs .navbar.opened {
  background: #ffffff !important;
}
.cid-v0WatocqGs .nav-item:focus,
.cid-v0WatocqGs .nav-link:focus {
  outline: none;
}
.cid-v0WatocqGs .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0WatocqGs .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0WatocqGs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0WatocqGs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0WatocqGs .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0WatocqGs .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0WatocqGs .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0WatocqGs .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0WatocqGs .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0WatocqGs .dropdown-item.active,
.cid-v0WatocqGs .dropdown-item:active {
  background-color: transparent;
}
.cid-v0WatocqGs .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0WatocqGs .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0WatocqGs .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0WatocqGs .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v0WatocqGs .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0WatocqGs .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0WatocqGs ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0WatocqGs .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0WatocqGs button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0WatocqGs button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0WatocqGs button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0WatocqGs button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0WatocqGs button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0WatocqGs button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0WatocqGs nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0WatocqGs nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0WatocqGs nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0WatocqGs nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0WatocqGs .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0WatocqGs a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0WatocqGs .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-v0WatocqGs .navbar {
    height: 70px;
  }
  .cid-v0WatocqGs .navbar.opened {
    height: auto;
  }
  .cid-v0WatocqGs .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v0WatpBUuQ {
  padding-top: 9rem;
  padding-bottom: 2rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-v0WatpBUuQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0WatpBUuQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0WatpBUuQ .row {
  flex-wrap: nowrap;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-v0WatpBUuQ .row {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-v0WatpBUuQ .col-text {
    order: 2;
  }
}
.cid-v0WatpBUuQ .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-v0WatpBUuQ .text-wrap {
    margin-top: 30px;
  }
}
.cid-v0WatpBUuQ .mbr-section-title {
  color: #446a49;
}
.cid-v0WatpBUuQ .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v0WatpBUuQ .mbr-text {
    margin-top: 12px;
  }
}
.cid-v0WatpBUuQ .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v0WatpBUuQ .mbr-section-btn {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-v0WatpBUuQ .col-img {
    order: 1;
  }
}
.cid-v0WatpBUuQ .img-wrap {
  position: relative;
  width: 100%;
}
.cid-v0WatpBUuQ .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 65px 65px 65px 0;
  overflow: hidden;
  border-radius: 65px 65px 0 65px;
}
@media (max-width: 1199px) {
  .cid-v0WatpBUuQ .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
    border-radius: 55px 55px 0 55px;
  }
}
@media (max-width: 991px) {
  .cid-v0WatpBUuQ .img-wrap .img-box {
    border-radius: 65px 65px 65px 0;
    border-radius: 65px 65px 0 65px;
  }
}
@media (max-width: 767px) {
  .cid-v0WatpBUuQ .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
    border-radius: 55px  55px 0 55px;
  }
}
@media (max-width: 575px) {
  .cid-v0WatpBUuQ .img-wrap .img-box {
    border-radius: 45px 45px 45px 0;
    border-radius: 45px 45px 0 45px;
  }
}
.cid-v0WatpBUuQ .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-v0WatpBUuQ .mbr-text,
.cid-v0WatpBUuQ .mbr-section-btn {
  text-align: center;
  color: #353535;
}
.cid-v0WatoWJIj {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f6efe8;
  overflow: hidden;
}
.cid-v0WatoWJIj .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0WatoWJIj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0WatoWJIj .row {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v0WatoWJIj .row {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-v0WatoWJIj .col-text {
    order: 2;
  }
}
.cid-v0WatoWJIj .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-v0WatoWJIj .text-wrap {
    margin-top: 30px;
  }
}
.cid-v0WatoWJIj .mbr-section-title {
  color: #446a49;
}
.cid-v0WatoWJIj .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v0WatoWJIj .mbr-text {
    margin-top: 12px;
  }
}
.cid-v0WatoWJIj .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v0WatoWJIj .mbr-section-btn {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-v0WatoWJIj .col-img {
    order: 1;
  }
}
.cid-v0WatoWJIj .img-wrap {
  position: relative;
  width: 100%;
}
.cid-v0WatoWJIj .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 65px 65px 65px 0;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-v0WatoWJIj .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
  }
}
@media (max-width: 991px) {
  .cid-v0WatoWJIj .img-wrap .img-box {
    border-radius: 65px 65px 65px 0;
  }
}
@media (max-width: 767px) {
  .cid-v0WatoWJIj .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
  }
}
@media (max-width: 575px) {
  .cid-v0WatoWJIj .img-wrap .img-box {
    border-radius: 45px 45px 45px 0;
  }
}
.cid-v0WatoWJIj .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-v0WatoWJIj .mbr-text,
.cid-v0WatoWJIj .mbr-section-btn {
  text-align: justify;
  color: #829d85;
}
.cid-v0WfdTYhea {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-v0WfdTYhea .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0WfdTYhea .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0WfdTYhea .row {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v0WfdTYhea .row {
    flex-wrap: wrap;
  }
}
.cid-v0WfdTYhea .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 80px 0;
}
.cid-v0WfdTYhea .text-wrap:before {
  content: "";
  position: absolute;
  right: -100px;
  top: 0;
  height: 100%;
  width: 100vw;
  border-radius: 0 65px 65px 0;
  background-color: #f6efe8;
  z-index: -1;
}
@media (max-width: 1199px) {
  .cid-v0WfdTYhea .text-wrap:before {
    border-radius: 0 40px 40px 0;
  }
}
@media (max-width: 991px) {
  .cid-v0WfdTYhea .text-wrap:before {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0;
  }
}
@media (max-width: 991px) {
  .cid-v0WfdTYhea .text-wrap {
    padding: 50px 0 90px;
  }
}
@media (max-width: 767px) {
  .cid-v0WfdTYhea .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-v0WfdTYhea .mbr-section-title {
  color: #446a49;
}
.cid-v0WfdTYhea .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v0WfdTYhea .mbr-text {
    margin-top: 12px;
  }
}
.cid-v0WfdTYhea .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v0WfdTYhea .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-v0WfdTYhea .col-img {
  width: 390px;
}
@media (max-width: 1199px) {
  .cid-v0WfdTYhea .col-img {
    width: 330px;
  }
}
@media (max-width: 991px) {
  .cid-v0WfdTYhea .col-img {
    width: 250px;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-v0WfdTYhea .col-img {
    margin-bottom: -50px;
  }
}
.cid-v0WfdTYhea .img-wrap {
  position: relative;
  width: 100%;
}
.cid-v0WfdTYhea .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 0 65px 65px 65px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-v0WfdTYhea .img-wrap .img-box {
    border-radius: 0 40px 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-v0WfdTYhea .img-wrap .img-box {
    transform: translateY(-50px);
    border-radius: 0 30px 30px 30px;
  }
}
.cid-v0WfdTYhea .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-v0WfdTYhea .mbr-text,
.cid-v0WfdTYhea .mbr-section-btn {
  color: #618365;
}
.cid-v0WgAlb5wf {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-v0WgAlb5wf .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0WgAlb5wf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0WgAlb5wf .row {
  flex-wrap: nowrap;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-v0WgAlb5wf .row {
    flex-wrap: wrap;
  }
}
.cid-v0WgAlb5wf .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 80px 0;
}
.cid-v0WgAlb5wf .text-wrap:before {
  content: "";
  position: absolute;
  right: -100px;
  top: 0;
  height: 100%;
  width: 100vw;
  border-radius: 0 65px 65px 0;
  background-color: #f6efe8;
  z-index: -1;
  border-radius: 65px 0 0 65px;
  right: auto;
  left: -100px;
}
@media (max-width: 1199px) {
  .cid-v0WgAlb5wf .text-wrap:before {
    border-radius: 0 40px 40px 0;
    border-radius: 40px 0 0 40px;
  }
}
@media (max-width: 991px) {
  .cid-v0WgAlb5wf .text-wrap:before {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0;
  }
}
@media (max-width: 991px) {
  .cid-v0WgAlb5wf .text-wrap {
    padding: 50px 0 90px;
  }
}
@media (max-width: 767px) {
  .cid-v0WgAlb5wf .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-v0WgAlb5wf .mbr-section-title {
  color: #446a49;
}
.cid-v0WgAlb5wf .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v0WgAlb5wf .mbr-text {
    margin-top: 12px;
  }
}
.cid-v0WgAlb5wf .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v0WgAlb5wf .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-v0WgAlb5wf .col-img {
  width: 390px;
}
@media (max-width: 1199px) {
  .cid-v0WgAlb5wf .col-img {
    width: 330px;
  }
}
@media (max-width: 991px) {
  .cid-v0WgAlb5wf .col-img {
    width: 250px;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-v0WgAlb5wf .col-img {
    margin-bottom: -50px;
  }
}
.cid-v0WgAlb5wf .img-wrap {
  position: relative;
  width: 100%;
}
.cid-v0WgAlb5wf .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 0 65px 65px 65px;
  overflow: hidden;
  border-radius: 65px 0 65px 65px;
}
@media (max-width: 1199px) {
  .cid-v0WgAlb5wf .img-wrap .img-box {
    border-radius: 0 40px 40px 40px;
    border-radius: 40px 0 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-v0WgAlb5wf .img-wrap .img-box {
    transform: translateY(-50px);
    border-radius: 0 30px 30px 30px;
    border-radius: 30px 0 30px 30px;
  }
}
.cid-v0WgAlb5wf .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-v0WgAlb5wf .mbr-text,
.cid-v0WgAlb5wf .mbr-section-btn {
  color: #618365;
}
.cid-v0WhGZVwWn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-v0WhGZVwWn .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0WhGZVwWn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0WhGZVwWn .row {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v0WhGZVwWn .row {
    flex-wrap: wrap;
  }
}
.cid-v0WhGZVwWn .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 80px 0;
}
.cid-v0WhGZVwWn .text-wrap:before {
  content: "";
  position: absolute;
  right: -100px;
  top: 0;
  height: 100%;
  width: 100vw;
  border-radius: 0 65px 65px 0;
  background-color: #f6efe8;
  z-index: -1;
}
@media (max-width: 1199px) {
  .cid-v0WhGZVwWn .text-wrap:before {
    border-radius: 0 40px 40px 0;
  }
}
@media (max-width: 991px) {
  .cid-v0WhGZVwWn .text-wrap:before {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0;
  }
}
@media (max-width: 991px) {
  .cid-v0WhGZVwWn .text-wrap {
    padding: 50px 0 90px;
  }
}
@media (max-width: 767px) {
  .cid-v0WhGZVwWn .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-v0WhGZVwWn .mbr-section-title {
  color: #446a49;
}
.cid-v0WhGZVwWn .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v0WhGZVwWn .mbr-text {
    margin-top: 12px;
  }
}
.cid-v0WhGZVwWn .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v0WhGZVwWn .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-v0WhGZVwWn .col-img {
  width: 390px;
}
@media (max-width: 1199px) {
  .cid-v0WhGZVwWn .col-img {
    width: 330px;
  }
}
@media (max-width: 991px) {
  .cid-v0WhGZVwWn .col-img {
    width: 250px;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-v0WhGZVwWn .col-img {
    margin-bottom: -50px;
  }
}
.cid-v0WhGZVwWn .img-wrap {
  position: relative;
  width: 100%;
}
.cid-v0WhGZVwWn .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 0 65px 65px 65px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-v0WhGZVwWn .img-wrap .img-box {
    border-radius: 0 40px 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-v0WhGZVwWn .img-wrap .img-box {
    transform: translateY(-50px);
    border-radius: 0 30px 30px 30px;
  }
}
.cid-v0WhGZVwWn .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-v0WhGZVwWn .mbr-text,
.cid-v0WhGZVwWn .mbr-section-btn {
  color: #618365;
}
.cid-v0WhMAsGhx {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-v0WhMAsGhx .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0WhMAsGhx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0WhMAsGhx .row {
  flex-wrap: nowrap;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-v0WhMAsGhx .row {
    flex-wrap: wrap;
  }
}
.cid-v0WhMAsGhx .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 80px 0;
}
.cid-v0WhMAsGhx .text-wrap:before {
  content: "";
  position: absolute;
  right: -100px;
  top: 0;
  height: 100%;
  width: 100vw;
  border-radius: 0 65px 65px 0;
  background-color: #f6efe8;
  z-index: -1;
  border-radius: 65px 0 0 65px;
  right: auto;
  left: -100px;
}
@media (max-width: 1199px) {
  .cid-v0WhMAsGhx .text-wrap:before {
    border-radius: 0 40px 40px 0;
    border-radius: 40px 0 0 40px;
  }
}
@media (max-width: 991px) {
  .cid-v0WhMAsGhx .text-wrap:before {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0;
  }
}
@media (max-width: 991px) {
  .cid-v0WhMAsGhx .text-wrap {
    padding: 50px 0 90px;
  }
}
@media (max-width: 767px) {
  .cid-v0WhMAsGhx .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-v0WhMAsGhx .mbr-section-title {
  color: #446a49;
}
.cid-v0WhMAsGhx .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v0WhMAsGhx .mbr-text {
    margin-top: 12px;
  }
}
.cid-v0WhMAsGhx .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v0WhMAsGhx .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-v0WhMAsGhx .col-img {
  width: 390px;
}
@media (max-width: 1199px) {
  .cid-v0WhMAsGhx .col-img {
    width: 330px;
  }
}
@media (max-width: 991px) {
  .cid-v0WhMAsGhx .col-img {
    width: 250px;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-v0WhMAsGhx .col-img {
    margin-bottom: -50px;
  }
}
.cid-v0WhMAsGhx .img-wrap {
  position: relative;
  width: 100%;
}
.cid-v0WhMAsGhx .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 0 65px 65px 65px;
  overflow: hidden;
  border-radius: 65px 0 65px 65px;
}
@media (max-width: 1199px) {
  .cid-v0WhMAsGhx .img-wrap .img-box {
    border-radius: 0 40px 40px 40px;
    border-radius: 40px 0 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-v0WhMAsGhx .img-wrap .img-box {
    transform: translateY(-50px);
    border-radius: 0 30px 30px 30px;
    border-radius: 30px 0 30px 30px;
  }
}
.cid-v0WhMAsGhx .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-v0WhMAsGhx .mbr-text,
.cid-v0WhMAsGhx .mbr-section-btn {
  color: #618365;
}
.cid-v0WhPELL7w {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-v0WhPELL7w .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0WhPELL7w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0WhPELL7w .row {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v0WhPELL7w .row {
    flex-wrap: wrap;
  }
}
.cid-v0WhPELL7w .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 80px 0;
}
.cid-v0WhPELL7w .text-wrap:before {
  content: "";
  position: absolute;
  right: -100px;
  top: 0;
  height: 100%;
  width: 100vw;
  border-radius: 0 65px 65px 0;
  background-color: #f6efe8;
  z-index: -1;
}
@media (max-width: 1199px) {
  .cid-v0WhPELL7w .text-wrap:before {
    border-radius: 0 40px 40px 0;
  }
}
@media (max-width: 991px) {
  .cid-v0WhPELL7w .text-wrap:before {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0;
  }
}
@media (max-width: 991px) {
  .cid-v0WhPELL7w .text-wrap {
    padding: 50px 0 90px;
  }
}
@media (max-width: 767px) {
  .cid-v0WhPELL7w .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-v0WhPELL7w .mbr-section-title {
  color: #446a49;
}
.cid-v0WhPELL7w .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v0WhPELL7w .mbr-text {
    margin-top: 12px;
  }
}
.cid-v0WhPELL7w .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v0WhPELL7w .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-v0WhPELL7w .col-img {
  width: 390px;
}
@media (max-width: 1199px) {
  .cid-v0WhPELL7w .col-img {
    width: 330px;
  }
}
@media (max-width: 991px) {
  .cid-v0WhPELL7w .col-img {
    width: 250px;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-v0WhPELL7w .col-img {
    margin-bottom: -50px;
  }
}
.cid-v0WhPELL7w .img-wrap {
  position: relative;
  width: 100%;
}
.cid-v0WhPELL7w .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 0 65px 65px 65px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-v0WhPELL7w .img-wrap .img-box {
    border-radius: 0 40px 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-v0WhPELL7w .img-wrap .img-box {
    transform: translateY(-50px);
    border-radius: 0 30px 30px 30px;
  }
}
.cid-v0WhPELL7w .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-v0WhPELL7w .mbr-text,
.cid-v0WhPELL7w .mbr-section-btn {
  color: #618365;
}
.cid-v0WigzX8z5 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-v0WigzX8z5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0WigzX8z5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0WigzX8z5 .row {
  flex-wrap: nowrap;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-v0WigzX8z5 .row {
    flex-wrap: wrap;
  }
}
.cid-v0WigzX8z5 .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 80px 0;
}
.cid-v0WigzX8z5 .text-wrap:before {
  content: "";
  position: absolute;
  right: -100px;
  top: 0;
  height: 100%;
  width: 100vw;
  border-radius: 0 65px 65px 0;
  background-color: #f6efe8;
  z-index: -1;
  border-radius: 65px 0 0 65px;
  right: auto;
  left: -100px;
}
@media (max-width: 1199px) {
  .cid-v0WigzX8z5 .text-wrap:before {
    border-radius: 0 40px 40px 0;
    border-radius: 40px 0 0 40px;
  }
}
@media (max-width: 991px) {
  .cid-v0WigzX8z5 .text-wrap:before {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0;
  }
}
@media (max-width: 991px) {
  .cid-v0WigzX8z5 .text-wrap {
    padding: 50px 0 90px;
  }
}
@media (max-width: 767px) {
  .cid-v0WigzX8z5 .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-v0WigzX8z5 .mbr-section-title {
  color: #446a49;
}
.cid-v0WigzX8z5 .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v0WigzX8z5 .mbr-text {
    margin-top: 12px;
  }
}
.cid-v0WigzX8z5 .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v0WigzX8z5 .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-v0WigzX8z5 .col-img {
  width: 390px;
}
@media (max-width: 1199px) {
  .cid-v0WigzX8z5 .col-img {
    width: 330px;
  }
}
@media (max-width: 991px) {
  .cid-v0WigzX8z5 .col-img {
    width: 250px;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-v0WigzX8z5 .col-img {
    margin-bottom: -50px;
  }
}
.cid-v0WigzX8z5 .img-wrap {
  position: relative;
  width: 100%;
}
.cid-v0WigzX8z5 .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 0 65px 65px 65px;
  overflow: hidden;
  border-radius: 65px 0 65px 65px;
}
@media (max-width: 1199px) {
  .cid-v0WigzX8z5 .img-wrap .img-box {
    border-radius: 0 40px 40px 40px;
    border-radius: 40px 0 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-v0WigzX8z5 .img-wrap .img-box {
    transform: translateY(-50px);
    border-radius: 0 30px 30px 30px;
    border-radius: 30px 0 30px 30px;
  }
}
.cid-v0WigzX8z5 .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-v0WigzX8z5 .mbr-text,
.cid-v0WigzX8z5 .mbr-section-btn {
  color: #618365;
}
.cid-v1RIpJfUJ7 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f6efe8;
}
.cid-v1RIpJfUJ7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1RIpJfUJ7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1RIpJfUJ7 .content-wrapper .mbr-label {
  margin-bottom: 0;
}
.cid-v1RIpJfUJ7 .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-v1RIpJfUJ7 .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v1RIpJfUJ7 .content-wrapper .mbr-section-btn {
  margin-top: 24px;
}
.cid-v1RIpJfUJ7 .mbr-label {
  color: #111111;
  text-align: center;
}
.cid-v1RIpJfUJ7 .mbr-section-title {
  color: #ff6d99;
}
.cid-v1RIpJfUJ7 .mbr-text,
.cid-v1RIpJfUJ7 .text-wrapper {
  color: #111111;
  text-align: center;
}
.cid-v1RIpJfUJ7 .mbr-section-title,
.cid-v1RIpJfUJ7 .mbr-section-btn {
  text-align: center;
  color: #446a49;
}
.cid-v0WatrLhK7 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/fiore-di-loto-1200x800.jpg");
}
.cid-v0WatrLhK7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0WatrLhK7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0WatrLhK7 .mbr-section-title {
  width: 100%;
  color: #6c6c6c;
  margin-bottom: 0;
}
.cid-v0WatrLhK7 .mbr-section-title.display-4 {
  font-size: 40px;
}
@media (max-width: 767px) {
  .cid-v0WatrLhK7 .mbr-section-title.display-4 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 575px) {
  .cid-v0WatrLhK7 .mbr-section-title.display-4 {
    font-size: 26px;
  }
}
.cid-v0WatrLhK7 .mbr-text {
  width: 100%;
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-v0WatrLhK7 .mbr-text {
    margin-top: 16px;
  }
}
.cid-v0WatrLhK7 .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-v0WatrLhK7 .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-v0WatsksuZ {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #fffdfb;
}
.cid-v0WatsksuZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0WatsksuZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0WatsksuZ .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-v0WatsksuZ .container-fluid {
    padding: 0 20px;
  }
}
.cid-v0WatsksuZ .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-v0WatsksuZ .container {
    padding: 0 20px;
  }
}
.cid-v0WatsksuZ .list-wrapper .list,
.cid-v0WatsksuZ .list-wrapper_2 .list_2 {
  display: inline-flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v0WatsksuZ .list-wrapper .list .item-wrap,
.cid-v0WatsksuZ .list-wrapper_2 .list_2 .item-wrap {
  margin-right: 24px;
  transition: all 0.3s ease-out;
}
.cid-v0WatsksuZ .list-wrapper .list .item-wrap:hover,
.cid-v0WatsksuZ .list-wrapper_2 .list_2 .item-wrap:hover {
  opacity: .7;
}
@media (max-width: 992px) {
  .cid-v0WatsksuZ .list-wrapper .list .item-wrap,
  .cid-v0WatsksuZ .list-wrapper_2 .list_2 .item-wrap {
    margin-bottom: 32px;
  }
}
.cid-v0WatsksuZ .logo-wrap img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: inline-flex;
  margin-bottom: 8px;
}
.cid-v0WatsksuZ .mbr-section-title {
  margin-bottom: 0;
  color: #1d1d1d;
}
@media (max-width: 992px) {
  .cid-v0WatsksuZ .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-v0WatsksuZ .text-wrapper {
  margin: 40px 0 22px;
}
.cid-v0WatsksuZ .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v0WatsksuZ .copy-wrapper .copyright {
  margin-bottom: 0;
}
.cid-v0WatsksuZ .mbr-section-title,
.cid-v0WatsksuZ .logo-wrap {
  text-align: center;
  color: #446a49;
}
.cid-v0WatsksuZ .list {
  color: #1d1d1d;
}
.cid-v0WatsksuZ .list_2 {
  color: #989898;
}
.cid-v0WatsksuZ .mbr-text {
  color: #989898;
  text-align: center;
}
.cid-v0WatsksuZ .copyright {
  color: #353535;
  text-align: center;
}
.cid-v0WatsksuZ .list-wrapper_2 {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-v0WatsksuZ .list-wrapper,
  .cid-v0WatsksuZ .list-wrapper_2 {
    text-align: center;
  }
}
.cid-v0WatsksuZ .list_2,
.cid-v0WatsksuZ .list-wrapper_2 {
  text-align: justify;
}
.cid-v15HH0TSIi {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v15HH0TSIi .menu-text {
  padding: 0 2rem;
  color: #29a436;
}
@media (max-width: 992px) {
  .cid-v15HH0TSIi .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v15HH0TSIi .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v15HH0TSIi .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v15HH0TSIi .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v15HH0TSIi .container {
    padding: 0 1rem;
  }
}
.cid-v15HH0TSIi .menu-tite {
  background: #29a436;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffc800;
}
.cid-v15HH0TSIi .nav-link {
  position: relative;
}
.cid-v15HH0TSIi .nav-link:hover {
  color: #d0c4b7 !important;
}
.cid-v15HH0TSIi nav.navbar {
  position: fixed;
}
.cid-v15HH0TSIi .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-v15HH0TSIi .navbar.opened {
  transition: all 0.3s;
}
.cid-v15HH0TSIi .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v15HH0TSIi .navbar .navbar-logo img {
  width: auto;
}
.cid-v15HH0TSIi .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v15HH0TSIi .navbar.collapsed {
  justify-content: center;
}
.cid-v15HH0TSIi .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v15HH0TSIi .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v15HH0TSIi .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.1rem);
  }
}
.cid-v15HH0TSIi .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v15HH0TSIi .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v15HH0TSIi .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-v15HH0TSIi .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v15HH0TSIi .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v15HH0TSIi .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v15HH0TSIi .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v15HH0TSIi .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v15HH0TSIi .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v15HH0TSIi .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v15HH0TSIi .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-v15HH0TSIi .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v15HH0TSIi .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v15HH0TSIi .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v15HH0TSIi .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v15HH0TSIi .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v15HH0TSIi .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v15HH0TSIi .navbar.navbar-short {
  min-height: 60px;
}
.cid-v15HH0TSIi .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v15HH0TSIi .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v15HH0TSIi .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-v15HH0TSIi .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v15HH0TSIi .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v15HH0TSIi .dropdown-item:hover,
.cid-v15HH0TSIi .dropdown-item:focus {
  background: #29a436 !important;
  color: white !important;
}
.cid-v15HH0TSIi .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v15HH0TSIi .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v15HH0TSIi .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v15HH0TSIi .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v15HH0TSIi .dropdown-menu,
.cid-v15HH0TSIi .navbar.opened {
  background: #ffffff !important;
}
.cid-v15HH0TSIi .nav-item:focus,
.cid-v15HH0TSIi .nav-link:focus {
  outline: none;
}
.cid-v15HH0TSIi .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v15HH0TSIi .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v15HH0TSIi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v15HH0TSIi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v15HH0TSIi .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v15HH0TSIi .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v15HH0TSIi .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v15HH0TSIi .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v15HH0TSIi .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v15HH0TSIi .dropdown-item.active,
.cid-v15HH0TSIi .dropdown-item:active {
  background-color: transparent;
}
.cid-v15HH0TSIi .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v15HH0TSIi .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v15HH0TSIi .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v15HH0TSIi .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v15HH0TSIi .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v15HH0TSIi .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v15HH0TSIi ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v15HH0TSIi .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v15HH0TSIi button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v15HH0TSIi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v15HH0TSIi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v15HH0TSIi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v15HH0TSIi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v15HH0TSIi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v15HH0TSIi nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v15HH0TSIi nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v15HH0TSIi nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v15HH0TSIi nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v15HH0TSIi .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v15HH0TSIi a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v15HH0TSIi .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-v15HH0TSIi .navbar {
    height: 70px;
  }
  .cid-v15HH0TSIi .navbar.opened {
    height: auto;
  }
  .cid-v15HH0TSIi .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v15HH1GG4M {
  padding-top: 9rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/mbr-1-1920x1280.jpg");
  overflow: hidden;
}
.cid-v15HH1GG4M .mbr-fallback-image.disabled {
  display: none;
}
.cid-v15HH1GG4M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v15HH1GG4M .row {
  flex-wrap: nowrap;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-v15HH1GG4M .row {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-v15HH1GG4M .col-text {
    order: 2;
  }
}
.cid-v15HH1GG4M .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-v15HH1GG4M .text-wrap {
    margin-top: 30px;
  }
}
.cid-v15HH1GG4M .mbr-section-title {
  color: #446a49;
}
.cid-v15HH1GG4M .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v15HH1GG4M .mbr-text {
    margin-top: 12px;
  }
}
.cid-v15HH1GG4M .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v15HH1GG4M .mbr-section-btn {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-v15HH1GG4M .col-img {
    order: 1;
  }
}
.cid-v15HH1GG4M .img-wrap {
  position: relative;
  width: 100%;
}
.cid-v15HH1GG4M .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 65px 65px 65px 0;
  overflow: hidden;
  border-radius: 65px 65px 0 65px;
}
@media (max-width: 1199px) {
  .cid-v15HH1GG4M .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
    border-radius: 55px 55px 0 55px;
  }
}
@media (max-width: 991px) {
  .cid-v15HH1GG4M .img-wrap .img-box {
    border-radius: 65px 65px 65px 0;
    border-radius: 65px 65px 0 65px;
  }
}
@media (max-width: 767px) {
  .cid-v15HH1GG4M .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
    border-radius: 55px  55px 0 55px;
  }
}
@media (max-width: 575px) {
  .cid-v15HH1GG4M .img-wrap .img-box {
    border-radius: 45px 45px 45px 0;
    border-radius: 45px 45px 0 45px;
  }
}
.cid-v15HH1GG4M .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-v15HH1GG4M .mbr-text,
.cid-v15HH1GG4M .mbr-section-btn {
  text-align: justify;
  color: #6c6c6c;
}
.cid-v1pnM8CNu5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v1pnM8CNu5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1pnM8CNu5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1pnM8CNu5 .border-wrap {
  width: 100%;
  height: 3px;
  background-color: #a6a6a6;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-v1pnM8CNu5 .border-wrap {
    height: 2px;
    margin-bottom: 32px;
  }
}
.cid-v1pnM8CNu5 .card {
  justify-content: center;
}
.cid-v1pnM8CNu5 .number-wrapper .mbr-number {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v1pnM8CNu5 .number-wrapper .mbr-number {
    margin-bottom: 32px;
  }
}
.cid-v1pnM8CNu5 .list-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-v1pnM8CNu5 .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: upper-roman;
  list-style-position: inside;
}
.cid-v1pnM8CNu5 .list-wrapper .list .item-wrap {
  margin-bottom: 22px;
  padding-bottom: 10px;
  border-bottom: 2px solid #a6a6a6;
}
@media (max-width: 992px) {
  .cid-v1pnM8CNu5 .list-wrapper .list .item-wrap {
    padding-left: 16px;
  }
}
.cid-v1pnM8CNu5 .list-wrapper .list .item-wrap::marker {
  color: #a6a6a6;
}
.cid-v1pnM8CNu5 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v1pnM8CNu5 .mbr-section-title {
  color: #000000;
}
.cid-v1pnM8CNu5 .mbr-number {
  color: #000000;
}
.cid-v1pnM8CNu5 .list {
  color: #000000;
}
.cid-v1pnEXrlR2 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v1pnEXrlR2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1pnEXrlR2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1pnEXrlR2 .border-wrap {
  width: 100%;
  height: 3px;
  background-color: #a6a6a6;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-v1pnEXrlR2 .border-wrap {
    height: 2px;
    margin-bottom: 32px;
  }
}
.cid-v1pnEXrlR2 .card {
  justify-content: center;
}
.cid-v1pnEXrlR2 .number-wrapper .mbr-number {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v1pnEXrlR2 .number-wrapper .mbr-number {
    margin-bottom: 32px;
  }
}
.cid-v1pnEXrlR2 .list-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-v1pnEXrlR2 .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: upper-roman;
  list-style-position: inside;
}
.cid-v1pnEXrlR2 .list-wrapper .list .item-wrap {
  margin-bottom: 22px;
  padding-bottom: 10px;
  border-bottom: 2px solid #a6a6a6;
}
@media (max-width: 992px) {
  .cid-v1pnEXrlR2 .list-wrapper .list .item-wrap {
    padding-left: 16px;
  }
}
.cid-v1pnEXrlR2 .list-wrapper .list .item-wrap::marker {
  color: #a6a6a6;
}
.cid-v1pnEXrlR2 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v1pnEXrlR2 .mbr-section-title {
  color: #000000;
}
.cid-v1pnEXrlR2 .mbr-number {
  color: #000000;
}
.cid-v1pnEXrlR2 .list {
  color: #000000;
}
.cid-v1RHQ1Nvz4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f6efe8;
}
.cid-v1RHQ1Nvz4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1RHQ1Nvz4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1RHQ1Nvz4 .content-wrapper .mbr-label {
  margin-bottom: 0;
}
.cid-v1RHQ1Nvz4 .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-v1RHQ1Nvz4 .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v1RHQ1Nvz4 .content-wrapper .mbr-section-btn {
  margin-top: 24px;
}
.cid-v1RHQ1Nvz4 .mbr-label {
  color: #111111;
  text-align: center;
}
.cid-v1RHQ1Nvz4 .mbr-section-title {
  color: #ff6d99;
}
.cid-v1RHQ1Nvz4 .mbr-text,
.cid-v1RHQ1Nvz4 .text-wrapper {
  color: #111111;
  text-align: center;
}
.cid-v1RHQ1Nvz4 .mbr-section-title,
.cid-v1RHQ1Nvz4 .mbr-section-btn {
  text-align: center;
  color: #446a49;
}
.cid-v15HHe1CBT {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/fiore-di-loto-1200x800.jpg");
}
.cid-v15HHe1CBT .mbr-fallback-image.disabled {
  display: none;
}
.cid-v15HHe1CBT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v15HHe1CBT .mbr-section-title {
  width: 100%;
  color: #6c6c6c;
  margin-bottom: 0;
}
.cid-v15HHe1CBT .mbr-section-title.display-4 {
  font-size: 40px;
}
@media (max-width: 767px) {
  .cid-v15HHe1CBT .mbr-section-title.display-4 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 575px) {
  .cid-v15HHe1CBT .mbr-section-title.display-4 {
    font-size: 26px;
  }
}
.cid-v15HHe1CBT .mbr-text {
  width: 100%;
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-v15HHe1CBT .mbr-text {
    margin-top: 16px;
  }
}
.cid-v15HHe1CBT .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-v15HHe1CBT .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-v15HHeNlfr {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #fffdfb;
}
.cid-v15HHeNlfr .mbr-fallback-image.disabled {
  display: none;
}
.cid-v15HHeNlfr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v15HHeNlfr .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-v15HHeNlfr .container-fluid {
    padding: 0 20px;
  }
}
.cid-v15HHeNlfr .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-v15HHeNlfr .container {
    padding: 0 20px;
  }
}
.cid-v15HHeNlfr .list-wrapper .list,
.cid-v15HHeNlfr .list-wrapper_2 .list_2 {
  display: inline-flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v15HHeNlfr .list-wrapper .list .item-wrap,
.cid-v15HHeNlfr .list-wrapper_2 .list_2 .item-wrap {
  margin-right: 24px;
  transition: all 0.3s ease-out;
}
.cid-v15HHeNlfr .list-wrapper .list .item-wrap:hover,
.cid-v15HHeNlfr .list-wrapper_2 .list_2 .item-wrap:hover {
  opacity: .7;
}
@media (max-width: 992px) {
  .cid-v15HHeNlfr .list-wrapper .list .item-wrap,
  .cid-v15HHeNlfr .list-wrapper_2 .list_2 .item-wrap {
    margin-bottom: 32px;
  }
}
.cid-v15HHeNlfr .logo-wrap img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: inline-flex;
  margin-bottom: 8px;
}
.cid-v15HHeNlfr .mbr-section-title {
  margin-bottom: 0;
  color: #1d1d1d;
}
@media (max-width: 992px) {
  .cid-v15HHeNlfr .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-v15HHeNlfr .text-wrapper {
  margin: 40px 0 22px;
}
.cid-v15HHeNlfr .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v15HHeNlfr .copy-wrapper .copyright {
  margin-bottom: 0;
}
.cid-v15HHeNlfr .mbr-section-title,
.cid-v15HHeNlfr .logo-wrap {
  text-align: center;
  color: #446a49;
}
.cid-v15HHeNlfr .list {
  color: #1d1d1d;
}
.cid-v15HHeNlfr .list_2 {
  color: #989898;
}
.cid-v15HHeNlfr .mbr-text {
  color: #989898;
  text-align: center;
}
.cid-v15HHeNlfr .copyright {
  color: #353535;
  text-align: center;
}
.cid-v15HHeNlfr .list-wrapper_2 {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-v15HHeNlfr .list-wrapper,
  .cid-v15HHeNlfr .list-wrapper_2 {
    text-align: center;
  }
}
.cid-v15HHeNlfr .list_2,
.cid-v15HHeNlfr .list-wrapper_2 {
  text-align: justify;
}
.cid-v1oLAy3dbd {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v1oLAy3dbd .menu-text {
  padding: 0 2rem;
  color: #29a436;
}
@media (max-width: 992px) {
  .cid-v1oLAy3dbd .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v1oLAy3dbd .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v1oLAy3dbd .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v1oLAy3dbd .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v1oLAy3dbd .container {
    padding: 0 1rem;
  }
}
.cid-v1oLAy3dbd .menu-tite {
  background: #29a436;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffc800;
}
.cid-v1oLAy3dbd .nav-link {
  position: relative;
}
.cid-v1oLAy3dbd .nav-link:hover {
  color: #d0c4b7 !important;
}
.cid-v1oLAy3dbd nav.navbar {
  position: fixed;
}
.cid-v1oLAy3dbd .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-v1oLAy3dbd .navbar.opened {
  transition: all 0.3s;
}
.cid-v1oLAy3dbd .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v1oLAy3dbd .navbar .navbar-logo img {
  width: auto;
}
.cid-v1oLAy3dbd .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v1oLAy3dbd .navbar.collapsed {
  justify-content: center;
}
.cid-v1oLAy3dbd .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v1oLAy3dbd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v1oLAy3dbd .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.1rem);
  }
}
.cid-v1oLAy3dbd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v1oLAy3dbd .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v1oLAy3dbd .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-v1oLAy3dbd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v1oLAy3dbd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v1oLAy3dbd .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v1oLAy3dbd .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v1oLAy3dbd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v1oLAy3dbd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v1oLAy3dbd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v1oLAy3dbd .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-v1oLAy3dbd .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v1oLAy3dbd .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v1oLAy3dbd .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v1oLAy3dbd .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v1oLAy3dbd .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v1oLAy3dbd .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v1oLAy3dbd .navbar.navbar-short {
  min-height: 60px;
}
.cid-v1oLAy3dbd .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v1oLAy3dbd .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v1oLAy3dbd .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-v1oLAy3dbd .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v1oLAy3dbd .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v1oLAy3dbd .dropdown-item:hover,
.cid-v1oLAy3dbd .dropdown-item:focus {
  background: #29a436 !important;
  color: white !important;
}
.cid-v1oLAy3dbd .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v1oLAy3dbd .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v1oLAy3dbd .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v1oLAy3dbd .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v1oLAy3dbd .dropdown-menu,
.cid-v1oLAy3dbd .navbar.opened {
  background: #ffffff !important;
}
.cid-v1oLAy3dbd .nav-item:focus,
.cid-v1oLAy3dbd .nav-link:focus {
  outline: none;
}
.cid-v1oLAy3dbd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v1oLAy3dbd .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v1oLAy3dbd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v1oLAy3dbd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v1oLAy3dbd .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v1oLAy3dbd .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v1oLAy3dbd .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v1oLAy3dbd .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v1oLAy3dbd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v1oLAy3dbd .dropdown-item.active,
.cid-v1oLAy3dbd .dropdown-item:active {
  background-color: transparent;
}
.cid-v1oLAy3dbd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v1oLAy3dbd .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v1oLAy3dbd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v1oLAy3dbd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v1oLAy3dbd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v1oLAy3dbd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v1oLAy3dbd ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v1oLAy3dbd .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v1oLAy3dbd button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v1oLAy3dbd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v1oLAy3dbd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v1oLAy3dbd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v1oLAy3dbd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v1oLAy3dbd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v1oLAy3dbd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v1oLAy3dbd nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v1oLAy3dbd nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v1oLAy3dbd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v1oLAy3dbd .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v1oLAy3dbd a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v1oLAy3dbd .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-v1oLAy3dbd .navbar {
    height: 70px;
  }
  .cid-v1oLAy3dbd .navbar.opened {
    height: auto;
  }
  .cid-v1oLAy3dbd .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v1oLAysUbm {
  padding-top: 9rem;
  padding-bottom: 2rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-v1oLAysUbm .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1oLAysUbm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1oLAysUbm .row {
  flex-wrap: nowrap;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-v1oLAysUbm .row {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-v1oLAysUbm .col-text {
    order: 2;
  }
}
.cid-v1oLAysUbm .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-v1oLAysUbm .text-wrap {
    margin-top: 30px;
  }
}
.cid-v1oLAysUbm .mbr-section-title {
  color: #446a49;
}
.cid-v1oLAysUbm .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v1oLAysUbm .mbr-text {
    margin-top: 12px;
  }
}
.cid-v1oLAysUbm .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v1oLAysUbm .mbr-section-btn {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-v1oLAysUbm .col-img {
    order: 1;
  }
}
.cid-v1oLAysUbm .img-wrap {
  position: relative;
  width: 100%;
}
.cid-v1oLAysUbm .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 65px 65px 65px 0;
  overflow: hidden;
  border-radius: 65px 65px 0 65px;
}
@media (max-width: 1199px) {
  .cid-v1oLAysUbm .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
    border-radius: 55px 55px 0 55px;
  }
}
@media (max-width: 991px) {
  .cid-v1oLAysUbm .img-wrap .img-box {
    border-radius: 65px 65px 65px 0;
    border-radius: 65px 65px 0 65px;
  }
}
@media (max-width: 767px) {
  .cid-v1oLAysUbm .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
    border-radius: 55px  55px 0 55px;
  }
}
@media (max-width: 575px) {
  .cid-v1oLAysUbm .img-wrap .img-box {
    border-radius: 45px 45px 45px 0;
    border-radius: 45px 45px 0 45px;
  }
}
.cid-v1oLAysUbm .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-v1oLAysUbm .mbr-text,
.cid-v1oLAysUbm .mbr-section-btn {
  text-align: justify;
  color: #829d85;
}
.cid-v1pai2wuvV {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f6efe8;
}
.cid-v1pai2wuvV .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1pai2wuvV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1pai2wuvV .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-v1pai2wuvV .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-v1pai2wuvV .mbr-section-head {
    margin-bottom: 50px;
  }
}
.cid-v1pai2wuvV .mbr-section-title {
  color: #829D85;
  margin-bottom: 0;
}
.cid-v1pai2wuvV .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
@media (min-width: 992px) {
  .cid-v1pai2wuvV .carousel img {
    height: 500px;
    object-fit: cover;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v1pai2wuvV .carousel img {
    height: 330px;
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-v1pai2wuvV .carousel img {
    height: 280px;
    object-fit: cover;
  }
  .cid-v1pai2wuvV .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-v1pai2wuvV .carousel {
  display: flex;
}
.cid-v1pai2wuvV .carousel-inner {
  display: flex;
}
.cid-v1pai2wuvV .carousel-inner .carousel-item img {
  border-radius: 45px;
}
@media (max-width: 767px) {
  .cid-v1pai2wuvV .carousel-inner {
    margin-bottom: 40px;
  }
}
.cid-v1pai2wuvV .item-wrapper {
  width: 100%;
  padding: 0 50px;
}
.cid-v1pai2wuvV .item-wrapper img {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-v1pai2wuvV .item-wrapper {
    padding: 0;
  }
}
.cid-v1pai2wuvV .carousel-caption {
  position: relative;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  max-width: 560px;
  margin: 0 auto;
  z-index: 101;
}
.cid-v1pai2wuvV .caption-title {
  color: #446a49;
}
.cid-v1pai2wuvV .caption-text {
  color: #446a49;
}
.cid-v1pai2wuvV .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-v1pai2wuvV .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-v1pai2wuvV .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-v1pai2wuvV .carousel-control {
  top: calc(5 * 50px);
  width: 40px;
  height: 40px;
  margin-top: -1.5rem;
  font-size: 22px;
  color: #829d85;
  background-color: #f6efe8;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  opacity: 0.9;
  z-index: 100;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v1pai2wuvV .carousel-control {
    top: calc(5 * 33px);
  }
}
@media (max-width: 767px) {
  .cid-v1pai2wuvV .carousel-control {
    top: calc(100% - 20px);
  }
}
.cid-v1pai2wuvV .carousel-control:hover {
  color: #987a5a;
  background-color: #f1dbda;
  opacity: 0.9;
}
.cid-v1pai2wuvV .carousel-control.carousel-control-prev {
  left: 0;
  margin-right: 10px;
}
@media (max-width: 767px) {
  .cid-v1pai2wuvV .carousel-control.carousel-control-prev {
    margin-right: 0;
    left: calc(50% - 50px);
  }
}
.cid-v1pai2wuvV .carousel-control.carousel-control-next {
  right: 0;
  margin-left: 10px;
}
@media (max-width: 767px) {
  .cid-v1pai2wuvV .carousel-control.carousel-control-next {
    margin-left: 0;
    right: calc(50% - 50px);
  }
}
.cid-v1pai2wuvV .carousel-indicators {
  position: absolute;
  top: calc(5 * 100px - 30px);
  bottom: auto;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto !important;
  flex-wrap: wrap;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v1pai2wuvV .carousel-indicators {
    top: calc(5 * 66px - 30px);
  }
}
@media (max-width: 767px) {
  .cid-v1pai2wuvV .carousel-indicators {
    top: calc(5 * 56px - 30px);
  }
}
.cid-v1pai2wuvV .carousel-indicators li {
  max-width: 5px;
  height: 5px;
  width: 5px;
  max-height: 5px;
  margin: 7px;
  background-color: rgba(0, 0, 0, 0.3);
  border: none;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s;
}
.cid-v1pai2wuvV .carousel-indicators li.active,
.cid-v1pai2wuvV .carousel-indicators li:hover {
  opacity: 1;
  background-color: #29a436;
}
.cid-v1pai2wuvV .carousel-indicators li::after,
.cid-v1pai2wuvV .carousel-indicators li::before {
  content: none;
}
.cid-v1pai2wuvV .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
.cid-v1pai2wuvV .item-menu-overlay {
  z-index: 100 !important;
  opacity: 0 !important;
}
.cid-v1RHVBBCKy {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fffcf5;
}
.cid-v1RHVBBCKy .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1RHVBBCKy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1RHVBBCKy .content-wrapper .mbr-label {
  margin-bottom: 0;
}
.cid-v1RHVBBCKy .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-v1RHVBBCKy .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v1RHVBBCKy .content-wrapper .mbr-section-btn {
  margin-top: 24px;
}
.cid-v1RHVBBCKy .mbr-label {
  color: #111111;
  text-align: center;
}
.cid-v1RHVBBCKy .mbr-section-title {
  color: #ff6d99;
}
.cid-v1RHVBBCKy .mbr-text,
.cid-v1RHVBBCKy .text-wrapper {
  color: #111111;
  text-align: center;
}
.cid-v1RHVBBCKy .mbr-section-title,
.cid-v1RHVBBCKy .mbr-section-btn {
  text-align: center;
  color: #446a49;
}
.cid-v1oLAA3PKk {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/fiore-di-loto-1200x800.jpg");
}
.cid-v1oLAA3PKk .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1oLAA3PKk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1oLAA3PKk .mbr-section-title {
  width: 100%;
  color: #6c6c6c;
  margin-bottom: 0;
}
.cid-v1oLAA3PKk .mbr-section-title.display-4 {
  font-size: 40px;
}
@media (max-width: 767px) {
  .cid-v1oLAA3PKk .mbr-section-title.display-4 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 575px) {
  .cid-v1oLAA3PKk .mbr-section-title.display-4 {
    font-size: 26px;
  }
}
.cid-v1oLAA3PKk .mbr-text {
  width: 100%;
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-v1oLAA3PKk .mbr-text {
    margin-top: 16px;
  }
}
.cid-v1oLAA3PKk .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-v1oLAA3PKk .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-v1oLAAbc6l {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #fffdfb;
}
.cid-v1oLAAbc6l .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1oLAAbc6l .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1oLAAbc6l .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-v1oLAAbc6l .container-fluid {
    padding: 0 20px;
  }
}
.cid-v1oLAAbc6l .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-v1oLAAbc6l .container {
    padding: 0 20px;
  }
}
.cid-v1oLAAbc6l .list-wrapper .list,
.cid-v1oLAAbc6l .list-wrapper_2 .list_2 {
  display: inline-flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v1oLAAbc6l .list-wrapper .list .item-wrap,
.cid-v1oLAAbc6l .list-wrapper_2 .list_2 .item-wrap {
  margin-right: 24px;
  transition: all 0.3s ease-out;
}
.cid-v1oLAAbc6l .list-wrapper .list .item-wrap:hover,
.cid-v1oLAAbc6l .list-wrapper_2 .list_2 .item-wrap:hover {
  opacity: .7;
}
@media (max-width: 992px) {
  .cid-v1oLAAbc6l .list-wrapper .list .item-wrap,
  .cid-v1oLAAbc6l .list-wrapper_2 .list_2 .item-wrap {
    margin-bottom: 32px;
  }
}
.cid-v1oLAAbc6l .logo-wrap img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: inline-flex;
  margin-bottom: 8px;
}
.cid-v1oLAAbc6l .mbr-section-title {
  margin-bottom: 0;
  color: #1d1d1d;
}
@media (max-width: 992px) {
  .cid-v1oLAAbc6l .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-v1oLAAbc6l .text-wrapper {
  margin: 40px 0 22px;
}
.cid-v1oLAAbc6l .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v1oLAAbc6l .copy-wrapper .copyright {
  margin-bottom: 0;
}
.cid-v1oLAAbc6l .mbr-section-title,
.cid-v1oLAAbc6l .logo-wrap {
  text-align: center;
  color: #446a49;
}
.cid-v1oLAAbc6l .list {
  color: #1d1d1d;
}
.cid-v1oLAAbc6l .list_2 {
  color: #989898;
}
.cid-v1oLAAbc6l .mbr-text {
  color: #989898;
  text-align: center;
}
.cid-v1oLAAbc6l .copyright {
  color: #353535;
  text-align: center;
}
.cid-v1oLAAbc6l .list-wrapper_2 {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-v1oLAAbc6l .list-wrapper,
  .cid-v1oLAAbc6l .list-wrapper_2 {
    text-align: center;
  }
}
.cid-v1oLAAbc6l .list_2,
.cid-v1oLAAbc6l .list-wrapper_2 {
  text-align: justify;
}
