.btn {
  border-width: 2px;
}
.video-wrapper {
  overflow: hidden;
}
body {
  font-family: Radio Canada Big;
}
.display-1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.2rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 4rem;
}
.display-2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.5rem;
}
.display-4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  line-height: 1.6;
}
.display-4 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-5 {
  font-family: 'Afacad Flux', sans-serif;
  font-size: 1.8rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.25rem;
}
.display-7 {
  font-family: 'Montserrat', 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: 2.56rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.24rem;
    font-size: calc( 1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.24rem;
    font-size: calc( 1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    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))));
  }
  .display-5 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((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: 1.25rem 2rem;
  border-radius: 4px;
  padding: 0.75rem 1.5rem;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1.25rem 2rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #212529 !important;
}
.bg-success {
  background-color: #bdc9a3 !important;
}
.bg-info {
  background-color: #d9c5b9 !important;
}
.bg-warning {
  background-color: #8c775a !important;
}
.bg-danger {
  background-color: #cec8a3 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #212529 !important;
  border-color: #212529 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: inherit;
  background-color: #383f45 !important;
  border-color: #383f45 !important;
  box-shadow: none;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #383f45 !important;
  border-color: #383f45 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #8da1a1 !important;
  border-color: #8da1a1 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: inherit;
  background-color: #a9b8b8 !important;
  border-color: #a9b8b8 !important;
  box-shadow: none;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #a9b8b8 !important;
  border-color: #a9b8b8 !important;
}
.btn-info,
.btn-info:active {
  background-color: #d9c5b9 !important;
  border-color: #d9c5b9 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: inherit;
  background-color: #ebe0da !important;
  border-color: #ebe0da !important;
  box-shadow: none;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #ebe0da !important;
  border-color: #ebe0da !important;
}
.btn-success,
.btn-success:active {
  background-color: #bdc9a3 !important;
  border-color: #bdc9a3 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: inherit;
  background-color: #d4dcc3 !important;
  border-color: #d4dcc3 !important;
  box-shadow: none;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #d4dcc3 !important;
  border-color: #d4dcc3 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #8c775a !important;
  border-color: #8c775a !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: inherit;
  background-color: #a59074 !important;
  border-color: #a59074 !important;
  box-shadow: none;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #a59074 !important;
  border-color: #a59074 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #cec8a3 !important;
  border-color: #cec8a3 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: inherit;
  background-color: #e0dcc4 !important;
  border-color: #e0dcc4 !important;
  box-shadow: none;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #e0dcc4 !important;
  border-color: #e0dcc4 !important;
}
.btn-white,
.btn-white:active {
  background-color: #eff0ec !important;
  border-color: #eff0ec !important;
  color: #757b62 !important;
  box-shadow: none;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: inherit;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: none;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #757b62 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !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: inherit;
  background-color: #3d3d3d !important;
  border-color: #3d3d3d !important;
  box-shadow: none;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #3d3d3d !important;
  border-color: #3d3d3d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #212529;
  color: #212529;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: #000000 !important;
  box-shadow: none !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #212529 !important;
  border-color: #212529 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #8da1a1;
  color: #8da1a1;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #617676 !important;
  background-color: transparent !important;
  border-color: #617676 !important;
  box-shadow: none !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #8da1a1 !important;
  border-color: #8da1a1 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #d9c5b9;
  color: #d9c5b9;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ba9681 !important;
  background-color: transparent !important;
  border-color: #ba9681 !important;
  box-shadow: none !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #d9c5b9 !important;
  border-color: #d9c5b9 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #bdc9a3;
  color: #bdc9a3;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #96a96c !important;
  background-color: transparent !important;
  border-color: #96a96c !important;
  box-shadow: none !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #bdc9a3 !important;
  border-color: #bdc9a3 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #8c775a;
  color: #8c775a;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #574a38 !important;
  background-color: transparent !important;
  border-color: #574a38 !important;
  box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #8c775a !important;
  border-color: #8c775a !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #cec8a3;
  color: #cec8a3;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #b0a66a !important;
  background-color: transparent !important;
  border-color: #b0a66a !important;
  box-shadow: none !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #cec8a3 !important;
  border-color: #cec8a3 !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: #212529 !important;
}
.text-secondary {
  color: #8da1a1 !important;
}
.text-success {
  color: #bdc9a3 !important;
}
.text-info {
  color: #d9c5b9 !important;
}
.text-warning {
  color: #8c775a !important;
}
.text-danger {
  color: #cec8a3 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #5a6e6e !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #8fa363 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #b58e77 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #4e4232 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #aba060 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #212529;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #d9c5b9;
}
.alert-warning {
  background-color: #8c775a;
}
.alert-danger {
  background-color: #cec8a3;
}
.mbr-section-btn .btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #212529;
  border-color: #212529;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #212529;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #d3d8dc;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #c3b5a2;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
  border-radius: 100px !important;
}
.form-control > .mbr-iconfont {
  font-size: 1.5rem;
}
.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: #212529 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.5rem;
}
blockquote {
  border-color: #212529;
}
/* Forms */
.mbr-form .input-group-btn .btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn .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: #212529;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #212529;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #232323;
  border-bottom-color: #232323;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #212529;
  border-bottom-color: #212529;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #212529 !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: #8da1a1 !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='%23212529' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.mbr-section-btn .btn,
