.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 2.8rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 3.5rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 2.2rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.75rem;
}
.display-7 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 2.24rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.96rem;
    font-size: calc( 1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #3ab752 !important;
}
.bg-success {
  background-color: #9fdbf8 !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #3ab752 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #3ab752 !important;
  border-color: #3ab752 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #257535 !important;
  border-color: #257535 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #257535 !important;
  border-color: #257535 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #9fdbf8 !important;
  border-color: #9fdbf8 !important;
  color: #0a638e !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #4ebdf2 !important;
  border-color: #4ebdf2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #0a638e !important;
  background-color: #4ebdf2 !important;
  border-color: #4ebdf2 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #3ab752 !important;
  border-color: #3ab752 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #257535 !important;
  border-color: #257535 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #257535 !important;
  border-color: #257535 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #3ab752;
  color: #3ab752;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #257535 !important;
  background-color: transparent!important;
  border-color: #257535 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #3ab752 !important;
  border-color: #3ab752 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ff6666;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: #ff0f0f !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #47b5ed;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: #148cca !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #9fdbf8;
  color: #9fdbf8;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #4ebdf2 !important;
  background-color: transparent!important;
  border-color: #4ebdf2 !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #0a638e !important;
  background-color: #9fdbf8 !important;
  border-color: #9fdbf8 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #3ab752;
  color: #3ab752;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #257535 !important;
  background-color: transparent!important;
  border-color: #257535 !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #3ab752 !important;
  border-color: #3ab752 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ff9966;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: #ff5f0f !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !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: #3ab752 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #9fdbf8 !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #3ab752 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #216a2f !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #40b7f1 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #216a2f !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !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: #3ab752;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #3ab752;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #3ab752;
  border-color: #3ab752;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #3ab752;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #94dda2;
}
.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: #94dda2;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.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: #3ab752 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #3ab752;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #3ab752;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #3ab752;
}
.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: #3ab752;
  border-bottom-color: #3ab752;
}
.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: #3ab752 !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: #ff6666 !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='%233ab752' %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-sFCw1qGFAI {
  z-index: 1000;
  width: 100%;
}
.cid-sFCw1qGFAI nav.navbar {
  position: fixed;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFCw1qGFAI .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFCw1qGFAI .dropdown-item:hover,
.cid-sFCw1qGFAI .dropdown-item:focus {
  background: #3ab752 !important;
  color: white !important;
}
.cid-sFCw1qGFAI .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFCw1qGFAI .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFCw1qGFAI .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFCw1qGFAI .nav-link {
  position: relative;
}
.cid-sFCw1qGFAI .container {
  display: flex;
  margin: auto;
}
.cid-sFCw1qGFAI .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFCw1qGFAI .dropdown-menu,
.cid-sFCw1qGFAI .navbar.opened {
  background: #0976aa !important;
}
.cid-sFCw1qGFAI .nav-item:focus,
.cid-sFCw1qGFAI .nav-link:focus {
  outline: none;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFCw1qGFAI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFCw1qGFAI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFCw1qGFAI .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #0976aa;
}
.cid-sFCw1qGFAI .navbar.opened {
  transition: all 0.3s;
}
.cid-sFCw1qGFAI .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFCw1qGFAI .navbar .navbar-logo img {
  width: auto;
}
.cid-sFCw1qGFAI .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFCw1qGFAI .navbar.collapsed {
  justify-content: center;
}
.cid-sFCw1qGFAI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFCw1qGFAI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sFCw1qGFAI .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.9rem);
  }
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFCw1qGFAI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFCw1qGFAI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFCw1qGFAI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFCw1qGFAI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFCw1qGFAI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFCw1qGFAI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFCw1qGFAI .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFCw1qGFAI .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFCw1qGFAI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFCw1qGFAI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFCw1qGFAI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFCw1qGFAI .dropdown-item.active,
.cid-sFCw1qGFAI .dropdown-item:active {
  background-color: transparent;
}
.cid-sFCw1qGFAI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFCw1qGFAI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0976aa;
}
.cid-sFCw1qGFAI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFCw1qGFAI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFCw1qGFAI ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFCw1qGFAI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFCw1qGFAI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sFCw1qGFAI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar {
    height: 70px;
  }
  .cid-sFCw1qGFAI .navbar.opened {
    height: auto;
  }
  .cid-sFCw1qGFAI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uH4ny7Zmel {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uH4ny7Zmel .mbr-fallback-image.disabled {
  display: none;
}
.cid-uH4ny7Zmel .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uH4ny7Zmel H3 {
  text-align: center;
}
.cid-uH4ny7Zmel .mbr-text,
.cid-uH4ny7Zmel .mbr-section-btn {
  text-align: center;
}
.cid-sFzz5E692j {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/fondo-3.jpg-612x448.jpg");
}
.cid-sFzz5E692j .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-sFzz5E692j .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sFzz5E692j .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-sFzz5E692j .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-sFzz5E692j .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sFzz5E692j .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-sFzz5E692j .mbr-text,
.cid-sFzz5E692j .mbr-section-btn {
  color: #fafafa;
  text-align: center;
}
.cid-sFzFvgBfc0 {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #005b98;
}
.cid-sFzFvgBfc0 img,
.cid-sFzFvgBfc0 .item-img {
  width: 100%;
}
.cid-sFzFvgBfc0 .item:focus,
.cid-sFzFvgBfc0 span:focus {
  outline: none;
}
.cid-sFzFvgBfc0 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sFzFvgBfc0 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #0976aa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sFzFvgBfc0 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sFzFvgBfc0 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sFzFvgBfc0 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sFzFvgBfc0 .mbr-section-title {
  color: #fafafa;
}
.cid-sFzFvgBfc0 .mbr-text,
.cid-sFzFvgBfc0 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-sFzFvgBfc0 .item-title {
  text-align: left;
  color: #bbbbbb;
}
.cid-sFzFvgBfc0 .item-subtitle {
  text-align: left;
}
.cid-uGZa3mfmYq {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/construccionesjp.jpg-2000x1255.jpg");
}
.cid-uGZa3mfmYq img,
.cid-uGZa3mfmYq .item-img {
  width: 100%;
  height: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-uGZa3mfmYq .item:focus,
.cid-uGZa3mfmYq span:focus {
  outline: none;
}
.cid-uGZa3mfmYq .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uGZa3mfmYq .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uGZa3mfmYq .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uGZa3mfmYq .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uGZa3mfmYq .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uGZa3mfmYq .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uGZa3mfmYq .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uGZa3mfmYq .mbr-section-title {
  color: #141619;
}
.cid-uGZa3mfmYq .mbr-text,
.cid-uGZa3mfmYq .mbr-section-btn {
  text-align: left;
}
.cid-uGZa3mfmYq .item-title {
  text-align: center;
}
.cid-uGZa3mfmYq .item-subtitle {
  text-align: center;
}
.cid-uGZcxFLRV2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bbbbbb;
}
.cid-uGZcxFLRV2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGZcxFLRV2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGZcxFLRV2 .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-uGZcxFLRV2 .currentcost {
  color: #232323;
}
.cid-uGZcxFLRV2 .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uGZcxFLRV2 .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uGZcxFLRV2 .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uGZcxFLRV2 .text-box {
    padding: 1rem;
  }
}
.cid-uGZcxFLRV2 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uH3yImpKzP {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uH3yImpKzP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uH3yImpKzP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uH3yImpKzP .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uH3yImpKzP .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-uH3yImpKzP .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uH3yImpKzP .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uH3yImpKzP .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uH3yImpKzP .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uH3yImpKzP .carousel-control,
.cid-uH3yImpKzP .close {
  background: #1b1b1b;
}
.cid-uH3yImpKzP .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uH3yImpKzP .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uH3yImpKzP .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uH3yImpKzP .carousel-control-next span {
  margin-left: 5px;
}
.cid-uH3yImpKzP .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uH3yImpKzP .close::before {
  content: '\e91a';
}
.cid-uH3yImpKzP .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uH3yImpKzP .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uH3yImpKzP .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uH3yImpKzP .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uH3yImpKzP .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uH3yImpKzP .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uH3yImpKzP .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uH3yImpKzP .carousel-indicators li.active,
.cid-uH3yImpKzP .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uH3yImpKzP .carousel-indicators li::after,
.cid-uH3yImpKzP .carousel-indicators li::before {
  content: none;
}
.cid-uH3yImpKzP .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uH3yImpKzP .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uH3yImpKzP .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uH3yImpKzP .carousel-indicators {
    display: none;
  }
}
.cid-uH3yImpKzP .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uH3yImpKzP .carousel-inner > .active {
  display: block;
}
.cid-uH3yImpKzP .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uH3yImpKzP .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uH3yImpKzP .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uH3yImpKzP .carousel-control,
  .cid-uH3yImpKzP .carousel-indicators,
  .cid-uH3yImpKzP .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uH3yImpKzP .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uH3yImpKzP .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uH3yImpKzP .carousel-indicators .active,
.cid-uH3yImpKzP .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uH3yImpKzP .carousel-indicators .active {
  background: #fff;
}
.cid-uH3yImpKzP .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uH3yImpKzP .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uH3yImpKzP .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uH3yImpKzP .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uH3yImpKzP .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uH3yImpKzP .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uH3yImpKzP .carousel {
  width: 100%;
}
.cid-uH3yImpKzP .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uH3yImpKzP .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uH3yImpKzP .modal.fade .modal-dialog,
.cid-uH3yImpKzP .modal.in .modal-dialog {
  transform: none;
}
.cid-uH3yImpKzP .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uH3yImpKzP H6 {
  text-align: center;
}
.cid-sFAw7z51L3 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #0976aa;
}
.cid-sFAw7z51L3 img {
  width: 120px;
  margin: auto;
}
.cid-sFAw7z51L3 .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sFAw7z51L3 .card {
    max-width: 12.5%;
  }
}
.cid-sFAw7z51L3 .mbr-section-subtitle {
  color: #dbdbdb;
}
.cid-sFAw7z51L3 .mbr-section-title {
  color: #ffffff;
}
.cid-sFzDs3t9EG {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-sFzDs3t9EG .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sFzDs3t9EG form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-sFzDs3t9EG form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-sFzDs3t9EG form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-sFzDs3t9EG .mbr-section-title {
  color: #000000;
}
.cid-sFzDs3t9EG .mbr-section-subtitle {
  color: #000000;
}
.cid-sFzIA7KGYz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-sFzIA7KGYz .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-sFzIA7KGYz .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-sFzIA7KGYz .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sFzIA7KGYz .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-sFzIA7KGYz .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #3ab752;
}
.cid-sFAxp7Y5iM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-sFAxp7Y5iM .google-map {
  height: 30rem;
  position: relative;
}
.cid-sFAxp7Y5iM .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sFAxp7Y5iM .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sFAxp7Y5iM .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sFAxp7Y5iM .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uH3WxjivJn {
  z-index: 1000;
  width: 100%;
}
.cid-uH3WxjivJn nav.navbar {
  position: fixed;
}
.cid-uH3WxjivJn .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-uH3WxjivJn .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uH3WxjivJn .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uH3WxjivJn .dropdown-item:hover,
.cid-uH3WxjivJn .dropdown-item:focus {
  background: #3ab752 !important;
  color: white !important;
}
.cid-uH3WxjivJn .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uH3WxjivJn .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uH3WxjivJn .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uH3WxjivJn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uH3WxjivJn .nav-link {
  position: relative;
}
.cid-uH3WxjivJn .container {
  display: flex;
  margin: auto;
}
.cid-uH3WxjivJn .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uH3WxjivJn .dropdown-menu,
.cid-uH3WxjivJn .navbar.opened {
  background: #0976aa !important;
}
.cid-uH3WxjivJn .nav-item:focus,
.cid-uH3WxjivJn .nav-link:focus {
  outline: none;
}
.cid-uH3WxjivJn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uH3WxjivJn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uH3WxjivJn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uH3WxjivJn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uH3WxjivJn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uH3WxjivJn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uH3WxjivJn .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #0976aa;
}
.cid-uH3WxjivJn .navbar.opened {
  transition: all 0.3s;
}
.cid-uH3WxjivJn .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uH3WxjivJn .navbar .navbar-logo img {
  width: auto;
}
.cid-uH3WxjivJn .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uH3WxjivJn .navbar.collapsed {
  justify-content: center;
}
.cid-uH3WxjivJn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uH3WxjivJn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uH3WxjivJn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.9rem);
  }
}
.cid-uH3WxjivJn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uH3WxjivJn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uH3WxjivJn .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-uH3WxjivJn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uH3WxjivJn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uH3WxjivJn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uH3WxjivJn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uH3WxjivJn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uH3WxjivJn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uH3WxjivJn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uH3WxjivJn .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-uH3WxjivJn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uH3WxjivJn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uH3WxjivJn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uH3WxjivJn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uH3WxjivJn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uH3WxjivJn .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uH3WxjivJn .navbar.navbar-short {
  min-height: 60px;
}
.cid-uH3WxjivJn .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uH3WxjivJn .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uH3WxjivJn .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-uH3WxjivJn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uH3WxjivJn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uH3WxjivJn .dropdown-item.active,
.cid-uH3WxjivJn .dropdown-item:active {
  background-color: transparent;
}
.cid-uH3WxjivJn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uH3WxjivJn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uH3WxjivJn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uH3WxjivJn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0976aa;
}
.cid-uH3WxjivJn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uH3WxjivJn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uH3WxjivJn ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uH3WxjivJn .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uH3WxjivJn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uH3WxjivJn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uH3WxjivJn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uH3WxjivJn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uH3WxjivJn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uH3WxjivJn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uH3WxjivJn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uH3WxjivJn nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uH3WxjivJn nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uH3WxjivJn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uH3WxjivJn .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uH3WxjivJn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uH3WxjivJn .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-uH3WxjivJn .navbar {
    height: 70px;
  }
  .cid-uH3WxjivJn .navbar.opened {
    height: auto;
  }
  .cid-uH3WxjivJn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uH4xltQt4D {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-uH4xltQt4D .mbr-fallback-image.disabled {
  display: none;
}
.cid-uH4xltQt4D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uH4xltQt4D .mbr-text,
.cid-uH4xltQt4D .mbr-section-btn {
  text-align: center;
}
.cid-uH3WxAaNC7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uH3WxAaNC7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uH3WxAaNC7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uH3WxAaNC7 .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-uH3WxAaNC7 .currentcost {
  color: #232323;
}
.cid-uH3WxAaNC7 .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uH3WxAaNC7 .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uH3WxAaNC7 .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uH3WxAaNC7 .text-box {
    padding: 1rem;
  }
}
.cid-uH3WxAaNC7 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uH4yqn4CJ8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uH4yqn4CJ8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uH4yqn4CJ8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uH4yqn4CJ8 .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-uH4yqn4CJ8 .currentcost {
  color: #232323;
}
.cid-uH4yqn4CJ8 .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uH4yqn4CJ8 .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uH4yqn4CJ8 .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uH4yqn4CJ8 .text-box {
    padding: 1rem;
  }
}
.cid-uH4yqn4CJ8 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uH4yAsOb16 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uH4yAsOb16 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uH4yAsOb16 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uH4yAsOb16 .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-uH4yAsOb16 .currentcost {
  color: #232323;
}
.cid-uH4yAsOb16 .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uH4yAsOb16 .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uH4yAsOb16 .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uH4yAsOb16 .text-box {
    padding: 1rem;
  }
}
.cid-uH4yAsOb16 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uH4yIfWHKE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uH4yIfWHKE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uH4yIfWHKE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uH4yIfWHKE .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-uH4yIfWHKE .currentcost {
  color: #232323;
}
.cid-uH4yIfWHKE .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uH4yIfWHKE .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uH4yIfWHKE .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uH4yIfWHKE .text-box {
    padding: 1rem;
  }
}
.cid-uH4yIfWHKE .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uH4yQbM2Q4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uH4yQbM2Q4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uH4yQbM2Q4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uH4yQbM2Q4 .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-uH4yQbM2Q4 .currentcost {
  color: #232323;
}
.cid-uH4yQbM2Q4 .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uH4yQbM2Q4 .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uH4yQbM2Q4 .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uH4yQbM2Q4 .text-box {
    padding: 1rem;
  }
}
.cid-uH4yQbM2Q4 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uH4yVH5h4k {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uH4yVH5h4k .mbr-fallback-image.disabled {
  display: none;
}
.cid-uH4yVH5h4k .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uH4yVH5h4k .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-uH4yVH5h4k .currentcost {
  color: #232323;
}
.cid-uH4yVH5h4k .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uH4yVH5h4k .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uH4yVH5h4k .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uH4yVH5h4k .text-box {
    padding: 1rem;
  }
}
.cid-uH4yVH5h4k .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uH3WxwHHSS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uH3WxwHHSS .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uH3WxwHHSS .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-uH3WxwHHSS .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uH3WxwHHSS .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uH3WxwHHSS .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #3ab752;
}
.cid-uH3WxxXQYE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uH3WxxXQYE .google-map {
  height: 30rem;
  position: relative;
}
.cid-uH3WxxXQYE .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uH3WxxXQYE .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uH3WxxXQYE .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uH3WxxXQYE .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uM25uVsHHv {
  z-index: 1000;
  width: 100%;
}
.cid-uM25uVsHHv nav.navbar {
  position: fixed;
}
.cid-uM25uVsHHv .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-uM25uVsHHv .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uM25uVsHHv .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uM25uVsHHv .dropdown-item:hover,
.cid-uM25uVsHHv .dropdown-item:focus {
  background: #3ab752 !important;
  color: white !important;
}
.cid-uM25uVsHHv .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uM25uVsHHv .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uM25uVsHHv .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uM25uVsHHv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uM25uVsHHv .nav-link {
  position: relative;
}
.cid-uM25uVsHHv .container {
  display: flex;
  margin: auto;
}
.cid-uM25uVsHHv .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uM25uVsHHv .dropdown-menu,
.cid-uM25uVsHHv .navbar.opened {
  background: #0976aa !important;
}
.cid-uM25uVsHHv .nav-item:focus,
.cid-uM25uVsHHv .nav-link:focus {
  outline: none;
}
.cid-uM25uVsHHv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uM25uVsHHv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uM25uVsHHv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uM25uVsHHv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uM25uVsHHv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uM25uVsHHv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uM25uVsHHv .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #0976aa;
}
.cid-uM25uVsHHv .navbar.opened {
  transition: all 0.3s;
}
.cid-uM25uVsHHv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uM25uVsHHv .navbar .navbar-logo img {
  width: auto;
}
.cid-uM25uVsHHv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uM25uVsHHv .navbar.collapsed {
  justify-content: center;
}
.cid-uM25uVsHHv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uM25uVsHHv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uM25uVsHHv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.9rem);
  }
}
.cid-uM25uVsHHv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uM25uVsHHv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uM25uVsHHv .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-uM25uVsHHv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uM25uVsHHv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uM25uVsHHv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uM25uVsHHv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uM25uVsHHv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uM25uVsHHv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uM25uVsHHv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uM25uVsHHv .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-uM25uVsHHv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uM25uVsHHv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uM25uVsHHv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uM25uVsHHv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uM25uVsHHv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uM25uVsHHv .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uM25uVsHHv .navbar.navbar-short {
  min-height: 60px;
}
.cid-uM25uVsHHv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uM25uVsHHv .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uM25uVsHHv .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-uM25uVsHHv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uM25uVsHHv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uM25uVsHHv .dropdown-item.active,
.cid-uM25uVsHHv .dropdown-item:active {
  background-color: transparent;
}
.cid-uM25uVsHHv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uM25uVsHHv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uM25uVsHHv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uM25uVsHHv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0976aa;
}
.cid-uM25uVsHHv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uM25uVsHHv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uM25uVsHHv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uM25uVsHHv .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uM25uVsHHv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uM25uVsHHv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uM25uVsHHv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uM25uVsHHv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uM25uVsHHv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uM25uVsHHv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uM25uVsHHv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uM25uVsHHv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uM25uVsHHv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uM25uVsHHv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uM25uVsHHv .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uM25uVsHHv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uM25uVsHHv .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-uM25uVsHHv .navbar {
    height: 70px;
  }
  .cid-uM25uVsHHv .navbar.opened {
    height: auto;
  }
  .cid-uM25uVsHHv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uM25uW2zX7 {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uM25uW2zX7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uM25uW2zX7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uM25uW2zX7 H3 {
  text-align: center;
}
.cid-uM25uW2zX7 .mbr-text,
.cid-uM25uW2zX7 .mbr-section-btn {
  text-align: center;
}
.cid-uM25uWsUTz {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/fondo-3.jpg-612x448.jpg");
}
.cid-uM25uWsUTz .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uM25uWsUTz .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uM25uWsUTz .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uM25uWsUTz .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uM25uWsUTz .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uM25uWsUTz .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uM25uWsUTz .mbr-text,
.cid-uM25uWsUTz .mbr-section-btn {
  color: #fafafa;
  text-align: center;
}
.cid-uM25uWUZQB {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #005b98;
}
.cid-uM25uWUZQB img,
.cid-uM25uWUZQB .item-img {
  width: 100%;
}
.cid-uM25uWUZQB .item:focus,
.cid-uM25uWUZQB span:focus {
  outline: none;
}
.cid-uM25uWUZQB .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uM25uWUZQB .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #0976aa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uM25uWUZQB .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uM25uWUZQB .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uM25uWUZQB .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uM25uWUZQB .mbr-section-title {
  color: #fafafa;
}
.cid-uM25uWUZQB .mbr-text,
.cid-uM25uWUZQB .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uM25uWUZQB .item-title {
  text-align: left;
  color: #bbbbbb;
}
.cid-uM25uWUZQB .item-subtitle {
  text-align: left;
}
.cid-uM25uXzhmh {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/construccionesjp.jpg-2000x1255.jpg");
}
.cid-uM25uXzhmh img,
.cid-uM25uXzhmh .item-img {
  width: 100%;
  height: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-uM25uXzhmh .item:focus,
.cid-uM25uXzhmh span:focus {
  outline: none;
}
.cid-uM25uXzhmh .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uM25uXzhmh .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uM25uXzhmh .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uM25uXzhmh .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uM25uXzhmh .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uM25uXzhmh .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uM25uXzhmh .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uM25uXzhmh .mbr-section-title {
  color: #141619;
}
.cid-uM25uXzhmh .mbr-text,
.cid-uM25uXzhmh .mbr-section-btn {
  text-align: left;
}
.cid-uM25uXzhmh .item-title {
  text-align: center;
}
.cid-uM25uXzhmh .item-subtitle {
  text-align: center;
}
.cid-uM25uYy8zr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bbbbbb;
}
.cid-uM25uYy8zr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uM25uYy8zr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uM25uYy8zr .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-uM25uYy8zr .currentcost {
  color: #232323;
}
.cid-uM25uYy8zr .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uM25uYy8zr .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uM25uYy8zr .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uM25uYy8zr .text-box {
    padding: 1rem;
  }
}
.cid-uM25uYy8zr .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uM25uZ2tEq {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uM25uZ2tEq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uM25uZ2tEq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uM25uZ2tEq .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uM25uZ2tEq .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-uM25uZ2tEq .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uM25uZ2tEq .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uM25uZ2tEq .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uM25uZ2tEq .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uM25uZ2tEq .carousel-control,
.cid-uM25uZ2tEq .close {
  background: #1b1b1b;
}
.cid-uM25uZ2tEq .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uM25uZ2tEq .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uM25uZ2tEq .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uM25uZ2tEq .carousel-control-next span {
  margin-left: 5px;
}
.cid-uM25uZ2tEq .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uM25uZ2tEq .close::before {
  content: '\e91a';
}
.cid-uM25uZ2tEq .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uM25uZ2tEq .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uM25uZ2tEq .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uM25uZ2tEq .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uM25uZ2tEq .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uM25uZ2tEq .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uM25uZ2tEq .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uM25uZ2tEq .carousel-indicators li.active,
.cid-uM25uZ2tEq .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uM25uZ2tEq .carousel-indicators li::after,
.cid-uM25uZ2tEq .carousel-indicators li::before {
  content: none;
}
.cid-uM25uZ2tEq .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uM25uZ2tEq .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uM25uZ2tEq .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uM25uZ2tEq .carousel-indicators {
    display: none;
  }
}
.cid-uM25uZ2tEq .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uM25uZ2tEq .carousel-inner > .active {
  display: block;
}
.cid-uM25uZ2tEq .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uM25uZ2tEq .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uM25uZ2tEq .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uM25uZ2tEq .carousel-control,
  .cid-uM25uZ2tEq .carousel-indicators,
  .cid-uM25uZ2tEq .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uM25uZ2tEq .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uM25uZ2tEq .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uM25uZ2tEq .carousel-indicators .active,
.cid-uM25uZ2tEq .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uM25uZ2tEq .carousel-indicators .active {
  background: #fff;
}
.cid-uM25uZ2tEq .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uM25uZ2tEq .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uM25uZ2tEq .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uM25uZ2tEq .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uM25uZ2tEq .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uM25uZ2tEq .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uM25uZ2tEq .carousel {
  width: 100%;
}
.cid-uM25uZ2tEq .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uM25uZ2tEq .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uM25uZ2tEq .modal.fade .modal-dialog,
.cid-uM25uZ2tEq .modal.in .modal-dialog {
  transform: none;
}
.cid-uM25uZ2tEq .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uM25uZ2tEq H6 {
  text-align: center;
}
.cid-uM25v1in5g {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #0976aa;
}
.cid-uM25v1in5g img {
  width: 120px;
  margin: auto;
}
.cid-uM25v1in5g .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uM25v1in5g .card {
    max-width: 12.5%;
  }
}
.cid-uM25v1in5g .mbr-section-subtitle {
  color: #dbdbdb;
}
.cid-uM25v1in5g .mbr-section-title {
  color: #ffffff;
}
.cid-uM25v1QEP4 {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-uM25v1QEP4 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uM25v1QEP4 form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uM25v1QEP4 form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uM25v1QEP4 form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uM25v1QEP4 .mbr-section-title {
  color: #000000;
}
.cid-uM25v1QEP4 .mbr-section-subtitle {
  color: #000000;
}
.cid-uM25v2mgVb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uM25v2mgVb .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uM25v2mgVb .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-uM25v2mgVb .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uM25v2mgVb .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uM25v2mgVb .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #3ab752;
}
.cid-uM25v304PU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uM25v304PU .google-map {
  height: 30rem;
  position: relative;
}
.cid-uM25v304PU .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uM25v304PU .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uM25v304PU .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uM25v304PU .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uM25Ks4BOC {
  z-index: 1000;
  width: 100%;
}
.cid-uM25Ks4BOC nav.navbar {
  position: fixed;
}
.cid-uM25Ks4BOC .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-uM25Ks4BOC .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uM25Ks4BOC .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uM25Ks4BOC .dropdown-item:hover,
.cid-uM25Ks4BOC .dropdown-item:focus {
  background: #3ab752 !important;
  color: white !important;
}
.cid-uM25Ks4BOC .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uM25Ks4BOC .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uM25Ks4BOC .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uM25Ks4BOC .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uM25Ks4BOC .nav-link {
  position: relative;
}
.cid-uM25Ks4BOC .container {
  display: flex;
  margin: auto;
}
.cid-uM25Ks4BOC .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uM25Ks4BOC .dropdown-menu,
.cid-uM25Ks4BOC .navbar.opened {
  background: #0976aa !important;
}
.cid-uM25Ks4BOC .nav-item:focus,
.cid-uM25Ks4BOC .nav-link:focus {
  outline: none;
}
.cid-uM25Ks4BOC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uM25Ks4BOC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uM25Ks4BOC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uM25Ks4BOC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uM25Ks4BOC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uM25Ks4BOC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uM25Ks4BOC .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #0976aa;
}
.cid-uM25Ks4BOC .navbar.opened {
  transition: all 0.3s;
}
.cid-uM25Ks4BOC .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uM25Ks4BOC .navbar .navbar-logo img {
  width: auto;
}
.cid-uM25Ks4BOC .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uM25Ks4BOC .navbar.collapsed {
  justify-content: center;
}
.cid-uM25Ks4BOC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uM25Ks4BOC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uM25Ks4BOC .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.9rem);
  }
}
.cid-uM25Ks4BOC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uM25Ks4BOC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uM25Ks4BOC .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-uM25Ks4BOC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uM25Ks4BOC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uM25Ks4BOC .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uM25Ks4BOC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uM25Ks4BOC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uM25Ks4BOC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uM25Ks4BOC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uM25Ks4BOC .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-uM25Ks4BOC .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uM25Ks4BOC .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uM25Ks4BOC .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uM25Ks4BOC .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uM25Ks4BOC .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uM25Ks4BOC .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uM25Ks4BOC .navbar.navbar-short {
  min-height: 60px;
}
.cid-uM25Ks4BOC .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uM25Ks4BOC .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uM25Ks4BOC .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-uM25Ks4BOC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uM25Ks4BOC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uM25Ks4BOC .dropdown-item.active,
.cid-uM25Ks4BOC .dropdown-item:active {
  background-color: transparent;
}
.cid-uM25Ks4BOC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uM25Ks4BOC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uM25Ks4BOC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uM25Ks4BOC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0976aa;
}
.cid-uM25Ks4BOC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uM25Ks4BOC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uM25Ks4BOC ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uM25Ks4BOC .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uM25Ks4BOC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uM25Ks4BOC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uM25Ks4BOC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uM25Ks4BOC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uM25Ks4BOC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uM25Ks4BOC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uM25Ks4BOC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uM25Ks4BOC nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uM25Ks4BOC nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uM25Ks4BOC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uM25Ks4BOC .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uM25Ks4BOC a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uM25Ks4BOC .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-uM25Ks4BOC .navbar {
    height: 70px;
  }
  .cid-uM25Ks4BOC .navbar.opened {
    height: auto;
  }
  .cid-uM25Ks4BOC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uM25KsBpDu {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uM25KsBpDu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uM25KsBpDu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uM25KsBpDu H3 {
  text-align: center;
}
.cid-uM25KsBpDu .mbr-text,
.cid-uM25KsBpDu .mbr-section-btn {
  text-align: center;
}
.cid-uM25KsY068 {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/fondo-3.jpg-612x448.jpg");
}
.cid-uM25KsY068 .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uM25KsY068 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uM25KsY068 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uM25KsY068 .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uM25KsY068 .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uM25KsY068 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uM25KsY068 .mbr-text,
.cid-uM25KsY068 .mbr-section-btn {
  color: #fafafa;
  text-align: center;
}
.cid-uM25Ktldxd {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #005b98;
}
.cid-uM25Ktldxd img,
.cid-uM25Ktldxd .item-img {
  width: 100%;
}
.cid-uM25Ktldxd .item:focus,
.cid-uM25Ktldxd span:focus {
  outline: none;
}
.cid-uM25Ktldxd .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uM25Ktldxd .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #0976aa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uM25Ktldxd .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uM25Ktldxd .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uM25Ktldxd .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uM25Ktldxd .mbr-section-title {
  color: #fafafa;
}
.cid-uM25Ktldxd .mbr-text,
.cid-uM25Ktldxd .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uM25Ktldxd .item-title {
  text-align: left;
  color: #bbbbbb;
}
.cid-uM25Ktldxd .item-subtitle {
  text-align: left;
}
.cid-uM25Ku2UZJ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/construccionesjp.jpg-2000x1255.jpg");
}
.cid-uM25Ku2UZJ img,
.cid-uM25Ku2UZJ .item-img {
  width: 100%;
  height: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-uM25Ku2UZJ .item:focus,
.cid-uM25Ku2UZJ span:focus {
  outline: none;
}
.cid-uM25Ku2UZJ .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uM25Ku2UZJ .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uM25Ku2UZJ .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uM25Ku2UZJ .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uM25Ku2UZJ .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uM25Ku2UZJ .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uM25Ku2UZJ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uM25Ku2UZJ .mbr-section-title {
  color: #141619;
}
.cid-uM25Ku2UZJ .mbr-text,
.cid-uM25Ku2UZJ .mbr-section-btn {
  text-align: left;
}
.cid-uM25Ku2UZJ .item-title {
  text-align: center;
}
.cid-uM25Ku2UZJ .item-subtitle {
  text-align: center;
}
.cid-uM25KuTDE7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bbbbbb;
}
.cid-uM25KuTDE7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uM25KuTDE7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uM25KuTDE7 .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-uM25KuTDE7 .currentcost {
  color: #232323;
}
.cid-uM25KuTDE7 .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uM25KuTDE7 .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uM25KuTDE7 .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uM25KuTDE7 .text-box {
    padding: 1rem;
  }
}
.cid-uM25KuTDE7 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uM25Kvmgmr {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uM25Kvmgmr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uM25Kvmgmr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uM25Kvmgmr .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uM25Kvmgmr .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-uM25Kvmgmr .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uM25Kvmgmr .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uM25Kvmgmr .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uM25Kvmgmr .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uM25Kvmgmr .carousel-control,
.cid-uM25Kvmgmr .close {
  background: #1b1b1b;
}
.cid-uM25Kvmgmr .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uM25Kvmgmr .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uM25Kvmgmr .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uM25Kvmgmr .carousel-control-next span {
  margin-left: 5px;
}
.cid-uM25Kvmgmr .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uM25Kvmgmr .close::before {
  content: '\e91a';
}
.cid-uM25Kvmgmr .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uM25Kvmgmr .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uM25Kvmgmr .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uM25Kvmgmr .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uM25Kvmgmr .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uM25Kvmgmr .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uM25Kvmgmr .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uM25Kvmgmr .carousel-indicators li.active,
.cid-uM25Kvmgmr .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uM25Kvmgmr .carousel-indicators li::after,
.cid-uM25Kvmgmr .carousel-indicators li::before {
  content: none;
}
.cid-uM25Kvmgmr .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uM25Kvmgmr .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uM25Kvmgmr .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uM25Kvmgmr .carousel-indicators {
    display: none;
  }
}
.cid-uM25Kvmgmr .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uM25Kvmgmr .carousel-inner > .active {
  display: block;
}
.cid-uM25Kvmgmr .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uM25Kvmgmr .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uM25Kvmgmr .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uM25Kvmgmr .carousel-control,
  .cid-uM25Kvmgmr .carousel-indicators,
  .cid-uM25Kvmgmr .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uM25Kvmgmr .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uM25Kvmgmr .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uM25Kvmgmr .carousel-indicators .active,
.cid-uM25Kvmgmr .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uM25Kvmgmr .carousel-indicators .active {
  background: #fff;
}
.cid-uM25Kvmgmr .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uM25Kvmgmr .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uM25Kvmgmr .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uM25Kvmgmr .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uM25Kvmgmr .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uM25Kvmgmr .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uM25Kvmgmr .carousel {
  width: 100%;
}
.cid-uM25Kvmgmr .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uM25Kvmgmr .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uM25Kvmgmr .modal.fade .modal-dialog,
.cid-uM25Kvmgmr .modal.in .modal-dialog {
  transform: none;
}
.cid-uM25Kvmgmr .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uM25Kvmgmr H6 {
  text-align: center;
}
.cid-uM25KxCFka {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #0976aa;
}
.cid-uM25KxCFka img {
  width: 120px;
  margin: auto;
}
.cid-uM25KxCFka .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uM25KxCFka .card {
    max-width: 12.5%;
  }
}
.cid-uM25KxCFka .mbr-section-subtitle {
  color: #dbdbdb;
}
.cid-uM25KxCFka .mbr-section-title {
  color: #ffffff;
}
.cid-uM25Ky89wA {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-uM25Ky89wA .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uM25Ky89wA form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uM25Ky89wA form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uM25Ky89wA form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uM25Ky89wA .mbr-section-title {
  color: #000000;
}
.cid-uM25Ky89wA .mbr-section-subtitle {
  color: #000000;
}
.cid-uM25KyyuV2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uM25KyyuV2 .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uM25KyyuV2 .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-uM25KyyuV2 .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uM25KyyuV2 .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uM25KyyuV2 .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #3ab752;
}
.cid-uM25Kz6cEm {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uM25Kz6cEm .google-map {
  height: 30rem;
  position: relative;
}
.cid-uM25Kz6cEm .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uM25Kz6cEm .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uM25Kz6cEm .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uM25Kz6cEm .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uM25VK3BCE {
  z-index: 1000;
  width: 100%;
}
.cid-uM25VK3BCE nav.navbar {
  position: fixed;
}
.cid-uM25VK3BCE .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-uM25VK3BCE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uM25VK3BCE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uM25VK3BCE .dropdown-item:hover,
.cid-uM25VK3BCE .dropdown-item:focus {
  background: #3ab752 !important;
  color: white !important;
}
.cid-uM25VK3BCE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uM25VK3BCE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uM25VK3BCE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uM25VK3BCE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uM25VK3BCE .nav-link {
  position: relative;
}
.cid-uM25VK3BCE .container {
  display: flex;
  margin: auto;
}
.cid-uM25VK3BCE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uM25VK3BCE .dropdown-menu,
.cid-uM25VK3BCE .navbar.opened {
  background: #0976aa !important;
}
.cid-uM25VK3BCE .nav-item:focus,
.cid-uM25VK3BCE .nav-link:focus {
  outline: none;
}
.cid-uM25VK3BCE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uM25VK3BCE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uM25VK3BCE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uM25VK3BCE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uM25VK3BCE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uM25VK3BCE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uM25VK3BCE .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #0976aa;
}
.cid-uM25VK3BCE .navbar.opened {
  transition: all 0.3s;
}
.cid-uM25VK3BCE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uM25VK3BCE .navbar .navbar-logo img {
  width: auto;
}
.cid-uM25VK3BCE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uM25VK3BCE .navbar.collapsed {
  justify-content: center;
}
.cid-uM25VK3BCE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uM25VK3BCE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uM25VK3BCE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.9rem);
  }
}
.cid-uM25VK3BCE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uM25VK3BCE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uM25VK3BCE .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-uM25VK3BCE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uM25VK3BCE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uM25VK3BCE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uM25VK3BCE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uM25VK3BCE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uM25VK3BCE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uM25VK3BCE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uM25VK3BCE .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-uM25VK3BCE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uM25VK3BCE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uM25VK3BCE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uM25VK3BCE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uM25VK3BCE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uM25VK3BCE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uM25VK3BCE .navbar.navbar-short {
  min-height: 60px;
}
.cid-uM25VK3BCE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uM25VK3BCE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uM25VK3BCE .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-uM25VK3BCE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uM25VK3BCE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uM25VK3BCE .dropdown-item.active,
.cid-uM25VK3BCE .dropdown-item:active {
  background-color: transparent;
}
.cid-uM25VK3BCE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uM25VK3BCE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uM25VK3BCE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uM25VK3BCE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0976aa;
}
.cid-uM25VK3BCE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uM25VK3BCE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uM25VK3BCE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uM25VK3BCE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uM25VK3BCE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uM25VK3BCE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uM25VK3BCE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uM25VK3BCE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uM25VK3BCE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uM25VK3BCE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uM25VK3BCE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uM25VK3BCE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uM25VK3BCE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uM25VK3BCE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uM25VK3BCE .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uM25VK3BCE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uM25VK3BCE .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-uM25VK3BCE .navbar {
    height: 70px;
  }
  .cid-uM25VK3BCE .navbar.opened {
    height: auto;
  }
  .cid-uM25VK3BCE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uM25VKz1bO {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uM25VKz1bO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uM25VKz1bO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uM25VKz1bO H3 {
  text-align: center;
}
.cid-uM25VKz1bO .mbr-text,
.cid-uM25VKz1bO .mbr-section-btn {
  text-align: center;
}
.cid-uM25VKSylG {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/fondo-3.jpg-612x448.jpg");
}
.cid-uM25VKSylG .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uM25VKSylG .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uM25VKSylG .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uM25VKSylG .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uM25VKSylG .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uM25VKSylG .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uM25VKSylG .mbr-text,
.cid-uM25VKSylG .mbr-section-btn {
  color: #fafafa;
  text-align: center;
}
.cid-uM25VLiklE {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #005b98;
}
.cid-uM25VLiklE img,
.cid-uM25VLiklE .item-img {
  width: 100%;
}
.cid-uM25VLiklE .item:focus,
.cid-uM25VLiklE span:focus {
  outline: none;
}
.cid-uM25VLiklE .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uM25VLiklE .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #0976aa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uM25VLiklE .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uM25VLiklE .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uM25VLiklE .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uM25VLiklE .mbr-section-title {
  color: #fafafa;
}
.cid-uM25VLiklE .mbr-text,
.cid-uM25VLiklE .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uM25VLiklE .item-title {
  text-align: left;
  color: #bbbbbb;
}
.cid-uM25VLiklE .item-subtitle {
  text-align: left;
}
.cid-uM25VM1TJV {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/construccionesjp.jpg-2000x1255.jpg");
}
.cid-uM25VM1TJV img,
.cid-uM25VM1TJV .item-img {
  width: 100%;
  height: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-uM25VM1TJV .item:focus,
.cid-uM25VM1TJV span:focus {
  outline: none;
}
.cid-uM25VM1TJV .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uM25VM1TJV .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uM25VM1TJV .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uM25VM1TJV .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uM25VM1TJV .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uM25VM1TJV .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uM25VM1TJV .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uM25VM1TJV .mbr-section-title {
  color: #141619;
}
.cid-uM25VM1TJV .mbr-text,
.cid-uM25VM1TJV .mbr-section-btn {
  text-align: left;
}
.cid-uM25VM1TJV .item-title {
  text-align: center;
}
.cid-uM25VM1TJV .item-subtitle {
  text-align: center;
}
.cid-uM25VMSAcV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bbbbbb;
}
.cid-uM25VMSAcV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uM25VMSAcV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uM25VMSAcV .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-uM25VMSAcV .currentcost {
  color: #232323;
}
.cid-uM25VMSAcV .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uM25VMSAcV .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uM25VMSAcV .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uM25VMSAcV .text-box {
    padding: 1rem;
  }
}
.cid-uM25VMSAcV .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uM25VNhrUJ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uM25VNhrUJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uM25VNhrUJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uM25VNhrUJ .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uM25VNhrUJ .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-uM25VNhrUJ .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uM25VNhrUJ .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uM25VNhrUJ .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uM25VNhrUJ .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uM25VNhrUJ .carousel-control,
.cid-uM25VNhrUJ .close {
  background: #1b1b1b;
}
.cid-uM25VNhrUJ .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uM25VNhrUJ .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uM25VNhrUJ .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uM25VNhrUJ .carousel-control-next span {
  margin-left: 5px;
}
.cid-uM25VNhrUJ .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uM25VNhrUJ .close::before {
  content: '\e91a';
}
.cid-uM25VNhrUJ .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uM25VNhrUJ .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uM25VNhrUJ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uM25VNhrUJ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uM25VNhrUJ .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uM25VNhrUJ .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uM25VNhrUJ .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uM25VNhrUJ .carousel-indicators li.active,
.cid-uM25VNhrUJ .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uM25VNhrUJ .carousel-indicators li::after,
.cid-uM25VNhrUJ .carousel-indicators li::before {
  content: none;
}
.cid-uM25VNhrUJ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uM25VNhrUJ .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uM25VNhrUJ .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uM25VNhrUJ .carousel-indicators {
    display: none;
  }
}
.cid-uM25VNhrUJ .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uM25VNhrUJ .carousel-inner > .active {
  display: block;
}
.cid-uM25VNhrUJ .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uM25VNhrUJ .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uM25VNhrUJ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uM25VNhrUJ .carousel-control,
  .cid-uM25VNhrUJ .carousel-indicators,
  .cid-uM25VNhrUJ .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uM25VNhrUJ .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uM25VNhrUJ .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uM25VNhrUJ .carousel-indicators .active,
.cid-uM25VNhrUJ .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uM25VNhrUJ .carousel-indicators .active {
  background: #fff;
}
.cid-uM25VNhrUJ .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uM25VNhrUJ .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uM25VNhrUJ .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uM25VNhrUJ .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uM25VNhrUJ .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uM25VNhrUJ .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uM25VNhrUJ .carousel {
  width: 100%;
}
.cid-uM25VNhrUJ .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uM25VNhrUJ .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uM25VNhrUJ .modal.fade .modal-dialog,
.cid-uM25VNhrUJ .modal.in .modal-dialog {
  transform: none;
}
.cid-uM25VNhrUJ .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uM25VNhrUJ H6 {
  text-align: center;
}
.cid-uM25VOUg8i {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #0976aa;
}
.cid-uM25VOUg8i img {
  width: 120px;
  margin: auto;
}
.cid-uM25VOUg8i .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uM25VOUg8i .card {
    max-width: 12.5%;
  }
}
.cid-uM25VOUg8i .mbr-section-subtitle {
  color: #dbdbdb;
}
.cid-uM25VOUg8i .mbr-section-title {
  color: #ffffff;
}
.cid-uM25VPpilG {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-uM25VPpilG .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uM25VPpilG form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uM25VPpilG form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uM25VPpilG form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uM25VPpilG .mbr-section-title {
  color: #000000;
}
.cid-uM25VPpilG .mbr-section-subtitle {
  color: #000000;
}
.cid-uM25VPR4cy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uM25VPR4cy .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uM25VPR4cy .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-uM25VPR4cy .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uM25VPR4cy .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uM25VPR4cy .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #3ab752;
}
.cid-uM25VQNR9B {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uM25VQNR9B .google-map {
  height: 30rem;
  position: relative;
}
.cid-uM25VQNR9B .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uM25VQNR9B .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uM25VQNR9B .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uM25VQNR9B .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uM260BozKp {
  z-index: 1000;
  width: 100%;
}
.cid-uM260BozKp nav.navbar {
  position: fixed;
}
.cid-uM260BozKp .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-uM260BozKp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uM260BozKp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uM260BozKp .dropdown-item:hover,
.cid-uM260BozKp .dropdown-item:focus {
  background: #3ab752 !important;
  color: white !important;
}
.cid-uM260BozKp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uM260BozKp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uM260BozKp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uM260BozKp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uM260BozKp .nav-link {
  position: relative;
}
.cid-uM260BozKp .container {
  display: flex;
  margin: auto;
}
.cid-uM260BozKp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uM260BozKp .dropdown-menu,
.cid-uM260BozKp .navbar.opened {
  background: #0976aa !important;
}
.cid-uM260BozKp .nav-item:focus,
.cid-uM260BozKp .nav-link:focus {
  outline: none;
}
.cid-uM260BozKp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uM260BozKp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uM260BozKp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uM260BozKp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uM260BozKp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uM260BozKp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uM260BozKp .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #0976aa;
}
.cid-uM260BozKp .navbar.opened {
  transition: all 0.3s;
}
.cid-uM260BozKp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uM260BozKp .navbar .navbar-logo img {
  width: auto;
}
.cid-uM260BozKp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uM260BozKp .navbar.collapsed {
  justify-content: center;
}
.cid-uM260BozKp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uM260BozKp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uM260BozKp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.9rem);
  }
}
.cid-uM260BozKp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uM260BozKp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uM260BozKp .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-uM260BozKp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uM260BozKp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uM260BozKp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uM260BozKp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uM260BozKp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uM260BozKp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uM260BozKp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uM260BozKp .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-uM260BozKp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uM260BozKp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uM260BozKp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uM260BozKp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uM260BozKp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uM260BozKp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uM260BozKp .navbar.navbar-short {
  min-height: 60px;
}
.cid-uM260BozKp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uM260BozKp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uM260BozKp .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-uM260BozKp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uM260BozKp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uM260BozKp .dropdown-item.active,
.cid-uM260BozKp .dropdown-item:active {
  background-color: transparent;
}
.cid-uM260BozKp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uM260BozKp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uM260BozKp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uM260BozKp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0976aa;
}
.cid-uM260BozKp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uM260BozKp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uM260BozKp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uM260BozKp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uM260BozKp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uM260BozKp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uM260BozKp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uM260BozKp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uM260BozKp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uM260BozKp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uM260BozKp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uM260BozKp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uM260BozKp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uM260BozKp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uM260BozKp .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uM260BozKp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uM260BozKp .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-uM260BozKp .navbar {
    height: 70px;
  }
  .cid-uM260BozKp .navbar.opened {
    height: auto;
  }
  .cid-uM260BozKp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uM260BRQrL {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uM260BRQrL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uM260BRQrL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uM260BRQrL H3 {
  text-align: center;
}
.cid-uM260BRQrL .mbr-text,
.cid-uM260BRQrL .mbr-section-btn {
  text-align: center;
}
.cid-uM260CbtS2 {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/fondo-3.jpg-612x448.jpg");
}
.cid-uM260CbtS2 .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uM260CbtS2 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uM260CbtS2 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uM260CbtS2 .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uM260CbtS2 .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uM260CbtS2 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uM260CbtS2 .mbr-text,
.cid-uM260CbtS2 .mbr-section-btn {
  color: #fafafa;
  text-align: center;
}
.cid-uM260CDL3T {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #005b98;
}
.cid-uM260CDL3T img,
.cid-uM260CDL3T .item-img {
  width: 100%;
}
.cid-uM260CDL3T .item:focus,
.cid-uM260CDL3T span:focus {
  outline: none;
}
.cid-uM260CDL3T .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uM260CDL3T .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #0976aa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uM260CDL3T .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uM260CDL3T .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uM260CDL3T .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uM260CDL3T .mbr-section-title {
  color: #fafafa;
}
.cid-uM260CDL3T .mbr-text,
.cid-uM260CDL3T .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uM260CDL3T .item-title {
  text-align: left;
  color: #bbbbbb;
}
.cid-uM260CDL3T .item-subtitle {
  text-align: left;
}
.cid-uM260DlVDr {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/construccionesjp.jpg-2000x1255.jpg");
}
.cid-uM260DlVDr img,
.cid-uM260DlVDr .item-img {
  width: 100%;
  height: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-uM260DlVDr .item:focus,
.cid-uM260DlVDr span:focus {
  outline: none;
}
.cid-uM260DlVDr .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uM260DlVDr .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uM260DlVDr .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uM260DlVDr .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uM260DlVDr .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uM260DlVDr .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uM260DlVDr .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uM260DlVDr .mbr-section-title {
  color: #141619;
}
.cid-uM260DlVDr .mbr-text,
.cid-uM260DlVDr .mbr-section-btn {
  text-align: left;
}
.cid-uM260DlVDr .item-title {
  text-align: center;
}
.cid-uM260DlVDr .item-subtitle {
  text-align: center;
}
.cid-uM260EbAtY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bbbbbb;
}
.cid-uM260EbAtY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uM260EbAtY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uM260EbAtY .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-uM260EbAtY .currentcost {
  color: #232323;
}
.cid-uM260EbAtY .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uM260EbAtY .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uM260EbAtY .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uM260EbAtY .text-box {
    padding: 1rem;
  }
}
.cid-uM260EbAtY .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uM260EEEo8 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uM260EEEo8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uM260EEEo8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uM260EEEo8 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uM260EEEo8 .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-uM260EEEo8 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uM260EEEo8 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uM260EEEo8 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uM260EEEo8 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uM260EEEo8 .carousel-control,
.cid-uM260EEEo8 .close {
  background: #1b1b1b;
}
.cid-uM260EEEo8 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uM260EEEo8 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uM260EEEo8 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uM260EEEo8 .carousel-control-next span {
  margin-left: 5px;
}
.cid-uM260EEEo8 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uM260EEEo8 .close::before {
  content: '\e91a';
}
.cid-uM260EEEo8 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uM260EEEo8 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uM260EEEo8 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uM260EEEo8 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uM260EEEo8 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uM260EEEo8 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uM260EEEo8 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uM260EEEo8 .carousel-indicators li.active,
.cid-uM260EEEo8 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uM260EEEo8 .carousel-indicators li::after,
.cid-uM260EEEo8 .carousel-indicators li::before {
  content: none;
}
.cid-uM260EEEo8 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uM260EEEo8 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uM260EEEo8 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uM260EEEo8 .carousel-indicators {
    display: none;
  }
}
.cid-uM260EEEo8 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uM260EEEo8 .carousel-inner > .active {
  display: block;
}
.cid-uM260EEEo8 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uM260EEEo8 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uM260EEEo8 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uM260EEEo8 .carousel-control,
  .cid-uM260EEEo8 .carousel-indicators,
  .cid-uM260EEEo8 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uM260EEEo8 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uM260EEEo8 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uM260EEEo8 .carousel-indicators .active,
.cid-uM260EEEo8 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uM260EEEo8 .carousel-indicators .active {
  background: #fff;
}
.cid-uM260EEEo8 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uM260EEEo8 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uM260EEEo8 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uM260EEEo8 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uM260EEEo8 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uM260EEEo8 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uM260EEEo8 .carousel {
  width: 100%;
}
.cid-uM260EEEo8 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uM260EEEo8 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uM260EEEo8 .modal.fade .modal-dialog,
.cid-uM260EEEo8 .modal.in .modal-dialog {
  transform: none;
}
.cid-uM260EEEo8 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uM260EEEo8 H6 {
  text-align: center;
}
.cid-uM260GkIZi {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #0976aa;
}
.cid-uM260GkIZi img {
  width: 120px;
  margin: auto;
}
.cid-uM260GkIZi .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uM260GkIZi .card {
    max-width: 12.5%;
  }
}
.cid-uM260GkIZi .mbr-section-subtitle {
  color: #dbdbdb;
}
.cid-uM260GkIZi .mbr-section-title {
  color: #ffffff;
}
.cid-uM260H6kWd {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-uM260H6kWd .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uM260H6kWd form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uM260H6kWd form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uM260H6kWd form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uM260H6kWd .mbr-section-title {
  color: #000000;
}
.cid-uM260H6kWd .mbr-section-subtitle {
  color: #000000;
}
.cid-uM260IkM96 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uM260IkM96 .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uM260IkM96 .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-uM260IkM96 .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uM260IkM96 .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uM260IkM96 .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #3ab752;
}
.cid-uM260Jx3Sx {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uM260Jx3Sx .google-map {
  height: 30rem;
  position: relative;
}
.cid-uM260Jx3Sx .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uM260Jx3Sx .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uM260Jx3Sx .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uM260Jx3Sx .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uM26aAjWNT {
  z-index: 1000;
  width: 100%;
}
.cid-uM26aAjWNT nav.navbar {
  position: fixed;
}
.cid-uM26aAjWNT .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-uM26aAjWNT .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uM26aAjWNT .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uM26aAjWNT .dropdown-item:hover,
.cid-uM26aAjWNT .dropdown-item:focus {
  background: #3ab752 !important;
  color: white !important;
}
.cid-uM26aAjWNT .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uM26aAjWNT .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uM26aAjWNT .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uM26aAjWNT .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uM26aAjWNT .nav-link {
  position: relative;
}
.cid-uM26aAjWNT .container {
  display: flex;
  margin: auto;
}
.cid-uM26aAjWNT .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uM26aAjWNT .dropdown-menu,
.cid-uM26aAjWNT .navbar.opened {
  background: #0976aa !important;
}
.cid-uM26aAjWNT .nav-item:focus,
.cid-uM26aAjWNT .nav-link:focus {
  outline: none;
}
.cid-uM26aAjWNT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uM26aAjWNT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uM26aAjWNT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uM26aAjWNT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uM26aAjWNT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uM26aAjWNT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uM26aAjWNT .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #0976aa;
}
.cid-uM26aAjWNT .navbar.opened {
  transition: all 0.3s;
}
.cid-uM26aAjWNT .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uM26aAjWNT .navbar .navbar-logo img {
  width: auto;
}
.cid-uM26aAjWNT .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uM26aAjWNT .navbar.collapsed {
  justify-content: center;
}
.cid-uM26aAjWNT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uM26aAjWNT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uM26aAjWNT .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.9rem);
  }
}
.cid-uM26aAjWNT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uM26aAjWNT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uM26aAjWNT .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-uM26aAjWNT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uM26aAjWNT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uM26aAjWNT .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uM26aAjWNT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uM26aAjWNT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uM26aAjWNT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uM26aAjWNT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uM26aAjWNT .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-uM26aAjWNT .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uM26aAjWNT .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uM26aAjWNT .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uM26aAjWNT .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uM26aAjWNT .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uM26aAjWNT .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uM26aAjWNT .navbar.navbar-short {
  min-height: 60px;
}
.cid-uM26aAjWNT .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uM26aAjWNT .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uM26aAjWNT .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-uM26aAjWNT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uM26aAjWNT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uM26aAjWNT .dropdown-item.active,
.cid-uM26aAjWNT .dropdown-item:active {
  background-color: transparent;
}
.cid-uM26aAjWNT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uM26aAjWNT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uM26aAjWNT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uM26aAjWNT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0976aa;
}
.cid-uM26aAjWNT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uM26aAjWNT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uM26aAjWNT ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uM26aAjWNT .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uM26aAjWNT button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uM26aAjWNT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uM26aAjWNT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uM26aAjWNT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uM26aAjWNT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uM26aAjWNT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uM26aAjWNT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uM26aAjWNT nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uM26aAjWNT nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uM26aAjWNT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uM26aAjWNT .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uM26aAjWNT a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uM26aAjWNT .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-uM26aAjWNT .navbar {
    height: 70px;
  }
  .cid-uM26aAjWNT .navbar.opened {
    height: auto;
  }
  .cid-uM26aAjWNT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uM26aAQ05b {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uM26aAQ05b .mbr-fallback-image.disabled {
  display: none;
}
.cid-uM26aAQ05b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uM26aAQ05b H3 {
  text-align: center;
}
.cid-uM26aAQ05b .mbr-text,
.cid-uM26aAQ05b .mbr-section-btn {
  text-align: center;
}
.cid-uM26aBfqbE {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/fondo-3.jpg-612x448.jpg");
}
.cid-uM26aBfqbE .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uM26aBfqbE .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uM26aBfqbE .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uM26aBfqbE .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uM26aBfqbE .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uM26aBfqbE .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uM26aBfqbE .mbr-text,
.cid-uM26aBfqbE .mbr-section-btn {
  color: #fafafa;
  text-align: center;
}
.cid-uM26aBNNbn {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #005b98;
}
.cid-uM26aBNNbn img,
.cid-uM26aBNNbn .item-img {
  width: 100%;
}
.cid-uM26aBNNbn .item:focus,
.cid-uM26aBNNbn span:focus {
  outline: none;
}
.cid-uM26aBNNbn .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uM26aBNNbn .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #0976aa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uM26aBNNbn .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uM26aBNNbn .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uM26aBNNbn .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uM26aBNNbn .mbr-section-title {
  color: #fafafa;
}
.cid-uM26aBNNbn .mbr-text,
.cid-uM26aBNNbn .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uM26aBNNbn .item-title {
  text-align: left;
  color: #bbbbbb;
}
.cid-uM26aBNNbn .item-subtitle {
  text-align: left;
}
.cid-uM26aCsbzG {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/construccionesjp.jpg-2000x1255.jpg");
}
.cid-uM26aCsbzG img,
.cid-uM26aCsbzG .item-img {
  width: 100%;
  height: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-uM26aCsbzG .item:focus,
.cid-uM26aCsbzG span:focus {
  outline: none;
}
.cid-uM26aCsbzG .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uM26aCsbzG .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uM26aCsbzG .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uM26aCsbzG .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uM26aCsbzG .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uM26aCsbzG .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uM26aCsbzG .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uM26aCsbzG .mbr-section-title {
  color: #141619;
}
.cid-uM26aCsbzG .mbr-text,
.cid-uM26aCsbzG .mbr-section-btn {
  text-align: left;
}
.cid-uM26aCsbzG .item-title {
  text-align: center;
}
.cid-uM26aCsbzG .item-subtitle {
  text-align: center;
}
.cid-uM26aDvpgQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bbbbbb;
}
.cid-uM26aDvpgQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uM26aDvpgQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uM26aDvpgQ .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-uM26aDvpgQ .currentcost {
  color: #232323;
}
.cid-uM26aDvpgQ .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uM26aDvpgQ .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uM26aDvpgQ .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uM26aDvpgQ .text-box {
    padding: 1rem;
  }
}
.cid-uM26aDvpgQ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uM26aDYNYE {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uM26aDYNYE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uM26aDYNYE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uM26aDYNYE .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uM26aDYNYE .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-uM26aDYNYE .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uM26aDYNYE .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uM26aDYNYE .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uM26aDYNYE .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uM26aDYNYE .carousel-control,
.cid-uM26aDYNYE .close {
  background: #1b1b1b;
}
.cid-uM26aDYNYE .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uM26aDYNYE .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uM26aDYNYE .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uM26aDYNYE .carousel-control-next span {
  margin-left: 5px;
}
.cid-uM26aDYNYE .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uM26aDYNYE .close::before {
  content: '\e91a';
}
.cid-uM26aDYNYE .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uM26aDYNYE .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uM26aDYNYE .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uM26aDYNYE .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uM26aDYNYE .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uM26aDYNYE .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uM26aDYNYE .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uM26aDYNYE .carousel-indicators li.active,
.cid-uM26aDYNYE .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uM26aDYNYE .carousel-indicators li::after,
.cid-uM26aDYNYE .carousel-indicators li::before {
  content: none;
}
.cid-uM26aDYNYE .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uM26aDYNYE .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uM26aDYNYE .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uM26aDYNYE .carousel-indicators {
    display: none;
  }
}
.cid-uM26aDYNYE .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uM26aDYNYE .carousel-inner > .active {
  display: block;
}
.cid-uM26aDYNYE .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uM26aDYNYE .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uM26aDYNYE .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uM26aDYNYE .carousel-control,
  .cid-uM26aDYNYE .carousel-indicators,
  .cid-uM26aDYNYE .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uM26aDYNYE .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uM26aDYNYE .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uM26aDYNYE .carousel-indicators .active,
.cid-uM26aDYNYE .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uM26aDYNYE .carousel-indicators .active {
  background: #fff;
}
.cid-uM26aDYNYE .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uM26aDYNYE .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uM26aDYNYE .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uM26aDYNYE .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uM26aDYNYE .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uM26aDYNYE .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uM26aDYNYE .carousel {
  width: 100%;
}
.cid-uM26aDYNYE .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uM26aDYNYE .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uM26aDYNYE .modal.fade .modal-dialog,
.cid-uM26aDYNYE .modal.in .modal-dialog {
  transform: none;
}
.cid-uM26aDYNYE .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uM26aDYNYE H6 {
  text-align: center;
}
.cid-uM26aFExj1 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #0976aa;
}
.cid-uM26aFExj1 img {
  width: 120px;
  margin: auto;
}
.cid-uM26aFExj1 .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uM26aFExj1 .card {
    max-width: 12.5%;
  }
}
.cid-uM26aFExj1 .mbr-section-subtitle {
  color: #dbdbdb;
}
.cid-uM26aFExj1 .mbr-section-title {
  color: #ffffff;
}
.cid-uM26aGdh2L {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-uM26aGdh2L .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uM26aGdh2L form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uM26aGdh2L form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uM26aGdh2L form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uM26aGdh2L .mbr-section-title {
  color: #000000;
}
.cid-uM26aGdh2L .mbr-section-subtitle {
  color: #000000;
}
.cid-uM26aGE727 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uM26aGE727 .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uM26aGE727 .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-uM26aGE727 .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uM26aGE727 .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uM26aGE727 .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #3ab752;
}
.cid-uM26aHd2OT {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uM26aHd2OT .google-map {
  height: 30rem;
  position: relative;
}
.cid-uM26aHd2OT .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uM26aHd2OT .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uM26aHd2OT .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uM26aHd2OT .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uM26fWSKUe {
  z-index: 1000;
  width: 100%;
}
.cid-uM26fWSKUe nav.navbar {
  position: fixed;
}
.cid-uM26fWSKUe .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-uM26fWSKUe .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uM26fWSKUe .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uM26fWSKUe .dropdown-item:hover,
.cid-uM26fWSKUe .dropdown-item:focus {
  background: #3ab752 !important;
  color: white !important;
}
.cid-uM26fWSKUe .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uM26fWSKUe .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uM26fWSKUe .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uM26fWSKUe .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uM26fWSKUe .nav-link {
  position: relative;
}
.cid-uM26fWSKUe .container {
  display: flex;
  margin: auto;
}
.cid-uM26fWSKUe .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uM26fWSKUe .dropdown-menu,
.cid-uM26fWSKUe .navbar.opened {
  background: #0976aa !important;
}
.cid-uM26fWSKUe .nav-item:focus,
.cid-uM26fWSKUe .nav-link:focus {
  outline: none;
}
.cid-uM26fWSKUe .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uM26fWSKUe .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uM26fWSKUe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uM26fWSKUe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uM26fWSKUe .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uM26fWSKUe .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uM26fWSKUe .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #0976aa;
}
.cid-uM26fWSKUe .navbar.opened {
  transition: all 0.3s;
}
.cid-uM26fWSKUe .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uM26fWSKUe .navbar .navbar-logo img {
  width: auto;
}
.cid-uM26fWSKUe .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uM26fWSKUe .navbar.collapsed {
  justify-content: center;
}
.cid-uM26fWSKUe .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uM26fWSKUe .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uM26fWSKUe .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.9rem);
  }
}
.cid-uM26fWSKUe .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uM26fWSKUe .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uM26fWSKUe .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-uM26fWSKUe .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uM26fWSKUe .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uM26fWSKUe .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uM26fWSKUe .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uM26fWSKUe .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uM26fWSKUe .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uM26fWSKUe .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uM26fWSKUe .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-uM26fWSKUe .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uM26fWSKUe .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uM26fWSKUe .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uM26fWSKUe .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uM26fWSKUe .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uM26fWSKUe .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uM26fWSKUe .navbar.navbar-short {
  min-height: 60px;
}
.cid-uM26fWSKUe .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uM26fWSKUe .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uM26fWSKUe .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-uM26fWSKUe .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uM26fWSKUe .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uM26fWSKUe .dropdown-item.active,
.cid-uM26fWSKUe .dropdown-item:active {
  background-color: transparent;
}
.cid-uM26fWSKUe .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uM26fWSKUe .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uM26fWSKUe .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uM26fWSKUe .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0976aa;
}
.cid-uM26fWSKUe .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uM26fWSKUe .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uM26fWSKUe ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uM26fWSKUe .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uM26fWSKUe button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uM26fWSKUe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uM26fWSKUe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uM26fWSKUe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uM26fWSKUe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uM26fWSKUe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uM26fWSKUe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uM26fWSKUe nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uM26fWSKUe nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uM26fWSKUe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uM26fWSKUe .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uM26fWSKUe a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uM26fWSKUe .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-uM26fWSKUe .navbar {
    height: 70px;
  }
  .cid-uM26fWSKUe .navbar.opened {
    height: auto;
  }
  .cid-uM26fWSKUe .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uM26fXu22w {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uM26fXu22w .mbr-fallback-image.disabled {
  display: none;
}
.cid-uM26fXu22w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uM26fXu22w H3 {
  text-align: center;
}
.cid-uM26fXu22w .mbr-text,
.cid-uM26fXu22w .mbr-section-btn {
  text-align: center;
}
.cid-uM26fXRktH {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/fondo-3.jpg-612x448.jpg");
}
.cid-uM26fXRktH .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uM26fXRktH .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uM26fXRktH .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uM26fXRktH .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uM26fXRktH .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uM26fXRktH .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uM26fXRktH .mbr-text,
.cid-uM26fXRktH .mbr-section-btn {
  color: #fafafa;
  text-align: center;
}
.cid-uM26fYfwxy {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #005b98;
}
.cid-uM26fYfwxy img,
.cid-uM26fYfwxy .item-img {
  width: 100%;
}
.cid-uM26fYfwxy .item:focus,
.cid-uM26fYfwxy span:focus {
  outline: none;
}
.cid-uM26fYfwxy .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uM26fYfwxy .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #0976aa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uM26fYfwxy .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uM26fYfwxy .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uM26fYfwxy .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uM26fYfwxy .mbr-section-title {
  color: #fafafa;
}
.cid-uM26fYfwxy .mbr-text,
.cid-uM26fYfwxy .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uM26fYfwxy .item-title {
  text-align: left;
  color: #bbbbbb;
}
.cid-uM26fYfwxy .item-subtitle {
  text-align: left;
}
.cid-uM26fZ4VKq {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/construccionesjp.jpg-2000x1255.jpg");
}
.cid-uM26fZ4VKq img,
.cid-uM26fZ4VKq .item-img {
  width: 100%;
  height: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-uM26fZ4VKq .item:focus,
.cid-uM26fZ4VKq span:focus {
  outline: none;
}
.cid-uM26fZ4VKq .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uM26fZ4VKq .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uM26fZ4VKq .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uM26fZ4VKq .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uM26fZ4VKq .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uM26fZ4VKq .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uM26fZ4VKq .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uM26fZ4VKq .mbr-section-title {
  color: #141619;
}
.cid-uM26fZ4VKq .mbr-text,
.cid-uM26fZ4VKq .mbr-section-btn {
  text-align: left;
}
.cid-uM26fZ4VKq .item-title {
  text-align: center;
}
.cid-uM26fZ4VKq .item-subtitle {
  text-align: center;
}
.cid-uM26fZYJs5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bbbbbb;
}
.cid-uM26fZYJs5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uM26fZYJs5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uM26fZYJs5 .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-uM26fZYJs5 .currentcost {
  color: #232323;
}
.cid-uM26fZYJs5 .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uM26fZYJs5 .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uM26fZYJs5 .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uM26fZYJs5 .text-box {
    padding: 1rem;
  }
}
.cid-uM26fZYJs5 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uM26g0qj9D {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uM26g0qj9D .mbr-fallback-image.disabled {
  display: none;
}
.cid-uM26g0qj9D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uM26g0qj9D .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uM26g0qj9D .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-uM26g0qj9D .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uM26g0qj9D .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uM26g0qj9D .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uM26g0qj9D .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uM26g0qj9D .carousel-control,
.cid-uM26g0qj9D .close {
  background: #1b1b1b;
}
.cid-uM26g0qj9D .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uM26g0qj9D .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uM26g0qj9D .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uM26g0qj9D .carousel-control-next span {
  margin-left: 5px;
}
.cid-uM26g0qj9D .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uM26g0qj9D .close::before {
  content: '\e91a';
}
.cid-uM26g0qj9D .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uM26g0qj9D .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uM26g0qj9D .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uM26g0qj9D .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uM26g0qj9D .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uM26g0qj9D .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uM26g0qj9D .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uM26g0qj9D .carousel-indicators li.active,
.cid-uM26g0qj9D .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uM26g0qj9D .carousel-indicators li::after,
.cid-uM26g0qj9D .carousel-indicators li::before {
  content: none;
}
.cid-uM26g0qj9D .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uM26g0qj9D .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uM26g0qj9D .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uM26g0qj9D .carousel-indicators {
    display: none;
  }
}
.cid-uM26g0qj9D .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uM26g0qj9D .carousel-inner > .active {
  display: block;
}
.cid-uM26g0qj9D .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uM26g0qj9D .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uM26g0qj9D .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uM26g0qj9D .carousel-control,
  .cid-uM26g0qj9D .carousel-indicators,
  .cid-uM26g0qj9D .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uM26g0qj9D .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uM26g0qj9D .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uM26g0qj9D .carousel-indicators .active,
.cid-uM26g0qj9D .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uM26g0qj9D .carousel-indicators .active {
  background: #fff;
}
.cid-uM26g0qj9D .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uM26g0qj9D .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uM26g0qj9D .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uM26g0qj9D .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uM26g0qj9D .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uM26g0qj9D .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uM26g0qj9D .carousel {
  width: 100%;
}
.cid-uM26g0qj9D .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uM26g0qj9D .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uM26g0qj9D .modal.fade .modal-dialog,
.cid-uM26g0qj9D .modal.in .modal-dialog {
  transform: none;
}
.cid-uM26g0qj9D .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uM26g0qj9D H6 {
  text-align: center;
}
.cid-uM26g2d779 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #0976aa;
}
.cid-uM26g2d779 img {
  width: 120px;
  margin: auto;
}
.cid-uM26g2d779 .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uM26g2d779 .card {
    max-width: 12.5%;
  }
}
.cid-uM26g2d779 .mbr-section-subtitle {
  color: #dbdbdb;
}
.cid-uM26g2d779 .mbr-section-title {
  color: #ffffff;
}
.cid-uM26g2TvVc {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-uM26g2TvVc .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uM26g2TvVc form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uM26g2TvVc form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uM26g2TvVc form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uM26g2TvVc .mbr-section-title {
  color: #000000;
}
.cid-uM26g2TvVc .mbr-section-subtitle {
  color: #000000;
}
.cid-uM26g3uRVB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uM26g3uRVB .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uM26g3uRVB .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-uM26g3uRVB .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uM26g3uRVB .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uM26g3uRVB .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #3ab752;
}
.cid-uM26g49i1f {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uM26g49i1f .google-map {
  height: 30rem;
  position: relative;
}
.cid-uM26g49i1f .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uM26g49i1f .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uM26g49i1f .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uM26g49i1f .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uM26mDJCAI {
  z-index: 1000;
  width: 100%;
}
.cid-uM26mDJCAI nav.navbar {
  position: fixed;
}
.cid-uM26mDJCAI .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-uM26mDJCAI .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uM26mDJCAI .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uM26mDJCAI .dropdown-item:hover,
.cid-uM26mDJCAI .dropdown-item:focus {
  background: #3ab752 !important;
  color: white !important;
}
.cid-uM26mDJCAI .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uM26mDJCAI .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uM26mDJCAI .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uM26mDJCAI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uM26mDJCAI .nav-link {
  position: relative;
}
.cid-uM26mDJCAI .container {
  display: flex;
  margin: auto;
}
.cid-uM26mDJCAI .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uM26mDJCAI .dropdown-menu,
.cid-uM26mDJCAI .navbar.opened {
  background: #0976aa !important;
}
.cid-uM26mDJCAI .nav-item:focus,
.cid-uM26mDJCAI .nav-link:focus {
  outline: none;
}
.cid-uM26mDJCAI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uM26mDJCAI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uM26mDJCAI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uM26mDJCAI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uM26mDJCAI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uM26mDJCAI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uM26mDJCAI .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #0976aa;
}
.cid-uM26mDJCAI .navbar.opened {
  transition: all 0.3s;
}
.cid-uM26mDJCAI .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uM26mDJCAI .navbar .navbar-logo img {
  width: auto;
}
.cid-uM26mDJCAI .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uM26mDJCAI .navbar.collapsed {
  justify-content: center;
}
.cid-uM26mDJCAI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uM26mDJCAI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uM26mDJCAI .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.9rem);
  }
}
.cid-uM26mDJCAI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uM26mDJCAI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uM26mDJCAI .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-uM26mDJCAI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uM26mDJCAI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uM26mDJCAI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uM26mDJCAI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uM26mDJCAI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uM26mDJCAI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uM26mDJCAI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uM26mDJCAI .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-uM26mDJCAI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uM26mDJCAI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uM26mDJCAI .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uM26mDJCAI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uM26mDJCAI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uM26mDJCAI .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uM26mDJCAI .navbar.navbar-short {
  min-height: 60px;
}
.cid-uM26mDJCAI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uM26mDJCAI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uM26mDJCAI .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-uM26mDJCAI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uM26mDJCAI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uM26mDJCAI .dropdown-item.active,
.cid-uM26mDJCAI .dropdown-item:active {
  background-color: transparent;
}
.cid-uM26mDJCAI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uM26mDJCAI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uM26mDJCAI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uM26mDJCAI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0976aa;
}
.cid-uM26mDJCAI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uM26mDJCAI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uM26mDJCAI ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uM26mDJCAI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uM26mDJCAI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uM26mDJCAI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uM26mDJCAI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uM26mDJCAI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uM26mDJCAI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uM26mDJCAI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uM26mDJCAI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uM26mDJCAI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uM26mDJCAI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uM26mDJCAI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uM26mDJCAI .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uM26mDJCAI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uM26mDJCAI .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-uM26mDJCAI .navbar {
    height: 70px;
  }
  .cid-uM26mDJCAI .navbar.opened {
    height: auto;
  }
  .cid-uM26mDJCAI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uM26mEDIcB {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uM26mEDIcB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uM26mEDIcB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uM26mEDIcB H3 {
  text-align: center;
}
.cid-uM26mEDIcB .mbr-text,
.cid-uM26mEDIcB .mbr-section-btn {
  text-align: center;
}
.cid-uM26mFbdxj {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/fondo-3.jpg-612x448.jpg");
}
.cid-uM26mFbdxj .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uM26mFbdxj .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uM26mFbdxj .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uM26mFbdxj .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uM26mFbdxj .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uM26mFbdxj .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uM26mFbdxj .mbr-text,
.cid-uM26mFbdxj .mbr-section-btn {
  color: #fafafa;
  text-align: center;
}
.cid-uM26mFP7jP {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #005b98;
}
.cid-uM26mFP7jP img,
.cid-uM26mFP7jP .item-img {
  width: 100%;
}
.cid-uM26mFP7jP .item:focus,
.cid-uM26mFP7jP span:focus {
  outline: none;
}
.cid-uM26mFP7jP .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uM26mFP7jP .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #0976aa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uM26mFP7jP .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uM26mFP7jP .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uM26mFP7jP .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uM26mFP7jP .mbr-section-title {
  color: #fafafa;
}
.cid-uM26mFP7jP .mbr-text,
.cid-uM26mFP7jP .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uM26mFP7jP .item-title {
  text-align: left;
  color: #bbbbbb;
}
.cid-uM26mFP7jP .item-subtitle {
  text-align: left;
}
.cid-uM26mGY8Na {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/construccionesjp.jpg-2000x1255.jpg");
}
.cid-uM26mGY8Na img,
.cid-uM26mGY8Na .item-img {
  width: 100%;
  height: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-uM26mGY8Na .item:focus,
.cid-uM26mGY8Na span:focus {
  outline: none;
}
.cid-uM26mGY8Na .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uM26mGY8Na .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uM26mGY8Na .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uM26mGY8Na .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uM26mGY8Na .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uM26mGY8Na .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uM26mGY8Na .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uM26mGY8Na .mbr-section-title {
  color: #141619;
}
.cid-uM26mGY8Na .mbr-text,
.cid-uM26mGY8Na .mbr-section-btn {
  text-align: left;
}
.cid-uM26mGY8Na .item-title {
  text-align: center;
}
.cid-uM26mGY8Na .item-subtitle {
  text-align: center;
}
.cid-uM26mIp6uZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bbbbbb;
}
.cid-uM26mIp6uZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uM26mIp6uZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uM26mIp6uZ .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-uM26mIp6uZ .currentcost {
  color: #232323;
}
.cid-uM26mIp6uZ .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uM26mIp6uZ .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uM26mIp6uZ .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uM26mIp6uZ .text-box {
    padding: 1rem;
  }
}
.cid-uM26mIp6uZ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uM26mJ7sbr {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uM26mJ7sbr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uM26mJ7sbr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uM26mJ7sbr .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uM26mJ7sbr .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-uM26mJ7sbr .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uM26mJ7sbr .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uM26mJ7sbr .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uM26mJ7sbr .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uM26mJ7sbr .carousel-control,
.cid-uM26mJ7sbr .close {
  background: #1b1b1b;
}
.cid-uM26mJ7sbr .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uM26mJ7sbr .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uM26mJ7sbr .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uM26mJ7sbr .carousel-control-next span {
  margin-left: 5px;
}
.cid-uM26mJ7sbr .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uM26mJ7sbr .close::before {
  content: '\e91a';
}
.cid-uM26mJ7sbr .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uM26mJ7sbr .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uM26mJ7sbr .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uM26mJ7sbr .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uM26mJ7sbr .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uM26mJ7sbr .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uM26mJ7sbr .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uM26mJ7sbr .carousel-indicators li.active,
.cid-uM26mJ7sbr .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uM26mJ7sbr .carousel-indicators li::after,
.cid-uM26mJ7sbr .carousel-indicators li::before {
  content: none;
}
.cid-uM26mJ7sbr .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uM26mJ7sbr .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uM26mJ7sbr .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uM26mJ7sbr .carousel-indicators {
    display: none;
  }
}
.cid-uM26mJ7sbr .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uM26mJ7sbr .carousel-inner > .active {
  display: block;
}
.cid-uM26mJ7sbr .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uM26mJ7sbr .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uM26mJ7sbr .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uM26mJ7sbr .carousel-control,
  .cid-uM26mJ7sbr .carousel-indicators,
  .cid-uM26mJ7sbr .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uM26mJ7sbr .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uM26mJ7sbr .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uM26mJ7sbr .carousel-indicators .active,
.cid-uM26mJ7sbr .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uM26mJ7sbr .carousel-indicators .active {
  background: #fff;
}
.cid-uM26mJ7sbr .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uM26mJ7sbr .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uM26mJ7sbr .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uM26mJ7sbr .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uM26mJ7sbr .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uM26mJ7sbr .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uM26mJ7sbr .carousel {
  width: 100%;
}
.cid-uM26mJ7sbr .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uM26mJ7sbr .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uM26mJ7sbr .modal.fade .modal-dialog,
.cid-uM26mJ7sbr .modal.in .modal-dialog {
  transform: none;
}
.cid-uM26mJ7sbr .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uM26mJ7sbr H6 {
  text-align: center;
}
.cid-uM26mM5P7M {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #0976aa;
}
.cid-uM26mM5P7M img {
  width: 120px;
  margin: auto;
}
.cid-uM26mM5P7M .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uM26mM5P7M .card {
    max-width: 12.5%;
  }
}
.cid-uM26mM5P7M .mbr-section-subtitle {
  color: #dbdbdb;
}
.cid-uM26mM5P7M .mbr-section-title {
  color: #ffffff;
}
.cid-uM26mNeB45 {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-uM26mNeB45 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uM26mNeB45 form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uM26mNeB45 form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uM26mNeB45 form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uM26mNeB45 .mbr-section-title {
  color: #000000;
}
.cid-uM26mNeB45 .mbr-section-subtitle {
  color: #000000;
}
.cid-uM26mO7Yel {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uM26mO7Yel .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uM26mO7Yel .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-uM26mO7Yel .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uM26mO7Yel .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uM26mO7Yel .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #3ab752;
}
.cid-uM26mPwoKV {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uM26mPwoKV .google-map {
  height: 30rem;
  position: relative;
}
.cid-uM26mPwoKV .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uM26mPwoKV .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uM26mPwoKV .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uM26mPwoKV .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uM26tA697q {
  z-index: 1000;
  width: 100%;
}
.cid-uM26tA697q nav.navbar {
  position: fixed;
}
.cid-uM26tA697q .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-uM26tA697q .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uM26tA697q .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uM26tA697q .dropdown-item:hover,
.cid-uM26tA697q .dropdown-item:focus {
  background: #3ab752 !important;
  color: white !important;
}
.cid-uM26tA697q .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uM26tA697q .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uM26tA697q .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uM26tA697q .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uM26tA697q .nav-link {
  position: relative;
}
.cid-uM26tA697q .container {
  display: flex;
  margin: auto;
}
.cid-uM26tA697q .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uM26tA697q .dropdown-menu,
.cid-uM26tA697q .navbar.opened {
  background: #0976aa !important;
}
.cid-uM26tA697q .nav-item:focus,
.cid-uM26tA697q .nav-link:focus {
  outline: none;
}
.cid-uM26tA697q .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uM26tA697q .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uM26tA697q .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uM26tA697q .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uM26tA697q .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uM26tA697q .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uM26tA697q .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #0976aa;
}
.cid-uM26tA697q .navbar.opened {
  transition: all 0.3s;
}
.cid-uM26tA697q .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uM26tA697q .navbar .navbar-logo img {
  width: auto;
}
.cid-uM26tA697q .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uM26tA697q .navbar.collapsed {
  justify-content: center;
}
.cid-uM26tA697q .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uM26tA697q .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uM26tA697q .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.9rem);
  }
}
.cid-uM26tA697q .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uM26tA697q .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uM26tA697q .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-uM26tA697q .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uM26tA697q .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uM26tA697q .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uM26tA697q .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uM26tA697q .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uM26tA697q .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uM26tA697q .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uM26tA697q .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-uM26tA697q .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uM26tA697q .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uM26tA697q .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uM26tA697q .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uM26tA697q .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uM26tA697q .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uM26tA697q .navbar.navbar-short {
  min-height: 60px;
}
.cid-uM26tA697q .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uM26tA697q .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uM26tA697q .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-uM26tA697q .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uM26tA697q .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uM26tA697q .dropdown-item.active,
.cid-uM26tA697q .dropdown-item:active {
  background-color: transparent;
}
.cid-uM26tA697q .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uM26tA697q .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uM26tA697q .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uM26tA697q .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0976aa;
}
.cid-uM26tA697q .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uM26tA697q .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uM26tA697q ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uM26tA697q .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uM26tA697q button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uM26tA697q button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uM26tA697q button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uM26tA697q button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uM26tA697q button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uM26tA697q button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uM26tA697q nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uM26tA697q nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uM26tA697q nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uM26tA697q nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uM26tA697q .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uM26tA697q a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uM26tA697q .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-uM26tA697q .navbar {
    height: 70px;
  }
  .cid-uM26tA697q .navbar.opened {
    height: auto;
  }
  .cid-uM26tA697q .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uM26tACCjE {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uM26tACCjE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uM26tACCjE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uM26tACCjE H3 {
  text-align: center;
}
.cid-uM26tACCjE .mbr-text,
.cid-uM26tACCjE .mbr-section-btn {
  text-align: center;
}
.cid-uM26tB5mhA {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/fondo-3.jpg-612x448.jpg");
}
.cid-uM26tB5mhA .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uM26tB5mhA .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uM26tB5mhA .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uM26tB5mhA .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uM26tB5mhA .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uM26tB5mhA .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uM26tB5mhA .mbr-text,
.cid-uM26tB5mhA .mbr-section-btn {
  color: #fafafa;
  text-align: center;
}
.cid-uM26tC1QxN {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #005b98;
}
.cid-uM26tC1QxN img,
.cid-uM26tC1QxN .item-img {
  width: 100%;
}
.cid-uM26tC1QxN .item:focus,
.cid-uM26tC1QxN span:focus {
  outline: none;
}
.cid-uM26tC1QxN .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uM26tC1QxN .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #0976aa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uM26tC1QxN .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uM26tC1QxN .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uM26tC1QxN .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uM26tC1QxN .mbr-section-title {
  color: #fafafa;
}
.cid-uM26tC1QxN .mbr-text,
.cid-uM26tC1QxN .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uM26tC1QxN .item-title {
  text-align: left;
  color: #bbbbbb;
}
.cid-uM26tC1QxN .item-subtitle {
  text-align: left;
}
.cid-uM26tD6zTY {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/construccionesjp.jpg-2000x1255.jpg");
}
.cid-uM26tD6zTY img,
.cid-uM26tD6zTY .item-img {
  width: 100%;
  height: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-uM26tD6zTY .item:focus,
.cid-uM26tD6zTY span:focus {
  outline: none;
}
.cid-uM26tD6zTY .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uM26tD6zTY .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uM26tD6zTY .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uM26tD6zTY .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uM26tD6zTY .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uM26tD6zTY .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uM26tD6zTY .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uM26tD6zTY .mbr-section-title {
  color: #141619;
}
.cid-uM26tD6zTY .mbr-text,
.cid-uM26tD6zTY .mbr-section-btn {
  text-align: left;
}
.cid-uM26tD6zTY .item-title {
  text-align: center;
}
.cid-uM26tD6zTY .item-subtitle {
  text-align: center;
}
.cid-uM26tEoMYz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bbbbbb;
}
.cid-uM26tEoMYz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uM26tEoMYz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uM26tEoMYz .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-uM26tEoMYz .currentcost {
  color: #232323;
}
.cid-uM26tEoMYz .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uM26tEoMYz .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uM26tEoMYz .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uM26tEoMYz .text-box {
    padding: 1rem;
  }
}
.cid-uM26tEoMYz .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uM26tFfcSp {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uM26tFfcSp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uM26tFfcSp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uM26tFfcSp .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uM26tFfcSp .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-uM26tFfcSp .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uM26tFfcSp .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uM26tFfcSp .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uM26tFfcSp .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uM26tFfcSp .carousel-control,
.cid-uM26tFfcSp .close {
  background: #1b1b1b;
}
.cid-uM26tFfcSp .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uM26tFfcSp .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uM26tFfcSp .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uM26tFfcSp .carousel-control-next span {
  margin-left: 5px;
}
.cid-uM26tFfcSp .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uM26tFfcSp .close::before {
  content: '\e91a';
}
.cid-uM26tFfcSp .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uM26tFfcSp .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uM26tFfcSp .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uM26tFfcSp .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uM26tFfcSp .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uM26tFfcSp .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uM26tFfcSp .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uM26tFfcSp .carousel-indicators li.active,
.cid-uM26tFfcSp .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uM26tFfcSp .carousel-indicators li::after,
.cid-uM26tFfcSp .carousel-indicators li::before {
  content: none;
}
.cid-uM26tFfcSp .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uM26tFfcSp .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uM26tFfcSp .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uM26tFfcSp .carousel-indicators {
    display: none;
  }
}
.cid-uM26tFfcSp .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uM26tFfcSp .carousel-inner > .active {
  display: block;
}
.cid-uM26tFfcSp .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uM26tFfcSp .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uM26tFfcSp .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uM26tFfcSp .carousel-control,
  .cid-uM26tFfcSp .carousel-indicators,
  .cid-uM26tFfcSp .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uM26tFfcSp .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uM26tFfcSp .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uM26tFfcSp .carousel-indicators .active,
.cid-uM26tFfcSp .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uM26tFfcSp .carousel-indicators .active {
  background: #fff;
}
.cid-uM26tFfcSp .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uM26tFfcSp .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uM26tFfcSp .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uM26tFfcSp .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uM26tFfcSp .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uM26tFfcSp .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uM26tFfcSp .carousel {
  width: 100%;
}
.cid-uM26tFfcSp .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uM26tFfcSp .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uM26tFfcSp .modal.fade .modal-dialog,
.cid-uM26tFfcSp .modal.in .modal-dialog {
  transform: none;
}
.cid-uM26tFfcSp .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uM26tFfcSp H6 {
  text-align: center;
}
.cid-uM26tIBtf6 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #0976aa;
}
.cid-uM26tIBtf6 img {
  width: 120px;
  margin: auto;
}
.cid-uM26tIBtf6 .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uM26tIBtf6 .card {
    max-width: 12.5%;
  }
}
.cid-uM26tIBtf6 .mbr-section-subtitle {
  color: #dbdbdb;
}
.cid-uM26tIBtf6 .mbr-section-title {
  color: #ffffff;
}
.cid-uM26tJh8Io {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-uM26tJh8Io .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uM26tJh8Io form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uM26tJh8Io form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uM26tJh8Io form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uM26tJh8Io .mbr-section-title {
  color: #000000;
}
.cid-uM26tJh8Io .mbr-section-subtitle {
  color: #000000;
}
.cid-uM26tJN9CE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uM26tJN9CE .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uM26tJN9CE .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-uM26tJN9CE .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uM26tJN9CE .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uM26tJN9CE .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #3ab752;
}
.cid-uM26tKtkDd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uM26tKtkDd .google-map {
  height: 30rem;
  position: relative;
}
.cid-uM26tKtkDd .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uM26tKtkDd .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uM26tKtkDd .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uM26tKtkDd .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uM26BgX0nt {
  z-index: 1000;
  width: 100%;
}
.cid-uM26BgX0nt nav.navbar {
  position: fixed;
}
.cid-uM26BgX0nt .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-uM26BgX0nt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uM26BgX0nt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uM26BgX0nt .dropdown-item:hover,
.cid-uM26BgX0nt .dropdown-item:focus {
  background: #3ab752 !important;
  color: white !important;
}
.cid-uM26BgX0nt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uM26BgX0nt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uM26BgX0nt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uM26BgX0nt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uM26BgX0nt .nav-link {
  position: relative;
}
.cid-uM26BgX0nt .container {
  display: flex;
  margin: auto;
}
.cid-uM26BgX0nt .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uM26BgX0nt .dropdown-menu,
.cid-uM26BgX0nt .navbar.opened {
  background: #0976aa !important;
}
.cid-uM26BgX0nt .nav-item:focus,
.cid-uM26BgX0nt .nav-link:focus {
  outline: none;
}
.cid-uM26BgX0nt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uM26BgX0nt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uM26BgX0nt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uM26BgX0nt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uM26BgX0nt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uM26BgX0nt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uM26BgX0nt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #0976aa;
}
.cid-uM26BgX0nt .navbar.opened {
  transition: all 0.3s;
}
.cid-uM26BgX0nt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uM26BgX0nt .navbar .navbar-logo img {
  width: auto;
}
.cid-uM26BgX0nt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uM26BgX0nt .navbar.collapsed {
  justify-content: center;
}
.cid-uM26BgX0nt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uM26BgX0nt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uM26BgX0nt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.9rem);
  }
}
.cid-uM26BgX0nt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uM26BgX0nt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uM26BgX0nt .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-uM26BgX0nt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uM26BgX0nt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uM26BgX0nt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uM26BgX0nt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uM26BgX0nt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uM26BgX0nt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uM26BgX0nt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uM26BgX0nt .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-uM26BgX0nt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uM26BgX0nt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uM26BgX0nt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uM26BgX0nt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uM26BgX0nt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uM26BgX0nt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uM26BgX0nt .navbar.navbar-short {
  min-height: 60px;
}
.cid-uM26BgX0nt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uM26BgX0nt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uM26BgX0nt .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-uM26BgX0nt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uM26BgX0nt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uM26BgX0nt .dropdown-item.active,
.cid-uM26BgX0nt .dropdown-item:active {
  background-color: transparent;
}
.cid-uM26BgX0nt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uM26BgX0nt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uM26BgX0nt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uM26BgX0nt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0976aa;
}
.cid-uM26BgX0nt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uM26BgX0nt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uM26BgX0nt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uM26BgX0nt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uM26BgX0nt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uM26BgX0nt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uM26BgX0nt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uM26BgX0nt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uM26BgX0nt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uM26BgX0nt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uM26BgX0nt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uM26BgX0nt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uM26BgX0nt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uM26BgX0nt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uM26BgX0nt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uM26BgX0nt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uM26BgX0nt .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-uM26BgX0nt .navbar {
    height: 70px;
  }
  .cid-uM26BgX0nt .navbar.opened {
    height: auto;
  }
  .cid-uM26BgX0nt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uM26BhZHqb {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uM26BhZHqb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uM26BhZHqb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uM26BhZHqb H3 {
  text-align: center;
}
.cid-uM26BhZHqb .mbr-text,
.cid-uM26BhZHqb .mbr-section-btn {
  text-align: center;
}
.cid-uM26BiO6ah {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/fondo-3.jpg-612x448.jpg");
}
.cid-uM26BiO6ah .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uM26BiO6ah .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uM26BiO6ah .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uM26BiO6ah .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uM26BiO6ah .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uM26BiO6ah .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uM26BiO6ah .mbr-text,
.cid-uM26BiO6ah .mbr-section-btn {
  color: #fafafa;
  text-align: center;
}
.cid-uM26BjForU {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #005b98;
}
.cid-uM26BjForU img,
.cid-uM26BjForU .item-img {
  width: 100%;
}
.cid-uM26BjForU .item:focus,
.cid-uM26BjForU span:focus {
  outline: none;
}
.cid-uM26BjForU .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uM26BjForU .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #0976aa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uM26BjForU .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uM26BjForU .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uM26BjForU .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uM26BjForU .mbr-section-title {
  color: #fafafa;
}
.cid-uM26BjForU .mbr-text,
.cid-uM26BjForU .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uM26BjForU .item-title {
  text-align: left;
  color: #bbbbbb;
}
.cid-uM26BjForU .item-subtitle {
  text-align: left;
}
.cid-uM26BkOIQk {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/construccionesjp.jpg-2000x1255.jpg");
}
.cid-uM26BkOIQk img,
.cid-uM26BkOIQk .item-img {
  width: 100%;
  height: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-uM26BkOIQk .item:focus,
.cid-uM26BkOIQk span:focus {
  outline: none;
}
.cid-uM26BkOIQk .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uM26BkOIQk .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uM26BkOIQk .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uM26BkOIQk .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uM26BkOIQk .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uM26BkOIQk .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uM26BkOIQk .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uM26BkOIQk .mbr-section-title {
  color: #141619;
}
.cid-uM26BkOIQk .mbr-text,
.cid-uM26BkOIQk .mbr-section-btn {
  text-align: left;
}
.cid-uM26BkOIQk .item-title {
  text-align: center;
}
.cid-uM26BkOIQk .item-subtitle {
  text-align: center;
}
.cid-uM26BmtymL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bbbbbb;
}
.cid-uM26BmtymL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uM26BmtymL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uM26BmtymL .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-uM26BmtymL .currentcost {
  color: #232323;
}
.cid-uM26BmtymL .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uM26BmtymL .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uM26BmtymL .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uM26BmtymL .text-box {
    padding: 1rem;
  }
}
.cid-uM26BmtymL .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uM26Bn9s0j {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uM26Bn9s0j .mbr-fallback-image.disabled {
  display: none;
}
.cid-uM26Bn9s0j .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uM26Bn9s0j .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uM26Bn9s0j .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-uM26Bn9s0j .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uM26Bn9s0j .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uM26Bn9s0j .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uM26Bn9s0j .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uM26Bn9s0j .carousel-control,
.cid-uM26Bn9s0j .close {
  background: #1b1b1b;
}
.cid-uM26Bn9s0j .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uM26Bn9s0j .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uM26Bn9s0j .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uM26Bn9s0j .carousel-control-next span {
  margin-left: 5px;
}
.cid-uM26Bn9s0j .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uM26Bn9s0j .close::before {
  content: '\e91a';
}
.cid-uM26Bn9s0j .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uM26Bn9s0j .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uM26Bn9s0j .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uM26Bn9s0j .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uM26Bn9s0j .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uM26Bn9s0j .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uM26Bn9s0j .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uM26Bn9s0j .carousel-indicators li.active,
.cid-uM26Bn9s0j .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uM26Bn9s0j .carousel-indicators li::after,
.cid-uM26Bn9s0j .carousel-indicators li::before {
  content: none;
}
.cid-uM26Bn9s0j .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uM26Bn9s0j .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uM26Bn9s0j .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uM26Bn9s0j .carousel-indicators {
    display: none;
  }
}
.cid-uM26Bn9s0j .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uM26Bn9s0j .carousel-inner > .active {
  display: block;
}
.cid-uM26Bn9s0j .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uM26Bn9s0j .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uM26Bn9s0j .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uM26Bn9s0j .carousel-control,
  .cid-uM26Bn9s0j .carousel-indicators,
  .cid-uM26Bn9s0j .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uM26Bn9s0j .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uM26Bn9s0j .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uM26Bn9s0j .carousel-indicators .active,
.cid-uM26Bn9s0j .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uM26Bn9s0j .carousel-indicators .active {
  background: #fff;
}
.cid-uM26Bn9s0j .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uM26Bn9s0j .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uM26Bn9s0j .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uM26Bn9s0j .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uM26Bn9s0j .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uM26Bn9s0j .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uM26Bn9s0j .carousel {
  width: 100%;
}
.cid-uM26Bn9s0j .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uM26Bn9s0j .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uM26Bn9s0j .modal.fade .modal-dialog,
.cid-uM26Bn9s0j .modal.in .modal-dialog {
  transform: none;
}
.cid-uM26Bn9s0j .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uM26Bn9s0j H6 {
  text-align: center;
}
.cid-uM26BrJTh1 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #0976aa;
}
.cid-uM26BrJTh1 img {
  width: 120px;
  margin: auto;
}
.cid-uM26BrJTh1 .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uM26BrJTh1 .card {
    max-width: 12.5%;
  }
}
.cid-uM26BrJTh1 .mbr-section-subtitle {
  color: #dbdbdb;
}
.cid-uM26BrJTh1 .mbr-section-title {
  color: #ffffff;
}
.cid-uM26BuePpS {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-uM26BuePpS .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uM26BuePpS form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uM26BuePpS form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uM26BuePpS form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uM26BuePpS .mbr-section-title {
  color: #000000;
}
.cid-uM26BuePpS .mbr-section-subtitle {
  color: #000000;
}
.cid-uM26BuVRb5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uM26BuVRb5 .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uM26BuVRb5 .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-uM26BuVRb5 .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uM26BuVRb5 .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uM26BuVRb5 .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #3ab752;
}
.cid-uM26Bw1tit {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uM26Bw1tit .google-map {
  height: 30rem;
  position: relative;
}
.cid-uM26Bw1tit .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uM26Bw1tit .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uM26Bw1tit .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uM26Bw1tit .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uM26Gk9Zhf {
  z-index: 1000;
  width: 100%;
}
.cid-uM26Gk9Zhf nav.navbar {
  position: fixed;
}
.cid-uM26Gk9Zhf .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-uM26Gk9Zhf .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uM26Gk9Zhf .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uM26Gk9Zhf .dropdown-item:hover,
.cid-uM26Gk9Zhf .dropdown-item:focus {
  background: #3ab752 !important;
  color: white !important;
}
.cid-uM26Gk9Zhf .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uM26Gk9Zhf .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uM26Gk9Zhf .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uM26Gk9Zhf .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uM26Gk9Zhf .nav-link {
  position: relative;
}
.cid-uM26Gk9Zhf .container {
  display: flex;
  margin: auto;
}
.cid-uM26Gk9Zhf .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uM26Gk9Zhf .dropdown-menu,
.cid-uM26Gk9Zhf .navbar.opened {
  background: #0976aa !important;
}
.cid-uM26Gk9Zhf .nav-item:focus,
.cid-uM26Gk9Zhf .nav-link:focus {
  outline: none;
}
.cid-uM26Gk9Zhf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uM26Gk9Zhf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uM26Gk9Zhf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uM26Gk9Zhf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uM26Gk9Zhf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uM26Gk9Zhf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uM26Gk9Zhf .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #0976aa;
}
.cid-uM26Gk9Zhf .navbar.opened {
  transition: all 0.3s;
}
.cid-uM26Gk9Zhf .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uM26Gk9Zhf .navbar .navbar-logo img {
  width: auto;
}
.cid-uM26Gk9Zhf .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uM26Gk9Zhf .navbar.collapsed {
  justify-content: center;
}
.cid-uM26Gk9Zhf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uM26Gk9Zhf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uM26Gk9Zhf .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.9rem);
  }
}
.cid-uM26Gk9Zhf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uM26Gk9Zhf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uM26Gk9Zhf .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-uM26Gk9Zhf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uM26Gk9Zhf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uM26Gk9Zhf .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uM26Gk9Zhf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uM26Gk9Zhf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uM26Gk9Zhf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uM26Gk9Zhf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uM26Gk9Zhf .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-uM26Gk9Zhf .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uM26Gk9Zhf .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uM26Gk9Zhf .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uM26Gk9Zhf .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uM26Gk9Zhf .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uM26Gk9Zhf .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uM26Gk9Zhf .navbar.navbar-short {
  min-height: 60px;
}
.cid-uM26Gk9Zhf .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uM26Gk9Zhf .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uM26Gk9Zhf .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-uM26Gk9Zhf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uM26Gk9Zhf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uM26Gk9Zhf .dropdown-item.active,
.cid-uM26Gk9Zhf .dropdown-item:active {
  background-color: transparent;
}
.cid-uM26Gk9Zhf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uM26Gk9Zhf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uM26Gk9Zhf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uM26Gk9Zhf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0976aa;
}
.cid-uM26Gk9Zhf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uM26Gk9Zhf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uM26Gk9Zhf ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uM26Gk9Zhf .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uM26Gk9Zhf button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uM26Gk9Zhf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uM26Gk9Zhf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uM26Gk9Zhf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uM26Gk9Zhf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uM26Gk9Zhf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uM26Gk9Zhf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uM26Gk9Zhf nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uM26Gk9Zhf nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uM26Gk9Zhf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uM26Gk9Zhf .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uM26Gk9Zhf a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uM26Gk9Zhf .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-uM26Gk9Zhf .navbar {
    height: 70px;
  }
  .cid-uM26Gk9Zhf .navbar.opened {
    height: auto;
  }
  .cid-uM26Gk9Zhf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uM26GlehiP {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uM26GlehiP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uM26GlehiP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uM26GlehiP H3 {
  text-align: center;
}
.cid-uM26GlehiP .mbr-text,
.cid-uM26GlehiP .mbr-section-btn {
  text-align: center;
}
.cid-uM26GlVRC3 {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/fondo-3.jpg-612x448.jpg");
}
.cid-uM26GlVRC3 .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uM26GlVRC3 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uM26GlVRC3 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uM26GlVRC3 .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uM26GlVRC3 .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uM26GlVRC3 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uM26GlVRC3 .mbr-text,
.cid-uM26GlVRC3 .mbr-section-btn {
  color: #fafafa;
  text-align: center;
}
.cid-uM26GmLRWf {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #005b98;
}
.cid-uM26GmLRWf img,
.cid-uM26GmLRWf .item-img {
  width: 100%;
}
.cid-uM26GmLRWf .item:focus,
.cid-uM26GmLRWf span:focus {
  outline: none;
}
.cid-uM26GmLRWf .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uM26GmLRWf .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #0976aa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uM26GmLRWf .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uM26GmLRWf .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uM26GmLRWf .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uM26GmLRWf .mbr-section-title {
  color: #fafafa;
}
.cid-uM26GmLRWf .mbr-text,
.cid-uM26GmLRWf .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uM26GmLRWf .item-title {
  text-align: left;
  color: #bbbbbb;
}
.cid-uM26GmLRWf .item-subtitle {
  text-align: left;
}
.cid-uM26GnYPEs {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/construccionesjp.jpg-2000x1255.jpg");
}
.cid-uM26GnYPEs img,
.cid-uM26GnYPEs .item-img {
  width: 100%;
  height: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-uM26GnYPEs .item:focus,
.cid-uM26GnYPEs span:focus {
  outline: none;
}
.cid-uM26GnYPEs .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uM26GnYPEs .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uM26GnYPEs .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uM26GnYPEs .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uM26GnYPEs .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uM26GnYPEs .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uM26GnYPEs .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uM26GnYPEs .mbr-section-title {
  color: #141619;
}
.cid-uM26GnYPEs .mbr-text,
.cid-uM26GnYPEs .mbr-section-btn {
  text-align: left;
}
.cid-uM26GnYPEs .item-title {
  text-align: center;
}
.cid-uM26GnYPEs .item-subtitle {
  text-align: center;
}
.cid-uM26GpDtrS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bbbbbb;
}
.cid-uM26GpDtrS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uM26GpDtrS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uM26GpDtrS .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-uM26GpDtrS .currentcost {
  color: #232323;
}
.cid-uM26GpDtrS .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uM26GpDtrS .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uM26GpDtrS .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uM26GpDtrS .text-box {
    padding: 1rem;
  }
}
.cid-uM26GpDtrS .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uM26GqhMSJ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uM26GqhMSJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uM26GqhMSJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uM26GqhMSJ .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uM26GqhMSJ .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-uM26GqhMSJ .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uM26GqhMSJ .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uM26GqhMSJ .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uM26GqhMSJ .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uM26GqhMSJ .carousel-control,
.cid-uM26GqhMSJ .close {
  background: #1b1b1b;
}
.cid-uM26GqhMSJ .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uM26GqhMSJ .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uM26GqhMSJ .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uM26GqhMSJ .carousel-control-next span {
  margin-left: 5px;
}
.cid-uM26GqhMSJ .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uM26GqhMSJ .close::before {
  content: '\e91a';
}
.cid-uM26GqhMSJ .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uM26GqhMSJ .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uM26GqhMSJ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uM26GqhMSJ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uM26GqhMSJ .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uM26GqhMSJ .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uM26GqhMSJ .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uM26GqhMSJ .carousel-indicators li.active,
.cid-uM26GqhMSJ .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uM26GqhMSJ .carousel-indicators li::after,
.cid-uM26GqhMSJ .carousel-indicators li::before {
  content: none;
}
.cid-uM26GqhMSJ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uM26GqhMSJ .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uM26GqhMSJ .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uM26GqhMSJ .carousel-indicators {
    display: none;
  }
}
.cid-uM26GqhMSJ .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uM26GqhMSJ .carousel-inner > .active {
  display: block;
}
.cid-uM26GqhMSJ .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uM26GqhMSJ .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uM26GqhMSJ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uM26GqhMSJ .carousel-control,
  .cid-uM26GqhMSJ .carousel-indicators,
  .cid-uM26GqhMSJ .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uM26GqhMSJ .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uM26GqhMSJ .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uM26GqhMSJ .carousel-indicators .active,
.cid-uM26GqhMSJ .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uM26GqhMSJ .carousel-indicators .active {
  background: #fff;
}
.cid-uM26GqhMSJ .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uM26GqhMSJ .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uM26GqhMSJ .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uM26GqhMSJ .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uM26GqhMSJ .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uM26GqhMSJ .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uM26GqhMSJ .carousel {
  width: 100%;
}
.cid-uM26GqhMSJ .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uM26GqhMSJ .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uM26GqhMSJ .modal.fade .modal-dialog,
.cid-uM26GqhMSJ .modal.in .modal-dialog {
  transform: none;
}
.cid-uM26GqhMSJ .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uM26GqhMSJ H6 {
  text-align: center;
}
.cid-uM26GtmIfW {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #0976aa;
}
.cid-uM26GtmIfW img {
  width: 120px;
  margin: auto;
}
.cid-uM26GtmIfW .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uM26GtmIfW .card {
    max-width: 12.5%;
  }
}
.cid-uM26GtmIfW .mbr-section-subtitle {
  color: #dbdbdb;
}
.cid-uM26GtmIfW .mbr-section-title {
  color: #ffffff;
}
.cid-uM26Guqkls {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-uM26Guqkls .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uM26Guqkls form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uM26Guqkls form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uM26Guqkls form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uM26Guqkls .mbr-section-title {
  color: #000000;
}
.cid-uM26Guqkls .mbr-section-subtitle {
  color: #000000;
}
.cid-uM26Gveh64 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uM26Gveh64 .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uM26Gveh64 .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-uM26Gveh64 .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uM26Gveh64 .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uM26Gveh64 .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #3ab752;
}
.cid-uM26GwnT9K {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uM26GwnT9K .google-map {
  height: 30rem;
  position: relative;
}
.cid-uM26GwnT9K .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uM26GwnT9K .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uM26GwnT9K .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uM26GwnT9K .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uM26MuwCiA {
  z-index: 1000;
  width: 100%;
}
.cid-uM26MuwCiA nav.navbar {
  position: fixed;
}
.cid-uM26MuwCiA .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-uM26MuwCiA .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uM26MuwCiA .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uM26MuwCiA .dropdown-item:hover,
.cid-uM26MuwCiA .dropdown-item:focus {
  background: #3ab752 !important;
  color: white !important;
}
.cid-uM26MuwCiA .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uM26MuwCiA .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uM26MuwCiA .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uM26MuwCiA .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uM26MuwCiA .nav-link {
  position: relative;
}
.cid-uM26MuwCiA .container {
  display: flex;
  margin: auto;
}
.cid-uM26MuwCiA .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uM26MuwCiA .dropdown-menu,
.cid-uM26MuwCiA .navbar.opened {
  background: #0976aa !important;
}
.cid-uM26MuwCiA .nav-item:focus,
.cid-uM26MuwCiA .nav-link:focus {
  outline: none;
}
.cid-uM26MuwCiA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uM26MuwCiA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uM26MuwCiA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uM26MuwCiA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uM26MuwCiA .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uM26MuwCiA .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uM26MuwCiA .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #0976aa;
}
.cid-uM26MuwCiA .navbar.opened {
  transition: all 0.3s;
}
.cid-uM26MuwCiA .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uM26MuwCiA .navbar .navbar-logo img {
  width: auto;
}
.cid-uM26MuwCiA .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uM26MuwCiA .navbar.collapsed {
  justify-content: center;
}
.cid-uM26MuwCiA .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uM26MuwCiA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uM26MuwCiA .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.9rem);
  }
}
.cid-uM26MuwCiA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uM26MuwCiA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uM26MuwCiA .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-uM26MuwCiA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uM26MuwCiA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uM26MuwCiA .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uM26MuwCiA .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uM26MuwCiA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uM26MuwCiA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uM26MuwCiA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uM26MuwCiA .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-uM26MuwCiA .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uM26MuwCiA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uM26MuwCiA .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uM26MuwCiA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uM26MuwCiA .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uM26MuwCiA .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uM26MuwCiA .navbar.navbar-short {
  min-height: 60px;
}
.cid-uM26MuwCiA .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uM26MuwCiA .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uM26MuwCiA .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-uM26MuwCiA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uM26MuwCiA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uM26MuwCiA .dropdown-item.active,
.cid-uM26MuwCiA .dropdown-item:active {
  background-color: transparent;
}
.cid-uM26MuwCiA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uM26MuwCiA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uM26MuwCiA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uM26MuwCiA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0976aa;
}
.cid-uM26MuwCiA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uM26MuwCiA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uM26MuwCiA ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uM26MuwCiA .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uM26MuwCiA button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uM26MuwCiA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uM26MuwCiA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uM26MuwCiA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uM26MuwCiA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uM26MuwCiA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uM26MuwCiA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uM26MuwCiA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uM26MuwCiA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uM26MuwCiA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uM26MuwCiA .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uM26MuwCiA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uM26MuwCiA .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-uM26MuwCiA .navbar {
    height: 70px;
  }
  .cid-uM26MuwCiA .navbar.opened {
    height: auto;
  }
  .cid-uM26MuwCiA .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uM26Mv37WO {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uM26Mv37WO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uM26Mv37WO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uM26Mv37WO H3 {
  text-align: center;
}
.cid-uM26Mv37WO .mbr-text,
.cid-uM26Mv37WO .mbr-section-btn {
  text-align: center;
}
.cid-uM26MvuiNu {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/fondo-3.jpg-612x448.jpg");
}
.cid-uM26MvuiNu .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uM26MvuiNu .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uM26MvuiNu .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uM26MvuiNu .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uM26MvuiNu .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uM26MvuiNu .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uM26MvuiNu .mbr-text,
.cid-uM26MvuiNu .mbr-section-btn {
  color: #fafafa;
  text-align: center;
}
.cid-uM26MvQxLq {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #005b98;
}
.cid-uM26MvQxLq img,
.cid-uM26MvQxLq .item-img {
  width: 100%;
}
.cid-uM26MvQxLq .item:focus,
.cid-uM26MvQxLq span:focus {
  outline: none;
}
.cid-uM26MvQxLq .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uM26MvQxLq .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #0976aa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uM26MvQxLq .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uM26MvQxLq .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uM26MvQxLq .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uM26MvQxLq .mbr-section-title {
  color: #fafafa;
}
.cid-uM26MvQxLq .mbr-text,
.cid-uM26MvQxLq .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uM26MvQxLq .item-title {
  text-align: left;
  color: #bbbbbb;
}
.cid-uM26MvQxLq .item-subtitle {
  text-align: left;
}
.cid-uM26Mwuas8 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/construccionesjp.jpg-2000x1255.jpg");
}
.cid-uM26Mwuas8 img,
.cid-uM26Mwuas8 .item-img {
  width: 100%;
  height: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-uM26Mwuas8 .item:focus,
.cid-uM26Mwuas8 span:focus {
  outline: none;
}
.cid-uM26Mwuas8 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uM26Mwuas8 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uM26Mwuas8 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uM26Mwuas8 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uM26Mwuas8 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uM26Mwuas8 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uM26Mwuas8 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uM26Mwuas8 .mbr-section-title {
  color: #141619;
}
.cid-uM26Mwuas8 .mbr-text,
.cid-uM26Mwuas8 .mbr-section-btn {
  text-align: left;
}
.cid-uM26Mwuas8 .item-title {
  text-align: center;
}
.cid-uM26Mwuas8 .item-subtitle {
  text-align: center;
}
.cid-uM26MxmHCZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bbbbbb;
}
.cid-uM26MxmHCZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uM26MxmHCZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uM26MxmHCZ .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-uM26MxmHCZ .currentcost {
  color: #232323;
}
.cid-uM26MxmHCZ .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uM26MxmHCZ .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uM26MxmHCZ .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uM26MxmHCZ .text-box {
    padding: 1rem;
  }
}
.cid-uM26MxmHCZ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uM26MxSQfO {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uM26MxSQfO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uM26MxSQfO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uM26MxSQfO .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uM26MxSQfO .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-uM26MxSQfO .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uM26MxSQfO .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uM26MxSQfO .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uM26MxSQfO .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uM26MxSQfO .carousel-control,
.cid-uM26MxSQfO .close {
  background: #1b1b1b;
}
.cid-uM26MxSQfO .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uM26MxSQfO .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uM26MxSQfO .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uM26MxSQfO .carousel-control-next span {
  margin-left: 5px;
}
.cid-uM26MxSQfO .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uM26MxSQfO .close::before {
  content: '\e91a';
}
.cid-uM26MxSQfO .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uM26MxSQfO .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uM26MxSQfO .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uM26MxSQfO .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uM26MxSQfO .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uM26MxSQfO .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uM26MxSQfO .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uM26MxSQfO .carousel-indicators li.active,
.cid-uM26MxSQfO .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uM26MxSQfO .carousel-indicators li::after,
.cid-uM26MxSQfO .carousel-indicators li::before {
  content: none;
}
.cid-uM26MxSQfO .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uM26MxSQfO .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uM26MxSQfO .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uM26MxSQfO .carousel-indicators {
    display: none;
  }
}
.cid-uM26MxSQfO .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uM26MxSQfO .carousel-inner > .active {
  display: block;
}
.cid-uM26MxSQfO .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uM26MxSQfO .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uM26MxSQfO .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uM26MxSQfO .carousel-control,
  .cid-uM26MxSQfO .carousel-indicators,
  .cid-uM26MxSQfO .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uM26MxSQfO .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uM26MxSQfO .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uM26MxSQfO .carousel-indicators .active,
.cid-uM26MxSQfO .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uM26MxSQfO .carousel-indicators .active {
  background: #fff;
}
.cid-uM26MxSQfO .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uM26MxSQfO .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uM26MxSQfO .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uM26MxSQfO .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uM26MxSQfO .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uM26MxSQfO .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uM26MxSQfO .carousel {
  width: 100%;
}
.cid-uM26MxSQfO .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uM26MxSQfO .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uM26MxSQfO .modal.fade .modal-dialog,
.cid-uM26MxSQfO .modal.in .modal-dialog {
  transform: none;
}
.cid-uM26MxSQfO .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uM26MxSQfO H6 {
  text-align: center;
}
.cid-uM26MzAGII {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #0976aa;
}
.cid-uM26MzAGII img {
  width: 120px;
  margin: auto;
}
.cid-uM26MzAGII .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uM26MzAGII .card {
    max-width: 12.5%;
  }
}
.cid-uM26MzAGII .mbr-section-subtitle {
  color: #dbdbdb;
}
.cid-uM26MzAGII .mbr-section-title {
  color: #ffffff;
}
.cid-uM26MA2mxg {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-uM26MA2mxg .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uM26MA2mxg form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uM26MA2mxg form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uM26MA2mxg form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uM26MA2mxg .mbr-section-title {
  color: #000000;
}
.cid-uM26MA2mxg .mbr-section-subtitle {
  color: #000000;
}
.cid-uM26MAtXIf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uM26MAtXIf .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uM26MAtXIf .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-uM26MAtXIf .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uM26MAtXIf .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uM26MAtXIf .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #3ab752;
}
.cid-uM26MB3ssH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uM26MB3ssH .google-map {
  height: 30rem;
  position: relative;
}
.cid-uM26MB3ssH .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uM26MB3ssH .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uM26MB3ssH .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uM26MB3ssH .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uM26PLQUGj {
  z-index: 1000;
  width: 100%;
}
.cid-uM26PLQUGj nav.navbar {
  position: fixed;
}
.cid-uM26PLQUGj .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-uM26PLQUGj .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uM26PLQUGj .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uM26PLQUGj .dropdown-item:hover,
.cid-uM26PLQUGj .dropdown-item:focus {
  background: #3ab752 !important;
  color: white !important;
}
.cid-uM26PLQUGj .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uM26PLQUGj .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uM26PLQUGj .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uM26PLQUGj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uM26PLQUGj .nav-link {
  position: relative;
}
.cid-uM26PLQUGj .container {
  display: flex;
  margin: auto;
}
.cid-uM26PLQUGj .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uM26PLQUGj .dropdown-menu,
.cid-uM26PLQUGj .navbar.opened {
  background: #0976aa !important;
}
.cid-uM26PLQUGj .nav-item:focus,
.cid-uM26PLQUGj .nav-link:focus {
  outline: none;
}
.cid-uM26PLQUGj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uM26PLQUGj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uM26PLQUGj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uM26PLQUGj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uM26PLQUGj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uM26PLQUGj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uM26PLQUGj .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #0976aa;
}
.cid-uM26PLQUGj .navbar.opened {
  transition: all 0.3s;
}
.cid-uM26PLQUGj .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uM26PLQUGj .navbar .navbar-logo img {
  width: auto;
}
.cid-uM26PLQUGj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uM26PLQUGj .navbar.collapsed {
  justify-content: center;
}
.cid-uM26PLQUGj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uM26PLQUGj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uM26PLQUGj .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.9rem);
  }
}
.cid-uM26PLQUGj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uM26PLQUGj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uM26PLQUGj .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-uM26PLQUGj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uM26PLQUGj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uM26PLQUGj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uM26PLQUGj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uM26PLQUGj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uM26PLQUGj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uM26PLQUGj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uM26PLQUGj .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-uM26PLQUGj .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uM26PLQUGj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uM26PLQUGj .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uM26PLQUGj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uM26PLQUGj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uM26PLQUGj .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uM26PLQUGj .navbar.navbar-short {
  min-height: 60px;
}
.cid-uM26PLQUGj .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uM26PLQUGj .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uM26PLQUGj .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-uM26PLQUGj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uM26PLQUGj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uM26PLQUGj .dropdown-item.active,
.cid-uM26PLQUGj .dropdown-item:active {
  background-color: transparent;
}
.cid-uM26PLQUGj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uM26PLQUGj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uM26PLQUGj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uM26PLQUGj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0976aa;
}
.cid-uM26PLQUGj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uM26PLQUGj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uM26PLQUGj ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uM26PLQUGj .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uM26PLQUGj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uM26PLQUGj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uM26PLQUGj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uM26PLQUGj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uM26PLQUGj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uM26PLQUGj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uM26PLQUGj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uM26PLQUGj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uM26PLQUGj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uM26PLQUGj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uM26PLQUGj .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uM26PLQUGj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uM26PLQUGj .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-uM26PLQUGj .navbar {
    height: 70px;
  }
  .cid-uM26PLQUGj .navbar.opened {
    height: auto;
  }
  .cid-uM26PLQUGj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uM26PMmEiV {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uM26PMmEiV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uM26PMmEiV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uM26PMmEiV H3 {
  text-align: center;
}
.cid-uM26PMmEiV .mbr-text,
.cid-uM26PMmEiV .mbr-section-btn {
  text-align: center;
}
.cid-uM26PMHOxd {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/fondo-3.jpg-612x448.jpg");
}
.cid-uM26PMHOxd .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uM26PMHOxd .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uM26PMHOxd .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uM26PMHOxd .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uM26PMHOxd .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uM26PMHOxd .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uM26PMHOxd .mbr-text,
.cid-uM26PMHOxd .mbr-section-btn {
  color: #fafafa;
  text-align: center;
}
.cid-uM26PN5XJR {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #005b98;
}
.cid-uM26PN5XJR img,
.cid-uM26PN5XJR .item-img {
  width: 100%;
}
.cid-uM26PN5XJR .item:focus,
.cid-uM26PN5XJR span:focus {
  outline: none;
}
.cid-uM26PN5XJR .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uM26PN5XJR .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #0976aa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uM26PN5XJR .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uM26PN5XJR .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uM26PN5XJR .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uM26PN5XJR .mbr-section-title {
  color: #fafafa;
}
.cid-uM26PN5XJR .mbr-text,
.cid-uM26PN5XJR .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uM26PN5XJR .item-title {
  text-align: left;
  color: #bbbbbb;
}
.cid-uM26PN5XJR .item-subtitle {
  text-align: left;
}
.cid-uM26PNInNz {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/construccionesjp.jpg-2000x1255.jpg");
}
.cid-uM26PNInNz img,
.cid-uM26PNInNz .item-img {
  width: 100%;
  height: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-uM26PNInNz .item:focus,
.cid-uM26PNInNz span:focus {
  outline: none;
}
.cid-uM26PNInNz .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uM26PNInNz .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uM26PNInNz .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uM26PNInNz .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uM26PNInNz .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uM26PNInNz .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uM26PNInNz .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uM26PNInNz .mbr-section-title {
  color: #141619;
}
.cid-uM26PNInNz .mbr-text,
.cid-uM26PNInNz .mbr-section-btn {
  text-align: left;
}
.cid-uM26PNInNz .item-title {
  text-align: center;
}
.cid-uM26PNInNz .item-subtitle {
  text-align: center;
}
.cid-uM26POxLSU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bbbbbb;
}
.cid-uM26POxLSU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uM26POxLSU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uM26POxLSU .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-uM26POxLSU .currentcost {
  color: #232323;
}
.cid-uM26POxLSU .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uM26POxLSU .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uM26POxLSU .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uM26POxLSU .text-box {
    padding: 1rem;
  }
}
.cid-uM26POxLSU .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uM26PP3DXc {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uM26PP3DXc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uM26PP3DXc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uM26PP3DXc .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uM26PP3DXc .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-uM26PP3DXc .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uM26PP3DXc .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uM26PP3DXc .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uM26PP3DXc .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uM26PP3DXc .carousel-control,
.cid-uM26PP3DXc .close {
  background: #1b1b1b;
}
.cid-uM26PP3DXc .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uM26PP3DXc .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uM26PP3DXc .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uM26PP3DXc .carousel-control-next span {
  margin-left: 5px;
}
.cid-uM26PP3DXc .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uM26PP3DXc .close::before {
  content: '\e91a';
}
.cid-uM26PP3DXc .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uM26PP3DXc .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uM26PP3DXc .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uM26PP3DXc .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uM26PP3DXc .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uM26PP3DXc .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uM26PP3DXc .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uM26PP3DXc .carousel-indicators li.active,
.cid-uM26PP3DXc .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uM26PP3DXc .carousel-indicators li::after,
.cid-uM26PP3DXc .carousel-indicators li::before {
  content: none;
}
.cid-uM26PP3DXc .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uM26PP3DXc .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uM26PP3DXc .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uM26PP3DXc .carousel-indicators {
    display: none;
  }
}
.cid-uM26PP3DXc .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uM26PP3DXc .carousel-inner > .active {
  display: block;
}
.cid-uM26PP3DXc .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uM26PP3DXc .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uM26PP3DXc .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uM26PP3DXc .carousel-control,
  .cid-uM26PP3DXc .carousel-indicators,
  .cid-uM26PP3DXc .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uM26PP3DXc .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uM26PP3DXc .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uM26PP3DXc .carousel-indicators .active,
.cid-uM26PP3DXc .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uM26PP3DXc .carousel-indicators .active {
  background: #fff;
}
.cid-uM26PP3DXc .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uM26PP3DXc .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uM26PP3DXc .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uM26PP3DXc .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uM26PP3DXc .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uM26PP3DXc .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uM26PP3DXc .carousel {
  width: 100%;
}
.cid-uM26PP3DXc .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uM26PP3DXc .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uM26PP3DXc .modal.fade .modal-dialog,
.cid-uM26PP3DXc .modal.in .modal-dialog {
  transform: none;
}
.cid-uM26PP3DXc .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uM26PP3DXc H6 {
  text-align: center;
}
.cid-uM26PQEe58 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #0976aa;
}
.cid-uM26PQEe58 img {
  width: 120px;
  margin: auto;
}
.cid-uM26PQEe58 .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uM26PQEe58 .card {
    max-width: 12.5%;
  }
}
.cid-uM26PQEe58 .mbr-section-subtitle {
  color: #dbdbdb;
}
.cid-uM26PQEe58 .mbr-section-title {
  color: #ffffff;
}
.cid-uM26PR6POl {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-uM26PR6POl .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uM26PR6POl form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uM26PR6POl form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uM26PR6POl form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uM26PR6POl .mbr-section-title {
  color: #000000;
}
.cid-uM26PR6POl .mbr-section-subtitle {
  color: #000000;
}
.cid-uM26PRxonO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uM26PRxonO .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uM26PRxonO .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-uM26PRxonO .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uM26PRxonO .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uM26PRxonO .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #3ab752;
}
.cid-uM26PSayfH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uM26PSayfH .google-map {
  height: 30rem;
  position: relative;
}
.cid-uM26PSayfH .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uM26PSayfH .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uM26PSayfH .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uM26PSayfH .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uM26Zhaax7 {
  z-index: 1000;
  width: 100%;
}
.cid-uM26Zhaax7 nav.navbar {
  position: fixed;
}
.cid-uM26Zhaax7 .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-uM26Zhaax7 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uM26Zhaax7 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uM26Zhaax7 .dropdown-item:hover,
.cid-uM26Zhaax7 .dropdown-item:focus {
  background: #3ab752 !important;
  color: white !important;
}
.cid-uM26Zhaax7 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uM26Zhaax7 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uM26Zhaax7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uM26Zhaax7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uM26Zhaax7 .nav-link {
  position: relative;
}
.cid-uM26Zhaax7 .container {
  display: flex;
  margin: auto;
}
.cid-uM26Zhaax7 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uM26Zhaax7 .dropdown-menu,
.cid-uM26Zhaax7 .navbar.opened {
  background: #0976aa !important;
}
.cid-uM26Zhaax7 .nav-item:focus,
.cid-uM26Zhaax7 .nav-link:focus {
  outline: none;
}
.cid-uM26Zhaax7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uM26Zhaax7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uM26Zhaax7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uM26Zhaax7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uM26Zhaax7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uM26Zhaax7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uM26Zhaax7 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #0976aa;
}
.cid-uM26Zhaax7 .navbar.opened {
  transition: all 0.3s;
}
.cid-uM26Zhaax7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uM26Zhaax7 .navbar .navbar-logo img {
  width: auto;
}
.cid-uM26Zhaax7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uM26Zhaax7 .navbar.collapsed {
  justify-content: center;
}
.cid-uM26Zhaax7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uM26Zhaax7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uM26Zhaax7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.9rem);
  }
}
.cid-uM26Zhaax7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uM26Zhaax7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uM26Zhaax7 .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-uM26Zhaax7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uM26Zhaax7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uM26Zhaax7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uM26Zhaax7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uM26Zhaax7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uM26Zhaax7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uM26Zhaax7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uM26Zhaax7 .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-uM26Zhaax7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uM26Zhaax7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uM26Zhaax7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uM26Zhaax7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uM26Zhaax7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uM26Zhaax7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uM26Zhaax7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uM26Zhaax7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uM26Zhaax7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uM26Zhaax7 .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-uM26Zhaax7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uM26Zhaax7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uM26Zhaax7 .dropdown-item.active,
.cid-uM26Zhaax7 .dropdown-item:active {
  background-color: transparent;
}
.cid-uM26Zhaax7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uM26Zhaax7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uM26Zhaax7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uM26Zhaax7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0976aa;
}
.cid-uM26Zhaax7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uM26Zhaax7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uM26Zhaax7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uM26Zhaax7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uM26Zhaax7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uM26Zhaax7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uM26Zhaax7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uM26Zhaax7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uM26Zhaax7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uM26Zhaax7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uM26Zhaax7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uM26Zhaax7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uM26Zhaax7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uM26Zhaax7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uM26Zhaax7 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uM26Zhaax7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uM26Zhaax7 .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-uM26Zhaax7 .navbar {
    height: 70px;
  }
  .cid-uM26Zhaax7 .navbar.opened {
    height: auto;
  }
  .cid-uM26Zhaax7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uM26ZhHGv2 {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uM26ZhHGv2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uM26ZhHGv2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uM26ZhHGv2 H3 {
  text-align: center;
}
.cid-uM26ZhHGv2 .mbr-text,
.cid-uM26ZhHGv2 .mbr-section-btn {
  text-align: center;
}
.cid-uM26Zi6XPf {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/fondo-3.jpg-612x448.jpg");
}
.cid-uM26Zi6XPf .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uM26Zi6XPf .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uM26Zi6XPf .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uM26Zi6XPf .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uM26Zi6XPf .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uM26Zi6XPf .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uM26Zi6XPf .mbr-text,
.cid-uM26Zi6XPf .mbr-section-btn {
  color: #fafafa;
  text-align: center;
}
.cid-uM26ZiAPdc {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #005b98;
}
.cid-uM26ZiAPdc img,
.cid-uM26ZiAPdc .item-img {
  width: 100%;
}
.cid-uM26ZiAPdc .item:focus,
.cid-uM26ZiAPdc span:focus {
  outline: none;
}
.cid-uM26ZiAPdc .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uM26ZiAPdc .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #0976aa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uM26ZiAPdc .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uM26ZiAPdc .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uM26ZiAPdc .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uM26ZiAPdc .mbr-section-title {
  color: #fafafa;
}
.cid-uM26ZiAPdc .mbr-text,
.cid-uM26ZiAPdc .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uM26ZiAPdc .item-title {
  text-align: left;
  color: #bbbbbb;
}
.cid-uM26ZiAPdc .item-subtitle {
  text-align: left;
}
.cid-uM26Zjdd1e {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/construccionesjp.jpg-2000x1255.jpg");
}
.cid-uM26Zjdd1e img,
.cid-uM26Zjdd1e .item-img {
  width: 100%;
  height: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-uM26Zjdd1e .item:focus,
.cid-uM26Zjdd1e span:focus {
  outline: none;
}
.cid-uM26Zjdd1e .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uM26Zjdd1e .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uM26Zjdd1e .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uM26Zjdd1e .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uM26Zjdd1e .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uM26Zjdd1e .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uM26Zjdd1e .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uM26Zjdd1e .mbr-section-title {
  color: #141619;
}
.cid-uM26Zjdd1e .mbr-text,
.cid-uM26Zjdd1e .mbr-section-btn {
  text-align: left;
}
.cid-uM26Zjdd1e .item-title {
  text-align: center;
}
.cid-uM26Zjdd1e .item-subtitle {
  text-align: center;
}
.cid-uM26Zk4k6q {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bbbbbb;
}
.cid-uM26Zk4k6q .mbr-fallback-image.disabled {
  display: none;
}
.cid-uM26Zk4k6q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uM26Zk4k6q .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-uM26Zk4k6q .currentcost {
  color: #232323;
}
.cid-uM26Zk4k6q .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uM26Zk4k6q .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uM26Zk4k6q .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uM26Zk4k6q .text-box {
    padding: 1rem;
  }
}
.cid-uM26Zk4k6q .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uM26ZkuV28 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uM26ZkuV28 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uM26ZkuV28 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uM26ZkuV28 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uM26ZkuV28 .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-uM26ZkuV28 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uM26ZkuV28 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uM26ZkuV28 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uM26ZkuV28 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uM26ZkuV28 .carousel-control,
.cid-uM26ZkuV28 .close {
  background: #1b1b1b;
}
.cid-uM26ZkuV28 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uM26ZkuV28 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uM26ZkuV28 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uM26ZkuV28 .carousel-control-next span {
  margin-left: 5px;
}
.cid-uM26ZkuV28 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uM26ZkuV28 .close::before {
  content: '\e91a';
}
.cid-uM26ZkuV28 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uM26ZkuV28 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uM26ZkuV28 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uM26ZkuV28 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uM26ZkuV28 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uM26ZkuV28 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uM26ZkuV28 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uM26ZkuV28 .carousel-indicators li.active,
.cid-uM26ZkuV28 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uM26ZkuV28 .carousel-indicators li::after,
.cid-uM26ZkuV28 .carousel-indicators li::before {
  content: none;
}
.cid-uM26ZkuV28 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uM26ZkuV28 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uM26ZkuV28 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uM26ZkuV28 .carousel-indicators {
    display: none;
  }
}
.cid-uM26ZkuV28 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uM26ZkuV28 .carousel-inner > .active {
  display: block;
}
.cid-uM26ZkuV28 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uM26ZkuV28 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uM26ZkuV28 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uM26ZkuV28 .carousel-control,
  .cid-uM26ZkuV28 .carousel-indicators,
  .cid-uM26ZkuV28 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uM26ZkuV28 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uM26ZkuV28 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uM26ZkuV28 .carousel-indicators .active,
.cid-uM26ZkuV28 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uM26ZkuV28 .carousel-indicators .active {
  background: #fff;
}
.cid-uM26ZkuV28 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uM26ZkuV28 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uM26ZkuV28 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uM26ZkuV28 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uM26ZkuV28 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uM26ZkuV28 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uM26ZkuV28 .carousel {
  width: 100%;
}
.cid-uM26ZkuV28 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uM26ZkuV28 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uM26ZkuV28 .modal.fade .modal-dialog,
.cid-uM26ZkuV28 .modal.in .modal-dialog {
  transform: none;
}
.cid-uM26ZkuV28 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uM26ZkuV28 H6 {
  text-align: center;
}
.cid-uM26Zm6HmS {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #0976aa;
}
.cid-uM26Zm6HmS img {
  width: 120px;
  margin: auto;
}
.cid-uM26Zm6HmS .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uM26Zm6HmS .card {
    max-width: 12.5%;
  }
}
.cid-uM26Zm6HmS .mbr-section-subtitle {
  color: #dbdbdb;
}
.cid-uM26Zm6HmS .mbr-section-title {
  color: #ffffff;
}
.cid-uM26ZmEQrl {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-uM26ZmEQrl .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uM26ZmEQrl form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uM26ZmEQrl form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uM26ZmEQrl form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uM26ZmEQrl .mbr-section-title {
  color: #000000;
}
.cid-uM26ZmEQrl .mbr-section-subtitle {
  color: #000000;
}
.cid-uM26Zn2amq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uM26Zn2amq .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uM26Zn2amq .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-uM26Zn2amq .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uM26Zn2amq .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uM26Zn2amq .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #3ab752;
}
.cid-uM26ZnyLr8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uM26ZnyLr8 .google-map {
  height: 30rem;
  position: relative;
}
.cid-uM26ZnyLr8 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uM26ZnyLr8 .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uM26ZnyLr8 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uM26ZnyLr8 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uM273sBfUp {
  z-index: 1000;
  width: 100%;
}
.cid-uM273sBfUp nav.navbar {
  position: fixed;
}
.cid-uM273sBfUp .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-uM273sBfUp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uM273sBfUp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uM273sBfUp .dropdown-item:hover,
.cid-uM273sBfUp .dropdown-item:focus {
  background: #3ab752 !important;
  color: white !important;
}
.cid-uM273sBfUp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uM273sBfUp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uM273sBfUp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uM273sBfUp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uM273sBfUp .nav-link {
  position: relative;
}
.cid-uM273sBfUp .container {
  display: flex;
  margin: auto;
}
.cid-uM273sBfUp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uM273sBfUp .dropdown-menu,
.cid-uM273sBfUp .navbar.opened {
  background: #0976aa !important;
}
.cid-uM273sBfUp .nav-item:focus,
.cid-uM273sBfUp .nav-link:focus {
  outline: none;
}
.cid-uM273sBfUp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uM273sBfUp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uM273sBfUp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uM273sBfUp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uM273sBfUp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uM273sBfUp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uM273sBfUp .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #0976aa;
}
.cid-uM273sBfUp .navbar.opened {
  transition: all 0.3s;
}
.cid-uM273sBfUp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uM273sBfUp .navbar .navbar-logo img {
  width: auto;
}
.cid-uM273sBfUp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uM273sBfUp .navbar.collapsed {
  justify-content: center;
}
.cid-uM273sBfUp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uM273sBfUp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uM273sBfUp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.9rem);
  }
}
.cid-uM273sBfUp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uM273sBfUp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uM273sBfUp .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-uM273sBfUp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uM273sBfUp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uM273sBfUp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uM273sBfUp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uM273sBfUp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uM273sBfUp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uM273sBfUp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uM273sBfUp .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-uM273sBfUp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uM273sBfUp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uM273sBfUp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uM273sBfUp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uM273sBfUp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uM273sBfUp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uM273sBfUp .navbar.navbar-short {
  min-height: 60px;
}
.cid-uM273sBfUp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uM273sBfUp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uM273sBfUp .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-uM273sBfUp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uM273sBfUp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uM273sBfUp .dropdown-item.active,
.cid-uM273sBfUp .dropdown-item:active {
  background-color: transparent;
}
.cid-uM273sBfUp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uM273sBfUp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uM273sBfUp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uM273sBfUp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0976aa;
}
.cid-uM273sBfUp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uM273sBfUp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uM273sBfUp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uM273sBfUp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uM273sBfUp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uM273sBfUp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uM273sBfUp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uM273sBfUp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uM273sBfUp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uM273sBfUp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uM273sBfUp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uM273sBfUp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uM273sBfUp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uM273sBfUp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uM273sBfUp .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uM273sBfUp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uM273sBfUp .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-uM273sBfUp .navbar {
    height: 70px;
  }
  .cid-uM273sBfUp .navbar.opened {
    height: auto;
  }
  .cid-uM273sBfUp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uM273t5duG {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uM273t5duG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uM273t5duG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uM273t5duG H3 {
  text-align: center;
}
.cid-uM273t5duG .mbr-text,
.cid-uM273t5duG .mbr-section-btn {
  text-align: center;
}
.cid-uM273tnOvr {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/fondo-3.jpg-612x448.jpg");
}
.cid-uM273tnOvr .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uM273tnOvr .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uM273tnOvr .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uM273tnOvr .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uM273tnOvr .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uM273tnOvr .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uM273tnOvr .mbr-text,
.cid-uM273tnOvr .mbr-section-btn {
  color: #fafafa;
  text-align: center;
}
.cid-uM273tIOhs {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #005b98;
}
.cid-uM273tIOhs img,
.cid-uM273tIOhs .item-img {
  width: 100%;
}
.cid-uM273tIOhs .item:focus,
.cid-uM273tIOhs span:focus {
  outline: none;
}
.cid-uM273tIOhs .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uM273tIOhs .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #0976aa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uM273tIOhs .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uM273tIOhs .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uM273tIOhs .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uM273tIOhs .mbr-section-title {
  color: #fafafa;
}
.cid-uM273tIOhs .mbr-text,
.cid-uM273tIOhs .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uM273tIOhs .item-title {
  text-align: left;
  color: #bbbbbb;
}
.cid-uM273tIOhs .item-subtitle {
  text-align: left;
}
.cid-uM273uqEsN {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/construccionesjp.jpg-2000x1255.jpg");
}
.cid-uM273uqEsN img,
.cid-uM273uqEsN .item-img {
  width: 100%;
  height: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-uM273uqEsN .item:focus,
.cid-uM273uqEsN span:focus {
  outline: none;
}
.cid-uM273uqEsN .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uM273uqEsN .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uM273uqEsN .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uM273uqEsN .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uM273uqEsN .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uM273uqEsN .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uM273uqEsN .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uM273uqEsN .mbr-section-title {
  color: #141619;
}
.cid-uM273uqEsN .mbr-text,
.cid-uM273uqEsN .mbr-section-btn {
  text-align: left;
}
.cid-uM273uqEsN .item-title {
  text-align: center;
}
.cid-uM273uqEsN .item-subtitle {
  text-align: center;
}
.cid-uM273vbJ9K {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bbbbbb;
}
.cid-uM273vbJ9K .mbr-fallback-image.disabled {
  display: none;
}
.cid-uM273vbJ9K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uM273vbJ9K .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-uM273vbJ9K .currentcost {
  color: #232323;
}
.cid-uM273vbJ9K .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uM273vbJ9K .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uM273vbJ9K .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uM273vbJ9K .text-box {
    padding: 1rem;
  }
}
.cid-uM273vbJ9K .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uM273vy6SP {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uM273vy6SP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uM273vy6SP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uM273vy6SP .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uM273vy6SP .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-uM273vy6SP .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uM273vy6SP .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uM273vy6SP .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uM273vy6SP .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uM273vy6SP .carousel-control,
.cid-uM273vy6SP .close {
  background: #1b1b1b;
}
.cid-uM273vy6SP .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uM273vy6SP .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uM273vy6SP .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uM273vy6SP .carousel-control-next span {
  margin-left: 5px;
}
.cid-uM273vy6SP .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uM273vy6SP .close::before {
  content: '\e91a';
}
.cid-uM273vy6SP .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uM273vy6SP .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uM273vy6SP .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uM273vy6SP .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uM273vy6SP .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uM273vy6SP .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uM273vy6SP .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uM273vy6SP .carousel-indicators li.active,
.cid-uM273vy6SP .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uM273vy6SP .carousel-indicators li::after,
.cid-uM273vy6SP .carousel-indicators li::before {
  content: none;
}
.cid-uM273vy6SP .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uM273vy6SP .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uM273vy6SP .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uM273vy6SP .carousel-indicators {
    display: none;
  }
}
.cid-uM273vy6SP .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uM273vy6SP .carousel-inner > .active {
  display: block;
}
.cid-uM273vy6SP .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uM273vy6SP .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uM273vy6SP .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uM273vy6SP .carousel-control,
  .cid-uM273vy6SP .carousel-indicators,
  .cid-uM273vy6SP .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uM273vy6SP .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uM273vy6SP .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uM273vy6SP .carousel-indicators .active,
.cid-uM273vy6SP .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uM273vy6SP .carousel-indicators .active {
  background: #fff;
}
.cid-uM273vy6SP .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uM273vy6SP .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uM273vy6SP .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uM273vy6SP .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uM273vy6SP .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uM273vy6SP .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uM273vy6SP .carousel {
  width: 100%;
}
.cid-uM273vy6SP .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uM273vy6SP .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uM273vy6SP .modal.fade .modal-dialog,
.cid-uM273vy6SP .modal.in .modal-dialog {
  transform: none;
}
.cid-uM273vy6SP .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uM273vy6SP H6 {
  text-align: center;
}
.cid-uM273x7PgI {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #0976aa;
}
.cid-uM273x7PgI img {
  width: 120px;
  margin: auto;
}
.cid-uM273x7PgI .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uM273x7PgI .card {
    max-width: 12.5%;
  }
}
.cid-uM273x7PgI .mbr-section-subtitle {
  color: #dbdbdb;
}
.cid-uM273x7PgI .mbr-section-title {
  color: #ffffff;
}
.cid-uM273xCBhr {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-uM273xCBhr .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uM273xCBhr form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uM273xCBhr form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uM273xCBhr form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uM273xCBhr .mbr-section-title {
  color: #000000;
}
.cid-uM273xCBhr .mbr-section-subtitle {
  color: #000000;
}
.cid-uM273y1Lbg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uM273y1Lbg .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uM273y1Lbg .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-uM273y1Lbg .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uM273y1Lbg .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uM273y1Lbg .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #3ab752;
}
.cid-uM273ywPt2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uM273ywPt2 .google-map {
  height: 30rem;
  position: relative;
}
.cid-uM273ywPt2 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uM273ywPt2 .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uM273ywPt2 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uM273ywPt2 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uMNeO12Cyc {
  z-index: 1000;
  width: 100%;
}
.cid-uMNeO12Cyc nav.navbar {
  position: fixed;
}
.cid-uMNeO12Cyc .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-uMNeO12Cyc .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uMNeO12Cyc .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uMNeO12Cyc .dropdown-item:hover,
.cid-uMNeO12Cyc .dropdown-item:focus {
  background: #3ab752 !important;
  color: white !important;
}
.cid-uMNeO12Cyc .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uMNeO12Cyc .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uMNeO12Cyc .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uMNeO12Cyc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uMNeO12Cyc .nav-link {
  position: relative;
}
.cid-uMNeO12Cyc .container {
  display: flex;
  margin: auto;
}
.cid-uMNeO12Cyc .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uMNeO12Cyc .dropdown-menu,
.cid-uMNeO12Cyc .navbar.opened {
  background: #0976aa !important;
}
.cid-uMNeO12Cyc .nav-item:focus,
.cid-uMNeO12Cyc .nav-link:focus {
  outline: none;
}
.cid-uMNeO12Cyc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uMNeO12Cyc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uMNeO12Cyc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uMNeO12Cyc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMNeO12Cyc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMNeO12Cyc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMNeO12Cyc .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #0976aa;
}
.cid-uMNeO12Cyc .navbar.opened {
  transition: all 0.3s;
}
.cid-uMNeO12Cyc .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uMNeO12Cyc .navbar .navbar-logo img {
  width: auto;
}
.cid-uMNeO12Cyc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uMNeO12Cyc .navbar.collapsed {
  justify-content: center;
}
.cid-uMNeO12Cyc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uMNeO12Cyc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uMNeO12Cyc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.9rem);
  }
}
.cid-uMNeO12Cyc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMNeO12Cyc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMNeO12Cyc .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-uMNeO12Cyc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMNeO12Cyc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uMNeO12Cyc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uMNeO12Cyc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMNeO12Cyc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMNeO12Cyc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMNeO12Cyc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uMNeO12Cyc .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-uMNeO12Cyc .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uMNeO12Cyc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uMNeO12Cyc .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uMNeO12Cyc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uMNeO12Cyc .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uMNeO12Cyc .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uMNeO12Cyc .navbar.navbar-short {
  min-height: 60px;
}
.cid-uMNeO12Cyc .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uMNeO12Cyc .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uMNeO12Cyc .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-uMNeO12Cyc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uMNeO12Cyc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMNeO12Cyc .dropdown-item.active,
.cid-uMNeO12Cyc .dropdown-item:active {
  background-color: transparent;
}
.cid-uMNeO12Cyc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMNeO12Cyc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMNeO12Cyc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMNeO12Cyc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0976aa;
}
.cid-uMNeO12Cyc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uMNeO12Cyc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMNeO12Cyc ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uMNeO12Cyc .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uMNeO12Cyc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uMNeO12Cyc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uMNeO12Cyc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uMNeO12Cyc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMNeO12Cyc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMNeO12Cyc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uMNeO12Cyc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMNeO12Cyc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMNeO12Cyc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMNeO12Cyc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMNeO12Cyc .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uMNeO12Cyc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uMNeO12Cyc .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-uMNeO12Cyc .navbar {
    height: 70px;
  }
  .cid-uMNeO12Cyc .navbar.opened {
    height: auto;
  }
  .cid-uMNeO12Cyc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMNeO1x1CA {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uMNeO1x1CA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMNeO1x1CA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMNeO1x1CA H3 {
  text-align: center;
}
.cid-uMNeO1x1CA .mbr-text,
.cid-uMNeO1x1CA .mbr-section-btn {
  text-align: center;
}
.cid-uMNeO1PWg3 {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/fondo-3.jpg-612x448.jpg");
}
.cid-uMNeO1PWg3 .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uMNeO1PWg3 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uMNeO1PWg3 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uMNeO1PWg3 .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uMNeO1PWg3 .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uMNeO1PWg3 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uMNeO1PWg3 .mbr-text,
.cid-uMNeO1PWg3 .mbr-section-btn {
  color: #fafafa;
  text-align: center;
}
.cid-uMNeO2bx2Q {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #005b98;
}
.cid-uMNeO2bx2Q img,
.cid-uMNeO2bx2Q .item-img {
  width: 100%;
}
.cid-uMNeO2bx2Q .item:focus,
.cid-uMNeO2bx2Q span:focus {
  outline: none;
}
.cid-uMNeO2bx2Q .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uMNeO2bx2Q .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #0976aa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uMNeO2bx2Q .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uMNeO2bx2Q .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uMNeO2bx2Q .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uMNeO2bx2Q .mbr-section-title {
  color: #fafafa;
}
.cid-uMNeO2bx2Q .mbr-text,
.cid-uMNeO2bx2Q .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uMNeO2bx2Q .item-title {
  text-align: left;
  color: #bbbbbb;
}
.cid-uMNeO2bx2Q .item-subtitle {
  text-align: left;
}
.cid-uMNeO2XNe8 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/construccionesjp.jpg-2000x1255.jpg");
}
.cid-uMNeO2XNe8 img,
.cid-uMNeO2XNe8 .item-img {
  width: 100%;
  height: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-uMNeO2XNe8 .item:focus,
.cid-uMNeO2XNe8 span:focus {
  outline: none;
}
.cid-uMNeO2XNe8 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uMNeO2XNe8 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uMNeO2XNe8 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uMNeO2XNe8 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uMNeO2XNe8 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uMNeO2XNe8 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uMNeO2XNe8 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uMNeO2XNe8 .mbr-section-title {
  color: #141619;
}
.cid-uMNeO2XNe8 .mbr-text,
.cid-uMNeO2XNe8 .mbr-section-btn {
  text-align: left;
}
.cid-uMNeO2XNe8 .item-title {
  text-align: center;
}
.cid-uMNeO2XNe8 .item-subtitle {
  text-align: center;
}
.cid-uMNeO3NbVI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bbbbbb;
}
.cid-uMNeO3NbVI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMNeO3NbVI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMNeO3NbVI .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-uMNeO3NbVI .currentcost {
  color: #232323;
}
.cid-uMNeO3NbVI .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uMNeO3NbVI .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uMNeO3NbVI .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uMNeO3NbVI .text-box {
    padding: 1rem;
  }
}
.cid-uMNeO3NbVI .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uMNeO4fQsk {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uMNeO4fQsk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMNeO4fQsk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMNeO4fQsk .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uMNeO4fQsk .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-uMNeO4fQsk .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uMNeO4fQsk .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uMNeO4fQsk .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uMNeO4fQsk .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uMNeO4fQsk .carousel-control,
.cid-uMNeO4fQsk .close {
  background: #1b1b1b;
}
.cid-uMNeO4fQsk .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uMNeO4fQsk .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uMNeO4fQsk .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uMNeO4fQsk .carousel-control-next span {
  margin-left: 5px;
}
.cid-uMNeO4fQsk .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uMNeO4fQsk .close::before {
  content: '\e91a';
}
.cid-uMNeO4fQsk .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uMNeO4fQsk .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uMNeO4fQsk .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMNeO4fQsk .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uMNeO4fQsk .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uMNeO4fQsk .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uMNeO4fQsk .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uMNeO4fQsk .carousel-indicators li.active,
.cid-uMNeO4fQsk .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uMNeO4fQsk .carousel-indicators li::after,
.cid-uMNeO4fQsk .carousel-indicators li::before {
  content: none;
}
.cid-uMNeO4fQsk .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uMNeO4fQsk .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uMNeO4fQsk .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uMNeO4fQsk .carousel-indicators {
    display: none;
  }
}
.cid-uMNeO4fQsk .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uMNeO4fQsk .carousel-inner > .active {
  display: block;
}
.cid-uMNeO4fQsk .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMNeO4fQsk .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uMNeO4fQsk .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uMNeO4fQsk .carousel-control,
  .cid-uMNeO4fQsk .carousel-indicators,
  .cid-uMNeO4fQsk .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uMNeO4fQsk .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uMNeO4fQsk .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uMNeO4fQsk .carousel-indicators .active,
.cid-uMNeO4fQsk .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uMNeO4fQsk .carousel-indicators .active {
  background: #fff;
}
.cid-uMNeO4fQsk .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uMNeO4fQsk .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uMNeO4fQsk .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uMNeO4fQsk .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uMNeO4fQsk .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uMNeO4fQsk .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uMNeO4fQsk .carousel {
  width: 100%;
}
.cid-uMNeO4fQsk .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uMNeO4fQsk .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uMNeO4fQsk .modal.fade .modal-dialog,
.cid-uMNeO4fQsk .modal.in .modal-dialog {
  transform: none;
}
.cid-uMNeO4fQsk .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uMNeO4fQsk H6 {
  text-align: center;
}
.cid-uMNeO5NdU6 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #0976aa;
}
.cid-uMNeO5NdU6 img {
  width: 120px;
  margin: auto;
}
.cid-uMNeO5NdU6 .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uMNeO5NdU6 .card {
    max-width: 12.5%;
  }
}
.cid-uMNeO5NdU6 .mbr-section-subtitle {
  color: #dbdbdb;
}
.cid-uMNeO5NdU6 .mbr-section-title {
  color: #ffffff;
}
.cid-uMNeO6hMGf {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-uMNeO6hMGf .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uMNeO6hMGf form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uMNeO6hMGf form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uMNeO6hMGf form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uMNeO6hMGf .mbr-section-title {
  color: #000000;
}
.cid-uMNeO6hMGf .mbr-section-subtitle {
  color: #000000;
}
.cid-uMNeO6ETDj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uMNeO6ETDj .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uMNeO6ETDj .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-uMNeO6ETDj .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uMNeO6ETDj .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uMNeO6ETDj .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #3ab752;
}
.cid-uMNeO7b1WI {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uMNeO7b1WI .google-map {
  height: 30rem;
  position: relative;
}
.cid-uMNeO7b1WI .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uMNeO7b1WI .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uMNeO7b1WI .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uMNeO7b1WI .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uMNeWR4H5J {
  z-index: 1000;
  width: 100%;
}
.cid-uMNeWR4H5J nav.navbar {
  position: fixed;
}
.cid-uMNeWR4H5J .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-uMNeWR4H5J .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uMNeWR4H5J .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uMNeWR4H5J .dropdown-item:hover,
.cid-uMNeWR4H5J .dropdown-item:focus {
  background: #3ab752 !important;
  color: white !important;
}
.cid-uMNeWR4H5J .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uMNeWR4H5J .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uMNeWR4H5J .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uMNeWR4H5J .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uMNeWR4H5J .nav-link {
  position: relative;
}
.cid-uMNeWR4H5J .container {
  display: flex;
  margin: auto;
}
.cid-uMNeWR4H5J .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uMNeWR4H5J .dropdown-menu,
.cid-uMNeWR4H5J .navbar.opened {
  background: #0976aa !important;
}
.cid-uMNeWR4H5J .nav-item:focus,
.cid-uMNeWR4H5J .nav-link:focus {
  outline: none;
}
.cid-uMNeWR4H5J .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uMNeWR4H5J .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uMNeWR4H5J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uMNeWR4H5J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMNeWR4H5J .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMNeWR4H5J .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMNeWR4H5J .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #0976aa;
}
.cid-uMNeWR4H5J .navbar.opened {
  transition: all 0.3s;
}
.cid-uMNeWR4H5J .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uMNeWR4H5J .navbar .navbar-logo img {
  width: auto;
}
.cid-uMNeWR4H5J .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uMNeWR4H5J .navbar.collapsed {
  justify-content: center;
}
.cid-uMNeWR4H5J .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uMNeWR4H5J .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uMNeWR4H5J .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.9rem);
  }
}
.cid-uMNeWR4H5J .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMNeWR4H5J .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMNeWR4H5J .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-uMNeWR4H5J .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMNeWR4H5J .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uMNeWR4H5J .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uMNeWR4H5J .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMNeWR4H5J .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMNeWR4H5J .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMNeWR4H5J .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uMNeWR4H5J .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-uMNeWR4H5J .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uMNeWR4H5J .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uMNeWR4H5J .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uMNeWR4H5J .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uMNeWR4H5J .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uMNeWR4H5J .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uMNeWR4H5J .navbar.navbar-short {
  min-height: 60px;
}
.cid-uMNeWR4H5J .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uMNeWR4H5J .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uMNeWR4H5J .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-uMNeWR4H5J .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uMNeWR4H5J .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMNeWR4H5J .dropdown-item.active,
.cid-uMNeWR4H5J .dropdown-item:active {
  background-color: transparent;
}
.cid-uMNeWR4H5J .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMNeWR4H5J .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMNeWR4H5J .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMNeWR4H5J .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0976aa;
}
.cid-uMNeWR4H5J .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uMNeWR4H5J .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMNeWR4H5J ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uMNeWR4H5J .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uMNeWR4H5J button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uMNeWR4H5J button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uMNeWR4H5J button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uMNeWR4H5J button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMNeWR4H5J button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMNeWR4H5J button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uMNeWR4H5J nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMNeWR4H5J nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMNeWR4H5J nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMNeWR4H5J nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMNeWR4H5J .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uMNeWR4H5J a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uMNeWR4H5J .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-uMNeWR4H5J .navbar {
    height: 70px;
  }
  .cid-uMNeWR4H5J .navbar.opened {
    height: auto;
  }
  .cid-uMNeWR4H5J .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMNeWRAdCS {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uMNeWRAdCS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMNeWRAdCS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMNeWRAdCS H3 {
  text-align: center;
}
.cid-uMNeWRAdCS .mbr-text,
.cid-uMNeWRAdCS .mbr-section-btn {
  text-align: center;
}
.cid-uMNeWRVDWu {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/fondo-3.jpg-612x448.jpg");
}
.cid-uMNeWRVDWu .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uMNeWRVDWu .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uMNeWRVDWu .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uMNeWRVDWu .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uMNeWRVDWu .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uMNeWRVDWu .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uMNeWRVDWu .mbr-text,
.cid-uMNeWRVDWu .mbr-section-btn {
  color: #fafafa;
  text-align: center;
}
.cid-uMNeWSi79v {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #005b98;
}
.cid-uMNeWSi79v img,
.cid-uMNeWSi79v .item-img {
  width: 100%;
}
.cid-uMNeWSi79v .item:focus,
.cid-uMNeWSi79v span:focus {
  outline: none;
}
.cid-uMNeWSi79v .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uMNeWSi79v .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #0976aa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uMNeWSi79v .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uMNeWSi79v .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uMNeWSi79v .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uMNeWSi79v .mbr-section-title {
  color: #fafafa;
}
.cid-uMNeWSi79v .mbr-text,
.cid-uMNeWSi79v .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uMNeWSi79v .item-title {
  text-align: left;
  color: #bbbbbb;
}
.cid-uMNeWSi79v .item-subtitle {
  text-align: left;
}
.cid-uMNeWST3z4 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/construccionesjp.jpg-2000x1255.jpg");
}
.cid-uMNeWST3z4 img,
.cid-uMNeWST3z4 .item-img {
  width: 100%;
  height: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-uMNeWST3z4 .item:focus,
.cid-uMNeWST3z4 span:focus {
  outline: none;
}
.cid-uMNeWST3z4 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uMNeWST3z4 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uMNeWST3z4 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uMNeWST3z4 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uMNeWST3z4 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uMNeWST3z4 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uMNeWST3z4 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uMNeWST3z4 .mbr-section-title {
  color: #141619;
}
.cid-uMNeWST3z4 .mbr-text,
.cid-uMNeWST3z4 .mbr-section-btn {
  text-align: left;
}
.cid-uMNeWST3z4 .item-title {
  text-align: center;
}
.cid-uMNeWST3z4 .item-subtitle {
  text-align: center;
}
.cid-uMNeWTMZGi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bbbbbb;
}
.cid-uMNeWTMZGi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMNeWTMZGi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMNeWTMZGi .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-uMNeWTMZGi .currentcost {
  color: #232323;
}
.cid-uMNeWTMZGi .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uMNeWTMZGi .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uMNeWTMZGi .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uMNeWTMZGi .text-box {
    padding: 1rem;
  }
}
.cid-uMNeWTMZGi .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uMNeWUemRQ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uMNeWUemRQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMNeWUemRQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMNeWUemRQ .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uMNeWUemRQ .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-uMNeWUemRQ .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uMNeWUemRQ .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uMNeWUemRQ .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uMNeWUemRQ .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uMNeWUemRQ .carousel-control,
.cid-uMNeWUemRQ .close {
  background: #1b1b1b;
}
.cid-uMNeWUemRQ .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uMNeWUemRQ .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uMNeWUemRQ .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uMNeWUemRQ .carousel-control-next span {
  margin-left: 5px;
}
.cid-uMNeWUemRQ .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uMNeWUemRQ .close::before {
  content: '\e91a';
}
.cid-uMNeWUemRQ .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uMNeWUemRQ .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uMNeWUemRQ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMNeWUemRQ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uMNeWUemRQ .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uMNeWUemRQ .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uMNeWUemRQ .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uMNeWUemRQ .carousel-indicators li.active,
.cid-uMNeWUemRQ .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uMNeWUemRQ .carousel-indicators li::after,
.cid-uMNeWUemRQ .carousel-indicators li::before {
  content: none;
}
.cid-uMNeWUemRQ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uMNeWUemRQ .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uMNeWUemRQ .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uMNeWUemRQ .carousel-indicators {
    display: none;
  }
}
.cid-uMNeWUemRQ .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uMNeWUemRQ .carousel-inner > .active {
  display: block;
}
.cid-uMNeWUemRQ .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMNeWUemRQ .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uMNeWUemRQ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uMNeWUemRQ .carousel-control,
  .cid-uMNeWUemRQ .carousel-indicators,
  .cid-uMNeWUemRQ .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uMNeWUemRQ .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uMNeWUemRQ .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uMNeWUemRQ .carousel-indicators .active,
.cid-uMNeWUemRQ .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uMNeWUemRQ .carousel-indicators .active {
  background: #fff;
}
.cid-uMNeWUemRQ .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uMNeWUemRQ .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uMNeWUemRQ .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uMNeWUemRQ .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uMNeWUemRQ .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uMNeWUemRQ .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uMNeWUemRQ .carousel {
  width: 100%;
}
.cid-uMNeWUemRQ .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uMNeWUemRQ .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uMNeWUemRQ .modal.fade .modal-dialog,
.cid-uMNeWUemRQ .modal.in .modal-dialog {
  transform: none;
}
.cid-uMNeWUemRQ .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uMNeWUemRQ H6 {
  text-align: center;
}
.cid-uMNeWVJO6u {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #0976aa;
}
.cid-uMNeWVJO6u img {
  width: 120px;
  margin: auto;
}
.cid-uMNeWVJO6u .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uMNeWVJO6u .card {
    max-width: 12.5%;
  }
}
.cid-uMNeWVJO6u .mbr-section-subtitle {
  color: #dbdbdb;
}
.cid-uMNeWVJO6u .mbr-section-title {
  color: #ffffff;
}
.cid-uMNeWWdJAA {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-uMNeWWdJAA .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uMNeWWdJAA form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uMNeWWdJAA form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uMNeWWdJAA form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uMNeWWdJAA .mbr-section-title {
  color: #000000;
}
.cid-uMNeWWdJAA .mbr-section-subtitle {
  color: #000000;
}
.cid-uMNeWWExHV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uMNeWWExHV .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uMNeWWExHV .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-uMNeWWExHV .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uMNeWWExHV .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uMNeWWExHV .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #3ab752;
}
.cid-uMNeWXekP9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uMNeWXekP9 .google-map {
  height: 30rem;
  position: relative;
}
.cid-uMNeWXekP9 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uMNeWXekP9 .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uMNeWXekP9 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uMNeWXekP9 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uMNf3fL62h {
  z-index: 1000;
  width: 100%;
}
.cid-uMNf3fL62h nav.navbar {
  position: fixed;
}
.cid-uMNf3fL62h .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-uMNf3fL62h .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uMNf3fL62h .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uMNf3fL62h .dropdown-item:hover,
.cid-uMNf3fL62h .dropdown-item:focus {
  background: #3ab752 !important;
  color: white !important;
}
.cid-uMNf3fL62h .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uMNf3fL62h .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uMNf3fL62h .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uMNf3fL62h .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uMNf3fL62h .nav-link {
  position: relative;
}
.cid-uMNf3fL62h .container {
  display: flex;
  margin: auto;
}
.cid-uMNf3fL62h .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uMNf3fL62h .dropdown-menu,
.cid-uMNf3fL62h .navbar.opened {
  background: #0976aa !important;
}
.cid-uMNf3fL62h .nav-item:focus,
.cid-uMNf3fL62h .nav-link:focus {
  outline: none;
}
.cid-uMNf3fL62h .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uMNf3fL62h .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uMNf3fL62h .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uMNf3fL62h .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMNf3fL62h .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMNf3fL62h .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMNf3fL62h .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #0976aa;
}
.cid-uMNf3fL62h .navbar.opened {
  transition: all 0.3s;
}
.cid-uMNf3fL62h .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uMNf3fL62h .navbar .navbar-logo img {
  width: auto;
}
.cid-uMNf3fL62h .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uMNf3fL62h .navbar.collapsed {
  justify-content: center;
}
.cid-uMNf3fL62h .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uMNf3fL62h .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uMNf3fL62h .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.9rem);
  }
}
.cid-uMNf3fL62h .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMNf3fL62h .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMNf3fL62h .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-uMNf3fL62h .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMNf3fL62h .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uMNf3fL62h .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uMNf3fL62h .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMNf3fL62h .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMNf3fL62h .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMNf3fL62h .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uMNf3fL62h .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-uMNf3fL62h .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uMNf3fL62h .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uMNf3fL62h .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uMNf3fL62h .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uMNf3fL62h .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uMNf3fL62h .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uMNf3fL62h .navbar.navbar-short {
  min-height: 60px;
}
.cid-uMNf3fL62h .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uMNf3fL62h .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uMNf3fL62h .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-uMNf3fL62h .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uMNf3fL62h .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMNf3fL62h .dropdown-item.active,
.cid-uMNf3fL62h .dropdown-item:active {
  background-color: transparent;
}
.cid-uMNf3fL62h .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMNf3fL62h .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMNf3fL62h .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMNf3fL62h .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0976aa;
}
.cid-uMNf3fL62h .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uMNf3fL62h .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMNf3fL62h ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uMNf3fL62h .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uMNf3fL62h button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uMNf3fL62h button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uMNf3fL62h button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uMNf3fL62h button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMNf3fL62h button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMNf3fL62h button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uMNf3fL62h nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMNf3fL62h nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMNf3fL62h nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMNf3fL62h nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMNf3fL62h .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uMNf3fL62h a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uMNf3fL62h .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-uMNf3fL62h .navbar {
    height: 70px;
  }
  .cid-uMNf3fL62h .navbar.opened {
    height: auto;
  }
  .cid-uMNf3fL62h .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMNf3giFuu {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uMNf3giFuu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMNf3giFuu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMNf3giFuu H3 {
  text-align: center;
}
.cid-uMNf3giFuu .mbr-text,
.cid-uMNf3giFuu .mbr-section-btn {
  text-align: center;
}
.cid-uMNf3gEVoU {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/fondo-3.jpg-612x448.jpg");
}
.cid-uMNf3gEVoU .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uMNf3gEVoU .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uMNf3gEVoU .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uMNf3gEVoU .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uMNf3gEVoU .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uMNf3gEVoU .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uMNf3gEVoU .mbr-text,
.cid-uMNf3gEVoU .mbr-section-btn {
  color: #fafafa;
  text-align: center;
}
.cid-uMNf3h7Ll4 {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #005b98;
}
.cid-uMNf3h7Ll4 img,
.cid-uMNf3h7Ll4 .item-img {
  width: 100%;
}
.cid-uMNf3h7Ll4 .item:focus,
.cid-uMNf3h7Ll4 span:focus {
  outline: none;
}
.cid-uMNf3h7Ll4 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uMNf3h7Ll4 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #0976aa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uMNf3h7Ll4 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uMNf3h7Ll4 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uMNf3h7Ll4 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uMNf3h7Ll4 .mbr-section-title {
  color: #fafafa;
}
.cid-uMNf3h7Ll4 .mbr-text,
.cid-uMNf3h7Ll4 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uMNf3h7Ll4 .item-title {
  text-align: left;
  color: #bbbbbb;
}
.cid-uMNf3h7Ll4 .item-subtitle {
  text-align: left;
}
.cid-uMNf3hIsbX {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/construccionesjp.jpg-2000x1255.jpg");
}
.cid-uMNf3hIsbX img,
.cid-uMNf3hIsbX .item-img {
  width: 100%;
  height: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-uMNf3hIsbX .item:focus,
.cid-uMNf3hIsbX span:focus {
  outline: none;
}
.cid-uMNf3hIsbX .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uMNf3hIsbX .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uMNf3hIsbX .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uMNf3hIsbX .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uMNf3hIsbX .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uMNf3hIsbX .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uMNf3hIsbX .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uMNf3hIsbX .mbr-section-title {
  color: #141619;
}
.cid-uMNf3hIsbX .mbr-text,
.cid-uMNf3hIsbX .mbr-section-btn {
  text-align: left;
}
.cid-uMNf3hIsbX .item-title {
  text-align: center;
}
.cid-uMNf3hIsbX .item-subtitle {
  text-align: center;
}
.cid-uMNf3iuN5n {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bbbbbb;
}
.cid-uMNf3iuN5n .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMNf3iuN5n .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMNf3iuN5n .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-uMNf3iuN5n .currentcost {
  color: #232323;
}
.cid-uMNf3iuN5n .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uMNf3iuN5n .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uMNf3iuN5n .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uMNf3iuN5n .text-box {
    padding: 1rem;
  }
}
.cid-uMNf3iuN5n .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uMNf3iWz8r {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uMNf3iWz8r .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMNf3iWz8r .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMNf3iWz8r .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uMNf3iWz8r .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-uMNf3iWz8r .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uMNf3iWz8r .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uMNf3iWz8r .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uMNf3iWz8r .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uMNf3iWz8r .carousel-control,
.cid-uMNf3iWz8r .close {
  background: #1b1b1b;
}
.cid-uMNf3iWz8r .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uMNf3iWz8r .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uMNf3iWz8r .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uMNf3iWz8r .carousel-control-next span {
  margin-left: 5px;
}
.cid-uMNf3iWz8r .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uMNf3iWz8r .close::before {
  content: '\e91a';
}
.cid-uMNf3iWz8r .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uMNf3iWz8r .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uMNf3iWz8r .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMNf3iWz8r .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uMNf3iWz8r .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uMNf3iWz8r .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uMNf3iWz8r .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uMNf3iWz8r .carousel-indicators li.active,
.cid-uMNf3iWz8r .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uMNf3iWz8r .carousel-indicators li::after,
.cid-uMNf3iWz8r .carousel-indicators li::before {
  content: none;
}
.cid-uMNf3iWz8r .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uMNf3iWz8r .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uMNf3iWz8r .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uMNf3iWz8r .carousel-indicators {
    display: none;
  }
}
.cid-uMNf3iWz8r .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uMNf3iWz8r .carousel-inner > .active {
  display: block;
}
.cid-uMNf3iWz8r .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMNf3iWz8r .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uMNf3iWz8r .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uMNf3iWz8r .carousel-control,
  .cid-uMNf3iWz8r .carousel-indicators,
  .cid-uMNf3iWz8r .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uMNf3iWz8r .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uMNf3iWz8r .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uMNf3iWz8r .carousel-indicators .active,
.cid-uMNf3iWz8r .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uMNf3iWz8r .carousel-indicators .active {
  background: #fff;
}
.cid-uMNf3iWz8r .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uMNf3iWz8r .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uMNf3iWz8r .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uMNf3iWz8r .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uMNf3iWz8r .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uMNf3iWz8r .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uMNf3iWz8r .carousel {
  width: 100%;
}
.cid-uMNf3iWz8r .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uMNf3iWz8r .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uMNf3iWz8r .modal.fade .modal-dialog,
.cid-uMNf3iWz8r .modal.in .modal-dialog {
  transform: none;
}
.cid-uMNf3iWz8r .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uMNf3iWz8r H6 {
  text-align: center;
}
.cid-uMNf3kt620 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #0976aa;
}
.cid-uMNf3kt620 img {
  width: 120px;
  margin: auto;
}
.cid-uMNf3kt620 .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uMNf3kt620 .card {
    max-width: 12.5%;
  }
}
.cid-uMNf3kt620 .mbr-section-subtitle {
  color: #dbdbdb;
}
.cid-uMNf3kt620 .mbr-section-title {
  color: #ffffff;
}
.cid-uMNf3kVY1s {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-uMNf3kVY1s .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uMNf3kVY1s form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uMNf3kVY1s form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uMNf3kVY1s form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uMNf3kVY1s .mbr-section-title {
  color: #000000;
}
.cid-uMNf3kVY1s .mbr-section-subtitle {
  color: #000000;
}
.cid-uMNf3lnWjz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uMNf3lnWjz .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uMNf3lnWjz .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-uMNf3lnWjz .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uMNf3lnWjz .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uMNf3lnWjz .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #3ab752;
}
.cid-uMNf3lTHBF {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uMNf3lTHBF .google-map {
  height: 30rem;
  position: relative;
}
.cid-uMNf3lTHBF .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uMNf3lTHBF .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uMNf3lTHBF .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uMNf3lTHBF .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uMNf8FF5vk {
  z-index: 1000;
  width: 100%;
}
.cid-uMNf8FF5vk nav.navbar {
  position: fixed;
}
.cid-uMNf8FF5vk .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-uMNf8FF5vk .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uMNf8FF5vk .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uMNf8FF5vk .dropdown-item:hover,
.cid-uMNf8FF5vk .dropdown-item:focus {
  background: #3ab752 !important;
  color: white !important;
}
.cid-uMNf8FF5vk .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uMNf8FF5vk .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uMNf8FF5vk .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uMNf8FF5vk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uMNf8FF5vk .nav-link {
  position: relative;
}
.cid-uMNf8FF5vk .container {
  display: flex;
  margin: auto;
}
.cid-uMNf8FF5vk .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uMNf8FF5vk .dropdown-menu,
.cid-uMNf8FF5vk .navbar.opened {
  background: #0976aa !important;
}
.cid-uMNf8FF5vk .nav-item:focus,
.cid-uMNf8FF5vk .nav-link:focus {
  outline: none;
}
.cid-uMNf8FF5vk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uMNf8FF5vk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uMNf8FF5vk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uMNf8FF5vk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMNf8FF5vk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMNf8FF5vk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMNf8FF5vk .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #0976aa;
}
.cid-uMNf8FF5vk .navbar.opened {
  transition: all 0.3s;
}
.cid-uMNf8FF5vk .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uMNf8FF5vk .navbar .navbar-logo img {
  width: auto;
}
.cid-uMNf8FF5vk .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uMNf8FF5vk .navbar.collapsed {
  justify-content: center;
}
.cid-uMNf8FF5vk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uMNf8FF5vk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uMNf8FF5vk .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.9rem);
  }
}
.cid-uMNf8FF5vk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMNf8FF5vk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMNf8FF5vk .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-uMNf8FF5vk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMNf8FF5vk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uMNf8FF5vk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uMNf8FF5vk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMNf8FF5vk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMNf8FF5vk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMNf8FF5vk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uMNf8FF5vk .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-uMNf8FF5vk .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uMNf8FF5vk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uMNf8FF5vk .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uMNf8FF5vk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uMNf8FF5vk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uMNf8FF5vk .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uMNf8FF5vk .navbar.navbar-short {
  min-height: 60px;
}
.cid-uMNf8FF5vk .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uMNf8FF5vk .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uMNf8FF5vk .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-uMNf8FF5vk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uMNf8FF5vk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMNf8FF5vk .dropdown-item.active,
.cid-uMNf8FF5vk .dropdown-item:active {
  background-color: transparent;
}
.cid-uMNf8FF5vk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMNf8FF5vk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMNf8FF5vk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMNf8FF5vk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0976aa;
}
.cid-uMNf8FF5vk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uMNf8FF5vk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMNf8FF5vk ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uMNf8FF5vk .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uMNf8FF5vk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uMNf8FF5vk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uMNf8FF5vk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uMNf8FF5vk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMNf8FF5vk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMNf8FF5vk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uMNf8FF5vk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMNf8FF5vk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMNf8FF5vk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMNf8FF5vk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMNf8FF5vk .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uMNf8FF5vk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uMNf8FF5vk .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-uMNf8FF5vk .navbar {
    height: 70px;
  }
  .cid-uMNf8FF5vk .navbar.opened {
    height: auto;
  }
  .cid-uMNf8FF5vk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMNf8G9tyF {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uMNf8G9tyF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMNf8G9tyF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMNf8G9tyF H3 {
  text-align: center;
}
.cid-uMNf8G9tyF .mbr-text,
.cid-uMNf8G9tyF .mbr-section-btn {
  text-align: center;
}
.cid-uMNf8GyHtU {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/fondo-3.jpg-612x448.jpg");
}
.cid-uMNf8GyHtU .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uMNf8GyHtU .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uMNf8GyHtU .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uMNf8GyHtU .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uMNf8GyHtU .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uMNf8GyHtU .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uMNf8GyHtU .mbr-text,
.cid-uMNf8GyHtU .mbr-section-btn {
  color: #fafafa;
  text-align: center;
}
.cid-uMNf8GYytF {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #005b98;
}
.cid-uMNf8GYytF img,
.cid-uMNf8GYytF .item-img {
  width: 100%;
}
.cid-uMNf8GYytF .item:focus,
.cid-uMNf8GYytF span:focus {
  outline: none;
}
.cid-uMNf8GYytF .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uMNf8GYytF .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #0976aa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uMNf8GYytF .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uMNf8GYytF .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uMNf8GYytF .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uMNf8GYytF .mbr-section-title {
  color: #fafafa;
}
.cid-uMNf8GYytF .mbr-text,
.cid-uMNf8GYytF .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uMNf8GYytF .item-title {
  text-align: left;
  color: #bbbbbb;
}
.cid-uMNf8GYytF .item-subtitle {
  text-align: left;
}
.cid-uMNf8Hzbqe {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/construccionesjp.jpg-2000x1255.jpg");
}
.cid-uMNf8Hzbqe img,
.cid-uMNf8Hzbqe .item-img {
  width: 100%;
  height: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-uMNf8Hzbqe .item:focus,
.cid-uMNf8Hzbqe span:focus {
  outline: none;
}
.cid-uMNf8Hzbqe .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uMNf8Hzbqe .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uMNf8Hzbqe .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uMNf8Hzbqe .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uMNf8Hzbqe .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uMNf8Hzbqe .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uMNf8Hzbqe .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uMNf8Hzbqe .mbr-section-title {
  color: #141619;
}
.cid-uMNf8Hzbqe .mbr-text,
.cid-uMNf8Hzbqe .mbr-section-btn {
  text-align: left;
}
.cid-uMNf8Hzbqe .item-title {
  text-align: center;
}
.cid-uMNf8Hzbqe .item-subtitle {
  text-align: center;
}
.cid-uMNf8IzZ4E {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bbbbbb;
}
.cid-uMNf8IzZ4E .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMNf8IzZ4E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMNf8IzZ4E .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-uMNf8IzZ4E .currentcost {
  color: #232323;
}
.cid-uMNf8IzZ4E .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uMNf8IzZ4E .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uMNf8IzZ4E .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uMNf8IzZ4E .text-box {
    padding: 1rem;
  }
}
.cid-uMNf8IzZ4E .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uMNf8IWUGD {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uMNf8IWUGD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMNf8IWUGD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMNf8IWUGD .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uMNf8IWUGD .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-uMNf8IWUGD .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uMNf8IWUGD .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uMNf8IWUGD .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uMNf8IWUGD .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uMNf8IWUGD .carousel-control,
.cid-uMNf8IWUGD .close {
  background: #1b1b1b;
}
.cid-uMNf8IWUGD .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uMNf8IWUGD .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uMNf8IWUGD .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uMNf8IWUGD .carousel-control-next span {
  margin-left: 5px;
}
.cid-uMNf8IWUGD .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uMNf8IWUGD .close::before {
  content: '\e91a';
}
.cid-uMNf8IWUGD .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uMNf8IWUGD .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uMNf8IWUGD .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMNf8IWUGD .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uMNf8IWUGD .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uMNf8IWUGD .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uMNf8IWUGD .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uMNf8IWUGD .carousel-indicators li.active,
.cid-uMNf8IWUGD .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uMNf8IWUGD .carousel-indicators li::after,
.cid-uMNf8IWUGD .carousel-indicators li::before {
  content: none;
}
.cid-uMNf8IWUGD .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uMNf8IWUGD .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uMNf8IWUGD .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uMNf8IWUGD .carousel-indicators {
    display: none;
  }
}
.cid-uMNf8IWUGD .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uMNf8IWUGD .carousel-inner > .active {
  display: block;
}
.cid-uMNf8IWUGD .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMNf8IWUGD .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uMNf8IWUGD .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uMNf8IWUGD .carousel-control,
  .cid-uMNf8IWUGD .carousel-indicators,
  .cid-uMNf8IWUGD .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uMNf8IWUGD .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uMNf8IWUGD .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uMNf8IWUGD .carousel-indicators .active,
.cid-uMNf8IWUGD .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uMNf8IWUGD .carousel-indicators .active {
  background: #fff;
}
.cid-uMNf8IWUGD .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uMNf8IWUGD .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uMNf8IWUGD .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uMNf8IWUGD .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uMNf8IWUGD .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uMNf8IWUGD .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uMNf8IWUGD .carousel {
  width: 100%;
}
.cid-uMNf8IWUGD .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uMNf8IWUGD .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uMNf8IWUGD .modal.fade .modal-dialog,
.cid-uMNf8IWUGD .modal.in .modal-dialog {
  transform: none;
}
.cid-uMNf8IWUGD .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uMNf8IWUGD H6 {
  text-align: center;
}
.cid-uMNf8Ktgil {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #0976aa;
}
.cid-uMNf8Ktgil img {
  width: 120px;
  margin: auto;
}
.cid-uMNf8Ktgil .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uMNf8Ktgil .card {
    max-width: 12.5%;
  }
}
.cid-uMNf8Ktgil .mbr-section-subtitle {
  color: #dbdbdb;
}
.cid-uMNf8Ktgil .mbr-section-title {
  color: #ffffff;
}
.cid-uMNf8KVtAr {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-uMNf8KVtAr .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uMNf8KVtAr form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uMNf8KVtAr form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uMNf8KVtAr form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uMNf8KVtAr .mbr-section-title {
  color: #000000;
}
.cid-uMNf8KVtAr .mbr-section-subtitle {
  color: #000000;
}
.cid-uMNf8LoKwS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uMNf8LoKwS .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uMNf8LoKwS .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-uMNf8LoKwS .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uMNf8LoKwS .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uMNf8LoKwS .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #3ab752;
}
.cid-uMNf8LUnpp {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uMNf8LUnpp .google-map {
  height: 30rem;
  position: relative;
}
.cid-uMNf8LUnpp .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uMNf8LUnpp .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uMNf8LUnpp .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uMNf8LUnpp .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uMNfgk6rX2 {
  z-index: 1000;
  width: 100%;
}
.cid-uMNfgk6rX2 nav.navbar {
  position: fixed;
}
.cid-uMNfgk6rX2 .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-uMNfgk6rX2 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uMNfgk6rX2 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uMNfgk6rX2 .dropdown-item:hover,
.cid-uMNfgk6rX2 .dropdown-item:focus {
  background: #3ab752 !important;
  color: white !important;
}
.cid-uMNfgk6rX2 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uMNfgk6rX2 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uMNfgk6rX2 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uMNfgk6rX2 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uMNfgk6rX2 .nav-link {
  position: relative;
}
.cid-uMNfgk6rX2 .container {
  display: flex;
  margin: auto;
}
.cid-uMNfgk6rX2 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uMNfgk6rX2 .dropdown-menu,
.cid-uMNfgk6rX2 .navbar.opened {
  background: #0976aa !important;
}
.cid-uMNfgk6rX2 .nav-item:focus,
.cid-uMNfgk6rX2 .nav-link:focus {
  outline: none;
}
.cid-uMNfgk6rX2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uMNfgk6rX2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uMNfgk6rX2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uMNfgk6rX2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMNfgk6rX2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMNfgk6rX2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMNfgk6rX2 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #0976aa;
}
.cid-uMNfgk6rX2 .navbar.opened {
  transition: all 0.3s;
}
.cid-uMNfgk6rX2 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uMNfgk6rX2 .navbar .navbar-logo img {
  width: auto;
}
.cid-uMNfgk6rX2 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uMNfgk6rX2 .navbar.collapsed {
  justify-content: center;
}
.cid-uMNfgk6rX2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uMNfgk6rX2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uMNfgk6rX2 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.9rem);
  }
}
.cid-uMNfgk6rX2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMNfgk6rX2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMNfgk6rX2 .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-uMNfgk6rX2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMNfgk6rX2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uMNfgk6rX2 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uMNfgk6rX2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMNfgk6rX2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMNfgk6rX2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMNfgk6rX2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uMNfgk6rX2 .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-uMNfgk6rX2 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uMNfgk6rX2 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uMNfgk6rX2 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uMNfgk6rX2 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uMNfgk6rX2 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uMNfgk6rX2 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uMNfgk6rX2 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uMNfgk6rX2 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uMNfgk6rX2 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uMNfgk6rX2 .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-uMNfgk6rX2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uMNfgk6rX2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMNfgk6rX2 .dropdown-item.active,
.cid-uMNfgk6rX2 .dropdown-item:active {
  background-color: transparent;
}
.cid-uMNfgk6rX2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMNfgk6rX2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMNfgk6rX2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMNfgk6rX2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0976aa;
}
.cid-uMNfgk6rX2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uMNfgk6rX2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMNfgk6rX2 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uMNfgk6rX2 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uMNfgk6rX2 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uMNfgk6rX2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uMNfgk6rX2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uMNfgk6rX2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMNfgk6rX2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMNfgk6rX2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uMNfgk6rX2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMNfgk6rX2 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMNfgk6rX2 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMNfgk6rX2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMNfgk6rX2 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uMNfgk6rX2 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uMNfgk6rX2 .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-uMNfgk6rX2 .navbar {
    height: 70px;
  }
  .cid-uMNfgk6rX2 .navbar.opened {
    height: auto;
  }
  .cid-uMNfgk6rX2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMNfgkCLhJ {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uMNfgkCLhJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMNfgkCLhJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMNfgkCLhJ H3 {
  text-align: center;
}
.cid-uMNfgkCLhJ .mbr-text,
.cid-uMNfgkCLhJ .mbr-section-btn {
  text-align: center;
}
.cid-uMNfgl0InN {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/fondo-3.jpg-612x448.jpg");
}
.cid-uMNfgl0InN .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uMNfgl0InN .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uMNfgl0InN .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uMNfgl0InN .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uMNfgl0InN .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uMNfgl0InN .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uMNfgl0InN .mbr-text,
.cid-uMNfgl0InN .mbr-section-btn {
  color: #fafafa;
  text-align: center;
}
.cid-uMNfglsNqf {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #005b98;
}
.cid-uMNfglsNqf img,
.cid-uMNfglsNqf .item-img {
  width: 100%;
}
.cid-uMNfglsNqf .item:focus,
.cid-uMNfglsNqf span:focus {
  outline: none;
}
.cid-uMNfglsNqf .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uMNfglsNqf .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #0976aa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uMNfglsNqf .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uMNfglsNqf .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uMNfglsNqf .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uMNfglsNqf .mbr-section-title {
  color: #fafafa;
}
.cid-uMNfglsNqf .mbr-text,
.cid-uMNfglsNqf .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uMNfglsNqf .item-title {
  text-align: left;
  color: #bbbbbb;
}
.cid-uMNfglsNqf .item-subtitle {
  text-align: left;
}
.cid-uMNfgm7WGG {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/construccionesjp.jpg-2000x1255.jpg");
}
.cid-uMNfgm7WGG img,
.cid-uMNfgm7WGG .item-img {
  width: 100%;
  height: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-uMNfgm7WGG .item:focus,
.cid-uMNfgm7WGG span:focus {
  outline: none;
}
.cid-uMNfgm7WGG .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uMNfgm7WGG .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uMNfgm7WGG .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uMNfgm7WGG .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uMNfgm7WGG .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uMNfgm7WGG .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uMNfgm7WGG .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uMNfgm7WGG .mbr-section-title {
  color: #141619;
}
.cid-uMNfgm7WGG .mbr-text,
.cid-uMNfgm7WGG .mbr-section-btn {
  text-align: left;
}
.cid-uMNfgm7WGG .item-title {
  text-align: center;
}
.cid-uMNfgm7WGG .item-subtitle {
  text-align: center;
}
.cid-uMNfgmRNmZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bbbbbb;
}
.cid-uMNfgmRNmZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMNfgmRNmZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMNfgmRNmZ .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-uMNfgmRNmZ .currentcost {
  color: #232323;
}
.cid-uMNfgmRNmZ .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uMNfgmRNmZ .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uMNfgmRNmZ .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uMNfgmRNmZ .text-box {
    padding: 1rem;
  }
}
.cid-uMNfgmRNmZ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uMNfgnfjot {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uMNfgnfjot .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMNfgnfjot .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMNfgnfjot .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uMNfgnfjot .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-uMNfgnfjot .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uMNfgnfjot .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uMNfgnfjot .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uMNfgnfjot .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uMNfgnfjot .carousel-control,
.cid-uMNfgnfjot .close {
  background: #1b1b1b;
}
.cid-uMNfgnfjot .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uMNfgnfjot .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uMNfgnfjot .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uMNfgnfjot .carousel-control-next span {
  margin-left: 5px;
}
.cid-uMNfgnfjot .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uMNfgnfjot .close::before {
  content: '\e91a';
}
.cid-uMNfgnfjot .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uMNfgnfjot .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uMNfgnfjot .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMNfgnfjot .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uMNfgnfjot .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uMNfgnfjot .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uMNfgnfjot .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uMNfgnfjot .carousel-indicators li.active,
.cid-uMNfgnfjot .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uMNfgnfjot .carousel-indicators li::after,
.cid-uMNfgnfjot .carousel-indicators li::before {
  content: none;
}
.cid-uMNfgnfjot .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uMNfgnfjot .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uMNfgnfjot .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uMNfgnfjot .carousel-indicators {
    display: none;
  }
}
.cid-uMNfgnfjot .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uMNfgnfjot .carousel-inner > .active {
  display: block;
}
.cid-uMNfgnfjot .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMNfgnfjot .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uMNfgnfjot .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uMNfgnfjot .carousel-control,
  .cid-uMNfgnfjot .carousel-indicators,
  .cid-uMNfgnfjot .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uMNfgnfjot .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uMNfgnfjot .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uMNfgnfjot .carousel-indicators .active,
.cid-uMNfgnfjot .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uMNfgnfjot .carousel-indicators .active {
  background: #fff;
}
.cid-uMNfgnfjot .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uMNfgnfjot .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uMNfgnfjot .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uMNfgnfjot .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uMNfgnfjot .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uMNfgnfjot .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uMNfgnfjot .carousel {
  width: 100%;
}
.cid-uMNfgnfjot .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uMNfgnfjot .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uMNfgnfjot .modal.fade .modal-dialog,
.cid-uMNfgnfjot .modal.in .modal-dialog {
  transform: none;
}
.cid-uMNfgnfjot .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uMNfgnfjot H6 {
  text-align: center;
}
.cid-uMNfgoOSQ8 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #0976aa;
}
.cid-uMNfgoOSQ8 img {
  width: 120px;
  margin: auto;
}
.cid-uMNfgoOSQ8 .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uMNfgoOSQ8 .card {
    max-width: 12.5%;
  }
}
.cid-uMNfgoOSQ8 .mbr-section-subtitle {
  color: #dbdbdb;
}
.cid-uMNfgoOSQ8 .mbr-section-title {
  color: #ffffff;
}
.cid-uMNfgpBCpE {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-uMNfgpBCpE .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uMNfgpBCpE form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uMNfgpBCpE form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uMNfgpBCpE form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uMNfgpBCpE .mbr-section-title {
  color: #000000;
}
.cid-uMNfgpBCpE .mbr-section-subtitle {
  color: #000000;
}
.cid-uMNfgqrurX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uMNfgqrurX .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uMNfgqrurX .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-uMNfgqrurX .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uMNfgqrurX .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uMNfgqrurX .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #3ab752;
}
.cid-uMNfgsaoNm {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uMNfgsaoNm .google-map {
  height: 30rem;
  position: relative;
}
.cid-uMNfgsaoNm .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uMNfgsaoNm .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uMNfgsaoNm .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uMNfgsaoNm .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uMNfp7pN8q {
  z-index: 1000;
  width: 100%;
}
.cid-uMNfp7pN8q nav.navbar {
  position: fixed;
}
.cid-uMNfp7pN8q .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-uMNfp7pN8q .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uMNfp7pN8q .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uMNfp7pN8q .dropdown-item:hover,
.cid-uMNfp7pN8q .dropdown-item:focus {
  background: #3ab752 !important;
  color: white !important;
}
.cid-uMNfp7pN8q .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uMNfp7pN8q .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uMNfp7pN8q .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uMNfp7pN8q .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uMNfp7pN8q .nav-link {
  position: relative;
}
.cid-uMNfp7pN8q .container {
  display: flex;
  margin: auto;
}
.cid-uMNfp7pN8q .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uMNfp7pN8q .dropdown-menu,
.cid-uMNfp7pN8q .navbar.opened {
  background: #0976aa !important;
}
.cid-uMNfp7pN8q .nav-item:focus,
.cid-uMNfp7pN8q .nav-link:focus {
  outline: none;
}
.cid-uMNfp7pN8q .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uMNfp7pN8q .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uMNfp7pN8q .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uMNfp7pN8q .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMNfp7pN8q .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMNfp7pN8q .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMNfp7pN8q .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #0976aa;
}
.cid-uMNfp7pN8q .navbar.opened {
  transition: all 0.3s;
}
.cid-uMNfp7pN8q .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uMNfp7pN8q .navbar .navbar-logo img {
  width: auto;
}
.cid-uMNfp7pN8q .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uMNfp7pN8q .navbar.collapsed {
  justify-content: center;
}
.cid-uMNfp7pN8q .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uMNfp7pN8q .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uMNfp7pN8q .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.9rem);
  }
}
.cid-uMNfp7pN8q .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMNfp7pN8q .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMNfp7pN8q .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-uMNfp7pN8q .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMNfp7pN8q .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uMNfp7pN8q .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uMNfp7pN8q .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMNfp7pN8q .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMNfp7pN8q .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMNfp7pN8q .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uMNfp7pN8q .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-uMNfp7pN8q .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uMNfp7pN8q .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uMNfp7pN8q .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uMNfp7pN8q .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uMNfp7pN8q .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uMNfp7pN8q .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uMNfp7pN8q .navbar.navbar-short {
  min-height: 60px;
}
.cid-uMNfp7pN8q .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uMNfp7pN8q .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uMNfp7pN8q .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-uMNfp7pN8q .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uMNfp7pN8q .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMNfp7pN8q .dropdown-item.active,
.cid-uMNfp7pN8q .dropdown-item:active {
  background-color: transparent;
}
.cid-uMNfp7pN8q .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMNfp7pN8q .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMNfp7pN8q .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMNfp7pN8q .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0976aa;
}
.cid-uMNfp7pN8q .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uMNfp7pN8q .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMNfp7pN8q ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uMNfp7pN8q .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uMNfp7pN8q button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uMNfp7pN8q button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uMNfp7pN8q button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uMNfp7pN8q button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMNfp7pN8q button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMNfp7pN8q button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uMNfp7pN8q nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMNfp7pN8q nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMNfp7pN8q nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMNfp7pN8q nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMNfp7pN8q .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uMNfp7pN8q a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uMNfp7pN8q .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-uMNfp7pN8q .navbar {
    height: 70px;
  }
  .cid-uMNfp7pN8q .navbar.opened {
    height: auto;
  }
  .cid-uMNfp7pN8q .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMNfp7WgeQ {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uMNfp7WgeQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMNfp7WgeQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMNfp7WgeQ H3 {
  text-align: center;
}
.cid-uMNfp7WgeQ .mbr-text,
.cid-uMNfp7WgeQ .mbr-section-btn {
  text-align: center;
}
.cid-uMNfp8hOPs {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/fondo-3.jpg-612x448.jpg");
}
.cid-uMNfp8hOPs .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uMNfp8hOPs .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uMNfp8hOPs .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uMNfp8hOPs .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uMNfp8hOPs .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uMNfp8hOPs .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uMNfp8hOPs .mbr-text,
.cid-uMNfp8hOPs .mbr-section-btn {
  color: #fafafa;
  text-align: center;
}
.cid-uMNfp8HOVD {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #005b98;
}
.cid-uMNfp8HOVD img,
.cid-uMNfp8HOVD .item-img {
  width: 100%;
}
.cid-uMNfp8HOVD .item:focus,
.cid-uMNfp8HOVD span:focus {
  outline: none;
}
.cid-uMNfp8HOVD .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uMNfp8HOVD .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #0976aa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uMNfp8HOVD .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uMNfp8HOVD .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uMNfp8HOVD .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uMNfp8HOVD .mbr-section-title {
  color: #fafafa;
}
.cid-uMNfp8HOVD .mbr-text,
.cid-uMNfp8HOVD .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uMNfp8HOVD .item-title {
  text-align: left;
  color: #bbbbbb;
}
.cid-uMNfp8HOVD .item-subtitle {
  text-align: left;
}
.cid-uMNfp9mlnO {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/construccionesjp.jpg-2000x1255.jpg");
}
.cid-uMNfp9mlnO img,
.cid-uMNfp9mlnO .item-img {
  width: 100%;
  height: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-uMNfp9mlnO .item:focus,
.cid-uMNfp9mlnO span:focus {
  outline: none;
}
.cid-uMNfp9mlnO .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uMNfp9mlnO .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uMNfp9mlnO .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uMNfp9mlnO .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uMNfp9mlnO .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uMNfp9mlnO .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uMNfp9mlnO .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uMNfp9mlnO .mbr-section-title {
  color: #141619;
}
.cid-uMNfp9mlnO .mbr-text,
.cid-uMNfp9mlnO .mbr-section-btn {
  text-align: left;
}
.cid-uMNfp9mlnO .item-title {
  text-align: center;
}
.cid-uMNfp9mlnO .item-subtitle {
  text-align: center;
}
.cid-uMNfpacINk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bbbbbb;
}
.cid-uMNfpacINk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMNfpacINk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMNfpacINk .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-uMNfpacINk .currentcost {
  color: #232323;
}
.cid-uMNfpacINk .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uMNfpacINk .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uMNfpacINk .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uMNfpacINk .text-box {
    padding: 1rem;
  }
}
.cid-uMNfpacINk .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uMNfpaCXVg {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uMNfpaCXVg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMNfpaCXVg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMNfpaCXVg .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uMNfpaCXVg .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-uMNfpaCXVg .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uMNfpaCXVg .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uMNfpaCXVg .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uMNfpaCXVg .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uMNfpaCXVg .carousel-control,
.cid-uMNfpaCXVg .close {
  background: #1b1b1b;
}
.cid-uMNfpaCXVg .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uMNfpaCXVg .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uMNfpaCXVg .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uMNfpaCXVg .carousel-control-next span {
  margin-left: 5px;
}
.cid-uMNfpaCXVg .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uMNfpaCXVg .close::before {
  content: '\e91a';
}
.cid-uMNfpaCXVg .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uMNfpaCXVg .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uMNfpaCXVg .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMNfpaCXVg .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uMNfpaCXVg .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uMNfpaCXVg .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uMNfpaCXVg .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uMNfpaCXVg .carousel-indicators li.active,
.cid-uMNfpaCXVg .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uMNfpaCXVg .carousel-indicators li::after,
.cid-uMNfpaCXVg .carousel-indicators li::before {
  content: none;
}
.cid-uMNfpaCXVg .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uMNfpaCXVg .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uMNfpaCXVg .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uMNfpaCXVg .carousel-indicators {
    display: none;
  }
}
.cid-uMNfpaCXVg .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uMNfpaCXVg .carousel-inner > .active {
  display: block;
}
.cid-uMNfpaCXVg .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMNfpaCXVg .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uMNfpaCXVg .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uMNfpaCXVg .carousel-control,
  .cid-uMNfpaCXVg .carousel-indicators,
  .cid-uMNfpaCXVg .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uMNfpaCXVg .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uMNfpaCXVg .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uMNfpaCXVg .carousel-indicators .active,
.cid-uMNfpaCXVg .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uMNfpaCXVg .carousel-indicators .active {
  background: #fff;
}
.cid-uMNfpaCXVg .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uMNfpaCXVg .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uMNfpaCXVg .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uMNfpaCXVg .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uMNfpaCXVg .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uMNfpaCXVg .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uMNfpaCXVg .carousel {
  width: 100%;
}
.cid-uMNfpaCXVg .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uMNfpaCXVg .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uMNfpaCXVg .modal.fade .modal-dialog,
.cid-uMNfpaCXVg .modal.in .modal-dialog {
  transform: none;
}
.cid-uMNfpaCXVg .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uMNfpaCXVg H6 {
  text-align: center;
}
.cid-uMNfpcacFi {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #0976aa;
}
.cid-uMNfpcacFi img {
  width: 120px;
  margin: auto;
}
.cid-uMNfpcacFi .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uMNfpcacFi .card {
    max-width: 12.5%;
  }
}
.cid-uMNfpcacFi .mbr-section-subtitle {
  color: #dbdbdb;
}
.cid-uMNfpcacFi .mbr-section-title {
  color: #ffffff;
}
.cid-uMNfpcAdvJ {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-uMNfpcAdvJ .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uMNfpcAdvJ form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uMNfpcAdvJ form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uMNfpcAdvJ form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uMNfpcAdvJ .mbr-section-title {
  color: #000000;
}
.cid-uMNfpcAdvJ .mbr-section-subtitle {
  color: #000000;
}
.cid-uMNfpd382Z {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uMNfpd382Z .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uMNfpd382Z .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-uMNfpd382Z .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uMNfpd382Z .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uMNfpd382Z .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #3ab752;
}
.cid-uMNfpdFZZz {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uMNfpdFZZz .google-map {
  height: 30rem;
  position: relative;
}
.cid-uMNfpdFZZz .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uMNfpdFZZz .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uMNfpdFZZz .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uMNfpdFZZz .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uMNfvNUk0O {
  z-index: 1000;
  width: 100%;
}
.cid-uMNfvNUk0O nav.navbar {
  position: fixed;
}
.cid-uMNfvNUk0O .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-uMNfvNUk0O .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uMNfvNUk0O .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uMNfvNUk0O .dropdown-item:hover,
.cid-uMNfvNUk0O .dropdown-item:focus {
  background: #3ab752 !important;
  color: white !important;
}
.cid-uMNfvNUk0O .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uMNfvNUk0O .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uMNfvNUk0O .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uMNfvNUk0O .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uMNfvNUk0O .nav-link {
  position: relative;
}
.cid-uMNfvNUk0O .container {
  display: flex;
  margin: auto;
}
.cid-uMNfvNUk0O .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uMNfvNUk0O .dropdown-menu,
.cid-uMNfvNUk0O .navbar.opened {
  background: #0976aa !important;
}
.cid-uMNfvNUk0O .nav-item:focus,
.cid-uMNfvNUk0O .nav-link:focus {
  outline: none;
}
.cid-uMNfvNUk0O .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uMNfvNUk0O .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uMNfvNUk0O .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uMNfvNUk0O .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMNfvNUk0O .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMNfvNUk0O .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMNfvNUk0O .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #0976aa;
}
.cid-uMNfvNUk0O .navbar.opened {
  transition: all 0.3s;
}
.cid-uMNfvNUk0O .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uMNfvNUk0O .navbar .navbar-logo img {
  width: auto;
}
.cid-uMNfvNUk0O .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uMNfvNUk0O .navbar.collapsed {
  justify-content: center;
}
.cid-uMNfvNUk0O .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uMNfvNUk0O .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uMNfvNUk0O .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.9rem);
  }
}
.cid-uMNfvNUk0O .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMNfvNUk0O .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMNfvNUk0O .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-uMNfvNUk0O .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMNfvNUk0O .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uMNfvNUk0O .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uMNfvNUk0O .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMNfvNUk0O .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMNfvNUk0O .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMNfvNUk0O .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uMNfvNUk0O .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-uMNfvNUk0O .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uMNfvNUk0O .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uMNfvNUk0O .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uMNfvNUk0O .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uMNfvNUk0O .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uMNfvNUk0O .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uMNfvNUk0O .navbar.navbar-short {
  min-height: 60px;
}
.cid-uMNfvNUk0O .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uMNfvNUk0O .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uMNfvNUk0O .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-uMNfvNUk0O .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uMNfvNUk0O .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMNfvNUk0O .dropdown-item.active,
.cid-uMNfvNUk0O .dropdown-item:active {
  background-color: transparent;
}
.cid-uMNfvNUk0O .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMNfvNUk0O .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMNfvNUk0O .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMNfvNUk0O .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0976aa;
}
.cid-uMNfvNUk0O .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uMNfvNUk0O .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMNfvNUk0O ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uMNfvNUk0O .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uMNfvNUk0O button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uMNfvNUk0O button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uMNfvNUk0O button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uMNfvNUk0O button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMNfvNUk0O button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMNfvNUk0O button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uMNfvNUk0O nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMNfvNUk0O nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMNfvNUk0O nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMNfvNUk0O nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMNfvNUk0O .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uMNfvNUk0O a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uMNfvNUk0O .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-uMNfvNUk0O .navbar {
    height: 70px;
  }
  .cid-uMNfvNUk0O .navbar.opened {
    height: auto;
  }
  .cid-uMNfvNUk0O .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMNfvOorC8 {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uMNfvOorC8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMNfvOorC8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMNfvOorC8 H3 {
  text-align: center;
}
.cid-uMNfvOorC8 .mbr-text,
.cid-uMNfvOorC8 .mbr-section-btn {
  text-align: center;
}
.cid-uMNfvOLJj3 {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/fondo-3.jpg-612x448.jpg");
}
.cid-uMNfvOLJj3 .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uMNfvOLJj3 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uMNfvOLJj3 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uMNfvOLJj3 .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uMNfvOLJj3 .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uMNfvOLJj3 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uMNfvOLJj3 .mbr-text,
.cid-uMNfvOLJj3 .mbr-section-btn {
  color: #fafafa;
  text-align: center;
}
.cid-uMNfvP9goQ {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #005b98;
}
.cid-uMNfvP9goQ img,
.cid-uMNfvP9goQ .item-img {
  width: 100%;
}
.cid-uMNfvP9goQ .item:focus,
.cid-uMNfvP9goQ span:focus {
  outline: none;
}
.cid-uMNfvP9goQ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uMNfvP9goQ .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #0976aa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uMNfvP9goQ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uMNfvP9goQ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uMNfvP9goQ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uMNfvP9goQ .mbr-section-title {
  color: #fafafa;
}
.cid-uMNfvP9goQ .mbr-text,
.cid-uMNfvP9goQ .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uMNfvP9goQ .item-title {
  text-align: left;
  color: #bbbbbb;
}
.cid-uMNfvP9goQ .item-subtitle {
  text-align: left;
}
.cid-uMNfvPKNa7 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/construccionesjp.jpg-2000x1255.jpg");
}
.cid-uMNfvPKNa7 img,
.cid-uMNfvPKNa7 .item-img {
  width: 100%;
  height: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-uMNfvPKNa7 .item:focus,
.cid-uMNfvPKNa7 span:focus {
  outline: none;
}
.cid-uMNfvPKNa7 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uMNfvPKNa7 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uMNfvPKNa7 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uMNfvPKNa7 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uMNfvPKNa7 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uMNfvPKNa7 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uMNfvPKNa7 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uMNfvPKNa7 .mbr-section-title {
  color: #141619;
}
.cid-uMNfvPKNa7 .mbr-text,
.cid-uMNfvPKNa7 .mbr-section-btn {
  text-align: left;
}
.cid-uMNfvPKNa7 .item-title {
  text-align: center;
}
.cid-uMNfvPKNa7 .item-subtitle {
  text-align: center;
}
.cid-uMNfvQv3Sw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bbbbbb;
}
.cid-uMNfvQv3Sw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMNfvQv3Sw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMNfvQv3Sw .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-uMNfvQv3Sw .currentcost {
  color: #232323;
}
.cid-uMNfvQv3Sw .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uMNfvQv3Sw .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uMNfvQv3Sw .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uMNfvQv3Sw .text-box {
    padding: 1rem;
  }
}
.cid-uMNfvQv3Sw .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uMNfvQS5px {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uMNfvQS5px .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMNfvQS5px .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMNfvQS5px .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uMNfvQS5px .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-uMNfvQS5px .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uMNfvQS5px .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uMNfvQS5px .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uMNfvQS5px .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uMNfvQS5px .carousel-control,
.cid-uMNfvQS5px .close {
  background: #1b1b1b;
}
.cid-uMNfvQS5px .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uMNfvQS5px .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uMNfvQS5px .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uMNfvQS5px .carousel-control-next span {
  margin-left: 5px;
}
.cid-uMNfvQS5px .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uMNfvQS5px .close::before {
  content: '\e91a';
}
.cid-uMNfvQS5px .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uMNfvQS5px .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uMNfvQS5px .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMNfvQS5px .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uMNfvQS5px .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uMNfvQS5px .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uMNfvQS5px .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uMNfvQS5px .carousel-indicators li.active,
.cid-uMNfvQS5px .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uMNfvQS5px .carousel-indicators li::after,
.cid-uMNfvQS5px .carousel-indicators li::before {
  content: none;
}
.cid-uMNfvQS5px .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uMNfvQS5px .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uMNfvQS5px .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uMNfvQS5px .carousel-indicators {
    display: none;
  }
}
.cid-uMNfvQS5px .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uMNfvQS5px .carousel-inner > .active {
  display: block;
}
.cid-uMNfvQS5px .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMNfvQS5px .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uMNfvQS5px .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uMNfvQS5px .carousel-control,
  .cid-uMNfvQS5px .carousel-indicators,
  .cid-uMNfvQS5px .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uMNfvQS5px .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uMNfvQS5px .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uMNfvQS5px .carousel-indicators .active,
.cid-uMNfvQS5px .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uMNfvQS5px .carousel-indicators .active {
  background: #fff;
}
.cid-uMNfvQS5px .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uMNfvQS5px .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uMNfvQS5px .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uMNfvQS5px .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uMNfvQS5px .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uMNfvQS5px .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uMNfvQS5px .carousel {
  width: 100%;
}
.cid-uMNfvQS5px .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uMNfvQS5px .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uMNfvQS5px .modal.fade .modal-dialog,
.cid-uMNfvQS5px .modal.in .modal-dialog {
  transform: none;
}
.cid-uMNfvQS5px .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uMNfvQS5px H6 {
  text-align: center;
}
.cid-uMNfvSym4M {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #0976aa;
}
.cid-uMNfvSym4M img {
  width: 120px;
  margin: auto;
}
.cid-uMNfvSym4M .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uMNfvSym4M .card {
    max-width: 12.5%;
  }
}
.cid-uMNfvSym4M .mbr-section-subtitle {
  color: #dbdbdb;
}
.cid-uMNfvSym4M .mbr-section-title {
  color: #ffffff;
}
.cid-uMNfvSZ22G {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-uMNfvSZ22G .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uMNfvSZ22G form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uMNfvSZ22G form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uMNfvSZ22G form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uMNfvSZ22G .mbr-section-title {
  color: #000000;
}
.cid-uMNfvSZ22G .mbr-section-subtitle {
  color: #000000;
}
.cid-uMNfvTrgVx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uMNfvTrgVx .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uMNfvTrgVx .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-uMNfvTrgVx .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uMNfvTrgVx .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uMNfvTrgVx .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #3ab752;
}
.cid-uMNfvU2PYZ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uMNfvU2PYZ .google-map {
  height: 30rem;
  position: relative;
}
.cid-uMNfvU2PYZ .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uMNfvU2PYZ .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uMNfvU2PYZ .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uMNfvU2PYZ .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uMNfBnmxbe {
  z-index: 1000;
  width: 100%;
}
.cid-uMNfBnmxbe nav.navbar {
  position: fixed;
}
.cid-uMNfBnmxbe .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-uMNfBnmxbe .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uMNfBnmxbe .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uMNfBnmxbe .dropdown-item:hover,
.cid-uMNfBnmxbe .dropdown-item:focus {
  background: #3ab752 !important;
  color: white !important;
}
.cid-uMNfBnmxbe .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uMNfBnmxbe .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uMNfBnmxbe .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uMNfBnmxbe .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uMNfBnmxbe .nav-link {
  position: relative;
}
.cid-uMNfBnmxbe .container {
  display: flex;
  margin: auto;
}
.cid-uMNfBnmxbe .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uMNfBnmxbe .dropdown-menu,
.cid-uMNfBnmxbe .navbar.opened {
  background: #0976aa !important;
}
.cid-uMNfBnmxbe .nav-item:focus,
.cid-uMNfBnmxbe .nav-link:focus {
  outline: none;
}
.cid-uMNfBnmxbe .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uMNfBnmxbe .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uMNfBnmxbe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uMNfBnmxbe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMNfBnmxbe .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMNfBnmxbe .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMNfBnmxbe .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #0976aa;
}
.cid-uMNfBnmxbe .navbar.opened {
  transition: all 0.3s;
}
.cid-uMNfBnmxbe .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uMNfBnmxbe .navbar .navbar-logo img {
  width: auto;
}
.cid-uMNfBnmxbe .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uMNfBnmxbe .navbar.collapsed {
  justify-content: center;
}
.cid-uMNfBnmxbe .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uMNfBnmxbe .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uMNfBnmxbe .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.9rem);
  }
}
.cid-uMNfBnmxbe .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMNfBnmxbe .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMNfBnmxbe .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-uMNfBnmxbe .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMNfBnmxbe .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uMNfBnmxbe .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uMNfBnmxbe .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMNfBnmxbe .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMNfBnmxbe .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMNfBnmxbe .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uMNfBnmxbe .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-uMNfBnmxbe .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uMNfBnmxbe .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uMNfBnmxbe .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uMNfBnmxbe .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uMNfBnmxbe .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uMNfBnmxbe .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uMNfBnmxbe .navbar.navbar-short {
  min-height: 60px;
}
.cid-uMNfBnmxbe .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uMNfBnmxbe .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uMNfBnmxbe .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-uMNfBnmxbe .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uMNfBnmxbe .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMNfBnmxbe .dropdown-item.active,
.cid-uMNfBnmxbe .dropdown-item:active {
  background-color: transparent;
}
.cid-uMNfBnmxbe .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMNfBnmxbe .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMNfBnmxbe .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMNfBnmxbe .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0976aa;
}
.cid-uMNfBnmxbe .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uMNfBnmxbe .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMNfBnmxbe ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uMNfBnmxbe .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uMNfBnmxbe button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uMNfBnmxbe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uMNfBnmxbe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uMNfBnmxbe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMNfBnmxbe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMNfBnmxbe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uMNfBnmxbe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMNfBnmxbe nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMNfBnmxbe nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMNfBnmxbe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMNfBnmxbe .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uMNfBnmxbe a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uMNfBnmxbe .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-uMNfBnmxbe .navbar {
    height: 70px;
  }
  .cid-uMNfBnmxbe .navbar.opened {
    height: auto;
  }
  .cid-uMNfBnmxbe .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMNfBnU22o {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uMNfBnU22o .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMNfBnU22o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMNfBnU22o H3 {
  text-align: center;
}
.cid-uMNfBnU22o .mbr-text,
.cid-uMNfBnU22o .mbr-section-btn {
  text-align: center;
}
.cid-uMNfBohDaR {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/fondo-3.jpg-612x448.jpg");
}
.cid-uMNfBohDaR .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uMNfBohDaR .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uMNfBohDaR .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uMNfBohDaR .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uMNfBohDaR .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uMNfBohDaR .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uMNfBohDaR .mbr-text,
.cid-uMNfBohDaR .mbr-section-btn {
  color: #fafafa;
  text-align: center;
}
.cid-uMNfBoGZac {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #005b98;
}
.cid-uMNfBoGZac img,
.cid-uMNfBoGZac .item-img {
  width: 100%;
}
.cid-uMNfBoGZac .item:focus,
.cid-uMNfBoGZac span:focus {
  outline: none;
}
.cid-uMNfBoGZac .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uMNfBoGZac .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #0976aa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uMNfBoGZac .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uMNfBoGZac .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uMNfBoGZac .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uMNfBoGZac .mbr-section-title {
  color: #fafafa;
}
.cid-uMNfBoGZac .mbr-text,
.cid-uMNfBoGZac .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uMNfBoGZac .item-title {
  text-align: left;
  color: #bbbbbb;
}
.cid-uMNfBoGZac .item-subtitle {
  text-align: left;
}
.cid-uMNfBpox5J {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/construccionesjp.jpg-2000x1255.jpg");
}
.cid-uMNfBpox5J img,
.cid-uMNfBpox5J .item-img {
  width: 100%;
  height: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-uMNfBpox5J .item:focus,
.cid-uMNfBpox5J span:focus {
  outline: none;
}
.cid-uMNfBpox5J .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uMNfBpox5J .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uMNfBpox5J .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uMNfBpox5J .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uMNfBpox5J .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uMNfBpox5J .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uMNfBpox5J .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uMNfBpox5J .mbr-section-title {
  color: #141619;
}
.cid-uMNfBpox5J .mbr-text,
.cid-uMNfBpox5J .mbr-section-btn {
  text-align: left;
}
.cid-uMNfBpox5J .item-title {
  text-align: center;
}
.cid-uMNfBpox5J .item-subtitle {
  text-align: center;
}
.cid-uMNfBqaP4o {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bbbbbb;
}
.cid-uMNfBqaP4o .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMNfBqaP4o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMNfBqaP4o .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-uMNfBqaP4o .currentcost {
  color: #232323;
}
.cid-uMNfBqaP4o .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uMNfBqaP4o .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uMNfBqaP4o .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uMNfBqaP4o .text-box {
    padding: 1rem;
  }
}
.cid-uMNfBqaP4o .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uMNfBqAux2 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uMNfBqAux2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMNfBqAux2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMNfBqAux2 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uMNfBqAux2 .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-uMNfBqAux2 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uMNfBqAux2 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uMNfBqAux2 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uMNfBqAux2 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uMNfBqAux2 .carousel-control,
.cid-uMNfBqAux2 .close {
  background: #1b1b1b;
}
.cid-uMNfBqAux2 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uMNfBqAux2 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uMNfBqAux2 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uMNfBqAux2 .carousel-control-next span {
  margin-left: 5px;
}
.cid-uMNfBqAux2 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uMNfBqAux2 .close::before {
  content: '\e91a';
}
.cid-uMNfBqAux2 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uMNfBqAux2 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uMNfBqAux2 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMNfBqAux2 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uMNfBqAux2 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uMNfBqAux2 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uMNfBqAux2 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uMNfBqAux2 .carousel-indicators li.active,
.cid-uMNfBqAux2 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uMNfBqAux2 .carousel-indicators li::after,
.cid-uMNfBqAux2 .carousel-indicators li::before {
  content: none;
}
.cid-uMNfBqAux2 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uMNfBqAux2 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uMNfBqAux2 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uMNfBqAux2 .carousel-indicators {
    display: none;
  }
}
.cid-uMNfBqAux2 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uMNfBqAux2 .carousel-inner > .active {
  display: block;
}
.cid-uMNfBqAux2 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMNfBqAux2 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uMNfBqAux2 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uMNfBqAux2 .carousel-control,
  .cid-uMNfBqAux2 .carousel-indicators,
  .cid-uMNfBqAux2 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uMNfBqAux2 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uMNfBqAux2 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uMNfBqAux2 .carousel-indicators .active,
.cid-uMNfBqAux2 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uMNfBqAux2 .carousel-indicators .active {
  background: #fff;
}
.cid-uMNfBqAux2 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uMNfBqAux2 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uMNfBqAux2 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uMNfBqAux2 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uMNfBqAux2 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uMNfBqAux2 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uMNfBqAux2 .carousel {
  width: 100%;
}
.cid-uMNfBqAux2 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uMNfBqAux2 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uMNfBqAux2 .modal.fade .modal-dialog,
.cid-uMNfBqAux2 .modal.in .modal-dialog {
  transform: none;
}
.cid-uMNfBqAux2 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uMNfBqAux2 H6 {
  text-align: center;
}
.cid-uMNfBsdduQ {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #0976aa;
}
.cid-uMNfBsdduQ img {
  width: 120px;
  margin: auto;
}
.cid-uMNfBsdduQ .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uMNfBsdduQ .card {
    max-width: 12.5%;
  }
}
.cid-uMNfBsdduQ .mbr-section-subtitle {
  color: #dbdbdb;
}
.cid-uMNfBsdduQ .mbr-section-title {
  color: #ffffff;
}
.cid-uMNfBsO2tj {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-uMNfBsO2tj .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uMNfBsO2tj form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uMNfBsO2tj form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uMNfBsO2tj form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uMNfBsO2tj .mbr-section-title {
  color: #000000;
}
.cid-uMNfBsO2tj .mbr-section-subtitle {
  color: #000000;
}
.cid-uMNfBtgSCA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uMNfBtgSCA .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uMNfBtgSCA .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-uMNfBtgSCA .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uMNfBtgSCA .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uMNfBtgSCA .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #3ab752;
}
.cid-uMNfBtPDC1 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uMNfBtPDC1 .google-map {
  height: 30rem;
  position: relative;
}
.cid-uMNfBtPDC1 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uMNfBtPDC1 .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uMNfBtPDC1 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uMNfBtPDC1 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uMNgaQpYzu {
  z-index: 1000;
  width: 100%;
}
.cid-uMNgaQpYzu nav.navbar {
  position: fixed;
}
.cid-uMNgaQpYzu .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-uMNgaQpYzu .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uMNgaQpYzu .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uMNgaQpYzu .dropdown-item:hover,
.cid-uMNgaQpYzu .dropdown-item:focus {
  background: #3ab752 !important;
  color: white !important;
}
.cid-uMNgaQpYzu .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uMNgaQpYzu .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uMNgaQpYzu .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uMNgaQpYzu .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uMNgaQpYzu .nav-link {
  position: relative;
}
.cid-uMNgaQpYzu .container {
  display: flex;
  margin: auto;
}
.cid-uMNgaQpYzu .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uMNgaQpYzu .dropdown-menu,
.cid-uMNgaQpYzu .navbar.opened {
  background: #0976aa !important;
}
.cid-uMNgaQpYzu .nav-item:focus,
.cid-uMNgaQpYzu .nav-link:focus {
  outline: none;
}
.cid-uMNgaQpYzu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uMNgaQpYzu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uMNgaQpYzu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uMNgaQpYzu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMNgaQpYzu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMNgaQpYzu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMNgaQpYzu .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #0976aa;
}
.cid-uMNgaQpYzu .navbar.opened {
  transition: all 0.3s;
}
.cid-uMNgaQpYzu .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uMNgaQpYzu .navbar .navbar-logo img {
  width: auto;
}
.cid-uMNgaQpYzu .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uMNgaQpYzu .navbar.collapsed {
  justify-content: center;
}
.cid-uMNgaQpYzu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uMNgaQpYzu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uMNgaQpYzu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.9rem);
  }
}
.cid-uMNgaQpYzu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMNgaQpYzu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMNgaQpYzu .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-uMNgaQpYzu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMNgaQpYzu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uMNgaQpYzu .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uMNgaQpYzu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMNgaQpYzu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMNgaQpYzu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMNgaQpYzu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uMNgaQpYzu .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-uMNgaQpYzu .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uMNgaQpYzu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uMNgaQpYzu .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uMNgaQpYzu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uMNgaQpYzu .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uMNgaQpYzu .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uMNgaQpYzu .navbar.navbar-short {
  min-height: 60px;
}
.cid-uMNgaQpYzu .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uMNgaQpYzu .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uMNgaQpYzu .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-uMNgaQpYzu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uMNgaQpYzu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMNgaQpYzu .dropdown-item.active,
.cid-uMNgaQpYzu .dropdown-item:active {
  background-color: transparent;
}
.cid-uMNgaQpYzu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMNgaQpYzu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMNgaQpYzu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMNgaQpYzu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0976aa;
}
.cid-uMNgaQpYzu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uMNgaQpYzu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMNgaQpYzu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uMNgaQpYzu .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uMNgaQpYzu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uMNgaQpYzu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uMNgaQpYzu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uMNgaQpYzu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMNgaQpYzu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMNgaQpYzu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uMNgaQpYzu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMNgaQpYzu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMNgaQpYzu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMNgaQpYzu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMNgaQpYzu .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uMNgaQpYzu a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uMNgaQpYzu .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-uMNgaQpYzu .navbar {
    height: 70px;
  }
  .cid-uMNgaQpYzu .navbar.opened {
    height: auto;
  }
  .cid-uMNgaQpYzu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMNgaQVwCj {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uMNgaQVwCj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMNgaQVwCj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMNgaQVwCj H3 {
  text-align: center;
}
.cid-uMNgaQVwCj .mbr-text,
.cid-uMNgaQVwCj .mbr-section-btn {
  text-align: center;
}
.cid-uMNgaRjc7y {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/fondo-3.jpg-612x448.jpg");
}
.cid-uMNgaRjc7y .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uMNgaRjc7y .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uMNgaRjc7y .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uMNgaRjc7y .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uMNgaRjc7y .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uMNgaRjc7y .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uMNgaRjc7y .mbr-text,
.cid-uMNgaRjc7y .mbr-section-btn {
  color: #fafafa;
  text-align: center;
}
.cid-uMNgaRKwjd {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #005b98;
}
.cid-uMNgaRKwjd img,
.cid-uMNgaRKwjd .item-img {
  width: 100%;
}
.cid-uMNgaRKwjd .item:focus,
.cid-uMNgaRKwjd span:focus {
  outline: none;
}
.cid-uMNgaRKwjd .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uMNgaRKwjd .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #0976aa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uMNgaRKwjd .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uMNgaRKwjd .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uMNgaRKwjd .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uMNgaRKwjd .mbr-section-title {
  color: #fafafa;
}
.cid-uMNgaRKwjd .mbr-text,
.cid-uMNgaRKwjd .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uMNgaRKwjd .item-title {
  text-align: left;
  color: #bbbbbb;
}
.cid-uMNgaRKwjd .item-subtitle {
  text-align: left;
}
.cid-uMNgaSuQ3f {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/construccionesjp.jpg-2000x1255.jpg");
}
.cid-uMNgaSuQ3f img,
.cid-uMNgaSuQ3f .item-img {
  width: 100%;
  height: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-uMNgaSuQ3f .item:focus,
.cid-uMNgaSuQ3f span:focus {
  outline: none;
}
.cid-uMNgaSuQ3f .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uMNgaSuQ3f .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uMNgaSuQ3f .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uMNgaSuQ3f .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uMNgaSuQ3f .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uMNgaSuQ3f .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uMNgaSuQ3f .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uMNgaSuQ3f .mbr-section-title {
  color: #141619;
}
.cid-uMNgaSuQ3f .mbr-text,
.cid-uMNgaSuQ3f .mbr-section-btn {
  text-align: left;
}
.cid-uMNgaSuQ3f .item-title {
  text-align: center;
}
.cid-uMNgaSuQ3f .item-subtitle {
  text-align: center;
}
.cid-uMNgaTeqTf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bbbbbb;
}
.cid-uMNgaTeqTf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMNgaTeqTf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMNgaTeqTf .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-uMNgaTeqTf .currentcost {
  color: #232323;
}
.cid-uMNgaTeqTf .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uMNgaTeqTf .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uMNgaTeqTf .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uMNgaTeqTf .text-box {
    padding: 1rem;
  }
}
.cid-uMNgaTeqTf .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uMNgaTJX42 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uMNgaTJX42 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMNgaTJX42 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMNgaTJX42 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uMNgaTJX42 .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-uMNgaTJX42 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uMNgaTJX42 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uMNgaTJX42 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uMNgaTJX42 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uMNgaTJX42 .carousel-control,
.cid-uMNgaTJX42 .close {
  background: #1b1b1b;
}
.cid-uMNgaTJX42 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uMNgaTJX42 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uMNgaTJX42 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uMNgaTJX42 .carousel-control-next span {
  margin-left: 5px;
}
.cid-uMNgaTJX42 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uMNgaTJX42 .close::before {
  content: '\e91a';
}
.cid-uMNgaTJX42 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uMNgaTJX42 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uMNgaTJX42 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMNgaTJX42 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uMNgaTJX42 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uMNgaTJX42 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uMNgaTJX42 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uMNgaTJX42 .carousel-indicators li.active,
.cid-uMNgaTJX42 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uMNgaTJX42 .carousel-indicators li::after,
.cid-uMNgaTJX42 .carousel-indicators li::before {
  content: none;
}
.cid-uMNgaTJX42 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uMNgaTJX42 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uMNgaTJX42 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uMNgaTJX42 .carousel-indicators {
    display: none;
  }
}
.cid-uMNgaTJX42 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uMNgaTJX42 .carousel-inner > .active {
  display: block;
}
.cid-uMNgaTJX42 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMNgaTJX42 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uMNgaTJX42 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uMNgaTJX42 .carousel-control,
  .cid-uMNgaTJX42 .carousel-indicators,
  .cid-uMNgaTJX42 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uMNgaTJX42 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uMNgaTJX42 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uMNgaTJX42 .carousel-indicators .active,
.cid-uMNgaTJX42 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uMNgaTJX42 .carousel-indicators .active {
  background: #fff;
}
.cid-uMNgaTJX42 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uMNgaTJX42 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uMNgaTJX42 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uMNgaTJX42 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uMNgaTJX42 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uMNgaTJX42 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uMNgaTJX42 .carousel {
  width: 100%;
}
.cid-uMNgaTJX42 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uMNgaTJX42 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uMNgaTJX42 .modal.fade .modal-dialog,
.cid-uMNgaTJX42 .modal.in .modal-dialog {
  transform: none;
}
.cid-uMNgaTJX42 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uMNgaTJX42 H6 {
  text-align: center;
}
.cid-uMNgaVjIM3 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #0976aa;
}
.cid-uMNgaVjIM3 img {
  width: 120px;
  margin: auto;
}
.cid-uMNgaVjIM3 .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uMNgaVjIM3 .card {
    max-width: 12.5%;
  }
}
.cid-uMNgaVjIM3 .mbr-section-subtitle {
  color: #dbdbdb;
}
.cid-uMNgaVjIM3 .mbr-section-title {
  color: #ffffff;
}
.cid-uMNgaVJLxK {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-uMNgaVJLxK .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uMNgaVJLxK form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uMNgaVJLxK form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uMNgaVJLxK form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uMNgaVJLxK .mbr-section-title {
  color: #000000;
}
.cid-uMNgaVJLxK .mbr-section-subtitle {
  color: #000000;
}
.cid-uMNgaWklPp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uMNgaWklPp .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uMNgaWklPp .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-uMNgaWklPp .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uMNgaWklPp .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uMNgaWklPp .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #3ab752;
}
.cid-uMNgaWU0Me {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uMNgaWU0Me .google-map {
  height: 30rem;
  position: relative;
}
.cid-uMNgaWU0Me .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uMNgaWU0Me .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uMNgaWU0Me .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uMNgaWU0Me .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uMNfKA8RaM {
  z-index: 1000;
  width: 100%;
}
.cid-uMNfKA8RaM nav.navbar {
  position: fixed;
}
.cid-uMNfKA8RaM .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-uMNfKA8RaM .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uMNfKA8RaM .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uMNfKA8RaM .dropdown-item:hover,
.cid-uMNfKA8RaM .dropdown-item:focus {
  background: #3ab752 !important;
  color: white !important;
}
.cid-uMNfKA8RaM .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uMNfKA8RaM .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uMNfKA8RaM .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uMNfKA8RaM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uMNfKA8RaM .nav-link {
  position: relative;
}
.cid-uMNfKA8RaM .container {
  display: flex;
  margin: auto;
}
.cid-uMNfKA8RaM .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uMNfKA8RaM .dropdown-menu,
.cid-uMNfKA8RaM .navbar.opened {
  background: #0976aa !important;
}
.cid-uMNfKA8RaM .nav-item:focus,
.cid-uMNfKA8RaM .nav-link:focus {
  outline: none;
}
.cid-uMNfKA8RaM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uMNfKA8RaM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uMNfKA8RaM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uMNfKA8RaM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMNfKA8RaM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMNfKA8RaM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMNfKA8RaM .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #0976aa;
}
.cid-uMNfKA8RaM .navbar.opened {
  transition: all 0.3s;
}
.cid-uMNfKA8RaM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uMNfKA8RaM .navbar .navbar-logo img {
  width: auto;
}
.cid-uMNfKA8RaM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uMNfKA8RaM .navbar.collapsed {
  justify-content: center;
}
.cid-uMNfKA8RaM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uMNfKA8RaM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uMNfKA8RaM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.9rem);
  }
}
.cid-uMNfKA8RaM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMNfKA8RaM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMNfKA8RaM .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-uMNfKA8RaM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMNfKA8RaM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uMNfKA8RaM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uMNfKA8RaM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMNfKA8RaM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMNfKA8RaM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMNfKA8RaM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uMNfKA8RaM .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-uMNfKA8RaM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uMNfKA8RaM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uMNfKA8RaM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uMNfKA8RaM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uMNfKA8RaM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uMNfKA8RaM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uMNfKA8RaM .navbar.navbar-short {
  min-height: 60px;
}
.cid-uMNfKA8RaM .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uMNfKA8RaM .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uMNfKA8RaM .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-uMNfKA8RaM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uMNfKA8RaM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMNfKA8RaM .dropdown-item.active,
.cid-uMNfKA8RaM .dropdown-item:active {
  background-color: transparent;
}
.cid-uMNfKA8RaM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMNfKA8RaM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMNfKA8RaM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMNfKA8RaM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0976aa;
}
.cid-uMNfKA8RaM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uMNfKA8RaM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMNfKA8RaM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uMNfKA8RaM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uMNfKA8RaM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uMNfKA8RaM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uMNfKA8RaM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uMNfKA8RaM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMNfKA8RaM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMNfKA8RaM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uMNfKA8RaM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMNfKA8RaM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMNfKA8RaM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMNfKA8RaM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMNfKA8RaM .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uMNfKA8RaM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uMNfKA8RaM .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-uMNfKA8RaM .navbar {
    height: 70px;
  }
  .cid-uMNfKA8RaM .navbar.opened {
    height: auto;
  }
  .cid-uMNfKA8RaM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMNfKAA7kX {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uMNfKAA7kX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMNfKAA7kX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMNfKAA7kX H3 {
  text-align: center;
}
.cid-uMNfKAA7kX .mbr-text,
.cid-uMNfKAA7kX .mbr-section-btn {
  text-align: center;
}
.cid-uMNfKATXNT {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/fondo-3.jpg-612x448.jpg");
}
.cid-uMNfKATXNT .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uMNfKATXNT .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uMNfKATXNT .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uMNfKATXNT .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uMNfKATXNT .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uMNfKATXNT .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uMNfKATXNT .mbr-text,
.cid-uMNfKATXNT .mbr-section-btn {
  color: #fafafa;
  text-align: center;
}
.cid-uMNfKBgJXA {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #005b98;
}
.cid-uMNfKBgJXA img,
.cid-uMNfKBgJXA .item-img {
  width: 100%;
}
.cid-uMNfKBgJXA .item:focus,
.cid-uMNfKBgJXA span:focus {
  outline: none;
}
.cid-uMNfKBgJXA .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uMNfKBgJXA .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #0976aa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uMNfKBgJXA .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uMNfKBgJXA .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uMNfKBgJXA .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uMNfKBgJXA .mbr-section-title {
  color: #fafafa;
}
.cid-uMNfKBgJXA .mbr-text,
.cid-uMNfKBgJXA .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uMNfKBgJXA .item-title {
  text-align: left;
  color: #bbbbbb;
}
.cid-uMNfKBgJXA .item-subtitle {
  text-align: left;
}
.cid-uMNfKC5aWu {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/construccionesjp.jpg-2000x1255.jpg");
}
.cid-uMNfKC5aWu img,
.cid-uMNfKC5aWu .item-img {
  width: 100%;
  height: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-uMNfKC5aWu .item:focus,
.cid-uMNfKC5aWu span:focus {
  outline: none;
}
.cid-uMNfKC5aWu .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uMNfKC5aWu .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uMNfKC5aWu .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uMNfKC5aWu .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uMNfKC5aWu .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uMNfKC5aWu .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uMNfKC5aWu .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uMNfKC5aWu .mbr-section-title {
  color: #141619;
}
.cid-uMNfKC5aWu .mbr-text,
.cid-uMNfKC5aWu .mbr-section-btn {
  text-align: left;
}
.cid-uMNfKC5aWu .item-title {
  text-align: center;
}
.cid-uMNfKC5aWu .item-subtitle {
  text-align: center;
}
.cid-uMNfKCQrG9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bbbbbb;
}
.cid-uMNfKCQrG9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMNfKCQrG9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMNfKCQrG9 .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-uMNfKCQrG9 .currentcost {
  color: #232323;
}
.cid-uMNfKCQrG9 .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uMNfKCQrG9 .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uMNfKCQrG9 .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uMNfKCQrG9 .text-box {
    padding: 1rem;
  }
}
.cid-uMNfKCQrG9 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uMNfKDfaOF {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uMNfKDfaOF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMNfKDfaOF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMNfKDfaOF .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uMNfKDfaOF .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-uMNfKDfaOF .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uMNfKDfaOF .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uMNfKDfaOF .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uMNfKDfaOF .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uMNfKDfaOF .carousel-control,
.cid-uMNfKDfaOF .close {
  background: #1b1b1b;
}
.cid-uMNfKDfaOF .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uMNfKDfaOF .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uMNfKDfaOF .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uMNfKDfaOF .carousel-control-next span {
  margin-left: 5px;
}
.cid-uMNfKDfaOF .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uMNfKDfaOF .close::before {
  content: '\e91a';
}
.cid-uMNfKDfaOF .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uMNfKDfaOF .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uMNfKDfaOF .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMNfKDfaOF .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uMNfKDfaOF .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uMNfKDfaOF .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uMNfKDfaOF .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uMNfKDfaOF .carousel-indicators li.active,
.cid-uMNfKDfaOF .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uMNfKDfaOF .carousel-indicators li::after,
.cid-uMNfKDfaOF .carousel-indicators li::before {
  content: none;
}
.cid-uMNfKDfaOF .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uMNfKDfaOF .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uMNfKDfaOF .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uMNfKDfaOF .carousel-indicators {
    display: none;
  }
}
.cid-uMNfKDfaOF .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uMNfKDfaOF .carousel-inner > .active {
  display: block;
}
.cid-uMNfKDfaOF .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMNfKDfaOF .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uMNfKDfaOF .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uMNfKDfaOF .carousel-control,
  .cid-uMNfKDfaOF .carousel-indicators,
  .cid-uMNfKDfaOF .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uMNfKDfaOF .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uMNfKDfaOF .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uMNfKDfaOF .carousel-indicators .active,
.cid-uMNfKDfaOF .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uMNfKDfaOF .carousel-indicators .active {
  background: #fff;
}
.cid-uMNfKDfaOF .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uMNfKDfaOF .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uMNfKDfaOF .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uMNfKDfaOF .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uMNfKDfaOF .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uMNfKDfaOF .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uMNfKDfaOF .carousel {
  width: 100%;
}
.cid-uMNfKDfaOF .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uMNfKDfaOF .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uMNfKDfaOF .modal.fade .modal-dialog,
.cid-uMNfKDfaOF .modal.in .modal-dialog {
  transform: none;
}
.cid-uMNfKDfaOF .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uMNfKDfaOF H6 {
  text-align: center;
}
.cid-uMNfKEJCPo {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #0976aa;
}
.cid-uMNfKEJCPo img {
  width: 120px;
  margin: auto;
}
.cid-uMNfKEJCPo .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uMNfKEJCPo .card {
    max-width: 12.5%;
  }
}
.cid-uMNfKEJCPo .mbr-section-subtitle {
  color: #dbdbdb;
}
.cid-uMNfKEJCPo .mbr-section-title {
  color: #ffffff;
}
.cid-uMNfKF9Kjh {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-uMNfKF9Kjh .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uMNfKF9Kjh form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uMNfKF9Kjh form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uMNfKF9Kjh form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uMNfKF9Kjh .mbr-section-title {
  color: #000000;
}
.cid-uMNfKF9Kjh .mbr-section-subtitle {
  color: #000000;
}
.cid-uMNfKFwUDP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uMNfKFwUDP .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uMNfKFwUDP .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-uMNfKFwUDP .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uMNfKFwUDP .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uMNfKFwUDP .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #3ab752;
}
.cid-uMNfKGbDjD {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uMNfKGbDjD .google-map {
  height: 30rem;
  position: relative;
}
.cid-uMNfKGbDjD .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uMNfKGbDjD .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uMNfKGbDjD .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uMNfKGbDjD .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uOpo2OCa7R {
  z-index: 1000;
  width: 100%;
}
.cid-uOpo2OCa7R nav.navbar {
  position: fixed;
}
.cid-uOpo2OCa7R .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-uOpo2OCa7R .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uOpo2OCa7R .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uOpo2OCa7R .dropdown-item:hover,
.cid-uOpo2OCa7R .dropdown-item:focus {
  background: #3ab752 !important;
  color: white !important;
}
.cid-uOpo2OCa7R .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uOpo2OCa7R .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uOpo2OCa7R .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uOpo2OCa7R .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uOpo2OCa7R .nav-link {
  position: relative;
}
.cid-uOpo2OCa7R .container {
  display: flex;
  margin: auto;
}
.cid-uOpo2OCa7R .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uOpo2OCa7R .dropdown-menu,
.cid-uOpo2OCa7R .navbar.opened {
  background: #0976aa !important;
}
.cid-uOpo2OCa7R .nav-item:focus,
.cid-uOpo2OCa7R .nav-link:focus {
  outline: none;
}
.cid-uOpo2OCa7R .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uOpo2OCa7R .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uOpo2OCa7R .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uOpo2OCa7R .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uOpo2OCa7R .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uOpo2OCa7R .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uOpo2OCa7R .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #0976aa;
}
.cid-uOpo2OCa7R .navbar.opened {
  transition: all 0.3s;
}
.cid-uOpo2OCa7R .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uOpo2OCa7R .navbar .navbar-logo img {
  width: auto;
}
.cid-uOpo2OCa7R .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uOpo2OCa7R .navbar.collapsed {
  justify-content: center;
}
.cid-uOpo2OCa7R .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uOpo2OCa7R .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uOpo2OCa7R .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.9rem);
  }
}
.cid-uOpo2OCa7R .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uOpo2OCa7R .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uOpo2OCa7R .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-uOpo2OCa7R .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uOpo2OCa7R .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uOpo2OCa7R .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uOpo2OCa7R .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uOpo2OCa7R .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uOpo2OCa7R .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uOpo2OCa7R .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uOpo2OCa7R .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-uOpo2OCa7R .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uOpo2OCa7R .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uOpo2OCa7R .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uOpo2OCa7R .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uOpo2OCa7R .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uOpo2OCa7R .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uOpo2OCa7R .navbar.navbar-short {
  min-height: 60px;
}
.cid-uOpo2OCa7R .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uOpo2OCa7R .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uOpo2OCa7R .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-uOpo2OCa7R .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uOpo2OCa7R .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uOpo2OCa7R .dropdown-item.active,
.cid-uOpo2OCa7R .dropdown-item:active {
  background-color: transparent;
}
.cid-uOpo2OCa7R .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uOpo2OCa7R .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uOpo2OCa7R .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uOpo2OCa7R .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0976aa;
}
.cid-uOpo2OCa7R .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uOpo2OCa7R .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uOpo2OCa7R ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uOpo2OCa7R .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uOpo2OCa7R button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uOpo2OCa7R button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uOpo2OCa7R button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uOpo2OCa7R button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uOpo2OCa7R button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uOpo2OCa7R button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uOpo2OCa7R nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uOpo2OCa7R nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uOpo2OCa7R nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uOpo2OCa7R nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uOpo2OCa7R .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uOpo2OCa7R a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uOpo2OCa7R .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-uOpo2OCa7R .navbar {
    height: 70px;
  }
  .cid-uOpo2OCa7R .navbar.opened {
    height: auto;
  }
  .cid-uOpo2OCa7R .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uOpo2PelUS {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uOpo2PelUS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOpo2PelUS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOpo2PelUS H3 {
  text-align: center;
}
.cid-uOpo2PelUS .mbr-text,
.cid-uOpo2PelUS .mbr-section-btn {
  text-align: center;
}
.cid-uOpo2PG4FJ {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/fondo-3.jpg-612x448.jpg");
}
.cid-uOpo2PG4FJ .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uOpo2PG4FJ .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uOpo2PG4FJ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uOpo2PG4FJ .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uOpo2PG4FJ .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uOpo2PG4FJ .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uOpo2PG4FJ .mbr-text,
.cid-uOpo2PG4FJ .mbr-section-btn {
  color: #fafafa;
  text-align: center;
}
.cid-uOpo2Q5JcC {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #005b98;
}
.cid-uOpo2Q5JcC img,
.cid-uOpo2Q5JcC .item-img {
  width: 100%;
}
.cid-uOpo2Q5JcC .item:focus,
.cid-uOpo2Q5JcC span:focus {
  outline: none;
}
.cid-uOpo2Q5JcC .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uOpo2Q5JcC .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #0976aa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uOpo2Q5JcC .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOpo2Q5JcC .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uOpo2Q5JcC .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uOpo2Q5JcC .mbr-section-title {
  color: #fafafa;
}
.cid-uOpo2Q5JcC .mbr-text,
.cid-uOpo2Q5JcC .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uOpo2Q5JcC .item-title {
  text-align: left;
  color: #bbbbbb;
}
.cid-uOpo2Q5JcC .item-subtitle {
  text-align: left;
}
.cid-uOpo2QWX1J {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/construccionesjp.jpg-2000x1255.jpg");
}
.cid-uOpo2QWX1J img,
.cid-uOpo2QWX1J .item-img {
  width: 100%;
  height: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-uOpo2QWX1J .item:focus,
.cid-uOpo2QWX1J span:focus {
  outline: none;
}
.cid-uOpo2QWX1J .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uOpo2QWX1J .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uOpo2QWX1J .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uOpo2QWX1J .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOpo2QWX1J .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uOpo2QWX1J .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uOpo2QWX1J .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uOpo2QWX1J .mbr-section-title {
  color: #141619;
}
.cid-uOpo2QWX1J .mbr-text,
.cid-uOpo2QWX1J .mbr-section-btn {
  text-align: left;
}
.cid-uOpo2QWX1J .item-title {
  text-align: center;
}
.cid-uOpo2QWX1J .item-subtitle {
  text-align: center;
}
.cid-uOpo2S9xVS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bbbbbb;
}
.cid-uOpo2S9xVS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOpo2S9xVS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOpo2S9xVS .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-uOpo2S9xVS .currentcost {
  color: #232323;
}
.cid-uOpo2S9xVS .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uOpo2S9xVS .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uOpo2S9xVS .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uOpo2S9xVS .text-box {
    padding: 1rem;
  }
}
.cid-uOpo2S9xVS .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uOpo2SExIK {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uOpo2SExIK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOpo2SExIK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOpo2SExIK .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uOpo2SExIK .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-uOpo2SExIK .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uOpo2SExIK .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uOpo2SExIK .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uOpo2SExIK .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uOpo2SExIK .carousel-control,
.cid-uOpo2SExIK .close {
  background: #1b1b1b;
}
.cid-uOpo2SExIK .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uOpo2SExIK .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uOpo2SExIK .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uOpo2SExIK .carousel-control-next span {
  margin-left: 5px;
}
.cid-uOpo2SExIK .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uOpo2SExIK .close::before {
  content: '\e91a';
}
.cid-uOpo2SExIK .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uOpo2SExIK .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uOpo2SExIK .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uOpo2SExIK .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uOpo2SExIK .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uOpo2SExIK .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uOpo2SExIK .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uOpo2SExIK .carousel-indicators li.active,
.cid-uOpo2SExIK .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uOpo2SExIK .carousel-indicators li::after,
.cid-uOpo2SExIK .carousel-indicators li::before {
  content: none;
}
.cid-uOpo2SExIK .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uOpo2SExIK .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uOpo2SExIK .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uOpo2SExIK .carousel-indicators {
    display: none;
  }
}
.cid-uOpo2SExIK .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uOpo2SExIK .carousel-inner > .active {
  display: block;
}
.cid-uOpo2SExIK .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uOpo2SExIK .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uOpo2SExIK .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uOpo2SExIK .carousel-control,
  .cid-uOpo2SExIK .carousel-indicators,
  .cid-uOpo2SExIK .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uOpo2SExIK .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uOpo2SExIK .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uOpo2SExIK .carousel-indicators .active,
.cid-uOpo2SExIK .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uOpo2SExIK .carousel-indicators .active {
  background: #fff;
}
.cid-uOpo2SExIK .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uOpo2SExIK .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uOpo2SExIK .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uOpo2SExIK .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uOpo2SExIK .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uOpo2SExIK .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uOpo2SExIK .carousel {
  width: 100%;
}
.cid-uOpo2SExIK .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uOpo2SExIK .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uOpo2SExIK .modal.fade .modal-dialog,
.cid-uOpo2SExIK .modal.in .modal-dialog {
  transform: none;
}
.cid-uOpo2SExIK .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uOpo2SExIK H6 {
  text-align: center;
}
.cid-uOpo2URi4V {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #0976aa;
}
.cid-uOpo2URi4V img {
  width: 120px;
  margin: auto;
}
.cid-uOpo2URi4V .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uOpo2URi4V .card {
    max-width: 12.5%;
  }
}
.cid-uOpo2URi4V .mbr-section-subtitle {
  color: #dbdbdb;
}
.cid-uOpo2URi4V .mbr-section-title {
  color: #ffffff;
}
.cid-uOpo2VtkQg {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-uOpo2VtkQg .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uOpo2VtkQg form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uOpo2VtkQg form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uOpo2VtkQg form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uOpo2VtkQg .mbr-section-title {
  color: #000000;
}
.cid-uOpo2VtkQg .mbr-section-subtitle {
  color: #000000;
}
.cid-uOpo2VZ9j1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uOpo2VZ9j1 .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uOpo2VZ9j1 .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-uOpo2VZ9j1 .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uOpo2VZ9j1 .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uOpo2VZ9j1 .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #3ab752;
}
.cid-uOpo2WQuam {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uOpo2WQuam .google-map {
  height: 30rem;
  position: relative;
}
.cid-uOpo2WQuam .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uOpo2WQuam .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uOpo2WQuam .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uOpo2WQuam .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uOpoepRp2H {
  z-index: 1000;
  width: 100%;
}
.cid-uOpoepRp2H nav.navbar {
  position: fixed;
}
.cid-uOpoepRp2H .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-uOpoepRp2H .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uOpoepRp2H .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uOpoepRp2H .dropdown-item:hover,
.cid-uOpoepRp2H .dropdown-item:focus {
  background: #3ab752 !important;
  color: white !important;
}
.cid-uOpoepRp2H .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uOpoepRp2H .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uOpoepRp2H .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uOpoepRp2H .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uOpoepRp2H .nav-link {
  position: relative;
}
.cid-uOpoepRp2H .container {
  display: flex;
  margin: auto;
}
.cid-uOpoepRp2H .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uOpoepRp2H .dropdown-menu,
.cid-uOpoepRp2H .navbar.opened {
  background: #0976aa !important;
}
.cid-uOpoepRp2H .nav-item:focus,
.cid-uOpoepRp2H .nav-link:focus {
  outline: none;
}
.cid-uOpoepRp2H .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uOpoepRp2H .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uOpoepRp2H .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uOpoepRp2H .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uOpoepRp2H .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uOpoepRp2H .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uOpoepRp2H .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #0976aa;
}
.cid-uOpoepRp2H .navbar.opened {
  transition: all 0.3s;
}
.cid-uOpoepRp2H .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uOpoepRp2H .navbar .navbar-logo img {
  width: auto;
}
.cid-uOpoepRp2H .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uOpoepRp2H .navbar.collapsed {
  justify-content: center;
}
.cid-uOpoepRp2H .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uOpoepRp2H .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uOpoepRp2H .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.9rem);
  }
}
.cid-uOpoepRp2H .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uOpoepRp2H .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uOpoepRp2H .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-uOpoepRp2H .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uOpoepRp2H .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uOpoepRp2H .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uOpoepRp2H .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uOpoepRp2H .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uOpoepRp2H .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uOpoepRp2H .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uOpoepRp2H .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-uOpoepRp2H .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uOpoepRp2H .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uOpoepRp2H .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uOpoepRp2H .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uOpoepRp2H .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uOpoepRp2H .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uOpoepRp2H .navbar.navbar-short {
  min-height: 60px;
}
.cid-uOpoepRp2H .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uOpoepRp2H .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uOpoepRp2H .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-uOpoepRp2H .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uOpoepRp2H .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uOpoepRp2H .dropdown-item.active,
.cid-uOpoepRp2H .dropdown-item:active {
  background-color: transparent;
}
.cid-uOpoepRp2H .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uOpoepRp2H .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uOpoepRp2H .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uOpoepRp2H .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0976aa;
}
.cid-uOpoepRp2H .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uOpoepRp2H .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uOpoepRp2H ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uOpoepRp2H .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uOpoepRp2H button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uOpoepRp2H button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uOpoepRp2H button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uOpoepRp2H button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uOpoepRp2H button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uOpoepRp2H button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uOpoepRp2H nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uOpoepRp2H nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uOpoepRp2H nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uOpoepRp2H nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uOpoepRp2H .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uOpoepRp2H a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uOpoepRp2H .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-uOpoepRp2H .navbar {
    height: 70px;
  }
  .cid-uOpoepRp2H .navbar.opened {
    height: auto;
  }
  .cid-uOpoepRp2H .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uOpoeqwFxG {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uOpoeqwFxG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOpoeqwFxG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOpoeqwFxG H3 {
  text-align: center;
}
.cid-uOpoeqwFxG .mbr-text,
.cid-uOpoeqwFxG .mbr-section-btn {
  text-align: center;
}
.cid-uOpoeqU89Q {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/fondo-3.jpg-612x448.jpg");
}
.cid-uOpoeqU89Q .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uOpoeqU89Q .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uOpoeqU89Q .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uOpoeqU89Q .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uOpoeqU89Q .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uOpoeqU89Q .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uOpoeqU89Q .mbr-text,
.cid-uOpoeqU89Q .mbr-section-btn {
  color: #fafafa;
  text-align: center;
}
.cid-uOpoerno52 {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #005b98;
}
.cid-uOpoerno52 img,
.cid-uOpoerno52 .item-img {
  width: 100%;
}
.cid-uOpoerno52 .item:focus,
.cid-uOpoerno52 span:focus {
  outline: none;
}
.cid-uOpoerno52 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uOpoerno52 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #0976aa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uOpoerno52 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOpoerno52 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uOpoerno52 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uOpoerno52 .mbr-section-title {
  color: #fafafa;
}
.cid-uOpoerno52 .mbr-text,
.cid-uOpoerno52 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uOpoerno52 .item-title {
  text-align: left;
  color: #bbbbbb;
}
.cid-uOpoerno52 .item-subtitle {
  text-align: left;
}
.cid-uOpoesvE9g {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/construccionesjp.jpg-2000x1255.jpg");
}
.cid-uOpoesvE9g img,
.cid-uOpoesvE9g .item-img {
  width: 100%;
  height: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-uOpoesvE9g .item:focus,
.cid-uOpoesvE9g span:focus {
  outline: none;
}
.cid-uOpoesvE9g .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uOpoesvE9g .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uOpoesvE9g .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uOpoesvE9g .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOpoesvE9g .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uOpoesvE9g .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uOpoesvE9g .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uOpoesvE9g .mbr-section-title {
  color: #141619;
}
.cid-uOpoesvE9g .mbr-text,
.cid-uOpoesvE9g .mbr-section-btn {
  text-align: left;
}
.cid-uOpoesvE9g .item-title {
  text-align: center;
}
.cid-uOpoesvE9g .item-subtitle {
  text-align: center;
}
.cid-uOpoetRKye {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bbbbbb;
}
.cid-uOpoetRKye .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOpoetRKye .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOpoetRKye .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-uOpoetRKye .currentcost {
  color: #232323;
}
.cid-uOpoetRKye .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uOpoetRKye .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uOpoetRKye .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uOpoetRKye .text-box {
    padding: 1rem;
  }
}
.cid-uOpoetRKye .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uOpoeungEy {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uOpoeungEy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOpoeungEy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOpoeungEy .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uOpoeungEy .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-uOpoeungEy .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uOpoeungEy .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uOpoeungEy .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uOpoeungEy .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uOpoeungEy .carousel-control,
.cid-uOpoeungEy .close {
  background: #1b1b1b;
}
.cid-uOpoeungEy .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uOpoeungEy .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uOpoeungEy .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uOpoeungEy .carousel-control-next span {
  margin-left: 5px;
}
.cid-uOpoeungEy .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uOpoeungEy .close::before {
  content: '\e91a';
}
.cid-uOpoeungEy .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uOpoeungEy .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uOpoeungEy .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uOpoeungEy .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uOpoeungEy .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uOpoeungEy .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uOpoeungEy .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uOpoeungEy .carousel-indicators li.active,
.cid-uOpoeungEy .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uOpoeungEy .carousel-indicators li::after,
.cid-uOpoeungEy .carousel-indicators li::before {
  content: none;
}
.cid-uOpoeungEy .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uOpoeungEy .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uOpoeungEy .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uOpoeungEy .carousel-indicators {
    display: none;
  }
}
.cid-uOpoeungEy .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uOpoeungEy .carousel-inner > .active {
  display: block;
}
.cid-uOpoeungEy .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uOpoeungEy .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uOpoeungEy .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uOpoeungEy .carousel-control,
  .cid-uOpoeungEy .carousel-indicators,
  .cid-uOpoeungEy .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uOpoeungEy .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uOpoeungEy .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uOpoeungEy .carousel-indicators .active,
.cid-uOpoeungEy .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uOpoeungEy .carousel-indicators .active {
  background: #fff;
}
.cid-uOpoeungEy .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uOpoeungEy .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uOpoeungEy .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uOpoeungEy .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uOpoeungEy .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uOpoeungEy .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uOpoeungEy .carousel {
  width: 100%;
}
.cid-uOpoeungEy .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uOpoeungEy .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uOpoeungEy .modal.fade .modal-dialog,
.cid-uOpoeungEy .modal.in .modal-dialog {
  transform: none;
}
.cid-uOpoeungEy .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uOpoeungEy H6 {
  text-align: center;
}
.cid-uOpoewVtEn {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #0976aa;
}
.cid-uOpoewVtEn img {
  width: 120px;
  margin: auto;
}
.cid-uOpoewVtEn .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uOpoewVtEn .card {
    max-width: 12.5%;
  }
}
.cid-uOpoewVtEn .mbr-section-subtitle {
  color: #dbdbdb;
}
.cid-uOpoewVtEn .mbr-section-title {
  color: #ffffff;
}
.cid-uOpoexzQ8l {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-uOpoexzQ8l .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uOpoexzQ8l form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uOpoexzQ8l form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uOpoexzQ8l form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uOpoexzQ8l .mbr-section-title {
  color: #000000;
}
.cid-uOpoexzQ8l .mbr-section-subtitle {
  color: #000000;
}
.cid-uOpoeyiVIm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uOpoeyiVIm .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uOpoeyiVIm .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-uOpoeyiVIm .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uOpoeyiVIm .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uOpoeyiVIm .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #3ab752;
}
.cid-uOpoezjEAu {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uOpoezjEAu .google-map {
  height: 30rem;
  position: relative;
}
.cid-uOpoezjEAu .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uOpoezjEAu .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uOpoezjEAu .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uOpoezjEAu .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uOpolsdFBi {
  z-index: 1000;
  width: 100%;
}
.cid-uOpolsdFBi nav.navbar {
  position: fixed;
}
.cid-uOpolsdFBi .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-uOpolsdFBi .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uOpolsdFBi .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uOpolsdFBi .dropdown-item:hover,
.cid-uOpolsdFBi .dropdown-item:focus {
  background: #3ab752 !important;
  color: white !important;
}
.cid-uOpolsdFBi .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uOpolsdFBi .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uOpolsdFBi .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uOpolsdFBi .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uOpolsdFBi .nav-link {
  position: relative;
}
.cid-uOpolsdFBi .container {
  display: flex;
  margin: auto;
}
.cid-uOpolsdFBi .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uOpolsdFBi .dropdown-menu,
.cid-uOpolsdFBi .navbar.opened {
  background: #0976aa !important;
}
.cid-uOpolsdFBi .nav-item:focus,
.cid-uOpolsdFBi .nav-link:focus {
  outline: none;
}
.cid-uOpolsdFBi .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uOpolsdFBi .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uOpolsdFBi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uOpolsdFBi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uOpolsdFBi .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uOpolsdFBi .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uOpolsdFBi .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #0976aa;
}
.cid-uOpolsdFBi .navbar.opened {
  transition: all 0.3s;
}
.cid-uOpolsdFBi .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uOpolsdFBi .navbar .navbar-logo img {
  width: auto;
}
.cid-uOpolsdFBi .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uOpolsdFBi .navbar.collapsed {
  justify-content: center;
}
.cid-uOpolsdFBi .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uOpolsdFBi .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uOpolsdFBi .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.9rem);
  }
}
.cid-uOpolsdFBi .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uOpolsdFBi .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uOpolsdFBi .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-uOpolsdFBi .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uOpolsdFBi .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uOpolsdFBi .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uOpolsdFBi .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uOpolsdFBi .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uOpolsdFBi .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uOpolsdFBi .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uOpolsdFBi .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-uOpolsdFBi .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uOpolsdFBi .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uOpolsdFBi .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uOpolsdFBi .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uOpolsdFBi .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uOpolsdFBi .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uOpolsdFBi .navbar.navbar-short {
  min-height: 60px;
}
.cid-uOpolsdFBi .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uOpolsdFBi .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uOpolsdFBi .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-uOpolsdFBi .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uOpolsdFBi .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uOpolsdFBi .dropdown-item.active,
.cid-uOpolsdFBi .dropdown-item:active {
  background-color: transparent;
}
.cid-uOpolsdFBi .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uOpolsdFBi .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uOpolsdFBi .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uOpolsdFBi .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0976aa;
}
.cid-uOpolsdFBi .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uOpolsdFBi .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uOpolsdFBi ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uOpolsdFBi .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uOpolsdFBi button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uOpolsdFBi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uOpolsdFBi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uOpolsdFBi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uOpolsdFBi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uOpolsdFBi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uOpolsdFBi nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uOpolsdFBi nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uOpolsdFBi nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uOpolsdFBi nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uOpolsdFBi .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uOpolsdFBi a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uOpolsdFBi .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-uOpolsdFBi .navbar {
    height: 70px;
  }
  .cid-uOpolsdFBi .navbar.opened {
    height: auto;
  }
  .cid-uOpolsdFBi .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uOpolsTBOd {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uOpolsTBOd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOpolsTBOd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOpolsTBOd H3 {
  text-align: center;
}
.cid-uOpolsTBOd .mbr-text,
.cid-uOpolsTBOd .mbr-section-btn {
  text-align: center;
}
.cid-uOpoltoVOJ {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/fondo-3.jpg-612x448.jpg");
}
.cid-uOpoltoVOJ .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uOpoltoVOJ .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uOpoltoVOJ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uOpoltoVOJ .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uOpoltoVOJ .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uOpoltoVOJ .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uOpoltoVOJ .mbr-text,
.cid-uOpoltoVOJ .mbr-section-btn {
  color: #fafafa;
  text-align: center;
}
.cid-uOpolu8RN2 {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #005b98;
}
.cid-uOpolu8RN2 img,
.cid-uOpolu8RN2 .item-img {
  width: 100%;
}
.cid-uOpolu8RN2 .item:focus,
.cid-uOpolu8RN2 span:focus {
  outline: none;
}
.cid-uOpolu8RN2 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uOpolu8RN2 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #0976aa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uOpolu8RN2 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOpolu8RN2 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uOpolu8RN2 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uOpolu8RN2 .mbr-section-title {
  color: #fafafa;
}
.cid-uOpolu8RN2 .mbr-text,
.cid-uOpolu8RN2 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uOpolu8RN2 .item-title {
  text-align: left;
  color: #bbbbbb;
}
.cid-uOpolu8RN2 .item-subtitle {
  text-align: left;
}
.cid-uOpolvalsq {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/construccionesjp.jpg-2000x1255.jpg");
}
.cid-uOpolvalsq img,
.cid-uOpolvalsq .item-img {
  width: 100%;
  height: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-uOpolvalsq .item:focus,
.cid-uOpolvalsq span:focus {
  outline: none;
}
.cid-uOpolvalsq .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uOpolvalsq .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uOpolvalsq .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uOpolvalsq .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOpolvalsq .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uOpolvalsq .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uOpolvalsq .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uOpolvalsq .mbr-section-title {
  color: #141619;
}
.cid-uOpolvalsq .mbr-text,
.cid-uOpolvalsq .mbr-section-btn {
  text-align: left;
}
.cid-uOpolvalsq .item-title {
  text-align: center;
}
.cid-uOpolvalsq .item-subtitle {
  text-align: center;
}
.cid-uOpolwpJs6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bbbbbb;
}
.cid-uOpolwpJs6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOpolwpJs6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOpolwpJs6 .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-uOpolwpJs6 .currentcost {
  color: #232323;
}
.cid-uOpolwpJs6 .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uOpolwpJs6 .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uOpolwpJs6 .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uOpolwpJs6 .text-box {
    padding: 1rem;
  }
}
.cid-uOpolwpJs6 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uOpolx5vp3 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uOpolx5vp3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOpolx5vp3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOpolx5vp3 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uOpolx5vp3 .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-uOpolx5vp3 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uOpolx5vp3 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uOpolx5vp3 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uOpolx5vp3 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uOpolx5vp3 .carousel-control,
.cid-uOpolx5vp3 .close {
  background: #1b1b1b;
}
.cid-uOpolx5vp3 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uOpolx5vp3 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uOpolx5vp3 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uOpolx5vp3 .carousel-control-next span {
  margin-left: 5px;
}
.cid-uOpolx5vp3 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uOpolx5vp3 .close::before {
  content: '\e91a';
}
.cid-uOpolx5vp3 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uOpolx5vp3 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uOpolx5vp3 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uOpolx5vp3 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uOpolx5vp3 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uOpolx5vp3 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uOpolx5vp3 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uOpolx5vp3 .carousel-indicators li.active,
.cid-uOpolx5vp3 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uOpolx5vp3 .carousel-indicators li::after,
.cid-uOpolx5vp3 .carousel-indicators li::before {
  content: none;
}
.cid-uOpolx5vp3 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uOpolx5vp3 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uOpolx5vp3 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uOpolx5vp3 .carousel-indicators {
    display: none;
  }
}
.cid-uOpolx5vp3 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uOpolx5vp3 .carousel-inner > .active {
  display: block;
}
.cid-uOpolx5vp3 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uOpolx5vp3 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uOpolx5vp3 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uOpolx5vp3 .carousel-control,
  .cid-uOpolx5vp3 .carousel-indicators,
  .cid-uOpolx5vp3 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uOpolx5vp3 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uOpolx5vp3 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uOpolx5vp3 .carousel-indicators .active,
.cid-uOpolx5vp3 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uOpolx5vp3 .carousel-indicators .active {
  background: #fff;
}
.cid-uOpolx5vp3 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uOpolx5vp3 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uOpolx5vp3 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uOpolx5vp3 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uOpolx5vp3 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uOpolx5vp3 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uOpolx5vp3 .carousel {
  width: 100%;
}
.cid-uOpolx5vp3 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uOpolx5vp3 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uOpolx5vp3 .modal.fade .modal-dialog,
.cid-uOpolx5vp3 .modal.in .modal-dialog {
  transform: none;
}
.cid-uOpolx5vp3 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uOpolx5vp3 H6 {
  text-align: center;
}
.cid-uOpolBSEtX {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #0976aa;
}
.cid-uOpolBSEtX img {
  width: 120px;
  margin: auto;
}
.cid-uOpolBSEtX .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uOpolBSEtX .card {
    max-width: 12.5%;
  }
}
.cid-uOpolBSEtX .mbr-section-subtitle {
  color: #dbdbdb;
}
.cid-uOpolBSEtX .mbr-section-title {
  color: #ffffff;
}
.cid-uOpolDPsBz {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-uOpolDPsBz .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uOpolDPsBz form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uOpolDPsBz form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uOpolDPsBz form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uOpolDPsBz .mbr-section-title {
  color: #000000;
}
.cid-uOpolDPsBz .mbr-section-subtitle {
  color: #000000;
}
.cid-uOpolFmXrr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uOpolFmXrr .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uOpolFmXrr .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-uOpolFmXrr .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uOpolFmXrr .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uOpolFmXrr .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #3ab752;
}
.cid-uOpolGR42W {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uOpolGR42W .google-map {
  height: 30rem;
  position: relative;
}
.cid-uOpolGR42W .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uOpolGR42W .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uOpolGR42W .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uOpolGR42W .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uOporZFa5q {
  z-index: 1000;
  width: 100%;
}
.cid-uOporZFa5q nav.navbar {
  position: fixed;
}
.cid-uOporZFa5q .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-uOporZFa5q .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uOporZFa5q .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uOporZFa5q .dropdown-item:hover,
.cid-uOporZFa5q .dropdown-item:focus {
  background: #3ab752 !important;
  color: white !important;
}
.cid-uOporZFa5q .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uOporZFa5q .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uOporZFa5q .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uOporZFa5q .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uOporZFa5q .nav-link {
  position: relative;
}
.cid-uOporZFa5q .container {
  display: flex;
  margin: auto;
}
.cid-uOporZFa5q .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uOporZFa5q .dropdown-menu,
.cid-uOporZFa5q .navbar.opened {
  background: #0976aa !important;
}
.cid-uOporZFa5q .nav-item:focus,
.cid-uOporZFa5q .nav-link:focus {
  outline: none;
}
.cid-uOporZFa5q .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uOporZFa5q .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uOporZFa5q .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uOporZFa5q .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uOporZFa5q .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uOporZFa5q .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uOporZFa5q .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #0976aa;
}
.cid-uOporZFa5q .navbar.opened {
  transition: all 0.3s;
}
.cid-uOporZFa5q .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uOporZFa5q .navbar .navbar-logo img {
  width: auto;
}
.cid-uOporZFa5q .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uOporZFa5q .navbar.collapsed {
  justify-content: center;
}
.cid-uOporZFa5q .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uOporZFa5q .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uOporZFa5q .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.9rem);
  }
}
.cid-uOporZFa5q .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uOporZFa5q .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uOporZFa5q .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-uOporZFa5q .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uOporZFa5q .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uOporZFa5q .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uOporZFa5q .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uOporZFa5q .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uOporZFa5q .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uOporZFa5q .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uOporZFa5q .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-uOporZFa5q .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uOporZFa5q .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uOporZFa5q .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uOporZFa5q .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uOporZFa5q .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uOporZFa5q .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uOporZFa5q .navbar.navbar-short {
  min-height: 60px;
}
.cid-uOporZFa5q .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uOporZFa5q .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uOporZFa5q .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-uOporZFa5q .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uOporZFa5q .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uOporZFa5q .dropdown-item.active,
.cid-uOporZFa5q .dropdown-item:active {
  background-color: transparent;
}
.cid-uOporZFa5q .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uOporZFa5q .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uOporZFa5q .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uOporZFa5q .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0976aa;
}
.cid-uOporZFa5q .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uOporZFa5q .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uOporZFa5q ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uOporZFa5q .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uOporZFa5q button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uOporZFa5q button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uOporZFa5q button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uOporZFa5q button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uOporZFa5q button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uOporZFa5q button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uOporZFa5q nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uOporZFa5q nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uOporZFa5q nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uOporZFa5q nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uOporZFa5q .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uOporZFa5q a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uOporZFa5q .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-uOporZFa5q .navbar {
    height: 70px;
  }
  .cid-uOporZFa5q .navbar.opened {
    height: auto;
  }
  .cid-uOporZFa5q .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uOpos0mbo2 {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uOpos0mbo2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOpos0mbo2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOpos0mbo2 H3 {
  text-align: center;
}
.cid-uOpos0mbo2 .mbr-text,
.cid-uOpos0mbo2 .mbr-section-btn {
  text-align: center;
}
.cid-uOpos10XyR {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/fondo-3.jpg-612x448.jpg");
}
.cid-uOpos10XyR .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uOpos10XyR .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uOpos10XyR .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uOpos10XyR .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uOpos10XyR .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uOpos10XyR .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uOpos10XyR .mbr-text,
.cid-uOpos10XyR .mbr-section-btn {
  color: #fafafa;
  text-align: center;
}
.cid-uOpos1Hn1w {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #005b98;
}
.cid-uOpos1Hn1w img,
.cid-uOpos1Hn1w .item-img {
  width: 100%;
}
.cid-uOpos1Hn1w .item:focus,
.cid-uOpos1Hn1w span:focus {
  outline: none;
}
.cid-uOpos1Hn1w .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uOpos1Hn1w .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #0976aa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uOpos1Hn1w .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOpos1Hn1w .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uOpos1Hn1w .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uOpos1Hn1w .mbr-section-title {
  color: #fafafa;
}
.cid-uOpos1Hn1w .mbr-text,
.cid-uOpos1Hn1w .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uOpos1Hn1w .item-title {
  text-align: left;
  color: #bbbbbb;
}
.cid-uOpos1Hn1w .item-subtitle {
  text-align: left;
}
.cid-uOpos2OvS3 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/construccionesjp.jpg-2000x1255.jpg");
}
.cid-uOpos2OvS3 img,
.cid-uOpos2OvS3 .item-img {
  width: 100%;
  height: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-uOpos2OvS3 .item:focus,
.cid-uOpos2OvS3 span:focus {
  outline: none;
}
.cid-uOpos2OvS3 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uOpos2OvS3 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uOpos2OvS3 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uOpos2OvS3 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOpos2OvS3 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uOpos2OvS3 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uOpos2OvS3 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uOpos2OvS3 .mbr-section-title {
  color: #141619;
}
.cid-uOpos2OvS3 .mbr-text,
.cid-uOpos2OvS3 .mbr-section-btn {
  text-align: left;
}
.cid-uOpos2OvS3 .item-title {
  text-align: center;
}
.cid-uOpos2OvS3 .item-subtitle {
  text-align: center;
}
.cid-uOpos3YcFA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bbbbbb;
}
.cid-uOpos3YcFA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOpos3YcFA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOpos3YcFA .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-uOpos3YcFA .currentcost {
  color: #232323;
}
.cid-uOpos3YcFA .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uOpos3YcFA .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uOpos3YcFA .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uOpos3YcFA .text-box {
    padding: 1rem;
  }
}
.cid-uOpos3YcFA .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uOpos4yyHN {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uOpos4yyHN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOpos4yyHN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOpos4yyHN .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uOpos4yyHN .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-uOpos4yyHN .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uOpos4yyHN .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uOpos4yyHN .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uOpos4yyHN .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uOpos4yyHN .carousel-control,
.cid-uOpos4yyHN .close {
  background: #1b1b1b;
}
.cid-uOpos4yyHN .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uOpos4yyHN .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uOpos4yyHN .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uOpos4yyHN .carousel-control-next span {
  margin-left: 5px;
}
.cid-uOpos4yyHN .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uOpos4yyHN .close::before {
  content: '\e91a';
}
.cid-uOpos4yyHN .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uOpos4yyHN .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uOpos4yyHN .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uOpos4yyHN .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uOpos4yyHN .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uOpos4yyHN .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uOpos4yyHN .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uOpos4yyHN .carousel-indicators li.active,
.cid-uOpos4yyHN .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uOpos4yyHN .carousel-indicators li::after,
.cid-uOpos4yyHN .carousel-indicators li::before {
  content: none;
}
.cid-uOpos4yyHN .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uOpos4yyHN .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uOpos4yyHN .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uOpos4yyHN .carousel-indicators {
    display: none;
  }
}
.cid-uOpos4yyHN .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uOpos4yyHN .carousel-inner > .active {
  display: block;
}
.cid-uOpos4yyHN .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uOpos4yyHN .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uOpos4yyHN .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uOpos4yyHN .carousel-control,
  .cid-uOpos4yyHN .carousel-indicators,
  .cid-uOpos4yyHN .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uOpos4yyHN .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uOpos4yyHN .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uOpos4yyHN .carousel-indicators .active,
.cid-uOpos4yyHN .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uOpos4yyHN .carousel-indicators .active {
  background: #fff;
}
.cid-uOpos4yyHN .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uOpos4yyHN .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uOpos4yyHN .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uOpos4yyHN .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uOpos4yyHN .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uOpos4yyHN .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uOpos4yyHN .carousel {
  width: 100%;
}
.cid-uOpos4yyHN .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uOpos4yyHN .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uOpos4yyHN .modal.fade .modal-dialog,
.cid-uOpos4yyHN .modal.in .modal-dialog {
  transform: none;
}
.cid-uOpos4yyHN .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uOpos4yyHN H6 {
  text-align: center;
}
.cid-uOpos6TRqe {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #0976aa;
}
.cid-uOpos6TRqe img {
  width: 120px;
  margin: auto;
}
.cid-uOpos6TRqe .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uOpos6TRqe .card {
    max-width: 12.5%;
  }
}
.cid-uOpos6TRqe .mbr-section-subtitle {
  color: #dbdbdb;
}
.cid-uOpos6TRqe .mbr-section-title {
  color: #ffffff;
}
.cid-uOpos93o1R {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-uOpos93o1R .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uOpos93o1R form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uOpos93o1R form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uOpos93o1R form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uOpos93o1R .mbr-section-title {
  color: #000000;
}
.cid-uOpos93o1R .mbr-section-subtitle {
  color: #000000;
}
.cid-uOposavU72 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uOposavU72 .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uOposavU72 .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-uOposavU72 .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uOposavU72 .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uOposavU72 .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #3ab752;
}
.cid-uOposdilCW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uOposdilCW .google-map {
  height: 30rem;
  position: relative;
}
.cid-uOposdilCW .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uOposdilCW .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uOposdilCW .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uOposdilCW .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uOpow4JUrs {
  z-index: 1000;
  width: 100%;
}
.cid-uOpow4JUrs nav.navbar {
  position: fixed;
}
.cid-uOpow4JUrs .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-uOpow4JUrs .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uOpow4JUrs .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uOpow4JUrs .dropdown-item:hover,
.cid-uOpow4JUrs .dropdown-item:focus {
  background: #3ab752 !important;
  color: white !important;
}
.cid-uOpow4JUrs .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uOpow4JUrs .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uOpow4JUrs .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uOpow4JUrs .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uOpow4JUrs .nav-link {
  position: relative;
}
.cid-uOpow4JUrs .container {
  display: flex;
  margin: auto;
}
.cid-uOpow4JUrs .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uOpow4JUrs .dropdown-menu,
.cid-uOpow4JUrs .navbar.opened {
  background: #0976aa !important;
}
.cid-uOpow4JUrs .nav-item:focus,
.cid-uOpow4JUrs .nav-link:focus {
  outline: none;
}
.cid-uOpow4JUrs .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uOpow4JUrs .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uOpow4JUrs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uOpow4JUrs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uOpow4JUrs .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uOpow4JUrs .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uOpow4JUrs .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #0976aa;
}
.cid-uOpow4JUrs .navbar.opened {
  transition: all 0.3s;
}
.cid-uOpow4JUrs .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uOpow4JUrs .navbar .navbar-logo img {
  width: auto;
}
.cid-uOpow4JUrs .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uOpow4JUrs .navbar.collapsed {
  justify-content: center;
}
.cid-uOpow4JUrs .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uOpow4JUrs .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uOpow4JUrs .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.9rem);
  }
}
.cid-uOpow4JUrs .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uOpow4JUrs .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uOpow4JUrs .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-uOpow4JUrs .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uOpow4JUrs .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uOpow4JUrs .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uOpow4JUrs .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uOpow4JUrs .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uOpow4JUrs .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uOpow4JUrs .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uOpow4JUrs .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-uOpow4JUrs .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uOpow4JUrs .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uOpow4JUrs .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uOpow4JUrs .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uOpow4JUrs .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uOpow4JUrs .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uOpow4JUrs .navbar.navbar-short {
  min-height: 60px;
}
.cid-uOpow4JUrs .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uOpow4JUrs .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uOpow4JUrs .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-uOpow4JUrs .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uOpow4JUrs .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uOpow4JUrs .dropdown-item.active,
.cid-uOpow4JUrs .dropdown-item:active {
  background-color: transparent;
}
.cid-uOpow4JUrs .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uOpow4JUrs .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uOpow4JUrs .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uOpow4JUrs .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0976aa;
}
.cid-uOpow4JUrs .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uOpow4JUrs .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uOpow4JUrs ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uOpow4JUrs .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uOpow4JUrs button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uOpow4JUrs button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uOpow4JUrs button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uOpow4JUrs button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uOpow4JUrs button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uOpow4JUrs button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uOpow4JUrs nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uOpow4JUrs nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uOpow4JUrs nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uOpow4JUrs nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uOpow4JUrs .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uOpow4JUrs a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uOpow4JUrs .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-uOpow4JUrs .navbar {
    height: 70px;
  }
  .cid-uOpow4JUrs .navbar.opened {
    height: auto;
  }
  .cid-uOpow4JUrs .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uOpow5orQH {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uOpow5orQH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOpow5orQH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOpow5orQH H3 {
  text-align: center;
}
.cid-uOpow5orQH .mbr-text,
.cid-uOpow5orQH .mbr-section-btn {
  text-align: center;
}
.cid-uOpow5VU5k {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/fondo-3.jpg-612x448.jpg");
}
.cid-uOpow5VU5k .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uOpow5VU5k .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uOpow5VU5k .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uOpow5VU5k .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uOpow5VU5k .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uOpow5VU5k .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uOpow5VU5k .mbr-text,
.cid-uOpow5VU5k .mbr-section-btn {
  color: #fafafa;
  text-align: center;
}
.cid-uOpow6tBpP {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #005b98;
}
.cid-uOpow6tBpP img,
.cid-uOpow6tBpP .item-img {
  width: 100%;
}
.cid-uOpow6tBpP .item:focus,
.cid-uOpow6tBpP span:focus {
  outline: none;
}
.cid-uOpow6tBpP .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uOpow6tBpP .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #0976aa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uOpow6tBpP .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOpow6tBpP .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uOpow6tBpP .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uOpow6tBpP .mbr-section-title {
  color: #fafafa;
}
.cid-uOpow6tBpP .mbr-text,
.cid-uOpow6tBpP .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uOpow6tBpP .item-title {
  text-align: left;
  color: #bbbbbb;
}
.cid-uOpow6tBpP .item-subtitle {
  text-align: left;
}
.cid-uOpow7sBSp {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/construccionesjp.jpg-2000x1255.jpg");
}
.cid-uOpow7sBSp img,
.cid-uOpow7sBSp .item-img {
  width: 100%;
  height: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-uOpow7sBSp .item:focus,
.cid-uOpow7sBSp span:focus {
  outline: none;
}
.cid-uOpow7sBSp .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uOpow7sBSp .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uOpow7sBSp .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uOpow7sBSp .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOpow7sBSp .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uOpow7sBSp .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uOpow7sBSp .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uOpow7sBSp .mbr-section-title {
  color: #141619;
}
.cid-uOpow7sBSp .mbr-text,
.cid-uOpow7sBSp .mbr-section-btn {
  text-align: left;
}
.cid-uOpow7sBSp .item-title {
  text-align: center;
}
.cid-uOpow7sBSp .item-subtitle {
  text-align: center;
}
.cid-uOpow8HrcU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bbbbbb;
}
.cid-uOpow8HrcU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOpow8HrcU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOpow8HrcU .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-uOpow8HrcU .currentcost {
  color: #232323;
}
.cid-uOpow8HrcU .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uOpow8HrcU .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uOpow8HrcU .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uOpow8HrcU .text-box {
    padding: 1rem;
  }
}
.cid-uOpow8HrcU .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uOpow9kcc3 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uOpow9kcc3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOpow9kcc3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOpow9kcc3 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uOpow9kcc3 .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-uOpow9kcc3 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uOpow9kcc3 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uOpow9kcc3 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uOpow9kcc3 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uOpow9kcc3 .carousel-control,
.cid-uOpow9kcc3 .close {
  background: #1b1b1b;
}
.cid-uOpow9kcc3 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uOpow9kcc3 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uOpow9kcc3 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uOpow9kcc3 .carousel-control-next span {
  margin-left: 5px;
}
.cid-uOpow9kcc3 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uOpow9kcc3 .close::before {
  content: '\e91a';
}
.cid-uOpow9kcc3 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uOpow9kcc3 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uOpow9kcc3 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uOpow9kcc3 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uOpow9kcc3 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uOpow9kcc3 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uOpow9kcc3 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uOpow9kcc3 .carousel-indicators li.active,
.cid-uOpow9kcc3 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uOpow9kcc3 .carousel-indicators li::after,
.cid-uOpow9kcc3 .carousel-indicators li::before {
  content: none;
}
.cid-uOpow9kcc3 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uOpow9kcc3 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uOpow9kcc3 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uOpow9kcc3 .carousel-indicators {
    display: none;
  }
}
.cid-uOpow9kcc3 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uOpow9kcc3 .carousel-inner > .active {
  display: block;
}
.cid-uOpow9kcc3 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uOpow9kcc3 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uOpow9kcc3 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uOpow9kcc3 .carousel-control,
  .cid-uOpow9kcc3 .carousel-indicators,
  .cid-uOpow9kcc3 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uOpow9kcc3 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uOpow9kcc3 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uOpow9kcc3 .carousel-indicators .active,
.cid-uOpow9kcc3 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uOpow9kcc3 .carousel-indicators .active {
  background: #fff;
}
.cid-uOpow9kcc3 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uOpow9kcc3 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uOpow9kcc3 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uOpow9kcc3 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uOpow9kcc3 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uOpow9kcc3 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uOpow9kcc3 .carousel {
  width: 100%;
}
.cid-uOpow9kcc3 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uOpow9kcc3 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uOpow9kcc3 .modal.fade .modal-dialog,
.cid-uOpow9kcc3 .modal.in .modal-dialog {
  transform: none;
}
.cid-uOpow9kcc3 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uOpow9kcc3 H6 {
  text-align: center;
}
.cid-uOpowbGNRj {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #0976aa;
}
.cid-uOpowbGNRj img {
  width: 120px;
  margin: auto;
}
.cid-uOpowbGNRj .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uOpowbGNRj .card {
    max-width: 12.5%;
  }
}
.cid-uOpowbGNRj .mbr-section-subtitle {
  color: #dbdbdb;
}
.cid-uOpowbGNRj .mbr-section-title {
  color: #ffffff;
}
.cid-uOpowclDhX {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-uOpowclDhX .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uOpowclDhX form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uOpowclDhX form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uOpowclDhX form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uOpowclDhX .mbr-section-title {
  color: #000000;
}
.cid-uOpowclDhX .mbr-section-subtitle {
  color: #000000;
}
.cid-uOpowd05Kp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uOpowd05Kp .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uOpowd05Kp .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-uOpowd05Kp .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uOpowd05Kp .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uOpowd05Kp .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #3ab752;
}
.cid-uOpoweinzc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uOpoweinzc .google-map {
  height: 30rem;
  position: relative;
}
.cid-uOpoweinzc .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uOpoweinzc .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uOpoweinzc .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uOpoweinzc .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uOpoDkMttJ {
  z-index: 1000;
  width: 100%;
}
.cid-uOpoDkMttJ nav.navbar {
  position: fixed;
}
.cid-uOpoDkMttJ .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-uOpoDkMttJ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uOpoDkMttJ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uOpoDkMttJ .dropdown-item:hover,
.cid-uOpoDkMttJ .dropdown-item:focus {
  background: #3ab752 !important;
  color: white !important;
}
.cid-uOpoDkMttJ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uOpoDkMttJ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uOpoDkMttJ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uOpoDkMttJ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uOpoDkMttJ .nav-link {
  position: relative;
}
.cid-uOpoDkMttJ .container {
  display: flex;
  margin: auto;
}
.cid-uOpoDkMttJ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uOpoDkMttJ .dropdown-menu,
.cid-uOpoDkMttJ .navbar.opened {
  background: #0976aa !important;
}
.cid-uOpoDkMttJ .nav-item:focus,
.cid-uOpoDkMttJ .nav-link:focus {
  outline: none;
}
.cid-uOpoDkMttJ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uOpoDkMttJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uOpoDkMttJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uOpoDkMttJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uOpoDkMttJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uOpoDkMttJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uOpoDkMttJ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #0976aa;
}
.cid-uOpoDkMttJ .navbar.opened {
  transition: all 0.3s;
}
.cid-uOpoDkMttJ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uOpoDkMttJ .navbar .navbar-logo img {
  width: auto;
}
.cid-uOpoDkMttJ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uOpoDkMttJ .navbar.collapsed {
  justify-content: center;
}
.cid-uOpoDkMttJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uOpoDkMttJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uOpoDkMttJ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.9rem);
  }
}
.cid-uOpoDkMttJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uOpoDkMttJ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uOpoDkMttJ .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-uOpoDkMttJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uOpoDkMttJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uOpoDkMttJ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uOpoDkMttJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uOpoDkMttJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uOpoDkMttJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uOpoDkMttJ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uOpoDkMttJ .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-uOpoDkMttJ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uOpoDkMttJ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uOpoDkMttJ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uOpoDkMttJ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uOpoDkMttJ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uOpoDkMttJ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uOpoDkMttJ .navbar.navbar-short {
  min-height: 60px;
}
.cid-uOpoDkMttJ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uOpoDkMttJ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uOpoDkMttJ .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-uOpoDkMttJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uOpoDkMttJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uOpoDkMttJ .dropdown-item.active,
.cid-uOpoDkMttJ .dropdown-item:active {
  background-color: transparent;
}
.cid-uOpoDkMttJ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uOpoDkMttJ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uOpoDkMttJ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uOpoDkMttJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0976aa;
}
.cid-uOpoDkMttJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uOpoDkMttJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uOpoDkMttJ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uOpoDkMttJ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uOpoDkMttJ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uOpoDkMttJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uOpoDkMttJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uOpoDkMttJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uOpoDkMttJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uOpoDkMttJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uOpoDkMttJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uOpoDkMttJ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uOpoDkMttJ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uOpoDkMttJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uOpoDkMttJ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uOpoDkMttJ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uOpoDkMttJ .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-uOpoDkMttJ .navbar {
    height: 70px;
  }
  .cid-uOpoDkMttJ .navbar.opened {
    height: auto;
  }
  .cid-uOpoDkMttJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uOpoDlr0Kz {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uOpoDlr0Kz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOpoDlr0Kz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOpoDlr0Kz H3 {
  text-align: center;
}
.cid-uOpoDlr0Kz .mbr-text,
.cid-uOpoDlr0Kz .mbr-section-btn {
  text-align: center;
}
.cid-uOpoDlYoFq {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/fondo-3.jpg-612x448.jpg");
}
.cid-uOpoDlYoFq .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uOpoDlYoFq .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uOpoDlYoFq .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uOpoDlYoFq .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uOpoDlYoFq .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uOpoDlYoFq .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uOpoDlYoFq .mbr-text,
.cid-uOpoDlYoFq .mbr-section-btn {
  color: #fafafa;
  text-align: center;
}
.cid-uOpoDmyajQ {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #005b98;
}
.cid-uOpoDmyajQ img,
.cid-uOpoDmyajQ .item-img {
  width: 100%;
}
.cid-uOpoDmyajQ .item:focus,
.cid-uOpoDmyajQ span:focus {
  outline: none;
}
.cid-uOpoDmyajQ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uOpoDmyajQ .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #0976aa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uOpoDmyajQ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOpoDmyajQ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uOpoDmyajQ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uOpoDmyajQ .mbr-section-title {
  color: #fafafa;
}
.cid-uOpoDmyajQ .mbr-text,
.cid-uOpoDmyajQ .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uOpoDmyajQ .item-title {
  text-align: left;
  color: #bbbbbb;
}
.cid-uOpoDmyajQ .item-subtitle {
  text-align: left;
}
.cid-uOpoDnBLqL {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/construccionesjp.jpg-2000x1255.jpg");
}
.cid-uOpoDnBLqL img,
.cid-uOpoDnBLqL .item-img {
  width: 100%;
  height: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-uOpoDnBLqL .item:focus,
.cid-uOpoDnBLqL span:focus {
  outline: none;
}
.cid-uOpoDnBLqL .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uOpoDnBLqL .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uOpoDnBLqL .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uOpoDnBLqL .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOpoDnBLqL .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uOpoDnBLqL .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uOpoDnBLqL .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uOpoDnBLqL .mbr-section-title {
  color: #141619;
}
.cid-uOpoDnBLqL .mbr-text,
.cid-uOpoDnBLqL .mbr-section-btn {
  text-align: left;
}
.cid-uOpoDnBLqL .item-title {
  text-align: center;
}
.cid-uOpoDnBLqL .item-subtitle {
  text-align: center;
}
.cid-uOpoDoOkM0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bbbbbb;
}
.cid-uOpoDoOkM0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOpoDoOkM0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOpoDoOkM0 .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-uOpoDoOkM0 .currentcost {
  color: #232323;
}
.cid-uOpoDoOkM0 .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uOpoDoOkM0 .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uOpoDoOkM0 .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uOpoDoOkM0 .text-box {
    padding: 1rem;
  }
}
.cid-uOpoDoOkM0 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uOpoDpn5T4 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uOpoDpn5T4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOpoDpn5T4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOpoDpn5T4 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uOpoDpn5T4 .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-uOpoDpn5T4 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uOpoDpn5T4 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uOpoDpn5T4 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uOpoDpn5T4 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uOpoDpn5T4 .carousel-control,
.cid-uOpoDpn5T4 .close {
  background: #1b1b1b;
}
.cid-uOpoDpn5T4 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uOpoDpn5T4 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uOpoDpn5T4 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uOpoDpn5T4 .carousel-control-next span {
  margin-left: 5px;
}
.cid-uOpoDpn5T4 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uOpoDpn5T4 .close::before {
  content: '\e91a';
}
.cid-uOpoDpn5T4 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uOpoDpn5T4 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uOpoDpn5T4 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uOpoDpn5T4 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uOpoDpn5T4 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uOpoDpn5T4 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uOpoDpn5T4 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uOpoDpn5T4 .carousel-indicators li.active,
.cid-uOpoDpn5T4 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uOpoDpn5T4 .carousel-indicators li::after,
.cid-uOpoDpn5T4 .carousel-indicators li::before {
  content: none;
}
.cid-uOpoDpn5T4 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uOpoDpn5T4 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uOpoDpn5T4 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uOpoDpn5T4 .carousel-indicators {
    display: none;
  }
}
.cid-uOpoDpn5T4 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uOpoDpn5T4 .carousel-inner > .active {
  display: block;
}
.cid-uOpoDpn5T4 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uOpoDpn5T4 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uOpoDpn5T4 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uOpoDpn5T4 .carousel-control,
  .cid-uOpoDpn5T4 .carousel-indicators,
  .cid-uOpoDpn5T4 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uOpoDpn5T4 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uOpoDpn5T4 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uOpoDpn5T4 .carousel-indicators .active,
.cid-uOpoDpn5T4 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uOpoDpn5T4 .carousel-indicators .active {
  background: #fff;
}
.cid-uOpoDpn5T4 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uOpoDpn5T4 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uOpoDpn5T4 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uOpoDpn5T4 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uOpoDpn5T4 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uOpoDpn5T4 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uOpoDpn5T4 .carousel {
  width: 100%;
}
.cid-uOpoDpn5T4 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uOpoDpn5T4 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uOpoDpn5T4 .modal.fade .modal-dialog,
.cid-uOpoDpn5T4 .modal.in .modal-dialog {
  transform: none;
}
.cid-uOpoDpn5T4 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uOpoDpn5T4 H6 {
  text-align: center;
}
.cid-uOpoDsqhW2 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #0976aa;
}
.cid-uOpoDsqhW2 img {
  width: 120px;
  margin: auto;
}
.cid-uOpoDsqhW2 .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uOpoDsqhW2 .card {
    max-width: 12.5%;
  }
}
.cid-uOpoDsqhW2 .mbr-section-subtitle {
  color: #dbdbdb;
}
.cid-uOpoDsqhW2 .mbr-section-title {
  color: #ffffff;
}
.cid-uOpoDu0DX3 {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-uOpoDu0DX3 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uOpoDu0DX3 form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uOpoDu0DX3 form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uOpoDu0DX3 form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uOpoDu0DX3 .mbr-section-title {
  color: #000000;
}
.cid-uOpoDu0DX3 .mbr-section-subtitle {
  color: #000000;
}
.cid-uOpoDvWGSN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uOpoDvWGSN .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uOpoDvWGSN .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-uOpoDvWGSN .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uOpoDvWGSN .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uOpoDvWGSN .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #3ab752;
}
.cid-uOpoDx01h0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uOpoDx01h0 .google-map {
  height: 30rem;
  position: relative;
}
.cid-uOpoDx01h0 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uOpoDx01h0 .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uOpoDx01h0 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uOpoDx01h0 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uOpoHeZhc2 {
  z-index: 1000;
  width: 100%;
}
.cid-uOpoHeZhc2 nav.navbar {
  position: fixed;
}
.cid-uOpoHeZhc2 .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-uOpoHeZhc2 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uOpoHeZhc2 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uOpoHeZhc2 .dropdown-item:hover,
.cid-uOpoHeZhc2 .dropdown-item:focus {
  background: #3ab752 !important;
  color: white !important;
}
.cid-uOpoHeZhc2 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uOpoHeZhc2 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uOpoHeZhc2 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uOpoHeZhc2 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uOpoHeZhc2 .nav-link {
  position: relative;
}
.cid-uOpoHeZhc2 .container {
  display: flex;
  margin: auto;
}
.cid-uOpoHeZhc2 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uOpoHeZhc2 .dropdown-menu,
.cid-uOpoHeZhc2 .navbar.opened {
  background: #0976aa !important;
}
.cid-uOpoHeZhc2 .nav-item:focus,
.cid-uOpoHeZhc2 .nav-link:focus {
  outline: none;
}
.cid-uOpoHeZhc2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uOpoHeZhc2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uOpoHeZhc2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uOpoHeZhc2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uOpoHeZhc2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uOpoHeZhc2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uOpoHeZhc2 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #0976aa;
}
.cid-uOpoHeZhc2 .navbar.opened {
  transition: all 0.3s;
}
.cid-uOpoHeZhc2 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uOpoHeZhc2 .navbar .navbar-logo img {
  width: auto;
}
.cid-uOpoHeZhc2 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uOpoHeZhc2 .navbar.collapsed {
  justify-content: center;
}
.cid-uOpoHeZhc2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uOpoHeZhc2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uOpoHeZhc2 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.9rem);
  }
}
.cid-uOpoHeZhc2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uOpoHeZhc2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uOpoHeZhc2 .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-uOpoHeZhc2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uOpoHeZhc2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uOpoHeZhc2 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uOpoHeZhc2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uOpoHeZhc2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uOpoHeZhc2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uOpoHeZhc2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uOpoHeZhc2 .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-uOpoHeZhc2 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uOpoHeZhc2 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uOpoHeZhc2 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uOpoHeZhc2 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uOpoHeZhc2 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uOpoHeZhc2 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uOpoHeZhc2 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uOpoHeZhc2 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uOpoHeZhc2 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uOpoHeZhc2 .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-uOpoHeZhc2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uOpoHeZhc2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uOpoHeZhc2 .dropdown-item.active,
.cid-uOpoHeZhc2 .dropdown-item:active {
  background-color: transparent;
}
.cid-uOpoHeZhc2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uOpoHeZhc2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uOpoHeZhc2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uOpoHeZhc2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0976aa;
}
.cid-uOpoHeZhc2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uOpoHeZhc2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uOpoHeZhc2 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uOpoHeZhc2 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uOpoHeZhc2 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uOpoHeZhc2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uOpoHeZhc2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uOpoHeZhc2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uOpoHeZhc2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uOpoHeZhc2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uOpoHeZhc2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uOpoHeZhc2 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uOpoHeZhc2 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uOpoHeZhc2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uOpoHeZhc2 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uOpoHeZhc2 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uOpoHeZhc2 .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-uOpoHeZhc2 .navbar {
    height: 70px;
  }
  .cid-uOpoHeZhc2 .navbar.opened {
    height: auto;
  }
  .cid-uOpoHeZhc2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uOpoHfAkyF {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uOpoHfAkyF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOpoHfAkyF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOpoHfAkyF H3 {
  text-align: center;
}
.cid-uOpoHfAkyF .mbr-text,
.cid-uOpoHfAkyF .mbr-section-btn {
  text-align: center;
}
.cid-uOpoHga3EC {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/fondo-3.jpg-612x448.jpg");
}
.cid-uOpoHga3EC .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uOpoHga3EC .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uOpoHga3EC .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uOpoHga3EC .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uOpoHga3EC .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uOpoHga3EC .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uOpoHga3EC .mbr-text,
.cid-uOpoHga3EC .mbr-section-btn {
  color: #fafafa;
  text-align: center;
}
.cid-uOpoHgMIpR {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #005b98;
}
.cid-uOpoHgMIpR img,
.cid-uOpoHgMIpR .item-img {
  width: 100%;
}
.cid-uOpoHgMIpR .item:focus,
.cid-uOpoHgMIpR span:focus {
  outline: none;
}
.cid-uOpoHgMIpR .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uOpoHgMIpR .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #0976aa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uOpoHgMIpR .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOpoHgMIpR .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uOpoHgMIpR .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uOpoHgMIpR .mbr-section-title {
  color: #fafafa;
}
.cid-uOpoHgMIpR .mbr-text,
.cid-uOpoHgMIpR .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uOpoHgMIpR .item-title {
  text-align: left;
  color: #bbbbbb;
}
.cid-uOpoHgMIpR .item-subtitle {
  text-align: left;
}
.cid-uOpoHhPMNB {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/construccionesjp.jpg-2000x1255.jpg");
}
.cid-uOpoHhPMNB img,
.cid-uOpoHhPMNB .item-img {
  width: 100%;
  height: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-uOpoHhPMNB .item:focus,
.cid-uOpoHhPMNB span:focus {
  outline: none;
}
.cid-uOpoHhPMNB .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uOpoHhPMNB .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uOpoHhPMNB .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uOpoHhPMNB .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOpoHhPMNB .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uOpoHhPMNB .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uOpoHhPMNB .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uOpoHhPMNB .mbr-section-title {
  color: #141619;
}
.cid-uOpoHhPMNB .mbr-text,
.cid-uOpoHhPMNB .mbr-section-btn {
  text-align: left;
}
.cid-uOpoHhPMNB .item-title {
  text-align: center;
}
.cid-uOpoHhPMNB .item-subtitle {
  text-align: center;
}
.cid-uOpoHjdmD4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bbbbbb;
}
.cid-uOpoHjdmD4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOpoHjdmD4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOpoHjdmD4 .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-uOpoHjdmD4 .currentcost {
  color: #232323;
}
.cid-uOpoHjdmD4 .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uOpoHjdmD4 .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uOpoHjdmD4 .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uOpoHjdmD4 .text-box {
    padding: 1rem;
  }
}
.cid-uOpoHjdmD4 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uOpoHjMKvF {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uOpoHjMKvF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOpoHjMKvF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOpoHjMKvF .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uOpoHjMKvF .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-uOpoHjMKvF .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uOpoHjMKvF .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uOpoHjMKvF .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uOpoHjMKvF .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uOpoHjMKvF .carousel-control,
.cid-uOpoHjMKvF .close {
  background: #1b1b1b;
}
.cid-uOpoHjMKvF .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uOpoHjMKvF .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uOpoHjMKvF .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uOpoHjMKvF .carousel-control-next span {
  margin-left: 5px;
}
.cid-uOpoHjMKvF .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uOpoHjMKvF .close::before {
  content: '\e91a';
}
.cid-uOpoHjMKvF .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uOpoHjMKvF .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uOpoHjMKvF .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uOpoHjMKvF .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uOpoHjMKvF .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uOpoHjMKvF .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uOpoHjMKvF .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uOpoHjMKvF .carousel-indicators li.active,
.cid-uOpoHjMKvF .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uOpoHjMKvF .carousel-indicators li::after,
.cid-uOpoHjMKvF .carousel-indicators li::before {
  content: none;
}
.cid-uOpoHjMKvF .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uOpoHjMKvF .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uOpoHjMKvF .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uOpoHjMKvF .carousel-indicators {
    display: none;
  }
}
.cid-uOpoHjMKvF .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uOpoHjMKvF .carousel-inner > .active {
  display: block;
}
.cid-uOpoHjMKvF .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uOpoHjMKvF .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uOpoHjMKvF .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uOpoHjMKvF .carousel-control,
  .cid-uOpoHjMKvF .carousel-indicators,
  .cid-uOpoHjMKvF .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uOpoHjMKvF .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uOpoHjMKvF .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uOpoHjMKvF .carousel-indicators .active,
.cid-uOpoHjMKvF .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uOpoHjMKvF .carousel-indicators .active {
  background: #fff;
}
.cid-uOpoHjMKvF .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uOpoHjMKvF .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uOpoHjMKvF .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uOpoHjMKvF .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uOpoHjMKvF .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uOpoHjMKvF .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uOpoHjMKvF .carousel {
  width: 100%;
}
.cid-uOpoHjMKvF .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uOpoHjMKvF .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uOpoHjMKvF .modal.fade .modal-dialog,
.cid-uOpoHjMKvF .modal.in .modal-dialog {
  transform: none;
}
.cid-uOpoHjMKvF .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uOpoHjMKvF H6 {
  text-align: center;
}
.cid-uOpoHnsC5C {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #0976aa;
}
.cid-uOpoHnsC5C img {
  width: 120px;
  margin: auto;
}
.cid-uOpoHnsC5C .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uOpoHnsC5C .card {
    max-width: 12.5%;
  }
}
.cid-uOpoHnsC5C .mbr-section-subtitle {
  color: #dbdbdb;
}
.cid-uOpoHnsC5C .mbr-section-title {
  color: #ffffff;
}
.cid-uOpoHpxiIq {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-uOpoHpxiIq .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uOpoHpxiIq form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uOpoHpxiIq form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uOpoHpxiIq form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uOpoHpxiIq .mbr-section-title {
  color: #000000;
}
.cid-uOpoHpxiIq .mbr-section-subtitle {
  color: #000000;
}
.cid-uOpoHqhEeA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uOpoHqhEeA .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uOpoHqhEeA .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-uOpoHqhEeA .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uOpoHqhEeA .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uOpoHqhEeA .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #3ab752;
}
.cid-uOpoHruqEh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uOpoHruqEh .google-map {
  height: 30rem;
  position: relative;
}
.cid-uOpoHruqEh .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uOpoHruqEh .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uOpoHruqEh .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uOpoHruqEh .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uOpoRr3dDY {
  z-index: 1000;
  width: 100%;
}
.cid-uOpoRr3dDY nav.navbar {
  position: fixed;
}
.cid-uOpoRr3dDY .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-uOpoRr3dDY .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uOpoRr3dDY .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uOpoRr3dDY .dropdown-item:hover,
.cid-uOpoRr3dDY .dropdown-item:focus {
  background: #3ab752 !important;
  color: white !important;
}
.cid-uOpoRr3dDY .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uOpoRr3dDY .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uOpoRr3dDY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uOpoRr3dDY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uOpoRr3dDY .nav-link {
  position: relative;
}
.cid-uOpoRr3dDY .container {
  display: flex;
  margin: auto;
}
.cid-uOpoRr3dDY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uOpoRr3dDY .dropdown-menu,
.cid-uOpoRr3dDY .navbar.opened {
  background: #0976aa !important;
}
.cid-uOpoRr3dDY .nav-item:focus,
.cid-uOpoRr3dDY .nav-link:focus {
  outline: none;
}
.cid-uOpoRr3dDY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uOpoRr3dDY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uOpoRr3dDY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uOpoRr3dDY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uOpoRr3dDY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uOpoRr3dDY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uOpoRr3dDY .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #0976aa;
}
.cid-uOpoRr3dDY .navbar.opened {
  transition: all 0.3s;
}
.cid-uOpoRr3dDY .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uOpoRr3dDY .navbar .navbar-logo img {
  width: auto;
}
.cid-uOpoRr3dDY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uOpoRr3dDY .navbar.collapsed {
  justify-content: center;
}
.cid-uOpoRr3dDY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uOpoRr3dDY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uOpoRr3dDY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.9rem);
  }
}
.cid-uOpoRr3dDY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uOpoRr3dDY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uOpoRr3dDY .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-uOpoRr3dDY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uOpoRr3dDY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uOpoRr3dDY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uOpoRr3dDY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uOpoRr3dDY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uOpoRr3dDY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uOpoRr3dDY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uOpoRr3dDY .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-uOpoRr3dDY .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uOpoRr3dDY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uOpoRr3dDY .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uOpoRr3dDY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uOpoRr3dDY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uOpoRr3dDY .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uOpoRr3dDY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uOpoRr3dDY .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uOpoRr3dDY .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uOpoRr3dDY .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-uOpoRr3dDY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uOpoRr3dDY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uOpoRr3dDY .dropdown-item.active,
.cid-uOpoRr3dDY .dropdown-item:active {
  background-color: transparent;
}
.cid-uOpoRr3dDY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uOpoRr3dDY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uOpoRr3dDY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uOpoRr3dDY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0976aa;
}
.cid-uOpoRr3dDY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uOpoRr3dDY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uOpoRr3dDY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uOpoRr3dDY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uOpoRr3dDY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uOpoRr3dDY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uOpoRr3dDY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uOpoRr3dDY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uOpoRr3dDY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uOpoRr3dDY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uOpoRr3dDY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uOpoRr3dDY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uOpoRr3dDY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uOpoRr3dDY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uOpoRr3dDY .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uOpoRr3dDY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uOpoRr3dDY .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-uOpoRr3dDY .navbar {
    height: 70px;
  }
  .cid-uOpoRr3dDY .navbar.opened {
    height: auto;
  }
  .cid-uOpoRr3dDY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uOpoRrNPbK {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uOpoRrNPbK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOpoRrNPbK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOpoRrNPbK H3 {
  text-align: center;
}
.cid-uOpoRrNPbK .mbr-text,
.cid-uOpoRrNPbK .mbr-section-btn {
  text-align: center;
}
.cid-uOpoRsk5qK {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/fondo-3.jpg-612x448.jpg");
}
.cid-uOpoRsk5qK .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uOpoRsk5qK .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uOpoRsk5qK .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uOpoRsk5qK .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uOpoRsk5qK .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uOpoRsk5qK .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uOpoRsk5qK .mbr-text,
.cid-uOpoRsk5qK .mbr-section-btn {
  color: #fafafa;
  text-align: center;
}
.cid-uOpoRsU7jA {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #005b98;
}
.cid-uOpoRsU7jA img,
.cid-uOpoRsU7jA .item-img {
  width: 100%;
}
.cid-uOpoRsU7jA .item:focus,
.cid-uOpoRsU7jA span:focus {
  outline: none;
}
.cid-uOpoRsU7jA .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uOpoRsU7jA .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #0976aa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uOpoRsU7jA .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOpoRsU7jA .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uOpoRsU7jA .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uOpoRsU7jA .mbr-section-title {
  color: #fafafa;
}
.cid-uOpoRsU7jA .mbr-text,
.cid-uOpoRsU7jA .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uOpoRsU7jA .item-title {
  text-align: left;
  color: #bbbbbb;
}
.cid-uOpoRsU7jA .item-subtitle {
  text-align: left;
}
.cid-uOpoRtOdXR {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/construccionesjp.jpg-2000x1255.jpg");
}
.cid-uOpoRtOdXR img,
.cid-uOpoRtOdXR .item-img {
  width: 100%;
  height: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-uOpoRtOdXR .item:focus,
.cid-uOpoRtOdXR span:focus {
  outline: none;
}
.cid-uOpoRtOdXR .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uOpoRtOdXR .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uOpoRtOdXR .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uOpoRtOdXR .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOpoRtOdXR .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uOpoRtOdXR .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uOpoRtOdXR .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uOpoRtOdXR .mbr-section-title {
  color: #141619;
}
.cid-uOpoRtOdXR .mbr-text,
.cid-uOpoRtOdXR .mbr-section-btn {
  text-align: left;
}
.cid-uOpoRtOdXR .item-title {
  text-align: center;
}
.cid-uOpoRtOdXR .item-subtitle {
  text-align: center;
}
.cid-uOpoRv6tBo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bbbbbb;
}
.cid-uOpoRv6tBo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOpoRv6tBo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOpoRv6tBo .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-uOpoRv6tBo .currentcost {
  color: #232323;
}
.cid-uOpoRv6tBo .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uOpoRv6tBo .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uOpoRv6tBo .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uOpoRv6tBo .text-box {
    padding: 1rem;
  }
}
.cid-uOpoRv6tBo .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uOpoRvIHev {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uOpoRvIHev .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOpoRvIHev .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOpoRvIHev .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uOpoRvIHev .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-uOpoRvIHev .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uOpoRvIHev .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uOpoRvIHev .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uOpoRvIHev .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uOpoRvIHev .carousel-control,
.cid-uOpoRvIHev .close {
  background: #1b1b1b;
}
.cid-uOpoRvIHev .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uOpoRvIHev .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uOpoRvIHev .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uOpoRvIHev .carousel-control-next span {
  margin-left: 5px;
}
.cid-uOpoRvIHev .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uOpoRvIHev .close::before {
  content: '\e91a';
}
.cid-uOpoRvIHev .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uOpoRvIHev .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uOpoRvIHev .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uOpoRvIHev .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uOpoRvIHev .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uOpoRvIHev .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uOpoRvIHev .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uOpoRvIHev .carousel-indicators li.active,
.cid-uOpoRvIHev .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uOpoRvIHev .carousel-indicators li::after,
.cid-uOpoRvIHev .carousel-indicators li::before {
  content: none;
}
.cid-uOpoRvIHev .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uOpoRvIHev .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uOpoRvIHev .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uOpoRvIHev .carousel-indicators {
    display: none;
  }
}
.cid-uOpoRvIHev .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uOpoRvIHev .carousel-inner > .active {
  display: block;
}
.cid-uOpoRvIHev .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uOpoRvIHev .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uOpoRvIHev .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uOpoRvIHev .carousel-control,
  .cid-uOpoRvIHev .carousel-indicators,
  .cid-uOpoRvIHev .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uOpoRvIHev .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uOpoRvIHev .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uOpoRvIHev .carousel-indicators .active,
.cid-uOpoRvIHev .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uOpoRvIHev .carousel-indicators .active {
  background: #fff;
}
.cid-uOpoRvIHev .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uOpoRvIHev .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uOpoRvIHev .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uOpoRvIHev .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uOpoRvIHev .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uOpoRvIHev .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uOpoRvIHev .carousel {
  width: 100%;
}
.cid-uOpoRvIHev .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uOpoRvIHev .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uOpoRvIHev .modal.fade .modal-dialog,
.cid-uOpoRvIHev .modal.in .modal-dialog {
  transform: none;
}
.cid-uOpoRvIHev .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uOpoRvIHev H6 {
  text-align: center;
}
.cid-uOpoRy1fvC {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #0976aa;
}
.cid-uOpoRy1fvC img {
  width: 120px;
  margin: auto;
}
.cid-uOpoRy1fvC .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uOpoRy1fvC .card {
    max-width: 12.5%;
  }
}
.cid-uOpoRy1fvC .mbr-section-subtitle {
  color: #dbdbdb;
}
.cid-uOpoRy1fvC .mbr-section-title {
  color: #ffffff;
}
.cid-uOpoRyEeKQ {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-uOpoRyEeKQ .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uOpoRyEeKQ form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uOpoRyEeKQ form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uOpoRyEeKQ form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uOpoRyEeKQ .mbr-section-title {
  color: #000000;
}
.cid-uOpoRyEeKQ .mbr-section-subtitle {
  color: #000000;
}
.cid-uOpoRzkpgs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uOpoRzkpgs .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uOpoRzkpgs .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-uOpoRzkpgs .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uOpoRzkpgs .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uOpoRzkpgs .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #3ab752;
}
.cid-uOpoRAae7m {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uOpoRAae7m .google-map {
  height: 30rem;
  position: relative;
}
.cid-uOpoRAae7m .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uOpoRAae7m .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uOpoRAae7m .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uOpoRAae7m .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uOpoYZ5FZ8 {
  z-index: 1000;
  width: 100%;
}
.cid-uOpoYZ5FZ8 nav.navbar {
  position: fixed;
}
.cid-uOpoYZ5FZ8 .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-uOpoYZ5FZ8 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uOpoYZ5FZ8 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uOpoYZ5FZ8 .dropdown-item:hover,
.cid-uOpoYZ5FZ8 .dropdown-item:focus {
  background: #3ab752 !important;
  color: white !important;
}
.cid-uOpoYZ5FZ8 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uOpoYZ5FZ8 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uOpoYZ5FZ8 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uOpoYZ5FZ8 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uOpoYZ5FZ8 .nav-link {
  position: relative;
}
.cid-uOpoYZ5FZ8 .container {
  display: flex;
  margin: auto;
}
.cid-uOpoYZ5FZ8 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uOpoYZ5FZ8 .dropdown-menu,
.cid-uOpoYZ5FZ8 .navbar.opened {
  background: #0976aa !important;
}
.cid-uOpoYZ5FZ8 .nav-item:focus,
.cid-uOpoYZ5FZ8 .nav-link:focus {
  outline: none;
}
.cid-uOpoYZ5FZ8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uOpoYZ5FZ8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uOpoYZ5FZ8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uOpoYZ5FZ8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uOpoYZ5FZ8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uOpoYZ5FZ8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uOpoYZ5FZ8 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #0976aa;
}
.cid-uOpoYZ5FZ8 .navbar.opened {
  transition: all 0.3s;
}
.cid-uOpoYZ5FZ8 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uOpoYZ5FZ8 .navbar .navbar-logo img {
  width: auto;
}
.cid-uOpoYZ5FZ8 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uOpoYZ5FZ8 .navbar.collapsed {
  justify-content: center;
}
.cid-uOpoYZ5FZ8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uOpoYZ5FZ8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uOpoYZ5FZ8 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.9rem);
  }
}
.cid-uOpoYZ5FZ8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uOpoYZ5FZ8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uOpoYZ5FZ8 .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-uOpoYZ5FZ8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uOpoYZ5FZ8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uOpoYZ5FZ8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uOpoYZ5FZ8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uOpoYZ5FZ8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uOpoYZ5FZ8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uOpoYZ5FZ8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uOpoYZ5FZ8 .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-uOpoYZ5FZ8 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uOpoYZ5FZ8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uOpoYZ5FZ8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uOpoYZ5FZ8 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uOpoYZ5FZ8 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uOpoYZ5FZ8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uOpoYZ5FZ8 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uOpoYZ5FZ8 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uOpoYZ5FZ8 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uOpoYZ5FZ8 .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-uOpoYZ5FZ8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uOpoYZ5FZ8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uOpoYZ5FZ8 .dropdown-item.active,
.cid-uOpoYZ5FZ8 .dropdown-item:active {
  background-color: transparent;
}
.cid-uOpoYZ5FZ8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uOpoYZ5FZ8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uOpoYZ5FZ8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uOpoYZ5FZ8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0976aa;
}
.cid-uOpoYZ5FZ8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uOpoYZ5FZ8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uOpoYZ5FZ8 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uOpoYZ5FZ8 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uOpoYZ5FZ8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uOpoYZ5FZ8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uOpoYZ5FZ8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uOpoYZ5FZ8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uOpoYZ5FZ8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uOpoYZ5FZ8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uOpoYZ5FZ8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uOpoYZ5FZ8 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uOpoYZ5FZ8 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uOpoYZ5FZ8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uOpoYZ5FZ8 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uOpoYZ5FZ8 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uOpoYZ5FZ8 .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-uOpoYZ5FZ8 .navbar {
    height: 70px;
  }
  .cid-uOpoYZ5FZ8 .navbar.opened {
    height: auto;
  }
  .cid-uOpoYZ5FZ8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uOpoYZB56e {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uOpoYZB56e .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOpoYZB56e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOpoYZB56e H3 {
  text-align: center;
}
.cid-uOpoYZB56e .mbr-text,
.cid-uOpoYZB56e .mbr-section-btn {
  text-align: center;
}
.cid-uOpoZ0514q {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/fondo-3.jpg-612x448.jpg");
}
.cid-uOpoZ0514q .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uOpoZ0514q .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uOpoZ0514q .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uOpoZ0514q .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uOpoZ0514q .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uOpoZ0514q .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uOpoZ0514q .mbr-text,
.cid-uOpoZ0514q .mbr-section-btn {
  color: #fafafa;
  text-align: center;
}
.cid-uOpoZ0xqMO {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #005b98;
}
.cid-uOpoZ0xqMO img,
.cid-uOpoZ0xqMO .item-img {
  width: 100%;
}
.cid-uOpoZ0xqMO .item:focus,
.cid-uOpoZ0xqMO span:focus {
  outline: none;
}
.cid-uOpoZ0xqMO .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uOpoZ0xqMO .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #0976aa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uOpoZ0xqMO .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOpoZ0xqMO .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uOpoZ0xqMO .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uOpoZ0xqMO .mbr-section-title {
  color: #fafafa;
}
.cid-uOpoZ0xqMO .mbr-text,
.cid-uOpoZ0xqMO .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uOpoZ0xqMO .item-title {
  text-align: left;
  color: #bbbbbb;
}
.cid-uOpoZ0xqMO .item-subtitle {
  text-align: left;
}
.cid-uOpoZ1oVKc {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/construccionesjp.jpg-2000x1255.jpg");
}
.cid-uOpoZ1oVKc img,
.cid-uOpoZ1oVKc .item-img {
  width: 100%;
  height: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-uOpoZ1oVKc .item:focus,
.cid-uOpoZ1oVKc span:focus {
  outline: none;
}
.cid-uOpoZ1oVKc .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uOpoZ1oVKc .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uOpoZ1oVKc .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uOpoZ1oVKc .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOpoZ1oVKc .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uOpoZ1oVKc .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uOpoZ1oVKc .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uOpoZ1oVKc .mbr-section-title {
  color: #141619;
}
.cid-uOpoZ1oVKc .mbr-text,
.cid-uOpoZ1oVKc .mbr-section-btn {
  text-align: left;
}
.cid-uOpoZ1oVKc .item-title {
  text-align: center;
}
.cid-uOpoZ1oVKc .item-subtitle {
  text-align: center;
}
.cid-uOpoZ2vqSP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bbbbbb;
}
.cid-uOpoZ2vqSP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOpoZ2vqSP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOpoZ2vqSP .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-uOpoZ2vqSP .currentcost {
  color: #232323;
}
.cid-uOpoZ2vqSP .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uOpoZ2vqSP .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uOpoZ2vqSP .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uOpoZ2vqSP .text-box {
    padding: 1rem;
  }
}
.cid-uOpoZ2vqSP .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uOpoZ371gu {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uOpoZ371gu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOpoZ371gu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOpoZ371gu .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uOpoZ371gu .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-uOpoZ371gu .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uOpoZ371gu .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uOpoZ371gu .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uOpoZ371gu .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uOpoZ371gu .carousel-control,
.cid-uOpoZ371gu .close {
  background: #1b1b1b;
}
.cid-uOpoZ371gu .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uOpoZ371gu .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uOpoZ371gu .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uOpoZ371gu .carousel-control-next span {
  margin-left: 5px;
}
.cid-uOpoZ371gu .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uOpoZ371gu .close::before {
  content: '\e91a';
}
.cid-uOpoZ371gu .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uOpoZ371gu .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uOpoZ371gu .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uOpoZ371gu .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uOpoZ371gu .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uOpoZ371gu .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uOpoZ371gu .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uOpoZ371gu .carousel-indicators li.active,
.cid-uOpoZ371gu .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uOpoZ371gu .carousel-indicators li::after,
.cid-uOpoZ371gu .carousel-indicators li::before {
  content: none;
}
.cid-uOpoZ371gu .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uOpoZ371gu .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uOpoZ371gu .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uOpoZ371gu .carousel-indicators {
    display: none;
  }
}
.cid-uOpoZ371gu .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uOpoZ371gu .carousel-inner > .active {
  display: block;
}
.cid-uOpoZ371gu .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uOpoZ371gu .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uOpoZ371gu .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uOpoZ371gu .carousel-control,
  .cid-uOpoZ371gu .carousel-indicators,
  .cid-uOpoZ371gu .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uOpoZ371gu .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uOpoZ371gu .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uOpoZ371gu .carousel-indicators .active,
.cid-uOpoZ371gu .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uOpoZ371gu .carousel-indicators .active {
  background: #fff;
}
.cid-uOpoZ371gu .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uOpoZ371gu .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uOpoZ371gu .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uOpoZ371gu .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uOpoZ371gu .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uOpoZ371gu .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uOpoZ371gu .carousel {
  width: 100%;
}
.cid-uOpoZ371gu .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uOpoZ371gu .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uOpoZ371gu .modal.fade .modal-dialog,
.cid-uOpoZ371gu .modal.in .modal-dialog {
  transform: none;
}
.cid-uOpoZ371gu .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uOpoZ371gu H6 {
  text-align: center;
}
.cid-uOpoZ5ncJr {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #0976aa;
}
.cid-uOpoZ5ncJr img {
  width: 120px;
  margin: auto;
}
.cid-uOpoZ5ncJr .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uOpoZ5ncJr .card {
    max-width: 12.5%;
  }
}
.cid-uOpoZ5ncJr .mbr-section-subtitle {
  color: #dbdbdb;
}
.cid-uOpoZ5ncJr .mbr-section-title {
  color: #ffffff;
}
.cid-uOpoZ6aYZd {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-uOpoZ6aYZd .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uOpoZ6aYZd form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uOpoZ6aYZd form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uOpoZ6aYZd form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uOpoZ6aYZd .mbr-section-title {
  color: #000000;
}
.cid-uOpoZ6aYZd .mbr-section-subtitle {
  color: #000000;
}
.cid-uOpoZ70i4V {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uOpoZ70i4V .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uOpoZ70i4V .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-uOpoZ70i4V .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uOpoZ70i4V .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uOpoZ70i4V .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #3ab752;
}
.cid-uOpoZ81HfY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uOpoZ81HfY .google-map {
  height: 30rem;
  position: relative;
}
.cid-uOpoZ81HfY .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uOpoZ81HfY .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uOpoZ81HfY .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uOpoZ81HfY .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uOppkjH6CP {
  z-index: 1000;
  width: 100%;
}
.cid-uOppkjH6CP nav.navbar {
  position: fixed;
}
.cid-uOppkjH6CP .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-uOppkjH6CP .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uOppkjH6CP .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uOppkjH6CP .dropdown-item:hover,
.cid-uOppkjH6CP .dropdown-item:focus {
  background: #3ab752 !important;
  color: white !important;
}
.cid-uOppkjH6CP .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uOppkjH6CP .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uOppkjH6CP .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uOppkjH6CP .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uOppkjH6CP .nav-link {
  position: relative;
}
.cid-uOppkjH6CP .container {
  display: flex;
  margin: auto;
}
.cid-uOppkjH6CP .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uOppkjH6CP .dropdown-menu,
.cid-uOppkjH6CP .navbar.opened {
  background: #0976aa !important;
}
.cid-uOppkjH6CP .nav-item:focus,
.cid-uOppkjH6CP .nav-link:focus {
  outline: none;
}
.cid-uOppkjH6CP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uOppkjH6CP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uOppkjH6CP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uOppkjH6CP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uOppkjH6CP .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uOppkjH6CP .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uOppkjH6CP .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #0976aa;
}
.cid-uOppkjH6CP .navbar.opened {
  transition: all 0.3s;
}
.cid-uOppkjH6CP .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uOppkjH6CP .navbar .navbar-logo img {
  width: auto;
}
.cid-uOppkjH6CP .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uOppkjH6CP .navbar.collapsed {
  justify-content: center;
}
.cid-uOppkjH6CP .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uOppkjH6CP .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uOppkjH6CP .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.9rem);
  }
}
.cid-uOppkjH6CP .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uOppkjH6CP .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uOppkjH6CP .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-uOppkjH6CP .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uOppkjH6CP .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uOppkjH6CP .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uOppkjH6CP .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uOppkjH6CP .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uOppkjH6CP .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uOppkjH6CP .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uOppkjH6CP .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-uOppkjH6CP .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uOppkjH6CP .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uOppkjH6CP .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uOppkjH6CP .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uOppkjH6CP .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uOppkjH6CP .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uOppkjH6CP .navbar.navbar-short {
  min-height: 60px;
}
.cid-uOppkjH6CP .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uOppkjH6CP .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uOppkjH6CP .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-uOppkjH6CP .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uOppkjH6CP .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uOppkjH6CP .dropdown-item.active,
.cid-uOppkjH6CP .dropdown-item:active {
  background-color: transparent;
}
.cid-uOppkjH6CP .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uOppkjH6CP .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uOppkjH6CP .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uOppkjH6CP .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0976aa;
}
.cid-uOppkjH6CP .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uOppkjH6CP .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uOppkjH6CP ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uOppkjH6CP .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uOppkjH6CP button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uOppkjH6CP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uOppkjH6CP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uOppkjH6CP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uOppkjH6CP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uOppkjH6CP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uOppkjH6CP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uOppkjH6CP nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uOppkjH6CP nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uOppkjH6CP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uOppkjH6CP .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uOppkjH6CP a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uOppkjH6CP .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-uOppkjH6CP .navbar {
    height: 70px;
  }
  .cid-uOppkjH6CP .navbar.opened {
    height: auto;
  }
  .cid-uOppkjH6CP .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uOppkkcDOh {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uOppkkcDOh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOppkkcDOh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOppkkcDOh H3 {
  text-align: center;
}
.cid-uOppkkcDOh .mbr-text,
.cid-uOppkkcDOh .mbr-section-btn {
  text-align: center;
}
.cid-uOppkkCZ80 {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/fondo-3.jpg-612x448.jpg");
}
.cid-uOppkkCZ80 .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uOppkkCZ80 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uOppkkCZ80 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uOppkkCZ80 .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uOppkkCZ80 .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uOppkkCZ80 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uOppkkCZ80 .mbr-text,
.cid-uOppkkCZ80 .mbr-section-btn {
  color: #fafafa;
  text-align: center;
}
.cid-uOppklbOAg {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #005b98;
}
.cid-uOppklbOAg img,
.cid-uOppklbOAg .item-img {
  width: 100%;
}
.cid-uOppklbOAg .item:focus,
.cid-uOppklbOAg span:focus {
  outline: none;
}
.cid-uOppklbOAg .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uOppklbOAg .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #0976aa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uOppklbOAg .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOppklbOAg .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uOppklbOAg .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uOppklbOAg .mbr-section-title {
  color: #fafafa;
}
.cid-uOppklbOAg .mbr-text,
.cid-uOppklbOAg .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uOppklbOAg .item-title {
  text-align: left;
  color: #bbbbbb;
}
.cid-uOppklbOAg .item-subtitle {
  text-align: left;
}
.cid-uOppkm0I3J {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/construccionesjp.jpg-2000x1255.jpg");
}
.cid-uOppkm0I3J img,
.cid-uOppkm0I3J .item-img {
  width: 100%;
  height: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-uOppkm0I3J .item:focus,
.cid-uOppkm0I3J span:focus {
  outline: none;
}
.cid-uOppkm0I3J .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uOppkm0I3J .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uOppkm0I3J .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uOppkm0I3J .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOppkm0I3J .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uOppkm0I3J .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uOppkm0I3J .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uOppkm0I3J .mbr-section-title {
  color: #141619;
}
.cid-uOppkm0I3J .mbr-text,
.cid-uOppkm0I3J .mbr-section-btn {
  text-align: left;
}
.cid-uOppkm0I3J .item-title {
  text-align: center;
}
.cid-uOppkm0I3J .item-subtitle {
  text-align: center;
}
.cid-uOppknjbES {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bbbbbb;
}
.cid-uOppknjbES .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOppknjbES .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOppknjbES .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-uOppknjbES .currentcost {
  color: #232323;
}
.cid-uOppknjbES .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uOppknjbES .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uOppknjbES .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uOppknjbES .text-box {
    padding: 1rem;
  }
}
.cid-uOppknjbES .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uOppknZFmw {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uOppknZFmw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOppknZFmw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOppknZFmw .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uOppknZFmw .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-uOppknZFmw .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uOppknZFmw .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uOppknZFmw .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uOppknZFmw .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uOppknZFmw .carousel-control,
.cid-uOppknZFmw .close {
  background: #1b1b1b;
}
.cid-uOppknZFmw .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uOppknZFmw .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uOppknZFmw .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uOppknZFmw .carousel-control-next span {
  margin-left: 5px;
}
.cid-uOppknZFmw .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uOppknZFmw .close::before {
  content: '\e91a';
}
.cid-uOppknZFmw .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uOppknZFmw .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uOppknZFmw .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uOppknZFmw .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uOppknZFmw .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uOppknZFmw .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uOppknZFmw .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uOppknZFmw .carousel-indicators li.active,
.cid-uOppknZFmw .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uOppknZFmw .carousel-indicators li::after,
.cid-uOppknZFmw .carousel-indicators li::before {
  content: none;
}
.cid-uOppknZFmw .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uOppknZFmw .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uOppknZFmw .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uOppknZFmw .carousel-indicators {
    display: none;
  }
}
.cid-uOppknZFmw .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uOppknZFmw .carousel-inner > .active {
  display: block;
}
.cid-uOppknZFmw .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uOppknZFmw .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uOppknZFmw .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uOppknZFmw .carousel-control,
  .cid-uOppknZFmw .carousel-indicators,
  .cid-uOppknZFmw .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uOppknZFmw .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uOppknZFmw .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uOppknZFmw .carousel-indicators .active,
.cid-uOppknZFmw .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uOppknZFmw .carousel-indicators .active {
  background: #fff;
}
.cid-uOppknZFmw .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uOppknZFmw .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uOppknZFmw .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uOppknZFmw .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uOppknZFmw .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uOppknZFmw .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uOppknZFmw .carousel {
  width: 100%;
}
.cid-uOppknZFmw .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uOppknZFmw .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uOppknZFmw .modal.fade .modal-dialog,
.cid-uOppknZFmw .modal.in .modal-dialog {
  transform: none;
}
.cid-uOppknZFmw .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uOppknZFmw H6 {
  text-align: center;
}
.cid-uOppkxSNF9 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #0976aa;
}
.cid-uOppkxSNF9 img {
  width: 120px;
  margin: auto;
}
.cid-uOppkxSNF9 .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uOppkxSNF9 .card {
    max-width: 12.5%;
  }
}
.cid-uOppkxSNF9 .mbr-section-subtitle {
  color: #dbdbdb;
}
.cid-uOppkxSNF9 .mbr-section-title {
  color: #ffffff;
}
.cid-uOppkzmnnF {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-uOppkzmnnF .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uOppkzmnnF form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uOppkzmnnF form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uOppkzmnnF form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uOppkzmnnF .mbr-section-title {
  color: #000000;
}
.cid-uOppkzmnnF .mbr-section-subtitle {
  color: #000000;
}
.cid-uOppkA2PLm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uOppkA2PLm .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uOppkA2PLm .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-uOppkA2PLm .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uOppkA2PLm .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uOppkA2PLm .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #3ab752;
}
.cid-uOppkAR7If {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uOppkAR7If .google-map {
  height: 30rem;
  position: relative;
}
.cid-uOppkAR7If .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uOppkAR7If .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uOppkAR7If .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uOppkAR7If .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uOppsAcNQR {
  z-index: 1000;
  width: 100%;
}
.cid-uOppsAcNQR nav.navbar {
  position: fixed;
}
.cid-uOppsAcNQR .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-uOppsAcNQR .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uOppsAcNQR .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uOppsAcNQR .dropdown-item:hover,
.cid-uOppsAcNQR .dropdown-item:focus {
  background: #3ab752 !important;
  color: white !important;
}
.cid-uOppsAcNQR .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uOppsAcNQR .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uOppsAcNQR .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uOppsAcNQR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uOppsAcNQR .nav-link {
  position: relative;
}
.cid-uOppsAcNQR .container {
  display: flex;
  margin: auto;
}
.cid-uOppsAcNQR .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uOppsAcNQR .dropdown-menu,
.cid-uOppsAcNQR .navbar.opened {
  background: #0976aa !important;
}
.cid-uOppsAcNQR .nav-item:focus,
.cid-uOppsAcNQR .nav-link:focus {
  outline: none;
}
.cid-uOppsAcNQR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uOppsAcNQR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uOppsAcNQR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uOppsAcNQR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uOppsAcNQR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uOppsAcNQR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uOppsAcNQR .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #0976aa;
}
.cid-uOppsAcNQR .navbar.opened {
  transition: all 0.3s;
}
.cid-uOppsAcNQR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uOppsAcNQR .navbar .navbar-logo img {
  width: auto;
}
.cid-uOppsAcNQR .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uOppsAcNQR .navbar.collapsed {
  justify-content: center;
}
.cid-uOppsAcNQR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uOppsAcNQR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uOppsAcNQR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.9rem);
  }
}
.cid-uOppsAcNQR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uOppsAcNQR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uOppsAcNQR .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-uOppsAcNQR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uOppsAcNQR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uOppsAcNQR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uOppsAcNQR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uOppsAcNQR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uOppsAcNQR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uOppsAcNQR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uOppsAcNQR .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-uOppsAcNQR .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uOppsAcNQR .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uOppsAcNQR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uOppsAcNQR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uOppsAcNQR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uOppsAcNQR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uOppsAcNQR .navbar.navbar-short {
  min-height: 60px;
}
.cid-uOppsAcNQR .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uOppsAcNQR .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uOppsAcNQR .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-uOppsAcNQR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uOppsAcNQR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uOppsAcNQR .dropdown-item.active,
.cid-uOppsAcNQR .dropdown-item:active {
  background-color: transparent;
}
.cid-uOppsAcNQR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uOppsAcNQR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uOppsAcNQR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uOppsAcNQR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0976aa;
}
.cid-uOppsAcNQR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uOppsAcNQR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uOppsAcNQR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uOppsAcNQR .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uOppsAcNQR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uOppsAcNQR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uOppsAcNQR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uOppsAcNQR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uOppsAcNQR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uOppsAcNQR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uOppsAcNQR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uOppsAcNQR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uOppsAcNQR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uOppsAcNQR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uOppsAcNQR .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uOppsAcNQR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uOppsAcNQR .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-uOppsAcNQR .navbar {
    height: 70px;
  }
  .cid-uOppsAcNQR .navbar.opened {
    height: auto;
  }
  .cid-uOppsAcNQR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uOppsAMVJa {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uOppsAMVJa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOppsAMVJa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOppsAMVJa H3 {
  text-align: center;
}
.cid-uOppsAMVJa .mbr-text,
.cid-uOppsAMVJa .mbr-section-btn {
  text-align: center;
}
.cid-uOppsBkNDO {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/fondo-3.jpg-612x448.jpg");
}
.cid-uOppsBkNDO .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uOppsBkNDO .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uOppsBkNDO .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uOppsBkNDO .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uOppsBkNDO .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uOppsBkNDO .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uOppsBkNDO .mbr-text,
.cid-uOppsBkNDO .mbr-section-btn {
  color: #fafafa;
  text-align: center;
}
.cid-uOppsBNG6M {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #005b98;
}
.cid-uOppsBNG6M img,
.cid-uOppsBNG6M .item-img {
  width: 100%;
}
.cid-uOppsBNG6M .item:focus,
.cid-uOppsBNG6M span:focus {
  outline: none;
}
.cid-uOppsBNG6M .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uOppsBNG6M .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #0976aa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uOppsBNG6M .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOppsBNG6M .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uOppsBNG6M .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uOppsBNG6M .mbr-section-title {
  color: #fafafa;
}
.cid-uOppsBNG6M .mbr-text,
.cid-uOppsBNG6M .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uOppsBNG6M .item-title {
  text-align: left;
  color: #bbbbbb;
}
.cid-uOppsBNG6M .item-subtitle {
  text-align: left;
}
.cid-uOppsCHstu {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/construccionesjp.jpg-2000x1255.jpg");
}
.cid-uOppsCHstu img,
.cid-uOppsCHstu .item-img {
  width: 100%;
  height: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-uOppsCHstu .item:focus,
.cid-uOppsCHstu span:focus {
  outline: none;
}
.cid-uOppsCHstu .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uOppsCHstu .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uOppsCHstu .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uOppsCHstu .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOppsCHstu .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uOppsCHstu .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uOppsCHstu .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uOppsCHstu .mbr-section-title {
  color: #141619;
}
.cid-uOppsCHstu .mbr-text,
.cid-uOppsCHstu .mbr-section-btn {
  text-align: left;
}
.cid-uOppsCHstu .item-title {
  text-align: center;
}
.cid-uOppsCHstu .item-subtitle {
  text-align: center;
}
.cid-uOppsDJVKQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bbbbbb;
}
.cid-uOppsDJVKQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOppsDJVKQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOppsDJVKQ .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-uOppsDJVKQ .currentcost {
  color: #232323;
}
.cid-uOppsDJVKQ .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uOppsDJVKQ .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uOppsDJVKQ .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uOppsDJVKQ .text-box {
    padding: 1rem;
  }
}
.cid-uOppsDJVKQ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uOppsEtsEX {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uOppsEtsEX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOppsEtsEX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOppsEtsEX .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uOppsEtsEX .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-uOppsEtsEX .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uOppsEtsEX .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uOppsEtsEX .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uOppsEtsEX .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uOppsEtsEX .carousel-control,
.cid-uOppsEtsEX .close {
  background: #1b1b1b;
}
.cid-uOppsEtsEX .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uOppsEtsEX .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uOppsEtsEX .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uOppsEtsEX .carousel-control-next span {
  margin-left: 5px;
}
.cid-uOppsEtsEX .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uOppsEtsEX .close::before {
  content: '\e91a';
}
.cid-uOppsEtsEX .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uOppsEtsEX .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uOppsEtsEX .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uOppsEtsEX .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uOppsEtsEX .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uOppsEtsEX .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uOppsEtsEX .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uOppsEtsEX .carousel-indicators li.active,
.cid-uOppsEtsEX .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uOppsEtsEX .carousel-indicators li::after,
.cid-uOppsEtsEX .carousel-indicators li::before {
  content: none;
}
.cid-uOppsEtsEX .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uOppsEtsEX .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uOppsEtsEX .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uOppsEtsEX .carousel-indicators {
    display: none;
  }
}
.cid-uOppsEtsEX .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uOppsEtsEX .carousel-inner > .active {
  display: block;
}
.cid-uOppsEtsEX .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uOppsEtsEX .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uOppsEtsEX .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uOppsEtsEX .carousel-control,
  .cid-uOppsEtsEX .carousel-indicators,
  .cid-uOppsEtsEX .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uOppsEtsEX .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uOppsEtsEX .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uOppsEtsEX .carousel-indicators .active,
.cid-uOppsEtsEX .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uOppsEtsEX .carousel-indicators .active {
  background: #fff;
}
.cid-uOppsEtsEX .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uOppsEtsEX .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uOppsEtsEX .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uOppsEtsEX .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uOppsEtsEX .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uOppsEtsEX .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uOppsEtsEX .carousel {
  width: 100%;
}
.cid-uOppsEtsEX .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uOppsEtsEX .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uOppsEtsEX .modal.fade .modal-dialog,
.cid-uOppsEtsEX .modal.in .modal-dialog {
  transform: none;
}
.cid-uOppsEtsEX .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uOppsEtsEX H6 {
  text-align: center;
}
.cid-uOppsGMRP8 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #0976aa;
}
.cid-uOppsGMRP8 img {
  width: 120px;
  margin: auto;
}
.cid-uOppsGMRP8 .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uOppsGMRP8 .card {
    max-width: 12.5%;
  }
}
.cid-uOppsGMRP8 .mbr-section-subtitle {
  color: #dbdbdb;
}
.cid-uOppsGMRP8 .mbr-section-title {
  color: #ffffff;
}
.cid-uOppsHsuMt {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-uOppsHsuMt .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uOppsHsuMt form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uOppsHsuMt form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uOppsHsuMt form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uOppsHsuMt .mbr-section-title {
  color: #000000;
}
.cid-uOppsHsuMt .mbr-section-subtitle {
  color: #000000;
}
.cid-uOppsIfva5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uOppsIfva5 .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uOppsIfva5 .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-uOppsIfva5 .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uOppsIfva5 .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uOppsIfva5 .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #3ab752;
}
.cid-uOppsJ49qC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uOppsJ49qC .google-map {
  height: 30rem;
  position: relative;
}
.cid-uOppsJ49qC .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uOppsJ49qC .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uOppsJ49qC .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uOppsJ49qC .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
