body {
  font-family: 'Crimson Text', serif;
}
.display-1 {
  font-family: 'Crimson Text', serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-2 {
  font-family: 'Crimson Text', serif;
  font-size: 2rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-4 {
  font-family: 'Brygada 1918', serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Crimson Text', serif;
  font-size: 1.4rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.75rem;
}
.display-7 {
  font-family: 'Crimson Text', serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 2.4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.1rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    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))));
  }
  .display-5 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #c9d0b1 !important;
}
.bg-success {
  background-color: #a6ad9b !important;
}
.bg-info {
  background-color: #f7f5f0 !important;
}
.bg-warning {
  background-color: #7a6b5e !important;
}
.bg-danger {
  background-color: #dad5c9 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #c9d0b1 !important;
  border-color: #c9d0b1 !important;
  color: #4a5131 !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: #a4af7b !important;
  border-color: #a4af7b !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #4a5131 !important;
  background-color: #a4af7b !important;
  border-color: #a4af7b !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #394c30 !important;
  border-color: #394c30 !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: #11170e !important;
  border-color: #11170e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #11170e !important;
  border-color: #11170e !important;
}
.btn-info,
.btn-info:active {
  background-color: #f7f5f0 !important;
  border-color: #f7f5f0 !important;
  color: #978351 !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: #5f5233 !important;
  background-color: #d9cfb7 !important;
  border-color: #d9cfb7 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #978351 !important;
  background-color: #d9cfb7 !important;
  border-color: #d9cfb7 !important;
}
.btn-success,
.btn-success:active {
  background-color: #a6ad9b !important;
  border-color: #a6ad9b !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: #7b856d !important;
  border-color: #7b856d !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #7b856d !important;
  border-color: #7b856d !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #7a6b5e !important;
  border-color: #7a6b5e !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: #494038 !important;
  border-color: #494038 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #494038 !important;
  border-color: #494038 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #dad5c9 !important;
  border-color: #dad5c9 !important;
  color: #615843 !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: #b7ad96 !important;
  border-color: #b7ad96 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #615843 !important;
  background-color: #b7ad96 !important;
  border-color: #b7ad96 !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: transparent;
  color: #c9d0b1;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #a4af7b !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #4a5131 !important;
  background-color: #c9d0b1 !important;
  border-color: #c9d0b1 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #394c30;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #11170e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #394c30 !important;
  border-color: #394c30 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f7f5f0;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #d9cfb7 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #978351 !important;
  background-color: #f7f5f0 !important;
  border-color: #f7f5f0 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #a6ad9b;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #7b856d !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #a6ad9b !important;
  border-color: #a6ad9b !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #7a6b5e;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #494038 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #7a6b5e !important;
  border-color: #7a6b5e !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #dad5c9;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #b7ad96 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #615843 !important;
  background-color: #dad5c9 !important;
  border-color: #dad5c9 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  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: transparent!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: transparent;
  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: transparent!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: #c9d0b1 !important;
}
.text-secondary {
  color: #394c30 !important;
}
.text-success {
  color: #a6ad9b !important;
}
.text-info {
  color: #f7f5f0 !important;
}
.text-warning {
  color: #7a6b5e !important;
}
.text-danger {
  color: #dad5c9 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #9daa71 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #0a0d09 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #737c66 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #d4c9ad !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #403832 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #b1a68c !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) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #c9d0b1;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #f7f5f0;
}
.alert-warning {
  background-color: #7a6b5e;
}
.alert-danger {
  background-color: #dad5c9;
}
.mbr-gallery-filter li.active .btn {
  background-color: #c9d0b1;
  border-color: #c9d0b1;
  color: #58613a;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #c9d0b1;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #e4e6e1;
}
.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: #b7aba1;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Brygada 1918', serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.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: #c9d0b1 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Brygada 1918', serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #c9d0b1;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #c9d0b1;
  color: #000000;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #c9d0b1;
}
.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: #c9d0b1;
  border-bottom-color: #c9d0b1;
}
.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: #c9d0b1 !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: #394c30 !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='%23c9d0b1' %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;
}
.cid-uW23PmHYC7 .navbar-dropdown {
  background-color: #c9d0b1 !important;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uW23PmHYC7 .menu_box .navbar.opened,
  .cid-uW23PmHYC7 .menu_box .navbar-collapse {
    background-color: #c9d0b1 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uW23PmHYC7 .navbar-dropdown {
  position: relative !important;
}
.cid-uW23PmHYC7 nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uW23PmHYC7 nav.navbar {
    flex-wrap: nowrap;
  }
  .cid-uW23PmHYC7 .offcanvas {
    padding: 120px 60px 35px;
    width: 480px;
    background-color: #c9d0b1;
  }
  .cid-uW23PmHYC7 .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uW23PmHYC7 .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uW23PmHYC7 .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uW23PmHYC7 .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uW23PmHYC7 .offcanvas-body .mbr-text,
  .cid-uW23PmHYC7 .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-uW23PmHYC7 .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-uW23PmHYC7 .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
    color: #c9d0b1;
  }
  .cid-uW23PmHYC7 .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 1px;
    border-right: 5px;
    background-color: #394c30;
  }
  .cid-uW23PmHYC7 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uW23PmHYC7 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uW23PmHYC7 .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uW23PmHYC7 .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uW23PmHYC7 ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uW23PmHYC7 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uW23PmHYC7 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uW23PmHYC7 .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uW23PmHYC7 li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: .3em !important;
  }
  .cid-uW23PmHYC7 li.nav-item:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: currentColor;
    bottom: -5px;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.32s cubic-bezier(0.31, 0.29, 0.05, 0.96);
  }
  .cid-uW23PmHYC7 li.nav-item:hover:after {
    transform-origin: left;
    transform: scaleX(0.999);
  }
  .cid-uW23PmHYC7 .lg_brand {
    margin: 0 1rem;
  }
}
.cid-uW23PmHYC7 .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uW23PmHYC7 .nav-item {
    margin: 4px 19px;
  }
}
@media (max-width: 991px) {
  .cid-uW23PmHYC7 .nav-item {
    margin: 0 !important;
  }
}
.cid-uW23PmHYC7 .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uW23PmHYC7 .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: 72px !important;
    left: -40px !important;
  }
  .cid-uW23PmHYC7 .dropdown-menu.dropdown-submenu {
    left: 215px!important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uW23PmHYC7 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uW23PmHYC7 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uW23PmHYC7 .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uW23PmHYC7 .offcanvas_box {
    display: none;
  }
}
.cid-uW23PmHYC7 .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-uW23PmHYC7 .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uW23PmHYC7 .dropdown .dropdown-item:hover {
  color: #e5673b !important;
}
.cid-uW23PmHYC7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uW23PmHYC7 .nav-link {
  position: relative;
}
.cid-uW23PmHYC7 .container {
  display: flex;
  margin: auto;
}
.cid-uW23PmHYC7 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #394c30;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uW23PmHYC7 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uW23PmHYC7 .iconfont-wrapper:hover {
  background-color: #2d3c26;
}
.cid-uW23PmHYC7 .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 1200px) {
  .cid-uW23PmHYC7 .navbar-nav {
    margin: 0 2rem;
  }
}
.cid-uW23PmHYC7 .navbar-nav .nav-item:last-child {
  margin-right: 0 !important;
}
.cid-uW23PmHYC7 .dropdown-menu,
.cid-uW23PmHYC7 .navbar.opened {
  background: #c9d0b1 !important;
}
.cid-uW23PmHYC7 .nav-item:focus,
.cid-uW23PmHYC7 .nav-link:focus {
  outline: none;
}
.cid-uW23PmHYC7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uW23PmHYC7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uW23PmHYC7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uW23PmHYC7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uW23PmHYC7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uW23PmHYC7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uW23PmHYC7 .navbar {
  height: 120px;
  transition: all 0.3s;
  border-bottom-width: 0px;
}
.cid-uW23PmHYC7 .navbar.opened {
  transition: all 0.3s;
}
.cid-uW23PmHYC7 .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uW23PmHYC7 .navbar .navbar-logo img {
  width: auto;
}
.cid-uW23PmHYC7 .navbar .navbar-collapse {
  justify-content: space-evenly;
  z-index: 1;
}
.cid-uW23PmHYC7 .navbar.collapsed {
  justify-content: center;
}
.cid-uW23PmHYC7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uW23PmHYC7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uW23PmHYC7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-uW23PmHYC7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uW23PmHYC7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uW23PmHYC7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uW23PmHYC7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uW23PmHYC7 .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uW23PmHYC7 .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uW23PmHYC7 .navbar .navbar-collapse {
    padding: 34px 0;
  }
  .cid-uW23PmHYC7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uW23PmHYC7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uW23PmHYC7 .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uW23PmHYC7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uW23PmHYC7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uW23PmHYC7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uW23PmHYC7 .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uW23PmHYC7 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uW23PmHYC7 .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uW23PmHYC7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uW23PmHYC7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uW23PmHYC7 .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uW23PmHYC7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uW23PmHYC7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uW23PmHYC7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uW23PmHYC7 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uW23PmHYC7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uW23PmHYC7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uW23PmHYC7 .dropdown-item.active,
