body {
  font-family: Gloock;
}
.display-1 {
  font-family: 'Gloock', serif;
  font-size: 3rem;
  line-height: 1.5;
}
.display-1 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-2 {
  font-family: 'Gloock', serif;
  font-size: 2.25rem;
  line-height: 1;
}
.display-2 > .mbr-iconfont {
  font-size: 2.8125rem;
}
.display-4 {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 1rem;
  line-height: 24px;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Gloock', serif;
  font-size: 1.875rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.34375rem;
}
.display-7 {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.40625rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 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.8rem;
    font-size: calc( 1.4375rem + (2.25 - 1.4375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.4375rem + (2.25 - 1.4375) * ((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.5rem;
    font-size: calc( 1.30625rem + (1.875 - 1.30625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.30625rem + (1.875 - 1.30625) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.9rem;
    font-size: calc( 1.04375rem + (1.125 - 1.04375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.04375rem + (1.125 - 1.04375) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 30px;
}
.bg-primary {
  background-color: #292929 !important;
}
.bg-success {
  background-color: #f2c4b3 !important;
}
.bg-info {
  background-color: #a1e5cf !important;
}
.bg-warning {
  background-color: #ffb99b !important;
}
.bg-danger {
  background-color: #deb350 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #292929 !important;
  border-color: #292929 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #f1f4e9 !important;
  border-color: #f1f4e9 !important;
  color: #80944a !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: #4e5a2d !important;
  background-color: #ccd7af !important;
  border-color: #ccd7af !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #80944a !important;
  background-color: #ccd7af !important;
  border-color: #ccd7af !important;
}
.btn-info,
.btn-info:active {
  background-color: #a1e5cf !important;
  border-color: #a1e5cf !important;
  color: #1d6a51 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #5dd2ac !important;
  border-color: #5dd2ac !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #1d6a51 !important;
  background-color: #5dd2ac !important;
  border-color: #5dd2ac !important;
}
.btn-success,
.btn-success:active {
  background-color: #f2c4b3 !important;
  border-color: #f2c4b3 !important;
  color: #8e3818 !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: #e58b69 !important;
  border-color: #e58b69 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #8e3818 !important;
  background-color: #e58b69 !important;
  border-color: #e58b69 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffb99b !important;
  border-color: #ffb99b !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: #ff7c44 !important;
  border-color: #ff7c44 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #ff7c44 !important;
  border-color: #ff7c44 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #deb350 !important;
  border-color: #deb350 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #b58922 !important;
  border-color: #b58922 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #b58922 !important;
  border-color: #b58922 !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: #292929;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #292929 !important;
  border-color: #292929 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f1f4e9;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ccd7af !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #80944a !important;
  background-color: #f1f4e9 !important;
  border-color: #f1f4e9 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #a1e5cf;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #5dd2ac !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #1d6a51 !important;
  background-color: #a1e5cf !important;
  border-color: #a1e5cf !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f2c4b3;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #e58b69 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #8e3818 !important;
  background-color: #f2c4b3 !important;
  border-color: #f2c4b3 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffb99b;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ff7c44 !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: #ffb99b !important;
  border-color: #ffb99b !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #deb350;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #b58922 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #deb350 !important;
  border-color: #deb350 !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: #292929 !important;
}
.text-secondary {
  color: #f1f4e9 !important;
}
.text-success {
  color: #f2c4b3 !important;
}
.text-info {
  color: #a1e5cf !important;
}
.text-warning {
  color: #ffb99b !important;
}
.text-danger {
  color: #deb350 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #c6d2a5 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #e3805c !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #51cfa6 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #ff7235 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #a87f20 !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: #292929;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #a1e5cf;
}
.alert-warning {
  background-color: #ffb99b;
}
.alert-danger {
  background-color: #deb350;
}
.mbr-gallery-filter li.active .btn {
  background-color: #292929;
  border-color: #292929;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #292929;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #dbdbdb;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #fefefc;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 1rem;
  line-height: 24px;
  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: #292929 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 1rem;
  line-height: 24px;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #292929;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #292929;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #292929;
}
.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: #292929;
  border-bottom-color: #292929;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #292929 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #f1f4e9 !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='%23292929' %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;
}
.mbr-section-btn .btn,
.mbr-section-btn-main .btn {
  box-shadow: none;
  border: 1px solid #292929 !important;
  padding: 13px 58px;
  font-weight: 800 !important;
  min-height: 60px;
}
@media (max-width: 992px) {
  .mbr-section-btn .btn,
  .mbr-section-btn-main .btn {
    padding: 10px 13.5px;
  }
}
.mbr-section-btn .btn:hover,
.mbr-section-btn-main .btn:hover,
.mbr-section-btn .btn:focus,
.mbr-section-btn-main .btn:focus {
  box-shadow: none;
  border: 1px solid #292929 !important;
}
.mbr-section-btn .btn-primary,
.mbr-section-btn-main .btn-primary,
.mbr-section-btn .btn-secondary,
.mbr-section-btn-main .btn-secondary,
.mbr-section-btn .btn-success,
.mbr-section-btn-main .btn-success,
.mbr-section-btn .btn-info,
.mbr-section-btn-main .btn-info,
.mbr-section-btn .btn-warning,
.mbr-section-btn-main .btn-warning,
.mbr-section-btn .btn-danger,
.mbr-section-btn-main .btn-danger,
.mbr-section-btn .btn-black,
.mbr-section-btn-main .btn-black,
.mbr-section-btn .btn-white,
.mbr-section-btn-main .btn-white {
  color: #292929 !important;
}
.mbr-section-btn .btn-primary,
.mbr-section-btn-main .btn-primary,
.mbr-section-btn .btn-black,
.mbr-section-btn-main .btn-black {
  color: #f1f4e9 !important;
}
.mbr-section-btn .btn-primary-outline,
.mbr-section-btn-main .btn-primary-outline,
.mbr-section-btn .btn-secondary-outline,
.mbr-section-btn-main .btn-secondary-outline,
.mbr-section-btn .btn-success-outline,
.mbr-section-btn-main .btn-success-outline,
.mbr-section-btn .btn-info-outline,
.mbr-section-btn-main .btn-info-outline,
.mbr-section-btn .btn-warning-outline,
.mbr-section-btn-main .btn-warning-outline,
.mbr-section-btn .btn-danger-outline,
.mbr-section-btn-main .btn-danger-outline,
.mbr-section-btn .btn-black-outline,
.mbr-section-btn-main .btn-black-outline,
.mbr-section-btn .btn-white-outline,
.mbr-section-btn-main .btn-white-outline {
  padding: 0;
  text-decoration: underline;
  border: none !important;
}
.mbr-section-btn .btn-primary-outline:hover,
.mbr-section-btn-main .btn-primary-outline:hover,
.mbr-section-btn .btn-secondary-outline:hover,
.mbr-section-btn-main .btn-secondary-outline:hover,
.mbr-section-btn .btn-success-outline:hover,
.mbr-section-btn-main .btn-success-outline:hover,
.mbr-section-btn .btn-info-outline:hover,
.mbr-section-btn-main .btn-info-outline:hover,
.mbr-section-btn .btn-warning-outline:hover,
.mbr-section-btn-main .btn-warning-outline:hover,
.mbr-section-btn .btn-danger-outline:hover,
.mbr-section-btn-main .btn-danger-outline:hover,
.mbr-section-btn .btn-black-outline:hover,
.mbr-section-btn-main .btn-black-outline:hover,
.mbr-section-btn .btn-white-outline:hover,
.mbr-section-btn-main .btn-white-outline:hover,
.mbr-section-btn .btn-primary-outline:focus,
.mbr-section-btn-main .btn-primary-outline:focus,
.mbr-section-btn .btn-secondary-outline:focus,
.mbr-section-btn-main .btn-secondary-outline:focus,
.mbr-section-btn .btn-success-outline:focus,
.mbr-section-btn-main .btn-success-outline:focus,
.mbr-section-btn .btn-info-outline:focus,
.mbr-section-btn-main .btn-info-outline:focus,
.mbr-section-btn .btn-warning-outline:focus,
.mbr-section-btn-main .btn-warning-outline:focus,
.mbr-section-btn .btn-danger-outline:focus,
.mbr-section-btn-main .btn-danger-outline:focus,
.mbr-section-btn .btn-black-outline:focus,
.mbr-section-btn-main .btn-black-outline:focus,
.mbr-section-btn .btn-white-outline:focus,
.mbr-section-btn-main .btn-white-outline:focus {
  border: none !important;
}
.cid-tE2C1bFb47 .navbar-dropdown {
  background-color: #f1f4e9 !important;
  padding: 0;
}
.cid-tE2C1bFb47 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #f1f4e9 !important;
  background: #f1f4e9;
}
.cid-tE2C1bFb47 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tE2C1bFb47 .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tE2C1bFb47 .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-tE2C1bFb47 .menu_box .navbar.opened,
  .cid-tE2C1bFb47 .menu_box .navbar-collapse {
    background-color: #f1f4e9 !important;
    transition: all 0s ease 0s;
  }
}
.cid-tE2C1bFb47 .navbar-dropdown {
  position: relative !important;
}
.cid-tE2C1bFb47 .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-tE2C1bFb47 .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tE2C1bFb47 .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-tE2C1bFb47 .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-tE2C1bFb47 .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tE2C1bFb47 .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #f1f4e9;
  }
  .cid-tE2C1bFb47 .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tE2C1bFb47 .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tE2C1bFb47 .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tE2C1bFb47 .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tE2C1bFb47 .offcanvas-body .mbr-text,
  .cid-tE2C1bFb47 .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-tE2C1bFb47 .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-tE2C1bFb47 .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tE2C1bFb47 .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #212529;
  }
  .cid-tE2C1bFb47 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tE2C1bFb47 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tE2C1bFb47 .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tE2C1bFb47 .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tE2C1bFb47 ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tE2C1bFb47 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tE2C1bFb47 .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-tE2C1bFb47 .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tE2C1bFb47 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: 0 !important;
    z-index: 1;
  }
  .cid-tE2C1bFb47 .lg_brand {
    margin: 0 1rem;
  }
}
.cid-tE2C1bFb47 .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tE2C1bFb47 .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tE2C1bFb47 .nav-item {
    margin: 0 !important;
  }
}
.cid-tE2C1bFb47 .nav-item .nav-link {
  position: relative;
}
.cid-tE2C1bFb47 .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #292929;
  transition: all 0.3s ease-out;
}
.cid-tE2C1bFb47 .nav-item .nav-link:hover,
.cid-tE2C1bFb47 .nav-item .nav-link:focus {
  opacity: 1;
  color: #292929 !important;
  font-weight: 800 !important;
}
.cid-tE2C1bFb47 .nav-item .nav-link:hover::before,
.cid-tE2C1bFb47 .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-tE2C1bFb47 .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tE2C1bFb47 .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-tE2C1bFb47 .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tE2C1bFb47 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tE2C1bFb47 .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-tE2C1bFb47 .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tE2C1bFb47 .offcanvas_box {
    display: none;
  }
}
.cid-tE2C1bFb47 .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-tE2C1bFb47 .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tE2C1bFb47 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-tE2C1bFb47 .container {
  display: flex;
  margin: auto;
}
.cid-tE2C1bFb47 .iconfont-wrapper {
  color: #212529;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-tE2C1bFb47 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tE2C1bFb47 .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-tE2C1bFb47 .navbar-caption {
  color: #212529;
}
.cid-tE2C1bFb47 .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tE2C1bFb47 .navbar-nav {
    margin: 0;
  }
}
.cid-tE2C1bFb47 .dropdown-menu,
.cid-tE2C1bFb47 .navbar.opened {
  background-color: false !important;
}
.cid-tE2C1bFb47 .nav-item:focus,
.cid-tE2C1bFb47 .nav-link:focus {
  outline: none;
}
.cid-tE2C1bFb47 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tE2C1bFb47 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tE2C1bFb47 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tE2C1bFb47 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tE2C1bFb47 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tE2C1bFb47 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tE2C1bFb47 .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-tE2C1bFb47 .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-tE2C1bFb47 .navbar.opened {
  transition: all 0.3s;
}
.cid-tE2C1bFb47 .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tE2C1bFb47 .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 5px;
}
.cid-tE2C1bFb47 .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.cid-tE2C1bFb47 .navbar.collapsed {
  justify-content: center;
}
.cid-tE2C1bFb47 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tE2C1bFb47 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tE2C1bFb47 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tE2C1bFb47 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tE2C1bFb47 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tE2C1bFb47 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tE2C1bFb47 .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tE2C1bFb47 .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tE2C1bFb47 .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-tE2C1bFb47 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tE2C1bFb47 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tE2C1bFb47 .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tE2C1bFb47 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tE2C1bFb47 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-tE2C1bFb47 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tE2C1bFb47 .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tE2C1bFb47 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tE2C1bFb47 .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tE2C1bFb47 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-tE2C1bFb47 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tE2C1bFb47 .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tE2C1bFb47 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tE2C1bFb47 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tE2C1bFb47 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tE2C1bFb47 .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-tE2C1bFb47 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-tE2C1bFb47 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tE2C1bFb47 .dropdown-item.active,
.cid-tE2C1bFb47 .dropdown-item:active {
  background-color: transparent;
}
.cid-tE2C1bFb47 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tE2C1bFb47 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tE2C1bFb47 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tE2C1bFb47 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tE2C1bFb47 ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-tE2C1bFb47 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tE2C1bFb47 button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #f1f4e9;
  background: #f1f4e9;
}
.cid-tE2C1bFb47 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #212529;
}
.cid-tE2C1bFb47 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tE2C1bFb47 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tE2C1bFb47 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tE2C1bFb47 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tE2C1bFb47 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tE2C1bFb47 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tE2C1bFb47 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tE2C1bFb47 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tE2C1bFb47 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tE2C1bFb47 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tE2C1bFb47 .navbar {
    height: 70px;
  }
  .cid-tE2C1bFb47 .navbar.opened {
    height: auto;
  }
  .cid-tE2C1bFb47 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tE2C1bFb47 .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tE2C1bFb47 .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-tE2C1bFb47 .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-tE2C1bFb47 .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  min-width: 145px;
}
@media (max-width: 992px) {
  .cid-tE2C1bFb47 .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
@media (max-width: 1400px) {
  .cid-tE2C1bFb47 .mbr-section-btn-main .btn {
    padding: 10px 20px;
  }
}
.cid-tE2C1bFb47 .navbar-caption:hover {
  color: #292929;
}
@media (min-width: 992px) {
  .cid-tE2C1bFb47 .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
@media (min-width: 992px) {
  .cid-tE2C1bFb47 .nav-dropdown {
    margin: 0 auto;
  }
}
.cid-tE2C1bFb47 .text_widget {
  margin-bottom: 32px;
}
.cid-tE2C1bFb47 .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-tE2C1bFb47 .text_widget a:hover {
  color: #292929 !important;
}
.cid-tE2C1bFb47 .mbr-section-subtitle {
  color: #212529;
  text-align: center;
}
.cid-tE2C1bFb47 .mbr-text {
  color: #212529;
  text-align: center;
}
.cid-tE2C1bFb47 .mbr-section-subtitle,
.cid-tE2C1bFb47 .text_widget,
.cid-tE2C1bFb47 .mbr-section-btn {
  text-align: center;
}
.cid-tE2C1bFb47 a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uNWgF8JnAh {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fdd4c5;
}
.cid-uNWgF8JnAh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNWgF8JnAh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uNWgF8JnAh .container {
    padding: 0 30px;
  }
}
.cid-uNWgF8JnAh .row {
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-uNWgF8JnAh .row {
    margin: 0 -34px;
  }
}
.cid-uNWgF8JnAh .title-wrapper {
  margin-bottom: 30px;
}
.cid-uNWgF8JnAh .title-wrapper .mbr-section-subtitle {
  margin-bottom: 30px;
}
.cid-uNWgF8JnAh .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uNWgF8JnAh .card {
  padding: 0 34px;
}
@media (max-width: 992px) {
  .cid-uNWgF8JnAh .card {
    margin-bottom: 40px;
    padding: 0 12px;
  }
}
.cid-uNWgF8JnAh .card .card-wrapper .mbr-number {
  margin-bottom: 30px;
}
.cid-uNWgF8JnAh .card .card-wrapper .mbr-card-title {
  margin-bottom: 30px;
}
.cid-uNWgF8JnAh .card .card-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uNWgF8JnAh .mbr-section-subtitle {
  color: #212529;
  text-align: center;
}
.cid-uNWgF8JnAh .mbr-section-title {
  color: #212529;
  text-align: center;
}
.cid-uNWgF8JnAh .mbr-number {
  color: #212529;
  text-align: center;
}
.cid-uNWgF8JnAh .mbr-card-title {
  color: #212529;
  text-align: center;
}
.cid-uNWgF8JnAh .mbr-text {
  color: #212529;
  text-align: center;
}
.cid-uNZJ2FNPKy {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fdd4c5;
}
.cid-uNZJ2FNPKy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNZJ2FNPKy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uNZJ2FNPKy .container {
    padding: 0 30px;
  }
}
.cid-uNZJ2FNPKy .row {
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-uNZJ2FNPKy .row {
    margin: 0 -34px;
  }
}
.cid-uNZJ2FNPKy .title-wrapper {
  margin-bottom: 30px;
}
.cid-uNZJ2FNPKy .title-wrapper .mbr-section-subtitle {
  margin-bottom: 30px;
}
.cid-uNZJ2FNPKy .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uNZJ2FNPKy .card {
  padding: 0 34px;
}
@media (max-width: 992px) {
  .cid-uNZJ2FNPKy .card {
    margin-bottom: 40px;
    padding: 0 12px;
  }
}
.cid-uNZJ2FNPKy .card .card-wrapper .mbr-number {
  margin-bottom: 30px;
}
.cid-uNZJ2FNPKy .card .card-wrapper .mbr-card-title {
  margin-bottom: 30px;
}
.cid-uNZJ2FNPKy .card .card-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uNZJ2FNPKy .mbr-section-subtitle {
  color: #212529;
  text-align: center;
}
.cid-uNZJ2FNPKy .mbr-section-title {
  color: #212529;
  text-align: center;
}
.cid-uNZJ2FNPKy .mbr-number {
  color: #212529;
  text-align: center;
}
.cid-uNZJ2FNPKy .mbr-card-title {
  color: #212529;
  text-align: center;
}
.cid-uNZJ2FNPKy .mbr-text {
  color: #212529;
  text-align: center;
}
.cid-uO03XqShah {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f1f4e9;
}
.cid-uO03XqShah .mbr-fallback-image.disabled {
  display: none;
}
.cid-uO03XqShah .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uO03XqShah .container {
    padding: 0 30px;
  }
}
.cid-uO03XqShah .image-wrapper {
  margin-right: 120px;
  margin-right: 0;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .cid-uO03XqShah .image-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-uO03XqShah .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-uO03XqShah .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uO03XqShah .image-wrapper img {
    height: 300px;
  }
}
.cid-uO03XqShah .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uO03XqShah .title-wrapper {
    height: auto;
  }
}
.cid-uO03XqShah .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-uO03XqShah .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
  width: 100%;
}
.cid-uO03XqShah .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-uO03XqShah .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uO03XqShah .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uO03XqShah .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-uO03XqShah .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-uO03XqShah .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-uO03XqShah .mbr-section-subtitle {
  color: #212529;
  text-align: center;
}
.cid-uO03XqShah .mbr-section-title {
  color: #212529;
}
.cid-uO03XqShah .mbr-text {
  color: #212529;
}
.cid-uO03XqShah .mbr-section-title,
.cid-uO03XqShah .mbr-section-btn,
.cid-uO03XqShah .icon-wrap {
  text-align: center;
}
.cid-uNZkKldUvi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fdd4c5;
}
.cid-uNZkKldUvi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNZkKldUvi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNZkKldUvi .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uNZkKldUvi .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uNZkKldUvi .container {
    padding: 0 30px;
  }
}
.cid-uNZkKldUvi .row {
  justify-content: center;
}
.cid-uNZkKldUvi .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  margin-right: 60px;
}
@media (max-width: 992px) {
  .cid-uNZkKldUvi .title-wrapper {
    height: auto;
    margin-right: 0;
    margin-bottom: 40px;
  }
}
.cid-uNZkKldUvi .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 25px;
}
.cid-uNZkKldUvi .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-uNZkKldUvi .title-wrapper .title-wrap .mbr-price {
  margin-bottom: 0;
}
.cid-uNZkKldUvi .image-wrapper {
  padding: 0 10px;
}
.cid-uNZkKldUvi .image-wrapper img {
  height: 390px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uNZkKldUvi .image-wrapper img {
    height: 300px;
  }
}
.cid-uNZkKldUvi .mbr-section-title {
  color: #212529;
  text-align: center;
}
.cid-uNZkKldUvi .mbr-text {
  color: #212529;
  text-align: center;
}
.cid-uNZkKldUvi .mbr-price {
  color: #212529;
  text-align: center;
}
.cid-uNZKZtJvWA {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f1f4e9;
}
.cid-uNZKZtJvWA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNZKZtJvWA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNZKZtJvWA .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uNZKZtJvWA a {
  position: relative;
  width: fit-content;
}
.cid-uNZKZtJvWA a:before {
  content: '';
  position: absolute;
  width: 100%;
  transition: all 0.3s;
  height: 1px;
  background: currentColor;
  left: 0;
  bottom: 0;
}
.cid-uNZKZtJvWA a:hover:before {
  width: 0;
}
.cid-uNZKZtJvWA .copyright {
  color: #232323;
}
.cid-uNZKZtJvWA .center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-uNZKZtJvWA .row-links {
  width: 100%;
  justify-content: flex-end;
}
.cid-uNZKZtJvWA .row-links .row-links-soc {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uNZKZtJvWA .row-links .row-links-soc li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uNZKZtJvWA .row-links .row-links-soc li p {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-uNZKZtJvWA .row-links .row-links-soc {
    justify-content: center;
  }
}
@media (max-width: 992px) {
  .cid-uNZKZtJvWA p {
    text-align: center;
  }
}
.cid-uNZKZtJvWA row-links-soc-item {
  text-align: center;
}
.cid-uNVWSOB9N2 .navbar-dropdown {
  background-color: #f1f4e9 !important;
  padding: 0;
}
.cid-uNVWSOB9N2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #f1f4e9 !important;
  background: #f1f4e9;
}
.cid-uNVWSOB9N2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uNVWSOB9N2 .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uNVWSOB9N2 .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uNVWSOB9N2 .menu_box .navbar.opened,
  .cid-uNVWSOB9N2 .menu_box .navbar-collapse {
    background-color: #f1f4e9 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uNVWSOB9N2 .navbar-dropdown {
  position: relative !important;
}
.cid-uNVWSOB9N2 .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-uNVWSOB9N2 .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uNVWSOB9N2 .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uNVWSOB9N2 .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uNVWSOB9N2 .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uNVWSOB9N2 .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #f1f4e9;
  }
  .cid-uNVWSOB9N2 .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uNVWSOB9N2 .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uNVWSOB9N2 .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uNVWSOB9N2 .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uNVWSOB9N2 .offcanvas-body .mbr-text,
  .cid-uNVWSOB9N2 .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uNVWSOB9N2 .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uNVWSOB9N2 .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uNVWSOB9N2 .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #212529;
  }
  .cid-uNVWSOB9N2 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uNVWSOB9N2 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uNVWSOB9N2 .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uNVWSOB9N2 .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uNVWSOB9N2 ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uNVWSOB9N2 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uNVWSOB9N2 .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-uNVWSOB9N2 .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uNVWSOB9N2 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: 0 !important;
    z-index: 1;
  }
  .cid-uNVWSOB9N2 .lg_brand {
    margin: 0 1rem;
  }
}
.cid-uNVWSOB9N2 .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uNVWSOB9N2 .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uNVWSOB9N2 .nav-item {
    margin: 0 !important;
  }
}
.cid-uNVWSOB9N2 .nav-item .nav-link {
  position: relative;
}
.cid-uNVWSOB9N2 .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #292929;
  transition: all 0.3s ease-out;
}
.cid-uNVWSOB9N2 .nav-item .nav-link:hover,
.cid-uNVWSOB9N2 .nav-item .nav-link:focus {
  opacity: 1;
  color: #292929 !important;
  font-weight: 800 !important;
}
.cid-uNVWSOB9N2 .nav-item .nav-link:hover::before,
.cid-uNVWSOB9N2 .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uNVWSOB9N2 .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uNVWSOB9N2 .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uNVWSOB9N2 .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uNVWSOB9N2 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uNVWSOB9N2 .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-uNVWSOB9N2 .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uNVWSOB9N2 .offcanvas_box {
    display: none;
  }
}
.cid-uNVWSOB9N2 .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uNVWSOB9N2 .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uNVWSOB9N2 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uNVWSOB9N2 .container {
  display: flex;
  margin: auto;
}
.cid-uNVWSOB9N2 .iconfont-wrapper {
  color: #212529;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uNVWSOB9N2 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uNVWSOB9N2 .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uNVWSOB9N2 .navbar-caption {
  color: #212529;
}
.cid-uNVWSOB9N2 .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uNVWSOB9N2 .navbar-nav {
    margin: 0;
  }
}
.cid-uNVWSOB9N2 .dropdown-menu,
.cid-uNVWSOB9N2 .navbar.opened {
  background-color: false !important;
}
.cid-uNVWSOB9N2 .nav-item:focus,
.cid-uNVWSOB9N2 .nav-link:focus {
  outline: none;
}
.cid-uNVWSOB9N2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uNVWSOB9N2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uNVWSOB9N2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uNVWSOB9N2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uNVWSOB9N2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uNVWSOB9N2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uNVWSOB9N2 .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uNVWSOB9N2 .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uNVWSOB9N2 .navbar.opened {
  transition: all 0.3s;
}
.cid-uNVWSOB9N2 .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uNVWSOB9N2 .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 5px;
}
.cid-uNVWSOB9N2 .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.cid-uNVWSOB9N2 .navbar.collapsed {
  justify-content: center;
}
.cid-uNVWSOB9N2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uNVWSOB9N2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uNVWSOB9N2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uNVWSOB9N2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uNVWSOB9N2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uNVWSOB9N2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uNVWSOB9N2 .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uNVWSOB9N2 .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uNVWSOB9N2 .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uNVWSOB9N2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uNVWSOB9N2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uNVWSOB9N2 .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uNVWSOB9N2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uNVWSOB9N2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uNVWSOB9N2 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uNVWSOB9N2 .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uNVWSOB9N2 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uNVWSOB9N2 .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uNVWSOB9N2 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uNVWSOB9N2 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uNVWSOB9N2 .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uNVWSOB9N2 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uNVWSOB9N2 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uNVWSOB9N2 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uNVWSOB9N2 .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-uNVWSOB9N2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uNVWSOB9N2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uNVWSOB9N2 .dropdown-item.active,
.cid-uNVWSOB9N2 .dropdown-item:active {
  background-color: transparent;
}
.cid-uNVWSOB9N2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uNVWSOB9N2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uNVWSOB9N2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uNVWSOB9N2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uNVWSOB9N2 ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uNVWSOB9N2 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uNVWSOB9N2 button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #f1f4e9;
  background: #f1f4e9;
}
.cid-uNVWSOB9N2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #212529;
}
.cid-uNVWSOB9N2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uNVWSOB9N2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uNVWSOB9N2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uNVWSOB9N2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uNVWSOB9N2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uNVWSOB9N2 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uNVWSOB9N2 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uNVWSOB9N2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uNVWSOB9N2 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uNVWSOB9N2 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uNVWSOB9N2 .navbar {
    height: 70px;
  }
  .cid-uNVWSOB9N2 .navbar.opened {
    height: auto;
  }
  .cid-uNVWSOB9N2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uNVWSOB9N2 .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uNVWSOB9N2 .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-uNVWSOB9N2 .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uNVWSOB9N2 .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  min-width: 145px;
}
@media (max-width: 992px) {
  .cid-uNVWSOB9N2 .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
@media (max-width: 1400px) {
  .cid-uNVWSOB9N2 .mbr-section-btn-main .btn {
    padding: 10px 20px;
  }
}
.cid-uNVWSOB9N2 .navbar-caption:hover {
  color: #292929;
}
@media (min-width: 992px) {
  .cid-uNVWSOB9N2 .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
@media (min-width: 992px) {
  .cid-uNVWSOB9N2 .nav-dropdown {
    margin: 0 auto;
  }
}
.cid-uNVWSOB9N2 .text_widget {
  margin-bottom: 32px;
}
.cid-uNVWSOB9N2 .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uNVWSOB9N2 .text_widget a:hover {
  color: #292929 !important;
}
.cid-uNVWSOB9N2 .mbr-section-subtitle {
  color: #212529;
  text-align: center;
}
.cid-uNVWSOB9N2 .mbr-text {
  color: #212529;
  text-align: center;
}
.cid-uNVWSOB9N2 .mbr-section-subtitle,
.cid-uNVWSOB9N2 .text_widget,
.cid-uNVWSOB9N2 .mbr-section-btn {
  text-align: center;
}
.cid-uNVWSOB9N2 a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uNVX7xBYUb {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #f1f4e9;
}
.cid-uNVX7xBYUb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNVX7xBYUb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNVX7xBYUb .google-map {
  height: 40rem;
  position: relative;
  border-radius: 2rem;
}
.cid-uNVX7xBYUb .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-uNVX7xBYUb .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-uNVX7xBYUb .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uNVX7xBYUb .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uNVX7xBYUb .content-head {
  max-width: 800px;
}
.cid-uNVX7xBYUb .mbr-section-title {
  color: #000000;
}
.cid-uNVXf09rn4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f4e9;
}
.cid-uNVXf09rn4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNVXf09rn4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNVXf09rn4 .items-wrapper {
  justify-content: center;
  margin: 0 -15px;
}
.cid-uNVXf09rn4 .item {
  padding: 0 15px;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uNVXf09rn4 .item {
    margin-bottom: 15px;
  }
}
.cid-uNVXf09rn4 .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 50px;
  border: 1px solid #e0e0e0;
}
@media (max-width: 992px) {
  .cid-uNVXf09rn4 .item .item-wrapper {
    padding: 30px;
  }
}
.cid-uNVXf09rn4 .item .item-wrapper .card-box .iconfont-wrapper {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uNVXf09rn4 .item .item-wrapper .card-box .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uNVXf09rn4 .item .item-wrapper .card-box .iconfont-wrapper .mbr-iconfont {
  font-size: 25px;
  color: #000000;
  display: inline-flex;
}
@media (max-width: 992px) {
  .cid-uNVXf09rn4 .item .item-wrapper .card-box .iconfont-wrapper .mbr-iconfont {
    font-size: 26px;
  }
}
.cid-uNVXf09rn4 .item .item-wrapper .card-box .card-title {
  margin-bottom: 0;
}
.cid-uNVXf09rn4 .item .item-wrapper .card-box .card-text {
  margin-bottom: 0;
}
.cid-uNVXf09rn4 .item .item-wrapper .mbr-section-btn {
  margin-top: 40px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uNVXf09rn4 .item .item-wrapper .mbr-section-btn {
    margin-top: 20px;
  }
}
.cid-uNVXf09rn4 .item .item-wrapper .mbr-section-btn .btn {
  width: 100%;
  margin-bottom: 0;
}
.cid-uNVXf09rn4 .card-title {
  color: #000000;
}
.cid-uNVXf09rn4 .card-text {
  color: #8a8a8a;
}
.cid-uNZKZtJvWA {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f1f4e9;
}
.cid-uNZKZtJvWA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNZKZtJvWA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNZKZtJvWA .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uNZKZtJvWA a {
  position: relative;
  width: fit-content;
}
.cid-uNZKZtJvWA a:before {
  content: '';
  position: absolute;
  width: 100%;
  transition: all 0.3s;
  height: 1px;
  background: currentColor;
  left: 0;
  bottom: 0;
}
.cid-uNZKZtJvWA a:hover:before {
  width: 0;
}
.cid-uNZKZtJvWA .copyright {
  color: #232323;
}
.cid-uNZKZtJvWA .center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-uNZKZtJvWA .row-links {
  width: 100%;
  justify-content: flex-end;
}
.cid-uNZKZtJvWA .row-links .row-links-soc {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uNZKZtJvWA .row-links .row-links-soc li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uNZKZtJvWA .row-links .row-links-soc li p {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-uNZKZtJvWA .row-links .row-links-soc {
    justify-content: center;
  }
}
@media (max-width: 992px) {
  .cid-uNZKZtJvWA p {
    text-align: center;
  }
}
.cid-uNZKZtJvWA row-links-soc-item {
  text-align: center;
}
.cid-uNW07G6uXw .navbar-dropdown {
  background-color: #f1f4e9 !important;
  padding: 0;
}
.cid-uNW07G6uXw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #f1f4e9 !important;
  background: #f1f4e9;
}
.cid-uNW07G6uXw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uNW07G6uXw .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uNW07G6uXw .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uNW07G6uXw .menu_box .navbar.opened,
  .cid-uNW07G6uXw .menu_box .navbar-collapse {
    background-color: #f1f4e9 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uNW07G6uXw .navbar-dropdown {
  position: relative !important;
}
.cid-uNW07G6uXw .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-uNW07G6uXw .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uNW07G6uXw .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uNW07G6uXw .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uNW07G6uXw .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uNW07G6uXw .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #f1f4e9;
  }
  .cid-uNW07G6uXw .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uNW07G6uXw .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uNW07G6uXw .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uNW07G6uXw .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uNW07G6uXw .offcanvas-body .mbr-text,
  .cid-uNW07G6uXw .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uNW07G6uXw .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uNW07G6uXw .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uNW07G6uXw .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #212529;
  }
  .cid-uNW07G6uXw .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uNW07G6uXw .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uNW07G6uXw .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uNW07G6uXw .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uNW07G6uXw ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uNW07G6uXw .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uNW07G6uXw .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-uNW07G6uXw .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uNW07G6uXw 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: 0 !important;
    z-index: 1;
  }
  .cid-uNW07G6uXw .lg_brand {
    margin: 0 1rem;
  }
}
.cid-uNW07G6uXw .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uNW07G6uXw .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uNW07G6uXw .nav-item {
    margin: 0 !important;
  }
}
.cid-uNW07G6uXw .nav-item .nav-link {
  position: relative;
}
.cid-uNW07G6uXw .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #292929;
  transition: all 0.3s ease-out;
}
.cid-uNW07G6uXw .nav-item .nav-link:hover,
.cid-uNW07G6uXw .nav-item .nav-link:focus {
  opacity: 1;
  color: #292929 !important;
  font-weight: 800 !important;
}
.cid-uNW07G6uXw .nav-item .nav-link:hover::before,
.cid-uNW07G6uXw .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uNW07G6uXw .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uNW07G6uXw .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uNW07G6uXw .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uNW07G6uXw .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uNW07G6uXw .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-uNW07G6uXw .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uNW07G6uXw .offcanvas_box {
    display: none;
  }
}
.cid-uNW07G6uXw .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uNW07G6uXw .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uNW07G6uXw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uNW07G6uXw .container {
  display: flex;
  margin: auto;
}
.cid-uNW07G6uXw .iconfont-wrapper {
  color: #212529;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uNW07G6uXw .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uNW07G6uXw .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uNW07G6uXw .navbar-caption {
  color: #212529;
}
.cid-uNW07G6uXw .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uNW07G6uXw .navbar-nav {
    margin: 0;
  }
}
.cid-uNW07G6uXw .dropdown-menu,
.cid-uNW07G6uXw .navbar.opened {
  background-color: false !important;
}
.cid-uNW07G6uXw .nav-item:focus,
.cid-uNW07G6uXw .nav-link:focus {
  outline: none;
}
.cid-uNW07G6uXw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uNW07G6uXw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uNW07G6uXw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uNW07G6uXw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uNW07G6uXw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uNW07G6uXw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uNW07G6uXw .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uNW07G6uXw .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uNW07G6uXw .navbar.opened {
  transition: all 0.3s;
}
.cid-uNW07G6uXw .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uNW07G6uXw .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 5px;
}
.cid-uNW07G6uXw .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.cid-uNW07G6uXw .navbar.collapsed {
  justify-content: center;
}
.cid-uNW07G6uXw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uNW07G6uXw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uNW07G6uXw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uNW07G6uXw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uNW07G6uXw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uNW07G6uXw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uNW07G6uXw .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uNW07G6uXw .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uNW07G6uXw .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uNW07G6uXw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uNW07G6uXw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uNW07G6uXw .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uNW07G6uXw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uNW07G6uXw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uNW07G6uXw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uNW07G6uXw .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uNW07G6uXw .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uNW07G6uXw .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uNW07G6uXw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uNW07G6uXw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uNW07G6uXw .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uNW07G6uXw .navbar.navbar-short {
  min-height: 60px;
}
.cid-uNW07G6uXw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uNW07G6uXw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uNW07G6uXw .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-uNW07G6uXw .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uNW07G6uXw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uNW07G6uXw .dropdown-item.active,
.cid-uNW07G6uXw .dropdown-item:active {
  background-color: transparent;
}
.cid-uNW07G6uXw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uNW07G6uXw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uNW07G6uXw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uNW07G6uXw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uNW07G6uXw ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uNW07G6uXw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uNW07G6uXw button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #f1f4e9;
  background: #f1f4e9;
}
.cid-uNW07G6uXw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #212529;
}
.cid-uNW07G6uXw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uNW07G6uXw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uNW07G6uXw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uNW07G6uXw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uNW07G6uXw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uNW07G6uXw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uNW07G6uXw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uNW07G6uXw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uNW07G6uXw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uNW07G6uXw .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uNW07G6uXw .navbar {
    height: 70px;
  }
  .cid-uNW07G6uXw .navbar.opened {
    height: auto;
  }
  .cid-uNW07G6uXw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uNW07G6uXw .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uNW07G6uXw .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-uNW07G6uXw .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uNW07G6uXw .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  min-width: 145px;
}
@media (max-width: 992px) {
  .cid-uNW07G6uXw .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
@media (max-width: 1400px) {
  .cid-uNW07G6uXw .mbr-section-btn-main .btn {
    padding: 10px 20px;
  }
}
.cid-uNW07G6uXw .navbar-caption:hover {
  color: #292929;
}
@media (min-width: 992px) {
  .cid-uNW07G6uXw .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
@media (min-width: 992px) {
  .cid-uNW07G6uXw .nav-dropdown {
    margin: 0 auto;
  }
}
.cid-uNW07G6uXw .text_widget {
  margin-bottom: 32px;
}
.cid-uNW07G6uXw .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uNW07G6uXw .text_widget a:hover {
  color: #292929 !important;
}
.cid-uNW07G6uXw .mbr-section-subtitle {
  color: #212529;
  text-align: center;
}
.cid-uNW07G6uXw .mbr-text {
  color: #212529;
  text-align: center;
}
.cid-uNW07G6uXw .mbr-section-subtitle,
.cid-uNW07G6uXw .text_widget,
.cid-uNW07G6uXw .mbr-section-btn {
  text-align: center;
}
.cid-uNW07G6uXw a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uNW0ZgBDig {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fdd4c5;
}
.cid-uNW0ZgBDig .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNW0ZgBDig .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uNW0ZgBDig .container {
    padding: 0 30px;
  }
}
.cid-uNW0ZgBDig .image-wrapper {
  margin-right: 80px;
}
@media (max-width: 992px) {
  .cid-uNW0ZgBDig .image-wrapper {
    margin: 0 0 30px 0;
  }
}
.cid-uNW0ZgBDig .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uNW0ZgBDig .image-wrapper img {
    height: 300px;
  }
}
.cid-uNW0ZgBDig .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uNW0ZgBDig .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 30px;
}
.cid-uNW0ZgBDig .title-wrapper .title-wrap .mbr-section-subtitle {
  margin-bottom: 16px;
}
.cid-uNW0ZgBDig .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 24px;
}
.cid-uNW0ZgBDig .mbr-section-subtitle {
  color: #212529;
}
.cid-uNW0ZgBDig .mbr-section-title {
  color: #212529;
}
.cid-uNW0ZgBDig .mbr-text {
  color: #212529;
}
.cid-uNZKZtJvWA {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f1f4e9;
}
.cid-uNZKZtJvWA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNZKZtJvWA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNZKZtJvWA .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uNZKZtJvWA a {
  position: relative;
  width: fit-content;
}
.cid-uNZKZtJvWA a:before {
  content: '';
  position: absolute;
  width: 100%;
  transition: all 0.3s;
  height: 1px;
  background: currentColor;
  left: 0;
  bottom: 0;
}
.cid-uNZKZtJvWA a:hover:before {
  width: 0;
}
.cid-uNZKZtJvWA .copyright {
  color: #232323;
}
.cid-uNZKZtJvWA .center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-uNZKZtJvWA .row-links {
  width: 100%;
  justify-content: flex-end;
}
.cid-uNZKZtJvWA .row-links .row-links-soc {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uNZKZtJvWA .row-links .row-links-soc li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uNZKZtJvWA .row-links .row-links-soc li p {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-uNZKZtJvWA .row-links .row-links-soc {
    justify-content: center;
  }
}
@media (max-width: 992px) {
  .cid-uNZKZtJvWA p {
    text-align: center;
  }
}
.cid-uNZKZtJvWA row-links-soc-item {
  text-align: center;
}
.cid-uNW1Azd3g6 .navbar-dropdown {
  background-color: #f1f4e9 !important;
  padding: 0;
}
.cid-uNW1Azd3g6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #f1f4e9 !important;
  background: #f1f4e9;
}
.cid-uNW1Azd3g6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uNW1Azd3g6 .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uNW1Azd3g6 .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uNW1Azd3g6 .menu_box .navbar.opened,
  .cid-uNW1Azd3g6 .menu_box .navbar-collapse {
    background-color: #f1f4e9 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uNW1Azd3g6 .navbar-dropdown {
  position: relative !important;
}
.cid-uNW1Azd3g6 .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-uNW1Azd3g6 .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uNW1Azd3g6 .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uNW1Azd3g6 .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uNW1Azd3g6 .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uNW1Azd3g6 .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #f1f4e9;
  }
  .cid-uNW1Azd3g6 .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uNW1Azd3g6 .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uNW1Azd3g6 .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uNW1Azd3g6 .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uNW1Azd3g6 .offcanvas-body .mbr-text,
  .cid-uNW1Azd3g6 .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uNW1Azd3g6 .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uNW1Azd3g6 .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uNW1Azd3g6 .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #212529;
  }
  .cid-uNW1Azd3g6 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uNW1Azd3g6 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uNW1Azd3g6 .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uNW1Azd3g6 .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uNW1Azd3g6 ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uNW1Azd3g6 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uNW1Azd3g6 .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-uNW1Azd3g6 .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uNW1Azd3g6 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: 0 !important;
    z-index: 1;
  }
  .cid-uNW1Azd3g6 .lg_brand {
    margin: 0 1rem;
  }
}
.cid-uNW1Azd3g6 .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uNW1Azd3g6 .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uNW1Azd3g6 .nav-item {
    margin: 0 !important;
  }
}
.cid-uNW1Azd3g6 .nav-item .nav-link {
  position: relative;
}
.cid-uNW1Azd3g6 .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #292929;
  transition: all 0.3s ease-out;
}
.cid-uNW1Azd3g6 .nav-item .nav-link:hover,
.cid-uNW1Azd3g6 .nav-item .nav-link:focus {
  opacity: 1;
  color: #292929 !important;
  font-weight: 800 !important;
}
.cid-uNW1Azd3g6 .nav-item .nav-link:hover::before,
.cid-uNW1Azd3g6 .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uNW1Azd3g6 .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uNW1Azd3g6 .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uNW1Azd3g6 .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uNW1Azd3g6 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uNW1Azd3g6 .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-uNW1Azd3g6 .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uNW1Azd3g6 .offcanvas_box {
    display: none;
  }
}
.cid-uNW1Azd3g6 .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uNW1Azd3g6 .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uNW1Azd3g6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uNW1Azd3g6 .container {
  display: flex;
  margin: auto;
}
.cid-uNW1Azd3g6 .iconfont-wrapper {
  color: #212529;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uNW1Azd3g6 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uNW1Azd3g6 .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uNW1Azd3g6 .navbar-caption {
  color: #212529;
}
.cid-uNW1Azd3g6 .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uNW1Azd3g6 .navbar-nav {
    margin: 0;
  }
}
.cid-uNW1Azd3g6 .dropdown-menu,
.cid-uNW1Azd3g6 .navbar.opened {
  background-color: false !important;
}
.cid-uNW1Azd3g6 .nav-item:focus,
.cid-uNW1Azd3g6 .nav-link:focus {
  outline: none;
}
.cid-uNW1Azd3g6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uNW1Azd3g6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uNW1Azd3g6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uNW1Azd3g6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uNW1Azd3g6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uNW1Azd3g6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uNW1Azd3g6 .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uNW1Azd3g6 .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uNW1Azd3g6 .navbar.opened {
  transition: all 0.3s;
}
.cid-uNW1Azd3g6 .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uNW1Azd3g6 .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 5px;
}
.cid-uNW1Azd3g6 .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.cid-uNW1Azd3g6 .navbar.collapsed {
  justify-content: center;
}
.cid-uNW1Azd3g6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uNW1Azd3g6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uNW1Azd3g6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uNW1Azd3g6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uNW1Azd3g6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uNW1Azd3g6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uNW1Azd3g6 .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uNW1Azd3g6 .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uNW1Azd3g6 .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uNW1Azd3g6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uNW1Azd3g6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uNW1Azd3g6 .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uNW1Azd3g6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uNW1Azd3g6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uNW1Azd3g6 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uNW1Azd3g6 .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uNW1Azd3g6 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uNW1Azd3g6 .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uNW1Azd3g6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uNW1Azd3g6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uNW1Azd3g6 .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uNW1Azd3g6 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uNW1Azd3g6 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uNW1Azd3g6 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uNW1Azd3g6 .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-uNW1Azd3g6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uNW1Azd3g6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uNW1Azd3g6 .dropdown-item.active,
.cid-uNW1Azd3g6 .dropdown-item:active {
  background-color: transparent;
}
.cid-uNW1Azd3g6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uNW1Azd3g6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uNW1Azd3g6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uNW1Azd3g6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uNW1Azd3g6 ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uNW1Azd3g6 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uNW1Azd3g6 button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #f1f4e9;
  background: #f1f4e9;
}
.cid-uNW1Azd3g6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #212529;
}
.cid-uNW1Azd3g6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uNW1Azd3g6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uNW1Azd3g6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uNW1Azd3g6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uNW1Azd3g6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uNW1Azd3g6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uNW1Azd3g6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uNW1Azd3g6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uNW1Azd3g6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uNW1Azd3g6 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uNW1Azd3g6 .navbar {
    height: 70px;
  }
  .cid-uNW1Azd3g6 .navbar.opened {
    height: auto;
  }
  .cid-uNW1Azd3g6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uNW1Azd3g6 .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uNW1Azd3g6 .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-uNW1Azd3g6 .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uNW1Azd3g6 .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  min-width: 145px;
}
@media (max-width: 992px) {
  .cid-uNW1Azd3g6 .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
@media (max-width: 1400px) {
  .cid-uNW1Azd3g6 .mbr-section-btn-main .btn {
    padding: 10px 20px;
  }
}
.cid-uNW1Azd3g6 .navbar-caption:hover {
  color: #292929;
}
@media (min-width: 992px) {
  .cid-uNW1Azd3g6 .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
@media (min-width: 992px) {
  .cid-uNW1Azd3g6 .nav-dropdown {
    margin: 0 auto;
  }
}
.cid-uNW1Azd3g6 .text_widget {
  margin-bottom: 32px;
}
.cid-uNW1Azd3g6 .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uNW1Azd3g6 .text_widget a:hover {
  color: #292929 !important;
}
.cid-uNW1Azd3g6 .mbr-section-subtitle {
  color: #212529;
  text-align: center;
}
.cid-uNW1Azd3g6 .mbr-text {
  color: #212529;
  text-align: center;
}
.cid-uNW1Azd3g6 .mbr-section-subtitle,
.cid-uNW1Azd3g6 .text_widget,
.cid-uNW1Azd3g6 .mbr-section-btn {
  text-align: center;
}
.cid-uNW1Azd3g6 a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uNW2NCBN37 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fdd4c5;
}
.cid-uNW2NCBN37 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNW2NCBN37 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uNW2NCBN37 .container {
    padding: 0 30px;
  }
}
.cid-uNW2NCBN37 .image-wrapper {
  margin-right: 80px;
}
@media (max-width: 992px) {
  .cid-uNW2NCBN37 .image-wrapper {
    margin: 0 0 30px 0;
  }
}
.cid-uNW2NCBN37 .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uNW2NCBN37 .image-wrapper img {
    height: 300px;
  }
}
.cid-uNW2NCBN37 .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uNW2NCBN37 .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 30px;
}
.cid-uNW2NCBN37 .title-wrapper .title-wrap .mbr-section-subtitle {
  margin-bottom: 16px;
}
.cid-uNW2NCBN37 .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 24px;
}
.cid-uNW2NCBN37 .mbr-section-subtitle {
  color: #212529;
}
.cid-uNW2NCBN37 .mbr-section-title {
  color: #212529;
}
.cid-uNW2NCBN37 .mbr-text {
  color: #212529;
}
.cid-uNZKZtJvWA {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f1f4e9;
}
.cid-uNZKZtJvWA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNZKZtJvWA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNZKZtJvWA .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uNZKZtJvWA a {
  position: relative;
  width: fit-content;
}
.cid-uNZKZtJvWA a:before {
  content: '';
  position: absolute;
  width: 100%;
  transition: all 0.3s;
  height: 1px;
  background: currentColor;
  left: 0;
  bottom: 0;
}
.cid-uNZKZtJvWA a:hover:before {
  width: 0;
}
.cid-uNZKZtJvWA .copyright {
  color: #232323;
}
.cid-uNZKZtJvWA .center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-uNZKZtJvWA .row-links {
  width: 100%;
  justify-content: flex-end;
}
.cid-uNZKZtJvWA .row-links .row-links-soc {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uNZKZtJvWA .row-links .row-links-soc li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uNZKZtJvWA .row-links .row-links-soc li p {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-uNZKZtJvWA .row-links .row-links-soc {
    justify-content: center;
  }
}
@media (max-width: 992px) {
  .cid-uNZKZtJvWA p {
    text-align: center;
  }
}
.cid-uNZKZtJvWA row-links-soc-item {
  text-align: center;
}
.cid-uNW1BmIb9M .navbar-dropdown {
  background-color: #f1f4e9 !important;
  padding: 0;
}
.cid-uNW1BmIb9M .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #f1f4e9 !important;
  background: #f1f4e9;
}
.cid-uNW1BmIb9M .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uNW1BmIb9M .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uNW1BmIb9M .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uNW1BmIb9M .menu_box .navbar.opened,
  .cid-uNW1BmIb9M .menu_box .navbar-collapse {
    background-color: #f1f4e9 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uNW1BmIb9M .navbar-dropdown {
  position: relative !important;
}
.cid-uNW1BmIb9M .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-uNW1BmIb9M .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uNW1BmIb9M .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uNW1BmIb9M .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uNW1BmIb9M .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uNW1BmIb9M .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #f1f4e9;
  }
  .cid-uNW1BmIb9M .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uNW1BmIb9M .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uNW1BmIb9M .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uNW1BmIb9M .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uNW1BmIb9M .offcanvas-body .mbr-text,
  .cid-uNW1BmIb9M .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uNW1BmIb9M .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uNW1BmIb9M .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uNW1BmIb9M .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #212529;
  }
  .cid-uNW1BmIb9M .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uNW1BmIb9M .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uNW1BmIb9M .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uNW1BmIb9M .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uNW1BmIb9M ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uNW1BmIb9M .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uNW1BmIb9M .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-uNW1BmIb9M .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uNW1BmIb9M 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: 0 !important;
    z-index: 1;
  }
  .cid-uNW1BmIb9M .lg_brand {
    margin: 0 1rem;
  }
}
.cid-uNW1BmIb9M .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uNW1BmIb9M .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uNW1BmIb9M .nav-item {
    margin: 0 !important;
  }
}
.cid-uNW1BmIb9M .nav-item .nav-link {
  position: relative;
}
.cid-uNW1BmIb9M .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #292929;
  transition: all 0.3s ease-out;
}
.cid-uNW1BmIb9M .nav-item .nav-link:hover,
.cid-uNW1BmIb9M .nav-item .nav-link:focus {
  opacity: 1;
  color: #292929 !important;
  font-weight: 800 !important;
}
.cid-uNW1BmIb9M .nav-item .nav-link:hover::before,
.cid-uNW1BmIb9M .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uNW1BmIb9M .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uNW1BmIb9M .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uNW1BmIb9M .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uNW1BmIb9M .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uNW1BmIb9M .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-uNW1BmIb9M .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uNW1BmIb9M .offcanvas_box {
    display: none;
  }
}
.cid-uNW1BmIb9M .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uNW1BmIb9M .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uNW1BmIb9M .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uNW1BmIb9M .container {
  display: flex;
  margin: auto;
}
.cid-uNW1BmIb9M .iconfont-wrapper {
  color: #212529;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uNW1BmIb9M .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uNW1BmIb9M .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uNW1BmIb9M .navbar-caption {
  color: #212529;
}
.cid-uNW1BmIb9M .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uNW1BmIb9M .navbar-nav {
    margin: 0;
  }
}
.cid-uNW1BmIb9M .dropdown-menu,
.cid-uNW1BmIb9M .navbar.opened {
  background-color: false !important;
}
.cid-uNW1BmIb9M .nav-item:focus,
.cid-uNW1BmIb9M .nav-link:focus {
  outline: none;
}
.cid-uNW1BmIb9M .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uNW1BmIb9M .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uNW1BmIb9M .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uNW1BmIb9M .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uNW1BmIb9M .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uNW1BmIb9M .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uNW1BmIb9M .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uNW1BmIb9M .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uNW1BmIb9M .navbar.opened {
  transition: all 0.3s;
}
.cid-uNW1BmIb9M .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uNW1BmIb9M .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 5px;
}
.cid-uNW1BmIb9M .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.cid-uNW1BmIb9M .navbar.collapsed {
  justify-content: center;
}
.cid-uNW1BmIb9M .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uNW1BmIb9M .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uNW1BmIb9M .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uNW1BmIb9M .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uNW1BmIb9M .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uNW1BmIb9M .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uNW1BmIb9M .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uNW1BmIb9M .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uNW1BmIb9M .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uNW1BmIb9M .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uNW1BmIb9M .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uNW1BmIb9M .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uNW1BmIb9M .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uNW1BmIb9M .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uNW1BmIb9M .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uNW1BmIb9M .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uNW1BmIb9M .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uNW1BmIb9M .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uNW1BmIb9M .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uNW1BmIb9M .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uNW1BmIb9M .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uNW1BmIb9M .navbar.navbar-short {
  min-height: 60px;
}
.cid-uNW1BmIb9M .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uNW1BmIb9M .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uNW1BmIb9M .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-uNW1BmIb9M .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uNW1BmIb9M .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uNW1BmIb9M .dropdown-item.active,
.cid-uNW1BmIb9M .dropdown-item:active {
  background-color: transparent;
}
.cid-uNW1BmIb9M .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uNW1BmIb9M .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uNW1BmIb9M .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uNW1BmIb9M .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uNW1BmIb9M ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uNW1BmIb9M .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uNW1BmIb9M button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #f1f4e9;
  background: #f1f4e9;
}
.cid-uNW1BmIb9M button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #212529;
}
.cid-uNW1BmIb9M button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uNW1BmIb9M button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uNW1BmIb9M button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uNW1BmIb9M button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uNW1BmIb9M nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uNW1BmIb9M nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uNW1BmIb9M nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uNW1BmIb9M nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uNW1BmIb9M a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uNW1BmIb9M .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uNW1BmIb9M .navbar {
    height: 70px;
  }
  .cid-uNW1BmIb9M .navbar.opened {
    height: auto;
  }
  .cid-uNW1BmIb9M .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uNW1BmIb9M .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uNW1BmIb9M .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-uNW1BmIb9M .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uNW1BmIb9M .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  min-width: 145px;
}
@media (max-width: 992px) {
  .cid-uNW1BmIb9M .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
@media (max-width: 1400px) {
  .cid-uNW1BmIb9M .mbr-section-btn-main .btn {
    padding: 10px 20px;
  }
}
.cid-uNW1BmIb9M .navbar-caption:hover {
  color: #292929;
}
@media (min-width: 992px) {
  .cid-uNW1BmIb9M .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
@media (min-width: 992px) {
  .cid-uNW1BmIb9M .nav-dropdown {
    margin: 0 auto;
  }
}
.cid-uNW1BmIb9M .text_widget {
  margin-bottom: 32px;
}
.cid-uNW1BmIb9M .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uNW1BmIb9M .text_widget a:hover {
  color: #292929 !important;
}
.cid-uNW1BmIb9M .mbr-section-subtitle {
  color: #212529;
  text-align: center;
}
.cid-uNW1BmIb9M .mbr-text {
  color: #212529;
  text-align: center;
}
.cid-uNW1BmIb9M .mbr-section-subtitle,
.cid-uNW1BmIb9M .text_widget,
.cid-uNW1BmIb9M .mbr-section-btn {
  text-align: center;
}
.cid-uNW1BmIb9M a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uNW9SEipdQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #292929;
}
.cid-uNW9SEipdQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNW9SEipdQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uNW9SEipdQ .container {
    padding: 0 30px;
  }
}
.cid-uNW9SEipdQ .row {
  justify-content: center;
}
.cid-uNW9SEipdQ .title-wrapper {
  margin: 0 12%;
  border-bottom: 1px solid #f1f4e9;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uNW9SEipdQ .title-wrapper {
    margin: 0 0 50px 0;
  }
}
@media (max-width: 992px) {
  .cid-uNW9SEipdQ .title-wrapper {
    margin: 0;
  }
}
.cid-uNW9SEipdQ .title-wrapper .mbr-section-subtitle {
  margin-bottom: 30px;
}
.cid-uNW9SEipdQ .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uNW9SEipdQ .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uNW9SEipdQ .text-wrapper .mbr-name {
  margin-bottom: 0;
}
.cid-uNW9SEipdQ .mbr-section-subtitle {
  color: #f1f4e9;
  text-align: center;
}
.cid-uNW9SEipdQ .mbr-section-title {
  color: #f1f4e9;
  text-align: center;
}
.cid-uNW9SEipdQ .mbr-text {
  color: #f1f4e9;
  text-align: center;
}
.cid-uNW9SEipdQ .mbr-name {
  color: #f1f4e9;
  text-align: center;
}
.cid-uNZKZtJvWA {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f1f4e9;
}
.cid-uNZKZtJvWA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNZKZtJvWA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNZKZtJvWA .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uNZKZtJvWA a {
  position: relative;
  width: fit-content;
}
.cid-uNZKZtJvWA a:before {
  content: '';
  position: absolute;
  width: 100%;
  transition: all 0.3s;
  height: 1px;
  background: currentColor;
  left: 0;
  bottom: 0;
}
.cid-uNZKZtJvWA a:hover:before {
  width: 0;
}
.cid-uNZKZtJvWA .copyright {
  color: #232323;
}
.cid-uNZKZtJvWA .center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-uNZKZtJvWA .row-links {
  width: 100%;
  justify-content: flex-end;
}
.cid-uNZKZtJvWA .row-links .row-links-soc {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uNZKZtJvWA .row-links .row-links-soc li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uNZKZtJvWA .row-links .row-links-soc li p {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-uNZKZtJvWA .row-links .row-links-soc {
    justify-content: center;
  }
}
@media (max-width: 992px) {
  .cid-uNZKZtJvWA p {
    text-align: center;
  }
}
.cid-uNZKZtJvWA row-links-soc-item {
  text-align: center;
}
.cid-uNW1BIjGgj .navbar-dropdown {
  background-color: #f1f4e9 !important;
  padding: 0;
}
.cid-uNW1BIjGgj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #f1f4e9 !important;
  background: #f1f4e9;
}
.cid-uNW1BIjGgj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uNW1BIjGgj .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uNW1BIjGgj .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uNW1BIjGgj .menu_box .navbar.opened,
  .cid-uNW1BIjGgj .menu_box .navbar-collapse {
    background-color: #f1f4e9 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uNW1BIjGgj .navbar-dropdown {
  position: relative !important;
}
.cid-uNW1BIjGgj .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-uNW1BIjGgj .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uNW1BIjGgj .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uNW1BIjGgj .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uNW1BIjGgj .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uNW1BIjGgj .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #f1f4e9;
  }
  .cid-uNW1BIjGgj .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uNW1BIjGgj .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uNW1BIjGgj .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uNW1BIjGgj .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uNW1BIjGgj .offcanvas-body .mbr-text,
  .cid-uNW1BIjGgj .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uNW1BIjGgj .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uNW1BIjGgj .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uNW1BIjGgj .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #212529;
  }
  .cid-uNW1BIjGgj .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uNW1BIjGgj .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uNW1BIjGgj .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uNW1BIjGgj .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uNW1BIjGgj ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uNW1BIjGgj .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uNW1BIjGgj .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-uNW1BIjGgj .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uNW1BIjGgj 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: 0 !important;
    z-index: 1;
  }
  .cid-uNW1BIjGgj .lg_brand {
    margin: 0 1rem;
  }
}
.cid-uNW1BIjGgj .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uNW1BIjGgj .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uNW1BIjGgj .nav-item {
    margin: 0 !important;
  }
}
.cid-uNW1BIjGgj .nav-item .nav-link {
  position: relative;
}
.cid-uNW1BIjGgj .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #292929;
  transition: all 0.3s ease-out;
}
.cid-uNW1BIjGgj .nav-item .nav-link:hover,
.cid-uNW1BIjGgj .nav-item .nav-link:focus {
  opacity: 1;
  color: #292929 !important;
  font-weight: 800 !important;
}
.cid-uNW1BIjGgj .nav-item .nav-link:hover::before,
.cid-uNW1BIjGgj .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uNW1BIjGgj .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uNW1BIjGgj .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uNW1BIjGgj .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uNW1BIjGgj .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uNW1BIjGgj .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-uNW1BIjGgj .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uNW1BIjGgj .offcanvas_box {
    display: none;
  }
}
.cid-uNW1BIjGgj .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uNW1BIjGgj .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uNW1BIjGgj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uNW1BIjGgj .container {
  display: flex;
  margin: auto;
}
.cid-uNW1BIjGgj .iconfont-wrapper {
  color: #212529;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uNW1BIjGgj .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uNW1BIjGgj .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uNW1BIjGgj .navbar-caption {
  color: #212529;
}
.cid-uNW1BIjGgj .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uNW1BIjGgj .navbar-nav {
    margin: 0;
  }
}
.cid-uNW1BIjGgj .dropdown-menu,
.cid-uNW1BIjGgj .navbar.opened {
  background-color: false !important;
}
.cid-uNW1BIjGgj .nav-item:focus,
.cid-uNW1BIjGgj .nav-link:focus {
  outline: none;
}
.cid-uNW1BIjGgj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uNW1BIjGgj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uNW1BIjGgj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uNW1BIjGgj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uNW1BIjGgj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uNW1BIjGgj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uNW1BIjGgj .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uNW1BIjGgj .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uNW1BIjGgj .navbar.opened {
  transition: all 0.3s;
}
.cid-uNW1BIjGgj .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uNW1BIjGgj .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 5px;
}
.cid-uNW1BIjGgj .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.cid-uNW1BIjGgj .navbar.collapsed {
  justify-content: center;
}
.cid-uNW1BIjGgj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uNW1BIjGgj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uNW1BIjGgj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uNW1BIjGgj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uNW1BIjGgj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uNW1BIjGgj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uNW1BIjGgj .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uNW1BIjGgj .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uNW1BIjGgj .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uNW1BIjGgj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uNW1BIjGgj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uNW1BIjGgj .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uNW1BIjGgj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uNW1BIjGgj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uNW1BIjGgj .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uNW1BIjGgj .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uNW1BIjGgj .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uNW1BIjGgj .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uNW1BIjGgj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uNW1BIjGgj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uNW1BIjGgj .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uNW1BIjGgj .navbar.navbar-short {
  min-height: 60px;
}
.cid-uNW1BIjGgj .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uNW1BIjGgj .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uNW1BIjGgj .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-uNW1BIjGgj .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uNW1BIjGgj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uNW1BIjGgj .dropdown-item.active,
.cid-uNW1BIjGgj .dropdown-item:active {
  background-color: transparent;
}
.cid-uNW1BIjGgj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uNW1BIjGgj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uNW1BIjGgj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uNW1BIjGgj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uNW1BIjGgj ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uNW1BIjGgj .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uNW1BIjGgj button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #f1f4e9;
  background: #f1f4e9;
}
.cid-uNW1BIjGgj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #212529;
}
.cid-uNW1BIjGgj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uNW1BIjGgj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uNW1BIjGgj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uNW1BIjGgj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uNW1BIjGgj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uNW1BIjGgj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uNW1BIjGgj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uNW1BIjGgj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uNW1BIjGgj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uNW1BIjGgj .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uNW1BIjGgj .navbar {
    height: 70px;
  }
  .cid-uNW1BIjGgj .navbar.opened {
    height: auto;
  }
  .cid-uNW1BIjGgj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uNW1BIjGgj .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uNW1BIjGgj .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-uNW1BIjGgj .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uNW1BIjGgj .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  min-width: 145px;
}
@media (max-width: 992px) {
  .cid-uNW1BIjGgj .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
@media (max-width: 1400px) {
  .cid-uNW1BIjGgj .mbr-section-btn-main .btn {
    padding: 10px 20px;
  }
}
.cid-uNW1BIjGgj .navbar-caption:hover {
  color: #292929;
}
@media (min-width: 992px) {
  .cid-uNW1BIjGgj .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
@media (min-width: 992px) {
  .cid-uNW1BIjGgj .nav-dropdown {
    margin: 0 auto;
  }
}
.cid-uNW1BIjGgj .text_widget {
  margin-bottom: 32px;
}
.cid-uNW1BIjGgj .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uNW1BIjGgj .text_widget a:hover {
  color: #292929 !important;
}
.cid-uNW1BIjGgj .mbr-section-subtitle {
  color: #212529;
  text-align: center;
}
.cid-uNW1BIjGgj .mbr-text {
  color: #212529;
  text-align: center;
}
.cid-uNW1BIjGgj .mbr-section-subtitle,
.cid-uNW1BIjGgj .text_widget,
.cid-uNW1BIjGgj .mbr-section-btn {
  text-align: center;
}
.cid-uNW1BIjGgj a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uNW9BQ4Jq6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #292929;
}
.cid-uNW9BQ4Jq6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNW9BQ4Jq6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uNW9BQ4Jq6 .container {
    padding: 0 30px;
  }
}
.cid-uNW9BQ4Jq6 .row {
  justify-content: center;
}
.cid-uNW9BQ4Jq6 .title-wrapper {
  margin: 0 12%;
  border-bottom: 1px solid #f1f4e9;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uNW9BQ4Jq6 .title-wrapper {
    margin: 0 0 50px 0;
  }
}
@media (max-width: 992px) {
  .cid-uNW9BQ4Jq6 .title-wrapper {
    margin: 0;
  }
}
.cid-uNW9BQ4Jq6 .title-wrapper .mbr-section-subtitle {
  margin-bottom: 30px;
}
.cid-uNW9BQ4Jq6 .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uNW9BQ4Jq6 .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uNW9BQ4Jq6 .text-wrapper .mbr-name {
  margin-bottom: 0;
}
.cid-uNW9BQ4Jq6 .mbr-section-subtitle {
  color: #f1f4e9;
  text-align: center;
}
.cid-uNW9BQ4Jq6 .mbr-section-title {
  color: #f1f4e9;
  text-align: center;
}
.cid-uNW9BQ4Jq6 .mbr-text {
  color: #f1f4e9;
  text-align: left;
}
.cid-uNW9BQ4Jq6 .mbr-name {
  color: #f1f4e9;
  text-align: center;
}
.cid-uNZKZtJvWA {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f1f4e9;
}
.cid-uNZKZtJvWA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNZKZtJvWA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNZKZtJvWA .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uNZKZtJvWA a {
  position: relative;
  width: fit-content;
}
.cid-uNZKZtJvWA a:before {
  content: '';
  position: absolute;
  width: 100%;
  transition: all 0.3s;
  height: 1px;
  background: currentColor;
  left: 0;
  bottom: 0;
}
.cid-uNZKZtJvWA a:hover:before {
  width: 0;
}
.cid-uNZKZtJvWA .copyright {
  color: #232323;
}
.cid-uNZKZtJvWA .center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-uNZKZtJvWA .row-links {
  width: 100%;
  justify-content: flex-end;
}
.cid-uNZKZtJvWA .row-links .row-links-soc {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uNZKZtJvWA .row-links .row-links-soc li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uNZKZtJvWA .row-links .row-links-soc li p {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-uNZKZtJvWA .row-links .row-links-soc {
    justify-content: center;
  }
}
@media (max-width: 992px) {
  .cid-uNZKZtJvWA p {
    text-align: center;
  }
}
.cid-uNZKZtJvWA row-links-soc-item {
  text-align: center;
}
.cid-uNW3dVXtOy .navbar-dropdown {
  background-color: #f1f4e9 !important;
  padding: 0;
}
.cid-uNW3dVXtOy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #f1f4e9 !important;
  background: #f1f4e9;
}
.cid-uNW3dVXtOy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uNW3dVXtOy .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uNW3dVXtOy .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uNW3dVXtOy .menu_box .navbar.opened,
  .cid-uNW3dVXtOy .menu_box .navbar-collapse {
    background-color: #f1f4e9 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uNW3dVXtOy .navbar-dropdown {
  position: relative !important;
}
.cid-uNW3dVXtOy .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-uNW3dVXtOy .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uNW3dVXtOy .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uNW3dVXtOy .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uNW3dVXtOy .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uNW3dVXtOy .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #f1f4e9;
  }
  .cid-uNW3dVXtOy .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uNW3dVXtOy .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uNW3dVXtOy .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uNW3dVXtOy .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uNW3dVXtOy .offcanvas-body .mbr-text,
  .cid-uNW3dVXtOy .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uNW3dVXtOy .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uNW3dVXtOy .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uNW3dVXtOy .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #212529;
  }
  .cid-uNW3dVXtOy .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uNW3dVXtOy .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uNW3dVXtOy .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uNW3dVXtOy .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uNW3dVXtOy ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uNW3dVXtOy .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uNW3dVXtOy .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-uNW3dVXtOy .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uNW3dVXtOy 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: 0 !important;
    z-index: 1;
  }
  .cid-uNW3dVXtOy .lg_brand {
    margin: 0 1rem;
  }
}
.cid-uNW3dVXtOy .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uNW3dVXtOy .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uNW3dVXtOy .nav-item {
    margin: 0 !important;
  }
}
.cid-uNW3dVXtOy .nav-item .nav-link {
  position: relative;
}
.cid-uNW3dVXtOy .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #292929;
  transition: all 0.3s ease-out;
}
.cid-uNW3dVXtOy .nav-item .nav-link:hover,
.cid-uNW3dVXtOy .nav-item .nav-link:focus {
  opacity: 1;
  color: #292929 !important;
  font-weight: 800 !important;
}
.cid-uNW3dVXtOy .nav-item .nav-link:hover::before,
.cid-uNW3dVXtOy .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uNW3dVXtOy .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uNW3dVXtOy .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uNW3dVXtOy .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uNW3dVXtOy .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uNW3dVXtOy .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-uNW3dVXtOy .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uNW3dVXtOy .offcanvas_box {
    display: none;
  }
}
.cid-uNW3dVXtOy .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uNW3dVXtOy .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uNW3dVXtOy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uNW3dVXtOy .container {
  display: flex;
  margin: auto;
}
.cid-uNW3dVXtOy .iconfont-wrapper {
  color: #212529;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uNW3dVXtOy .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uNW3dVXtOy .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uNW3dVXtOy .navbar-caption {
  color: #212529;
}
.cid-uNW3dVXtOy .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uNW3dVXtOy .navbar-nav {
    margin: 0;
  }
}
.cid-uNW3dVXtOy .dropdown-menu,
.cid-uNW3dVXtOy .navbar.opened {
  background-color: false !important;
}
.cid-uNW3dVXtOy .nav-item:focus,
.cid-uNW3dVXtOy .nav-link:focus {
  outline: none;
}
.cid-uNW3dVXtOy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uNW3dVXtOy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uNW3dVXtOy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uNW3dVXtOy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uNW3dVXtOy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uNW3dVXtOy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uNW3dVXtOy .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uNW3dVXtOy .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uNW3dVXtOy .navbar.opened {
  transition: all 0.3s;
}
.cid-uNW3dVXtOy .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uNW3dVXtOy .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 5px;
}
.cid-uNW3dVXtOy .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.cid-uNW3dVXtOy .navbar.collapsed {
  justify-content: center;
}
.cid-uNW3dVXtOy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uNW3dVXtOy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uNW3dVXtOy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uNW3dVXtOy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uNW3dVXtOy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uNW3dVXtOy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uNW3dVXtOy .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uNW3dVXtOy .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uNW3dVXtOy .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uNW3dVXtOy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uNW3dVXtOy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uNW3dVXtOy .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uNW3dVXtOy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uNW3dVXtOy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uNW3dVXtOy .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uNW3dVXtOy .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uNW3dVXtOy .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uNW3dVXtOy .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uNW3dVXtOy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uNW3dVXtOy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uNW3dVXtOy .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uNW3dVXtOy .navbar.navbar-short {
  min-height: 60px;
}
.cid-uNW3dVXtOy .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uNW3dVXtOy .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uNW3dVXtOy .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-uNW3dVXtOy .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uNW3dVXtOy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uNW3dVXtOy .dropdown-item.active,
.cid-uNW3dVXtOy .dropdown-item:active {
  background-color: transparent;
}
.cid-uNW3dVXtOy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uNW3dVXtOy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uNW3dVXtOy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uNW3dVXtOy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uNW3dVXtOy ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uNW3dVXtOy .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uNW3dVXtOy button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #f1f4e9;
  background: #f1f4e9;
}
.cid-uNW3dVXtOy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #212529;
}
.cid-uNW3dVXtOy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uNW3dVXtOy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uNW3dVXtOy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uNW3dVXtOy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uNW3dVXtOy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uNW3dVXtOy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uNW3dVXtOy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uNW3dVXtOy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uNW3dVXtOy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uNW3dVXtOy .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uNW3dVXtOy .navbar {
    height: 70px;
  }
  .cid-uNW3dVXtOy .navbar.opened {
    height: auto;
  }
  .cid-uNW3dVXtOy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uNW3dVXtOy .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uNW3dVXtOy .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-uNW3dVXtOy .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uNW3dVXtOy .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  min-width: 145px;
}
@media (max-width: 992px) {
  .cid-uNW3dVXtOy .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
@media (max-width: 1400px) {
  .cid-uNW3dVXtOy .mbr-section-btn-main .btn {
    padding: 10px 20px;
  }
}
.cid-uNW3dVXtOy .navbar-caption:hover {
  color: #292929;
}
@media (min-width: 992px) {
  .cid-uNW3dVXtOy .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
@media (min-width: 992px) {
  .cid-uNW3dVXtOy .nav-dropdown {
    margin: 0 auto;
  }
}
.cid-uNW3dVXtOy .text_widget {
  margin-bottom: 32px;
}
.cid-uNW3dVXtOy .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uNW3dVXtOy .text_widget a:hover {
  color: #292929 !important;
}
.cid-uNW3dVXtOy .mbr-section-subtitle {
  color: #212529;
  text-align: center;
}
.cid-uNW3dVXtOy .mbr-text {
  color: #212529;
  text-align: center;
}
.cid-uNW3dVXtOy .mbr-section-subtitle,
.cid-uNW3dVXtOy .text_widget,
.cid-uNW3dVXtOy .mbr-section-btn {
  text-align: center;
}
.cid-uNW3dVXtOy a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uNW3dWBSsF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fdd4c5;
}
.cid-uNW3dWBSsF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNW3dWBSsF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uNW3dWBSsF .container {
    padding: 0 30px;
  }
}
.cid-uNW3dWBSsF .image-wrapper {
  margin-right: 80px;
}
@media (max-width: 992px) {
  .cid-uNW3dWBSsF .image-wrapper {
    margin: 0 0 30px 0;
  }
}
.cid-uNW3dWBSsF .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uNW3dWBSsF .image-wrapper img {
    height: 300px;
  }
}
.cid-uNW3dWBSsF .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uNW3dWBSsF .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 30px;
}
.cid-uNW3dWBSsF .title-wrapper .title-wrap .mbr-section-subtitle {
  margin-bottom: 16px;
}
.cid-uNW3dWBSsF .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 24px;
}
.cid-uNW3dWBSsF .mbr-section-subtitle {
  color: #212529;
}
.cid-uNW3dWBSsF .mbr-section-title {
  color: #212529;
}
.cid-uNW3dWBSsF .mbr-text {
  color: #212529;
}
.cid-uNZKZtJvWA {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f1f4e9;
}
.cid-uNZKZtJvWA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNZKZtJvWA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNZKZtJvWA .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uNZKZtJvWA a {
  position: relative;
  width: fit-content;
}
.cid-uNZKZtJvWA a:before {
  content: '';
  position: absolute;
  width: 100%;
  transition: all 0.3s;
  height: 1px;
  background: currentColor;
  left: 0;
  bottom: 0;
}
.cid-uNZKZtJvWA a:hover:before {
  width: 0;
}
.cid-uNZKZtJvWA .copyright {
  color: #232323;
}
.cid-uNZKZtJvWA .center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-uNZKZtJvWA .row-links {
  width: 100%;
  justify-content: flex-end;
}
.cid-uNZKZtJvWA .row-links .row-links-soc {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uNZKZtJvWA .row-links .row-links-soc li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uNZKZtJvWA .row-links .row-links-soc li p {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-uNZKZtJvWA .row-links .row-links-soc {
    justify-content: center;
  }
}
@media (max-width: 992px) {
  .cid-uNZKZtJvWA p {
    text-align: center;
  }
}
.cid-uNZKZtJvWA row-links-soc-item {
  text-align: center;
}
.cid-uNW3gBHSyk .navbar-dropdown {
  background-color: #f1f4e9 !important;
  padding: 0;
}
.cid-uNW3gBHSyk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #f1f4e9 !important;
  background: #f1f4e9;
}
.cid-uNW3gBHSyk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uNW3gBHSyk .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uNW3gBHSyk .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uNW3gBHSyk .menu_box .navbar.opened,
  .cid-uNW3gBHSyk .menu_box .navbar-collapse {
    background-color: #f1f4e9 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uNW3gBHSyk .navbar-dropdown {
  position: relative !important;
}
.cid-uNW3gBHSyk .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-uNW3gBHSyk .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uNW3gBHSyk .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uNW3gBHSyk .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uNW3gBHSyk .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uNW3gBHSyk .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #f1f4e9;
  }
  .cid-uNW3gBHSyk .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uNW3gBHSyk .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uNW3gBHSyk .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uNW3gBHSyk .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uNW3gBHSyk .offcanvas-body .mbr-text,
  .cid-uNW3gBHSyk .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uNW3gBHSyk .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uNW3gBHSyk .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uNW3gBHSyk .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #212529;
  }
  .cid-uNW3gBHSyk .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uNW3gBHSyk .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uNW3gBHSyk .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uNW3gBHSyk .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uNW3gBHSyk ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uNW3gBHSyk .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uNW3gBHSyk .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-uNW3gBHSyk .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uNW3gBHSyk 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: 0 !important;
    z-index: 1;
  }
  .cid-uNW3gBHSyk .lg_brand {
    margin: 0 1rem;
  }
}
.cid-uNW3gBHSyk .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uNW3gBHSyk .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uNW3gBHSyk .nav-item {
    margin: 0 !important;
  }
}
.cid-uNW3gBHSyk .nav-item .nav-link {
  position: relative;
}
.cid-uNW3gBHSyk .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #292929;
  transition: all 0.3s ease-out;
}
.cid-uNW3gBHSyk .nav-item .nav-link:hover,
.cid-uNW3gBHSyk .nav-item .nav-link:focus {
  opacity: 1;
  color: #292929 !important;
  font-weight: 800 !important;
}
.cid-uNW3gBHSyk .nav-item .nav-link:hover::before,
.cid-uNW3gBHSyk .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uNW3gBHSyk .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uNW3gBHSyk .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uNW3gBHSyk .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uNW3gBHSyk .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uNW3gBHSyk .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-uNW3gBHSyk .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uNW3gBHSyk .offcanvas_box {
    display: none;
  }
}
.cid-uNW3gBHSyk .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uNW3gBHSyk .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uNW3gBHSyk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uNW3gBHSyk .container {
  display: flex;
  margin: auto;
}
.cid-uNW3gBHSyk .iconfont-wrapper {
  color: #212529;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uNW3gBHSyk .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uNW3gBHSyk .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uNW3gBHSyk .navbar-caption {
  color: #212529;
}
.cid-uNW3gBHSyk .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uNW3gBHSyk .navbar-nav {
    margin: 0;
  }
}
.cid-uNW3gBHSyk .dropdown-menu,
.cid-uNW3gBHSyk .navbar.opened {
  background-color: false !important;
}
.cid-uNW3gBHSyk .nav-item:focus,
.cid-uNW3gBHSyk .nav-link:focus {
  outline: none;
}
.cid-uNW3gBHSyk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uNW3gBHSyk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uNW3gBHSyk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uNW3gBHSyk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uNW3gBHSyk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uNW3gBHSyk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uNW3gBHSyk .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uNW3gBHSyk .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uNW3gBHSyk .navbar.opened {
  transition: all 0.3s;
}
.cid-uNW3gBHSyk .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uNW3gBHSyk .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 5px;
}
.cid-uNW3gBHSyk .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.cid-uNW3gBHSyk .navbar.collapsed {
  justify-content: center;
}
.cid-uNW3gBHSyk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uNW3gBHSyk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uNW3gBHSyk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uNW3gBHSyk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uNW3gBHSyk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uNW3gBHSyk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uNW3gBHSyk .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uNW3gBHSyk .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uNW3gBHSyk .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uNW3gBHSyk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uNW3gBHSyk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uNW3gBHSyk .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uNW3gBHSyk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uNW3gBHSyk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uNW3gBHSyk .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uNW3gBHSyk .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uNW3gBHSyk .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uNW3gBHSyk .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uNW3gBHSyk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uNW3gBHSyk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uNW3gBHSyk .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uNW3gBHSyk .navbar.navbar-short {
  min-height: 60px;
}
.cid-uNW3gBHSyk .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uNW3gBHSyk .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uNW3gBHSyk .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-uNW3gBHSyk .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uNW3gBHSyk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uNW3gBHSyk .dropdown-item.active,
.cid-uNW3gBHSyk .dropdown-item:active {
  background-color: transparent;
}
.cid-uNW3gBHSyk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uNW3gBHSyk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uNW3gBHSyk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uNW3gBHSyk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uNW3gBHSyk ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uNW3gBHSyk .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uNW3gBHSyk button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #f1f4e9;
  background: #f1f4e9;
}
.cid-uNW3gBHSyk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #212529;
}
.cid-uNW3gBHSyk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uNW3gBHSyk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uNW3gBHSyk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uNW3gBHSyk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uNW3gBHSyk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uNW3gBHSyk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uNW3gBHSyk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uNW3gBHSyk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uNW3gBHSyk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uNW3gBHSyk .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uNW3gBHSyk .navbar {
    height: 70px;
  }
  .cid-uNW3gBHSyk .navbar.opened {
    height: auto;
  }
  .cid-uNW3gBHSyk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uNW3gBHSyk .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uNW3gBHSyk .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-uNW3gBHSyk .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uNW3gBHSyk .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  min-width: 145px;
}
@media (max-width: 992px) {
  .cid-uNW3gBHSyk .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
@media (max-width: 1400px) {
  .cid-uNW3gBHSyk .mbr-section-btn-main .btn {
    padding: 10px 20px;
  }
}
.cid-uNW3gBHSyk .navbar-caption:hover {
  color: #292929;
}
@media (min-width: 992px) {
  .cid-uNW3gBHSyk .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
@media (min-width: 992px) {
  .cid-uNW3gBHSyk .nav-dropdown {
    margin: 0 auto;
  }
}
.cid-uNW3gBHSyk .text_widget {
  margin-bottom: 32px;
}
.cid-uNW3gBHSyk .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uNW3gBHSyk .text_widget a:hover {
  color: #292929 !important;
}
.cid-uNW3gBHSyk .mbr-section-subtitle {
  color: #212529;
  text-align: center;
}
.cid-uNW3gBHSyk .mbr-text {
  color: #212529;
  text-align: center;
}
.cid-uNW3gBHSyk .mbr-section-subtitle,
.cid-uNW3gBHSyk .text_widget,
.cid-uNW3gBHSyk .mbr-section-btn {
  text-align: center;
}
.cid-uNW3gBHSyk a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uNW3gC3zRx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fdd4c5;
}
.cid-uNW3gC3zRx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNW3gC3zRx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uNW3gC3zRx .container {
    padding: 0 30px;
  }
}
.cid-uNW3gC3zRx .image-wrapper {
  margin-right: 80px;
}
@media (max-width: 992px) {
  .cid-uNW3gC3zRx .image-wrapper {
    margin: 0 0 30px 0;
  }
}
.cid-uNW3gC3zRx .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uNW3gC3zRx .image-wrapper img {
    height: 300px;
  }
}
.cid-uNW3gC3zRx .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uNW3gC3zRx .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 30px;
}
.cid-uNW3gC3zRx .title-wrapper .title-wrap .mbr-section-subtitle {
  margin-bottom: 16px;
}
.cid-uNW3gC3zRx .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 24px;
}
.cid-uNW3gC3zRx .mbr-section-subtitle {
  color: #212529;
}
.cid-uNW3gC3zRx .mbr-section-title {
  color: #212529;
}
.cid-uNW3gC3zRx .mbr-text {
  color: #212529;
}
.cid-uNZKZtJvWA {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f1f4e9;
}
.cid-uNZKZtJvWA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNZKZtJvWA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNZKZtJvWA .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uNZKZtJvWA a {
  position: relative;
  width: fit-content;
}
.cid-uNZKZtJvWA a:before {
  content: '';
  position: absolute;
  width: 100%;
  transition: all 0.3s;
  height: 1px;
  background: currentColor;
  left: 0;
  bottom: 0;
}
.cid-uNZKZtJvWA a:hover:before {
  width: 0;
}
.cid-uNZKZtJvWA .copyright {
  color: #232323;
}
.cid-uNZKZtJvWA .center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-uNZKZtJvWA .row-links {
  width: 100%;
  justify-content: flex-end;
}
.cid-uNZKZtJvWA .row-links .row-links-soc {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uNZKZtJvWA .row-links .row-links-soc li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uNZKZtJvWA .row-links .row-links-soc li p {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-uNZKZtJvWA .row-links .row-links-soc {
    justify-content: center;
  }
}
@media (max-width: 992px) {
  .cid-uNZKZtJvWA p {
    text-align: center;
  }
}
.cid-uNZKZtJvWA row-links-soc-item {
  text-align: center;
}
.cid-uNZqagGRx2 .navbar-dropdown {
  background-color: #f1f4e9 !important;
  padding: 0;
}
.cid-uNZqagGRx2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #f1f4e9 !important;
  background: #f1f4e9;
}
.cid-uNZqagGRx2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uNZqagGRx2 .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uNZqagGRx2 .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uNZqagGRx2 .menu_box .navbar.opened,
  .cid-uNZqagGRx2 .menu_box .navbar-collapse {
    background-color: #f1f4e9 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uNZqagGRx2 .navbar-dropdown {
  position: relative !important;
}
.cid-uNZqagGRx2 .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-uNZqagGRx2 .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uNZqagGRx2 .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uNZqagGRx2 .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uNZqagGRx2 .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uNZqagGRx2 .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #f1f4e9;
  }
  .cid-uNZqagGRx2 .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uNZqagGRx2 .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uNZqagGRx2 .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uNZqagGRx2 .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uNZqagGRx2 .offcanvas-body .mbr-text,
  .cid-uNZqagGRx2 .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uNZqagGRx2 .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uNZqagGRx2 .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uNZqagGRx2 .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #212529;
  }
  .cid-uNZqagGRx2 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uNZqagGRx2 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uNZqagGRx2 .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uNZqagGRx2 .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uNZqagGRx2 ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uNZqagGRx2 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uNZqagGRx2 .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-uNZqagGRx2 .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uNZqagGRx2 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: 0 !important;
    z-index: 1;
  }
  .cid-uNZqagGRx2 .lg_brand {
    margin: 0 1rem;
  }
}
.cid-uNZqagGRx2 .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uNZqagGRx2 .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uNZqagGRx2 .nav-item {
    margin: 0 !important;
  }
}
.cid-uNZqagGRx2 .nav-item .nav-link {
  position: relative;
}
.cid-uNZqagGRx2 .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #292929;
  transition: all 0.3s ease-out;
}
.cid-uNZqagGRx2 .nav-item .nav-link:hover,
.cid-uNZqagGRx2 .nav-item .nav-link:focus {
  opacity: 1;
  color: #292929 !important;
  font-weight: 800 !important;
}
.cid-uNZqagGRx2 .nav-item .nav-link:hover::before,
.cid-uNZqagGRx2 .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uNZqagGRx2 .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uNZqagGRx2 .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uNZqagGRx2 .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uNZqagGRx2 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uNZqagGRx2 .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-uNZqagGRx2 .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uNZqagGRx2 .offcanvas_box {
    display: none;
  }
}
.cid-uNZqagGRx2 .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uNZqagGRx2 .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uNZqagGRx2 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uNZqagGRx2 .container {
  display: flex;
  margin: auto;
}
.cid-uNZqagGRx2 .iconfont-wrapper {
  color: #212529;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uNZqagGRx2 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uNZqagGRx2 .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uNZqagGRx2 .navbar-caption {
  color: #212529;
}
.cid-uNZqagGRx2 .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uNZqagGRx2 .navbar-nav {
    margin: 0;
  }
}
.cid-uNZqagGRx2 .dropdown-menu,
.cid-uNZqagGRx2 .navbar.opened {
  background-color: false !important;
}
.cid-uNZqagGRx2 .nav-item:focus,
.cid-uNZqagGRx2 .nav-link:focus {
  outline: none;
}
.cid-uNZqagGRx2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uNZqagGRx2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uNZqagGRx2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uNZqagGRx2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uNZqagGRx2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uNZqagGRx2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uNZqagGRx2 .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uNZqagGRx2 .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uNZqagGRx2 .navbar.opened {
  transition: all 0.3s;
}
.cid-uNZqagGRx2 .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uNZqagGRx2 .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 5px;
}
.cid-uNZqagGRx2 .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.cid-uNZqagGRx2 .navbar.collapsed {
  justify-content: center;
}
.cid-uNZqagGRx2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uNZqagGRx2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uNZqagGRx2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uNZqagGRx2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uNZqagGRx2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uNZqagGRx2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uNZqagGRx2 .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uNZqagGRx2 .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uNZqagGRx2 .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uNZqagGRx2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uNZqagGRx2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uNZqagGRx2 .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uNZqagGRx2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uNZqagGRx2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uNZqagGRx2 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uNZqagGRx2 .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uNZqagGRx2 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uNZqagGRx2 .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uNZqagGRx2 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uNZqagGRx2 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uNZqagGRx2 .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uNZqagGRx2 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uNZqagGRx2 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uNZqagGRx2 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uNZqagGRx2 .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-uNZqagGRx2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uNZqagGRx2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uNZqagGRx2 .dropdown-item.active,
.cid-uNZqagGRx2 .dropdown-item:active {
  background-color: transparent;
}
.cid-uNZqagGRx2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uNZqagGRx2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uNZqagGRx2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uNZqagGRx2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uNZqagGRx2 ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uNZqagGRx2 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uNZqagGRx2 button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #f1f4e9;
  background: #f1f4e9;
}
.cid-uNZqagGRx2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #212529;
}
.cid-uNZqagGRx2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uNZqagGRx2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uNZqagGRx2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uNZqagGRx2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uNZqagGRx2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uNZqagGRx2 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uNZqagGRx2 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uNZqagGRx2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uNZqagGRx2 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uNZqagGRx2 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uNZqagGRx2 .navbar {
    height: 70px;
  }
  .cid-uNZqagGRx2 .navbar.opened {
    height: auto;
  }
  .cid-uNZqagGRx2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uNZqagGRx2 .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uNZqagGRx2 .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-uNZqagGRx2 .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uNZqagGRx2 .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  min-width: 145px;
}
@media (max-width: 992px) {
  .cid-uNZqagGRx2 .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
@media (max-width: 1400px) {
  .cid-uNZqagGRx2 .mbr-section-btn-main .btn {
    padding: 10px 20px;
  }
}
.cid-uNZqagGRx2 .navbar-caption:hover {
  color: #292929;
}
@media (min-width: 992px) {
  .cid-uNZqagGRx2 .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
@media (min-width: 992px) {
  .cid-uNZqagGRx2 .nav-dropdown {
    margin: 0 auto;
  }
}
.cid-uNZqagGRx2 .text_widget {
  margin-bottom: 32px;
}
.cid-uNZqagGRx2 .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uNZqagGRx2 .text_widget a:hover {
  color: #292929 !important;
}
.cid-uNZqagGRx2 .mbr-section-subtitle {
  color: #212529;
  text-align: center;
}
.cid-uNZqagGRx2 .mbr-text {
  color: #212529;
  text-align: center;
}
.cid-uNZqagGRx2 .mbr-section-subtitle,
.cid-uNZqagGRx2 .text_widget,
.cid-uNZqagGRx2 .mbr-section-btn {
  text-align: center;
}
.cid-uNZqagGRx2 a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uNZqQueCrn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fdd4c5;
}
.cid-uNZqQueCrn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNZqQueCrn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uNZqQueCrn .container {
    padding: 0 30px;
  }
}
.cid-uNZqQueCrn .row {
  justify-content: center;
}
.cid-uNZqQueCrn .title-wrapper {
  margin: 0 12%;
  border-bottom: 1px solid #000000;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uNZqQueCrn .title-wrapper {
    margin: 0 0 50px 0;
  }
}
@media (max-width: 992px) {
  .cid-uNZqQueCrn .title-wrapper {
    margin: 0;
  }
}
.cid-uNZqQueCrn .title-wrapper .mbr-section-subtitle {
  margin-bottom: 30px;
}
.cid-uNZqQueCrn .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uNZqQueCrn .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uNZqQueCrn .text-wrapper .mbr-name {
  margin-bottom: 0;
}
.cid-uNZqQueCrn .mbr-section-subtitle {
  color: #f1f4e9;
  text-align: center;
}
.cid-uNZqQueCrn .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uNZqQueCrn .mbr-text {
  color: #000000;
}
.cid-uNZqQueCrn .mbr-name {
  color: #f1f4e9;
  text-align: center;
}
.cid-uNZKZtJvWA {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f1f4e9;
}
.cid-uNZKZtJvWA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNZKZtJvWA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNZKZtJvWA .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uNZKZtJvWA a {
  position: relative;
  width: fit-content;
}
.cid-uNZKZtJvWA a:before {
  content: '';
  position: absolute;
  width: 100%;
  transition: all 0.3s;
  height: 1px;
  background: currentColor;
  left: 0;
  bottom: 0;
}
.cid-uNZKZtJvWA a:hover:before {
  width: 0;
}
.cid-uNZKZtJvWA .copyright {
  color: #232323;
}
.cid-uNZKZtJvWA .center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-uNZKZtJvWA .row-links {
  width: 100%;
  justify-content: flex-end;
}
.cid-uNZKZtJvWA .row-links .row-links-soc {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uNZKZtJvWA .row-links .row-links-soc li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uNZKZtJvWA .row-links .row-links-soc li p {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-uNZKZtJvWA .row-links .row-links-soc {
    justify-content: center;
  }
}
@media (max-width: 992px) {
  .cid-uNZKZtJvWA p {
    text-align: center;
  }
}
.cid-uNZKZtJvWA row-links-soc-item {
  text-align: center;
}
.cid-uNZJf4jbez .navbar-dropdown {
  background-color: #f1f4e9 !important;
  padding: 0;
}
.cid-uNZJf4jbez .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #f1f4e9 !important;
  background: #f1f4e9;
}
.cid-uNZJf4jbez .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uNZJf4jbez .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uNZJf4jbez .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uNZJf4jbez .menu_box .navbar.opened,
  .cid-uNZJf4jbez .menu_box .navbar-collapse {
    background-color: #f1f4e9 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uNZJf4jbez .navbar-dropdown {
  position: relative !important;
}
.cid-uNZJf4jbez .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-uNZJf4jbez .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uNZJf4jbez .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uNZJf4jbez .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uNZJf4jbez .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uNZJf4jbez .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #f1f4e9;
  }
  .cid-uNZJf4jbez .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uNZJf4jbez .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uNZJf4jbez .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uNZJf4jbez .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uNZJf4jbez .offcanvas-body .mbr-text,
  .cid-uNZJf4jbez .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uNZJf4jbez .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uNZJf4jbez .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uNZJf4jbez .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #212529;
  }
  .cid-uNZJf4jbez .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uNZJf4jbez .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uNZJf4jbez .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uNZJf4jbez .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uNZJf4jbez ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uNZJf4jbez .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uNZJf4jbez .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-uNZJf4jbez .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uNZJf4jbez 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: 0 !important;
    z-index: 1;
  }
  .cid-uNZJf4jbez .lg_brand {
    margin: 0 1rem;
  }
}
.cid-uNZJf4jbez .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uNZJf4jbez .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uNZJf4jbez .nav-item {
    margin: 0 !important;
  }
}
.cid-uNZJf4jbez .nav-item .nav-link {
  position: relative;
}
.cid-uNZJf4jbez .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #292929;
  transition: all 0.3s ease-out;
}
.cid-uNZJf4jbez .nav-item .nav-link:hover,
.cid-uNZJf4jbez .nav-item .nav-link:focus {
  opacity: 1;
  color: #292929 !important;
  font-weight: 800 !important;
}
.cid-uNZJf4jbez .nav-item .nav-link:hover::before,
.cid-uNZJf4jbez .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uNZJf4jbez .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uNZJf4jbez .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uNZJf4jbez .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uNZJf4jbez .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uNZJf4jbez .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-uNZJf4jbez .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uNZJf4jbez .offcanvas_box {
    display: none;
  }
}
.cid-uNZJf4jbez .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uNZJf4jbez .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uNZJf4jbez .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uNZJf4jbez .container {
  display: flex;
  margin: auto;
}
.cid-uNZJf4jbez .iconfont-wrapper {
  color: #212529;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uNZJf4jbez .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uNZJf4jbez .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uNZJf4jbez .navbar-caption {
  color: #212529;
}
.cid-uNZJf4jbez .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uNZJf4jbez .navbar-nav {
    margin: 0;
  }
}
.cid-uNZJf4jbez .dropdown-menu,
.cid-uNZJf4jbez .navbar.opened {
  background-color: false !important;
}
.cid-uNZJf4jbez .nav-item:focus,
.cid-uNZJf4jbez .nav-link:focus {
  outline: none;
}
.cid-uNZJf4jbez .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uNZJf4jbez .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uNZJf4jbez .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uNZJf4jbez .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uNZJf4jbez .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uNZJf4jbez .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uNZJf4jbez .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uNZJf4jbez .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uNZJf4jbez .navbar.opened {
  transition: all 0.3s;
}
.cid-uNZJf4jbez .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uNZJf4jbez .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 5px;
}
.cid-uNZJf4jbez .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.cid-uNZJf4jbez .navbar.collapsed {
  justify-content: center;
}
.cid-uNZJf4jbez .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uNZJf4jbez .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uNZJf4jbez .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uNZJf4jbez .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uNZJf4jbez .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uNZJf4jbez .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uNZJf4jbez .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uNZJf4jbez .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uNZJf4jbez .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uNZJf4jbez .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uNZJf4jbez .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uNZJf4jbez .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uNZJf4jbez .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uNZJf4jbez .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uNZJf4jbez .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uNZJf4jbez .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uNZJf4jbez .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uNZJf4jbez .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uNZJf4jbez .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uNZJf4jbez .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uNZJf4jbez .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uNZJf4jbez .navbar.navbar-short {
  min-height: 60px;
}
.cid-uNZJf4jbez .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uNZJf4jbez .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uNZJf4jbez .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-uNZJf4jbez .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uNZJf4jbez .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uNZJf4jbez .dropdown-item.active,
.cid-uNZJf4jbez .dropdown-item:active {
  background-color: transparent;
}
.cid-uNZJf4jbez .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uNZJf4jbez .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uNZJf4jbez .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uNZJf4jbez .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uNZJf4jbez ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uNZJf4jbez .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uNZJf4jbez button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #f1f4e9;
  background: #f1f4e9;
}
.cid-uNZJf4jbez button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #212529;
}
.cid-uNZJf4jbez button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uNZJf4jbez button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uNZJf4jbez button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uNZJf4jbez button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uNZJf4jbez nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uNZJf4jbez nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uNZJf4jbez nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uNZJf4jbez nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uNZJf4jbez a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uNZJf4jbez .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uNZJf4jbez .navbar {
    height: 70px;
  }
  .cid-uNZJf4jbez .navbar.opened {
    height: auto;
  }
  .cid-uNZJf4jbez .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uNZJf4jbez .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uNZJf4jbez .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-uNZJf4jbez .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uNZJf4jbez .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  min-width: 145px;
}
@media (max-width: 992px) {
  .cid-uNZJf4jbez .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
@media (max-width: 1400px) {
  .cid-uNZJf4jbez .mbr-section-btn-main .btn {
    padding: 10px 20px;
  }
}
.cid-uNZJf4jbez .navbar-caption:hover {
  color: #292929;
}
@media (min-width: 992px) {
  .cid-uNZJf4jbez .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
@media (min-width: 992px) {
  .cid-uNZJf4jbez .nav-dropdown {
    margin: 0 auto;
  }
}
.cid-uNZJf4jbez .text_widget {
  margin-bottom: 32px;
}
.cid-uNZJf4jbez .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uNZJf4jbez .text_widget a:hover {
  color: #292929 !important;
}
.cid-uNZJf4jbez .mbr-section-subtitle {
  color: #212529;
  text-align: center;
}
.cid-uNZJf4jbez .mbr-text {
  color: #212529;
  text-align: center;
}
.cid-uNZJf4jbez .mbr-section-subtitle,
.cid-uNZJf4jbez .text_widget,
.cid-uNZJf4jbez .mbr-section-btn {
  text-align: center;
}
.cid-uNZJf4jbez a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uNZJIlDH48 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #f1f4e9;
}
.cid-uNZJIlDH48 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNZJIlDH48 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uNZJIlDH48 .container {
    padding: 0 30px;
  }
}
.cid-uNZJIlDH48 .content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uNZJIlDH48 .content-wrapper .content-wrap .title-wrapper {
  margin-bottom: 50px;
  border-bottom: 1px solid #212529;
  padding-bottom: 50px;
}
.cid-uNZJIlDH48 .content-wrapper .content-wrap .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-uNZJIlDH48 .content-wrapper .content-wrap .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-uNZJIlDH48 .content-wrapper .content-wrap .text-wrapper {
  margin-bottom: 50px;
}
.cid-uNZJIlDH48 .content-wrapper .content-wrap .text-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uNZJIlDH48 .content-wrapper .content-wrap .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uNZJIlDH48 .embla__slide {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
  position: relative;
  min-width: 100%;
  max-width: 100%;
}
@media (max-width: 768px) {
  .cid-uNZJIlDH48 .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uNZJIlDH48 .embla__slide .card-wrap {
  width: 100%;
  padding: 0 30px;
}
@media (max-width: 992px) {
  .cid-uNZJIlDH48 .embla__slide .card-wrap {
    padding: 0;
  }
}
.cid-uNZJIlDH48 .embla__slide .card-wrap .item-wrapper .image-wrap img {
  height: 560px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uNZJIlDH48 .embla__slide .card-wrap .item-wrapper .image-wrap img {
    height: 300px;
  }
}
.cid-uNZJIlDH48 .embla__button--next,
.cid-uNZJIlDH48 .embla__button--prev {
  display: flex;
}
.cid-uNZJIlDH48 .embla__button {
  top: 50%;
  width: 20px;
  height: 20px;
  margin-top: -1.5rem;
  font-size: 12px;
  background-color: #a3a3a3;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: .75;
}
.cid-uNZJIlDH48 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uNZJIlDH48 .embla__button:hover {
  background: #a3a3a3;
  color: #ffffff;
  opacity: 1;
}
.cid-uNZJIlDH48 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 0;
}
.cid-uNZJIlDH48 .embla__button.embla__button--next {
  right: 0;
  margin-right: 0;
}
.cid-uNZJIlDH48 .slider-wrapper {
  padding-left: 30px;
}
@media (max-width: 992px) {
  .cid-uNZJIlDH48 .slider-wrapper {
    padding: 0;
  }
}
.cid-uNZJIlDH48 .embla {
  position: relative;
  width: 100%;
}
.cid-uNZJIlDH48 .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uNZJIlDH48 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uNZJIlDH48 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uNZJIlDH48 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uNZJIlDH48 .list-wrapper {
  display: flex;
  flex-wrap: wrap;
  padding: 0 30px;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uNZJIlDH48 .list-wrapper {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .cid-uNZJIlDH48 .list-wrapper {
    display: block;
  }
}
.cid-uNZJIlDH48 .list-wrapper .list-wrap .mbr-list-title {
  margin-bottom: 20px;
}
.cid-uNZJIlDH48 .list-wrapper .list-wrap .list_1 {
  padding-left: 40px;
  margin-bottom: 50px;
  list-style-position: inside;
}
.cid-uNZJIlDH48 .list-wrapper .list-wrap .list_1 .item-wrap {
  margin-bottom: 10px;
}
.cid-uNZJIlDH48 .list-wrapper .list-wrap .list_2 {
  padding-left: 0;
  margin-bottom: 50px;
  list-style-type: none;
}
.cid-uNZJIlDH48 .list-wrapper .list-wrap .list_2 .item-wrap {
  margin-bottom: 10px;
}
.cid-uNZJIlDH48 .mbr-section-btn {
  padding: 0 30px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uNZJIlDH48 .mbr-section-btn {
    padding: 0;
  }
}
.cid-uNZJIlDH48 .mbr-section-title {
  color: #212529;
}
.cid-uNZJIlDH48 .mbr-desc {
  color: #212529;
}
.cid-uNZJIlDH48 .mbr-section-subtitle {
  color: #212529;
}
.cid-uNZJIlDH48 .mbr-text {
  color: #212529;
}
.cid-uNZJIlDH48 .mbr-list-title {
  color: #212529;
}
.cid-uNZJIlDH48 .list_1 {
  color: #212529;
}
.cid-uNZJIlDH48 .list_2 {
  color: #212529;
}
.cid-uNZKZtJvWA {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f1f4e9;
}
.cid-uNZKZtJvWA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNZKZtJvWA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNZKZtJvWA .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uNZKZtJvWA a {
  position: relative;
  width: fit-content;
}
.cid-uNZKZtJvWA a:before {
  content: '';
  position: absolute;
  width: 100%;
  transition: all 0.3s;
  height: 1px;
  background: currentColor;
  left: 0;
  bottom: 0;
}
.cid-uNZKZtJvWA a:hover:before {
  width: 0;
}
.cid-uNZKZtJvWA .copyright {
  color: #232323;
}
.cid-uNZKZtJvWA .center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-uNZKZtJvWA .row-links {
  width: 100%;
  justify-content: flex-end;
}
.cid-uNZKZtJvWA .row-links .row-links-soc {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uNZKZtJvWA .row-links .row-links-soc li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uNZKZtJvWA .row-links .row-links-soc li p {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-uNZKZtJvWA .row-links .row-links-soc {
    justify-content: center;
  }
}
@media (max-width: 992px) {
  .cid-uNZKZtJvWA p {
    text-align: center;
  }
}
.cid-uNZKZtJvWA row-links-soc-item {
  text-align: center;
}
.cid-uNZKaSRPQW .navbar-dropdown {
  background-color: #f1f4e9 !important;
  padding: 0;
}
.cid-uNZKaSRPQW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #f1f4e9 !important;
  background: #f1f4e9;
}
.cid-uNZKaSRPQW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uNZKaSRPQW .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uNZKaSRPQW .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uNZKaSRPQW .menu_box .navbar.opened,
  .cid-uNZKaSRPQW .menu_box .navbar-collapse {
    background-color: #f1f4e9 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uNZKaSRPQW .navbar-dropdown {
  position: relative !important;
}
.cid-uNZKaSRPQW .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-uNZKaSRPQW .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uNZKaSRPQW .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uNZKaSRPQW .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uNZKaSRPQW .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uNZKaSRPQW .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #f1f4e9;
  }
  .cid-uNZKaSRPQW .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uNZKaSRPQW .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uNZKaSRPQW .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uNZKaSRPQW .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uNZKaSRPQW .offcanvas-body .mbr-text,
  .cid-uNZKaSRPQW .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uNZKaSRPQW .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uNZKaSRPQW .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uNZKaSRPQW .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #212529;
  }
  .cid-uNZKaSRPQW .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uNZKaSRPQW .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uNZKaSRPQW .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uNZKaSRPQW .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uNZKaSRPQW ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uNZKaSRPQW .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uNZKaSRPQW .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-uNZKaSRPQW .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uNZKaSRPQW 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: 0 !important;
    z-index: 1;
  }
  .cid-uNZKaSRPQW .lg_brand {
    margin: 0 1rem;
  }
}
.cid-uNZKaSRPQW .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uNZKaSRPQW .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uNZKaSRPQW .nav-item {
    margin: 0 !important;
  }
}
.cid-uNZKaSRPQW .nav-item .nav-link {
  position: relative;
}
.cid-uNZKaSRPQW .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #292929;
  transition: all 0.3s ease-out;
}
.cid-uNZKaSRPQW .nav-item .nav-link:hover,
.cid-uNZKaSRPQW .nav-item .nav-link:focus {
  opacity: 1;
  color: #292929 !important;
  font-weight: 800 !important;
}
.cid-uNZKaSRPQW .nav-item .nav-link:hover::before,
.cid-uNZKaSRPQW .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uNZKaSRPQW .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uNZKaSRPQW .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uNZKaSRPQW .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uNZKaSRPQW .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uNZKaSRPQW .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-uNZKaSRPQW .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uNZKaSRPQW .offcanvas_box {
    display: none;
  }
}
.cid-uNZKaSRPQW .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uNZKaSRPQW .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uNZKaSRPQW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uNZKaSRPQW .container {
  display: flex;
  margin: auto;
}
.cid-uNZKaSRPQW .iconfont-wrapper {
  color: #212529;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uNZKaSRPQW .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uNZKaSRPQW .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uNZKaSRPQW .navbar-caption {
  color: #212529;
}
.cid-uNZKaSRPQW .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uNZKaSRPQW .navbar-nav {
    margin: 0;
  }
}
.cid-uNZKaSRPQW .dropdown-menu,
.cid-uNZKaSRPQW .navbar.opened {
  background-color: false !important;
}
.cid-uNZKaSRPQW .nav-item:focus,
.cid-uNZKaSRPQW .nav-link:focus {
  outline: none;
}
.cid-uNZKaSRPQW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uNZKaSRPQW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uNZKaSRPQW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uNZKaSRPQW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uNZKaSRPQW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uNZKaSRPQW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uNZKaSRPQW .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uNZKaSRPQW .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uNZKaSRPQW .navbar.opened {
  transition: all 0.3s;
}
.cid-uNZKaSRPQW .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uNZKaSRPQW .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 5px;
}
.cid-uNZKaSRPQW .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.cid-uNZKaSRPQW .navbar.collapsed {
  justify-content: center;
}
.cid-uNZKaSRPQW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uNZKaSRPQW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uNZKaSRPQW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uNZKaSRPQW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uNZKaSRPQW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uNZKaSRPQW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uNZKaSRPQW .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uNZKaSRPQW .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uNZKaSRPQW .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uNZKaSRPQW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uNZKaSRPQW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uNZKaSRPQW .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uNZKaSRPQW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uNZKaSRPQW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uNZKaSRPQW .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uNZKaSRPQW .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uNZKaSRPQW .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uNZKaSRPQW .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uNZKaSRPQW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uNZKaSRPQW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uNZKaSRPQW .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uNZKaSRPQW .navbar.navbar-short {
  min-height: 60px;
}
.cid-uNZKaSRPQW .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uNZKaSRPQW .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uNZKaSRPQW .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-uNZKaSRPQW .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uNZKaSRPQW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uNZKaSRPQW .dropdown-item.active,
.cid-uNZKaSRPQW .dropdown-item:active {
  background-color: transparent;
}
.cid-uNZKaSRPQW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uNZKaSRPQW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uNZKaSRPQW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uNZKaSRPQW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uNZKaSRPQW ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uNZKaSRPQW .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uNZKaSRPQW button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #f1f4e9;
  background: #f1f4e9;
}
.cid-uNZKaSRPQW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #212529;
}
.cid-uNZKaSRPQW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uNZKaSRPQW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uNZKaSRPQW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uNZKaSRPQW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uNZKaSRPQW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uNZKaSRPQW nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uNZKaSRPQW nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uNZKaSRPQW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uNZKaSRPQW a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uNZKaSRPQW .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uNZKaSRPQW .navbar {
    height: 70px;
  }
  .cid-uNZKaSRPQW .navbar.opened {
    height: auto;
  }
  .cid-uNZKaSRPQW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uNZKaSRPQW .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uNZKaSRPQW .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-uNZKaSRPQW .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uNZKaSRPQW .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  min-width: 145px;
}
@media (max-width: 992px) {
  .cid-uNZKaSRPQW .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
@media (max-width: 1400px) {
  .cid-uNZKaSRPQW .mbr-section-btn-main .btn {
    padding: 10px 20px;
  }
}
.cid-uNZKaSRPQW .navbar-caption:hover {
  color: #292929;
}
@media (min-width: 992px) {
  .cid-uNZKaSRPQW .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
@media (min-width: 992px) {
  .cid-uNZKaSRPQW .nav-dropdown {
    margin: 0 auto;
  }
}
.cid-uNZKaSRPQW .text_widget {
  margin-bottom: 32px;
}
.cid-uNZKaSRPQW .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uNZKaSRPQW .text_widget a:hover {
  color: #292929 !important;
}
.cid-uNZKaSRPQW .mbr-section-subtitle {
  color: #212529;
  text-align: center;
}
.cid-uNZKaSRPQW .mbr-text {
  color: #212529;
  text-align: center;
}
.cid-uNZKaSRPQW .mbr-section-subtitle,
.cid-uNZKaSRPQW .text_widget,
.cid-uNZKaSRPQW .mbr-section-btn {
  text-align: center;
}
.cid-uNZKaSRPQW a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uNZU0o0EMR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f4e9;
}
.cid-uNZU0o0EMR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNZU0o0EMR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uNZU0o0EMR .container {
    padding: 0 30px;
  }
}
.cid-uNZU0o0EMR .row {
  justify-content: center;
}
.cid-uNZU0o0EMR .item {
  margin-bottom: 50px;
}
.cid-uNZU0o0EMR .item a:hover .item-wrapper .item-img img,
.cid-uNZU0o0EMR .item a:focus .item-wrapper .item-img img {
  transform: scale(1.05);
}
.cid-uNZU0o0EMR .item a .item-wrapper .item-img {
  overflow: hidden;
  margin-bottom: 20px;
}
.cid-uNZU0o0EMR .item a .item-wrapper .item-img img {
  height: 370px;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.cid-uNZU0o0EMR .item a .item-wrapper .item-content .mbr-card-title {
  margin-bottom: 0;
}
.cid-uNZU0o0EMR .item a .item-wrapper .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uNZU0o0EMR .mbr-card-title {
  color: #212529;
}
.cid-uNZU0o0EMR .mbr-desc {
  color: #212529;
}
.cid-uNZUahw5N2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f4e9;
}
.cid-uNZUahw5N2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNZUahw5N2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uNZUahw5N2 .container {
    padding: 0 30px;
  }
}
.cid-uNZUahw5N2 .row {
  justify-content: center;
}
.cid-uNZUahw5N2 .item {
  margin-bottom: 50px;
}
.cid-uNZUahw5N2 .item a:hover .item-wrapper .item-img img,
.cid-uNZUahw5N2 .item a:focus .item-wrapper .item-img img {
  transform: scale(1.05);
}
.cid-uNZUahw5N2 .item a .item-wrapper .item-img {
  overflow: hidden;
  margin-bottom: 20px;
}
.cid-uNZUahw5N2 .item a .item-wrapper .item-img img {
  height: 370px;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.cid-uNZUahw5N2 .item a .item-wrapper .item-content .mbr-card-title {
  margin-bottom: 0;
}
.cid-uNZUahw5N2 .item a .item-wrapper .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uNZUahw5N2 .mbr-card-title {
  color: #212529;
}
.cid-uNZUahw5N2 .mbr-desc {
  color: #212529;
}
.cid-uNZKZtJvWA {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f1f4e9;
}
.cid-uNZKZtJvWA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNZKZtJvWA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNZKZtJvWA .line {
  width: 100%;
  height: 2px;
  background: #efefef;
  margin-bottom: 2rem;
}
.cid-uNZKZtJvWA a {
  position: relative;
  width: fit-content;
}
.cid-uNZKZtJvWA a:before {
  content: '';
  position: absolute;
  width: 100%;
  transition: all 0.3s;
  height: 1px;
  background: currentColor;
  left: 0;
  bottom: 0;
}
.cid-uNZKZtJvWA a:hover:before {
  width: 0;
}
.cid-uNZKZtJvWA .copyright {
  color: #232323;
}
.cid-uNZKZtJvWA .center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-uNZKZtJvWA .row-links {
  width: 100%;
  justify-content: flex-end;
}
.cid-uNZKZtJvWA .row-links .row-links-soc {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uNZKZtJvWA .row-links .row-links-soc li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uNZKZtJvWA .row-links .row-links-soc li p {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-uNZKZtJvWA .row-links .row-links-soc {
    justify-content: center;
  }
}
@media (max-width: 992px) {
  .cid-uNZKZtJvWA p {
    text-align: center;
  }
}
.cid-uNZKZtJvWA row-links-soc-item {
  text-align: center;
}