.mbr-section-btn-main .btn {
  padding: 20px 64px;
  border-radius: 900px !important;
  font-weight: 400 !important;
}
@media (max-width: 1200px) {
  .mbr-section-btn .btn,
  .mbr-section-btn-main .btn {
    padding: 20px 32px;
  }
}
img,
.card-wrap,
.card-wrapper,
.video-wrapper,
.mbr-figure iframe,
.google-map iframe,
.slide-content,
.plan,
.card,
.item-wrapper,
.content-wrapper,
.content-wrap,
.desc-wrap {
  border-radius: 30px !important;
}
.nav-link {
  border-radius: 900px;
}
.cid-uefW9bNkUI {
  background-color: transparent;
}
.cid-uefW9bNkUI .navbar-dropdown {
  background: rgba(217, 197, 185, 0.8) !important;
  padding: 0;
}
.cid-uefW9bNkUI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: rgba(217, 197, 185, 0.8) !important;
  background: #d9c5b9;
}
.cid-uefW9bNkUI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uefW9bNkUI .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uefW9bNkUI .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uefW9bNkUI .menu_box .navbar.opened,
  .cid-uefW9bNkUI .menu_box .navbar-collapse {
    background-color: #d9c5b9 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uefW9bNkUI .navbar-dropdown {
  position: relative !important;
}
.cid-uefW9bNkUI .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-uefW9bNkUI .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 0;
  }
}
@media (max-width: 991px) {
  .cid-uefW9bNkUI .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uefW9bNkUI .mbr-section-btn-main .btn {
  padding: 10px 64px;
  margin: 8px;
  min-width: 120px;
  white-space: nowrap;
}
@media (max-width: 1200px) {
  .cid-uefW9bNkUI .mbr-section-btn-main .btn {
    padding: 10px 32px;
  }
}
@media (max-width: 992px) {
  .cid-uefW9bNkUI .mbr-section-btn-main .btn {
    margin-left: 0;
  }
}
.cid-uefW9bNkUI .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uefW9bNkUI .btn:hover {
  box-shadow: none;
}
@media (min-width: 1200px) {
  .cid-uefW9bNkUI .nav-item {
    margin: 4px 16px;
  }
}
@media (max-width: 991px) {
  .cid-uefW9bNkUI .nav-item {
    margin: 0 !important;
  }
}
.cid-uefW9bNkUI .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: 4rem !important;
  border: 1px solid transparent;
  position: relative;
  opacity: 1;
}
.cid-uefW9bNkUI .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #8c775a;
  transition: all 0.3s ease-in-out;
}
.cid-uefW9bNkUI .nav-item .nav-link:hover,
.cid-uefW9bNkUI .nav-item .nav-link:focus {
  color: #8c775a !important;
}
.cid-uefW9bNkUI .nav-item .nav-link:hover::before,
.cid-uefW9bNkUI .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uefW9bNkUI .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uefW9bNkUI .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uefW9bNkUI .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uefW9bNkUI .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uefW9bNkUI .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uefW9bNkUI .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uefW9bNkUI .offcanvas_box {
    display: none;
  }
}
.cid-uefW9bNkUI .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uefW9bNkUI .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uefW9bNkUI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uefW9bNkUI .container {
  display: flex;
  margin: auto;
}
.cid-uefW9bNkUI .iconfont-wrapper {
  color: #8da1a1;
  background-color: #d9c5b9;
  font-size: 16px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 32px;
  height: 32px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uefW9bNkUI .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uefW9bNkUI .iconfont-wrapper:hover {
  opacity: .7;
}
@media (min-width: 992px) {
  .cid-uefW9bNkUI .navbar-nav {
    margin: 0;
  }
}
.cid-uefW9bNkUI .dropdown-menu,
.cid-uefW9bNkUI .navbar.opened {
  background-color: true !important;
}
.cid-uefW9bNkUI .nav-item:focus,
.cid-uefW9bNkUI .nav-link:focus {
  outline: none;
}
.cid-uefW9bNkUI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uefW9bNkUI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uefW9bNkUI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uefW9bNkUI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uefW9bNkUI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uefW9bNkUI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uefW9bNkUI .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uefW9bNkUI .navbar {
    min-height: 50px;
    max-height: none;
  }
}
.cid-uefW9bNkUI .navbar.opened {
  transition: all 0.3s;
}
.cid-uefW9bNkUI .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uefW9bNkUI .navbar .navbar-logo img {
  max-width: 100px;
  min-height: 100px;
  object-fit: contain;
  border-radius: 100% !important;
}
.cid-uefW9bNkUI .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uefW9bNkUI .navbar.collapsed {
  justify-content: center;
}
.cid-uefW9bNkUI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uefW9bNkUI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uefW9bNkUI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uefW9bNkUI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uefW9bNkUI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uefW9bNkUI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uefW9bNkUI .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uefW9bNkUI .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uefW9bNkUI .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uefW9bNkUI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uefW9bNkUI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uefW9bNkUI .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uefW9bNkUI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uefW9bNkUI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uefW9bNkUI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uefW9bNkUI .navbar ul.navbar-nav {
    overflow: hidden;
    margin-bottom: 16px;
  }
  .cid-uefW9bNkUI .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uefW9bNkUI .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uefW9bNkUI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uefW9bNkUI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uefW9bNkUI .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uefW9bNkUI .navbar.navbar-short {
  min-height: 60px;
}
.cid-uefW9bNkUI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uefW9bNkUI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uefW9bNkUI .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uefW9bNkUI .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uefW9bNkUI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uefW9bNkUI .dropdown-item.active,
.cid-uefW9bNkUI .dropdown-item:active {
  background-color: transparent;
}
.cid-uefW9bNkUI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 4px 0 !important;
}
.cid-uefW9bNkUI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uefW9bNkUI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uefW9bNkUI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uefW9bNkUI ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uefW9bNkUI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uefW9bNkUI button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #d9c5b9;
  background: #8c775a;
}
.cid-uefW9bNkUI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uefW9bNkUI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uefW9bNkUI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uefW9bNkUI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uefW9bNkUI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uefW9bNkUI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uefW9bNkUI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uefW9bNkUI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uefW9bNkUI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uefW9bNkUI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uefW9bNkUI .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uefW9bNkUI .navbar {
    height: 70px;
  }
  .cid-uefW9bNkUI .navbar.opened {
    height: auto;
  }
  .cid-uefW9bNkUI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uefW9bNkUI .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