.cid-uW23PmHYC7 .dropdown-item:active {
  background-color: transparent;
}
.cid-uW23PmHYC7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uW23PmHYC7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uW23PmHYC7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uW23PmHYC7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #c9d0b1;
}
.cid-uW23PmHYC7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uW23PmHYC7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uW23PmHYC7 ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-uW23PmHYC7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uW23PmHYC7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #c9d0b1;
}
.cid-uW23PmHYC7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #394c30;
}
.cid-uW23PmHYC7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uW23PmHYC7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uW23PmHYC7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uW23PmHYC7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uW23PmHYC7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uW23PmHYC7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uW23PmHYC7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uW23PmHYC7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uW23PmHYC7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uW23PmHYC7 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uW23PmHYC7 .navbar {
    height: 70px;
  }
  .cid-uW23PmHYC7 .navbar.opened {
    height: auto;
  }
  .cid-uW23PmHYC7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uW23PmHYC7 .mbr-section-subtitle {
  color: #394c30;
}
.cid-uW23PmHYC7 .mbr-text {
  color: #394c30;
}
.cid-uUd9DNTSOS {
  background-color: #ffffff;
  display: block;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
@media (min-width: 768px) {
  .cid-uUd9DNTSOS .carousel {
    height: 650px;
  }
}
@media (max-width: 767px) {
  .cid-uUd9DNTSOS .carousel {
    height: 100vh;
  }
}
.cid-uUd9DNTSOS .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uUd9DNTSOS .carousel-item,
.cid-uUd9DNTSOS .carousel-inner {
  height: 100%;
}
.cid-uUd9DNTSOS .carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-uUd9DNTSOS .carousel-caption {
    right: 5%;
    left: 5%;
  }
}
.cid-uUd9DNTSOS .mbr-section-title {
  letter-spacing: 12px;
  margin-bottom: 25px;
}
@media (min-width: 1400px) {
  .cid-uUd9DNTSOS .mbr-section-title.display-1 {
    font-size: 90px;
    line-height: 160px;
  }
}
.cid-uUd9DNTSOS .mbr-section-btn {
  margin-top: 42px;
}
.cid-uUd9DNTSOS .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uUd9DNTSOS .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uUd9DNTSOS .carousel-control:hover.carousel-control-prev .mobi-mbri {
  transform: translateX(3px);
}
.cid-uUd9DNTSOS .carousel-control:hover.carousel-control-next .mobi-mbri {
  transform: translateX(-3px);
}
.cid-uUd9DNTSOS .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uUd9DNTSOS .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uUd9DNTSOS .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uUd9DNTSOS .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uUd9DNTSOS .carousel-control {
  top: 50%;
  width: 92px;
  height: 92px;
  margin-top: -1.5rem;
  font-size: 21px;
  border-radius: 50%;
  color: #202020;
  background-color: transparent;
  border: 1px solid #fef2f2;
  transition: all 0.2s ease-out;
  opacity: 1;
}
.cid-uUd9DNTSOS .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
  color: #fef2f2 !important;
}
.cid-uUd9DNTSOS .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
  color: #fef2f2 !important;
}
.cid-uUd9DNTSOS .carousel-control .mobi-mbri {
  transition: all 0.2s ease-out;
}
@media (max-width: 768px) {
  .cid-uUd9DNTSOS .carousel-control {
    display: none !important;
  }
}
.cid-uUd9DNTSOS .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 2rem !important;
  align-items: center;
}
.cid-uUd9DNTSOS .carousel-indicators li {
  max-width: 10px;
  max-height: 10px;
  height: 6px;
  width: 6px;
  margin: 15px;
  background-color: #fef2f2;
  border: none;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.2s ease-in-out;
}
.cid-uUd9DNTSOS .carousel-indicators li.active,
.cid-uUd9DNTSOS .carousel-indicators li:hover {
  transform: scale(1.6);
}
.cid-uUd9DNTSOS .carousel-indicators li::after,
.cid-uUd9DNTSOS .carousel-indicators li::before {
  content: none;
}
.cid-uUd9DNTSOS .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uUd9DNTSOS .carousel-indicators {
    display: none !important;
  }
}
.cid-uUd9DNTSOS .mbr-section-text,
.cid-uUd9DNTSOS .mbr-section-btn {
  text-align: center;
}
.cid-uUd8H2UJwN {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uUd8H2UJwN .image_wrapper {
  text-align: center;
  width: 100%;
  height: 100%;
  display: block;
}
.cid-uUd8H2UJwN .item-img {
  width: 150px;
  margin-bottom: 21px;
  height: 100%;
  display: inline-block;
}
.cid-uUd8H2UJwN img {
  object-fit: contain;
  height: 100%;
  width: 100%;
}
.cid-uUd8H2UJwN .item {
  margin-bottom: 70px;
}
.cid-uUd8H2UJwN .item-title {
  margin-bottom: 11px;
  color: #202020;
}
.cid-uUd8H2UJwN .item-wrapper {
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  overflow: visible;
}
.cid-uUd8H2UJwN .mbr-text {
  margin-bottom: 18px;
}
.cid-uUd8H2UJwN .linkBtn a {
  position: relative;
  display: inline-block;
  padding: 1px 7px;
  vertical-align: middle;
  overflow: hidden;
  line-height: 2em;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: .2em;
}
.cid-uUd8H2UJwN .linkBtn a:after,
.cid-uUd8H2UJwN .linkBtn a:before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  background-color: currentColor;
  transition: transform 0.4s cubic-bezier(0.31, 0.29, 0.05, 0.96);
}
.cid-uUd8H2UJwN .linkBtn a:before {
  left: 0;
}
.cid-uUd8H2UJwN .linkBtn a:after {
  left: -100%;
  transition-delay: .3s;
}
.cid-uUd8H2UJwN .linkBtn a:hover:before,
.cid-uUd8H2UJwN .linkBtn a:hover:after {
  transform: translateX(100%);
}
.cid-uUd8H2UJwN .mbr-text,
.cid-uUd8H2UJwN .linkBtn {
  text-align: center;
  color: #394c30;
}
.cid-uUd8H2UJwN .item-title,
.cid-uUd8H2UJwN .image_wrapper {
  color: #394c30;
}
.cid-v0XMo9s3Si {
  padding-top: 0rem;
  padding-bottom: 0rem;
  position: relative;
  background-color: #f9f5ee;
}
@media (min-width: 768px) {
  .cid-v0XMo9s3Si .g-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .cid-v0XMo9s3Si .g-0 > [class*="col"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.cid-v0XMo9s3Si .card_wrapper {
  padding: 2rem 20%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
}
@media (max-width: 991px) {
  .cid-v0XMo9s3Si .card_wrapper {
    padding: 65px 30px;
  }
  .cid-v0XMo9s3Si .card_wrapper .shape {
    width: auto;
    padding: 0 1rem;
  }
}
.cid-v0XMo9s3Si .content_box {
  position: relative;
  z-index: 2;
}
.cid-v0XMo9s3Si .shape {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  opacity: 0.1;
  padding: 0 100px;
}
.cid-v0XMo9s3Si .shape img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-v0XMo9s3Si .mbr-text {
  color: #394c30;
  margin-bottom: 15px;
  text-align: justify;
}
@media (min-width: 768px) {
  .cid-v0XMo9s3Si .mbr-text.display-5 {
    line-height: 42px;
  }
}
.cid-v0XMo9s3Si .image-wrapper,
.cid-v0XMo9s3Si img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-v0XMo9s3Si .signature {
  color: #394c30;
  text-align: left;
}
.cid-v0XNcK0yU2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  position: relative;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .cid-v0XNcK0yU2 .g-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .cid-v0XNcK0yU2 .g-0 > [class*="col"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.cid-v0XNcK0yU2 .card_wrapper {
  padding: 2rem 20%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
}
@media (max-width: 991px) {
  .cid-v0XNcK0yU2 .card_wrapper {
    padding: 65px 30px;
  }
  .cid-v0XNcK0yU2 .card_wrapper .shape {
    width: auto;
    padding: 0 1rem;
  }
}
.cid-v0XNcK0yU2 .content_box {
  position: relative;
  z-index: 2;
}
.cid-v0XNcK0yU2 .shape {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  opacity: 0.1;
  padding: 0 100px;
}
.cid-v0XNcK0yU2 .shape img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-v0XNcK0yU2 .mbr-text {
  color: #394c30;
  margin-bottom: 15px;
  text-align: justify;
}
@media (min-width: 768px) {
  .cid-v0XNcK0yU2 .mbr-text.display-5 {
    line-height: 42px;
  }
}
.cid-v0XNcK0yU2 .image-wrapper,
.cid-v0XNcK0yU2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-v0XNcK0yU2 .signature {
  color: #394c30;
  text-align: left;
}
.cid-v1YtjR8AO6 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  position: relative;
  background-color: #f9f5ee;
}
@media (min-width: 768px) {
  .cid-v1YtjR8AO6 .g-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .cid-v1YtjR8AO6 .g-0 > [class*="col"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.cid-v1YtjR8AO6 .card_wrapper {
  padding: 2rem 20%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
}
@media (max-width: 991px) {
  .cid-v1YtjR8AO6 .card_wrapper {
    padding: 65px 30px;
  }
  .cid-v1YtjR8AO6 .card_wrapper .shape {
    width: auto;
    padding: 0 1rem;
  }
}
.cid-v1YtjR8AO6 .content_box {
  position: relative;
  z-index: 2;
}
.cid-v1YtjR8AO6 .shape {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  opacity: 0.1;
  padding: 0 100px;
}
.cid-v1YtjR8AO6 .shape img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-v1YtjR8AO6 .mbr-text {
  color: #394c30;
  margin-bottom: 15px;
  text-align: justify;
}
@media (min-width: 768px) {
  .cid-v1YtjR8AO6 .mbr-text.display-5 {
    line-height: 42px;
  }
}
.cid-v1YtjR8AO6 .image-wrapper,
.cid-v1YtjR8AO6 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-v1YtjR8AO6 .signature {
  color: #394c30;
  text-align: left;
}
.cid-uUdGnV9JJ6 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uUdGnV9JJ6 .mbr-section-title {
  margin: 20px 0;
  color: #394c30;
}
.cid-uUdGnV9JJ6 .main_header {
  background-color: #e3e8cf;
  position: relative;
  z-index: 1;
  padding: 8rem 2.75rem;
}
@media (max-width: 991px) {
  .cid-uUdGnV9JJ6 .main_header {
    padding: 3.5rem 2.75rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-uUdGnV9JJ6 .main_header {
    padding: 3.5rem .75rem 4rem;
  }
}
.cid-uUdGnV9JJ6 .shape {
  position: absolute;
  z-index: -1;
  top: -40px;
  right: 20px;
  max-width: 160px;
}
.cid-uUdGnV9JJ6 .shape img {
  width: 100%;
  height: auto;
  max-height: 160px;
  object-fit: contain;
}
@media (max-width: 767px) {
  .cid-uUdGnV9JJ6 .shape {
    max-width: 80px;
  }
}
.cid-uUdGnV9JJ6 .shape2 {
  width: 185px;
  height: auto;
  position: absolute;
  left: 70px;
  bottom: -40px;
}
.cid-uUdGnV9JJ6 .shape2 img {
  width: 100%;
  object-fit: contain;
  height: auto;
}
@media (max-width: 767px) {
  .cid-uUdGnV9JJ6 .shape2 {
    width: 95px;
    bottom: -20px;
  }
}
.cid-uUd8FGt2ck {
  padding-top: 5rem;
  padding-bottom: 10rem;
  position: relative;
  background-color: #f9f5ee;
}
.cid-uUd8FGt2ck .image_behind,
.cid-uUd8FGt2ck .image_ahead {
  display: none;
}
@media (min-width: 992px) {
  .cid-uUd8FGt2ck .image_behind {
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    z-index: 1;
    width: 370px;
    height: 575px;
    transform: translateY(-50%);
  }
  .cid-uUd8FGt2ck .image_behind img {
    height: 100%;
  }
  .cid-uUd8FGt2ck .image_wrapper {
    display: inline-block;
  }
  .cid-uUd8FGt2ck .main_header {
    padding-right: 100px;
  }
}
.cid-uUd8FGt2ck .mbr-section-title {
  margin-bottom: 18px;
  border-radius: 50%;
  color: #394c30;
}
.cid-uUd8FGt2ck .mbr-text {
  margin-bottom: 33px;
}
.cid-uUd8FGt2ck .item-img {
  position: relative;
  z-index: 3;
  height: 100%;
}
.cid-uUd8FGt2ck img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uUd8FGt2ck .image_wrapper {
    margin-bottom: 60px;
  }
}
.cid-uUd8FGt2ck .mbr-text,
.cid-uUd8FGt2ck .mbr-section-btn {
  color: #394c30;
}
.cid-uUdN1xrl6A {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uUdN1xrl6A .card-title {
  margin-bottom: 20px;
  color: #394c30;
}
.cid-uUdN1xrl6A .mbr-section-subtitle {
  margin-bottom: 20px;
  color: #202020;
}
@media (min-width: 992px) {
  .cid-uUdN1xrl6A .google-map {
    margin-left: 17%;
  }
}
.cid-uUdN1xrl6A .google-map {
  height: 540px;
  position: relative;
}
@media (max-width: 991px) {
  .cid-uUdN1xrl6A .google-map {
    margin-bottom: 70px;
  }
}
.cid-uUdN1xrl6A .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uUdN1xrl6A .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uUdN1xrl6A .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uUdN1xrl6A .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uUdN1xrl6A .header_box {
  margin-bottom: 40px;
}
.cid-uUdN1xrl6A .contact_content {
  display: inline-block;
  width: 100%;
  margin-bottom: 8px;
}
.cid-uUdN1xrl6A .card_text {
  display: inline-block;
}
.cid-uUdN1xrl6A .iconfont-wrapper {
  margin-right: 15px;
  display: inline-block;
  width: 19px;
  height: 19px;
  font-size: 19px;
  color: #394c30;
}
@media (max-width: 767px) {
  .cid-uUdN1xrl6A .column_wrap {
    margin-bottom: 29px;
  }
}
.cid-uUdN1xrl6A .mbr-text {
  color: #394c30;
}
.cid-uUdN1xrl6A .card_text,
.cid-uUdN1xrl6A .contact_content {
  color: #394c30;
}
.cid-v2qNcGbElv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9d0b1;
}
.cid-v2qNcGbElv .mbr-text {
  color: #555555;
  margin: 10px 0;
  width: 100%;
  text-align: center;
}
.cid-uW23PmHYC7 .navbar-dropdown {
  background-color: #c9d0b1 !important;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uW23PmHYC7 .menu_box .navbar.opened,
  .cid-uW23PmHYC7 .menu_box .navbar-collapse {
    background-color: #c9d0b1 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uW23PmHYC7 .navbar-dropdown {
  position: relative !important;
}
.cid-uW23PmHYC7 nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uW23PmHYC7 nav.navbar {
    flex-wrap: nowrap;
  }
  .cid-uW23PmHYC7 .offcanvas {
    padding: 120px 60px 35px;
    width: 480px;
    background-color: #c9d0b1;
  }
  .cid-uW23PmHYC7 .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uW23PmHYC7 .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uW23PmHYC7 .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uW23PmHYC7 .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uW23PmHYC7 .offcanvas-body .mbr-text,
  .cid-uW23PmHYC7 .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-uW23PmHYC7 .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-uW23PmHYC7 .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
    color: #c9d0b1;
  }
  .cid-uW23PmHYC7 .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 1px;
    border-right: 5px;
    background-color: #394c30;
  }
  .cid-uW23PmHYC7 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uW23PmHYC7 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uW23PmHYC7 .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uW23PmHYC7 .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uW23PmHYC7 ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uW23PmHYC7 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uW23PmHYC7 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uW23PmHYC7 .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uW23PmHYC7 li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: .3em !important;
  }
  .cid-uW23PmHYC7 li.nav-item:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: currentColor;
    bottom: -5px;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.32s cubic-bezier(0.31, 0.29, 0.05, 0.96);
  }
  .cid-uW23PmHYC7 li.nav-item:hover:after {
    transform-origin: left;
    transform: scaleX(0.999);
  }
  .cid-uW23PmHYC7 .lg_brand {
    margin: 0 1rem;
  }
}
.cid-uW23PmHYC7 .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uW23PmHYC7 .nav-item {
    margin: 4px 19px;
  }
}
@media (max-width: 991px) {
  .cid-uW23PmHYC7 .nav-item {
    margin: 0 !important;
  }
}
.cid-uW23PmHYC7 .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uW23PmHYC7 .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: 72px !important;
    left: -40px !important;
  }
  .cid-uW23PmHYC7 .dropdown-menu.dropdown-submenu {
    left: 215px!important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uW23PmHYC7 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uW23PmHYC7 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uW23PmHYC7 .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uW23PmHYC7 .offcanvas_box {
    display: none;
  }
}
.cid-uW23PmHYC7 .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-uW23PmHYC7 .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uW23PmHYC7 .dropdown .dropdown-item:hover {
  color: #e5673b !important;
}
.cid-uW23PmHYC7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uW23PmHYC7 .nav-link {
  position: relative;
}
.cid-uW23PmHYC7 .container {
  display: flex;
  margin: auto;
}
.cid-uW23PmHYC7 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #394c30;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uW23PmHYC7 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uW23PmHYC7 .iconfont-wrapper:hover {
  background-color: #2d3c26;
}
.cid-uW23PmHYC7 .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 1200px) {
  .cid-uW23PmHYC7 .navbar-nav {
    margin: 0 2rem;
  }
}
.cid-uW23PmHYC7 .navbar-nav .nav-item:last-child {
  margin-right: 0 !important;
}
.cid-uW23PmHYC7 .dropdown-menu,
.cid-uW23PmHYC7 .navbar.opened {
  background: #c9d0b1 !important;
}
.cid-uW23PmHYC7 .nav-item:focus,
.cid-uW23PmHYC7 .nav-link:focus {
  outline: none;
}
.cid-uW23PmHYC7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uW23PmHYC7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uW23PmHYC7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uW23PmHYC7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uW23PmHYC7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uW23PmHYC7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uW23PmHYC7 .navbar {
  height: 120px;
  transition: all 0.3s;
  border-bottom-width: 0px;
}
.cid-uW23PmHYC7 .navbar.opened {
  transition: all 0.3s;
}
.cid-uW23PmHYC7 .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uW23PmHYC7 .navbar .navbar-logo img {
  width: auto;
}
.cid-uW23PmHYC7 .navbar .navbar-collapse {
  justify-content: space-evenly;
  z-index: 1;
}
.cid-uW23PmHYC7 .navbar.collapsed {
  justify-content: center;
}
.cid-uW23PmHYC7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uW23PmHYC7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uW23PmHYC7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-uW23PmHYC7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uW23PmHYC7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uW23PmHYC7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uW23PmHYC7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uW23PmHYC7 .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uW23PmHYC7 .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uW23PmHYC7 .navbar .navbar-collapse {
    padding: 34px 0;
  }
  .cid-uW23PmHYC7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uW23PmHYC7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uW23PmHYC7 .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uW23PmHYC7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uW23PmHYC7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uW23PmHYC7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uW23PmHYC7 .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uW23PmHYC7 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uW23PmHYC7 .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uW23PmHYC7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uW23PmHYC7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uW23PmHYC7 .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uW23PmHYC7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uW23PmHYC7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uW23PmHYC7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uW23PmHYC7 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uW23PmHYC7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uW23PmHYC7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uW23PmHYC7 .dropdown-item.active,
