.btn {
  border-width: 2px;
}
body {
  font-family: 'Syne', sans-serif;
}
.display-1 {
  font-family: 'Syne', sans-serif;
  font-size: 3.43rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 4.2875rem;
}
.display-2 {
  font-family: 'Syne', sans-serif;
  font-size: 2.43rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.0375rem;
}
.display-4 {
  font-family: 'Syne', sans-serif;
  font-size: 1.31rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6375rem;
}
.display-5 {
  font-family: 'Syne', sans-serif;
  font-size: 1.75rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.1875rem;
}
.display-7 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- 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: 2.744rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.401rem;
    font-size: calc( 1.8505rem + (3.43 - 1.8505) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.8505rem + (3.43 - 1.8505) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.944rem;
    font-size: calc( 1.5005000000000002rem + (2.43 - 1.5005000000000002) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.5005000000000002rem + (2.43 - 1.5005000000000002) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.048rem;
    font-size: calc( 1.1085rem + (1.31 - 1.1085) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.1085rem + (1.31 - 1.1085) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.4rem;
    font-size: calc( 1.2625rem + (1.75 - 1.2625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.2625rem + (1.75 - 1.2625) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((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: #f57903 !important;
}
.bg-success {
  background-color: #235dc6 !important;
}
.bg-info {
  background-color: #8caff0 !important;
}
.bg-warning {
  background-color: #5b6153 !important;
}
.bg-danger {
  background-color: #caa884 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #f57903 !important;
  border-color: #f57903 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #9f4f02 !important;
  border-color: #9f4f02 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #9f4f02 !important;
  border-color: #9f4f02 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #df7714 !important;
  border-color: #df7714 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #8f4d0d !important;
  border-color: #8f4d0d !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #8f4d0d !important;
  border-color: #8f4d0d !important;
}
.btn-info,
.btn-info:active {
  background-color: #8caff0 !important;
  border-color: #8caff0 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #3f7ae6 !important;
  border-color: #3f7ae6 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #3f7ae6 !important;
  border-color: #3f7ae6 !important;
}
.btn-success,
.btn-success:active {
  background-color: #235dc6 !important;
  border-color: #235dc6 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #163a7c !important;
  border-color: #163a7c !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #163a7c !important;
  border-color: #163a7c !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #5b6153 !important;
  border-color: #5b6153 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #2f322b !important;
  border-color: #2f322b !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #2f322b !important;
  border-color: #2f322b !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #caa884 !important;
  border-color: #caa884 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ad7d4a !important;
  border-color: #ad7d4a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ad7d4a !important;
  border-color: #ad7d4a !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #f57903;
  color: #f57903;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #9f4f02 !important;
  background-color: transparent!important;
  border-color: #9f4f02 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #f57903 !important;
  border-color: #f57903 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #df7714;
  color: #df7714;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #8f4d0d !important;
  background-color: transparent!important;
  border-color: #8f4d0d !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #df7714 !important;
  border-color: #df7714 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #8caff0;
  color: #8caff0;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #3f7ae6 !important;
  background-color: transparent!important;
  border-color: #3f7ae6 !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #8caff0 !important;
  border-color: #8caff0 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #235dc6;
  color: #235dc6;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #163a7c !important;
  background-color: transparent!important;
  border-color: #163a7c !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #235dc6 !important;
  border-color: #235dc6 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #5b6153;
  color: #5b6153;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #2f322b !important;
  background-color: transparent!important;
  border-color: #2f322b !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #5b6153 !important;
  border-color: #5b6153 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #caa884;
  color: #caa884;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ad7d4a !important;
  background-color: transparent!important;
  border-color: #ad7d4a !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #caa884 !important;
  border-color: #caa884 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #f57903 !important;
}
.text-secondary {
  color: #df7714 !important;
}
.text-success {
  color: #235dc6 !important;
}
.text-info {
  color: #8caff0 !important;
}
.text-warning {
  color: #5b6153 !important;
}
.text-danger {
  color: #caa884 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #904702 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #81450c !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #14346f !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #3270e4 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #272a24 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #a27546 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  transition: 0.2s;
  position: relative;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0 1.2em;
}
.nav-tabs .nav-link.active {
  color: #f57903;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #8caff0;
}
.alert-warning {
  background-color: #5b6153;
}
.alert-danger {
  background-color: #caa884;
}
.mbr-gallery-filter li.active .btn {
  background-color: #f57903;
  border-color: #f57903;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #f57903;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fee1c6;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #80a5e9;
}
.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: #9ba292;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Syne', sans-serif;
  font-size: 1.31rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.6375rem;
}
.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: #f57903 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Syne', sans-serif;
  font-size: 1.31rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.6375rem;
}
blockquote {
  border-color: #f57903;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #f57903;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #f57903;
}
.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: #f57903;
  border-bottom-color: #f57903;
}
.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: #000000 !important;
  background-color: #f57903 !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: #df7714 !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='%23f57903' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-sMG60EKFJr .navbar-dropdown {
  position: relative !important;
}
.cid-sMG60EKFJr .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-sMG60EKFJr .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sMG60EKFJr .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sMG60EKFJr .dropdown-item:hover,
.cid-sMG60EKFJr .dropdown-item:focus {
  background: #f57903 !important;
  color: white !important;
}
.cid-sMG60EKFJr .dropdown-item:hover span {
  color: white;
}
.cid-sMG60EKFJr .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sMG60EKFJr .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sMG60EKFJr .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 2em !important;
}
@media (max-width: 991px) {
  .cid-sMG60EKFJr .nav-dropdown .link {
    padding: 0 !important;
    margin: 6px 0 !important;
  }
}
.cid-sMG60EKFJr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sMG60EKFJr .nav-link {
  position: relative;
}
@media (max-width: 991px) {
  .cid-sMG60EKFJr .nav-link {
    display: flex !important;
    justify-content: flex-start !important;
    width: 100% !important;
  }
}
.cid-sMG60EKFJr .nav-link:before {
  content: '' !important;
  width: 6px !important;
  height: 6px !important;
  left: 0 !important;
  margin-right: 9px !important;
  position: relative !important;
  border: 1px solid currentColor !important;
  border-radius: 100% !important;
  display: inline-block !important;
  vertical-align: middle !important;
}
.cid-sMG60EKFJr .nav-link:hover:before {
  background-color: currentColor !important;
}
.cid-sMG60EKFJr .container {
  display: flex;
  margin: auto;
}
.cid-sMG60EKFJr .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sMG60EKFJr .navbar-nav {
  min-height: 70px;
  align-items: flex-start;
  flex-grow: 1;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sMG60EKFJr .navbar-nav {
    align-items: center;
  }
}
.cid-sMG60EKFJr .dropdown-menu,
.cid-sMG60EKFJr .navbar.opened {
  background: #fffdf7 !important;
}
.cid-sMG60EKFJr .nav-item:focus,
.cid-sMG60EKFJr .nav-link:focus {
  outline: none;
}
.cid-sMG60EKFJr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
  border-bottom: 1px solid #7f8678;
}
.cid-sMG60EKFJr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sMG60EKFJr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sMG60EKFJr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sMG60EKFJr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sMG60EKFJr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sMG60EKFJr .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid #7f8678;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fffdf7;
  padding: 0 !important;
  box-shadow: none;
}
.cid-sMG60EKFJr .navbar.opened {
  transition: all 0.3s;
}
.cid-sMG60EKFJr .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sMG60EKFJr .navbar .navbar-logo img {
  width: auto;
}
.cid-sMG60EKFJr .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-sMG60EKFJr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sMG60EKFJr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sMG60EKFJr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sMG60EKFJr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sMG60EKFJr .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-sMG60EKFJr .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sMG60EKFJr .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sMG60EKFJr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sMG60EKFJr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sMG60EKFJr .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sMG60EKFJr .navbar.navbar-short {
  min-height: 60px;
}
.cid-sMG60EKFJr .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sMG60EKFJr .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sMG60EKFJr .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 38px 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-sMG60EKFJr .navbar-brand {
    border-right: 1px solid #7f8678;
  }
}
.cid-sMG60EKFJr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sMG60EKFJr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sMG60EKFJr .navbar.navbar-short .navbar-brand {
  padding: 10px 38px 10px 0;
}
.cid-sMG60EKFJr .dropdown-item.active,
.cid-sMG60EKFJr .dropdown-item:active {
  background-color: transparent;
}
.cid-sMG60EKFJr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sMG60EKFJr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sMG60EKFJr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sMG60EKFJr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fffdf7;
}
.cid-sMG60EKFJr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sMG60EKFJr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sMG60EKFJr ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sMG60EKFJr .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sMG60EKFJr button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sMG60EKFJr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 40px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sMG60EKFJr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sMG60EKFJr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sMG60EKFJr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sMG60EKFJr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sMG60EKFJr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sMG60EKFJr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sMG60EKFJr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sMG60EKFJr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sMG60EKFJr .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sMG60EKFJr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sMG60EKFJr .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-sMG60EKFJr .navbar {
    height: 70px;
  }
  .cid-sMG60EKFJr .navbar.opened {
    height: auto;
  }
  .cid-sMG60EKFJr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sMG60EKFJr .container-fluid {
  padding: 0 33px;
}
@media (min-width: 992px) {
  .cid-sMG60EKFJr .container-fluid {
    padding: 0 40px;
  }
}
.cid-sMG60EKFJr .layout-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-sMG60EKFJr .layout-container {
    flex-wrap: nowrap;
  }
}
@media (max-width: 991px) {
  .cid-sMG60EKFJr .nav-item {
    width: 100%;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
  }
  .cid-sMG60EKFJr .nav-item .dropdown-toggle::after {
    margin: 0 0 0 auto !important;
  }
  .cid-sMG60EKFJr .nav-item .dropdown-menu {
    width: 100%;
    border: none;
    box-shadow: none;
    border-radius: 0 !important;
  }
  .cid-sMG60EKFJr .nav-item .dropdown-menu .dropdown-item {
    display: flex;
    justify-content: flex-start;
    padding: 6px 0 !important;
  }
  .cid-sMG60EKFJr .nav-item .dropdown-menu .dropdown-toggle {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    padding: 6px 0 !important;
  }
  .cid-sMG60EKFJr .nav-item .dropdown-menu .dropdown-toggle::after {
    position: static !important;
  }
}
.cid-sMG60EKFJr .mbr-section-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  min-width: min-content;
}
@media (min-width: 992px) {
  .cid-sMG60EKFJr .mbr-section-btn {
    border-left: 1px solid #7f8678;
    min-height: 100%;
  }
}
.cid-sMG60EKFJr .mbr-section-btn .btn {
  margin: 0;
  min-height: 70px;
  padding: 0 17px 0 17px;
  border-radius: 0;
  word-break: normal;
  flex-grow: 1;
}
@media (max-width: 991px) {
  .cid-sMG60EKFJr .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-sPT9VjiDCr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #88a56b;
}
.cid-sPT9VjiDCr .mbr-text {
  max-width: 550px;
}
.cid-sPT9VjiDCr .row {
  align-items: center;
}
.cid-sPT9VjiDCr .mbr-section-subtitle {
  line-height: 1.6;
}
.cid-sPT9VjiDCr .mbr-text,
.cid-sPT9VjiDCr .mbr-section-btn {
  color: #ffffff;
}
.cid-sPU0v1cC02 {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #5b6153;
}
.cid-sPU0v1cC02 .mbr-section-title {
  letter-spacing: 0.1em;
  color: #ffffff;
  margin-bottom: 2rem;
}
.cid-sPU0v1cC02 .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-sPU0v1cC02 .btn {
  margin: 0px !important;
}
.cid-sPU0v1cC02 .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sPU0v1cC02 .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sPU0v1cC02 .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-sPU0v1cC02 .carousel-item .wrap-img {
  text-align: center;
}
.cid-sPU0v1cC02 .carousel-item .wrap-img img {
  max-height: 250px;
  width: auto;
  max-width: 100%;
}
.cid-sPU0v1cC02 .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-sPU0v1cC02 .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 2rem;
  text-align: center;
}
.cid-sPU0v1cC02 .carousel-indicators li {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #cccccc;
  display: inline-block;
  border: 4px solid #cccccc;
}
.cid-sPU0v1cC02 .carousel-indicators li.active {
  border-color: #a3a3a3;
}
@media (max-width: 768px) {
  .cid-sPU0v1cC02 .second-col {
    padding-top: 2rem;
  }
}
.cid-sPU0v1cC02 .mbr-section-subtitle,
.cid-sPU0v1cC02 .mbr-section-btn {
  color: #ffffff;
}
.cid-vbCcxy5vvU {
  background-color: #d9e6cf;
}
.cid-vbCcxy5vvU .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vbCcxy5vvU .carousel-item > div {
  width: 100%;
}
.cid-vbCcxy5vvU h4 {
  margin-top: 1rem;
  margin-bottom: 1.3rem;
  font-weight: 900;
}
.cid-vbCcxy5vvU .carousel-item.active,
.cid-vbCcxy5vvU .carousel-item-next,
.cid-vbCcxy5vvU .carousel-item-prev {
  display: flex;
}
.cid-vbCcxy5vvU .carousel-controls a {
  transition: opacity 0.5s;
  font-size: 1.2rem;
}
.cid-vbCcxy5vvU .carousel-controls a span {
  padding: 15px;
  border-radius: 50%;
  opacity: 0.9;
}
.cid-vbCcxy5vvU .carousel-controls a:hover span {
  opacity: 1;
}
@media (min-width: 768px) {
  .cid-vbCcxy5vvU .carousel-controls a {
    width: 5%;
  }
}
.cid-vbCcxy5vvU .mbr-section-subtitle {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #70747f;
}
.cid-vbCcxy5vvU .img-block {
  display: flex;
  flex-direction: column;
}
.cid-vbCcxy5vvU img {
  width: 100%;
  margin: 0;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  background-size: cover;
  filter: brightness(100%) contrast(100%) saturate(0%) blur(0px) hue-rotate(0deg);
}
.cid-vbCcxy5vvU .mbr-text {
  position: relative;
}
.cid-vbCcxy5vvU li {
  background-color: transparent;
  width: 11px;
  height: 11px;
  border: 1px solid #e0e0e0 !important;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.cid-vbCcxy5vvU li.active {
  background-color: #bfc6b8;
  width: 14px;
  height: 14px;
  border: none !important;
}
.cid-vbCcxy5vvU .carousel-indicators {
  position: absolute;
  margin-top: 2rem;
  bottom: 0rem;
  align-items: center;
}
.cid-vbCcxy5vvU ol {
  margin-bottom: 0;
}
.cid-vbCcxy5vvU .carousel-indicators li {
  border: none;
  border-radius: 50%;
}
.cid-vbCcxy5vvU .carousel {
  display: flex;
  overflow: hidden;
  padding-bottom: 4rem;
}
@media (max-width: 767px) {
  .cid-vbCcxy5vvU {
    padding-top: 40px;
    padding-bottom: 0px;
  }
}
@media (min-width: 767px) {
  .cid-vbCcxy5vvU {
    padding-top: 60px;
    padding-bottom: 0px;
  }
  .cid-vbCcxy5vvU .row {
    margin: 0;
  }
}
.cid-vbCcxy5vvU .title-block {
  margin-top: 1.3rem;
  bottom: -1rem;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-vbCcxy5vvU .desk {
  transition: 0.3s;
  font-weight: 500;
}
.cid-vbCcxy5vvU .img-block:hover img {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  transform: scale(1.1);
}
.cid-vbCcxy5vvU .img-block:hover .link {
  border-bottom: 1px solid currentColor;
}
.cid-vbCcxy5vvU .img-block:hover .desk {
  color: #101010;
}
.cid-vbCcxy5vvU .wrapper-img {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-vbCcxy5vvU .img-card {
    margin-top: 2rem;
  }
}
.cid-vbCcxy5vvU .link {
  border-bottom: 1px solid #e0e0e0;
  display: inline;
  padding-bottom: 3px;
  transition: all 0.3s;
}
.cid-vbCcxy5vvU .subtitle-link {
  color: #df7714;
  text-align: center;
}
.cid-sPTYLS4wO9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c2d4b4;
}
.cid-sPTYLS4wO9 .mbr-section-title {
  text-align: left;
}
.cid-sPTYLS4wO9 .mbr-text,
.cid-sPTYLS4wO9 .mbr-section-btn {
  text-align: left;
  color: #696969;
}
.cid-sPU4K7x1uF {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #5b6153;
}
.cid-sPU4K7x1uF P {
  color: #ffffff;
}
.cid-sPU4K7x1uF H5 {
  color: #ffffff;
  text-align: left;
}
.cid-sPU4K7x1uF h5 {
  display: inline;
  text-decoration: none;
  width: fit-content;
  background-image: linear-gradient(transparent calc(98%), currentColor 1px);
  margin-bottom: 1.5rem;
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 0% 100%;
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cid-sPU4K7x1uF h5:hover {
  background-size: 100% 100%;
}
.cid-sPU4K7x1uF .col-md-4 {
  flex-direction: column;
  display: flex;
  justify-content: center;
}
.cid-sPU4K7x1uF H4 {
  text-align: left;
  color: #ffffff;
}
.cid-sPUeLZeP5a .navbar-dropdown {
  position: relative !important;
}
.cid-sPUeLZeP5a .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-sPUeLZeP5a .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPUeLZeP5a .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPUeLZeP5a .dropdown-item:hover,
.cid-sPUeLZeP5a .dropdown-item:focus {
  background: #f57903 !important;
  color: white !important;
}
.cid-sPUeLZeP5a .dropdown-item:hover span {
  color: white;
}
.cid-sPUeLZeP5a .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPUeLZeP5a .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPUeLZeP5a .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 2em !important;
}
@media (max-width: 991px) {
  .cid-sPUeLZeP5a .nav-dropdown .link {
    padding: 0 !important;
    margin: 6px 0 !important;
  }
}
.cid-sPUeLZeP5a .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPUeLZeP5a .nav-link {
  position: relative;
}
@media (max-width: 991px) {
  .cid-sPUeLZeP5a .nav-link {
    display: flex !important;
    justify-content: flex-start !important;
    width: 100% !important;
  }
}
.cid-sPUeLZeP5a .nav-link:before {
  content: '' !important;
  width: 6px !important;
  height: 6px !important;
  left: 0 !important;
  margin-right: 9px !important;
  position: relative !important;
  border: 1px solid currentColor !important;
  border-radius: 100% !important;
  display: inline-block !important;
  vertical-align: middle !important;
}
.cid-sPUeLZeP5a .nav-link:hover:before {
  background-color: currentColor !important;
}
.cid-sPUeLZeP5a .container {
  display: flex;
  margin: auto;
}
.cid-sPUeLZeP5a .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPUeLZeP5a .navbar-nav {
  min-height: 70px;
  align-items: flex-start;
  flex-grow: 1;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sPUeLZeP5a .navbar-nav {
    align-items: center;
  }
}
.cid-sPUeLZeP5a .dropdown-menu,
.cid-sPUeLZeP5a .navbar.opened {
  background: #fffdf7 !important;
}
.cid-sPUeLZeP5a .nav-item:focus,
.cid-sPUeLZeP5a .nav-link:focus {
  outline: none;
}
.cid-sPUeLZeP5a .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
  border-bottom: 1px solid #7f8678;
}
.cid-sPUeLZeP5a .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPUeLZeP5a .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPUeLZeP5a .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPUeLZeP5a .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPUeLZeP5a .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPUeLZeP5a .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid #7f8678;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fffdf7;
  padding: 0 !important;
  box-shadow: none;
}
.cid-sPUeLZeP5a .navbar.opened {
  transition: all 0.3s;
}
.cid-sPUeLZeP5a .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPUeLZeP5a .navbar .navbar-logo img {
  width: auto;
}
.cid-sPUeLZeP5a .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-sPUeLZeP5a .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPUeLZeP5a .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPUeLZeP5a .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPUeLZeP5a .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPUeLZeP5a .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-sPUeLZeP5a .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPUeLZeP5a .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPUeLZeP5a .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPUeLZeP5a .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPUeLZeP5a .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPUeLZeP5a .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPUeLZeP5a .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPUeLZeP5a .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPUeLZeP5a .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 38px 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-sPUeLZeP5a .navbar-brand {
    border-right: 1px solid #7f8678;
  }
}
.cid-sPUeLZeP5a .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPUeLZeP5a .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPUeLZeP5a .navbar.navbar-short .navbar-brand {
  padding: 10px 38px 10px 0;
}
.cid-sPUeLZeP5a .dropdown-item.active,
.cid-sPUeLZeP5a .dropdown-item:active {
  background-color: transparent;
}
.cid-sPUeLZeP5a .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPUeLZeP5a .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPUeLZeP5a .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPUeLZeP5a .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fffdf7;
}
.cid-sPUeLZeP5a .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPUeLZeP5a .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPUeLZeP5a ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPUeLZeP5a .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPUeLZeP5a button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPUeLZeP5a button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 40px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sPUeLZeP5a button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPUeLZeP5a button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPUeLZeP5a button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPUeLZeP5a button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPUeLZeP5a nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPUeLZeP5a nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPUeLZeP5a nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPUeLZeP5a nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPUeLZeP5a .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sPUeLZeP5a a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPUeLZeP5a .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-sPUeLZeP5a .navbar {
    height: 70px;
  }
  .cid-sPUeLZeP5a .navbar.opened {
    height: auto;
  }
  .cid-sPUeLZeP5a .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sPUeLZeP5a .container-fluid {
  padding: 0 33px;
}
@media (min-width: 992px) {
  .cid-sPUeLZeP5a .container-fluid {
    padding: 0 40px;
  }
}
.cid-sPUeLZeP5a .layout-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-sPUeLZeP5a .layout-container {
    flex-wrap: nowrap;
  }
}
@media (max-width: 991px) {
  .cid-sPUeLZeP5a .nav-item {
    width: 100%;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
  }
  .cid-sPUeLZeP5a .nav-item .dropdown-toggle::after {
    margin: 0 0 0 auto !important;
  }
  .cid-sPUeLZeP5a .nav-item .dropdown-menu {
    width: 100%;
    border: none;
    box-shadow: none;
    border-radius: 0 !important;
  }
  .cid-sPUeLZeP5a .nav-item .dropdown-menu .dropdown-item {
    display: flex;
    justify-content: flex-start;
    padding: 6px 0 !important;
  }
  .cid-sPUeLZeP5a .nav-item .dropdown-menu .dropdown-toggle {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    padding: 6px 0 !important;
  }
  .cid-sPUeLZeP5a .nav-item .dropdown-menu .dropdown-toggle::after {
    position: static !important;
  }
}
.cid-sPUeLZeP5a .mbr-section-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  min-width: min-content;
}
@media (min-width: 992px) {
  .cid-sPUeLZeP5a .mbr-section-btn {
    border-left: 1px solid #7f8678;
    min-height: 100%;
  }
}
.cid-sPUeLZeP5a .mbr-section-btn .btn {
  margin: 0;
  min-height: 70px;
  padding: 0 17px 0 17px;
  border-radius: 0;
  word-break: normal;
  flex-grow: 1;
}
@media (max-width: 991px) {
  .cid-sPUeLZeP5a .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-vbC7mkJ34e {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #88a56b;
}
.cid-vbC7mkJ34e .row {
  flex-direction: row-reverse;
}
.cid-vbC7mkJ34e .mbr-text {
  max-width: 550px;
}
.cid-vbC7mkJ34e .row {
  align-items: center;
}
.cid-vbC7mkJ34e .mbr-section-subtitle {
  line-height: 1.6;
}
.cid-vbC7mkJ34e .mbr-text,
.cid-vbC7mkJ34e .mbr-section-btn {
  color: #ffffff;
}
.cid-sPUgjRG0Lq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #5b6153;
}
.cid-sPUgjRG0Lq .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-sPUgjRG0Lq .mbr-text,
.cid-sPUgjRG0Lq .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-vbCcPG7NYt {
  background-color: #d9e6cf;
}
.cid-vbCcPG7NYt .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vbCcPG7NYt .carousel-item > div {
  width: 100%;
}
.cid-vbCcPG7NYt h4 {
  margin-top: 1rem;
  margin-bottom: 1.3rem;
  font-weight: 900;
}
.cid-vbCcPG7NYt .carousel-item.active,
.cid-vbCcPG7NYt .carousel-item-next,
.cid-vbCcPG7NYt .carousel-item-prev {
  display: flex;
}
.cid-vbCcPG7NYt .carousel-controls a {
  transition: opacity 0.5s;
  font-size: 1.2rem;
}
.cid-vbCcPG7NYt .carousel-controls a span {
  padding: 15px;
  border-radius: 50%;
  opacity: 0.9;
}
.cid-vbCcPG7NYt .carousel-controls a:hover span {
  opacity: 1;
}
@media (min-width: 768px) {
  .cid-vbCcPG7NYt .carousel-controls a {
    width: 5%;
  }
}
.cid-vbCcPG7NYt .mbr-section-subtitle {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #70747f;
}
.cid-vbCcPG7NYt .img-block {
  display: flex;
  flex-direction: column;
}
.cid-vbCcPG7NYt img {
  width: 100%;
  margin: 0;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  background-size: cover;
  filter: brightness(100%) contrast(100%) saturate(0%) blur(0px) hue-rotate(0deg);
}
.cid-vbCcPG7NYt .mbr-text {
  position: relative;
}
.cid-vbCcPG7NYt li {
  background-color: transparent;
  width: 11px;
  height: 11px;
  border: 1px solid #e0e0e0 !important;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.cid-vbCcPG7NYt li.active {
  background-color: #bfc6b8;
  width: 14px;
  height: 14px;
  border: none !important;
}
.cid-vbCcPG7NYt .carousel-indicators {
  position: absolute;
  margin-top: 2rem;
  bottom: 0rem;
  align-items: center;
}
.cid-vbCcPG7NYt ol {
  margin-bottom: 0;
}
.cid-vbCcPG7NYt .carousel-indicators li {
  border: none;
  border-radius: 50%;
}
.cid-vbCcPG7NYt .carousel {
  display: flex;
  overflow: hidden;
  padding-bottom: 4rem;
}
@media (max-width: 767px) {
  .cid-vbCcPG7NYt {
    padding-top: 40px;
    padding-bottom: 0px;
  }
}
@media (min-width: 767px) {
  .cid-vbCcPG7NYt {
    padding-top: 60px;
    padding-bottom: 0px;
  }
  .cid-vbCcPG7NYt .row {
    margin: 0;
  }
}
.cid-vbCcPG7NYt .title-block {
  margin-top: 1.3rem;
  bottom: -1rem;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-vbCcPG7NYt .desk {
  transition: 0.3s;
  font-weight: 500;
}
.cid-vbCcPG7NYt .img-block:hover img {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  transform: scale(1.1);
}
.cid-vbCcPG7NYt .img-block:hover .link {
  border-bottom: 1px solid currentColor;
}
.cid-vbCcPG7NYt .img-block:hover .desk {
  color: #101010;
}
.cid-vbCcPG7NYt .wrapper-img {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-vbCcPG7NYt .img-card {
    margin-top: 2rem;
  }
}
.cid-vbCcPG7NYt .link {
  border-bottom: 1px solid #e0e0e0;
  display: inline;
  padding-bottom: 3px;
  transition: all 0.3s;
}
.cid-vbCcPG7NYt .subtitle-link {
  color: #df7714;
  text-align: center;
}
.cid-sPUeM2e48v {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c2d4b4;
}
.cid-sPUeM2e48v .mbr-section-title {
  text-align: left;
}
.cid-sPUeM2e48v .mbr-text,
.cid-sPUeM2e48v .mbr-section-btn {
  text-align: left;
  color: #696969;
}
.cid-sPUeM2Quld {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #5b6153;
}
.cid-sPUeM2Quld P {
  color: #ffffff;
}
.cid-sPUeM2Quld H5 {
  color: #ffffff;
  text-align: left;
}
.cid-sPUeM2Quld h5 {
  display: inline;
  text-decoration: none;
  width: fit-content;
  background-image: linear-gradient(transparent calc(98%), currentColor 1px);
  margin-bottom: 1.5rem;
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 0% 100%;
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cid-sPUeM2Quld h5:hover {
  background-size: 100% 100%;
}
.cid-sPUeM2Quld .col-md-4 {
  flex-direction: column;
  display: flex;
  justify-content: center;
}
.cid-sPUeM2Quld H4 {
  text-align: left;
  color: #ffffff;
}
.cid-sPUhu2audR .navbar-dropdown {
  position: relative !important;
}
.cid-sPUhu2audR .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-sPUhu2audR .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPUhu2audR .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPUhu2audR .dropdown-item:hover,
.cid-sPUhu2audR .dropdown-item:focus {
  background: #f57903 !important;
  color: white !important;
}
.cid-sPUhu2audR .dropdown-item:hover span {
  color: white;
}
.cid-sPUhu2audR .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPUhu2audR .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPUhu2audR .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 2em !important;
}
@media (max-width: 991px) {
  .cid-sPUhu2audR .nav-dropdown .link {
    padding: 0 !important;
    margin: 6px 0 !important;
  }
}
.cid-sPUhu2audR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPUhu2audR .nav-link {
  position: relative;
}
@media (max-width: 991px) {
  .cid-sPUhu2audR .nav-link {
    display: flex !important;
    justify-content: flex-start !important;
    width: 100% !important;
  }
}
.cid-sPUhu2audR .nav-link:before {
  content: '' !important;
  width: 6px !important;
  height: 6px !important;
  left: 0 !important;
  margin-right: 9px !important;
  position: relative !important;
  border: 1px solid currentColor !important;
  border-radius: 100% !important;
  display: inline-block !important;
  vertical-align: middle !important;
}
.cid-sPUhu2audR .nav-link:hover:before {
  background-color: currentColor !important;
}
.cid-sPUhu2audR .container {
  display: flex;
  margin: auto;
}
.cid-sPUhu2audR .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPUhu2audR .navbar-nav {
  min-height: 70px;
  align-items: flex-start;
  flex-grow: 1;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sPUhu2audR .navbar-nav {
    align-items: center;
  }
}
.cid-sPUhu2audR .dropdown-menu,
.cid-sPUhu2audR .navbar.opened {
  background: #fffdf7 !important;
}
.cid-sPUhu2audR .nav-item:focus,
.cid-sPUhu2audR .nav-link:focus {
  outline: none;
}
.cid-sPUhu2audR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
  border-bottom: 1px solid #7f8678;
}
.cid-sPUhu2audR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPUhu2audR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPUhu2audR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPUhu2audR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPUhu2audR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPUhu2audR .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid #7f8678;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fffdf7;
  padding: 0 !important;
  box-shadow: none;
}
.cid-sPUhu2audR .navbar.opened {
  transition: all 0.3s;
}
.cid-sPUhu2audR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPUhu2audR .navbar .navbar-logo img {
  width: auto;
}
.cid-sPUhu2audR .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-sPUhu2audR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPUhu2audR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPUhu2audR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPUhu2audR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPUhu2audR .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-sPUhu2audR .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPUhu2audR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPUhu2audR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPUhu2audR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPUhu2audR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPUhu2audR .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPUhu2audR .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPUhu2audR .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPUhu2audR .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 38px 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-sPUhu2audR .navbar-brand {
    border-right: 1px solid #7f8678;
  }
}
.cid-sPUhu2audR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPUhu2audR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPUhu2audR .navbar.navbar-short .navbar-brand {
  padding: 10px 38px 10px 0;
}
.cid-sPUhu2audR .dropdown-item.active,
.cid-sPUhu2audR .dropdown-item:active {
  background-color: transparent;
}
.cid-sPUhu2audR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPUhu2audR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPUhu2audR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPUhu2audR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fffdf7;
}
.cid-sPUhu2audR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPUhu2audR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPUhu2audR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPUhu2audR .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPUhu2audR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPUhu2audR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 40px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sPUhu2audR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPUhu2audR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPUhu2audR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPUhu2audR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPUhu2audR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPUhu2audR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPUhu2audR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPUhu2audR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPUhu2audR .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sPUhu2audR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPUhu2audR .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-sPUhu2audR .navbar {
    height: 70px;
  }
  .cid-sPUhu2audR .navbar.opened {
    height: auto;
  }
  .cid-sPUhu2audR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sPUhu2audR .container-fluid {
  padding: 0 33px;
}
@media (min-width: 992px) {
  .cid-sPUhu2audR .container-fluid {
    padding: 0 40px;
  }
}
.cid-sPUhu2audR .layout-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-sPUhu2audR .layout-container {
    flex-wrap: nowrap;
  }
}
@media (max-width: 991px) {
  .cid-sPUhu2audR .nav-item {
    width: 100%;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
  }
  .cid-sPUhu2audR .nav-item .dropdown-toggle::after {
    margin: 0 0 0 auto !important;
  }
  .cid-sPUhu2audR .nav-item .dropdown-menu {
    width: 100%;
    border: none;
    box-shadow: none;
    border-radius: 0 !important;
  }
  .cid-sPUhu2audR .nav-item .dropdown-menu .dropdown-item {
    display: flex;
    justify-content: flex-start;
    padding: 6px 0 !important;
  }
  .cid-sPUhu2audR .nav-item .dropdown-menu .dropdown-toggle {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    padding: 6px 0 !important;
  }
  .cid-sPUhu2audR .nav-item .dropdown-menu .dropdown-toggle::after {
    position: static !important;
  }
}
.cid-sPUhu2audR .mbr-section-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  min-width: min-content;
}
@media (min-width: 992px) {
  .cid-sPUhu2audR .mbr-section-btn {
    border-left: 1px solid #7f8678;
    min-height: 100%;
  }
}
.cid-sPUhu2audR .mbr-section-btn .btn {
  margin: 0;
  min-height: 70px;
  padding: 0 17px 0 17px;
  border-radius: 0;
  word-break: normal;
  flex-grow: 1;
}
@media (max-width: 991px) {
  .cid-sPUhu2audR .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-sPUhu2UDq5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #88a56b;
}
.cid-sPUhu2UDq5 .row {
  flex-direction: row-reverse;
}
.cid-sPUhu2UDq5 .mbr-text {
  max-width: 550px;
}
.cid-sPUhu2UDq5 .row {
  align-items: center;
}
.cid-sPUhu2UDq5 .mbr-section-subtitle {
  line-height: 1.6;
}
.cid-sPUhu2UDq5 .mbr-text,
.cid-sPUhu2UDq5 .mbr-section-btn {
  color: #ffffff;
}
.cid-sPUhu3wFlm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #5b6153;
}
.cid-sPUhu3wFlm .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-sPUhu3wFlm .mbr-text,
.cid-sPUhu3wFlm .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-vbCcT7nYDn {
  background-color: #d9e6cf;
}
.cid-vbCcT7nYDn .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vbCcT7nYDn .carousel-item > div {
  width: 100%;
}
.cid-vbCcT7nYDn h4 {
  margin-top: 1rem;
  margin-bottom: 1.3rem;
  font-weight: 900;
}
.cid-vbCcT7nYDn .carousel-item.active,
.cid-vbCcT7nYDn .carousel-item-next,
.cid-vbCcT7nYDn .carousel-item-prev {
  display: flex;
}
.cid-vbCcT7nYDn .carousel-controls a {
  transition: opacity 0.5s;
  font-size: 1.2rem;
}
.cid-vbCcT7nYDn .carousel-controls a span {
  padding: 15px;
  border-radius: 50%;
  opacity: 0.9;
}
.cid-vbCcT7nYDn .carousel-controls a:hover span {
  opacity: 1;
}
@media (min-width: 768px) {
  .cid-vbCcT7nYDn .carousel-controls a {
    width: 5%;
  }
}
.cid-vbCcT7nYDn .mbr-section-subtitle {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #70747f;
}
.cid-vbCcT7nYDn .img-block {
  display: flex;
  flex-direction: column;
}
.cid-vbCcT7nYDn img {
  width: 100%;
  margin: 0;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  background-size: cover;
  filter: brightness(100%) contrast(100%) saturate(0%) blur(0px) hue-rotate(0deg);
}
.cid-vbCcT7nYDn .mbr-text {
  position: relative;
}
.cid-vbCcT7nYDn li {
  background-color: transparent;
  width: 11px;
  height: 11px;
  border: 1px solid #e0e0e0 !important;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.cid-vbCcT7nYDn li.active {
  background-color: #bfc6b8;
  width: 14px;
  height: 14px;
  border: none !important;
}
.cid-vbCcT7nYDn .carousel-indicators {
  position: absolute;
  margin-top: 2rem;
  bottom: 0rem;
  align-items: center;
}
.cid-vbCcT7nYDn ol {
  margin-bottom: 0;
}
.cid-vbCcT7nYDn .carousel-indicators li {
  border: none;
  border-radius: 50%;
}
.cid-vbCcT7nYDn .carousel {
  display: flex;
  overflow: hidden;
  padding-bottom: 4rem;
}
@media (max-width: 767px) {
  .cid-vbCcT7nYDn {
    padding-top: 40px;
    padding-bottom: 0px;
  }
}
@media (min-width: 767px) {
  .cid-vbCcT7nYDn {
    padding-top: 60px;
    padding-bottom: 0px;
  }
  .cid-vbCcT7nYDn .row {
    margin: 0;
  }
}
.cid-vbCcT7nYDn .title-block {
  margin-top: 1.3rem;
  bottom: -1rem;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-vbCcT7nYDn .desk {
  transition: 0.3s;
  font-weight: 500;
}
.cid-vbCcT7nYDn .img-block:hover img {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  transform: scale(1.1);
}
.cid-vbCcT7nYDn .img-block:hover .link {
  border-bottom: 1px solid currentColor;
}
.cid-vbCcT7nYDn .img-block:hover .desk {
  color: #101010;
}
.cid-vbCcT7nYDn .wrapper-img {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-vbCcT7nYDn .img-card {
    margin-top: 2rem;
  }
}
.cid-vbCcT7nYDn .link {
  border-bottom: 1px solid #e0e0e0;
  display: inline;
  padding-bottom: 3px;
  transition: all 0.3s;
}
.cid-vbCcT7nYDn .subtitle-link {
  color: #df7714;
  text-align: center;
}
.cid-sPUhu50CXy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c2d4b4;
}
.cid-sPUhu50CXy .mbr-section-title {
  text-align: left;
}
.cid-sPUhu50CXy .mbr-text,
.cid-sPUhu50CXy .mbr-section-btn {
  text-align: left;
  color: #696969;
}
.cid-sPUhu5ychH {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #5b6153;
}
.cid-sPUhu5ychH P {
  color: #ffffff;
}
.cid-sPUhu5ychH H5 {
  color: #ffffff;
  text-align: left;
}
.cid-sPUhu5ychH h5 {
  display: inline;
  text-decoration: none;
  width: fit-content;
  background-image: linear-gradient(transparent calc(98%), currentColor 1px);
  margin-bottom: 1.5rem;
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 0% 100%;
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cid-sPUhu5ychH h5:hover {
  background-size: 100% 100%;
}
.cid-sPUhu5ychH .col-md-4 {
  flex-direction: column;
  display: flex;
  justify-content: center;
}
.cid-sPUhu5ychH H4 {
  text-align: left;
  color: #ffffff;
}
.cid-sPUhFdQ0T7 .navbar-dropdown {
  position: relative !important;
}
.cid-sPUhFdQ0T7 .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-sPUhFdQ0T7 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPUhFdQ0T7 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPUhFdQ0T7 .dropdown-item:hover,
.cid-sPUhFdQ0T7 .dropdown-item:focus {
  background: #f57903 !important;
  color: white !important;
}
.cid-sPUhFdQ0T7 .dropdown-item:hover span {
  color: white;
}
.cid-sPUhFdQ0T7 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPUhFdQ0T7 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPUhFdQ0T7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 2em !important;
}
@media (max-width: 991px) {
  .cid-sPUhFdQ0T7 .nav-dropdown .link {
    padding: 0 !important;
    margin: 6px 0 !important;
  }
}
.cid-sPUhFdQ0T7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPUhFdQ0T7 .nav-link {
  position: relative;
}
@media (max-width: 991px) {
  .cid-sPUhFdQ0T7 .nav-link {
    display: flex !important;
    justify-content: flex-start !important;
    width: 100% !important;
  }
}
.cid-sPUhFdQ0T7 .nav-link:before {
  content: '' !important;
  width: 6px !important;
  height: 6px !important;
  left: 0 !important;
  margin-right: 9px !important;
  position: relative !important;
  border: 1px solid currentColor !important;
  border-radius: 100% !important;
  display: inline-block !important;
  vertical-align: middle !important;
}
.cid-sPUhFdQ0T7 .nav-link:hover:before {
  background-color: currentColor !important;
}
.cid-sPUhFdQ0T7 .container {
  display: flex;
  margin: auto;
}
.cid-sPUhFdQ0T7 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPUhFdQ0T7 .navbar-nav {
  min-height: 70px;
  align-items: flex-start;
  flex-grow: 1;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sPUhFdQ0T7 .navbar-nav {
    align-items: center;
  }
}
.cid-sPUhFdQ0T7 .dropdown-menu,
.cid-sPUhFdQ0T7 .navbar.opened {
  background: #fffdf7 !important;
}
.cid-sPUhFdQ0T7 .nav-item:focus,
.cid-sPUhFdQ0T7 .nav-link:focus {
  outline: none;
}
.cid-sPUhFdQ0T7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
  border-bottom: 1px solid #7f8678;
}
.cid-sPUhFdQ0T7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPUhFdQ0T7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPUhFdQ0T7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPUhFdQ0T7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPUhFdQ0T7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPUhFdQ0T7 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid #7f8678;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fffdf7;
  padding: 0 !important;
  box-shadow: none;
}
.cid-sPUhFdQ0T7 .navbar.opened {
  transition: all 0.3s;
}
.cid-sPUhFdQ0T7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPUhFdQ0T7 .navbar .navbar-logo img {
  width: auto;
}
.cid-sPUhFdQ0T7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-sPUhFdQ0T7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPUhFdQ0T7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPUhFdQ0T7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPUhFdQ0T7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPUhFdQ0T7 .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-sPUhFdQ0T7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPUhFdQ0T7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPUhFdQ0T7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPUhFdQ0T7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPUhFdQ0T7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPUhFdQ0T7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPUhFdQ0T7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPUhFdQ0T7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPUhFdQ0T7 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 38px 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-sPUhFdQ0T7 .navbar-brand {
    border-right: 1px solid #7f8678;
  }
}
.cid-sPUhFdQ0T7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPUhFdQ0T7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPUhFdQ0T7 .navbar.navbar-short .navbar-brand {
  padding: 10px 38px 10px 0;
}
.cid-sPUhFdQ0T7 .dropdown-item.active,
.cid-sPUhFdQ0T7 .dropdown-item:active {
  background-color: transparent;
}
.cid-sPUhFdQ0T7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPUhFdQ0T7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPUhFdQ0T7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPUhFdQ0T7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fffdf7;
}
.cid-sPUhFdQ0T7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPUhFdQ0T7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPUhFdQ0T7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPUhFdQ0T7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPUhFdQ0T7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPUhFdQ0T7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 40px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sPUhFdQ0T7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPUhFdQ0T7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPUhFdQ0T7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPUhFdQ0T7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPUhFdQ0T7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPUhFdQ0T7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPUhFdQ0T7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPUhFdQ0T7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPUhFdQ0T7 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sPUhFdQ0T7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPUhFdQ0T7 .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-sPUhFdQ0T7 .navbar {
    height: 70px;
  }
  .cid-sPUhFdQ0T7 .navbar.opened {
    height: auto;
  }
  .cid-sPUhFdQ0T7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sPUhFdQ0T7 .container-fluid {
  padding: 0 33px;
}
@media (min-width: 992px) {
  .cid-sPUhFdQ0T7 .container-fluid {
    padding: 0 40px;
  }
}
.cid-sPUhFdQ0T7 .layout-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-sPUhFdQ0T7 .layout-container {
    flex-wrap: nowrap;
  }
}
@media (max-width: 991px) {
  .cid-sPUhFdQ0T7 .nav-item {
    width: 100%;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
  }
  .cid-sPUhFdQ0T7 .nav-item .dropdown-toggle::after {
    margin: 0 0 0 auto !important;
  }
  .cid-sPUhFdQ0T7 .nav-item .dropdown-menu {
    width: 100%;
    border: none;
    box-shadow: none;
    border-radius: 0 !important;
  }
  .cid-sPUhFdQ0T7 .nav-item .dropdown-menu .dropdown-item {
    display: flex;
    justify-content: flex-start;
    padding: 6px 0 !important;
  }
  .cid-sPUhFdQ0T7 .nav-item .dropdown-menu .dropdown-toggle {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    padding: 6px 0 !important;
  }
  .cid-sPUhFdQ0T7 .nav-item .dropdown-menu .dropdown-toggle::after {
    position: static !important;
  }
}
.cid-sPUhFdQ0T7 .mbr-section-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  min-width: min-content;
}
@media (min-width: 992px) {
  .cid-sPUhFdQ0T7 .mbr-section-btn {
    border-left: 1px solid #7f8678;
    min-height: 100%;
  }
}
.cid-sPUhFdQ0T7 .mbr-section-btn .btn {
  margin: 0;
  min-height: 70px;
  padding: 0 17px 0 17px;
  border-radius: 0;
  word-break: normal;
  flex-grow: 1;
}
@media (max-width: 991px) {
  .cid-sPUhFdQ0T7 .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-sPUhFeLIle {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #88a56b;
}
.cid-sPUhFeLIle .row {
  flex-direction: row-reverse;
}
.cid-sPUhFeLIle .mbr-text {
  max-width: 550px;
}
.cid-sPUhFeLIle .row {
  align-items: center;
}
.cid-sPUhFeLIle .mbr-section-subtitle {
  line-height: 1.6;
}
.cid-sPUhFeLIle .mbr-text,
.cid-sPUhFeLIle .mbr-section-btn {
  color: #ffffff;
}
.cid-sPUhFfi4sN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #5b6153;
}
.cid-sPUhFfi4sN .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-sPUhFfi4sN .mbr-text,
.cid-sPUhFfi4sN .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-vbCcX1vNXq {
  background-color: #d9e6cf;
}
.cid-vbCcX1vNXq .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vbCcX1vNXq .carousel-item > div {
  width: 100%;
}
.cid-vbCcX1vNXq h4 {
  margin-top: 1rem;
  margin-bottom: 1.3rem;
  font-weight: 900;
}
.cid-vbCcX1vNXq .carousel-item.active,
.cid-vbCcX1vNXq .carousel-item-next,
.cid-vbCcX1vNXq .carousel-item-prev {
  display: flex;
}
.cid-vbCcX1vNXq .carousel-controls a {
  transition: opacity 0.5s;
  font-size: 1.2rem;
}
.cid-vbCcX1vNXq .carousel-controls a span {
  padding: 15px;
  border-radius: 50%;
  opacity: 0.9;
}
.cid-vbCcX1vNXq .carousel-controls a:hover span {
  opacity: 1;
}
@media (min-width: 768px) {
  .cid-vbCcX1vNXq .carousel-controls a {
    width: 5%;
  }
}
.cid-vbCcX1vNXq .mbr-section-subtitle {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #70747f;
}
.cid-vbCcX1vNXq .img-block {
  display: flex;
  flex-direction: column;
}
.cid-vbCcX1vNXq img {
  width: 100%;
  margin: 0;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  background-size: cover;
  filter: brightness(100%) contrast(100%) saturate(0%) blur(0px) hue-rotate(0deg);
}
.cid-vbCcX1vNXq .mbr-text {
  position: relative;
}
.cid-vbCcX1vNXq li {
  background-color: transparent;
  width: 11px;
  height: 11px;
  border: 1px solid #e0e0e0 !important;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.cid-vbCcX1vNXq li.active {
  background-color: #bfc6b8;
  width: 14px;
  height: 14px;
  border: none !important;
}
.cid-vbCcX1vNXq .carousel-indicators {
  position: absolute;
  margin-top: 2rem;
  bottom: 0rem;
  align-items: center;
}
.cid-vbCcX1vNXq ol {
  margin-bottom: 0;
}
.cid-vbCcX1vNXq .carousel-indicators li {
  border: none;
  border-radius: 50%;
}
.cid-vbCcX1vNXq .carousel {
  display: flex;
  overflow: hidden;
  padding-bottom: 4rem;
}
@media (max-width: 767px) {
  .cid-vbCcX1vNXq {
    padding-top: 40px;
    padding-bottom: 0px;
  }
}
@media (min-width: 767px) {
  .cid-vbCcX1vNXq {
    padding-top: 60px;
    padding-bottom: 0px;
  }
  .cid-vbCcX1vNXq .row {
    margin: 0;
  }
}
.cid-vbCcX1vNXq .title-block {
  margin-top: 1.3rem;
  bottom: -1rem;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-vbCcX1vNXq .desk {
  transition: 0.3s;
  font-weight: 500;
}
.cid-vbCcX1vNXq .img-block:hover img {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  transform: scale(1.1);
}
.cid-vbCcX1vNXq .img-block:hover .link {
  border-bottom: 1px solid currentColor;
}
.cid-vbCcX1vNXq .img-block:hover .desk {
  color: #101010;
}
.cid-vbCcX1vNXq .wrapper-img {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-vbCcX1vNXq .img-card {
    margin-top: 2rem;
  }
}
.cid-vbCcX1vNXq .link {
  border-bottom: 1px solid #e0e0e0;
  display: inline;
  padding-bottom: 3px;
  transition: all 0.3s;
}
.cid-vbCcX1vNXq .subtitle-link {
  color: #df7714;
  text-align: center;
}
.cid-sPUhFgUBvw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c2d4b4;
}
.cid-sPUhFgUBvw .mbr-section-title {
  text-align: left;
}
.cid-sPUhFgUBvw .mbr-text,
.cid-sPUhFgUBvw .mbr-section-btn {
  text-align: left;
  color: #696969;
}
.cid-sPUhFhpySQ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #5b6153;
}
.cid-sPUhFhpySQ P {
  color: #ffffff;
}
.cid-sPUhFhpySQ H5 {
  color: #ffffff;
  text-align: left;
}
.cid-sPUhFhpySQ h5 {
  display: inline;
  text-decoration: none;
  width: fit-content;
  background-image: linear-gradient(transparent calc(98%), currentColor 1px);
  margin-bottom: 1.5rem;
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 0% 100%;
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cid-sPUhFhpySQ h5:hover {
  background-size: 100% 100%;
}
.cid-sPUhFhpySQ .col-md-4 {
  flex-direction: column;
  display: flex;
  justify-content: center;
}
.cid-sPUhFhpySQ H4 {
  text-align: left;
  color: #ffffff;
}
.cid-sPUhQRKseF .navbar-dropdown {
  position: relative !important;
}
.cid-sPUhQRKseF .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-sPUhQRKseF .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPUhQRKseF .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPUhQRKseF .dropdown-item:hover,
.cid-sPUhQRKseF .dropdown-item:focus {
  background: #f57903 !important;
  color: white !important;
}
.cid-sPUhQRKseF .dropdown-item:hover span {
  color: white;
}
.cid-sPUhQRKseF .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPUhQRKseF .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPUhQRKseF .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 2em !important;
}
@media (max-width: 991px) {
  .cid-sPUhQRKseF .nav-dropdown .link {
    padding: 0 !important;
    margin: 6px 0 !important;
  }
}
.cid-sPUhQRKseF .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPUhQRKseF .nav-link {
  position: relative;
}
@media (max-width: 991px) {
  .cid-sPUhQRKseF .nav-link {
    display: flex !important;
    justify-content: flex-start !important;
    width: 100% !important;
  }
}
.cid-sPUhQRKseF .nav-link:before {
  content: '' !important;
  width: 6px !important;
  height: 6px !important;
  left: 0 !important;
  margin-right: 9px !important;
  position: relative !important;
  border: 1px solid currentColor !important;
  border-radius: 100% !important;
  display: inline-block !important;
  vertical-align: middle !important;
}
.cid-sPUhQRKseF .nav-link:hover:before {
  background-color: currentColor !important;
}
.cid-sPUhQRKseF .container {
  display: flex;
  margin: auto;
}
.cid-sPUhQRKseF .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPUhQRKseF .navbar-nav {
  min-height: 70px;
  align-items: flex-start;
  flex-grow: 1;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sPUhQRKseF .navbar-nav {
    align-items: center;
  }
}
.cid-sPUhQRKseF .dropdown-menu,
.cid-sPUhQRKseF .navbar.opened {
  background: #fffdf7 !important;
}
.cid-sPUhQRKseF .nav-item:focus,
.cid-sPUhQRKseF .nav-link:focus {
  outline: none;
}
.cid-sPUhQRKseF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
  border-bottom: 1px solid #7f8678;
}
.cid-sPUhQRKseF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPUhQRKseF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPUhQRKseF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPUhQRKseF .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPUhQRKseF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPUhQRKseF .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid #7f8678;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fffdf7;
  padding: 0 !important;
  box-shadow: none;
}
.cid-sPUhQRKseF .navbar.opened {
  transition: all 0.3s;
}
.cid-sPUhQRKseF .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPUhQRKseF .navbar .navbar-logo img {
  width: auto;
}
.cid-sPUhQRKseF .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-sPUhQRKseF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPUhQRKseF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPUhQRKseF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPUhQRKseF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPUhQRKseF .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-sPUhQRKseF .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPUhQRKseF .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPUhQRKseF .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPUhQRKseF .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPUhQRKseF .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPUhQRKseF .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPUhQRKseF .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPUhQRKseF .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPUhQRKseF .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 38px 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-sPUhQRKseF .navbar-brand {
    border-right: 1px solid #7f8678;
  }
}
.cid-sPUhQRKseF .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPUhQRKseF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPUhQRKseF .navbar.navbar-short .navbar-brand {
  padding: 10px 38px 10px 0;
}
.cid-sPUhQRKseF .dropdown-item.active,
.cid-sPUhQRKseF .dropdown-item:active {
  background-color: transparent;
}
.cid-sPUhQRKseF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPUhQRKseF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPUhQRKseF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPUhQRKseF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fffdf7;
}
.cid-sPUhQRKseF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPUhQRKseF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPUhQRKseF ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPUhQRKseF .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPUhQRKseF button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPUhQRKseF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 40px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sPUhQRKseF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPUhQRKseF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPUhQRKseF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPUhQRKseF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPUhQRKseF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPUhQRKseF nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPUhQRKseF nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPUhQRKseF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPUhQRKseF .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sPUhQRKseF a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPUhQRKseF .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-sPUhQRKseF .navbar {
    height: 70px;
  }
  .cid-sPUhQRKseF .navbar.opened {
    height: auto;
  }
  .cid-sPUhQRKseF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sPUhQRKseF .container-fluid {
  padding: 0 33px;
}
@media (min-width: 992px) {
  .cid-sPUhQRKseF .container-fluid {
    padding: 0 40px;
  }
}
.cid-sPUhQRKseF .layout-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-sPUhQRKseF .layout-container {
    flex-wrap: nowrap;
  }
}
@media (max-width: 991px) {
  .cid-sPUhQRKseF .nav-item {
    width: 100%;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
  }
  .cid-sPUhQRKseF .nav-item .dropdown-toggle::after {
    margin: 0 0 0 auto !important;
  }
  .cid-sPUhQRKseF .nav-item .dropdown-menu {
    width: 100%;
    border: none;
    box-shadow: none;
    border-radius: 0 !important;
  }
  .cid-sPUhQRKseF .nav-item .dropdown-menu .dropdown-item {
    display: flex;
    justify-content: flex-start;
    padding: 6px 0 !important;
  }
  .cid-sPUhQRKseF .nav-item .dropdown-menu .dropdown-toggle {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    padding: 6px 0 !important;
  }
  .cid-sPUhQRKseF .nav-item .dropdown-menu .dropdown-toggle::after {
    position: static !important;
  }
}
.cid-sPUhQRKseF .mbr-section-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  min-width: min-content;
}
@media (min-width: 992px) {
  .cid-sPUhQRKseF .mbr-section-btn {
    border-left: 1px solid #7f8678;
    min-height: 100%;
  }
}
.cid-sPUhQRKseF .mbr-section-btn .btn {
  margin: 0;
  min-height: 70px;
  padding: 0 17px 0 17px;
  border-radius: 0;
  word-break: normal;
  flex-grow: 1;
}
@media (max-width: 991px) {
  .cid-sPUhQRKseF .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-sPUhQSMWcX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #88a56b;
}
.cid-sPUhQSMWcX .row {
  flex-direction: row-reverse;
}
.cid-sPUhQSMWcX .mbr-text {
  max-width: 550px;
}
.cid-sPUhQSMWcX .row {
  align-items: center;
}
.cid-sPUhQSMWcX .mbr-section-subtitle {
  line-height: 1.6;
}
.cid-sPUhQSMWcX .mbr-text,
.cid-sPUhQSMWcX .mbr-section-btn {
  color: #ffffff;
}
.cid-sPUhQTqPJQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #5b6153;
}
.cid-sPUhQTqPJQ .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-sPUhQTqPJQ .mbr-text,
.cid-sPUhQTqPJQ .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-vbCd1Fwxf2 {
  background-color: #d9e6cf;
}
.cid-vbCd1Fwxf2 .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vbCd1Fwxf2 .carousel-item > div {
  width: 100%;
}
.cid-vbCd1Fwxf2 h4 {
  margin-top: 1rem;
  margin-bottom: 1.3rem;
  font-weight: 900;
}
.cid-vbCd1Fwxf2 .carousel-item.active,
.cid-vbCd1Fwxf2 .carousel-item-next,
.cid-vbCd1Fwxf2 .carousel-item-prev {
  display: flex;
}
.cid-vbCd1Fwxf2 .carousel-controls a {
  transition: opacity 0.5s;
  font-size: 1.2rem;
}
.cid-vbCd1Fwxf2 .carousel-controls a span {
  padding: 15px;
  border-radius: 50%;
  opacity: 0.9;
}
.cid-vbCd1Fwxf2 .carousel-controls a:hover span {
  opacity: 1;
}
@media (min-width: 768px) {
  .cid-vbCd1Fwxf2 .carousel-controls a {
    width: 5%;
  }
}
.cid-vbCd1Fwxf2 .mbr-section-subtitle {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #70747f;
}
.cid-vbCd1Fwxf2 .img-block {
  display: flex;
  flex-direction: column;
}
.cid-vbCd1Fwxf2 img {
  width: 100%;
  margin: 0;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  background-size: cover;
  filter: brightness(100%) contrast(100%) saturate(0%) blur(0px) hue-rotate(0deg);
}
.cid-vbCd1Fwxf2 .mbr-text {
  position: relative;
}
.cid-vbCd1Fwxf2 li {
  background-color: transparent;
  width: 11px;
  height: 11px;
  border: 1px solid #e0e0e0 !important;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.cid-vbCd1Fwxf2 li.active {
  background-color: #bfc6b8;
  width: 14px;
  height: 14px;
  border: none !important;
}
.cid-vbCd1Fwxf2 .carousel-indicators {
  position: absolute;
  margin-top: 2rem;
  bottom: 0rem;
  align-items: center;
}
.cid-vbCd1Fwxf2 ol {
  margin-bottom: 0;
}
.cid-vbCd1Fwxf2 .carousel-indicators li {
  border: none;
  border-radius: 50%;
}
.cid-vbCd1Fwxf2 .carousel {
  display: flex;
  overflow: hidden;
  padding-bottom: 4rem;
}
@media (max-width: 767px) {
  .cid-vbCd1Fwxf2 {
    padding-top: 40px;
    padding-bottom: 0px;
  }
}
@media (min-width: 767px) {
  .cid-vbCd1Fwxf2 {
    padding-top: 60px;
    padding-bottom: 0px;
  }
  .cid-vbCd1Fwxf2 .row {
    margin: 0;
  }
}
.cid-vbCd1Fwxf2 .title-block {
  margin-top: 1.3rem;
  bottom: -1rem;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-vbCd1Fwxf2 .desk {
  transition: 0.3s;
  font-weight: 500;
}
.cid-vbCd1Fwxf2 .img-block:hover img {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  transform: scale(1.1);
}
.cid-vbCd1Fwxf2 .img-block:hover .link {
  border-bottom: 1px solid currentColor;
}
.cid-vbCd1Fwxf2 .img-block:hover .desk {
  color: #101010;
}
.cid-vbCd1Fwxf2 .wrapper-img {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-vbCd1Fwxf2 .img-card {
    margin-top: 2rem;
  }
}
.cid-vbCd1Fwxf2 .link {
  border-bottom: 1px solid #e0e0e0;
  display: inline;
  padding-bottom: 3px;
  transition: all 0.3s;
}
.cid-vbCd1Fwxf2 .subtitle-link {
  color: #df7714;
  text-align: center;
}
.cid-sPUhQVp4K2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c2d4b4;
}
.cid-sPUhQVp4K2 .mbr-section-title {
  text-align: left;
}
.cid-sPUhQVp4K2 .mbr-text,
.cid-sPUhQVp4K2 .mbr-section-btn {
  text-align: left;
  color: #696969;
}
.cid-sPUhQVUqlO {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #5b6153;
}
.cid-sPUhQVUqlO P {
  color: #ffffff;
}
.cid-sPUhQVUqlO H5 {
  color: #ffffff;
  text-align: left;
}
.cid-sPUhQVUqlO h5 {
  display: inline;
  text-decoration: none;
  width: fit-content;
  background-image: linear-gradient(transparent calc(98%), currentColor 1px);
  margin-bottom: 1.5rem;
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 0% 100%;
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cid-sPUhQVUqlO h5:hover {
  background-size: 100% 100%;
}
.cid-sPUhQVUqlO .col-md-4 {
  flex-direction: column;
  display: flex;
  justify-content: center;
}
.cid-sPUhQVUqlO H4 {
  text-align: left;
  color: #ffffff;
}
.cid-sPUwkZy38l .navbar-dropdown {
  position: relative !important;
}
.cid-sPUwkZy38l .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-sPUwkZy38l .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPUwkZy38l .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPUwkZy38l .dropdown-item:hover,
.cid-sPUwkZy38l .dropdown-item:focus {
  background: #f57903 !important;
  color: white !important;
}
.cid-sPUwkZy38l .dropdown-item:hover span {
  color: white;
}
.cid-sPUwkZy38l .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPUwkZy38l .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPUwkZy38l .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 2em !important;
}
@media (max-width: 991px) {
  .cid-sPUwkZy38l .nav-dropdown .link {
    padding: 0 !important;
    margin: 6px 0 !important;
  }
}
.cid-sPUwkZy38l .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPUwkZy38l .nav-link {
  position: relative;
}
@media (max-width: 991px) {
  .cid-sPUwkZy38l .nav-link {
    display: flex !important;
    justify-content: flex-start !important;
    width: 100% !important;
  }
}
.cid-sPUwkZy38l .nav-link:before {
  content: '' !important;
  width: 6px !important;
  height: 6px !important;
  left: 0 !important;
  margin-right: 9px !important;
  position: relative !important;
  border: 1px solid currentColor !important;
  border-radius: 100% !important;
  display: inline-block !important;
  vertical-align: middle !important;
}
.cid-sPUwkZy38l .nav-link:hover:before {
  background-color: currentColor !important;
}
.cid-sPUwkZy38l .container {
  display: flex;
  margin: auto;
}
.cid-sPUwkZy38l .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPUwkZy38l .navbar-nav {
  min-height: 70px;
  align-items: flex-start;
  flex-grow: 1;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sPUwkZy38l .navbar-nav {
    align-items: center;
  }
}
.cid-sPUwkZy38l .dropdown-menu,
.cid-sPUwkZy38l .navbar.opened {
  background: #fffdf7 !important;
}
.cid-sPUwkZy38l .nav-item:focus,
.cid-sPUwkZy38l .nav-link:focus {
  outline: none;
}
.cid-sPUwkZy38l .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
  border-bottom: 1px solid #7f8678;
}
.cid-sPUwkZy38l .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPUwkZy38l .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPUwkZy38l .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPUwkZy38l .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPUwkZy38l .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPUwkZy38l .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid #7f8678;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fffdf7;
  padding: 0 !important;
  box-shadow: none;
}
.cid-sPUwkZy38l .navbar.opened {
  transition: all 0.3s;
}
.cid-sPUwkZy38l .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPUwkZy38l .navbar .navbar-logo img {
  width: auto;
}
.cid-sPUwkZy38l .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-sPUwkZy38l .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPUwkZy38l .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPUwkZy38l .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPUwkZy38l .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPUwkZy38l .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-sPUwkZy38l .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPUwkZy38l .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPUwkZy38l .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPUwkZy38l .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPUwkZy38l .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPUwkZy38l .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPUwkZy38l .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPUwkZy38l .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPUwkZy38l .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 38px 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-sPUwkZy38l .navbar-brand {
    border-right: 1px solid #7f8678;
  }
}
.cid-sPUwkZy38l .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPUwkZy38l .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPUwkZy38l .navbar.navbar-short .navbar-brand {
  padding: 10px 38px 10px 0;
}
.cid-sPUwkZy38l .dropdown-item.active,
.cid-sPUwkZy38l .dropdown-item:active {
  background-color: transparent;
}
.cid-sPUwkZy38l .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPUwkZy38l .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPUwkZy38l .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPUwkZy38l .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fffdf7;
}
.cid-sPUwkZy38l .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPUwkZy38l .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPUwkZy38l ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPUwkZy38l .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPUwkZy38l button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPUwkZy38l button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 40px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sPUwkZy38l button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPUwkZy38l button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPUwkZy38l button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPUwkZy38l button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPUwkZy38l nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPUwkZy38l nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPUwkZy38l nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPUwkZy38l nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPUwkZy38l .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sPUwkZy38l a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPUwkZy38l .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-sPUwkZy38l .navbar {
    height: 70px;
  }
  .cid-sPUwkZy38l .navbar.opened {
    height: auto;
  }
  .cid-sPUwkZy38l .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sPUwkZy38l .container-fluid {
  padding: 0 33px;
}
@media (min-width: 992px) {
  .cid-sPUwkZy38l .container-fluid {
    padding: 0 40px;
  }
}
.cid-sPUwkZy38l .layout-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-sPUwkZy38l .layout-container {
    flex-wrap: nowrap;
  }
}
@media (max-width: 991px) {
  .cid-sPUwkZy38l .nav-item {
    width: 100%;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
  }
  .cid-sPUwkZy38l .nav-item .dropdown-toggle::after {
    margin: 0 0 0 auto !important;
  }
  .cid-sPUwkZy38l .nav-item .dropdown-menu {
    width: 100%;
    border: none;
    box-shadow: none;
    border-radius: 0 !important;
  }
  .cid-sPUwkZy38l .nav-item .dropdown-menu .dropdown-item {
    display: flex;
    justify-content: flex-start;
    padding: 6px 0 !important;
  }
  .cid-sPUwkZy38l .nav-item .dropdown-menu .dropdown-toggle {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    padding: 6px 0 !important;
  }
  .cid-sPUwkZy38l .nav-item .dropdown-menu .dropdown-toggle::after {
    position: static !important;
  }
}
.cid-sPUwkZy38l .mbr-section-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  min-width: min-content;
}
@media (min-width: 992px) {
  .cid-sPUwkZy38l .mbr-section-btn {
    border-left: 1px solid #7f8678;
    min-height: 100%;
  }
}
.cid-sPUwkZy38l .mbr-section-btn .btn {
  margin: 0;
  min-height: 70px;
  padding: 0 17px 0 17px;
  border-radius: 0;
  word-break: normal;
  flex-grow: 1;
}
@media (max-width: 991px) {
  .cid-sPUwkZy38l .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-sPUwl0vpSt {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #c2d4b4;
}
.cid-sPUwl0vpSt .mbr-text {
  max-width: 550px;
}
.cid-sPUwl0vpSt .row {
  align-items: center;
}
.cid-sPUwl0vpSt .mbr-section-subtitle {
  line-height: 1.6;
  color: #ffffff;
}
.cid-sPUwl0vpSt .mbr-text,
.cid-sPUwl0vpSt .mbr-section-btn {
  color: #2a2e25;
}
.cid-sPUB1lN7Ml {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #c2d4b4;
}
.cid-sPUB1lN7Ml .card {
  border-radius: 0;
}
@media (min-width: 992px) {
  .cid-sPUB1lN7Ml .card {
    border-right: 1px solid currentColor;
  }
}
@media (max-width: 991px) {
  .cid-sPUB1lN7Ml .card {
    border-right: 0px;
    border-bottom: 1px solid currentColor;
  }
}
.cid-sPUB1lN7Ml .wrapper {
  padding: 30px 0;
}
.cid-sPUB1lN7Ml .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-sPUB1lN7Ml .mbr-text,
.cid-sPUB1lN7Ml .mbr-section-btn {
  color: #696969;
}
.cid-sPUB1lN7Ml H3 {
  color: #232323;
}
.cid-sPUB1lN7Ml mbr-section-title {
  color: #232323;
}
.cid-sPUB1lN7Ml .mbr-text,
.cid-sPUB1lN7Ml .mbr-section-btn,
.cid-sPUB1lN7Ml .card {
  color: #696969;
  text-align: left;
}
.cid-sPUDEZ3wsA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #c2d4b4;
}
.cid-sPUDEZ3wsA .card {
  border-radius: 0;
}
@media (min-width: 992px) {
  .cid-sPUDEZ3wsA .card {
    border-right: 1px solid currentColor;
  }
}
@media (max-width: 991px) {
  .cid-sPUDEZ3wsA .card {
    border-right: 0px;
    border-bottom: 1px solid currentColor;
  }
}
.cid-sPUDEZ3wsA .wrapper {
  padding: 30px 0;
}
.cid-sPUDEZ3wsA .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-sPUDEZ3wsA .mbr-text,
.cid-sPUDEZ3wsA .mbr-section-btn {
  color: #696969;
}
.cid-sPUDEZ3wsA H3 {
  color: #232323;
}
.cid-sPUDEZ3wsA mbr-section-title {
  color: #232323;
}
.cid-sPUDEZ3wsA .mbr-text,
.cid-sPUDEZ3wsA .mbr-section-btn,
.cid-sPUDEZ3wsA .card {
  color: #696969;
  text-align: left;
}
.cid-vbCd8DcwmW {
  background-color: #d9e6cf;
}
.cid-vbCd8DcwmW .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vbCd8DcwmW .carousel-item > div {
  width: 100%;
}
.cid-vbCd8DcwmW h4 {
  margin-top: 1rem;
  margin-bottom: 1.3rem;
  font-weight: 900;
}
.cid-vbCd8DcwmW .carousel-item.active,
.cid-vbCd8DcwmW .carousel-item-next,
.cid-vbCd8DcwmW .carousel-item-prev {
  display: flex;
}
.cid-vbCd8DcwmW .carousel-controls a {
  transition: opacity 0.5s;
  font-size: 1.2rem;
}
.cid-vbCd8DcwmW .carousel-controls a span {
  padding: 15px;
  border-radius: 50%;
  opacity: 0.9;
}
.cid-vbCd8DcwmW .carousel-controls a:hover span {
  opacity: 1;
}
@media (min-width: 768px) {
  .cid-vbCd8DcwmW .carousel-controls a {
    width: 5%;
  }
}
.cid-vbCd8DcwmW .mbr-section-subtitle {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #70747f;
}
.cid-vbCd8DcwmW .img-block {
  display: flex;
  flex-direction: column;
}
.cid-vbCd8DcwmW img {
  width: 100%;
  margin: 0;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  background-size: cover;
  filter: brightness(100%) contrast(100%) saturate(0%) blur(0px) hue-rotate(0deg);
}
.cid-vbCd8DcwmW .mbr-text {
  position: relative;
}
.cid-vbCd8DcwmW li {
  background-color: transparent;
  width: 11px;
  height: 11px;
  border: 1px solid #e0e0e0 !important;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.cid-vbCd8DcwmW li.active {
  background-color: #bfc6b8;
  width: 14px;
  height: 14px;
  border: none !important;
}
.cid-vbCd8DcwmW .carousel-indicators {
  position: absolute;
  margin-top: 2rem;
  bottom: 0rem;
  align-items: center;
}
.cid-vbCd8DcwmW ol {
  margin-bottom: 0;
}
.cid-vbCd8DcwmW .carousel-indicators li {
  border: none;
  border-radius: 50%;
}
.cid-vbCd8DcwmW .carousel {
  display: flex;
  overflow: hidden;
  padding-bottom: 4rem;
}
@media (max-width: 767px) {
  .cid-vbCd8DcwmW {
    padding-top: 40px;
    padding-bottom: 0px;
  }
}
@media (min-width: 767px) {
  .cid-vbCd8DcwmW {
    padding-top: 60px;
    padding-bottom: 0px;
  }
  .cid-vbCd8DcwmW .row {
    margin: 0;
  }
}
.cid-vbCd8DcwmW .title-block {
  margin-top: 1.3rem;
  bottom: -1rem;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-vbCd8DcwmW .desk {
  transition: 0.3s;
  font-weight: 500;
}
.cid-vbCd8DcwmW .img-block:hover img {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  transform: scale(1.1);
}
.cid-vbCd8DcwmW .img-block:hover .link {
  border-bottom: 1px solid currentColor;
}
.cid-vbCd8DcwmW .img-block:hover .desk {
  color: #101010;
}
.cid-vbCd8DcwmW .wrapper-img {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-vbCd8DcwmW .img-card {
    margin-top: 2rem;
  }
}
.cid-vbCd8DcwmW .link {
  border-bottom: 1px solid #e0e0e0;
  display: inline;
  padding-bottom: 3px;
  transition: all 0.3s;
}
.cid-vbCd8DcwmW .subtitle-link {
  color: #df7714;
  text-align: center;
}
.cid-sPUwl3Y7Vl {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #5b6153;
}
.cid-sPUwl3Y7Vl P {
  color: #ffffff;
}
.cid-sPUwl3Y7Vl H5 {
  color: #ffffff;
  text-align: left;
}
.cid-sPUwl3Y7Vl h5 {
  display: inline;
  text-decoration: none;
  width: fit-content;
  background-image: linear-gradient(transparent calc(98%), currentColor 1px);
  margin-bottom: 1.5rem;
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 0% 100%;
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cid-sPUwl3Y7Vl h5:hover {
  background-size: 100% 100%;
}
.cid-sPUwl3Y7Vl .col-md-4 {
  flex-direction: column;
  display: flex;
  justify-content: center;
}
.cid-sPUwl3Y7Vl H4 {
  text-align: left;
  color: #ffffff;
}
.cid-sPUEHlWPJz .navbar-dropdown {
  position: relative !important;
}
.cid-sPUEHlWPJz .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-sPUEHlWPJz .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPUEHlWPJz .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPUEHlWPJz .dropdown-item:hover,
.cid-sPUEHlWPJz .dropdown-item:focus {
  background: #f57903 !important;
  color: white !important;
}
.cid-sPUEHlWPJz .dropdown-item:hover span {
  color: white;
}
.cid-sPUEHlWPJz .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPUEHlWPJz .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPUEHlWPJz .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 2em !important;
}
@media (max-width: 991px) {
  .cid-sPUEHlWPJz .nav-dropdown .link {
    padding: 0 !important;
    margin: 6px 0 !important;
  }
}
.cid-sPUEHlWPJz .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPUEHlWPJz .nav-link {
  position: relative;
}
@media (max-width: 991px) {
  .cid-sPUEHlWPJz .nav-link {
    display: flex !important;
    justify-content: flex-start !important;
    width: 100% !important;
  }
}
.cid-sPUEHlWPJz .nav-link:before {
  content: '' !important;
  width: 6px !important;
  height: 6px !important;
  left: 0 !important;
  margin-right: 9px !important;
  position: relative !important;
  border: 1px solid currentColor !important;
  border-radius: 100% !important;
  display: inline-block !important;
  vertical-align: middle !important;
}
.cid-sPUEHlWPJz .nav-link:hover:before {
  background-color: currentColor !important;
}
.cid-sPUEHlWPJz .container {
  display: flex;
  margin: auto;
}
.cid-sPUEHlWPJz .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPUEHlWPJz .navbar-nav {
  min-height: 70px;
  align-items: flex-start;
  flex-grow: 1;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sPUEHlWPJz .navbar-nav {
    align-items: center;
  }
}
.cid-sPUEHlWPJz .dropdown-menu,
.cid-sPUEHlWPJz .navbar.opened {
  background: #fffdf7 !important;
}
.cid-sPUEHlWPJz .nav-item:focus,
.cid-sPUEHlWPJz .nav-link:focus {
  outline: none;
}
.cid-sPUEHlWPJz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
  border-bottom: 1px solid #7f8678;
}
.cid-sPUEHlWPJz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPUEHlWPJz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPUEHlWPJz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPUEHlWPJz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPUEHlWPJz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPUEHlWPJz .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid #7f8678;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fffdf7;
  padding: 0 !important;
  box-shadow: none;
}
.cid-sPUEHlWPJz .navbar.opened {
  transition: all 0.3s;
}
.cid-sPUEHlWPJz .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPUEHlWPJz .navbar .navbar-logo img {
  width: auto;
}
.cid-sPUEHlWPJz .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-sPUEHlWPJz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPUEHlWPJz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPUEHlWPJz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPUEHlWPJz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPUEHlWPJz .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-sPUEHlWPJz .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPUEHlWPJz .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPUEHlWPJz .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPUEHlWPJz .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPUEHlWPJz .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPUEHlWPJz .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPUEHlWPJz .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPUEHlWPJz .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPUEHlWPJz .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 38px 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-sPUEHlWPJz .navbar-brand {
    border-right: 1px solid #7f8678;
  }
}
.cid-sPUEHlWPJz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPUEHlWPJz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPUEHlWPJz .navbar.navbar-short .navbar-brand {
  padding: 10px 38px 10px 0;
}
.cid-sPUEHlWPJz .dropdown-item.active,
.cid-sPUEHlWPJz .dropdown-item:active {
  background-color: transparent;
}
.cid-sPUEHlWPJz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPUEHlWPJz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPUEHlWPJz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPUEHlWPJz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fffdf7;
}
.cid-sPUEHlWPJz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPUEHlWPJz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPUEHlWPJz ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPUEHlWPJz .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPUEHlWPJz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPUEHlWPJz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 40px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sPUEHlWPJz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPUEHlWPJz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPUEHlWPJz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPUEHlWPJz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPUEHlWPJz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPUEHlWPJz nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPUEHlWPJz nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPUEHlWPJz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPUEHlWPJz .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sPUEHlWPJz a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPUEHlWPJz .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-sPUEHlWPJz .navbar {
    height: 70px;
  }
  .cid-sPUEHlWPJz .navbar.opened {
    height: auto;
  }
  .cid-sPUEHlWPJz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sPUEHlWPJz .container-fluid {
  padding: 0 33px;
}
@media (min-width: 992px) {
  .cid-sPUEHlWPJz .container-fluid {
    padding: 0 40px;
  }
}
.cid-sPUEHlWPJz .layout-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-sPUEHlWPJz .layout-container {
    flex-wrap: nowrap;
  }
}
@media (max-width: 991px) {
  .cid-sPUEHlWPJz .nav-item {
    width: 100%;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
  }
  .cid-sPUEHlWPJz .nav-item .dropdown-toggle::after {
    margin: 0 0 0 auto !important;
  }
  .cid-sPUEHlWPJz .nav-item .dropdown-menu {
    width: 100%;
    border: none;
    box-shadow: none;
    border-radius: 0 !important;
  }
  .cid-sPUEHlWPJz .nav-item .dropdown-menu .dropdown-item {
    display: flex;
    justify-content: flex-start;
    padding: 6px 0 !important;
  }
  .cid-sPUEHlWPJz .nav-item .dropdown-menu .dropdown-toggle {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    padding: 6px 0 !important;
  }
  .cid-sPUEHlWPJz .nav-item .dropdown-menu .dropdown-toggle::after {
    position: static !important;
  }
}
.cid-sPUEHlWPJz .mbr-section-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  min-width: min-content;
}
@media (min-width: 992px) {
  .cid-sPUEHlWPJz .mbr-section-btn {
    border-left: 1px solid #7f8678;
    min-height: 100%;
  }
}
.cid-sPUEHlWPJz .mbr-section-btn .btn {
  margin: 0;
  min-height: 70px;
  padding: 0 17px 0 17px;
  border-radius: 0;
  word-break: normal;
  flex-grow: 1;
}
@media (max-width: 991px) {
  .cid-sPUEHlWPJz .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-sPUEHn3Q2m {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #c2d4b4;
}
.cid-sPUEHn3Q2m .mbr-text {
  max-width: 550px;
}
.cid-sPUEHn3Q2m .row {
  align-items: center;
}
.cid-sPUEHn3Q2m .mbr-section-subtitle {
  line-height: 1.6;
  color: #ffffff;
}
.cid-sPUEHn3Q2m .mbr-text,
.cid-sPUEHn3Q2m .mbr-section-btn {
  color: #2a2e25;
}
.cid-sPUEHnPMvO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #c2d4b4;
}
.cid-sPUEHnPMvO .card {
  border-radius: 0;
}
@media (min-width: 992px) {
  .cid-sPUEHnPMvO .card {
    border-right: 1px solid currentColor;
  }
}
@media (max-width: 991px) {
  .cid-sPUEHnPMvO .card {
    border-right: 0px;
    border-bottom: 1px solid currentColor;
  }
}
.cid-sPUEHnPMvO .wrapper {
  padding: 30px 0;
}
.cid-sPUEHnPMvO .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-sPUEHnPMvO .mbr-text,
.cid-sPUEHnPMvO .mbr-section-btn {
  color: #696969;
}
.cid-sPUEHnPMvO H3 {
  color: #232323;
}
.cid-sPUEHnPMvO mbr-section-title {
  color: #232323;
}
.cid-sPUEHnPMvO .mbr-text,
.cid-sPUEHnPMvO .mbr-section-btn,
.cid-sPUEHnPMvO .card {
  color: #696969;
  text-align: left;
}
.cid-sPUEHoytcX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #c2d4b4;
}
.cid-sPUEHoytcX .card {
  border-radius: 0;
}
@media (min-width: 992px) {
  .cid-sPUEHoytcX .card {
    border-right: 1px solid currentColor;
  }
}
@media (max-width: 991px) {
  .cid-sPUEHoytcX .card {
    border-right: 0px;
    border-bottom: 1px solid currentColor;
  }
}
.cid-sPUEHoytcX .wrapper {
  padding: 30px 0;
}
.cid-sPUEHoytcX .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-sPUEHoytcX .mbr-text,
.cid-sPUEHoytcX .mbr-section-btn {
  color: #696969;
}
.cid-sPUEHoytcX H3 {
  color: #232323;
}
.cid-sPUEHoytcX mbr-section-title {
  color: #232323;
}
.cid-sPUEHoytcX .mbr-text,
.cid-sPUEHoytcX .mbr-section-btn,
.cid-sPUEHoytcX .card {
  color: #696969;
  text-align: left;
}
.cid-sPUH0fJCKw {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #c2d4b4;
}
.cid-sPUH0fJCKw .card {
  border-radius: 0;
}
@media (min-width: 992px) {
  .cid-sPUH0fJCKw .card {
    border-right: 1px solid currentColor;
  }
}
@media (max-width: 991px) {
  .cid-sPUH0fJCKw .card {
    border-right: 0px;
    border-bottom: 1px solid currentColor;
  }
}
.cid-sPUH0fJCKw .wrapper {
  padding: 30px 0;
}
.cid-sPUH0fJCKw .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-sPUH0fJCKw .mbr-text,
.cid-sPUH0fJCKw .mbr-section-btn {
  color: #696969;
}
.cid-sPUH0fJCKw H3 {
  color: #232323;
}
.cid-sPUH0fJCKw mbr-section-title {
  color: #232323;
}
.cid-sPUH0fJCKw .mbr-text,
.cid-sPUH0fJCKw .mbr-section-btn,
.cid-sPUH0fJCKw .card {
  color: #696969;
  text-align: left;
}
.cid-sPUH1OL7cs {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #c2d4b4;
}
.cid-sPUH1OL7cs .card {
  border-radius: 0;
}
@media (min-width: 992px) {
  .cid-sPUH1OL7cs .card {
    border-right: 1px solid currentColor;
  }
}
@media (max-width: 991px) {
  .cid-sPUH1OL7cs .card {
    border-right: 0px;
    border-bottom: 1px solid currentColor;
  }
}
.cid-sPUH1OL7cs .wrapper {
  padding: 30px 0;
}
.cid-sPUH1OL7cs .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-sPUH1OL7cs .mbr-text,
.cid-sPUH1OL7cs .mbr-section-btn {
  color: #696969;
}
.cid-sPUH1OL7cs H3 {
  color: #232323;
}
.cid-sPUH1OL7cs mbr-section-title {
  color: #232323;
}
.cid-sPUH1OL7cs .mbr-text,
.cid-sPUH1OL7cs .mbr-section-btn,
.cid-sPUH1OL7cs .card {
  color: #696969;
  text-align: left;
}
.cid-vbCddKA3Hg {
  background-color: #d9e6cf;
}
.cid-vbCddKA3Hg .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vbCddKA3Hg .carousel-item > div {
  width: 100%;
}
.cid-vbCddKA3Hg h4 {
  margin-top: 1rem;
  margin-bottom: 1.3rem;
  font-weight: 900;
}
.cid-vbCddKA3Hg .carousel-item.active,
.cid-vbCddKA3Hg .carousel-item-next,
.cid-vbCddKA3Hg .carousel-item-prev {
  display: flex;
}
.cid-vbCddKA3Hg .carousel-controls a {
  transition: opacity 0.5s;
  font-size: 1.2rem;
}
.cid-vbCddKA3Hg .carousel-controls a span {
  padding: 15px;
  border-radius: 50%;
  opacity: 0.9;
}
.cid-vbCddKA3Hg .carousel-controls a:hover span {
  opacity: 1;
}
@media (min-width: 768px) {
  .cid-vbCddKA3Hg .carousel-controls a {
    width: 5%;
  }
}
.cid-vbCddKA3Hg .mbr-section-subtitle {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #70747f;
}
.cid-vbCddKA3Hg .img-block {
  display: flex;
  flex-direction: column;
}
.cid-vbCddKA3Hg img {
  width: 100%;
  margin: 0;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  background-size: cover;
  filter: brightness(100%) contrast(100%) saturate(0%) blur(0px) hue-rotate(0deg);
}
.cid-vbCddKA3Hg .mbr-text {
  position: relative;
}
.cid-vbCddKA3Hg li {
  background-color: transparent;
  width: 11px;
  height: 11px;
  border: 1px solid #e0e0e0 !important;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.cid-vbCddKA3Hg li.active {
  background-color: #bfc6b8;
  width: 14px;
  height: 14px;
  border: none !important;
}
.cid-vbCddKA3Hg .carousel-indicators {
  position: absolute;
  margin-top: 2rem;
  bottom: 0rem;
  align-items: center;
}
.cid-vbCddKA3Hg ol {
  margin-bottom: 0;
}
.cid-vbCddKA3Hg .carousel-indicators li {
  border: none;
  border-radius: 50%;
}
.cid-vbCddKA3Hg .carousel {
  display: flex;
  overflow: hidden;
  padding-bottom: 4rem;
}
@media (max-width: 767px) {
  .cid-vbCddKA3Hg {
    padding-top: 40px;
    padding-bottom: 0px;
  }
}
@media (min-width: 767px) {
  .cid-vbCddKA3Hg {
    padding-top: 60px;
    padding-bottom: 0px;
  }
  .cid-vbCddKA3Hg .row {
    margin: 0;
  }
}
.cid-vbCddKA3Hg .title-block {
  margin-top: 1.3rem;
  bottom: -1rem;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-vbCddKA3Hg .desk {
  transition: 0.3s;
  font-weight: 500;
}
.cid-vbCddKA3Hg .img-block:hover img {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  transform: scale(1.1);
}
.cid-vbCddKA3Hg .img-block:hover .link {
  border-bottom: 1px solid currentColor;
}
.cid-vbCddKA3Hg .img-block:hover .desk {
  color: #101010;
}
.cid-vbCddKA3Hg .wrapper-img {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-vbCddKA3Hg .img-card {
    margin-top: 2rem;
  }
}
.cid-vbCddKA3Hg .link {
  border-bottom: 1px solid #e0e0e0;
  display: inline;
  padding-bottom: 3px;
  transition: all 0.3s;
}
.cid-vbCddKA3Hg .subtitle-link {
  color: #df7714;
  text-align: center;
}
.cid-sPUEHqIrCx {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #5b6153;
}
.cid-sPUEHqIrCx P {
  color: #ffffff;
}
.cid-sPUEHqIrCx H5 {
  color: #ffffff;
  text-align: left;
}
.cid-sPUEHqIrCx h5 {
  display: inline;
  text-decoration: none;
  width: fit-content;
  background-image: linear-gradient(transparent calc(98%), currentColor 1px);
  margin-bottom: 1.5rem;
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 0% 100%;
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cid-sPUEHqIrCx h5:hover {
  background-size: 100% 100%;
}
.cid-sPUEHqIrCx .col-md-4 {
  flex-direction: column;
  display: flex;
  justify-content: center;
}
.cid-sPUEHqIrCx H4 {
  text-align: left;
  color: #ffffff;
}
.cid-sQ9dtcT4Xt .navbar-dropdown {
  position: relative !important;
}
.cid-sQ9dtcT4Xt .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-sQ9dtcT4Xt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sQ9dtcT4Xt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sQ9dtcT4Xt .dropdown-item:hover,
.cid-sQ9dtcT4Xt .dropdown-item:focus {
  background: #f57903 !important;
  color: white !important;
}
.cid-sQ9dtcT4Xt .dropdown-item:hover span {
  color: white;
}
.cid-sQ9dtcT4Xt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sQ9dtcT4Xt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sQ9dtcT4Xt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 2em !important;
}
@media (max-width: 991px) {
  .cid-sQ9dtcT4Xt .nav-dropdown .link {
    padding: 0 !important;
    margin: 6px 0 !important;
  }
}
.cid-sQ9dtcT4Xt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sQ9dtcT4Xt .nav-link {
  position: relative;
}
@media (max-width: 991px) {
  .cid-sQ9dtcT4Xt .nav-link {
    display: flex !important;
    justify-content: flex-start !important;
    width: 100% !important;
  }
}
.cid-sQ9dtcT4Xt .nav-link:before {
  content: '' !important;
  width: 6px !important;
  height: 6px !important;
  left: 0 !important;
  margin-right: 9px !important;
  position: relative !important;
  border: 1px solid currentColor !important;
  border-radius: 100% !important;
  display: inline-block !important;
  vertical-align: middle !important;
}
.cid-sQ9dtcT4Xt .nav-link:hover:before {
  background-color: currentColor !important;
}
.cid-sQ9dtcT4Xt .container {
  display: flex;
  margin: auto;
}
.cid-sQ9dtcT4Xt .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sQ9dtcT4Xt .navbar-nav {
  min-height: 70px;
  align-items: flex-start;
  flex-grow: 1;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sQ9dtcT4Xt .navbar-nav {
    align-items: center;
  }
}
.cid-sQ9dtcT4Xt .dropdown-menu,
.cid-sQ9dtcT4Xt .navbar.opened {
  background: #fffdf7 !important;
}
.cid-sQ9dtcT4Xt .nav-item:focus,
.cid-sQ9dtcT4Xt .nav-link:focus {
  outline: none;
}
.cid-sQ9dtcT4Xt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
  border-bottom: 1px solid #7f8678;
}
.cid-sQ9dtcT4Xt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sQ9dtcT4Xt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sQ9dtcT4Xt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sQ9dtcT4Xt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sQ9dtcT4Xt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sQ9dtcT4Xt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid #7f8678;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fffdf7;
  padding: 0 !important;
  box-shadow: none;
}
.cid-sQ9dtcT4Xt .navbar.opened {
  transition: all 0.3s;
}
.cid-sQ9dtcT4Xt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sQ9dtcT4Xt .navbar .navbar-logo img {
  width: auto;
}
.cid-sQ9dtcT4Xt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-sQ9dtcT4Xt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sQ9dtcT4Xt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sQ9dtcT4Xt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sQ9dtcT4Xt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sQ9dtcT4Xt .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-sQ9dtcT4Xt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sQ9dtcT4Xt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sQ9dtcT4Xt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sQ9dtcT4Xt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sQ9dtcT4Xt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sQ9dtcT4Xt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sQ9dtcT4Xt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sQ9dtcT4Xt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sQ9dtcT4Xt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 38px 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-sQ9dtcT4Xt .navbar-brand {
    border-right: 1px solid #7f8678;
  }
}
.cid-sQ9dtcT4Xt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sQ9dtcT4Xt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sQ9dtcT4Xt .navbar.navbar-short .navbar-brand {
  padding: 10px 38px 10px 0;
}
.cid-sQ9dtcT4Xt .dropdown-item.active,
.cid-sQ9dtcT4Xt .dropdown-item:active {
  background-color: transparent;
}
.cid-sQ9dtcT4Xt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sQ9dtcT4Xt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sQ9dtcT4Xt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sQ9dtcT4Xt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fffdf7;
}
.cid-sQ9dtcT4Xt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sQ9dtcT4Xt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sQ9dtcT4Xt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sQ9dtcT4Xt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sQ9dtcT4Xt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sQ9dtcT4Xt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 40px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sQ9dtcT4Xt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sQ9dtcT4Xt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQ9dtcT4Xt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQ9dtcT4Xt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sQ9dtcT4Xt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQ9dtcT4Xt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sQ9dtcT4Xt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sQ9dtcT4Xt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQ9dtcT4Xt .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sQ9dtcT4Xt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sQ9dtcT4Xt .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-sQ9dtcT4Xt .navbar {
    height: 70px;
  }
  .cid-sQ9dtcT4Xt .navbar.opened {
    height: auto;
  }
  .cid-sQ9dtcT4Xt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sQ9dtcT4Xt .container-fluid {
  padding: 0 33px;
}
@media (min-width: 992px) {
  .cid-sQ9dtcT4Xt .container-fluid {
    padding: 0 40px;
  }
}
.cid-sQ9dtcT4Xt .layout-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-sQ9dtcT4Xt .layout-container {
    flex-wrap: nowrap;
  }
}
@media (max-width: 991px) {
  .cid-sQ9dtcT4Xt .nav-item {
    width: 100%;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
  }
  .cid-sQ9dtcT4Xt .nav-item .dropdown-toggle::after {
    margin: 0 0 0 auto !important;
  }
  .cid-sQ9dtcT4Xt .nav-item .dropdown-menu {
    width: 100%;
    border: none;
    box-shadow: none;
    border-radius: 0 !important;
  }
  .cid-sQ9dtcT4Xt .nav-item .dropdown-menu .dropdown-item {
    display: flex;
    justify-content: flex-start;
    padding: 6px 0 !important;
  }
  .cid-sQ9dtcT4Xt .nav-item .dropdown-menu .dropdown-toggle {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    padding: 6px 0 !important;
  }
  .cid-sQ9dtcT4Xt .nav-item .dropdown-menu .dropdown-toggle::after {
    position: static !important;
  }
}
.cid-sQ9dtcT4Xt .mbr-section-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  min-width: min-content;
}
@media (min-width: 992px) {
  .cid-sQ9dtcT4Xt .mbr-section-btn {
    border-left: 1px solid #7f8678;
    min-height: 100%;
  }
}
.cid-sQ9dtcT4Xt .mbr-section-btn .btn {
  margin: 0;
  min-height: 70px;
  padding: 0 17px 0 17px;
  border-radius: 0;
  word-break: normal;
  flex-grow: 1;
}
@media (max-width: 991px) {
  .cid-sQ9dtcT4Xt .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-sQ9dtgap7z {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c2d4b4;
}
.cid-sQ9dtgap7z .mbr-section-title {
  text-align: left;
}
.cid-sQ9dtgap7z .mbr-text,
.cid-sQ9dtgap7z .mbr-section-btn {
  text-align: left;
  color: #696969;
}
.cid-sQ9dtgIiqU {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #5b6153;
}
.cid-sQ9dtgIiqU P {
  color: #ffffff;
}
.cid-sQ9dtgIiqU H5 {
  color: #ffffff;
  text-align: left;
}
.cid-sQ9dtgIiqU h5 {
  display: inline;
  text-decoration: none;
  width: fit-content;
  background-image: linear-gradient(transparent calc(98%), currentColor 1px);
  margin-bottom: 1.5rem;
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 0% 100%;
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cid-sQ9dtgIiqU h5:hover {
  background-size: 100% 100%;
}
.cid-sQ9dtgIiqU .col-md-4 {
  flex-direction: column;
  display: flex;
  justify-content: center;
}
.cid-sQ9dtgIiqU H4 {
  text-align: left;
  color: #ffffff;
}
.cid-txVrO6EVPt .navbar-dropdown {
  position: relative !important;
}
.cid-txVrO6EVPt .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-txVrO6EVPt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-txVrO6EVPt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-txVrO6EVPt .dropdown-item:hover,
.cid-txVrO6EVPt .dropdown-item:focus {
  background: #f57903 !important;
  color: white !important;
}
.cid-txVrO6EVPt .dropdown-item:hover span {
  color: white;
}
.cid-txVrO6EVPt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-txVrO6EVPt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-txVrO6EVPt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 2em !important;
}
@media (max-width: 991px) {
  .cid-txVrO6EVPt .nav-dropdown .link {
    padding: 0 !important;
    margin: 6px 0 !important;
  }
}
.cid-txVrO6EVPt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-txVrO6EVPt .nav-link {
  position: relative;
}
@media (max-width: 991px) {
  .cid-txVrO6EVPt .nav-link {
    display: flex !important;
    justify-content: flex-start !important;
    width: 100% !important;
  }
}
.cid-txVrO6EVPt .nav-link:before {
  content: '' !important;
  width: 6px !important;
  height: 6px !important;
  left: 0 !important;
  margin-right: 9px !important;
  position: relative !important;
  border: 1px solid currentColor !important;
  border-radius: 100% !important;
  display: inline-block !important;
  vertical-align: middle !important;
}
.cid-txVrO6EVPt .nav-link:hover:before {
  background-color: currentColor !important;
}
.cid-txVrO6EVPt .container {
  display: flex;
  margin: auto;
}
.cid-txVrO6EVPt .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-txVrO6EVPt .navbar-nav {
  min-height: 70px;
  align-items: flex-start;
  flex-grow: 1;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-txVrO6EVPt .navbar-nav {
    align-items: center;
  }
}
.cid-txVrO6EVPt .dropdown-menu,
.cid-txVrO6EVPt .navbar.opened {
  background: #fffdf7 !important;
}
.cid-txVrO6EVPt .nav-item:focus,
.cid-txVrO6EVPt .nav-link:focus {
  outline: none;
}
.cid-txVrO6EVPt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
  border-bottom: 1px solid #7f8678;
}
.cid-txVrO6EVPt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-txVrO6EVPt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-txVrO6EVPt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-txVrO6EVPt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-txVrO6EVPt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-txVrO6EVPt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid #7f8678;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fffdf7;
  padding: 0 !important;
  box-shadow: none;
}
.cid-txVrO6EVPt .navbar.opened {
  transition: all 0.3s;
}
.cid-txVrO6EVPt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-txVrO6EVPt .navbar .navbar-logo img {
  width: auto;
}
.cid-txVrO6EVPt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-txVrO6EVPt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-txVrO6EVPt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-txVrO6EVPt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-txVrO6EVPt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-txVrO6EVPt .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-txVrO6EVPt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-txVrO6EVPt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-txVrO6EVPt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-txVrO6EVPt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-txVrO6EVPt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-txVrO6EVPt .navbar.navbar-short {
  min-height: 60px;
}
.cid-txVrO6EVPt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-txVrO6EVPt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-txVrO6EVPt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 38px 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-txVrO6EVPt .navbar-brand {
    border-right: 1px solid #7f8678;
  }
}
.cid-txVrO6EVPt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-txVrO6EVPt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-txVrO6EVPt .navbar.navbar-short .navbar-brand {
  padding: 10px 38px 10px 0;
}
.cid-txVrO6EVPt .dropdown-item.active,
.cid-txVrO6EVPt .dropdown-item:active {
  background-color: transparent;
}
.cid-txVrO6EVPt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-txVrO6EVPt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-txVrO6EVPt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-txVrO6EVPt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fffdf7;
}
.cid-txVrO6EVPt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-txVrO6EVPt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-txVrO6EVPt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-txVrO6EVPt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-txVrO6EVPt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-txVrO6EVPt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 40px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-txVrO6EVPt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-txVrO6EVPt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-txVrO6EVPt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-txVrO6EVPt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-txVrO6EVPt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-txVrO6EVPt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-txVrO6EVPt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-txVrO6EVPt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-txVrO6EVPt .navbar-dropdown {
  padding: 0 1rem;
}
.cid-txVrO6EVPt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-txVrO6EVPt .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-txVrO6EVPt .navbar {
    height: 70px;
  }
  .cid-txVrO6EVPt .navbar.opened {
    height: auto;
  }
  .cid-txVrO6EVPt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-txVrO6EVPt .container-fluid {
  padding: 0 33px;
}
@media (min-width: 992px) {
  .cid-txVrO6EVPt .container-fluid {
    padding: 0 40px;
  }
}
.cid-txVrO6EVPt .layout-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-txVrO6EVPt .layout-container {
    flex-wrap: nowrap;
  }
}
@media (max-width: 991px) {
  .cid-txVrO6EVPt .nav-item {
    width: 100%;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
  }
  .cid-txVrO6EVPt .nav-item .dropdown-toggle::after {
    margin: 0 0 0 auto !important;
  }
  .cid-txVrO6EVPt .nav-item .dropdown-menu {
    width: 100%;
    border: none;
    box-shadow: none;
    border-radius: 0 !important;
  }
  .cid-txVrO6EVPt .nav-item .dropdown-menu .dropdown-item {
    display: flex;
    justify-content: flex-start;
    padding: 6px 0 !important;
  }
  .cid-txVrO6EVPt .nav-item .dropdown-menu .dropdown-toggle {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    padding: 6px 0 !important;
  }
  .cid-txVrO6EVPt .nav-item .dropdown-menu .dropdown-toggle::after {
    position: static !important;
  }
}
.cid-txVrO6EVPt .mbr-section-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  min-width: min-content;
}
@media (min-width: 992px) {
  .cid-txVrO6EVPt .mbr-section-btn {
    border-left: 1px solid #7f8678;
    min-height: 100%;
  }
}
.cid-txVrO6EVPt .mbr-section-btn .btn {
  margin: 0;
  min-height: 70px;
  padding: 0 17px 0 17px;
  border-radius: 0;
  word-break: normal;
  flex-grow: 1;
}
@media (max-width: 991px) {
  .cid-txVrO6EVPt .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-txVrO7aWl6 {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #c2d4b4;
}
.cid-txVrO7aWl6 .mbr-text {
  max-width: 550px;
}
.cid-txVrO7aWl6 .row {
  align-items: center;
}
.cid-txVrO7aWl6 .mbr-section-subtitle {
  line-height: 1.6;
  color: #ffffff;
}
.cid-txVrO7aWl6 .mbr-text,
.cid-txVrO7aWl6 .mbr-section-btn {
  color: #2a2e25;
}
.cid-txVrOa0d2W {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #5b6153;
}
.cid-txVrOa0d2W P {
  color: #ffffff;
}
.cid-txVrOa0d2W H5 {
  color: #ffffff;
  text-align: left;
}
.cid-txVrOa0d2W h5 {
  display: inline;
  text-decoration: none;
  width: fit-content;
  background-image: linear-gradient(transparent calc(98%), currentColor 1px);
  margin-bottom: 1.5rem;
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 0% 100%;
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cid-txVrOa0d2W h5:hover {
  background-size: 100% 100%;
}
.cid-txVrOa0d2W .col-md-4 {
  flex-direction: column;
  display: flex;
  justify-content: center;
}
.cid-txVrOa0d2W H4 {
  text-align: left;
  color: #ffffff;
}