.cid-uefW9bNkUI .navbar-caption:hover {
  color: #8c775a;
}
@media (min-width: 992px) {
  .cid-uefW9bNkUI .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uefW9bNkUI .text_widget {
  margin-bottom: 32px;
}
.cid-uefW9bNkUI .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uefW9bNkUI .text_widget a:hover,
.cid-uefW9bNkUI .text_widget a:focus {
  opacity: .8;
}
@media (min-width: 992px) {
  .cid-uefW9bNkUI .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: flex-start;
    min-width: 200px;
    padding-left: 40px;
  }
}
.cid-uefW9bNkUI .contacts-wrapper {
  min-width: 200px;
}
.cid-uefW9bNkUI .contacts-wrapper .mbr-phone {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uefW9bNkUI .contacts-wrapper .mbr-phone:hover,
.cid-uefW9bNkUI .contacts-wrapper .mbr-phone:focus {
  color: #8c775a;
}
.cid-uefW9bNkUI .contacts-wrapper .mbr-email {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uefW9bNkUI .contacts-wrapper .mbr-email:hover,
.cid-uefW9bNkUI .contacts-wrapper .mbr-email:focus {
  color: #8c775a;
}
.cid-uefW9bNkUI .navbar-caption {
  color: #ff8576;
}
.cid-uefW9bNkUI .mbr-phone {
  color: #ff8576;
}
.cid-uefW9bNkUI .mbr-email {
  color: #212529;
}
.cid-uefW9bNkUI .mbr-section-subtitle,
.cid-uefW9bNkUI .text_widget,
.cid-uefW9bNkUI .mbr-section-btn {
  text-align: center;
}
.cid-uefW9bNkUI a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uHpn0hvxww {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fundo.png-1-1920x1630.png");
  overflow: hidden;
}
.cid-uHpn0hvxww .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHpn0hvxww .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHpn0hvxww .row {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uHpn0hvxww .row {
    flex-wrap: wrap;
  }
}
.cid-uHpn0hvxww .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uHpn0hvxww .text-wrap {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-uHpn0hvxww .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-uHpn0hvxww .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #a9bbab;
  transform: translateY(40%);
}
.cid-uHpn0hvxww .mbr-section-title {
  color: #ffffff;
}
.cid-uHpn0hvxww .mbr-section-title a {
  pointer-events: none !important;
  font-style: italic !important;
  font-weight: bold !important;
}
.cid-uHpn0hvxww .mbr-section-subtitle {
  margin-top: 30px;
  color: #353535;
}
@media (max-width: 767px) {
  .cid-uHpn0hvxww .mbr-section-subtitle {
    margin-top: 12px;
  }
}
.cid-uHpn0hvxww .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uHpn0hvxww .mbr-text {
    margin-top: 12px;
  }
}
.cid-uHpn0hvxww .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uHpn0hvxww .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uHpn0hvxww .col-img {
  width: 430px;
}
@media (max-width: 1199px) {
  .cid-uHpn0hvxww .col-img {
    width: 350px;
  }
}
.cid-uHpn0hvxww .img-wrap {
  position: relative;
  width: 100%;
}
.cid-uHpn0hvxww .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-top-left-radius: 65px;
  border-top-right-radius: 65px;
  border-bottom-right-radius: 65px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-uHpn0hvxww .img-wrap .img-box {
    border-top-left-radius: 55px;
    border-top-right-radius: 55px;
    border-bottom-right-radius: 55px;
  }
}
.cid-uHpn0hvxww .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uHpn0hvxww .img-wrap .frame-box {
  position: absolute;
  height: 240px;
}
.cid-uHpn0hvxww .img-wrap .frame-box svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}
.cid-uHpn0hvxww .img-wrap .frame-box-1 {
  bottom: -20%;
  left: -14%;
  width: 85%;
  transform: rotate(10deg);
}
.cid-uHpn0hvxww .img-wrap .frame-box-2 {
  bottom: -18%;
  right: -14%;
  width: 84%;
  transform: rotate(0deg);
}
@media (max-width: 991px) {
  .cid-uHpn0hvxww .img-wrap .frame-box-2 {
    bottom: auto;
    top: -15%;
  }
}
.cid-uHpn0hvxww .mbr-text,
.cid-uHpn0hvxww .mbr-section-btn {
  color: #ffffff;
}
.cid-uGuQXKOwxJ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #f4f4f2;
}
.cid-uGuQXKOwxJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGuQXKOwxJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGuQXKOwxJ .content-wrapper {
  position: relative;
  padding: 100px 100px 105px;
  border-radius: 30px;
  background-color: #e0e4d2;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-uGuQXKOwxJ .content-wrapper {
    padding: 46px 22px;
  }
}
.cid-uGuQXKOwxJ .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
}
.cid-uGuQXKOwxJ .content-wrapper .content-wrap .mbr-desc {
  margin-bottom: 10px;
}
.cid-uGuQXKOwxJ .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 56px;
}
.cid-uGuQXKOwxJ .content-wrapper .content-wrap .mbr-section-title span {
  color: #8c775a;
}
@media (max-width: 992px) {
  .cid-uGuQXKOwxJ .content-wrapper .content-wrap .mbr-section-title {
    margin-bottom: 12px;
  }
}
.cid-uGuQXKOwxJ .content-wrapper .content-wrap .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uGuQXKOwxJ .content-wrapper .image-wrapper {
  position: absolute;
  right: -50px;
  bottom: -150px;
  width: 400px;
  height: 400px;
}
@media (max-width: 992px) {
  .cid-uGuQXKOwxJ .content-wrapper .image-wrapper {
    right: -20px;
    bottom: -75px;
    width: 200px;
    height: 200px;
  }
}
.cid-uGuQXKOwxJ .content-wrapper .image-wrapper img {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 100% !important;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uGuQXKOwxJ .content-wrapper .image-wrapper img {
    width: 200px;
    height: 200px;
  }
}
.cid-uGuQXKOwxJ .mbr-section-title {
  color: #212529;
}
.cid-uGuQXKOwxJ .mbr-desc {
  color: #8c775a;
}
.cid-uefWcNNRbv {
  background-color: #f4f4f2;
}
.cid-uefWcNNRbv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uefWcNNRbv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uefWcNNRbv .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uefWcNNRbv .title-wrapper .mbr-section-title {
    margin-bottom: 46px;
  }
}
.cid-uefWcNNRbv .items-wrapper {
  margin: 0 -10px;
}
.cid-uefWcNNRbv .item {
  padding: 0 10px;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uefWcNNRbv .item {
    margin-bottom: 16px;
  }
}
.cid-uefWcNNRbv .item:hover .item-wrapper .item-content .icon-wrapper,
.cid-uefWcNNRbv .item:focus .item-wrapper .item-content .icon-wrapper {
  transform: rotate(-25deg);
}
.cid-uefWcNNRbv .item:hover .item-wrapper .item-content .item-img,
.cid-uefWcNNRbv .item:focus .item-wrapper .item-content .item-img {
  opacity: 1;
  transform: scale(1);
}
.cid-uefWcNNRbv .item:nth-child(2n) .item-wrapper {
  background-color: #bdc9a3;
}
.cid-uefWcNNRbv .item:nth-child(3n) .item-wrapper {
  background-color: #d9c5b9;
}
.cid-uefWcNNRbv .item:nth-child(4n) .item-wrapper {
  background-color: #d9c5b9;
}
.cid-uefWcNNRbv .item:nth-child(6n) .item-wrapper {
  background-color: #bdc9a3;
}
.cid-uefWcNNRbv .item .item-wrapper {
  height: 100%;
  position: relative;
  padding: 42px;
  background-color: #cec8a3;
}
@media (max-width: 992px) {
  .cid-uefWcNNRbv .item .item-wrapper {
    padding: 46px 22px;
  }
}
.cid-uefWcNNRbv .item .item-wrapper .item-content {
  position: relative;
}
.cid-uefWcNNRbv .item .item-wrapper .item-content .icon-wrapper {
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
  margin-bottom: 22px;
}
.cid-uefWcNNRbv .item .item-wrapper .item-content .icon-wrapper .mbr-iconfont {
  font-size: 40px;
  transition: all 0.3s ease-in-out;
  color: #ffffff;
}
.cid-uefWcNNRbv .item .item-wrapper .item-content .item-title {
  margin-bottom: 0;
}
.cid-uefWcNNRbv .item .item-wrapper .item-content .item-img {
  position: absolute;
  top: -205px;
  right: -105px;
  width: 250px;
  height: 250px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  transform: scale(0.5);
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uefWcNNRbv .item .item-wrapper .item-content .item-img {
    top: -55px;
    right: 0;
    width: 100px;
    height: 100px;
    opacity: 1;
    transform: none;
  }
}
.cid-uefWcNNRbv .item .item-wrapper .item-content .item-img img {
  position: absolute;
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 992px) {
  .cid-uefWcNNRbv .item .item-wrapper .item-content .item-img img {
    width: 100px;
    height: 100px;
  }
}
.cid-uefWcNNRbv .item .item-wrapper .item-text {
  padding-top: 16px;
  margin-bottom: 0;
}
.cid-uefWcNNRbv .mbr-section-title {
  color: #212529;
}
.cid-uefWcNNRbv .panel-title-edit {
  color: #212529;
}
.cid-uefWcNNRbv .panel-text {
  color: #51565c;
}
.cid-uGuXAH9yCA {
  background-image: url("../../../assets/images/simbolo-2.png-853x853.png");
}
.cid-uGuXAH9yCA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGuXAH9yCA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGuXAH9yCA .row {
  position: relative;
  z-index: 2;
}
.cid-uGuXAH9yCA .image-wrapper {
  padding-right: 76px;
  padding-top: 46px;
  padding-right: 0;
  padding-left: 76px;
}
@media (max-width: 992px) {
  .cid-uGuXAH9yCA .image-wrapper {
    padding-right: 0;
    padding-top: 0;
    margin-bottom: 46px;
  }
}
@media (max-width: 992px) {
  .cid-uGuXAH9yCA .image-wrapper {
    padding-left: 0;
  }
}
.cid-uGuXAH9yCA .image-wrapper .image-wrap {
  padding-right: 32px;
  padding-right: 0;
  padding-left: 32px;
}
@media (max-width: 992px) {
  .cid-uGuXAH9yCA .image-wrapper .image-wrap {
    padding-right: 0;
  }
}
@media (max-width: 992px) {
  .cid-uGuXAH9yCA .image-wrapper .image-wrap {
    padding-left: 0;
  }
}
.cid-uGuXAH9yCA .image-wrapper .image-wrap img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uGuXAH9yCA .image-wrapper .image-wrap img {
    height: 100%;
  }
}
.cid-uGuXAH9yCA .image-wrapper .desc-wrap {
  position: relative;
  padding: 46px 32px;
  background-color: #ffffff;
  margin-left: 16px;
  margin-top: -7rem;
}
@media (max-width: 992px) {
  .cid-uGuXAH9yCA .image-wrapper .desc-wrap {
    margin-left: 0;
    padding: 32px 22px;
  }
}
.cid-uGuXAH9yCA .image-wrapper .desc-wrap .mbr-desc {
  margin-bottom: 0;
}
.cid-uGuXAH9yCA .content-wrapper .mbr-section-title {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-uGuXAH9yCA .content-wrapper .mbr-section-title {
    margin-bottom: 46px;
  }
}
.cid-uGuXAH9yCA .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uGuXAH9yCA .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uGuXAH9yCA .mbr-section-title {
  color: #8c775a;
}
.cid-uGuXAH9yCA .mbr-text {
  color: #51565c;
}
.cid-uGuXAH9yCA .mbr-desc {
  color: #212529;
  text-align: center;
}
.cid-uefWwwxa8H {
  background-image: url("../../../assets/images/foto-3.png-2000x2897.png");
}
.cid-uefWwwxa8H .mbr-fallback-image.disabled {
  display: none;
}
.cid-uefWwwxa8H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uefWwwxa8H .image-wrap {
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uefWwwxa8H .image-wrap {
    height: 100%;
  }
}
.cid-uGz9Cin9j4 {
  background-color: #fff1e2;
}
.cid-uGz9Cin9j4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGz9Cin9j4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGz9Cin9j4 .content-wrap {
  padding: 60px;
  background-color: #f8e7d2;
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uGz9Cin9j4 .content-wrap {
    padding: 30px 20px;
    display: block;
  }
}
.cid-uGz9Cin9j4 .content-wrap .cont-wrap {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uGz9Cin9j4 .content-wrap .cont-wrap {
    width: 100%;
  }
}
.cid-uGz9Cin9j4 .content-wrap .cont-wrap .title-wrapper {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-uGz9Cin9j4 .content-wrap .cont-wrap .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uGz9Cin9j4 .content-wrap .cont-wrap .title-wrapper .desc-wrapper .mbr-desc {
  display: inline-block;
  background-color: #fff1e2;
  padding: 8px 16px;
  margin-bottom: 16px;
}
.cid-uGz9Cin9j4 .content-wrap .cont-wrap .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uGz9Cin9j4 .content-wrap .cont-wrap .title-wrapper .mbr-section-title span {
  color: #8c775a;
}
.cid-uGz9Cin9j4 .content-wrap .cont-wrap .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 30px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uGz9Cin9j4 .content-wrap .cont-wrap .items-wrapper {
    padding: 20px;
    display: block;
    margin-bottom: 40px;
  }
}
@media (max-width: 992px) {
  .cid-uGz9Cin9j4 .content-wrap .cont-wrap .items-wrapper .item {
    margin-bottom: 20px;
  }
}
.cid-uGz9Cin9j4 .content-wrap .cont-wrap .items-wrapper .item .item-wrapper .card-box .number-wrapper .item-number {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: #d9c5b9;
  margin-bottom: 16px;
}
.cid-uGz9Cin9j4 .content-wrap .cont-wrap .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 16px;
}
.cid-uGz9Cin9j4 .content-wrap .cont-wrap .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-uGz9Cin9j4 .content-wrap .image-wrapper {
  padding-left: 88px;
  display: flex;
  justify-content: center;
}
@media (max-width: 1440px) {
  .cid-uGz9Cin9j4 .content-wrap .image-wrapper {
    padding-left: 40px;
  }
}
@media (max-width: 992px) {
  .cid-uGz9Cin9j4 .content-wrap .image-wrapper {
    padding-left: 0;
  }
}
.cid-uGz9Cin9j4 .content-wrap .image-wrapper img {
  height: 520px;
  width: 520px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1440px) {
  .cid-uGz9Cin9j4 .content-wrap .image-wrapper img {
    height: 420px;
    width: 420px;
  }
}
@media (max-width: 1199px) {
  .cid-uGz9Cin9j4 .content-wrap .image-wrapper img {
    height: 320px;
    width: 320px;
  }
}
@media (max-width: 768px) {
  .cid-uGz9Cin9j4 .content-wrap .image-wrapper img {
    height: 210px;
    width: 210px;
  }
}
.cid-uGz9Cin9j4 .btn-wrapper {
  margin-top: -20%;
}
.cid-uGz9Cin9j4 .mbr-section-title {
  color: #404349;
}
.cid-uGz9Cin9j4 .mbr-desc {
  color: #b19a7c;
}
.cid-uGz9Cin9j4 .item-number {
  color: #b19a7c;
}
.cid-uGz9Cin9j4 .item-title {
  color: #404349;
}
.cid-uGz9Cin9j4 .item-text {
  color: #404349;
}
.cid-uGz9Cin9j4 .item-number,
.cid-uGz9Cin9j4 .number-wrapper {
  color: #ffffff;
}
.cid-uGznWoXMSJ {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #cec8a3;
}
.cid-uGznWoXMSJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGznWoXMSJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGznWoXMSJ .media-container-row {
  justify-content: space-between;
}
.cid-uGznWoXMSJ .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-uGznWoXMSJ .text-content {
    max-width: none;
  }
}
.cid-uGznWoXMSJ .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uGznWoXMSJ .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-uGznWoXMSJ .mbr-iconfont-social:hover {
  background-color: #ffffff;
  color: #000000;
}
@media (max-width: 768px) {
  .cid-uGznWoXMSJ .icons {
    justify-content: center !important;
  }
  .cid-uGznWoXMSJ .text-content * {
    text-align: center;
  }
}
.cid-uGznWoXMSJ .mbr-section-title {
  color: #ffffff;
}
.cid-uGzyNZZCnd {
  background-image: url("../../../assets/images/fundo.jpg-1920x1080.jpg");
}
.cid-uGzyNZZCnd .mbr-overlay {
  backdrop-filter: blur(3.5px);
}
.cid-uGzyNZZCnd p {
  margin: 0;
}
.cid-uGzyNZZCnd .row-border {
  border-bottom: 1px solid #e4e4e4;
  align-items: center;
  padding: 1rem 0;
}
.cid-uGzyNZZCnd .card {
  padding: 0;
}
.cid-uGzyNZZCnd .card-wrapper {
  align-items: center;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 4rem 4rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-uGzyNZZCnd .card-wrapper {
    padding: 2rem 2rem;
  }
}
.cid-uGzyNZZCnd .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  pointer-events: none;
  border: 2px solid white;
  border-radius: 30px;
}
.cid-uGzyNZZCnd .mbr-section-title {
  color: #8c775a;
}
.cid-uGzyNZZCnd .mbr-text {
  color: #656565;
}
.cid-uGzyNZZCnd .mbr-section-subtitle {
  color: #8c775a;
}
.cid-uGzGILSSOr {
  background-color: #cec8a3;
}
.cid-uGzGILSSOr .mbr-text,
.cid-uGzGILSSOr .mbr-section-btn {
  color: #232323;
}
@media (max-width: 991px) {
  .cid-uGzGILSSOr .mbr-text,
  .cid-uGzGILSSOr .mbr-section-title {
    text-align: center;
  }
}
.cid-uGzGILSSOr img {
  border-radius: 50%;
  aspect-ratio: 1;
  object-fit: cover;
}
@media (min-width: 1400px) {
  .cid-uGzGILSSOr .mbr-form {
    padding-right: 1.5rem;
  }
}
.cid-uGzGILSSOr .btn {
  padding: 1rem 3rem;
  border-radius: 3rem;
}
.cid-uGzGILSSOr input,
.cid-uGzGILSSOr textarea {
  background: transparent;
  border: none !important;
  border-bottom: 2px solid white !important;
  box-shadow: none;
  padding: 1rem;
  border-radius: 0;
  color: white;
}
.cid-uGzGILSSOr input:hover,
.cid-uGzGILSSOr textarea:hover,
.cid-uGzGILSSOr input:active,
.cid-uGzGILSSOr textarea:active,
.cid-uGzGILSSOr input:focus-within,
.cid-uGzGILSSOr textarea:focus-within {
  border: none !important;
  box-shadow: none;
  color: white;
  background: transparent;
  border-bottom: 2px solid white !important;
}
.cid-uGzGILSSOr input::placeholder,
.cid-uGzGILSSOr textarea::placeholder {
  color: white;
  font-size: 1.5rem;
}
@media (max-width: 991px) {
  .cid-uGzGILSSOr .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-uGzGILSSOr .content-wrapper {
    flex-direction: column-reverse;
  }
}
.cid-uGzGILSSOr .justify-content-center {
  align-items: center;
}
.cid-uGzGILSSOr H1 {
  color: #ffffff;
}
.cid-uefWFe2XjT {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #cec8a3;
}
.cid-uefWFe2XjT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uefWFe2XjT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uefWFe2XjT .content-wrap {
  justify-content: center;
}
.cid-uefWFe2XjT .title-wrapper .logo-wrapper {
  margin-bottom: 16px;
}
.cid-uefWFe2XjT .title-wrapper .logo-wrapper img {
  display: inline-flex;
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 100%;
}
.cid-uefWFe2XjT .title-wrapper .logo-wrapper a {
  display: inline-flex;
}
.cid-uefWFe2XjT .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uefWFe2XjT .title-wrapper .mbr-section-title {
    margin-bottom: 46px;
  }
}
.cid-uefWFe2XjT .social-wrapper {
  margin-bottom: 16px;
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uefWFe2XjT .social-wrapper {
    margin-bottom: 46px;
    text-align: left;
  }
}
.cid-uefWFe2XjT .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uefWFe2XjT .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uefWFe2XjT .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uefWFe2XjT .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  background-color: #ff543d;
}
.cid-uefWFe2XjT .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  min-width: 60px;
  color: #ffffff;
  background-color: #8c775a;
  font-size: 32px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-uefWFe2XjT .copy-wrapper .mbr-copy {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uefWFe2XjT .copy-wrapper .mbr-copy {
    width: 100%;
    text-align: left;
  }
}
.cid-uefWFe2XjT .mbr-section-title {
  color: #ff8576;
}
.cid-uefWFe2XjT .mbr-copy {
  color: #51565c;
}
.cid-uefWFe2XjT .mbr-copy,
.cid-uefWFe2XjT .copy-wrapper {
  text-align: right;
}