.cid-uW23PmHYC7 .dropdown-item:active {
  background-color: transparent;
}
.cid-uW23PmHYC7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uW23PmHYC7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uW23PmHYC7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uW23PmHYC7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #c9d0b1;
}
.cid-uW23PmHYC7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uW23PmHYC7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uW23PmHYC7 ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-uW23PmHYC7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uW23PmHYC7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #c9d0b1;
}
.cid-uW23PmHYC7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #394c30;
}
.cid-uW23PmHYC7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uW23PmHYC7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uW23PmHYC7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uW23PmHYC7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uW23PmHYC7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uW23PmHYC7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uW23PmHYC7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uW23PmHYC7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uW23PmHYC7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uW23PmHYC7 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uW23PmHYC7 .navbar {
    height: 70px;
  }
  .cid-uW23PmHYC7 .navbar.opened {
    height: auto;
  }
  .cid-uW23PmHYC7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uW23PmHYC7 .mbr-section-subtitle {
  color: #394c30;
}
.cid-uW23PmHYC7 .mbr-text {
  color: #394c30;
}
.cid-uY6XAyxq9S {
  background-color: #ffffff;
  display: block;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
@media (min-width: 768px) {
  .cid-uY6XAyxq9S .carousel {
    height: 650px;
  }
}
@media (max-width: 767px) {
  .cid-uY6XAyxq9S .carousel {
    height: 100vh;
  }
}
.cid-uY6XAyxq9S .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uY6XAyxq9S .carousel-item,
.cid-uY6XAyxq9S .carousel-inner {
  height: 100%;
}
.cid-uY6XAyxq9S .carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-uY6XAyxq9S .carousel-caption {
    right: 5%;
    left: 5%;
  }
}
.cid-uY6XAyxq9S .mbr-section-title {
  letter-spacing: 12px;
  margin-bottom: 25px;
}
@media (min-width: 1400px) {
  .cid-uY6XAyxq9S .mbr-section-title.display-1 {
    font-size: 90px;
    line-height: 160px;
  }
}
.cid-uY6XAyxq9S .mbr-section-btn {
  margin-top: 42px;
}
.cid-uY6XAyxq9S .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uY6XAyxq9S .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uY6XAyxq9S .carousel-control:hover.carousel-control-prev .mobi-mbri {
  transform: translateX(3px);
}
.cid-uY6XAyxq9S .carousel-control:hover.carousel-control-next .mobi-mbri {
  transform: translateX(-3px);
}
.cid-uY6XAyxq9S .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uY6XAyxq9S .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uY6XAyxq9S .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uY6XAyxq9S .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uY6XAyxq9S .carousel-control {
  top: 50%;
  width: 92px;
  height: 92px;
  margin-top: -1.5rem;
  font-size: 21px;
  border-radius: 50%;
  color: #202020;
  background-color: transparent;
  border: 1px solid #fef2f2;
  transition: all 0.2s ease-out;
  opacity: 1;
}
.cid-uY6XAyxq9S .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
  color: #fef2f2 !important;
}
.cid-uY6XAyxq9S .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
  color: #fef2f2 !important;
}
.cid-uY6XAyxq9S .carousel-control .mobi-mbri {
  transition: all 0.2s ease-out;
}
@media (max-width: 768px) {
  .cid-uY6XAyxq9S .carousel-control {
    display: none !important;
  }
}
.cid-uY6XAyxq9S .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 2rem !important;
  align-items: center;
}
.cid-uY6XAyxq9S .carousel-indicators li {
  max-width: 10px;
  max-height: 10px;
  height: 6px;
  width: 6px;
  margin: 15px;
  background-color: #fef2f2;
  border: none;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.2s ease-in-out;
}
.cid-uY6XAyxq9S .carousel-indicators li.active,
.cid-uY6XAyxq9S .carousel-indicators li:hover {
  transform: scale(1.6);
}
.cid-uY6XAyxq9S .carousel-indicators li::after,
.cid-uY6XAyxq9S .carousel-indicators li::before {
  content: none;
}
.cid-uY6XAyxq9S .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uY6XAyxq9S .carousel-indicators {
    display: none !important;
  }
}
.cid-uY6XAyxq9S .mbr-section-text,
.cid-uY6XAyxq9S .mbr-section-btn {
  text-align: center;
}
.cid-uY6YW8KJCV {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #fffcf6;
}
.cid-uY6YW8KJCV .card-title {
  margin-bottom: 20px;
  color: #394c30;
}
.cid-uY6YW8KJCV .mbr-section-btn {
  margin-top: 43px;
}
.cid-uY6YW8KJCV .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-uY6YW8KJCV .card-wrapper {
    margin-top: 60px;
  }
}
.cid-uY6YW8KJCV .mbr-text,
.cid-uY6YW8KJCV .mbr-section-btn {
  color: #394c30;
  text-align: left;
}
.cid-v1Iba6dKxd {
  padding-top: 4rem;
  padding-bottom: 8rem;
  background-color: #fffcf6;
}
.cid-v1Iba6dKxd .card-title {
  margin-bottom: 20px;
  color: #394c30;
}
.cid-v1Iba6dKxd .mbr-section-btn {
  margin-top: 43px;
}
.cid-v1Iba6dKxd .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-v1Iba6dKxd .card-wrapper {
    margin-top: 60px;
  }
}
.cid-v1Iba6dKxd .mbr-text,
.cid-v1Iba6dKxd .mbr-section-btn {
  color: #394c30;
  text-align: left;
}
.cid-uUdovZuBPT {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uUdovZuBPT .mbr-section-title {
  margin: 20px 0;
  color: #394c30;
}
.cid-uUdovZuBPT .main_header {
  background-color: #e4ead0;
  position: relative;
  z-index: 1;
  padding: 8rem 2.75rem;
}
@media (max-width: 991px) {
  .cid-uUdovZuBPT .main_header {
    padding: 3.5rem 2.75rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-uUdovZuBPT .main_header {
    padding: 3.5rem .75rem 4rem;
  }
}
.cid-uUdovZuBPT .shape {
  position: absolute;
  z-index: -1;
  top: -40px;
  right: 20px;
  max-width: 160px;
}
.cid-uUdovZuBPT .shape img {
  width: 100%;
  height: auto;
  max-height: 160px;
  object-fit: contain;
}
@media (max-width: 767px) {
  .cid-uUdovZuBPT .shape {
    max-width: 80px;
  }
}
.cid-uUdovZuBPT .shape2 {
  width: 185px;
  height: auto;
  position: absolute;
  left: 70px;
  bottom: -40px;
}
.cid-uUdovZuBPT .shape2 img {
  width: 100%;
  object-fit: contain;
  height: auto;
}
@media (max-width: 767px) {
  .cid-uUdovZuBPT .shape2 {
    width: 95px;
    bottom: -20px;
  }
}
.cid-v1I3jchoPo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fffcf6;
}
.cid-v1I3jchoPo .card-title {
  margin-bottom: 20px;
  color: #394c30;
}
.cid-v1I3jchoPo .mbr-section-btn {
  margin-top: 43px;
}
.cid-v1I3jchoPo .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-v1I3jchoPo .card-wrapper {
    margin-top: 60px;
  }
}
.cid-v1I3jchoPo .mbr-text,
.cid-v1I3jchoPo .mbr-section-btn {
  color: #394c30;
}
.cid-v2qNcGbElv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9d0b1;
}
.cid-v2qNcGbElv .mbr-text {
  color: #555555;
  margin: 10px 0;
  width: 100%;
  text-align: center;
}
.cid-uW23PmHYC7 .navbar-dropdown {
  background-color: #c9d0b1 !important;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uW23PmHYC7 .menu_box .navbar.opened,
  .cid-uW23PmHYC7 .menu_box .navbar-collapse {
    background-color: #c9d0b1 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uW23PmHYC7 .navbar-dropdown {
  position: relative !important;
}
.cid-uW23PmHYC7 nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uW23PmHYC7 nav.navbar {
    flex-wrap: nowrap;
  }
  .cid-uW23PmHYC7 .offcanvas {
    padding: 120px 60px 35px;
    width: 480px;
    background-color: #c9d0b1;
  }
  .cid-uW23PmHYC7 .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uW23PmHYC7 .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uW23PmHYC7 .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uW23PmHYC7 .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uW23PmHYC7 .offcanvas-body .mbr-text,
  .cid-uW23PmHYC7 .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-uW23PmHYC7 .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-uW23PmHYC7 .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
    color: #c9d0b1;
  }
  .cid-uW23PmHYC7 .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 1px;
    border-right: 5px;
    background-color: #394c30;
  }
  .cid-uW23PmHYC7 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uW23PmHYC7 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uW23PmHYC7 .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uW23PmHYC7 .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uW23PmHYC7 ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uW23PmHYC7 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uW23PmHYC7 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uW23PmHYC7 .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uW23PmHYC7 li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: .3em !important;
  }
  .cid-uW23PmHYC7 li.nav-item:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: currentColor;
    bottom: -5px;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.32s cubic-bezier(0.31, 0.29, 0.05, 0.96);
  }
  .cid-uW23PmHYC7 li.nav-item:hover:after {
    transform-origin: left;
    transform: scaleX(0.999);
  }
  .cid-uW23PmHYC7 .lg_brand {
    margin: 0 1rem;
  }
}
.cid-uW23PmHYC7 .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uW23PmHYC7 .nav-item {
    margin: 4px 19px;
  }
}
@media (max-width: 991px) {
  .cid-uW23PmHYC7 .nav-item {
    margin: 0 !important;
  }
}
.cid-uW23PmHYC7 .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uW23PmHYC7 .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: 72px !important;
    left: -40px !important;
  }
  .cid-uW23PmHYC7 .dropdown-menu.dropdown-submenu {
    left: 215px!important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uW23PmHYC7 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uW23PmHYC7 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uW23PmHYC7 .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uW23PmHYC7 .offcanvas_box {
    display: none;
  }
}
.cid-uW23PmHYC7 .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-uW23PmHYC7 .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uW23PmHYC7 .dropdown .dropdown-item:hover {
  color: #e5673b !important;
}
.cid-uW23PmHYC7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uW23PmHYC7 .nav-link {
  position: relative;
}
.cid-uW23PmHYC7 .container {
  display: flex;
  margin: auto;
}
.cid-uW23PmHYC7 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #394c30;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uW23PmHYC7 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uW23PmHYC7 .iconfont-wrapper:hover {
  background-color: #2d3c26;
}
.cid-uW23PmHYC7 .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 1200px) {
  .cid-uW23PmHYC7 .navbar-nav {
    margin: 0 2rem;
  }
}
.cid-uW23PmHYC7 .navbar-nav .nav-item:last-child {
  margin-right: 0 !important;
}
.cid-uW23PmHYC7 .dropdown-menu,
.cid-uW23PmHYC7 .navbar.opened {
  background: #c9d0b1 !important;
}
.cid-uW23PmHYC7 .nav-item:focus,
.cid-uW23PmHYC7 .nav-link:focus {
  outline: none;
}
.cid-uW23PmHYC7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uW23PmHYC7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uW23PmHYC7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uW23PmHYC7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uW23PmHYC7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uW23PmHYC7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uW23PmHYC7 .navbar {
  height: 120px;
  transition: all 0.3s;
  border-bottom-width: 0px;
}
.cid-uW23PmHYC7 .navbar.opened {
  transition: all 0.3s;
}
.cid-uW23PmHYC7 .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uW23PmHYC7 .navbar .navbar-logo img {
  width: auto;
}
.cid-uW23PmHYC7 .navbar .navbar-collapse {
  justify-content: space-evenly;
  z-index: 1;
}
.cid-uW23PmHYC7 .navbar.collapsed {
  justify-content: center;
}
.cid-uW23PmHYC7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uW23PmHYC7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uW23PmHYC7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-uW23PmHYC7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uW23PmHYC7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uW23PmHYC7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uW23PmHYC7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uW23PmHYC7 .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uW23PmHYC7 .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uW23PmHYC7 .navbar .navbar-collapse {
    padding: 34px 0;
  }
  .cid-uW23PmHYC7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uW23PmHYC7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uW23PmHYC7 .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uW23PmHYC7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uW23PmHYC7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uW23PmHYC7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uW23PmHYC7 .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uW23PmHYC7 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uW23PmHYC7 .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uW23PmHYC7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uW23PmHYC7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uW23PmHYC7 .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uW23PmHYC7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uW23PmHYC7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uW23PmHYC7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uW23PmHYC7 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uW23PmHYC7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uW23PmHYC7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uW23PmHYC7 .dropdown-item.active,
