.btn {
  border-width: 2px;
}
body {
  font-family: 'Poppins', sans-serif;
}
.display-1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 8.4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 10.5rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.6rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.25rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 6.72rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 5.88rem;
    font-size: calc( 3.59rem + (8.4 - 3.59) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (3.59rem + (8.4 - 3.59) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.08rem;
    font-size: calc( 1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 90rem) / (48 - 25)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 25))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 40rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #ba9b67 !important;
}
.bg-success {
  background-color: #ddc499 !important;
}
.bg-info {
  background-color: #0fe90f !important;
}
.bg-warning {
  background-color: #ffa6a6 !important;
}
.bg-danger {
  background-color: #81a181 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ba9b67 !important;
  border-color: #ba9b67 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #8b6f3f !important;
  border-color: #8b6f3f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #8b6f3f !important;
  border-color: #8b6f3f !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ece9e6 !important;
  border-color: #ece9e6 !important;
  color: #78695b !important;
  box-shadow: none;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #c7beb5 !important;
  border-color: #c7beb5 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #78695b !important;
  background-color: #c7beb5 !important;
  border-color: #c7beb5 !important;
}
.btn-info,
.btn-info:active {
  background-color: #0fe90f !important;
  border-color: #0fe90f !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #0a980a !important;
  border-color: #0a980a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #0a980a !important;
  border-color: #0a980a !important;
}
.btn-success,
.btn-success:active {
  background-color: #ddc499 !important;
  border-color: #ddc499 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #c79e58 !important;
  border-color: #c79e58 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #c79e58 !important;
  border-color: #c79e58 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffa6a6 !important;
  border-color: #ffa6a6 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #ff4f4f !important;
  border-color: #ff4f4f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #ff4f4f !important;
  border-color: #ff4f4f !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #81a181 !important;
  border-color: #81a181 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #577457 !important;
  border-color: #577457 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #577457 !important;
  border-color: #577457 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: none;
}
.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: none;
}
.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: #ba9b67;
  color: #ba9b67;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #8b6f3f !important;
  background-color: transparent!important;
  border-color: #8b6f3f !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ba9b67 !important;
  border-color: #ba9b67 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ece9e6;
  color: #ece9e6;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #c7beb5 !important;
  background-color: transparent!important;
  border-color: #c7beb5 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #78695b !important;
  background-color: #ece9e6 !important;
  border-color: #ece9e6 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #0fe90f;
  color: #0fe90f;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #0a980a !important;
  background-color: transparent!important;
  border-color: #0a980a !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #0fe90f !important;
  border-color: #0fe90f !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #ddc499;
  color: #ddc499;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #c79e58 !important;
  background-color: transparent!important;
  border-color: #c79e58 !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #ddc499 !important;
  border-color: #ddc499 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffa6a6;
  color: #ffa6a6;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ff4f4f !important;
  background-color: transparent!important;
  border-color: #ff4f4f !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #ffa6a6 !important;
  border-color: #ffa6a6 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #81a181;
  color: #81a181;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #577457 !important;
  background-color: transparent!important;
  border-color: #577457 !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #81a181 !important;
  border-color: #81a181 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #ba9b67 !important;
}
.text-secondary {
  color: #ece9e6 !important;
}
.text-success {
  color: #ddc499 !important;
}
.text-info {
  color: #0fe90f !important;
}
.text-warning {
  color: #ffa6a6 !important;
}
.text-danger {
  color: #81a181 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #81663a !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #c0b6ac !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #c4984d !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #098909 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #ff4040 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #506c50 !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;
  font-style: italic;
  border-bottom: 1px solid transparent;
}
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: #ba9b67;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #0fe90f;
}
.alert-warning {
  background-color: #ffa6a6;
}
.alert-danger {
  background-color: #81a181;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ba9b67;
  border-color: #ba9b67;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #ba9b67;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #e2d5bf;
}
.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: #c9fbc9;
}
.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: #cad7ca;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #ba9b67 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #ba9b67;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ba9b67;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ba9b67;
}
.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: #ba9b67;
  border-bottom-color: #ba9b67;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #ba9b67 !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: #ece9e6 !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='%23ba9b67' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-uSMh2tVB74 {
  z-index: 1000;
  width: 100%;
}
.cid-uSMh2tVB74 nav.navbar {
  position: fixed;
}
.cid-uSMh2tVB74 .container-fluid {
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 992px) {
  .cid-uSMh2tVB74 .container-fluid {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uSMh2tVB74 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uSMh2tVB74 .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-uSMh2tVB74 .dropdown-item {
  border: none !important;
  background: #f4f4f4 !important;
  font-weight: 400 !important;
}
.cid-uSMh2tVB74 .dropdown-item:hover,
.cid-uSMh2tVB74 .dropdown-item:focus {
  background: #f4f4f4 !important;
  color: #093388 !important;
}
.cid-uSMh2tVB74 .dropdown-item:hover span {
  color: white;
}
.cid-uSMh2tVB74 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uSMh2tVB74 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uSMh2tVB74 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uSMh2tVB74 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uSMh2tVB74 .nav-link {
  position: relative;
}
.cid-uSMh2tVB74 .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-uSMh2tVB74 .container {
    flex-wrap: nowrap;
  }
}
.cid-uSMh2tVB74 .iconfont-wrapper {
  color: #093388 !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-uSMh2tVB74 .iconfont-wrapper:hover {
  opacity: .7;
}
.cid-uSMh2tVB74 .dropdown-menu,
.cid-uSMh2tVB74 .navbar.opened {
  background: #f4f4f4 !important;
}
.cid-uSMh2tVB74 .nav-item:focus,
.cid-uSMh2tVB74 .nav-link:focus {
  outline: none;
}
.cid-uSMh2tVB74 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uSMh2tVB74 .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-uSMh2tVB74 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uSMh2tVB74 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uSMh2tVB74 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uSMh2tVB74 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uSMh2tVB74 .navbar {
  min-height: 60px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(244, 244, 244, 0);
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uSMh2tVB74 .navbar.opened {
  transition: all 0.3s;
}
.cid-uSMh2tVB74 .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 22px;
  line-height: 1.5;
  border-radius: 0;
  margin-left: 4px;
  margin-bottom: 4px;
}
.cid-uSMh2tVB74 .navbar .navbar-logo img {
  width: auto;
}
.cid-uSMh2tVB74 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uSMh2tVB74 .navbar.collapsed {
  justify-content: center;
}
.cid-uSMh2tVB74 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uSMh2tVB74 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uSMh2tVB74 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uSMh2tVB74 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uSMh2tVB74 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uSMh2tVB74 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uSMh2tVB74 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uSMh2tVB74 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uSMh2tVB74 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uSMh2tVB74 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uSMh2tVB74 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uSMh2tVB74 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uSMh2tVB74 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uSMh2tVB74 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uSMh2tVB74 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uSMh2tVB74 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uSMh2tVB74 .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .cid-uSMh2tVB74 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-uSMh2tVB74 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uSMh2tVB74 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uSMh2tVB74 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uSMh2tVB74 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
}
.cid-uSMh2tVB74 .navbar-brand {
  min-height: 60px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-uSMh2tVB74 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uSMh2tVB74 .navbar-brand .navbar-caption:hover,
.cid-uSMh2tVB74 .navbar-brand .navbar-caption:focus {
  color: #093388 !important;
}
.cid-uSMh2tVB74 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uSMh2tVB74 .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-uSMh2tVB74 .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #093388 !important;
}
.cid-uSMh2tVB74 .dropdown-item.active,
.cid-uSMh2tVB74 .dropdown-item:active {
  background-color: transparent;
}
.cid-uSMh2tVB74 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uSMh2tVB74 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uSMh2tVB74 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uSMh2tVB74 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f4f4;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-uSMh2tVB74 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-uSMh2tVB74 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-uSMh2tVB74 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uSMh2tVB74 ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-uSMh2tVB74 ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-uSMh2tVB74 .navbar-buttons {
  text-align: center;
  width: auto;
}
.cid-uSMh2tVB74 .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  min-height: auto;
  width: auto;
  padding: 11px 26px;
}
@media (max-width: 575px) {
  .cid-uSMh2tVB74 .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-uSMh2tVB74 button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #f4f4f4 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uSMh2tVB74 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #093388;
}
.cid-uSMh2tVB74 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-uSMh2tVB74 button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uSMh2tVB74 button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uSMh2tVB74 button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-uSMh2tVB74 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSMh2tVB74 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uSMh2tVB74 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uSMh2tVB74 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSMh2tVB74 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uSMh2tVB74 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uSMh2tVB74 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uSMh2tVB74 .navbar {
    height: 70px;
  }
  .cid-uSMh2tVB74 .navbar.opened {
    height: auto;
  }
  .cid-uSMh2tVB74 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uSMh2tVB74 .navbar-nav {
  margin: 0 auto;
}
.cid-uSMh2tVB74 .nav-item {
  padding: 0;
  margin: 0;
}
.cid-uSMh2tVB74 .nav-item .nav-link {
  padding: 8px 22px !important;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border-radius: 3rem;
}
.cid-uSMh2tVB74 .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-uSMh2tVB74 .nav-item .nav-link:hover,
.cid-uSMh2tVB74 .nav-item .nav-link:focus {
  background-color: transparent;
  color: #093388 !important;
  opacity: .7;
}
.cid-uSMh2tVB74 .nav-item .nav-link:hover::after,
.cid-uSMh2tVB74 .nav-item .nav-link:focus::after {
  color: inherit !important;
}
.cid-uSMh2tVB74 .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-uSMh2tVB74 .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-uSMh2tVB74 .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-uSMh2tVB74 .navbar {
    justify-content: flex-start !important;
  }
  .cid-uSMh2tVB74 .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-uSMh2tVB74 .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-uSMh2tVB74 .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-uSMh2tVB74 .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-uSMh2tVB74 .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .cid-uSMh2tVB74 .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-uSMh2tVB74 .content-wrap {
  min-height: 60px;
}
.cid-uT2rjgzu02 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uT2rjgzu02 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/captura-de-ecr-2025-08-05-211529.png-1919x1079.png");
}
@media (max-width: 992px) {
  .cid-uT2rjgzu02 .container {
    padding: 0 30px;
  }
}
.cid-uT2rjgzu02 .content-wrapper {
  padding: 170px 0;
}
@media (max-width: 992px) {
  .cid-uT2rjgzu02 .content-wrapper {
    padding: 80px 0;
  }
}
.cid-uT2rjgzu02 .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uT2rjgzu02 .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uT2rjgzu02 .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uT2rjgzu02 .mbr-section-title {
  color: #ffffff;
}
.cid-uT2rjgzu02 .mbr-text,
.cid-uT2rjgzu02 .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uT2rjgzu02 .mbr-section-title,
.cid-uT2rjgzu02 .mbr-section-btn {
  text-align: center;
  color: #f1d788;
}
.cid-uSMmWzef8C {
  display: flex;
  padding-top: 30px;
  padding-bottom: 15px;
  background: linear-gradient(to bottom, #ffffff, #81a181);
}
@media (min-width: 768px) {
  .cid-uSMmWzef8C {
    align-items: flex-start;
  }
  .cid-uSMmWzef8C .row {
    justify-content: flex-start;
  }
}
.cid-uSMmWzef8C .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-uSMmWzef8C .mbr-text,
.cid-uSMmWzef8C .mbr-section-btn {
  text-align: center;
  color: #232323;
}
.cid-uSMmWzef8C .mbr-section-title,
.cid-uSMmWzef8C .line {
  color: #5d9c5d;
}
.cid-uSMmWzef8C h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-uSMmWzef8C h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-uSMmWzef8C .mbr-section-subtitle,
.cid-uSMmWzef8C .align {
  text-align: left;
  color: #232323;
}
.cid-uSMmWzef8C .mbr-section-title,
.cid-uSMmWzef8C .line DIV {
  text-align: center;
}
.cid-uT2u7EFIn0 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #81a181;
}
.cid-uT2u7EFIn0 .container-fluid {
  padding-right: 0;
}
@media (max-width: 992px) {
  .cid-uT2u7EFIn0 .container-fluid {
    padding-right: 24px;
    padding-left: 24px;
  }
}
.cid-uT2u7EFIn0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uT2u7EFIn0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uT2u7EFIn0 .title-wrapper {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-uT2u7EFIn0 .title-wrapper {
    padding: 0 0px;
  }
}
.cid-uT2u7EFIn0 .title {
  display: flex;
  align-items: center;
}
@media (max-width: 1200px) {
  .cid-uT2u7EFIn0 .title-wrapper {
    margin-top: 3rem;
  }
}
.cid-uT2u7EFIn0 .title-wrapper {
  width: 100%;
}
.cid-uT2u7EFIn0 .title-wrapper .mbr-section-subtitle {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uT2u7EFIn0 .title-wrapper .mbr-section-subtitle {
    margin-bottom: 20px;
  }
}
.cid-uT2u7EFIn0 .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uT2u7EFIn0 .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uT2u7EFIn0 .title-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uT2u7EFIn0 .title-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uT2u7EFIn0 .image-wrapper {
    margin-top: 40px;
  }
}
.cid-uT2u7EFIn0 .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uT2u7EFIn0 .mbr-section-subtitle {
  color: #000000;
}
.cid-uT2u7EFIn0 .mbr-section-title {
  color: #181818;
}
.cid-uT2u7EFIn0 .mbr-text {
  color: #000000;
}
.cid-uT2u7EFIn0 .mbr-section-title,
.cid-uT2u7EFIn0 .mbr-section-btn {
  color: #000000;
}
.cid-uT2whaCv4K {
  display: flex;
  padding-top: 45px;
  padding-bottom: 0px;
  background: linear-gradient(to bottom, #81a181, #e5eee4);
}
@media (min-width: 768px) {
  .cid-uT2whaCv4K {
    align-items: flex-start;
  }
  .cid-uT2whaCv4K .row {
    justify-content: flex-start;
  }
}
.cid-uT2whaCv4K .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-uT2whaCv4K .mbr-text,
.cid-uT2whaCv4K .mbr-section-btn {
  text-align: center;
  color: #060606;
}
.cid-uT2whaCv4K .mbr-section-title,
.cid-uT2whaCv4K .line {
  color: #00695b;
}
.cid-uT2whaCv4K h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-uT2whaCv4K h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-uT2whaCv4K .mbr-section-subtitle,
.cid-uT2whaCv4K .align {
  text-align: left;
  color: #232323;
}
.cid-uT2whaCv4K .mbr-section-title,
.cid-uT2whaCv4K .line DIV {
  text-align: center;
}
.cid-uT2vfBCbQJ {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/gallery1.webp");
}
.cid-uT2vfBCbQJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uT2vfBCbQJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uT2vfBCbQJ .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uT2vfBCbQJ .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-uT2vfBCbQJ .container {
    padding: 0 25px;
  }
}
.cid-uT2vfBCbQJ .row {
  justify-content: center;
}
.cid-uT2vfBCbQJ .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uT2vfBCbQJ .title-wrapper .mbr-section-title {
    margin-bottom: 25px;
  }
}
@media (max-width: 992px) {
  .cid-uT2vfBCbQJ .card {
    margin-bottom: 50px;
  }
}
.cid-uT2vfBCbQJ .card .card-wrap {
  padding: 0 34px;
}
@media (max-width: 992px) {
  .cid-uT2vfBCbQJ .card .card-wrap {
    padding: 0;
  }
}
.cid-uT2vfBCbQJ .card .card-wrap .icon-wrapper {
  padding: 20px 0;
}
.cid-uT2vfBCbQJ .card .card-wrap .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 50px;
  color: #d4af37;
}
.cid-uT2vfBCbQJ .card .card-wrap .mbr-card-title {
  margin-bottom: 10px;
}
.cid-uT2vfBCbQJ .card .card-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uT2vfBCbQJ .mbr-section-title {
  color: #E33030;
  text-align: center;
}
.cid-uT2vfBCbQJ .mbr-card-title {
  color: #E33030;
}
.cid-uT2vfBCbQJ .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uT2vfBCbQJ .mbr-card-title,
.cid-uT2vfBCbQJ .icon-wrapper {
  text-align: center;
  color: #0c5b47;
}
.cid-uT2vfBCbQJ .mbr-section-title,
.cid-uT2vfBCbQJ .icon-wrapper {
  color: #d4af37;
}
.cid-uT2yh3dIiS {
  display: flex;
  padding-top: 45px;
  padding-bottom: 0px;
  background: linear-gradient(to bottom, #e5eee4, #e5eee4);
}
@media (min-width: 768px) {
  .cid-uT2yh3dIiS {
    align-items: flex-start;
  }
  .cid-uT2yh3dIiS .row {
    justify-content: flex-start;
  }
}
.cid-uT2yh3dIiS .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-uT2yh3dIiS .mbr-text,
.cid-uT2yh3dIiS .mbr-section-btn {
  text-align: center;
  color: #060606;
}
.cid-uT2yh3dIiS .mbr-section-title,
.cid-uT2yh3dIiS .line {
  color: #00695b;
}
.cid-uT2yh3dIiS h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-uT2yh3dIiS h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-uT2yh3dIiS .mbr-section-subtitle,
.cid-uT2yh3dIiS .align {
  text-align: left;
  color: #232323;
}
.cid-uT2yh3dIiS .mbr-section-title,
.cid-uT2yh3dIiS .line DIV {
  text-align: center;
}
.cid-v2ykfD1nEe {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/background1.jpg");
}
@media (min-width: 1400px) {
  .cid-v2ykfD1nEe .wrapper {
    padding: 0 4rem;
  }
}
@media (max-width: 991px) {
  .cid-v2ykfD1nEe .item {
    margin-bottom: 3rem;
  }
}
.cid-v2ykfD1nEe .item-wrapper:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-v2ykfD1nEe .item-wrapper {
  height: 100%;
}
.cid-v2ykfD1nEe .item-img {
  overflow: hidden;
  height: 100%;
  position: relative;
}
.cid-v2ykfD1nEe .item-img img {
  transition: all 1.5s;
  height: 100%;
  object-fit: cover;
}
.cid-v2ykfD1nEe .btn {
  min-width: 215px;
  padding: .8rem 4rem;
  position: relative;
  color: #ffffff;
}
.cid-v2ykfD1nEe .effectHover {
  position: absolute;
  width: 105%;
  height: 90%;
  border: 1px solid #9A948D;
}
.cid-v2ykfD1nEe .effectHover::before {
  content: "";
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  transform-origin: top left;
  border-left: 1px solid #9A948D;
  border-top: 1px solid #9A948D;
  transform: scale3d(0, 0, 1);
  transition: all 0.7s;
}
.cid-v2ykfD1nEe .effectHover::after {
  content: "";
  right: -1px;
  position: absolute;
  width: 100%;
  height: 100%;
  transform-origin: bottom right;
  border-bottom: 1px solid #9A948D;
  border-right: 1px solid #9A948D;
  transform: scale3d(0, 0, 1);
  transition: all 0.7s;
}
.cid-v2ykfD1nEe .btn:hover .effectHover::before {
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  transform: scale3d(1, 1, 1);
}
.cid-v2ykfD1nEe .btn:hover .effectHover::after {
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: scale3d(1, 1, 1);
}
.cid-v2ykfD1nEe .text-wrapper {
  width: 85%;
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
}
.cid-v2ykfD1nEe .mbr-title,
.cid-v2ykfD1nEe .mbr-section-btn {
  color: #fbe98f;
}
.cid-uT2zlnf1PX {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/gallery1.webp");
}
.cid-uT2zlnf1PX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uT2zlnf1PX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uT2zlnf1PX .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 50%;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uT2zlnf1PX .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 40px;
  }
}
.cid-uT2zlnf1PX .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 24px;
}
@media (max-width: 1440px) {
  .cid-uT2zlnf1PX .items-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .cid-uT2zlnf1PX .items-wrapper {
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-uT2zlnf1PX .item {
    margin-bottom: 20px;
  }
}
.cid-uT2zlnf1PX .item .item-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
}
@media (max-width: 992px) {
  .cid-uT2zlnf1PX .item .item-wrapper {
    padding: 20px;
  }
}
.cid-uT2zlnf1PX .item .item-wrapper .card-box .card-title_1,
.cid-uT2zlnf1PX .item .item-wrapper .card-box .card-title_2,
.cid-uT2zlnf1PX .item .item-wrapper .card-box .card-title_3 {
  margin-bottom: 20px;
}
.cid-uT2zlnf1PX .item .item-wrapper .card-box .card-text_1,
.cid-uT2zlnf1PX .item .item-wrapper .card-box .card-text_2,
.cid-uT2zlnf1PX .item .item-wrapper .card-box .card-text_3 {
  margin-bottom: 0;
}
.cid-uT2zlnf1PX .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 20px;
}
.cid-uT2zlnf1PX .item .item-wrapper .card-box .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uT2zlnf1PX .item .item-wrapper .iconfont-wrapper {
  text-align: right;
  margin-top: 60px;
}
@media (max-width: 992px) {
  .cid-uT2zlnf1PX .item .item-wrapper .iconfont-wrapper {
    margin-top: 20px;
  }
}
.cid-uT2zlnf1PX .item .item-wrapper .iconfont-wrapper .mbr-iconfont {
  width: 54px;
  height: 54px;
  min-width: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 22px;
  color: #f1f5eb;
  background-color: #5c834f;
}
.cid-uT2zlnf1PX .item .card_1 {
  background-color: #1e4d2b;
}
.cid-uT2zlnf1PX .item .card_2 {
  background-color: #d1e0be;
}
.cid-uT2zlnf1PX .item .card_3 {
  background-color: #e6eddc;
}
.cid-uT2zlnf1PX .btn-wrapper {
  margin-top: -6%;
}
.cid-uT2zlnf1PX .mbr-section-title,
.cid-uT2zlnf1PX .title-wrapper {
  color: #323432;
  text-align: center;
}
.cid-uT2zlnf1PX .card-title_1 {
  color: #f1f5eb;
}
.cid-uT2zlnf1PX .card-text_1 {
  color: #f1f5eb;
  text-align: center;
}
.cid-uT2zlnf1PX .card-title_2 {
  color: #323432;
  text-align: center;
}
.cid-uT2zlnf1PX .card-text_2 {
  color: #323432;
  text-align: center;
}
.cid-uT2zlnf1PX .card-title_3 {
  color: #5c834f;
  text-align: center;
}
.cid-uT2zlnf1PX .card-text_3 {
  color: #5c834f;
  text-align: center;
}
.cid-uT2zlnf1PX .card-title_1,
.cid-uT2zlnf1PX .mbr-section-btn {
  text-align: center;
}
.cid-uT2AjqQEX0 {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/gallery1.webp");
}
.cid-uT2AjqQEX0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uT2AjqQEX0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uT2AjqQEX0 .card-wrapper {
  padding: 64px;
  background-image: linear-gradient(45deg, #149014 -30%, #fffcee 20%, #81a181 60%);
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-uT2AjqQEX0 .card-wrapper {
    padding: 16px;
  }
}
.cid-uT2AjqQEX0 .card-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-uT2AjqQEX0 .card-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uT2AjqQEX0 .card-wrapper .list .item-wrap {
  margin-bottom: 10px;
}
.cid-uT2AjqQEX0 .card-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uT2AjqQEX0 .mbr-section-title {
  color: #fffcee;
  text-align: center;
}
.cid-uT2AjqQEX0 .list {
  color: #ffffff;
  text-align: center;
}
.cid-uT2AjqQEX0 .list,
.cid-uT2AjqQEX0 .item-wrap,
.cid-uT2AjqQEX0 .tabs-wrapper {
  color: #060606;
}
.cid-uT2BPHJ6G1 {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/gallery1.webp");
}
.cid-uT2BPHJ6G1 .item:focus,
.cid-uT2BPHJ6G1 span:focus {
  outline: none;
}
.cid-uT2BPHJ6G1 .item {
  cursor: pointer;
}
.cid-uT2BPHJ6G1 .grid-container {
  grid-row-gap: 24px;
}
.cid-uT2BPHJ6G1 .grid-container-1,
.cid-uT2BPHJ6G1 .grid-container-2 {
  gap: 0 24px;
}
.cid-uT2BPHJ6G1 .mbr-section-title {
  margin-bottom: 80px;
  color: #c29e64;
  text-align: center;
}
.cid-uT2BPHJ6G1 .content-head {
  max-width: 800px;
}
.cid-uT2BPHJ6G1 .container,
.cid-uT2BPHJ6G1 .container-fluid {
  overflow: hidden;
}
.cid-uT2BPHJ6G1 .grid-container {
  display: grid;
  transform: translate3d(-3rem, 0, 0);
  width: 115vw;
  grid-column-gap: 1rem;
  position: relative;
  z-index: 1;
}
.cid-uT2BPHJ6G1 .grid-item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uT2BPHJ6G1 .grid-item img {
  min-width: 30vw;
  max-width: 100%;
  height: 310px;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uT2BPHJ6G1 .grid-item img {
    min-width: 35vw;
    height: 160px;
  }
}
.cid-uT2BPHJ6G1 .grid-container-1,
.cid-uT2BPHJ6G1 .grid-container-2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
}
.cid-uT2BPHJ6G1 .grid-container-1 {
  align-items: flex-end;
}
.cid-uT2BPHJ6G1 .grid-container-2 {
  align-items: flex-start;
}
.cid-uSPUD4AaNg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/captura-de-ecr-2025-08-05-211529.png-1-1919x1079.png");
}
.cid-uSPUD4AaNg .wrapper {
  height: 550px;
}
.cid-uT2DFGqzgG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/gallery1.webp");
}
.cid-uT2DFGqzgG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uT2DFGqzgG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uT2DFGqzgG .card-wrapper {
  padding: 64px;
  background-image: linear-gradient(45deg, #e5eee4 -30%, #81a181 20%, #fdf8ee 60%);
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-uT2DFGqzgG .card-wrapper {
    padding: 16px;
  }
}
.cid-uT2DFGqzgG .card-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-uT2DFGqzgG .card-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uT2DFGqzgG .card-wrapper .list .item-wrap {
  margin-bottom: 10px;
}
.cid-uT2DFGqzgG .card-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uT2DFGqzgG .mbr-section-title {
  color: #171410;
  text-align: center;
}
.cid-uT2DFGqzgG .list {
  color: #ffffff;
  text-align: center;
}
.cid-uT2DFGqzgG .list,
.cid-uT2DFGqzgG .item-wrap,
.cid-uT2DFGqzgG .tabs-wrapper {
  color: #060606;
}
.cid-uSOWiLgEHL {
  padding-top: 10rem;
  padding-bottom: 4rem;
  background-color: #81a181;
}
.cid-uSOWiLgEHL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSOWiLgEHL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSOWiLgEHL .content-wrap {
  padding: 60px;
  background-color: #e5eee4;
  display: flex;
}
@media (max-width: 992px) {
  .cid-uSOWiLgEHL .content-wrap {
    padding: 30px 20px;
    display: block;
  }
}
.cid-uSOWiLgEHL .content-wrap .cont-wrap {
  width: 50%;
  padding-right: 60px;
}
@media (max-width: 992px) {
  .cid-uSOWiLgEHL .content-wrap .cont-wrap {
    width: 100%;
    padding-right: 0;
  }
}
.cid-uSOWiLgEHL .content-wrap .cont-wrap .title-wrapper {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-uSOWiLgEHL .content-wrap .cont-wrap .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uSOWiLgEHL .content-wrap .cont-wrap .title-wrapper .desc-wrapper .mbr-desc {
  display: inline-block;
  background-color: #fff1e2;
  padding: 8px 16px;
  margin-bottom: 16px;
}
.cid-uSOWiLgEHL .content-wrap .cont-wrap .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uSOWiLgEHL .content-wrap .cont-wrap .title-wrapper .mbr-section-title span {
  color: #375330;
}
.cid-uSOWiLgEHL .content-wrap .cont-wrap .form-wrapper {
  padding-right: 130px;
}
@media (max-width: 1200px) {
  .cid-uSOWiLgEHL .content-wrap .cont-wrap .form-wrapper {
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.cid-uSOWiLgEHL .content-wrap .cont-wrap .form-wrapper .dragArea.row {
  position: relative;
  z-index: 1;
}
.cid-uSOWiLgEHL .content-wrap .cont-wrap .form-wrapper .dragArea.row .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uSOWiLgEHL .content-wrap .cont-wrap .form-wrapper .dragArea.row .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uSOWiLgEHL .content-wrap .cont-wrap .form-wrapper .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uSOWiLgEHL .content-wrap .cont-wrap .form-wrapper .dragArea.row .form-group .form-control-label {
  width: 100%;
  margin-bottom: 10px;
}
.cid-uSOWiLgEHL .content-wrap .cont-wrap .form-wrapper .dragArea.row .form-group .form-control {
  position: relative;
  z-index: 1;
  padding: 22px 20px;
  border: none !important;
  box-shadow: none;
  background-color: #f8f8f8;
  line-height: 1 !important;
}
@media (max-width: 992px) {
  .cid-uSOWiLgEHL .content-wrap .cont-wrap .form-wrapper .dragArea.row .form-group .form-control {
    padding: 22px;
  }
}
.cid-uSOWiLgEHL .content-wrap .cont-wrap .form-wrapper .dragArea.row .form-group .form-control:hover,
.cid-uSOWiLgEHL .content-wrap .cont-wrap .form-wrapper .dragArea.row .form-group .form-control:focus {
  border: none !important;
}
.cid-uSOWiLgEHL .content-wrap .cont-wrap .form-wrapper .dragArea.row .form-group .form-control::placeholder {
  color: #404349;
  font-size: 18px;
  opacity: .6;
}
.cid-uSOWiLgEHL .content-wrap .cont-wrap .form-wrapper .dragArea.row .form-group textarea {
  min-height: 100px;
}
.cid-uSOWiLgEHL .content-wrap .cont-wrap .form-wrapper .dragArea.row .form-group .form-check {
  padding-left: 2.3em;
  margin-bottom: 16px;
}
.cid-uSOWiLgEHL .content-wrap .cont-wrap .form-wrapper .dragArea.row .form-group .form-check .form-check-input {
  background-color: #404349;
  border-color: #404349;
}
.cid-uSOWiLgEHL .content-wrap .cont-wrap .form-wrapper .dragArea.row .mbr-section-btn {
  width: 100%;
}
.cid-uSOWiLgEHL .content-wrap .cont-wrap .form-wrapper .dragArea.row .mbr-section-btn .btn {
  width: 100%;
  margin-top: 0;
}
.cid-uSOWiLgEHL .content-wrap .map-wrapper {
  position: relative;
  display: flex;
  justify-content: flex-end;
  padding: 10px;
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uSOWiLgEHL .content-wrap .map-wrapper {
    width: 100%;
    padding-top: 250px;
  }
}
.cid-uSOWiLgEHL .content-wrap .map-wrapper .google-map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uSOWiLgEHL .content-wrap .map-wrapper .google-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uSOWiLgEHL .content-wrap .map-wrapper .contacts-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  background-color: #ffefd7;
  padding: 30px;
}
@media (max-width: 1200px) {
  .cid-uSOWiLgEHL .content-wrap .map-wrapper .contacts-wrapper {
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-uSOWiLgEHL .content-wrap .map-wrapper .contacts-wrapper {
    padding: 20px 10px 10px;
  }
}
.cid-uSOWiLgEHL .content-wrap .map-wrapper .contacts-wrapper .contacts-wrap {
  width: 55%;
  padding-right: 20px;
}
@media (max-width: 1200px) {
  .cid-uSOWiLgEHL .content-wrap .map-wrapper .contacts-wrapper .contacts-wrap {
    padding-right: 0;
    width: 100%;
    margin-bottom: 20px;
  }
}
.cid-uSOWiLgEHL .content-wrap .map-wrapper .contacts-wrapper .contacts-wrap .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uSOWiLgEHL .content-wrap .map-wrapper .contacts-wrapper .contacts-wrap .list .item-wrap {
  margin-bottom: 0;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cid-uSOWiLgEHL .content-wrap .map-wrapper .contacts-wrapper .contacts-wrap .list .item-wrap:hover,
.cid-uSOWiLgEHL .content-wrap .map-wrapper .contacts-wrapper .contacts-wrap .list .item-wrap:focus {
  color: #375330;
}
.cid-uSOWiLgEHL .content-wrap .map-wrapper .contacts-wrapper .social-wrapper {
  width: 45%;
}
@media (max-width: 1200px) {
  .cid-uSOWiLgEHL .content-wrap .map-wrapper .contacts-wrapper .social-wrapper {
    width: 100%;
  }
}
.cid-uSOWiLgEHL .content-wrap .map-wrapper .contacts-wrapper .social-wrapper .soc-desc {
  margin-bottom: 16px;
  opacity: .6;
}
.cid-uSOWiLgEHL .content-wrap .map-wrapper .contacts-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uSOWiLgEHL .content-wrap .map-wrapper .contacts-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uSOWiLgEHL .content-wrap .map-wrapper .contacts-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uSOWiLgEHL .content-wrap .map-wrapper .contacts-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  transform: scale(1.1);
}
.cid-uSOWiLgEHL .content-wrap .map-wrapper .contacts-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  color: #ffffff;
  background-color: #81a181;
  font-size: 16px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px 0;
}
.cid-uSOWiLgEHL .mbr-section-title {
  color: #404349;
}
.cid-uSOWiLgEHL .mbr-desc {
  color: #b19a7c;
}
.cid-uSOWiLgEHL .mbr-text {
  color: #404349;
}
.cid-uSOWiLgEHL .list {
  color: #404349;
}
.cid-uSOWiLgEHL .soc-desc {
  color: #404349;
}
.cid-uSOWiLgEHL label {
  color: #404349;
}
.cid-uSOWiLgEHL .list,
.cid-uSOWiLgEHL .item-wrap {
  color: #375330;
}
.cid-uSOWiLgEHL .mbr-section-title,
.cid-uSOWiLgEHL .title-wrap {
  color: #090906;
}
.cid-uSP9KJstab {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #cfcfcf;
}
.cid-uSP9KJstab .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSP9KJstab .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSP9KJstab .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uSP9KJstab .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-uSP9KJstab .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uSP9KJstab .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-uSP9KJstab .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uSP9KJstab .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uSP9KJstab .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uSP9KJstab .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #000000;
  color: #ffffff;
}
.cid-uSP9KJstab .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #9aa0a6;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uSP9KJstab .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #5f6368;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uSP9KJstab .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-uSP9KJstab .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uSP9KJstab .items-wrapper .card {
  padding: 0 32px;
}
.cid-uSP9KJstab .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uSP9KJstab .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uSP9KJstab .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uSP9KJstab .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uSP9KJstab .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uSP9KJstab .list-wrapper .list .item-wrap:hover,
.cid-uSP9KJstab .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uSP9KJstab .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uSP9KJstab .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uSP9KJstab .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uSP9KJstab .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uSP9KJstab .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uSP9KJstab .mbr-copy {
  margin-bottom: 0;
  color: #111111;
  text-align: center;
}
.cid-uSP9KJstab .mbr-desc {
  color: #ffffff;
}
.cid-uSP9KJstab .mbr-text,
.cid-uSP9KJstab .text-wrapper {
  color: #9aa0a6;
}
.cid-uSP9KJstab .list {
  color: #9aa0a6;
}
.cid-uSP9KJstab .list,
.cid-uSP9KJstab .item-wrap {
  color: #111111;
}
.cid-uSP9KJstab .mbr-desc,
.cid-uSP9KJstab .content-wrapper {
  color: #111111;
}
.cid-uSP9KJstab .mbr-text,
.cid-uSP9KJstab .mbr-section-btn {
  color: #111111;
}
.cid-uSP9KJstab P {
  color: #111111;
}
.cid-uSPaxs0GNd {
  z-index: 1000;
  width: 100%;
}
.cid-uSPaxs0GNd nav.navbar {
  position: fixed;
}
.cid-uSPaxs0GNd .container-fluid {
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 992px) {
  .cid-uSPaxs0GNd .container-fluid {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uSPaxs0GNd .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uSPaxs0GNd .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-uSPaxs0GNd .dropdown-item {
  border: none !important;
  background: #f4f4f4 !important;
  font-weight: 400 !important;
}
.cid-uSPaxs0GNd .dropdown-item:hover,
.cid-uSPaxs0GNd .dropdown-item:focus {
  background: #f4f4f4 !important;
  color: #093388 !important;
}
.cid-uSPaxs0GNd .dropdown-item:hover span {
  color: white;
}
.cid-uSPaxs0GNd .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uSPaxs0GNd .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uSPaxs0GNd .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uSPaxs0GNd .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uSPaxs0GNd .nav-link {
  position: relative;
}
.cid-uSPaxs0GNd .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-uSPaxs0GNd .container {
    flex-wrap: nowrap;
  }
}
.cid-uSPaxs0GNd .iconfont-wrapper {
  color: #093388 !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-uSPaxs0GNd .iconfont-wrapper:hover {
  opacity: .7;
}
.cid-uSPaxs0GNd .dropdown-menu,
.cid-uSPaxs0GNd .navbar.opened {
  background: #f4f4f4 !important;
}
.cid-uSPaxs0GNd .nav-item:focus,
.cid-uSPaxs0GNd .nav-link:focus {
  outline: none;
}
.cid-uSPaxs0GNd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uSPaxs0GNd .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-uSPaxs0GNd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uSPaxs0GNd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uSPaxs0GNd .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uSPaxs0GNd .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uSPaxs0GNd .navbar {
  min-height: 60px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(244, 244, 244, 0);
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uSPaxs0GNd .navbar.opened {
  transition: all 0.3s;
}
.cid-uSPaxs0GNd .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 22px;
  line-height: 1.5;
  border-radius: 0;
  margin-left: 4px;
  margin-bottom: 4px;
}
.cid-uSPaxs0GNd .navbar .navbar-logo img {
  width: auto;
}
.cid-uSPaxs0GNd .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uSPaxs0GNd .navbar.collapsed {
  justify-content: center;
}
.cid-uSPaxs0GNd .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uSPaxs0GNd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uSPaxs0GNd .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uSPaxs0GNd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uSPaxs0GNd .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uSPaxs0GNd .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uSPaxs0GNd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uSPaxs0GNd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uSPaxs0GNd .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uSPaxs0GNd .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uSPaxs0GNd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uSPaxs0GNd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uSPaxs0GNd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uSPaxs0GNd .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uSPaxs0GNd .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uSPaxs0GNd .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uSPaxs0GNd .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .cid-uSPaxs0GNd .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-uSPaxs0GNd .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uSPaxs0GNd .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uSPaxs0GNd .navbar.navbar-short {
  min-height: 60px;
}
.cid-uSPaxs0GNd .navbar.navbar-short .navbar-brand {
  min-height: 60px;
}
.cid-uSPaxs0GNd .navbar-brand {
  min-height: 60px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-uSPaxs0GNd .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uSPaxs0GNd .navbar-brand .navbar-caption:hover,
.cid-uSPaxs0GNd .navbar-brand .navbar-caption:focus {
  color: #093388 !important;
}
.cid-uSPaxs0GNd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uSPaxs0GNd .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-uSPaxs0GNd .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #093388 !important;
}
.cid-uSPaxs0GNd .dropdown-item.active,
.cid-uSPaxs0GNd .dropdown-item:active {
  background-color: transparent;
}
.cid-uSPaxs0GNd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uSPaxs0GNd .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uSPaxs0GNd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uSPaxs0GNd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f4f4;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-uSPaxs0GNd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-uSPaxs0GNd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-uSPaxs0GNd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uSPaxs0GNd ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-uSPaxs0GNd ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-uSPaxs0GNd .navbar-buttons {
  text-align: center;
  width: auto;
}
.cid-uSPaxs0GNd .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  min-height: auto;
  width: auto;
  padding: 11px 26px;
}
@media (max-width: 575px) {
  .cid-uSPaxs0GNd .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-uSPaxs0GNd button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #f4f4f4 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uSPaxs0GNd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #093388;
}
.cid-uSPaxs0GNd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-uSPaxs0GNd button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uSPaxs0GNd button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uSPaxs0GNd button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-uSPaxs0GNd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSPaxs0GNd nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uSPaxs0GNd nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uSPaxs0GNd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSPaxs0GNd .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uSPaxs0GNd a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uSPaxs0GNd .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uSPaxs0GNd .navbar {
    height: 70px;
  }
  .cid-uSPaxs0GNd .navbar.opened {
    height: auto;
  }
  .cid-uSPaxs0GNd .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uSPaxs0GNd .navbar-nav {
  margin: 0 auto;
}
.cid-uSPaxs0GNd .nav-item {
  padding: 0;
  margin: 0;
}
.cid-uSPaxs0GNd .nav-item .nav-link {
  padding: 8px 22px !important;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border-radius: 3rem;
}
.cid-uSPaxs0GNd .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-uSPaxs0GNd .nav-item .nav-link:hover,
.cid-uSPaxs0GNd .nav-item .nav-link:focus {
  background-color: transparent;
  color: #093388 !important;
  opacity: .7;
}
.cid-uSPaxs0GNd .nav-item .nav-link:hover::after,
.cid-uSPaxs0GNd .nav-item .nav-link:focus::after {
  color: inherit !important;
}
.cid-uSPaxs0GNd .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-uSPaxs0GNd .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-uSPaxs0GNd .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-uSPaxs0GNd .navbar {
    justify-content: flex-start !important;
  }
  .cid-uSPaxs0GNd .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-uSPaxs0GNd .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-uSPaxs0GNd .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-uSPaxs0GNd .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-uSPaxs0GNd .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .cid-uSPaxs0GNd .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-uSPaxs0GNd .content-wrap {
  min-height: 60px;
}
.cid-uSPaHbTrs3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/captura-de-ecr-2025-08-05-211529.png-1919x1079.png");
}
.cid-uSPaHbTrs3 .wrapper {
  height: 550px;
}
.cid-uSPaP6ZMnZ {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background: #fffcee;
}
.cid-uSPaP6ZMnZ .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uSPaP6ZMnZ .team-card:hover {
  transform: translateY(-10px);
}
.cid-uSPaP6ZMnZ .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #ba9b67;
}
.cid-uSPaP6ZMnZ .svg-top .st0 {
  fill: #fffcee;
}
@media (max-width: 992px) {
  .cid-uSPaP6ZMnZ .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-uSPaP6ZMnZ .image-wrap {
  height: 300px;
  padding-bottom: 2rem;
}
.cid-uSPaP6ZMnZ .image-wrap img {
  height: 100%;
  object-fit: contain;
}
@keyframes line {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
@media (max-width: 991px) {
  .cid-uSPaP6ZMnZ .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uSPaP6ZMnZ .card-wrap .image-wrap img {
  width: 100%;
  margin-bottom: 1rem;
}
.cid-uSPaP6ZMnZ .card-wrap:hover h5:before {
  animation: 1s ease-in-out alternate line;
}
.cid-uSPaP6ZMnZ .card-title,
.cid-uSPaP6ZMnZ .social-row {
  color: #1a449a;
}
.cid-uSPaP6ZMnZ .mbr-role,
.cid-uSPaP6ZMnZ .social-row {
  color: #1a449a;
}
.cid-uSPaP6ZMnZ .card-text,
.cid-uSPaP6ZMnZ .mbr-section-btn,
.cid-uSPaP6ZMnZ .social-row {
  color: #ffffff;
  text-align: center;
}
.cid-uSPaP6ZMnZ .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uSPaP6ZMnZ .card-title,
.cid-uSPaP6ZMnZ .content-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uSPaP6ZMnZ .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uSPaxvRurh {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #cfcfcf;
}
.cid-uSPaxvRurh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSPaxvRurh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSPaxvRurh .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uSPaxvRurh .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-uSPaxvRurh .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uSPaxvRurh .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-uSPaxvRurh .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uSPaxvRurh .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uSPaxvRurh .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uSPaxvRurh .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #000000;
  color: #ffffff;
}
.cid-uSPaxvRurh .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #9aa0a6;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uSPaxvRurh .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #5f6368;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uSPaxvRurh .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-uSPaxvRurh .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uSPaxvRurh .items-wrapper .card {
  padding: 0 32px;
}
.cid-uSPaxvRurh .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uSPaxvRurh .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uSPaxvRurh .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uSPaxvRurh .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uSPaxvRurh .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uSPaxvRurh .list-wrapper .list .item-wrap:hover,
.cid-uSPaxvRurh .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uSPaxvRurh .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uSPaxvRurh .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uSPaxvRurh .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uSPaxvRurh .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uSPaxvRurh .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uSPaxvRurh .mbr-copy {
  margin-bottom: 0;
  color: #111111;
  text-align: center;
}
.cid-uSPaxvRurh .mbr-desc {
  color: #ffffff;
}
.cid-uSPaxvRurh .mbr-text,
.cid-uSPaxvRurh .text-wrapper {
  color: #9aa0a6;
}
.cid-uSPaxvRurh .list {
  color: #9aa0a6;
}
.cid-uSPaxvRurh .list,
.cid-uSPaxvRurh .item-wrap {
  color: #111111;
}
.cid-uSPaxvRurh .mbr-desc,
.cid-uSPaxvRurh .content-wrapper {
  color: #111111;
}
.cid-uSPaxvRurh .mbr-text,
.cid-uSPaxvRurh .mbr-section-btn {
  color: #111111;
}
.cid-uSPaxvRurh P {
  color: #111111;
}
.cid-uSPc4BwatT {
  z-index: 1000;
  width: 100%;
}
.cid-uSPc4BwatT nav.navbar {
  position: fixed;
}
.cid-uSPc4BwatT .container-fluid {
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 992px) {
  .cid-uSPc4BwatT .container-fluid {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uSPc4BwatT .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uSPc4BwatT .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-uSPc4BwatT .dropdown-item {
  border: none !important;
  background: #f4f4f4 !important;
  font-weight: 400 !important;
}
.cid-uSPc4BwatT .dropdown-item:hover,
.cid-uSPc4BwatT .dropdown-item:focus {
  background: #f4f4f4 !important;
  color: #093388 !important;
}
.cid-uSPc4BwatT .dropdown-item:hover span {
  color: white;
}
.cid-uSPc4BwatT .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uSPc4BwatT .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uSPc4BwatT .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uSPc4BwatT .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uSPc4BwatT .nav-link {
  position: relative;
}
.cid-uSPc4BwatT .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-uSPc4BwatT .container {
    flex-wrap: nowrap;
  }
}
.cid-uSPc4BwatT .iconfont-wrapper {
  color: #093388 !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-uSPc4BwatT .iconfont-wrapper:hover {
  opacity: .7;
}
.cid-uSPc4BwatT .dropdown-menu,
.cid-uSPc4BwatT .navbar.opened {
  background: #f4f4f4 !important;
}
.cid-uSPc4BwatT .nav-item:focus,
.cid-uSPc4BwatT .nav-link:focus {
  outline: none;
}
.cid-uSPc4BwatT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uSPc4BwatT .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-uSPc4BwatT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uSPc4BwatT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uSPc4BwatT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uSPc4BwatT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uSPc4BwatT .navbar {
  min-height: 60px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(244, 244, 244, 0);
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uSPc4BwatT .navbar.opened {
  transition: all 0.3s;
}
.cid-uSPc4BwatT .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 22px;
  line-height: 1.5;
  border-radius: 0;
  margin-left: 4px;
  margin-bottom: 4px;
}
.cid-uSPc4BwatT .navbar .navbar-logo img {
  width: auto;
}
.cid-uSPc4BwatT .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uSPc4BwatT .navbar.collapsed {
  justify-content: center;
}
.cid-uSPc4BwatT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uSPc4BwatT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uSPc4BwatT .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uSPc4BwatT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uSPc4BwatT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uSPc4BwatT .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uSPc4BwatT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uSPc4BwatT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uSPc4BwatT .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uSPc4BwatT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uSPc4BwatT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uSPc4BwatT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uSPc4BwatT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uSPc4BwatT .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uSPc4BwatT .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uSPc4BwatT .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uSPc4BwatT .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .cid-uSPc4BwatT .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-uSPc4BwatT .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uSPc4BwatT .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uSPc4BwatT .navbar.navbar-short {
  min-height: 60px;
}
.cid-uSPc4BwatT .navbar.navbar-short .navbar-brand {
  min-height: 60px;
}
.cid-uSPc4BwatT .navbar-brand {
  min-height: 60px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-uSPc4BwatT .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uSPc4BwatT .navbar-brand .navbar-caption:hover,
.cid-uSPc4BwatT .navbar-brand .navbar-caption:focus {
  color: #093388 !important;
}
.cid-uSPc4BwatT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uSPc4BwatT .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-uSPc4BwatT .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #093388 !important;
}
.cid-uSPc4BwatT .dropdown-item.active,
.cid-uSPc4BwatT .dropdown-item:active {
  background-color: transparent;
}
.cid-uSPc4BwatT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uSPc4BwatT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uSPc4BwatT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uSPc4BwatT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f4f4;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-uSPc4BwatT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-uSPc4BwatT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-uSPc4BwatT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uSPc4BwatT ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-uSPc4BwatT ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-uSPc4BwatT .navbar-buttons {
  text-align: center;
  width: auto;
}
.cid-uSPc4BwatT .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  min-height: auto;
  width: auto;
  padding: 11px 26px;
}
@media (max-width: 575px) {
  .cid-uSPc4BwatT .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-uSPc4BwatT button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #f4f4f4 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uSPc4BwatT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #093388;
}
.cid-uSPc4BwatT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-uSPc4BwatT button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uSPc4BwatT button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uSPc4BwatT button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-uSPc4BwatT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSPc4BwatT nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uSPc4BwatT nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uSPc4BwatT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSPc4BwatT .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uSPc4BwatT a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uSPc4BwatT .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uSPc4BwatT .navbar {
    height: 70px;
  }
  .cid-uSPc4BwatT .navbar.opened {
    height: auto;
  }
  .cid-uSPc4BwatT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uSPc4BwatT .navbar-nav {
  margin: 0 auto;
}
.cid-uSPc4BwatT .nav-item {
  padding: 0;
  margin: 0;
}
.cid-uSPc4BwatT .nav-item .nav-link {
  padding: 8px 22px !important;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border-radius: 3rem;
}
.cid-uSPc4BwatT .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-uSPc4BwatT .nav-item .nav-link:hover,
.cid-uSPc4BwatT .nav-item .nav-link:focus {
  background-color: transparent;
  color: #093388 !important;
  opacity: .7;
}
.cid-uSPc4BwatT .nav-item .nav-link:hover::after,
.cid-uSPc4BwatT .nav-item .nav-link:focus::after {
  color: inherit !important;
}
.cid-uSPc4BwatT .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-uSPc4BwatT .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-uSPc4BwatT .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-uSPc4BwatT .navbar {
    justify-content: flex-start !important;
  }
  .cid-uSPc4BwatT .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-uSPc4BwatT .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-uSPc4BwatT .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-uSPc4BwatT .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-uSPc4BwatT .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .cid-uSPc4BwatT .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-uSPc4BwatT .content-wrap {
  min-height: 60px;
}
.cid-uSPc4Ce0SD {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/captura-de-ecr-2025-08-05-211529.png-1-1919x1079.png");
}
.cid-uSPc4Ce0SD .wrapper {
  height: 550px;
}
.cid-uSPc4CDz9O {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background: #fffcee;
}
.cid-uSPc4CDz9O .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uSPc4CDz9O .team-card:hover {
  transform: translateY(-10px);
}
.cid-uSPc4CDz9O .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #ba9b67;
}
.cid-uSPc4CDz9O .svg-top .st0 {
  fill: #fffcee;
}
@media (max-width: 992px) {
  .cid-uSPc4CDz9O .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-uSPc4CDz9O .image-wrap {
  height: 300px;
  padding-bottom: 2rem;
}
.cid-uSPc4CDz9O .image-wrap img {
  height: 100%;
  object-fit: contain;
}
@keyframes line {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
@media (max-width: 991px) {
  .cid-uSPc4CDz9O .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uSPc4CDz9O .card-wrap .image-wrap img {
  width: 100%;
  margin-bottom: 1rem;
}
.cid-uSPc4CDz9O .card-wrap:hover h5:before {
  animation: 1s ease-in-out alternate line;
}
.cid-uSPc4CDz9O .card-title,
.cid-uSPc4CDz9O .social-row {
  color: #1a449a;
}
.cid-uSPc4CDz9O .mbr-role,
.cid-uSPc4CDz9O .social-row {
  color: #1a449a;
}
.cid-uSPc4CDz9O .card-text,
.cid-uSPc4CDz9O .mbr-section-btn,
.cid-uSPc4CDz9O .social-row {
  color: #ffffff;
  text-align: center;
}
.cid-uSPc4CDz9O .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uSPc4CDz9O .card-title,
.cid-uSPc4CDz9O .content-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uSPc4CDz9O .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uSPc4DBUZG {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #cfcfcf;
}
.cid-uSPc4DBUZG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSPc4DBUZG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSPc4DBUZG .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uSPc4DBUZG .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-uSPc4DBUZG .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uSPc4DBUZG .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-uSPc4DBUZG .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uSPc4DBUZG .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uSPc4DBUZG .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uSPc4DBUZG .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #000000;
  color: #ffffff;
}
.cid-uSPc4DBUZG .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #9aa0a6;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uSPc4DBUZG .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #5f6368;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uSPc4DBUZG .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-uSPc4DBUZG .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uSPc4DBUZG .items-wrapper .card {
  padding: 0 32px;
}
.cid-uSPc4DBUZG .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uSPc4DBUZG .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uSPc4DBUZG .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uSPc4DBUZG .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uSPc4DBUZG .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uSPc4DBUZG .list-wrapper .list .item-wrap:hover,
.cid-uSPc4DBUZG .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uSPc4DBUZG .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uSPc4DBUZG .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uSPc4DBUZG .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uSPc4DBUZG .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uSPc4DBUZG .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uSPc4DBUZG .mbr-copy {
  margin-bottom: 0;
  color: #111111;
  text-align: center;
}
.cid-uSPc4DBUZG .mbr-desc {
  color: #ffffff;
}
.cid-uSPc4DBUZG .mbr-text,
.cid-uSPc4DBUZG .text-wrapper {
  color: #9aa0a6;
}
.cid-uSPc4DBUZG .list {
  color: #9aa0a6;
}
.cid-uSPc4DBUZG .list,
.cid-uSPc4DBUZG .item-wrap {
  color: #111111;
}
.cid-uSPc4DBUZG .mbr-desc,
.cid-uSPc4DBUZG .content-wrapper {
  color: #111111;
}
.cid-uSPc4DBUZG .mbr-text,
.cid-uSPc4DBUZG .mbr-section-btn {
  color: #111111;
}
.cid-uSPc4DBUZG P {
  color: #111111;
}