.cid-uW23PmHYC7 .dropdown-item:active {
  background-color: transparent;
}
.cid-uW23PmHYC7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uW23PmHYC7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uW23PmHYC7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uW23PmHYC7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #c9d0b1;
}
.cid-uW23PmHYC7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uW23PmHYC7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uW23PmHYC7 ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-uW23PmHYC7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uW23PmHYC7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #c9d0b1;
}
.cid-uW23PmHYC7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #394c30;
}
.cid-uW23PmHYC7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uW23PmHYC7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uW23PmHYC7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uW23PmHYC7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uW23PmHYC7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uW23PmHYC7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uW23PmHYC7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uW23PmHYC7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uW23PmHYC7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uW23PmHYC7 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uW23PmHYC7 .navbar {
    height: 70px;
  }
  .cid-uW23PmHYC7 .navbar.opened {
    height: auto;
  }
  .cid-uW23PmHYC7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uW23PmHYC7 .mbr-section-subtitle {
  color: #394c30;
}
.cid-uW23PmHYC7 .mbr-text {
  color: #394c30;
}
.cid-uY6HCRttyN {
  background-color: #ffffff;
  display: block;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
@media (min-width: 768px) {
  .cid-uY6HCRttyN .carousel {
    height: 650px;
  }
}
@media (max-width: 767px) {
  .cid-uY6HCRttyN .carousel {
    height: 100vh;
  }
}
.cid-uY6HCRttyN .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uY6HCRttyN .carousel-item,
.cid-uY6HCRttyN .carousel-inner {
  height: 100%;
}
.cid-uY6HCRttyN .carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-uY6HCRttyN .carousel-caption {
    right: 5%;
    left: 5%;
  }
}
.cid-uY6HCRttyN .mbr-section-title {
  letter-spacing: 12px;
  margin-bottom: 25px;
}
@media (min-width: 1400px) {
  .cid-uY6HCRttyN .mbr-section-title.display-1 {
    font-size: 90px;
    line-height: 160px;
  }
}
.cid-uY6HCRttyN .mbr-section-btn {
  margin-top: 42px;
}
.cid-uY6HCRttyN .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uY6HCRttyN .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uY6HCRttyN .carousel-control:hover.carousel-control-prev .mobi-mbri {
  transform: translateX(3px);
}
.cid-uY6HCRttyN .carousel-control:hover.carousel-control-next .mobi-mbri {
  transform: translateX(-3px);
}
.cid-uY6HCRttyN .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uY6HCRttyN .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uY6HCRttyN .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uY6HCRttyN .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uY6HCRttyN .carousel-control {
  top: 50%;
  width: 92px;
  height: 92px;
  margin-top: -1.5rem;
  font-size: 21px;
  border-radius: 50%;
  color: #202020;
  background-color: transparent;
  border: 1px solid #fef2f2;
  transition: all 0.2s ease-out;
  opacity: 1;
}
.cid-uY6HCRttyN .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
  color: #fef2f2 !important;
}
.cid-uY6HCRttyN .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
  color: #fef2f2 !important;
}
.cid-uY6HCRttyN .carousel-control .mobi-mbri {
  transition: all 0.2s ease-out;
}
@media (max-width: 768px) {
  .cid-uY6HCRttyN .carousel-control {
    display: none !important;
  }
}
.cid-uY6HCRttyN .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 2rem !important;
  align-items: center;
}
.cid-uY6HCRttyN .carousel-indicators li {
  max-width: 10px;
  max-height: 10px;
  height: 6px;
  width: 6px;
  margin: 15px;
  background-color: #fef2f2;
  border: none;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.2s ease-in-out;
}
.cid-uY6HCRttyN .carousel-indicators li.active,
.cid-uY6HCRttyN .carousel-indicators li:hover {
  transform: scale(1.6);
}
.cid-uY6HCRttyN .carousel-indicators li::after,
.cid-uY6HCRttyN .carousel-indicators li::before {
  content: none;
}
.cid-uY6HCRttyN .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uY6HCRttyN .carousel-indicators {
    display: none !important;
  }
}
.cid-uY6HCRttyN .mbr-section-text,
.cid-uY6HCRttyN .mbr-section-btn {
  text-align: center;
}
.cid-uW1bAmPP5v {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #f9f5ee;
}
.cid-uW1bAmPP5v .card-title {
  margin-bottom: 20px;
  color: #394c30;
}
.cid-uW1bAmPP5v .mbr-section-btn {
  margin-top: 43px;
}
.cid-uW1bAmPP5v .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-uW1bAmPP5v .card-wrapper {
    margin-top: 60px;
  }
}
.cid-uW1bAmPP5v .mbr-text,
.cid-uW1bAmPP5v .mbr-section-btn {
  color: #394c30;
}
.cid-uUe9lux5j4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uUe9lux5j4 .card-title {
  margin-bottom: 20px;
  color: #394c30;
}
.cid-uUe9lux5j4 .mbr-section-btn {
  margin-top: 43px;
}
.cid-uUe9lux5j4 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-uUe9lux5j4 .card-wrapper {
    margin-top: 60px;
  }
}
.cid-uUe9lux5j4 .mbr-text,
.cid-uUe9lux5j4 .mbr-section-btn {
  color: #394c30;
}
.cid-uUeavWa2f2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f5ee;
}
.cid-uUeavWa2f2 .card-title {
  margin-bottom: 20px;
  color: #394c30;
}
.cid-uUeavWa2f2 .mbr-section-btn {
  margin-top: 43px;
}
.cid-uUeavWa2f2 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-uUeavWa2f2 .card-wrapper {
    margin-top: 60px;
  }
}
.cid-uUeavWa2f2 .mbr-text,
.cid-uUeavWa2f2 .mbr-section-btn {
  color: #394c30;
}
.cid-uUeamP2zsO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uUeamP2zsO .card-title {
  margin-bottom: 20px;
  color: #394c30;
}
.cid-uUeamP2zsO .mbr-section-btn {
  margin-top: 43px;
}
.cid-uUeamP2zsO .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-uUeamP2zsO .card-wrapper {
    margin-top: 60px;
  }
}
.cid-uUeamP2zsO .mbr-text,
.cid-uUeamP2zsO .mbr-section-btn {
  color: #394c30;
}
.cid-v0XL3vtvz0 {
  padding-top: 4rem;
  padding-bottom: 6rem;
  background-color: #f9f5ee;
}
.cid-v0XL3vtvz0 .image-wrapper,
.cid-v0XL3vtvz0 img {
  width: 100%;
  object-fit: contain;
}
.cid-v0XL3vtvz0 img {
  display: inline-block;
  width: 6rem;
}
.cid-v0XL3vtvz0 .mbr-section-title {
  margin: 25px 0;
}
.cid-v0XL3vtvz0 .mbr-text {
  margin-bottom: 19px;
}
.cid-v0XL3vtvz0 .mbr-section-title,
.cid-v0XL3vtvz0 .image-wrapper {
  color: #394c30;
}
.cid-uUePkZgrba {
  padding-top: 6rem;
  padding-bottom: 6rem;
  position: relative;
  background-color: #ffffff;
}
.cid-uUePkZgrba .mbr-section-title {
  color: #202020;
  margin-bottom: 18px;
}
.cid-uUePkZgrba .main_header {
  margin-bottom: 150px;
}
@media (max-width: 991px) {
  .cid-uUePkZgrba .main_header {
    margin-bottom: 100px;
  }
}
@media (max-width: 767px) {
  .cid-uUePkZgrba .main_header {
    margin-bottom: 60px;
  }
}
.cid-uUePkZgrba img,
.cid-uUePkZgrba .item-img {
  width: 100%;
  object-fit: cover;
  height: 400px;
}
.cid-uUePkZgrba .item {
  margin-bottom: 2rem;
}
.cid-uUePkZgrba .item-wrapper {
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  overflow: visible;
}
.cid-v2qNcGbElv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9d0b1;
}
.cid-v2qNcGbElv .mbr-text {
  color: #555555;
  margin: 10px 0;
  width: 100%;
  text-align: center;
}
.cid-uW23PmHYC7 .navbar-dropdown {
  background-color: #c9d0b1 !important;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uW23PmHYC7 .menu_box .navbar.opened,
  .cid-uW23PmHYC7 .menu_box .navbar-collapse {
    background-color: #c9d0b1 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uW23PmHYC7 .navbar-dropdown {
  position: relative !important;
}
.cid-uW23PmHYC7 nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uW23PmHYC7 nav.navbar {
    flex-wrap: nowrap;
  }
  .cid-uW23PmHYC7 .offcanvas {
    padding: 120px 60px 35px;
    width: 480px;
    background-color: #c9d0b1;
  }
  .cid-uW23PmHYC7 .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uW23PmHYC7 .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uW23PmHYC7 .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uW23PmHYC7 .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uW23PmHYC7 .offcanvas-body .mbr-text,
  .cid-uW23PmHYC7 .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-uW23PmHYC7 .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-uW23PmHYC7 .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
    color: #c9d0b1;
  }
  .cid-uW23PmHYC7 .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 1px;
    border-right: 5px;
    background-color: #394c30;
  }
  .cid-uW23PmHYC7 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uW23PmHYC7 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uW23PmHYC7 .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uW23PmHYC7 .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uW23PmHYC7 ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uW23PmHYC7 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uW23PmHYC7 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uW23PmHYC7 .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uW23PmHYC7 li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: .3em !important;
  }
  .cid-uW23PmHYC7 li.nav-item:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: currentColor;
    bottom: -5px;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.32s cubic-bezier(0.31, 0.29, 0.05, 0.96);
  }
  .cid-uW23PmHYC7 li.nav-item:hover:after {
    transform-origin: left;
    transform: scaleX(0.999);
  }
  .cid-uW23PmHYC7 .lg_brand {
    margin: 0 1rem;
  }
}
.cid-uW23PmHYC7 .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uW23PmHYC7 .nav-item {
    margin: 4px 19px;
  }
}
@media (max-width: 991px) {
  .cid-uW23PmHYC7 .nav-item {
    margin: 0 !important;
  }
}
.cid-uW23PmHYC7 .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uW23PmHYC7 .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: 72px !important;
    left: -40px !important;
  }
  .cid-uW23PmHYC7 .dropdown-menu.dropdown-submenu {
    left: 215px!important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uW23PmHYC7 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uW23PmHYC7 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uW23PmHYC7 .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uW23PmHYC7 .offcanvas_box {
    display: none;
  }
}
.cid-uW23PmHYC7 .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-uW23PmHYC7 .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uW23PmHYC7 .dropdown .dropdown-item:hover {
  color: #e5673b !important;
}
.cid-uW23PmHYC7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uW23PmHYC7 .nav-link {
  position: relative;
}
.cid-uW23PmHYC7 .container {
  display: flex;
  margin: auto;
}
.cid-uW23PmHYC7 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #394c30;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uW23PmHYC7 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uW23PmHYC7 .iconfont-wrapper:hover {
  background-color: #2d3c26;
}
.cid-uW23PmHYC7 .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 1200px) {
  .cid-uW23PmHYC7 .navbar-nav {
    margin: 0 2rem;
  }
}
.cid-uW23PmHYC7 .navbar-nav .nav-item:last-child {
  margin-right: 0 !important;
}
.cid-uW23PmHYC7 .dropdown-menu,
.cid-uW23PmHYC7 .navbar.opened {
  background: #c9d0b1 !important;
}
.cid-uW23PmHYC7 .nav-item:focus,
.cid-uW23PmHYC7 .nav-link:focus {
  outline: none;
}
.cid-uW23PmHYC7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uW23PmHYC7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uW23PmHYC7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uW23PmHYC7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uW23PmHYC7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uW23PmHYC7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uW23PmHYC7 .navbar {
  height: 120px;
  transition: all 0.3s;
  border-bottom-width: 0px;
}
.cid-uW23PmHYC7 .navbar.opened {
  transition: all 0.3s;
}
.cid-uW23PmHYC7 .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uW23PmHYC7 .navbar .navbar-logo img {
  width: auto;
}
.cid-uW23PmHYC7 .navbar .navbar-collapse {
  justify-content: space-evenly;
  z-index: 1;
}
.cid-uW23PmHYC7 .navbar.collapsed {
  justify-content: center;
}
.cid-uW23PmHYC7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uW23PmHYC7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uW23PmHYC7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-uW23PmHYC7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uW23PmHYC7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uW23PmHYC7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uW23PmHYC7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uW23PmHYC7 .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uW23PmHYC7 .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uW23PmHYC7 .navbar .navbar-collapse {
    padding: 34px 0;
  }
  .cid-uW23PmHYC7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uW23PmHYC7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uW23PmHYC7 .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uW23PmHYC7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uW23PmHYC7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uW23PmHYC7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uW23PmHYC7 .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uW23PmHYC7 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uW23PmHYC7 .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uW23PmHYC7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uW23PmHYC7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uW23PmHYC7 .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uW23PmHYC7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uW23PmHYC7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uW23PmHYC7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uW23PmHYC7 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uW23PmHYC7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uW23PmHYC7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uW23PmHYC7 .dropdown-item.active,
.cid-uW23PmHYC7 .dropdown-item:active {
  background-color: transparent;
}
.cid-uW23PmHYC7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uW23PmHYC7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uW23PmHYC7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uW23PmHYC7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #c9d0b1;
}
.cid-uW23PmHYC7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uW23PmHYC7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uW23PmHYC7 ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-uW23PmHYC7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uW23PmHYC7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #c9d0b1;
}
.cid-uW23PmHYC7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #394c30;
}
.cid-uW23PmHYC7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uW23PmHYC7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uW23PmHYC7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uW23PmHYC7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uW23PmHYC7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uW23PmHYC7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uW23PmHYC7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uW23PmHYC7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uW23PmHYC7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uW23PmHYC7 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uW23PmHYC7 .navbar {
    height: 70px;
  }
  .cid-uW23PmHYC7 .navbar.opened {
    height: auto;
  }
  .cid-uW23PmHYC7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uW23PmHYC7 .mbr-section-subtitle {
  color: #394c30;
}
.cid-uW23PmHYC7 .mbr-text {
  color: #394c30;
}
.cid-uW1RlbN1Za {
  background-color: #ffffff;
  display: block;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
@media (min-width: 768px) {
  .cid-uW1RlbN1Za .carousel {
    height: 650px;
  }
}
@media (max-width: 767px) {
  .cid-uW1RlbN1Za .carousel {
    height: 100vh;
  }
}
.cid-uW1RlbN1Za .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uW1RlbN1Za .carousel-item,
.cid-uW1RlbN1Za .carousel-inner {
  height: 100%;
}
.cid-uW1RlbN1Za .carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-uW1RlbN1Za .carousel-caption {
    right: 5%;
    left: 5%;
  }
}
.cid-uW1RlbN1Za .mbr-section-title {
  letter-spacing: 12px;
  margin-bottom: 25px;
}
@media (min-width: 1400px) {
  .cid-uW1RlbN1Za .mbr-section-title.display-1 {
    font-size: 90px;
    line-height: 160px;
  }
}
.cid-uW1RlbN1Za .mbr-section-btn {
  margin-top: 42px;
}
.cid-uW1RlbN1Za .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uW1RlbN1Za .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uW1RlbN1Za .carousel-control:hover.carousel-control-prev .mobi-mbri {
  transform: translateX(3px);
}
.cid-uW1RlbN1Za .carousel-control:hover.carousel-control-next .mobi-mbri {
  transform: translateX(-3px);
}
.cid-uW1RlbN1Za .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uW1RlbN1Za .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uW1RlbN1Za .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uW1RlbN1Za .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uW1RlbN1Za .carousel-control {
  top: 50%;
  width: 92px;
  height: 92px;
  margin-top: -1.5rem;
  font-size: 21px;
  border-radius: 50%;
  color: #202020;
  background-color: transparent;
  border: 1px solid #fef2f2;
  transition: all 0.2s ease-out;
  opacity: 1;
}
.cid-uW1RlbN1Za .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
  color: #fef2f2 !important;
}
.cid-uW1RlbN1Za .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
  color: #fef2f2 !important;
}
.cid-uW1RlbN1Za .carousel-control .mobi-mbri {
  transition: all 0.2s ease-out;
}
@media (max-width: 768px) {
  .cid-uW1RlbN1Za .carousel-control {
    display: none !important;
  }
}
.cid-uW1RlbN1Za .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 2rem !important;
  align-items: center;
}
.cid-uW1RlbN1Za .carousel-indicators li {
  max-width: 10px;
  max-height: 10px;
  height: 6px;
  width: 6px;
  margin: 15px;
  background-color: #fef2f2;
  border: none;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.2s ease-in-out;
}
.cid-uW1RlbN1Za .carousel-indicators li.active,
.cid-uW1RlbN1Za .carousel-indicators li:hover {
  transform: scale(1.6);
}
.cid-uW1RlbN1Za .carousel-indicators li::after,
.cid-uW1RlbN1Za .carousel-indicators li::before {
  content: none;
}
.cid-uW1RlbN1Za .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uW1RlbN1Za .carousel-indicators {
    display: none !important;
  }
}
.cid-uW1RlbN1Za .mbr-section-text,
.cid-uW1RlbN1Za .mbr-section-btn {
  text-align: center;
}
.cid-v1HS97VIYh {
  padding-top: 4rem;
  padding-bottom: 5rem;
  position: relative;
  background-color: #ffffff;
}
.cid-v1HS97VIYh .content_box {
  padding: 115px 3rem;
  background-color: #e4ead0;
  text-align: center;
  height: 100%;
}
@media (max-width: 991px) {
  .cid-v1HS97VIYh .content_box {
    margin-top: 30px;
    padding: 65px 1rem;
  }
}
.cid-v1HS97VIYh .mbr-section-title {
  color: #394c30;
  margin-bottom: 29px;
  text-align: left;
}
.cid-v1HS97VIYh img,
.cid-v1HS97VIYh .image-wrapper {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-v1HS97VIYh .list_widget {
  padding-bottom: 20px;
}
.cid-v1HS97VIYh .mbr-section-subtitle {
  line-height: 1.2727em;
  color: #394c30;
}
.cid-v1HS97VIYh .linkBtn {
  margin-top: 23px;
}
.cid-v1HS97VIYh .linkBtn a {
  position: relative;
  display: inline-block;
  padding: 1px 7px;
  vertical-align: middle;
  overflow: hidden;
  line-height: 2em;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: .2em;
}
.cid-v1HS97VIYh .linkBtn a:after,
.cid-v1HS97VIYh .linkBtn a:before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  background-color: currentColor;
  transition: transform 0.4s cubic-bezier(0.31, 0.29, 0.05, 0.96);
}
.cid-v1HS97VIYh .linkBtn a:before {
  left: 0;
}
.cid-v1HS97VIYh .linkBtn a:after {
  left: -100%;
  transition-delay: .3s;
}
.cid-v1HS97VIYh .linkBtn a:hover:before,
.cid-v1HS97VIYh .linkBtn a:hover:after {
  transform: translateX(100%);
}
.cid-v1HS97VIYh .mbr-text,
.cid-v1HS97VIYh .linkBtn {
  color: #394c30;
  text-align: left;
}
.cid-v1HPkUf8b2 {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #f9f5ee;
}
.cid-v1HPkUf8b2 .image-wrapper,
.cid-v1HPkUf8b2 img {
  width: 100%;
  object-fit: contain;
}
.cid-v1HPkUf8b2 img {
  display: inline-block;
  width: 9rem;
}
.cid-v1HPkUf8b2 .mbr-section-title {
  margin: 25px 0;
}
.cid-v1HPkUf8b2 .mbr-text {
  margin-bottom: 19px;
}
.cid-v1HPkUf8b2 .mbr-section-title,
.cid-v1HPkUf8b2 .image-wrapper {
  color: #394c30;
}
.cid-v1HPkUf8b2 .mbr-text,
.cid-v1HPkUf8b2 .mbr-section-btn {
  color: #394c30;
}
.cid-uW1xdNlAQp {
  padding-top: 4rem;
  padding-bottom: 4rem;
  position: relative;
  background-color: #ffffff;
}
.cid-uW1xdNlAQp .mbr-section-title {
  color: #202020;
  margin-bottom: 18px;
}
.cid-uW1xdNlAQp .main_header {
  margin-bottom: 150px;
}
@media (max-width: 991px) {
  .cid-uW1xdNlAQp .main_header {
    margin-bottom: 100px;
  }
}
@media (max-width: 767px) {
  .cid-uW1xdNlAQp .main_header {
    margin-bottom: 60px;
  }
}
.cid-uW1xdNlAQp img,
.cid-uW1xdNlAQp .item-img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.cid-uW1xdNlAQp .item {
  margin-bottom: 2rem;
}
.cid-uW1xdNlAQp .item-wrapper {
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  overflow: visible;
}
.cid-uW1xdNlAQp .mbr-text {
  color: #394c30;
}
.cid-v2qNcGbElv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9d0b1;
}
.cid-v2qNcGbElv .mbr-text {
  color: #555555;
  margin: 10px 0;
  width: 100%;
  text-align: center;
}
.cid-uW23PmHYC7 .navbar-dropdown {
  background-color: #c9d0b1 !important;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uW23PmHYC7 .menu_box .navbar.opened,
  .cid-uW23PmHYC7 .menu_box .navbar-collapse {
    background-color: #c9d0b1 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uW23PmHYC7 .navbar-dropdown {
  position: relative !important;
}
.cid-uW23PmHYC7 nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uW23PmHYC7 nav.navbar {
    flex-wrap: nowrap;
  }
  .cid-uW23PmHYC7 .offcanvas {
    padding: 120px 60px 35px;
    width: 480px;
    background-color: #c9d0b1;
  }
  .cid-uW23PmHYC7 .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uW23PmHYC7 .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uW23PmHYC7 .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uW23PmHYC7 .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uW23PmHYC7 .offcanvas-body .mbr-text,
  .cid-uW23PmHYC7 .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-uW23PmHYC7 .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-uW23PmHYC7 .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
    color: #c9d0b1;
  }
  .cid-uW23PmHYC7 .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 1px;
    border-right: 5px;
    background-color: #394c30;
  }
  .cid-uW23PmHYC7 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uW23PmHYC7 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uW23PmHYC7 .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uW23PmHYC7 .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uW23PmHYC7 ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uW23PmHYC7 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uW23PmHYC7 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uW23PmHYC7 .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uW23PmHYC7 li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: .3em !important;
  }
  .cid-uW23PmHYC7 li.nav-item:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: currentColor;
    bottom: -5px;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.32s cubic-bezier(0.31, 0.29, 0.05, 0.96);
  }
  .cid-uW23PmHYC7 li.nav-item:hover:after {
    transform-origin: left;
    transform: scaleX(0.999);
  }
  .cid-uW23PmHYC7 .lg_brand {
    margin: 0 1rem;
  }
}
.cid-uW23PmHYC7 .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uW23PmHYC7 .nav-item {
    margin: 4px 19px;
  }
}
@media (max-width: 991px) {
  .cid-uW23PmHYC7 .nav-item {
    margin: 0 !important;
  }
}
.cid-uW23PmHYC7 .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uW23PmHYC7 .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: 72px !important;
    left: -40px !important;
  }
  .cid-uW23PmHYC7 .dropdown-menu.dropdown-submenu {
    left: 215px!important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uW23PmHYC7 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uW23PmHYC7 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uW23PmHYC7 .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uW23PmHYC7 .offcanvas_box {
    display: none;
  }
}
.cid-uW23PmHYC7 .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-uW23PmHYC7 .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uW23PmHYC7 .dropdown .dropdown-item:hover {
  color: #e5673b !important;
}
.cid-uW23PmHYC7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uW23PmHYC7 .nav-link {
  position: relative;
}
.cid-uW23PmHYC7 .container {
  display: flex;
  margin: auto;
}
.cid-uW23PmHYC7 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #394c30;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uW23PmHYC7 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uW23PmHYC7 .iconfont-wrapper:hover {
  background-color: #2d3c26;
}
.cid-uW23PmHYC7 .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 1200px) {
  .cid-uW23PmHYC7 .navbar-nav {
    margin: 0 2rem;
  }
}
.cid-uW23PmHYC7 .navbar-nav .nav-item:last-child {
  margin-right: 0 !important;
}
.cid-uW23PmHYC7 .dropdown-menu,
.cid-uW23PmHYC7 .navbar.opened {
  background: #c9d0b1 !important;
}
.cid-uW23PmHYC7 .nav-item:focus,
.cid-uW23PmHYC7 .nav-link:focus {
  outline: none;
}
.cid-uW23PmHYC7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uW23PmHYC7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uW23PmHYC7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uW23PmHYC7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uW23PmHYC7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uW23PmHYC7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uW23PmHYC7 .navbar {
  height: 120px;
  transition: all 0.3s;
  border-bottom-width: 0px;
}
.cid-uW23PmHYC7 .navbar.opened {
  transition: all 0.3s;
}
.cid-uW23PmHYC7 .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uW23PmHYC7 .navbar .navbar-logo img {
  width: auto;
}
.cid-uW23PmHYC7 .navbar .navbar-collapse {
  justify-content: space-evenly;
  z-index: 1;
}
.cid-uW23PmHYC7 .navbar.collapsed {
  justify-content: center;
}
.cid-uW23PmHYC7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uW23PmHYC7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uW23PmHYC7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-uW23PmHYC7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uW23PmHYC7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uW23PmHYC7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uW23PmHYC7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uW23PmHYC7 .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uW23PmHYC7 .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uW23PmHYC7 .navbar .navbar-collapse {
    padding: 34px 0;
  }
  .cid-uW23PmHYC7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uW23PmHYC7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uW23PmHYC7 .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uW23PmHYC7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uW23PmHYC7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uW23PmHYC7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uW23PmHYC7 .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uW23PmHYC7 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uW23PmHYC7 .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uW23PmHYC7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uW23PmHYC7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uW23PmHYC7 .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uW23PmHYC7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uW23PmHYC7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uW23PmHYC7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uW23PmHYC7 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uW23PmHYC7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uW23PmHYC7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uW23PmHYC7 .dropdown-item.active,
.cid-uW23PmHYC7 .dropdown-item:active {
  background-color: transparent;
}
.cid-uW23PmHYC7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uW23PmHYC7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uW23PmHYC7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uW23PmHYC7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #c9d0b1;
}
.cid-uW23PmHYC7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uW23PmHYC7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uW23PmHYC7 ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-uW23PmHYC7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uW23PmHYC7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #c9d0b1;
}
.cid-uW23PmHYC7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #394c30;
}
.cid-uW23PmHYC7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uW23PmHYC7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uW23PmHYC7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uW23PmHYC7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uW23PmHYC7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uW23PmHYC7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uW23PmHYC7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uW23PmHYC7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uW23PmHYC7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uW23PmHYC7 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uW23PmHYC7 .navbar {
    height: 70px;
  }
  .cid-uW23PmHYC7 .navbar.opened {
    height: auto;
  }
  .cid-uW23PmHYC7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uW23PmHYC7 .mbr-section-subtitle {
  color: #394c30;
}
.cid-uW23PmHYC7 .mbr-text {
  color: #394c30;
}
.cid-v2mY65xkzF {
  background-color: #ffffff;
  display: block;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
@media (min-width: 768px) {
  .cid-v2mY65xkzF .carousel {
    height: 650px;
  }
}
@media (max-width: 767px) {
  .cid-v2mY65xkzF .carousel {
    height: 100vh;
  }
}
.cid-v2mY65xkzF .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-v2mY65xkzF .carousel-item,
.cid-v2mY65xkzF .carousel-inner {
  height: 100%;
}
.cid-v2mY65xkzF .carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-v2mY65xkzF .carousel-caption {
    right: 5%;
    left: 5%;
  }
}
.cid-v2mY65xkzF .mbr-section-title {
  letter-spacing: 12px;
  margin-bottom: 25px;
}
@media (min-width: 1400px) {
  .cid-v2mY65xkzF .mbr-section-title.display-1 {
    font-size: 90px;
    line-height: 160px;
  }
}
.cid-v2mY65xkzF .mbr-section-btn {
  margin-top: 42px;
}
.cid-v2mY65xkzF .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-v2mY65xkzF .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-v2mY65xkzF .carousel-control:hover.carousel-control-prev .mobi-mbri {
  transform: translateX(3px);
}
.cid-v2mY65xkzF .carousel-control:hover.carousel-control-next .mobi-mbri {
  transform: translateX(-3px);
}
.cid-v2mY65xkzF .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-v2mY65xkzF .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-v2mY65xkzF .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-v2mY65xkzF .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-v2mY65xkzF .carousel-control {
  top: 50%;
  width: 92px;
  height: 92px;
  margin-top: -1.5rem;
  font-size: 21px;
  border-radius: 50%;
  color: #202020;
  background-color: transparent;
  border: 1px solid #fef2f2;
  transition: all 0.2s ease-out;
  opacity: 1;
}
.cid-v2mY65xkzF .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
  color: #fef2f2 !important;
}
.cid-v2mY65xkzF .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
  color: #fef2f2 !important;
}
.cid-v2mY65xkzF .carousel-control .mobi-mbri {
  transition: all 0.2s ease-out;
}
@media (max-width: 768px) {
  .cid-v2mY65xkzF .carousel-control {
    display: none !important;
  }
}
.cid-v2mY65xkzF .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 2rem !important;
  align-items: center;
}
.cid-v2mY65xkzF .carousel-indicators li {
  max-width: 10px;
  max-height: 10px;
  height: 6px;
  width: 6px;
  margin: 15px;
  background-color: #fef2f2;
  border: none;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.2s ease-in-out;
}
.cid-v2mY65xkzF .carousel-indicators li.active,
.cid-v2mY65xkzF .carousel-indicators li:hover {
  transform: scale(1.6);
}
.cid-v2mY65xkzF .carousel-indicators li::after,
.cid-v2mY65xkzF .carousel-indicators li::before {
  content: none;
}
.cid-v2mY65xkzF .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v2mY65xkzF .carousel-indicators {
    display: none !important;
  }
}
.cid-v2mY65xkzF .mbr-section-text,
.cid-v2mY65xkzF .mbr-section-btn {
  text-align: center;
}
.cid-v1710Z0Wgf {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v1710Z0Wgf img,
.cid-v1710Z0Wgf .item-img {
  width: 100%;
  object-fit: cover;
  height: 300px;
  transition: all 0.35s cubic-bezier(0.4, 0.12, 0.4, 0.85);
}
.cid-v1710Z0Wgf .item-img:hover {
  transform: translateY(-7px);
}
.cid-v1710Z0Wgf .item {
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .cid-v1710Z0Wgf .item:nth-child(1),
  .cid-v1710Z0Wgf .item:nth-child(2),
  .cid-v1710Z0Wgf .item:nth-child(3) {
    margin-top: 70px;
  }
  .cid-v1710Z0Wgf .item:nth-child(2),
  .cid-v1710Z0Wgf .item:nth-child(5),
  .cid-v1710Z0Wgf .item:nth-child(8),
  .cid-v1710Z0Wgf .item:nth-child(11),
  .cid-v1710Z0Wgf .item:nth-child(15) {
    transform: translateY(-70px);
  }
}
.cid-v1710Z0Wgf .item-title {
  margin-bottom: 1rem;
  color: #202020;
}
.cid-v1710Z0Wgf .item_content {
  margin-top: 27px;
}
.cid-v1710Z0Wgf .mbr-text {
  margin-bottom: 1rem;
}
.cid-v1710Z0Wgf .item-wrapper {
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  overflow: visible;
}
@media (min-width: 992px) {
  .cid-v1710Z0Wgf .item-wrapper {
    padding: 0 1.5rem;
  }
}
.cid-v1YX3w1lAD {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v1YX3w1lAD img,
.cid-v1YX3w1lAD .item-img {
  width: 100%;
  object-fit: cover;
  height: 300px;
  transition: all 0.35s cubic-bezier(0.4, 0.12, 0.4, 0.85);
}
.cid-v1YX3w1lAD .item-img:hover {
  transform: translateY(-7px);
}
.cid-v1YX3w1lAD .item {
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .cid-v1YX3w1lAD .item:nth-child(1),
  .cid-v1YX3w1lAD .item:nth-child(2),
  .cid-v1YX3w1lAD .item:nth-child(3) {
    margin-top: 70px;
  }
  .cid-v1YX3w1lAD .item:nth-child(2),
  .cid-v1YX3w1lAD .item:nth-child(5),
  .cid-v1YX3w1lAD .item:nth-child(8),
  .cid-v1YX3w1lAD .item:nth-child(11),
  .cid-v1YX3w1lAD .item:nth-child(15) {
    transform: translateY(-70px);
  }
}
.cid-v1YX3w1lAD .item-title {
  margin-bottom: 1rem;
  color: #202020;
}
.cid-v1YX3w1lAD .item_content {
  margin-top: 27px;
}
.cid-v1YX3w1lAD .mbr-text {
  margin-bottom: 1rem;
}
.cid-v1YX3w1lAD .item-wrapper {
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  overflow: visible;
}
@media (min-width: 992px) {
  .cid-v1YX3w1lAD .item-wrapper {
    padding: 0 1.5rem;
  }
}
.cid-v1Z2GzWffo {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-v1Z2GzWffo img,
.cid-v1Z2GzWffo .item-img {
  width: 100%;
  object-fit: cover;
  height: 300px;
  transition: all 0.35s cubic-bezier(0.4, 0.12, 0.4, 0.85);
}
.cid-v1Z2GzWffo .item-img:hover {
  transform: translateY(-7px);
}
.cid-v1Z2GzWffo .item {
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .cid-v1Z2GzWffo .item:nth-child(1),
  .cid-v1Z2GzWffo .item:nth-child(2),
  .cid-v1Z2GzWffo .item:nth-child(3) {
    margin-top: 70px;
  }
  .cid-v1Z2GzWffo .item:nth-child(2),
  .cid-v1Z2GzWffo .item:nth-child(5),
  .cid-v1Z2GzWffo .item:nth-child(8),
  .cid-v1Z2GzWffo .item:nth-child(11),
  .cid-v1Z2GzWffo .item:nth-child(15) {
    transform: translateY(-70px);
  }
}
.cid-v1Z2GzWffo .item-title {
  margin-bottom: 1rem;
  color: #202020;
}
.cid-v1Z2GzWffo .item_content {
  margin-top: 27px;
}
.cid-v1Z2GzWffo .mbr-text {
  margin-bottom: 1rem;
}
.cid-v1Z2GzWffo .item-wrapper {
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  overflow: visible;
}
@media (min-width: 992px) {
  .cid-v1Z2GzWffo .item-wrapper {
    padding: 0 1.5rem;
  }
}
.cid-v2qNcGbElv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9d0b1;
}
.cid-v2qNcGbElv .mbr-text {
  color: #555555;
  margin: 10px 0;
  width: 100%;
  text-align: center;
}
.cid-uW23PmHYC7 .navbar-dropdown {
  background-color: #c9d0b1 !important;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uW23PmHYC7 .menu_box .navbar.opened,
  .cid-uW23PmHYC7 .menu_box .navbar-collapse {
    background-color: #c9d0b1 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uW23PmHYC7 .navbar-dropdown {
  position: relative !important;
}
.cid-uW23PmHYC7 nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uW23PmHYC7 nav.navbar {
    flex-wrap: nowrap;
  }
  .cid-uW23PmHYC7 .offcanvas {
    padding: 120px 60px 35px;
    width: 480px;
    background-color: #c9d0b1;
  }
  .cid-uW23PmHYC7 .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uW23PmHYC7 .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uW23PmHYC7 .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uW23PmHYC7 .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uW23PmHYC7 .offcanvas-body .mbr-text,
  .cid-uW23PmHYC7 .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-uW23PmHYC7 .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-uW23PmHYC7 .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
    color: #c9d0b1;
  }
  .cid-uW23PmHYC7 .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 1px;
    border-right: 5px;
    background-color: #394c30;
  }
  .cid-uW23PmHYC7 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uW23PmHYC7 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uW23PmHYC7 .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uW23PmHYC7 .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uW23PmHYC7 ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uW23PmHYC7 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uW23PmHYC7 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uW23PmHYC7 .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uW23PmHYC7 li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: .3em !important;
  }
  .cid-uW23PmHYC7 li.nav-item:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: currentColor;
    bottom: -5px;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.32s cubic-bezier(0.31, 0.29, 0.05, 0.96);
  }
  .cid-uW23PmHYC7 li.nav-item:hover:after {
    transform-origin: left;
    transform: scaleX(0.999);
  }
  .cid-uW23PmHYC7 .lg_brand {
    margin: 0 1rem;
  }
}
.cid-uW23PmHYC7 .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uW23PmHYC7 .nav-item {
    margin: 4px 19px;
  }
}
@media (max-width: 991px) {
  .cid-uW23PmHYC7 .nav-item {
    margin: 0 !important;
  }
}
.cid-uW23PmHYC7 .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uW23PmHYC7 .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: 72px !important;
    left: -40px !important;
  }
  .cid-uW23PmHYC7 .dropdown-menu.dropdown-submenu {
    left: 215px!important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uW23PmHYC7 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uW23PmHYC7 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uW23PmHYC7 .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uW23PmHYC7 .offcanvas_box {
    display: none;
  }
}
.cid-uW23PmHYC7 .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-uW23PmHYC7 .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uW23PmHYC7 .dropdown .dropdown-item:hover {
  color: #e5673b !important;
}
.cid-uW23PmHYC7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uW23PmHYC7 .nav-link {
  position: relative;
}
.cid-uW23PmHYC7 .container {
  display: flex;
  margin: auto;
}
.cid-uW23PmHYC7 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #394c30;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uW23PmHYC7 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uW23PmHYC7 .iconfont-wrapper:hover {
  background-color: #2d3c26;
}
.cid-uW23PmHYC7 .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 1200px) {
  .cid-uW23PmHYC7 .navbar-nav {
    margin: 0 2rem;
  }
}
.cid-uW23PmHYC7 .navbar-nav .nav-item:last-child {
  margin-right: 0 !important;
}
.cid-uW23PmHYC7 .dropdown-menu,
.cid-uW23PmHYC7 .navbar.opened {
  background: #c9d0b1 !important;
}
.cid-uW23PmHYC7 .nav-item:focus,
.cid-uW23PmHYC7 .nav-link:focus {
  outline: none;
}
.cid-uW23PmHYC7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uW23PmHYC7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uW23PmHYC7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uW23PmHYC7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uW23PmHYC7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uW23PmHYC7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uW23PmHYC7 .navbar {
  height: 120px;
  transition: all 0.3s;
  border-bottom-width: 0px;
}
.cid-uW23PmHYC7 .navbar.opened {
  transition: all 0.3s;
}
.cid-uW23PmHYC7 .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uW23PmHYC7 .navbar .navbar-logo img {
  width: auto;
}
.cid-uW23PmHYC7 .navbar .navbar-collapse {
  justify-content: space-evenly;
  z-index: 1;
}
.cid-uW23PmHYC7 .navbar.collapsed {
  justify-content: center;
}
.cid-uW23PmHYC7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uW23PmHYC7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uW23PmHYC7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-uW23PmHYC7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uW23PmHYC7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uW23PmHYC7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uW23PmHYC7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uW23PmHYC7 .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uW23PmHYC7 .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uW23PmHYC7 .navbar .navbar-collapse {
    padding: 34px 0;
  }
  .cid-uW23PmHYC7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uW23PmHYC7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uW23PmHYC7 .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uW23PmHYC7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uW23PmHYC7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uW23PmHYC7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uW23PmHYC7 .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uW23PmHYC7 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uW23PmHYC7 .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uW23PmHYC7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uW23PmHYC7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uW23PmHYC7 .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uW23PmHYC7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uW23PmHYC7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uW23PmHYC7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uW23PmHYC7 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uW23PmHYC7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uW23PmHYC7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uW23PmHYC7 .dropdown-item.active,
.cid-uW23PmHYC7 .dropdown-item:active {
  background-color: transparent;
}
.cid-uW23PmHYC7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uW23PmHYC7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uW23PmHYC7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uW23PmHYC7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #c9d0b1;
}
.cid-uW23PmHYC7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uW23PmHYC7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uW23PmHYC7 ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-uW23PmHYC7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uW23PmHYC7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #c9d0b1;
}
.cid-uW23PmHYC7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #394c30;
}
.cid-uW23PmHYC7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uW23PmHYC7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uW23PmHYC7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uW23PmHYC7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uW23PmHYC7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uW23PmHYC7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uW23PmHYC7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uW23PmHYC7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uW23PmHYC7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uW23PmHYC7 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uW23PmHYC7 .navbar {
    height: 70px;
  }
  .cid-uW23PmHYC7 .navbar.opened {
    height: auto;
  }
  .cid-uW23PmHYC7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uW23PmHYC7 .mbr-section-subtitle {
  color: #394c30;
}
.cid-uW23PmHYC7 .mbr-text {
  color: #394c30;
}
.cid-v2nfnkFLsU {
  background-color: #ffffff;
  display: block;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
@media (min-width: 768px) {
  .cid-v2nfnkFLsU .carousel {
    height: 650px;
  }
}
@media (max-width: 767px) {
  .cid-v2nfnkFLsU .carousel {
    height: 100vh;
  }
}
.cid-v2nfnkFLsU .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-v2nfnkFLsU .carousel-item,
.cid-v2nfnkFLsU .carousel-inner {
  height: 100%;
}
.cid-v2nfnkFLsU .carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-v2nfnkFLsU .carousel-caption {
    right: 5%;
    left: 5%;
  }
}
.cid-v2nfnkFLsU .mbr-section-title {
  letter-spacing: 12px;
  margin-bottom: 25px;
}
@media (min-width: 1400px) {
  .cid-v2nfnkFLsU .mbr-section-title.display-1 {
    font-size: 90px;
    line-height: 160px;
  }
}
.cid-v2nfnkFLsU .mbr-section-btn {
  margin-top: 42px;
}
.cid-v2nfnkFLsU .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-v2nfnkFLsU .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-v2nfnkFLsU .carousel-control:hover.carousel-control-prev .mobi-mbri {
  transform: translateX(3px);
}
.cid-v2nfnkFLsU .carousel-control:hover.carousel-control-next .mobi-mbri {
  transform: translateX(-3px);
}
.cid-v2nfnkFLsU .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-v2nfnkFLsU .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-v2nfnkFLsU .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-v2nfnkFLsU .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-v2nfnkFLsU .carousel-control {
  top: 50%;
  width: 92px;
  height: 92px;
  margin-top: -1.5rem;
  font-size: 21px;
  border-radius: 50%;
  color: #202020;
  background-color: transparent;
  border: 1px solid #fef2f2;
  transition: all 0.2s ease-out;
  opacity: 1;
}
.cid-v2nfnkFLsU .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
  color: #fef2f2 !important;
}
.cid-v2nfnkFLsU .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
  color: #fef2f2 !important;
}
.cid-v2nfnkFLsU .carousel-control .mobi-mbri {
  transition: all 0.2s ease-out;
}
@media (max-width: 768px) {
  .cid-v2nfnkFLsU .carousel-control {
    display: none !important;
  }
}
.cid-v2nfnkFLsU .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 2rem !important;
  align-items: center;
}
.cid-v2nfnkFLsU .carousel-indicators li {
  max-width: 10px;
  max-height: 10px;
  height: 6px;
  width: 6px;
  margin: 15px;
  background-color: #fef2f2;
  border: none;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.2s ease-in-out;
}
.cid-v2nfnkFLsU .carousel-indicators li.active,
.cid-v2nfnkFLsU .carousel-indicators li:hover {
  transform: scale(1.6);
}
.cid-v2nfnkFLsU .carousel-indicators li::after,
.cid-v2nfnkFLsU .carousel-indicators li::before {
  content: none;
}
.cid-v2nfnkFLsU .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v2nfnkFLsU .carousel-indicators {
    display: none !important;
  }
}
.cid-v2nfnkFLsU .mbr-section-text,
.cid-v2nfnkFLsU .mbr-section-btn {
  text-align: center;
}
.cid-v0Xd6TOiBZ {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v0Xd6TOiBZ .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-v0Xd6TOiBZ .container {
  background-color: #f9f5ee;
  padding: 8rem 2.75rem;
  position: relative;
}
@media (max-width: 991px) {
  .cid-v0Xd6TOiBZ .container {
    padding: 3.5rem 2.75rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-v0Xd6TOiBZ .container {
    padding: 3.5rem .75rem 4rem;
  }
}
.cid-v0Xd6TOiBZ .btn-lg {
  border-radius: 0 !important;
  padding: 1.1875rem 3.25rem !important;
  margin-top: 40px;
  font-weight: 600;
  width: 100%;
}
.cid-v0Xd6TOiBZ .mbr-section-title {
  margin-bottom: 18px;
  color: #394c30;
}
.cid-v0Xd6TOiBZ .form_title {
  margin: 25px 0;
  text-align: center;
}
.cid-v0Xd6TOiBZ .mbr-text {
  margin-bottom: 37px;
  color: #394c30;
}
.cid-v0Xd6TOiBZ .shape {
  width: 190px;
  height: auto;
  position: absolute;
  right: -40px;
  top: 40px;
}
.cid-v0Xd6TOiBZ .shape img {
  width: 100%;
  object-fit: contain;
  height: auto;
}
@media (max-width: 991px) {
  .cid-v0Xd6TOiBZ .shape {
    top: 0;
    right: 0;
  }
}
.cid-v0Xd6TOiBZ .dragArea {
  justify-content: center;
}
.cid-v0Xd6TOiBZ .form-group textarea {
  height: 165px;
  margin-bottom: 0;
  border: none;
}
.cid-v0Xd6TOiBZ .form-group {
  margin-bottom: 0;
}
.cid-v0Xd6TOiBZ .textGDPR.display-7 {
  font-size: 16px;
}
.cid-v0Xd6TOiBZ .gdpr-block label span.textGDPR input[name="gdpr"] {
  top: 0;
}
.cid-v0Xd6TOiBZ .form-control,
.cid-v0Xd6TOiBZ .field-input,
.cid-v0Xd6TOiBZ textarea {
  padding: 9px 10px;
  line-height: 25px;
  height: 48px;
  transition: 0.4s;
  outline: none;
  margin-bottom: 40px;
  border-radius: 0 !important;
}
.cid-v0Xd6TOiBZ .form-check {
  padding-left: 2.5em !important;
}
.cid-v0Xd6TOiBZ .form-check .display-7 {
  font-size: 16px !important;
}
.cid-v2qG2uyB6l {
  padding-top: 1rem;
  padding-bottom: 1rem;
  position: relative;
  background-color: #ffffff;
}
.cid-v2qG2uyB6l .mark {
  padding: 9px 6px 8px 9px;
  line-height: 1;
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: #ffffff;
}
.cid-v2qG2uyB6l .mark_text {
  display: inline-block;
  line-height: 1;
  letter-spacing: 0.3em;
  font-weight: 600;
  color: #202020;
}
.cid-v2qG2uyB6l .mbr-section-title {
  margin-bottom: 18px;
  color: #394c30;
}
.cid-v2qG2uyB6l .head_title {
  margin: 25px 0 58px;
  text-align: center;
}
.cid-v2qG2uyB6l .mbr-text {
  color: #ffffff;
}
.cid-v2qG2uyB6l .card_title {
  color: #ffffff;
  line-height: 1.2727em;
  margin-bottom: 0;
}
.cid-v2qG2uyB6l .card_content {
  margin: 26px 0 23px;
}
.cid-v2qG2uyB6l img,
.cid-v2qG2uyB6l .item-img {
  width: 100%;
  object-fit: cover;
  height: 300px;
}
.cid-v2qG2uyB6l .item {
  margin-bottom: 30px;
}
.cid-v2qG2uyB6l .item-wrapper {
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  overflow: visible;
}
.cid-v2qG2uyB6l .card_text {
  color: #ffffff;
  margin-top: 4px;
}
.cid-v2qG2uyB6l .item-img {
  position: relative;
}
.cid-v2qG2uyB6l .item-img .mbr-section-btn {
  position: absolute;
  margin-left: 3px;
  top: 53%;
  left: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  opacity: 0;
  transition: opacity 0.2s ease-out, top 0.2s ease-out;
  transform: translate(-50%, -50%);
}
.cid-v2qG2uyB6l .item-img:hover .mbr-section-btn {
  top: 50%;
  opacity: 1;
}
.cid-v2qNcGbElv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9d0b1;
}
.cid-v2qNcGbElv .mbr-text {
  color: #555555;
  margin: 10px 0;
  width: 100%;
  text-align: center;
}
.cid-uW23PmHYC7 .navbar-dropdown {
  background-color: #c9d0b1 !important;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uW23PmHYC7 .menu_box .navbar.opened,
  .cid-uW23PmHYC7 .menu_box .navbar-collapse {
    background-color: #c9d0b1 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uW23PmHYC7 .navbar-dropdown {
  position: relative !important;
}
.cid-uW23PmHYC7 nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uW23PmHYC7 nav.navbar {
    flex-wrap: nowrap;
  }
  .cid-uW23PmHYC7 .offcanvas {
    padding: 120px 60px 35px;
    width: 480px;
    background-color: #c9d0b1;
  }
  .cid-uW23PmHYC7 .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uW23PmHYC7 .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uW23PmHYC7 .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uW23PmHYC7 .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uW23PmHYC7 .offcanvas-body .mbr-text,
  .cid-uW23PmHYC7 .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-uW23PmHYC7 .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-uW23PmHYC7 .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
    color: #c9d0b1;
  }
  .cid-uW23PmHYC7 .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 1px;
    border-right: 5px;
    background-color: #394c30;
  }
  .cid-uW23PmHYC7 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uW23PmHYC7 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uW23PmHYC7 .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uW23PmHYC7 .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uW23PmHYC7 ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uW23PmHYC7 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uW23PmHYC7 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uW23PmHYC7 .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uW23PmHYC7 li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: .3em !important;
  }
  .cid-uW23PmHYC7 li.nav-item:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: currentColor;
    bottom: -5px;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.32s cubic-bezier(0.31, 0.29, 0.05, 0.96);
  }
  .cid-uW23PmHYC7 li.nav-item:hover:after {
    transform-origin: left;
    transform: scaleX(0.999);
  }
  .cid-uW23PmHYC7 .lg_brand {
    margin: 0 1rem;
  }
}
.cid-uW23PmHYC7 .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uW23PmHYC7 .nav-item {
    margin: 4px 19px;
  }
}
@media (max-width: 991px) {
  .cid-uW23PmHYC7 .nav-item {
    margin: 0 !important;
  }
}
.cid-uW23PmHYC7 .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uW23PmHYC7 .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: 72px !important;
    left: -40px !important;
  }
  .cid-uW23PmHYC7 .dropdown-menu.dropdown-submenu {
    left: 215px!important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uW23PmHYC7 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uW23PmHYC7 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uW23PmHYC7 .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uW23PmHYC7 .offcanvas_box {
    display: none;
  }
}
.cid-uW23PmHYC7 .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-uW23PmHYC7 .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uW23PmHYC7 .dropdown .dropdown-item:hover {
  color: #e5673b !important;
}
.cid-uW23PmHYC7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uW23PmHYC7 .nav-link {
  position: relative;
}
.cid-uW23PmHYC7 .container {
  display: flex;
  margin: auto;
}
.cid-uW23PmHYC7 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #394c30;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uW23PmHYC7 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uW23PmHYC7 .iconfont-wrapper:hover {
  background-color: #2d3c26;
}
.cid-uW23PmHYC7 .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 1200px) {
  .cid-uW23PmHYC7 .navbar-nav {
    margin: 0 2rem;
  }
}
.cid-uW23PmHYC7 .navbar-nav .nav-item:last-child {
  margin-right: 0 !important;
}
.cid-uW23PmHYC7 .dropdown-menu,
.cid-uW23PmHYC7 .navbar.opened {
  background: #c9d0b1 !important;
}
.cid-uW23PmHYC7 .nav-item:focus,
.cid-uW23PmHYC7 .nav-link:focus {
  outline: none;
}
.cid-uW23PmHYC7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uW23PmHYC7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uW23PmHYC7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uW23PmHYC7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uW23PmHYC7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uW23PmHYC7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uW23PmHYC7 .navbar {
  height: 120px;
  transition: all 0.3s;
  border-bottom-width: 0px;
}
.cid-uW23PmHYC7 .navbar.opened {
  transition: all 0.3s;
}
.cid-uW23PmHYC7 .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uW23PmHYC7 .navbar .navbar-logo img {
  width: auto;
}
.cid-uW23PmHYC7 .navbar .navbar-collapse {
  justify-content: space-evenly;
  z-index: 1;
}
.cid-uW23PmHYC7 .navbar.collapsed {
  justify-content: center;
}
.cid-uW23PmHYC7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uW23PmHYC7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uW23PmHYC7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-uW23PmHYC7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uW23PmHYC7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uW23PmHYC7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uW23PmHYC7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uW23PmHYC7 .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uW23PmHYC7 .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uW23PmHYC7 .navbar .navbar-collapse {
    padding: 34px 0;
  }
  .cid-uW23PmHYC7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uW23PmHYC7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uW23PmHYC7 .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uW23PmHYC7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uW23PmHYC7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uW23PmHYC7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uW23PmHYC7 .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uW23PmHYC7 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uW23PmHYC7 .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uW23PmHYC7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uW23PmHYC7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uW23PmHYC7 .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uW23PmHYC7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uW23PmHYC7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uW23PmHYC7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uW23PmHYC7 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uW23PmHYC7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uW23PmHYC7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uW23PmHYC7 .dropdown-item.active,
.cid-uW23PmHYC7 .dropdown-item:active {
  background-color: transparent;
}
.cid-uW23PmHYC7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uW23PmHYC7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uW23PmHYC7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uW23PmHYC7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #c9d0b1;
}
.cid-uW23PmHYC7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uW23PmHYC7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uW23PmHYC7 ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-uW23PmHYC7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uW23PmHYC7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #c9d0b1;
}
.cid-uW23PmHYC7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #394c30;
}
.cid-uW23PmHYC7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uW23PmHYC7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uW23PmHYC7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uW23PmHYC7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uW23PmHYC7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uW23PmHYC7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uW23PmHYC7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uW23PmHYC7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uW23PmHYC7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uW23PmHYC7 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uW23PmHYC7 .navbar {
    height: 70px;
  }
  .cid-uW23PmHYC7 .navbar.opened {
    height: auto;
  }
  .cid-uW23PmHYC7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uW23PmHYC7 .mbr-section-subtitle {
  color: #394c30;
}
.cid-uW23PmHYC7 .mbr-text {
  color: #394c30;
}
.cid-uY73ukktme {
  background-color: #ffffff;
  display: block;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
@media (min-width: 768px) {
  .cid-uY73ukktme .carousel {
    height: 650px;
  }
}
@media (max-width: 767px) {
  .cid-uY73ukktme .carousel {
    height: 100vh;
  }
}
.cid-uY73ukktme .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uY73ukktme .carousel-item,
.cid-uY73ukktme .carousel-inner {
  height: 100%;
}
.cid-uY73ukktme .carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-uY73ukktme .carousel-caption {
    right: 5%;
    left: 5%;
  }
}
.cid-uY73ukktme .mbr-section-title {
  letter-spacing: 12px;
  margin-bottom: 25px;
}
@media (min-width: 1400px) {
  .cid-uY73ukktme .mbr-section-title.display-1 {
    font-size: 90px;
    line-height: 160px;
  }
}
.cid-uY73ukktme .mbr-section-btn {
  margin-top: 42px;
}
.cid-uY73ukktme .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uY73ukktme .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uY73ukktme .carousel-control:hover.carousel-control-prev .mobi-mbri {
  transform: translateX(3px);
}
.cid-uY73ukktme .carousel-control:hover.carousel-control-next .mobi-mbri {
  transform: translateX(-3px);
}
.cid-uY73ukktme .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uY73ukktme .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uY73ukktme .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uY73ukktme .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uY73ukktme .carousel-control {
  top: 50%;
  width: 92px;
  height: 92px;
  margin-top: -1.5rem;
  font-size: 21px;
  border-radius: 50%;
  color: #202020;
  background-color: transparent;
  border: 1px solid #fef2f2;
  transition: all 0.2s ease-out;
  opacity: 1;
}
.cid-uY73ukktme .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
  color: #fef2f2 !important;
}
.cid-uY73ukktme .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
  color: #fef2f2 !important;
}
.cid-uY73ukktme .carousel-control .mobi-mbri {
  transition: all 0.2s ease-out;
}
@media (max-width: 768px) {
  .cid-uY73ukktme .carousel-control {
    display: none !important;
  }
}
.cid-uY73ukktme .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 2rem !important;
  align-items: center;
}
.cid-uY73ukktme .carousel-indicators li {
  max-width: 10px;
  max-height: 10px;
  height: 6px;
  width: 6px;
  margin: 15px;
  background-color: #fef2f2;
  border: none;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.2s ease-in-out;
}
.cid-uY73ukktme .carousel-indicators li.active,
.cid-uY73ukktme .carousel-indicators li:hover {
  transform: scale(1.6);
}
.cid-uY73ukktme .carousel-indicators li::after,
.cid-uY73ukktme .carousel-indicators li::before {
  content: none;
}
.cid-uY73ukktme .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uY73ukktme .carousel-indicators {
    display: none !important;
  }
}
.cid-uY73ukktme .mbr-section-text,
.cid-uY73ukktme .mbr-section-btn {
  text-align: center;
}
.cid-v2nFtzRYSb {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-v2nFtzRYSb .mbr-section-title {
  color: #394c30;
}
.cid-v2nFtzRYSb .mbr-text {
  margin: 25px 0;
  color: #394c30;
  line-height: 1.2727em;
  position: relative;
  z-index: 2;
  text-align: center;
}
.cid-v2nFtzRYSb .content_box {
  position: relative;
}
.cid-v2nFtzRYSb .shape {
  position: absolute;
  z-index: 1;
  bottom: -50%;
  left: 50%;
  width: auto;
  transform: translateX(-50%);
  opacity: 0.5;
}
.cid-v2nFtzRYSb .shape img {
  width: 100%;
  height: 100%;
  max-height: 160px;
  object-fit: contain;
}
.cid-uY73CZqbSw {
  padding-top: 1rem;
  padding-bottom: 6rem;
  background-color: #f9f5ee;
}
.cid-uY73CZqbSw .main_header {
  margin: 25px 0 44px;
}
.cid-uY73CZqbSw .mbr-section-title {
  color: #394c30;
  margin-bottom: 13px;
}
.cid-uY73CZqbSw .mbr-text {
  color: #ffffff;
  line-height: 1.2727em;
}
.cid-uY73CZqbSw .card_wrapper {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .cid-uY73CZqbSw .card_wrapper {
    padding: 0 15px;
  }
}
.cid-uY73CZqbSw .card_top {
  display: flex;
  align-items: baseline;
  color: #ffffff;
}
.cid-uY73CZqbSw .line {
  border-bottom: 1px solid #394c30;
  flex-grow: 1;
  margin: 0 15px;
}
.cid-uY73CZqbSw .card_title {
  color: #394c30;
  line-height: 1.2727em;
}
.cid-uY73CZqbSw .card_price {
  color: #394c30;
}
.cid-uY73CZqbSw .card_text {
  color: #394c30;
}
.cid-v16oXXxpBV {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/dsc01123-1.webp");
}
.cid-v16oXXxpBV .image-wrapper,
.cid-v16oXXxpBV img {
  width: 100%;
  object-fit: contain;
}
.cid-v16oXXxpBV img {
  display: inline-block;
  width: 6rem;
}
.cid-v16oXXxpBV .mbr-section-title {
  margin: 25px 0;
}
.cid-v16oXXxpBV .mbr-text {
  margin-bottom: 19px;
}
.cid-v11IDK2w13 {
  padding-top: 1rem;
  padding-bottom: 6rem;
  background-color: #c9d0b1;
}
.cid-v11IDK2w13 .main_header {
  margin: 25px 0 44px;
}
.cid-v11IDK2w13 .mbr-section-title {
  color: #394c30;
  margin-bottom: 13px;
}
.cid-v11IDK2w13 .mbr-text {
  color: #ffffff;
  line-height: 1.2727em;
}
.cid-v11IDK2w13 .card_wrapper {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .cid-v11IDK2w13 .card_wrapper {
    padding: 0 15px;
  }
}
.cid-v11IDK2w13 .card_top {
  display: flex;
  align-items: baseline;
  color: #ffffff;
}
.cid-v11IDK2w13 .line {
  border-bottom: 1px solid #394c30;
  flex-grow: 1;
  margin: 0 15px;
}
.cid-v11IDK2w13 .card_title {
  color: #394c30;
  line-height: 1.2727em;
}
.cid-v11IDK2w13 .card_price {
  color: #394c30;
}
.cid-v11IDK2w13 .card_text {
  color: #394c30;
}
.cid-v11KH5Y7Vq {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #fffcf6;
}
.cid-v11KH5Y7Vq .main_header {
  margin: 25px 0 44px;
}
.cid-v11KH5Y7Vq .mbr-section-title {
  color: #394c30;
  margin-bottom: 13px;
}
.cid-v11KH5Y7Vq .mbr-text {
  color: #ffffff;
  line-height: 1.2727em;
}
.cid-v11KH5Y7Vq .card_wrapper {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .cid-v11KH5Y7Vq .card_wrapper {
    padding: 0 15px;
  }
}
.cid-v11KH5Y7Vq .card_top {
  display: flex;
  align-items: baseline;
  color: #ffffff;
}
.cid-v11KH5Y7Vq .line {
  border-bottom: 1px solid #394c30;
  flex-grow: 1;
  margin: 0 15px;
}
.cid-v11KH5Y7Vq .card_title {
  color: #394c30;
  line-height: 1.2727em;
}
.cid-v11KH5Y7Vq .card_price {
  color: #394c30;
}
.cid-v11KH5Y7Vq .card_text {
  color: #394c30;
}
.cid-v11T6AbKzH {
  padding-top: 4rem;
  padding-bottom: 6rem;
  background-color: #fffcf6;
}
.cid-v11T6AbKzH .main_header {
  margin: 25px 0 44px;
}
.cid-v11T6AbKzH .mbr-section-title {
  color: #394c30;
  margin-bottom: 13px;
}
.cid-v11T6AbKzH .mbr-text {
  color: #ffffff;
  line-height: 1.2727em;
}
.cid-v11T6AbKzH .card_wrapper {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .cid-v11T6AbKzH .card_wrapper {
    padding: 0 15px;
  }
}
.cid-v11T6AbKzH .card_top {
  display: flex;
  align-items: baseline;
  color: #ffffff;
}
.cid-v11T6AbKzH .line {
  border-bottom: 1px solid #394c30;
  flex-grow: 1;
  margin: 0 15px;
}
.cid-v11T6AbKzH .card_title {
  color: #394c30;
  line-height: 1.2727em;
}
.cid-v11T6AbKzH .card_price {
  color: #394c30;
}
.cid-v11T6AbKzH .card_text {
  color: #ffffff;
}
.cid-v11K2ESMxT {
  padding-top: 5rem;
  padding-bottom: 2rem;
  position: relative;
  background-color: #ffffff;
}
.cid-v11K2ESMxT .content_box {
  padding: 115px 3rem;
  background-color: #e3e8cf;
  text-align: center;
  height: 100%;
}
@media (max-width: 991px) {
  .cid-v11K2ESMxT .content_box {
    margin-top: 30px;
    padding: 65px 1rem;
  }
}
.cid-v11K2ESMxT .mbr-section-title {
  color: #394c30;
  margin-bottom: 29px;
}
.cid-v11K2ESMxT img,
.cid-v11K2ESMxT .image-wrapper {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-v11K2ESMxT .list_widget {
  padding-bottom: 20px;
}
.cid-v11K2ESMxT .mbr-section-subtitle {
  line-height: 1.2727em;
  color: #394c30;
}
.cid-v11K2ESMxT .linkBtn {
  margin-top: 23px;
}
.cid-v11K2ESMxT .linkBtn a {
  position: relative;
  display: inline-block;
  padding: 1px 7px;
  vertical-align: middle;
  overflow: hidden;
  line-height: 2em;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: .2em;
}
.cid-v11K2ESMxT .linkBtn a:after,
.cid-v11K2ESMxT .linkBtn a:before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  background-color: currentColor;
  transition: transform 0.4s cubic-bezier(0.31, 0.29, 0.05, 0.96);
}
.cid-v11K2ESMxT .linkBtn a:before {
  left: 0;
}
.cid-v11K2ESMxT .linkBtn a:after {
  left: -100%;
  transition-delay: .3s;
}
.cid-v11K2ESMxT .linkBtn a:hover:before,
.cid-v11K2ESMxT .linkBtn a:hover:after {
  transform: translateX(100%);
}
.cid-v11K2ESMxT .mbr-text,
.cid-v11K2ESMxT .linkBtn {
  color: #394c30;
}
.cid-v16jz8NZ1V {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #f9f5ee;
}
.cid-v16jz8NZ1V .main_header {
  margin: 25px 0 44px;
}
.cid-v16jz8NZ1V .mbr-section-title {
  color: #394c30;
  margin-bottom: 13px;
}
.cid-v16jz8NZ1V .mbr-text {
  color: #ffffff;
  line-height: 1.2727em;
}
.cid-v16jz8NZ1V .card_wrapper {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .cid-v16jz8NZ1V .card_wrapper {
    padding: 0 15px;
  }
}
.cid-v16jz8NZ1V .card_top {
  display: flex;
  align-items: baseline;
  color: #ffffff;
}
.cid-v16jz8NZ1V .line {
  border-bottom: 1px solid #394c30;
  flex-grow: 1;
  margin: 0 15px;
}
.cid-v16jz8NZ1V .card_title {
  color: #394c30;
  line-height: 1.2727em;
}
.cid-v16jz8NZ1V .card_price {
  color: #394c30;
}
.cid-v16jz8NZ1V .card_text {
  color: #ffffff;
}
.cid-v16eazYHy4 {
  padding-top: 2rem;
  padding-bottom: 5rem;
  position: relative;
  background-color: #ffffff;
}
.cid-v16eazYHy4 .content_box {
  padding: 115px 3rem;
  background-color: #e3e8cf;
  text-align: center;
  height: 100%;
}
@media (max-width: 991px) {
  .cid-v16eazYHy4 .content_box {
    margin-top: 30px;
    padding: 65px 1rem;
  }
}
.cid-v16eazYHy4 .mbr-section-title {
  color: #394c30;
  margin-bottom: 29px;
}
.cid-v16eazYHy4 img,
.cid-v16eazYHy4 .image-wrapper {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-v16eazYHy4 .list_widget {
  padding-bottom: 20px;
}
.cid-v16eazYHy4 .mbr-section-subtitle {
  line-height: 1.2727em;
  color: #394c30;
}
.cid-v16eazYHy4 .linkBtn {
  margin-top: 23px;
}
.cid-v16eazYHy4 .linkBtn a {
  position: relative;
  display: inline-block;
  padding: 1px 7px;
  vertical-align: middle;
  overflow: hidden;
  line-height: 2em;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: .2em;
}
.cid-v16eazYHy4 .linkBtn a:after,
.cid-v16eazYHy4 .linkBtn a:before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  background-color: currentColor;
  transition: transform 0.4s cubic-bezier(0.31, 0.29, 0.05, 0.96);
}
.cid-v16eazYHy4 .linkBtn a:before {
  left: 0;
}
.cid-v16eazYHy4 .linkBtn a:after {
  left: -100%;
  transition-delay: .3s;
}
.cid-v16eazYHy4 .linkBtn a:hover:before,
.cid-v16eazYHy4 .linkBtn a:hover:after {
  transform: translateX(100%);
}
.cid-v16eazYHy4 .mbr-text,
.cid-v16eazYHy4 .linkBtn {
  color: #394c30;
}
.cid-v16kEG6oHR {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #f9f5ee;
}
.cid-v16kEG6oHR .main_header {
  margin: 25px 0 44px;
}
.cid-v16kEG6oHR .mbr-section-title {
  color: #394c30;
  margin-bottom: 13px;
}
.cid-v16kEG6oHR .mbr-text {
  color: #ffffff;
  line-height: 1.2727em;
}
.cid-v16kEG6oHR .card_wrapper {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .cid-v16kEG6oHR .card_wrapper {
    padding: 0 15px;
  }
}
.cid-v16kEG6oHR .card_top {
  display: flex;
  align-items: baseline;
  color: #ffffff;
}
.cid-v16kEG6oHR .line {
  border-bottom: 1px solid #394c30;
  flex-grow: 1;
  margin: 0 15px;
}
.cid-v16kEG6oHR .card_title {
  color: #394c30;
  line-height: 1.2727em;
}
.cid-v16kEG6oHR .card_price {
  color: #394c30;
}
.cid-v16kEG6oHR .card_text {
  color: #ffffff;
}
.cid-v16VoRJGEu {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f9f5ee;
}
.cid-v16VoRJGEu .main_header {
  margin: 25px 0 44px;
}
.cid-v16VoRJGEu .mbr-section-title {
  color: #394c30;
  margin-bottom: 13px;
}
.cid-v16VoRJGEu .mbr-text {
  color: #394c30;
  line-height: 1.2727em;
}
.cid-v16VoRJGEu .card_wrapper {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .cid-v16VoRJGEu .card_wrapper {
    padding: 0 15px;
  }
}
.cid-v16VoRJGEu .card_top {
  display: flex;
  align-items: baseline;
  color: #ffffff;
}
.cid-v16VoRJGEu .line {
  border-bottom: 1px solid #394c30;
  flex-grow: 1;
  margin: 0 15px;
}
.cid-v16VoRJGEu .card_title {
  color: #394c30;
  line-height: 1.2727em;
}
.cid-v16VoRJGEu .card_price {
  color: #394c30;
}
.cid-v16VoRJGEu .card_text {
  color: #394c30;
}
.cid-v16XNYQG9F {
  padding-top: 0rem;
  padding-bottom: 8rem;
  background-color: #f9f5ee;
}
.cid-v16XNYQG9F .main_header {
  margin: 25px 0 44px;
}
.cid-v16XNYQG9F .mbr-section-title {
  color: #394c30;
  margin-bottom: 13px;
}
.cid-v16XNYQG9F .mbr-text {
  color: #394c30;
  line-height: 1.2727em;
}
.cid-v16XNYQG9F .card_wrapper {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .cid-v16XNYQG9F .card_wrapper {
    padding: 0 15px;
  }
}
.cid-v16XNYQG9F .card_top {
  display: flex;
  align-items: baseline;
  color: #ffffff;
}
.cid-v16XNYQG9F .line {
  border-bottom: 1px solid #394c30;
  flex-grow: 1;
  margin: 0 15px;
}
.cid-v16XNYQG9F .card_title {
  color: #394c30;
  line-height: 1.2727em;
}
.cid-v16XNYQG9F .card_price {
  color: #394c30;
}
.cid-v16XNYQG9F .card_text {
  color: #394c30;
}
.cid-v2qNcGbElv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9d0b1;
}
.cid-v2qNcGbElv .mbr-text {
  color: #555555;
  margin: 10px 0;
  width: 100%;
  text-align: center;
}
